Ninja Tables – WP Data Table Plugin for WordPress - Version 3.5.7

Version Description

Download this release

Release Info

Developer techjewel
Plugin Icon 128x128 Ninja Tables – WP Data Table Plugin for WordPress
Version 3.5.7
Comparing to
See all releases

Code changes from version 3.5.5 to 3.5.7

admin/NinjaTablesAdmin.php CHANGED
@@ -56,6 +56,9 @@ class NinjaTablesAdmin
56
  $this->plugin_name = $plugin_name;
57
  $this->version = $version;
58
  $this->cpt_name = 'ninja-table';
 
 
 
59
  }
60
 
61
  /**
@@ -195,8 +198,6 @@ class NinjaTablesAdmin
195
 
196
  public function main_page()
197
  {
198
- $this->enqueue_data_tables_scripts();
199
-
200
  include(plugin_dir_path(__FILE__) . 'partials/wp_data_tables_display.php');
201
  }
202
 
@@ -238,6 +239,9 @@ class NinjaTablesAdmin
238
  public function enqueue_scripts()
239
  {
240
  if (function_exists('wp_enqueue_editor')) {
 
 
 
241
  wp_enqueue_editor();
242
  wp_enqueue_script('thickbox');
243
  }
@@ -353,20 +357,28 @@ class NinjaTablesAdmin
353
  'admin_notices' => apply_filters('ninja_dashboard_notices', []),
354
  'has_sql_permission' => apply_filters('ninja_table_sql_permission', $isAdmin),
355
  'prefered_thumb' => apply_filters('ninja_table_prefered_thumb', 'medium'),
356
- 'has_woocommerce' => defined('WC_PLUGIN_FILE')
 
357
  ));
358
 
359
  // Elementor plugin have a bug where they throw error to parse #url, and I really don't know why they want to parse
360
  // other plugin's page's uri. They should fix it.
361
  // For now I am de-registering their script in ninja-table admin pages.
362
  wp_deregister_script('elementor-admin-app');
 
 
 
 
 
363
  }
364
 
365
 
366
  public function enqueue_data_tables_scripts()
367
  {
368
- $this->enqueue_scripts();
369
- $this->enqueue_styles();
 
 
370
  }
371
 
372
  public function ajax_routes()
@@ -458,6 +470,8 @@ class NinjaTablesAdmin
458
  if ($fluentFormFormId) {
459
  $table->fluentfrom_url = admin_url('admin.php?page=fluent_forms&route=entries&form_id=' . $fluentFormFormId);
460
  }
 
 
461
  }
462
  }
463
 
@@ -523,7 +537,7 @@ class NinjaTablesAdmin
523
  $css = $_REQUEST['custom_css'];
524
  $js = $_REQUEST['custom_js'];
525
  $css = wp_strip_all_tags($css);
526
- $js = wp_unslash($js);
527
  update_post_meta($tableId, '_ninja_tables_custom_css', $css);
528
  update_post_meta($tableId, '_ninja_tables_custom_js', $js);
529
 
@@ -900,8 +914,8 @@ class NinjaTablesAdmin
900
  ninja_tables_DbTable()
901
  ->where('id', $rowId)
902
  ->update([
903
- 'value' => json_encode($values, JSON_UNESCAPED_UNICODE),
904
- 'updated_at' => date('Y-m-d H:i:s')
905
  ]);
906
 
907
  update_post_meta($row->table_id, '_last_edited_by', get_current_user_id());
@@ -1022,7 +1036,8 @@ class NinjaTablesAdmin
1022
  '_external_cached_data',
1023
  '_last_external_cached_time',
1024
  '_last_edited_by',
1025
- '_last_edited_time'
 
1026
  );
1027
 
1028
  foreach ($matas as $metaKey => $metaValue) {
56
  $this->plugin_name = $plugin_name;
57
  $this->version = $version;
58
  $this->cpt_name = 'ninja-table';
59
+
60
+ add_action('admin_enqueue_scripts', array($this, 'enqueue_data_tables_scripts'));
61
+
62
  }
63
 
64
  /**
198
 
199
  public function main_page()
200
  {
 
 
201
  include(plugin_dir_path(__FILE__) . 'partials/wp_data_tables_display.php');
202
  }
203
 
239
  public function enqueue_scripts()
240
  {
241
  if (function_exists('wp_enqueue_editor')) {
242
+ add_filter('user_can_richedit', function ($status) {
243
+ return true;
244
+ });
245
  wp_enqueue_editor();
246
  wp_enqueue_script('thickbox');
247
  }
357
  'admin_notices' => apply_filters('ninja_dashboard_notices', []),
358
  'has_sql_permission' => apply_filters('ninja_table_sql_permission', $isAdmin),
359
  'prefered_thumb' => apply_filters('ninja_table_prefered_thumb', 'medium'),
360
+ 'has_woocommerce' => defined('WC_PLUGIN_FILE'),
361
+ 'license_status' => get_option('_ninjatables_pro_license_status')
362
  ));
363
 
364
  // Elementor plugin have a bug where they throw error to parse #url, and I really don't know why they want to parse
365
  // other plugin's page's uri. They should fix it.
366
  // For now I am de-registering their script in ninja-table admin pages.
367
  wp_deregister_script('elementor-admin-app');
368
+
369
+ // These last two line is for dumb devs who enqueue their scripts unversally
370
+ // People should think what they are writing in their code
371
+ wp_dequeue_script('vue');
372
+ wp_dequeue_script('vuejs');
373
  }
374
 
375
 
376
  public function enqueue_data_tables_scripts()
377
  {
378
+ if (isset($_GET['page']) && $_GET['page'] == 'ninja_tables') {
379
+ $this->enqueue_scripts();
380
+ $this->enqueue_styles();
381
+ }
382
  }
383
 
384
  public function ajax_routes()
470
  if ($fluentFormFormId) {
471
  $table->fluentfrom_url = admin_url('admin.php?page=fluent_forms&route=entries&form_id=' . $fluentFormFormId);
472
  }
473
+ } else if ($dataSourceType == 'csv' || $dataSourceType == 'google-csv') {
474
+ $table->remoteURL = get_post_meta($table->ID, '_ninja_tables_data_provider_url', true);
475
  }
476
  }
477
 
537
  $css = $_REQUEST['custom_css'];
538
  $js = $_REQUEST['custom_js'];
539
  $css = wp_strip_all_tags($css);
540
+ // $js = wp_unslash($js);
541
  update_post_meta($tableId, '_ninja_tables_custom_css', $css);
542
  update_post_meta($tableId, '_ninja_tables_custom_js', $js);
543
 
914
  ninja_tables_DbTable()
915
  ->where('id', $rowId)
916
  ->update([
917
+ 'value' => json_encode($values, JSON_UNESCAPED_UNICODE),
918
+ 'updated_at' => date('Y-m-d H:i:s')
919
  ]);
920
 
921
  update_post_meta($row->table_id, '_last_edited_by', get_current_user_id());
1036
  '_external_cached_data',
1037
  '_last_external_cached_time',
1038
  '_last_edited_by',
1039
+ '_last_edited_time',
1040
+ '__ninja_cached_table_html'
1041
  );
1042
 
1043
  foreach ($matas as $metaKey => $metaValue) {
assets/css/ninja-tables-admin.css CHANGED
@@ -1 +1 @@
1
- .ninja_main_nav{display:block;width:100%;overflow:hidden;border-bottom:1px solid #ddd;background:#fff;margin:-20px -20px 0;padding:20px 20px 0}.ninja_main_nav span.plugin-name{font-size:16px;color:#6e6e6e;margin-right:30px}.ninja_main_nav .ninja-tab{padding:10px;display:inline-block;text-decoration:none;color:#000;font-size:15px;line-height:16px;margin-right:15px;border-bottom:2px solid transparent}.ninja_main_nav .ninja-tab:focus{-webkit-box-shadow:none;box-shadow:none}.ninja_main_nav .ninja-tab.ninja-tab-active{font-weight:700;border-bottom:2px solid #ffd65b}.ninja_main_nav .ninja-tab.buy_pro_tab{background:#e04f5e;padding:10px 25px;color:#fff}.pageLoading{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:150px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pageLoading .fooicon{font-size:20px}.btn-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.btn-flex .fooicon{margin-left:5px}h4{margin-bottom:0;font-size:18px}a.btn{text-decoration:none}.modal-open .modal{z-index:1000}label.form_group{padding-top:5px;padding-left:10px}.editr--toolbar .dashboard{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 .5rem}.editr--toolbar .dashboard .dropzone{max-height:86px;min-height:50px!important;background:#f6f6f6}.compact .nt_cell{height:28px;-ms-text-overflow:ellipsis!important}.compact .nt_cell,.compact .nt_cell *{text-overflow:ellipsis!important;overflow:hidden;white-space:nowrap}.compact .nt_cell *{margin:0;padding:0;font-size:14px}.cell .cell-content img{max-width:100%;height:auto}.paginate{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:2px solid #ccc;padding-bottom:8px}.btn.pag-btn{background:#b2ccda;color:#fff}.btn.pag-btn:hover{opacity:.9}.btn.pag-btn:focus,.btn.pag-btn:hover{color:#fff;outline:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}.text-right{text-align:right}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}.input-group{display:table;position:relative}.input-group .form-control,.input-group .input-btn{display:table-cell;vertical-align:middle}.input-group .form-control{float:left;border-bottom-right-radius:0;border-top-right-radius:0}.input-group .input-btn{width:1%}.input-group .input-btn .btn{border-bottom-left-radius:0;border-top-left-radius:0}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:after,.nav:before{display:table;content:" "}.nav:after{clear:both}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0;text-decoration:none}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li>a:focus{-webkit-box-shadow:none;box-shadow:none}.nav-tabs>li.router-link-exact-active>a,.nav-tabs>li.router-link-exact-active>a:focus,.nav-tabs>li.router-link-exact-active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.tab-content>.tab-pane{padding:20px 0}.form-group{margin-bottom:15px}.table-title{font-size:18px;margin-bottom:0}.table_data_press .help{font-size:90%;color:gray;font-weight:300}.row_full{overflow:hidden}.row_full .pull-left{float:left}.search_action{position:relative;margin-top:0;padding-top:0}.search_action input{width:98%;font-size:95%;padding-right:30px}.search_action i{position:absolute;right:8px;top:10px;font-size:16px}.tablenav{clear:both;height:auto;margin:6px 0 4px;vertical-align:middle;overflow:hidden;display:block}.tablenav .form_group{padding-top:0;padding-bottom:0;margin-bottom:0;margin-top:0}.nav-tab-active,.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{-webkit-box-shadow:none;box-shadow:none}ul.doc_items{margin-left:45px}ul.doc_items li{font-size:14px;margin-bottom:10px;list-style:disc}ul.doc_items li a{text-decoration:none}.el-aside{background-color:#535c63;color:#333;line-height:200px}.el-main{background-color:#fff;color:#000;min-height:70vh;padding:15px}.el-menu-item.is-active{background-color:#434a50!important;color:#fff!important}.ninja_header{padding-bottom:15px;border-bottom:1px solid #eae7e7;background:#fbfdff}.ninja_content{display:block;position:relative;width:100%}.ninja_content .ninja_suggest{overflow:hidden;display:block;background:#e5e5e5;padding:20px 10px;color:#000;font-size:18px;margin:10px 0}.ninja_content .ninja_suggest p{font-size:16px;padding:0;margin:0}.ninja_content .ninja_block p{font-size:16px}.ninja_content .ninja_export_block{display:block;margin-top:25px}.ninja_content .ninja_block_section{margin:20px 0}.ninja_suggest_plugin{margin:0 0 20px;padding:20px;position:relative;background:#fff;-webkit-box-shadow:0 0 5px 5px rgba(0,0,0,.05);box-shadow:0 0 5px 5px rgba(0,0,0,.05);overflow:hidden;width:96%;margin-top:40px}.ninja_suggest_plugin .ninja_dismiss{position:absolute;right:10px;top:5px;cursor:pointer}.ninja_suggest_plugin .ninja_form_banner{width:35%;float:left;padding-right:3%;margin:-20px 0 -24px -20px}@media (max-width:768px){.ninja_suggest_plugin .ninja_form_banner{width:100%;margin:0;padding-right:0;float:none;display:block;margin-bottom:10px}}.ninja_suggest_plugin .ninja_form_banner img{max-width:100%}.ninja_doc_top_blocks{display:block;width:100%;position:relative;margin-bottom:20px;overflow:hidden}.ninja_doc_top_blocks>*{-webkit-box-sizing:border-box;box-sizing:border-box}.ninja_doc_top_blocks .block_1_3{width:33.33%;float:left;padding-right:30px;margin-bottom:30px}@media (max-width:768px){.ninja_doc_top_blocks .block_1_3{width:100%;float:none;padding-right:0;margin-bottom:30px}}.ninja_doc_top_blocks .ff_block .ff_block_box{padding:15px;background:#fff;-webkit-box-shadow:0 0 5px rgba(0,0,0,.05);box-shadow:0 0 5px rgba(0,0,0,.05);border-radius:4px}.ninja_doc_top_blocks .ff_block .ff_block_box img.block_icon{max-height:62px}.ninja_doc_top_blocks .ff_block .ff_block_box ul{list-style:disc;margin-left:20px}.ninja_doc_top_blocks .ff_block .ff_block_box ul li a{font-size:14px;text-decoration:none;line-height:22px}.pro_feature_dialog .el-dialog{background:#fdf5f5}.pro_feature_dialog .el-dialog__body{padding-top:0}.pro_feature_dialog .buy_now_button{text-decoration:none;font-size:20px;padding:10px 25px}.pro_feature_dialog .list_features{margin-left:45px;list-style:disc;font-size:18px}.section_block{margin-bottom:20px;display:block;width:100%;overflow:hidden}.section_card{width:48%;float:left;padding:5px 10px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;margin-right:2%;cursor:pointer;position:relative;border:3px solid #ccc}.section_card h4{margin-top:10px}.section_card.expand_card{width:30%;min-height:120px;padding:5px 10px}.section_card .selected_ribbon{position:absolute;right:0;top:0;padding:5px 15px;background:#4caf50;color:#fff;font-weight:700}.section_card.selected_type{border:5px solid #4caf50;background:#f6fff7}.clearfix:after{display:block;content:"";clear:both}.language_block .form_group{margin-bottom:20px}.language_block .form_group:last-child{margin-bottom:0}.language_block .form_group label{display:block}.language_block .form_group input{height:32px;padding:5px 10px;min-width:400px}.text-warning{color:#e6a23c}.actions a{cursor:pointer}.card_block{overflow:hidden;display:block;width:100%}.ninja_section_block{background:#fff;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:0;width:100%;display:block;margin-top:0}.ninja_section_block .ninja_section_block_header{padding:12px 20px;border-bottom:2px solid #e8e4e4;border-top:2px solid #e8e4e4;cursor:pointer}.ninja_section_block .ninja_section_block_header h3{margin:0;display:inline-block}.ninja_section_block .ninja_section_block_header .ninja_header_action{display:inline-block;float:right}.ninja_section_block .ninja_section_block_header .ninja_header_action span{cursor:pointer}.ninja_section_block .ninja_section_block_body{padding:10px 20px 20px;background:#fafafa}.ninja_section_block .ninja_section_block_body.ninja_section_hide{display:none}ul.ninja_render_features li{display:inline-block;margin-right:10px;list-style:none}ul.ninja_render_features li span{color:#4caf4f}.ninja_settings_blocks,.ninja_settings_blocks .ninja_save_button{margin-top:20px}.loading-wrapper{padding:10px;background:#fff}.text-center{text-align:center}.ninja_sidebar{margin-top:10px}.add_column_wrapper{padding:0 10px}.ninja_widget{display:block;overflow:hidden;padding:15px 10px;background:#f9f9f9;margin-bottom:15px;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.ninja_widget .title{margin:-15px -10px 0;border-bottom:1px solid #f1f1f1;font-size:14px;padding:8px 12px;line-height:1.4;background:#434d53;color:#fff}.ninja_widget .widget_body{padding-top:10px}.ninja_widget .button-block{width:100%}.pull-right{float:right}.section_widget .heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#fff;overflow:hidden;padding:10px 0}.section_widget .heading .title{float:left;padding:0;margin:0}.section_widget .heading .inline_action{float:right}.section_widget .widget_body{background:#fff;padding:0}.drawer{display:block;border-bottom:1px solid #434a50}.drawer .drawer_body{padding:10px;display:none}.drawer .header{padding:15px 10px;background:#535c63;color:#fff;font-size:17px}.drawer .header .edit_icon{float:right;font-size:12px;cursor:pointer}.drawer .header .handle{cursor:move;font-size:20px;margin-right:5px}.form_group{overflow:hidden;margin-bottom:10px;padding-right:2px}.form_group>label{display:block}.form_group .form_control{display:block;width:100%}.form_group .normalLabel{display:initial;font-weight:400}.form_group .mt5{margin-top:5px}.section-container{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.section-column-9{-webkit-box-flex:2;-ms-flex:2;flex:2;padding:10px}.section-column-3{-webkit-box-flex:1;-ms-flex:1;flex:1}@media (max-width:480px){.section-container{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-orient:vertical;-ms-flex-orient:vertical;-webkit-orient:vertical;orient:vertical}.section-column-9{-webkit-box-ordinal-group:1;-ms-flex-order:1;order:1}.section-column-3{-webkit-box-ordinal-group:2;-ms-flex-order:2;order:2}}.section-column:first-child{margin-right:20px}.tooltip{display:block!important;padding:4px;z-index:10000}.tooltip .tooltip-inner{background:#000;color:#fff;border-radius:16px;padding:5px 10px 4px}.tooltip .tooltip-arrow{display:none}.tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.help_section{margin-top:45px!important}.ninja_widget label{font-weight:400}.ninja_style_wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.ninja_style_wrapper .ninja_column{-webkit-box-flex:1;-ms-flex:1 100%;flex:1 100%}.ninja_style_wrapper .ninja_column:first-child{margin-right:15px}.ninja_style_wrapper .ninja_column:last-child{margin-left:15px}.ninja_color_blocks{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;margin-bottom:10px}.ninja_color_blocks .ninja_color_block{-webkit-box-flex:1;-ms-flex:1 100%;flex:1 100%;text-align:center;padding:10px 5px;border:1px solid #cacaca;background:snow}.ninja_color_blocks .ninja_color_block .form_group{margin:0}.ninja_color_blocks .ninja_color_block .form_group .el-color-picker{width:100%;height:30px}.ninja_color_blocks .ninja_color_block .form_group .el-color-picker .el-color-picker__trigger{min-width:100px;height:30px}.ninja_color_blocks .ninja_color_block label{padding:0;margin:0;font-size:11px}.form_group.ninja_color_customization h4{display:block;overflow:hidden;margin-top:0}.ninja_inner_title{margin:0 0 10px;font-size:15px;color:#636060}.ninja_header{overflow:hidden;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ninja_header h2{display:inline-block;margin:0}.ninja_header .ninja_actions_action{float:right}.ninja_design_wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;padding-bottom:20px;background:#fff}.ninja_design_wrapper .design_controls{-webkit-box-flex:1;-ms-flex:1;flex:1;background:#e5e5e5;margin:0 0 -20px;border-left:1px solid #e5e5e5}.ninja_design_wrapper .design_controls .form_group:not(:last-child){border-bottom:1px solid hsla(0,0%,90%,.45);padding-bottom:10px}.ninja_design_wrapper .design_controls .el-collapse-item__header{padding:0 0 0 15px}.ninja_design_wrapper .design_controls .el-collapse-item__header i{font-weight:700;padding-top:18px}.ninja_design_wrapper .design_controls .el-collapse-item__wrap{padding:13px 15px 0;background:#e5e5e5;height:auto;overflow:scroll}.ninja_design_wrapper .design_controls .el-radio-button--mini .el-radio-button__inner{padding:7px!important}.ninja_design_wrapper .design_preview{background:#fff;padding:10px 20px;-webkit-box-flex:2;-ms-flex:2;flex:2;min-height:800px;overflow:scroll}.ninja_title_section .ninja_title,.ninja_title_section .ninja_title h3{display:inline-block}.ninja_title_section button{float:right;margin-top:10px}.ninja_switch_wrapper{margin:20px 0}.ninja_mini{padding:2px 7px;color:#0073aa;font-size:10px}.ninja_resp_tabs span.dashicons{font-size:13px;width:15px;height:10px}input.form-control::-webkit-input-placeholder{color:#ddd}input.form-control:-ms-input-placeholder,input.form-control::-ms-input-placeholder{color:#ddd}input.form-control::placeholder{color:#ddd}.search_action input::-webkit-input-placeholder{color:#969292}.search_action input:-ms-input-placeholder,.search_action input::-ms-input-placeholder{color:#969292}.search_action input::placeholder{color:#969292}.upgrade_box{text-align:center;margin-top:10px}.upgrade_box a{text-decoration:none}.upgrade_box a i{margin-top:-5px;font-size:20px;height:10px}.ninja_upgrade_bar{margin:-10px -20px 0;background:#f35a59;padding:10px 20px;overflow:hidden;color:#fff}.ninja_upgrade_bar a{color:#f35a59;font-weight:700;padding:5px 15px;border-radius:5px;text-decoration:none;background:#fff;border:1px solid #fff}.ninja_upgrade_bar a:hover{color:#fff;background-color:#f35a59;border:1px solid #fff;-webkit-transition:background-color .3s ease;transition:background-color .3s ease}.ninja_btn{text-decoration:none}.label-normalize label{font-weight:400}.ninja_design_tips{color:red;padding:10px;background:#fff;border:1px solid red}.ninja_design_tips ul.ninja_design_tips_lists{margin:0}.el-checkbox-group{overflow:hidden;width:100%}.el-checkbox-group label.el-checkbox{display:inline-block;margin-left:0;margin-right:20px}.el-dialog__wrapper{background:rgba(0,0,0,.55);z-index:9999!important}.ninja_modal-body h3{margin:0}.handle{cursor:move}.el-color-dropdown.el-color-picker__panel,.el-select-dropdown.el-popper{z-index:999999!important}.no_padding_body .el-dialog__body{padding-top:0}.ninja_table_inline_upgrade{padding:20px;margin-bottom:20px;background:#feffb3}.ninja_instruction{padding:10px 15px;background:#e5ffe7;margin-top:20px}.ninja_instruction ul{margin-left:30px;list-style:disc;font-size:110%}.ninja_instruction p{margin:3px 0}h2.nav-tab-wrapper{margin-bottom:15px!important}.doc_link{text-decoration:none;font-size:14px;color:gray}.form_row_full{display:block;overflow:hidden;width:100%}.form_row_full .form_row_half{width:48%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:4%;float:left;display:block}.form_row_full .form_row_half>label{display:block}.form_row_full .form_row_half:last-child{padding-right:0}.el-tooltip__popper h3,.el-tooltip__popper p{margin:0;padding:0}.el-main-editing{background-color:#fff;min-height:70vh;padding:15px 25px;display:block;overflow:auto}.el-main-editing .ninja_header_editing{display:block;overflow:hidden;margin:-15px -25px 20px;padding:10px 25px;border-bottom:1px solid #eae7e7;background:#fbfdff}.el-main-editing .ninja_header_editing h2{margin:0;padding:0;float:left;line-height:30px}.el-main-editing .ninja_header_editing .heading_actions{float:right}.el-main-editing .editing_sub_section{display:block;margin-bottom:40px}.el-main-editing .editing_sub_section .ninja_section_block_header{border-bottom:1px solid #f1f1f1;margin-bottom:20px}.el-main-editing .editing_sub_section .ninja_section_block_header>h3{margin:0}.el-main-editing .editing_sub_section .ninja_section_block_header p{margin:5px 0 10px}.el-main-editing .editing_body{display:block;overflow:hidden;width:100%}.el-main-editing table.ninja_editing_table th{font-weight:500}.el-main-editing table.ninja_editing_table tr td,.el-main-editing table.ninja_editing_table tr th{border-bottom:1px solid #eaeaea!important}.el-radio-group.spaced{max-width:100%;position:relative}.el-radio-group.spaced>label{display:inline-block}.el-radio-group.spaced_new_line>label{display:block;margin-left:0!important;margin-bottom:10px}.nt_suggest{padding:10px;background:#eee;margin-top:20px;border-radius:5px}.nt_suggest h4{margin:0}.nt_suggest ul{margin-left:30px}.nt_suggest ul li{list-style:disc}.ninja_heightlight_block{margin-top:50px;text-align:left;padding:0 20px 20px;border:1px solid #eae7e7;background:#fbfdff}.nt_nav_card_header{padding:10px;border:1px solid #ccc;display:block;background:#fff;font-size:15px;position:relative;cursor:pointer}.nt_nav_card_header.nt_nav_active{background:#545454;color:#fff}.nt_nav_card_header .nav_card_action{float:right}.nt_nav_card_header .nav_card_action button{font-size:22px;margin-top:-10px}.nt_nav_settings{background:#fff;margin:0 0 10px;-webkit-box-shadow:0 2px 6px 0 #c3c3c3;box-shadow:0 2px 6px 0 #c3c3c3;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.nt_nav_settings .nt_nav_body{padding:0 20px 20px;display:block;overflow:hidden;border:1px solid #e4f3ff}.nt_each_selection{display:block;border-bottom:1px solid #80808026;padding-bottom:10px;margin-top:20px}.nt_each_selection:last-child{border-bottom:0}.nt_each_selection .nt_query_header{margin-bottom:15px}.nt_each_selection .nt_query_header h3{margin:0 0 5px;color:#717070}.nt_each_selection .nt_query_header p{margin:0;color:#6f6f6f}.image_selector{overflow:hidden;display:block}.image_selector .image_preview{width:96px;display:inline-block}.image_selector .image_preview img{max-width:100%}.image_selector .image_select_button{display:inline-block;vertical-align:top}.image_selector .nt_form_group{width:49%;float:left}.image_selector .nt_form_group.single_form_group{width:100%;float:none}.el-table__row .nt_btn{border:1px solid transparent;padding:7px 15px;font-size:14px;text-decoration:none;display:inline-block}.el-table__row .nt_btn.nt_rounded_btn{border-radius:4px!important}.nt_cell_editable{cursor:text;min-height:25px}.cell_editing .nt_cell_input,.cell_editing .nt_inline_textarea{width:100%;padding:4px 7px}
1
+ .ninja_main_nav{display:block;width:100%;overflow:hidden;border-bottom:1px solid #ddd;background:#fff;margin:-20px -20px 0;padding:20px 20px 0}.ninja_main_nav span.plugin-name{font-size:16px;color:#6e6e6e;margin-right:30px}.ninja_main_nav .ninja-tab{padding:10px;display:inline-block;text-decoration:none;color:#000;font-size:15px;line-height:16px;margin-right:15px;border-bottom:2px solid transparent}.ninja_main_nav .ninja-tab:focus{-webkit-box-shadow:none;box-shadow:none}.ninja_main_nav .ninja-tab.ninja-tab-active{font-weight:700;border-bottom:2px solid #ffd65b}.ninja_main_nav .ninja-tab.buy_pro_tab{background:#e04f5e;padding:10px 25px;color:#fff}.pageLoading{text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;height:150px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.pageLoading .fooicon{font-size:20px}.btn-flex{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.btn-flex .fooicon{margin-left:5px}h4{margin-bottom:0;font-size:18px}a.btn{text-decoration:none}.modal-open .modal{z-index:1000}label.form_group{padding-top:5px;padding-left:10px}.editr--toolbar .dashboard{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 .5rem}.editr--toolbar .dashboard .dropzone{max-height:86px;min-height:50px!important;background:#f6f6f6}.compact .nt_cell{height:28px;-ms-text-overflow:ellipsis!important}.compact .nt_cell,.compact .nt_cell *{text-overflow:ellipsis!important;overflow:hidden;white-space:nowrap}.compact .nt_cell *{margin:0;padding:0;font-size:14px}.cell .cell-content img{max-width:100%;height:auto}.paginate{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-bottom:2px solid #ccc;padding-bottom:8px}.btn.pag-btn{background:#b2ccda;color:#fff}.btn.pag-btn:hover{opacity:.9}.btn.pag-btn:focus,.btn.pag-btn:hover{color:#fff;outline:none!important;-webkit-box-shadow:none!important;box-shadow:none!important}.text-right{text-align:right}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder,.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}.input-group{display:table;position:relative}.input-group .form-control,.input-group .input-btn{display:table-cell;vertical-align:middle}.input-group .form-control{float:left;border-bottom-right-radius:0;border-top-right-radius:0}.input-group .input-btn{width:1%}.input-group .input-btn .btn{border-bottom-left-radius:0;border-top-left-radius:0}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:after,.nav:before{display:table;content:" "}.nav:after{clear:both}.nav>li,.nav>li>a{position:relative;display:block}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0;text-decoration:none}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li>a:focus{-webkit-box-shadow:none;box-shadow:none}.nav-tabs>li.router-link-exact-active>a,.nav-tabs>li.router-link-exact-active>a:focus,.nav-tabs>li.router-link-exact-active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.tab-content>.tab-pane{padding:20px 0}.form-group{margin-bottom:15px}.table-title{font-size:18px;margin-bottom:0}.table_data_press .help{font-size:90%;color:gray;font-weight:300}.row_full{overflow:hidden}.row_full .pull-left{float:left}.search_action{position:relative;margin-top:0;padding-top:0}.search_action input{width:98%;font-size:95%;padding-right:30px}.search_action i{position:absolute;right:8px;top:10px;font-size:16px}.tablenav{clear:both;height:auto;margin:6px 0 4px;vertical-align:middle;overflow:hidden;display:block}.tablenav .form_group{padding-top:0;padding-bottom:0;margin-bottom:0;margin-top:0}.nav-tab-active,.nav-tab-active:focus,.nav-tab-active:focus:active,.nav-tab-active:hover{-webkit-box-shadow:none;box-shadow:none}ul.doc_items{margin-left:45px}ul.doc_items li{font-size:14px;margin-bottom:10px;list-style:disc}ul.doc_items li a{text-decoration:none}.el-aside{background-color:#535c63;color:#333;line-height:200px}.el-main{background-color:#fff;color:#000;min-height:70vh;padding:15px}.el-menu-item.is-active{background-color:#434a50!important;color:#fff!important}.ninja_header{padding-bottom:15px;border-bottom:1px solid #eae7e7;background:#fbfdff}.ninja_content{display:block;position:relative;width:100%}.ninja_content .ninja_suggest{overflow:hidden;display:block;background:#e5e5e5;padding:20px 10px;color:#000;font-size:18px;margin:10px 0}.ninja_content .ninja_suggest p{font-size:16px;padding:0;margin:0}.ninja_content .ninja_block p{font-size:16px}.ninja_content .ninja_export_block{display:block;margin-top:25px}.ninja_content .ninja_block_section{margin:20px 0}.ninja_suggest_plugin{margin:0 0 20px;padding:20px;position:relative;background:#fff;-webkit-box-shadow:0 0 5px 5px rgba(0,0,0,.05);box-shadow:0 0 5px 5px rgba(0,0,0,.05);overflow:hidden;width:96%;margin-top:40px}.ninja_suggest_plugin .ninja_dismiss{position:absolute;right:10px;top:5px;cursor:pointer}.ninja_suggest_plugin .ninja_form_banner{width:35%;float:left;padding-right:3%;margin:-20px 0 -24px -20px}@media (max-width:768px){.ninja_suggest_plugin .ninja_form_banner{width:100%;margin:0;padding-right:0;float:none;display:block;margin-bottom:10px}}.ninja_suggest_plugin .ninja_form_banner img{max-width:100%}.ninja_doc_top_blocks{display:block;width:100%;position:relative;margin-bottom:20px;overflow:hidden}.ninja_doc_top_blocks>*{-webkit-box-sizing:border-box;box-sizing:border-box}.ninja_doc_top_blocks .block_1_3{width:33.33%;float:left;padding-right:30px;margin-bottom:30px}@media (max-width:768px){.ninja_doc_top_blocks .block_1_3{width:100%;float:none;padding-right:0;margin-bottom:30px}}.ninja_doc_top_blocks .ff_block .ff_block_box{padding:15px;background:#fff;-webkit-box-shadow:0 0 5px rgba(0,0,0,.05);box-shadow:0 0 5px rgba(0,0,0,.05);border-radius:4px}.ninja_doc_top_blocks .ff_block .ff_block_box img.block_icon{max-height:62px}.ninja_doc_top_blocks .ff_block .ff_block_box ul{list-style:disc;margin-left:20px}.ninja_doc_top_blocks .ff_block .ff_block_box ul li a{font-size:14px;text-decoration:none;line-height:22px}.pro_feature_dialog .el-dialog{background:#fdf5f5}.pro_feature_dialog .el-dialog__body{padding-top:0}.pro_feature_dialog .buy_now_button{text-decoration:none;font-size:20px;padding:10px 25px}.pro_feature_dialog .list_features{margin-left:45px;list-style:disc;font-size:18px}.section_block{margin-bottom:20px;display:block;width:100%;overflow:hidden}.section_card{width:48%;float:left;padding:5px 10px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;margin-right:2%;cursor:pointer;position:relative;border:3px solid #ccc}.section_card h4{margin-top:10px}.section_card.expand_card{width:30%;min-height:120px;padding:5px 10px}.section_card .selected_ribbon{position:absolute;right:0;top:0;padding:5px 15px;background:#4caf50;color:#fff;font-weight:700}.section_card.selected_type{border:5px solid #4caf50;background:#f6fff7}.clearfix:after{display:block;content:"";clear:both}.language_block .form_group{margin-bottom:20px}.language_block .form_group:last-child{margin-bottom:0}.language_block .form_group label{display:block}.language_block .form_group input{height:32px;padding:5px 10px;min-width:400px}.text-warning{color:#e6a23c}.actions a{cursor:pointer}.card_block{overflow:hidden;display:block;width:100%}.ninja_section_block{background:#fff;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:0;width:100%;display:block;margin-top:0}.ninja_section_block .ninja_section_block_header{padding:12px 20px;border-bottom:2px solid #e8e4e4;border-top:2px solid #e8e4e4;cursor:pointer}.ninja_section_block .ninja_section_block_header h3{margin:0;display:inline-block}.ninja_section_block .ninja_section_block_header .ninja_header_action{display:inline-block;float:right}.ninja_section_block .ninja_section_block_header .ninja_header_action span{cursor:pointer}.ninja_section_block .ninja_section_block_body{padding:10px 20px 20px;background:#fafafa}.ninja_section_block .ninja_section_block_body.ninja_section_hide{display:none}ul.ninja_render_features li{display:inline-block;margin-right:10px;list-style:none}ul.ninja_render_features li span{color:#4caf4f}.ninja_settings_blocks,.ninja_settings_blocks .ninja_save_button{margin-top:20px}.loading-wrapper{padding:10px;background:#fff}.text-center{text-align:center}.ninja_sidebar{margin-top:10px}.add_column_wrapper{padding:0 10px}.ninja_widget{display:block;overflow:hidden;padding:15px 10px;background:#f9f9f9;margin-bottom:15px;border:1px solid #e5e5e5;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04)}.ninja_widget .title{margin:-15px -10px 0;border-bottom:1px solid #f1f1f1;font-size:14px;padding:8px 12px;line-height:1.4;background:#434d53;color:#fff}.ninja_widget .widget_body{padding-top:10px}.ninja_widget .button-block{width:100%}.pull-right{float:right}.section_widget .heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#fff;overflow:hidden;padding:10px 0}.section_widget .heading .title{float:left;padding:0;margin:0}.section_widget .heading .inline_action{float:right}.section_widget .widget_body{background:#fff;padding:0}.drawer{display:block;border-bottom:1px solid #434a50}.drawer .drawer_body{padding:10px;display:none}.drawer .header{padding:15px 10px;background:#535c63;color:#fff;font-size:17px}.drawer .header .edit_icon{float:right;font-size:12px;cursor:pointer}.drawer .header .handle{cursor:move;font-size:20px;margin-right:5px}.form_group{overflow:hidden;margin-bottom:10px;padding-right:2px}.form_group>label{display:block}.form_group .form_control{display:block;width:100%}.form_group .normalLabel{display:initial;font-weight:400}.form_group .mt5{margin-top:5px}.section-container{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.section-column-9{-webkit-box-flex:2;-ms-flex:2;flex:2;padding:10px}.section-column-3{-webkit-box-flex:1;-ms-flex:1;flex:1}@media (max-width:480px){.section-container{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-orient:vertical;-ms-flex-orient:vertical;-webkit-orient:vertical;orient:vertical}.section-column-9{-webkit-box-ordinal-group:1;-ms-flex-order:1;order:1}.section-column-3{-webkit-box-ordinal-group:2;-ms-flex-order:2;order:2}}.section-column:first-child{margin-right:20px}.tooltip{display:block!important;padding:4px;z-index:10000}.tooltip .tooltip-inner{background:#000;color:#fff;border-radius:16px;padding:5px 10px 4px}.tooltip .tooltip-arrow{display:none}.tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.help_section{margin-top:45px!important}.ninja_widget label{font-weight:400}.ninja_style_wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.ninja_style_wrapper .ninja_column{-webkit-box-flex:1;-ms-flex:1 100%;flex:1 100%}.ninja_style_wrapper .ninja_column:first-child{margin-right:15px}.ninja_style_wrapper .ninja_column:last-child{margin-left:15px}.ninja_color_blocks{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:nowrap;flex-wrap:nowrap;margin-bottom:10px}.ninja_color_blocks .ninja_color_block{-webkit-box-flex:1;-ms-flex:1 100%;flex:1 100%;text-align:center;padding:10px 5px;border:1px solid #cacaca;background:snow}.ninja_color_blocks .ninja_color_block .form_group{margin:0}.ninja_color_blocks .ninja_color_block .form_group .el-color-picker{width:100%;height:30px}.ninja_color_blocks .ninja_color_block .form_group .el-color-picker .el-color-picker__trigger{min-width:100px;height:30px}.ninja_color_blocks .ninja_color_block label{padding:0;margin:0;font-size:11px}.form_group.ninja_color_customization h4{display:block;overflow:hidden;margin-top:0}.ninja_inner_title{margin:0 0 10px;font-size:15px;color:#636060}.ninja_header{overflow:hidden;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ninja_header h2{display:inline-block;margin:0}.ninja_header .ninja_actions_action{float:right}.ninja_design_wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;padding-bottom:20px;background:#fff}.ninja_design_wrapper .design_controls{-webkit-box-flex:1;-ms-flex:1;flex:1;background:#e5e5e5;margin:0 0 -20px;border-left:1px solid #e5e5e5}.ninja_design_wrapper .design_controls .form_group:not(:last-child){border-bottom:1px solid hsla(0,0%,90%,.45);padding-bottom:10px}.ninja_design_wrapper .design_controls .el-collapse-item__header{padding:0 0 0 15px}.ninja_design_wrapper .design_controls .el-collapse-item__header i{font-weight:700;padding-top:18px}.ninja_design_wrapper .design_controls .el-collapse-item__wrap{padding:13px 15px 0;background:#e5e5e5;height:auto;overflow:scroll}.ninja_design_wrapper .design_controls .el-radio-button--mini .el-radio-button__inner{padding:7px!important}.ninja_design_wrapper .design_preview{background:#fff;padding:10px 20px;-webkit-box-flex:2;-ms-flex:2;flex:2;min-height:800px;overflow:scroll}.ninja_title_section .ninja_title,.ninja_title_section .ninja_title h3{display:inline-block}.ninja_title_section button{float:right;margin-top:10px}.ninja_switch_wrapper{margin:20px 0}.ninja_mini{padding:2px 7px;color:#0073aa;font-size:10px}.ninja_resp_tabs span.dashicons{font-size:13px;width:15px;height:10px}input.form-control::-webkit-input-placeholder{color:#ddd}input.form-control:-ms-input-placeholder,input.form-control::-ms-input-placeholder{color:#ddd}input.form-control::placeholder{color:#ddd}.search_action input::-webkit-input-placeholder{color:#969292}.search_action input:-ms-input-placeholder,.search_action input::-ms-input-placeholder{color:#969292}.search_action input::placeholder{color:#969292}.upgrade_box{text-align:center;margin-top:10px}.upgrade_box a{text-decoration:none}.upgrade_box a i{margin-top:-5px;font-size:20px;height:10px}.ninja_upgrade_bar{margin:-10px -20px 0;background:#f35a59;padding:10px 20px;overflow:hidden;color:#fff}.ninja_upgrade_bar a{color:#f35a59;font-weight:700;padding:5px 15px;border-radius:5px;text-decoration:none;background:#fff;border:1px solid #fff}.ninja_upgrade_bar a:hover{color:#fff;background-color:#f35a59;border:1px solid #fff;-webkit-transition:background-color .3s ease;transition:background-color .3s ease}.ninja_btn{text-decoration:none}.label-normalize label{font-weight:400}.ninja_design_tips{color:red;padding:10px;background:#fff;border:1px solid red}.ninja_design_tips ul.ninja_design_tips_lists{margin:0}.el-checkbox-group{overflow:hidden;width:100%}.el-checkbox-group label.el-checkbox{display:inline-block;margin-left:0;margin-right:20px}.el-dialog__wrapper{background:rgba(0,0,0,.55);z-index:9999!important}.ninja_modal-body h3{margin:0}.handle{cursor:move}.el-color-dropdown.el-color-picker__panel,.el-select-dropdown.el-popper{z-index:999999!important}.no_padding_body .el-dialog__body{padding-top:0}.ninja_table_inline_upgrade{padding:20px;margin-bottom:20px;background:#feffb3}.ninja_instruction{padding:10px 15px;background:#e5ffe7;margin-top:20px}.ninja_instruction ul{margin-left:30px;list-style:disc;font-size:110%}.ninja_instruction p{margin:3px 0}h2.nav-tab-wrapper{margin-bottom:15px!important}.doc_link{text-decoration:none;font-size:14px;color:gray}.form_row_full{display:block;overflow:hidden;width:100%}.form_row_full .form_row_half{width:48%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:4%;float:left;display:block}.form_row_full .form_row_half>label{display:block}.form_row_full .form_row_half:last-child{padding-right:0}.el-tooltip__popper h3,.el-tooltip__popper p{margin:0;padding:0}.el-main-editing{background-color:#fff;min-height:70vh;padding:15px 25px;display:block;overflow:auto}.el-main-editing .ninja_header_editing{display:block;overflow:hidden;margin:-15px -25px 20px;padding:10px 25px;border-bottom:1px solid #eae7e7;background:#fbfdff}.el-main-editing .ninja_header_editing h2{margin:0;padding:0;float:left;line-height:30px}.el-main-editing .ninja_header_editing .heading_actions{float:right}.el-main-editing .editing_sub_section{display:block;margin-bottom:40px}.el-main-editing .editing_sub_section .ninja_section_block_header{border-bottom:1px solid #f1f1f1;margin-bottom:20px}.el-main-editing .editing_sub_section .ninja_section_block_header>h3{margin:0}.el-main-editing .editing_sub_section .ninja_section_block_header p{margin:5px 0 10px}.el-main-editing .editing_body{display:block;overflow:hidden;width:100%}.el-main-editing table.ninja_editing_table th{font-weight:500}.el-main-editing table.ninja_editing_table tr td,.el-main-editing table.ninja_editing_table tr th{border-bottom:1px solid #eaeaea!important}.el-radio-group.spaced{max-width:100%;position:relative}.el-radio-group.spaced>label{display:inline-block}.el-radio-group.spaced_new_line>label{display:block;margin-left:0!important;margin-bottom:10px}.nt_suggest{padding:10px;background:#eee;margin-top:20px;border-radius:5px}.nt_suggest h4{margin:0}.nt_suggest ul{margin-left:30px}.nt_suggest ul li{list-style:disc}.ninja_heightlight_block{margin-top:50px;text-align:left;padding:0 20px 20px;border:1px solid #eae7e7;background:#fbfdff}.nt_nav_card_header{padding:10px;border:1px solid #ccc;display:block;background:#fff;font-size:15px;position:relative;cursor:pointer}.nt_nav_card_header.nt_nav_active{background:#545454;color:#fff}.nt_nav_card_header .nav_card_action{float:right}.nt_nav_card_header .nav_card_action button{font-size:22px;margin-top:-10px}.nt_nav_settings{background:#fff;margin:0 0 10px;-webkit-box-shadow:0 2px 6px 0 #c3c3c3;box-shadow:0 2px 6px 0 #c3c3c3;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.nt_nav_settings .nt_nav_body{padding:0 20px 20px;display:block;overflow:hidden;border:1px solid #e4f3ff}.nt_each_selection{display:block;border-bottom:1px solid #80808026;padding-bottom:10px;margin-top:20px}.nt_each_selection:last-child{border-bottom:0}.nt_each_selection .nt_query_header{margin-bottom:15px}.nt_each_selection .nt_query_header h3{margin:0 0 5px;color:#717070}.nt_each_selection .nt_query_header p{margin:0;color:#6f6f6f}.image_selector{overflow:hidden;display:block}.image_selector .image_preview{width:96px;display:inline-block}.image_selector .image_preview img{max-width:100%}.image_selector .image_select_button{display:inline-block;vertical-align:top}.image_selector .nt_form_group{width:49%;float:left}.image_selector .nt_form_group.single_form_group{width:100%;float:none}.el-table__row .nt_btn{border:1px solid transparent;padding:7px 15px;font-size:14px;text-decoration:none;display:inline-block}.el-table__row .nt_btn.nt_rounded_btn{border-radius:4px!important}.nt_cell_editable{cursor:text;min-height:25px}.cell_editing .nt_cell_input,.cell_editing .nt_inline_textarea{width:100%;padding:4px 7px}.sql_connection_wrapper{padding:10px 15px;background:#c5c5c5;border-radius:10px;margin-bottom:20px}.nt_row_2{width:100%;overflow:hidden}.nt_row_2 .form-group{width:48%;float:left}.nt_row_2 .form-group label{width:100%}.nt_row_2 .form-group input{width:90%}
assets/css/ninjatables-public-rtl.css CHANGED
@@ -1,4 +1,4 @@
1
- .footable-details.table,.footable-details.table *,.footable.table,.footable.table *{-webkit-box-sizing:border-box;box-sizing:border-box}.footable-details.table th,.footable.table th{text-align:right}.footable-details.table,.footable.table{width:100%;max-width:100%;margin-bottom:20px}.footable.table tbody tr td,.footable.table tr th{word-break:keep-all}.footable-details.table>caption+thead>tr:first-child>td,.footable-details.table>caption+thead>tr:first-child>th,.footable-details.table>colgroup+thead>tr:first-child>td,.footable-details.table>colgroup+thead>tr:first-child>th,.footable-details.table>thead:first-child>tr:first-child>td,.footable-details.table>thead:first-child>tr:first-child>th,.footable.table>caption+thead>tr:first-child>td,.footable.table>caption+thead>tr:first-child>th,.footable.table>colgroup+thead>tr:first-child>td,.footable.table>colgroup+thead>tr:first-child>th,.footable.table>thead:first-child>tr:first-child>td,.footable.table>thead:first-child>tr:first-child>th{border-top:0}.footable-details.table>tbody>tr>td,.footable-details.table>tbody>tr>th,.footable-details.table>tfoot>tr>td,.footable-details.table>tfoot>tr>th,.footable-details.table>thead>tr>td,.footable-details.table>thead>tr>th,.footable.table>tbody>tr>td,.footable.table>tbody>tr>th,.footable.table>tfoot>tr>td,.footable.table>tfoot>tr>th,.footable.table>thead>tr>td,.footable.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.footable-details.table>thead>tr>td,.footable-details.table>thead>tr>th,.footable.table>thead>tr>td,.footable.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.footable-details.table-condensed>tbody>tr>td,.footable-details.table-condensed>tbody>tr>th,.footable-details.table-condensed>tfoot>tr>td,.footable-details.table-condensed>tfoot>tr>th,.footable-details.table-condensed>thead>tr>td,.footable-details.table-condensed>thead>tr>th,.footable.table-condensed>tbody>tr>td,.footable.table-condensed>tbody>tr>th,.footable.table-condensed>tfoot>tr>td,.footable.table-condensed>tfoot>tr>th,.footable.table-condensed>thead>tr>td,.footable.table-condensed>thead>tr>th{padding:5px}.footable-details.table-bordered,.footable-details.table-bordered>tbody>tr>td,.footable-details.table-bordered>tbody>tr>th,.footable-details.table-bordered>tfoot>tr>td,.footable-details.table-bordered>tfoot>tr>th,.footable-details.table-bordered>thead>tr>td,.footable-details.table-bordered>thead>tr>th,.footable.table-bordered,.footable.table-bordered>tbody>tr>td,.footable.table-bordered>tbody>tr>th,.footable.table-bordered>tfoot>tr>td,.footable.table-bordered>tfoot>tr>th,.footable.table-bordered>thead>tr>td,.footable.table-bordered>thead>tr>th{border:1px solid #ddd}.footable-details.table-bordered>thead>tr>td,.footable-details.table-bordered>thead>tr>th,.footable.table-bordered>thead>tr>td,.footable.table-bordered>thead>tr>th{border-bottom-width:2px}.footable-details.table-striped>tbody>tr:nth-child(odd),.footable.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.footable-details.table-hover>tbody>tr:hover,.footable.table-hover>tbody>tr:hover{background-color:#f5f5f5}.footable .btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px;overflow:visible;text-transform:none}.footable .btn.focus,.footable .btn:focus,.footable .btn:hover{color:#333;text-decoration:none}.footable .btn-default{color:#333;background-color:#fff;border-color:#ccc}.footable .btn-default.active,.footable .btn-default.focus,.footable .btn-default:active,.footable .btn-default:focus,.footable .btn-default:hover,.footable .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.footable .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.footable .btn-primary.active,.footable .btn-primary.focus,.footable .btn-primary:active,.footable .btn-primary:focus,.footable .btn-primary:hover,.footable .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.footable .btn-group,.footable .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.footable .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-bottom-left-radius:0}.footable .btn-group>.btn:first-child{margin-right:0}.footable .btn-group-vertical>.btn,.footable .btn-group>.btn{position:relative;float:right}.footable .btn-group-xs>.btn,.footable .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.footable .btn-group-sm>.btn,.footable .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.footable .btn-group-lg>.btn,.footable .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.footable .caret{display:inline-block;width:0;height:0;margin-right:2px;vertical-align:middle;border-top:4px solid;border-left:4px solid transparent;border-right:4px solid transparent}.footable .btn .caret{margin-right:0}.form-group{margin-bottom:15px}.footable .form-control{display:block;width:100%;height:34px;padding:6px 12px;margin:0;font-family:inherit;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.footable .input-group{position:relative;display:table;border-collapse:separate}.footable .input-group .form-control{position:relative;z-index:2;float:right;width:100%;margin-bottom:0}.footable .input-group-btn{position:relative;font-size:0;white-space:nowrap}.footable .input-group-addon,.footable .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.footable .input-group-addon,.footable .input-group-btn,.footable .input-group .form-control{display:table-cell}.footable .input-group-btn:last-child>.btn,.footable .input-group-btn:last-child>.btn-group,.footable .input-group-btn>.btn+.btn{margin-right:-1px}.footable .input-group-btn>.btn{position:relative}.footable .input-group-btn>.btn:active,.footable .input-group-btn>.btn:focus,.footable .input-group-btn>.btn:hover{z-index:2}.footable .input-group-addon:first-child,.footable .input-group-btn:first-child>.btn,.footable .input-group-btn:first-child>.btn-group>.btn,.footable .input-group-btn:first-child>.dropdown-toggle,.footable .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.footable .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.footable .input-group .form-control:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.footable .input-group-addon:last-child,.footable .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.footable .input-group-btn:first-child>.btn:not(:first-child),.footable .input-group-btn:last-child>.btn,.footable .input-group-btn:last-child>.btn-group>.btn,.footable .input-group-btn:last-child>.dropdown-toggle,.footable .input-group .form-control:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.footable .checkbox,.footable .radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.footable .checkbox label,.footable .radio label{max-width:100%;min-height:20px;padding-right:20px;margin-bottom:0;font-weight:400;cursor:pointer}.footable .checkbox-inline input[type=checkbox],.footable .checkbox input[type=checkbox],.footable .radio-inline input[type=radio],.footable .radio input[type=radio]{position:absolute;margin:4px -20px 0 0;line-height:normal}.footable .checkbox-inline input[type=checkbox]{display:block!important}.footable .dropdown-menu{position:absolute;top:100%;right:0;z-index:1000;display:none;float:right;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.footable .open>.dropdown-menu{display:block;list-style:none!important}.footable .dropdown-menu-right{left:0;right:auto}.footable .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.footable .dropdown-menu>li>a:focus,.footable .dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.footable .pagination{display:inline-block;padding-right:0;margin:20px 0;border-radius:4px}.footable .pagination>li{display:inline}.footable .pagination>li:first-child>a,.footable .pagination>li:first-child>span{margin-right:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.footable .pagination>li>a,.footable .pagination>li>span{position:relative;float:right;padding:6px 12px;margin-right:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none!important;background-color:#fff;border:1px solid #ddd}.footable .pagination>li>a:focus,.footable .pagination>li>a:hover,.footable .pagination>li>span:focus,.footable .pagination>li>span:hover{color:#23527c;background-color:#eee;border-color:#ddd}.footable .pagination>.active>a,.footable .pagination>.active>a:focus,.footable .pagination>.active>a:hover,.footable .pagination>.active>span,.footable .pagination>.active>span:focus,.footable .pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.footable .pagination>.disabled>a,.footable .pagination>.disabled>a:focus,.footable .pagination>.disabled>a:hover,.footable .pagination>.disabled>span,.footable .pagination>.disabled>span:focus,.footable .pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.footable .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.footable .label-default{background-color:#777}.footable-loader.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.footable .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (min-width:768px){.footable .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.footable .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.footable .form-inline .input-group{display:inline-table;vertical-align:middle}.footable .form-inline .input-group .form-control,.footable .form-inline .input-group .input-group-addon,.footable .form-inline .input-group .input-group-btn{width:auto}.footable .form-inline .input-group>.form-control{width:100%}}table.footable,table.footable-details{position:relative;width:100%;border-spacing:0;border-collapse:collapse}table.footable-details{margin-bottom:0}table.footable-hide-fouc{display:none}table>tbody>tr>td>span.footable-toggle{margin-left:8px;opacity:.3}table>tbody>tr>td>span.footable-toggle.last-column{margin-right:8px;float:left}table.table-condensed>tbody>tr>td>span.footable-toggle{margin-left:5px}table.footable-details>tbody>tr>th:first-child{min-width:40px;width:140px}table.footable-details>tbody>tr>td:nth-child(2){word-break:keep-all!important}table.footable-details>tbody>tr:first-child>td,table.footable-details>tbody>tr:first-child>th,table.footable-details>tfoot>tr:first-child>td,table.footable-details>tfoot>tr:first-child>th,table.footable-details>thead>tr:first-child>td,table.footable-details>thead>tr:first-child>th{border-top-width:0}table.footable-details.table-bordered>tbody>tr:first-child>td,table.footable-details.table-bordered>tbody>tr:first-child>th,table.footable-details.table-bordered>tfoot>tr:first-child>td,table.footable-details.table-bordered>tfoot>tr:first-child>th,table.footable-details.table-bordered>thead>tr:first-child>td,table.footable-details.table-bordered>thead>tr:first-child>th{border-top-width:1px}div.footable-loader{vertical-align:middle;text-align:center;height:300px;position:relative}div.footable-loader>span.fooicon{display:inline-block;opacity:.3;font-size:30px;line-height:32px;width:32px;height:32px;margin-top:-16px;margin-right:-16px;position:absolute;top:50%;right:50%;-webkit-animation:fooicon-spin-r 2s infinite linear;animation:fooicon-spin-r 2s infinite linear}table.footable>tbody>tr.footable-empty>td{vertical-align:middle;text-align:center;font-size:30px}table.footable>tbody>tr.footable-detail-row>td,table.footable>tbody>tr.footable-detail-row>th,table.footable>tbody>tr.footable-empty>td,table.footable>tbody>tr.footable-empty>th{display:table-cell}@-webkit-keyframes fooicon-spin-r{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}@keyframes fooicon-spin-r{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}table.footable>thead>tr.footable-filtering>th{border-bottom-width:1px;font-weight:400}.footable-filtering-external.footable-filtering-right,table.footable.footable-filtering-right>thead>tr.footable-filtering>th,table.footable>thead>tr.footable-filtering>th{text-align:left}.footable-filtering-external.footable-filtering-left,table.footable.footable-filtering-left>thead>tr.footable-filtering>th{text-align:right}.footable-filtering-external.footable-filtering-center,table.footable.footable-filtering-center>thead>tr.footable-filtering>th{text-align:center}table.footable>thead>tr.footable-filtering>th div.form-group{margin-bottom:0}table.footable>thead>tr.footable-filtering>th div.form-group+div.form-group{margin-top:5px}table.footable>thead>tr.footable-filtering>th div.input-group{width:100%}.footable-filtering-external ul.dropdown-menu>li>a.checkbox,table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox{margin:0;display:block;position:relative}.footable-filtering-external ul.dropdown-menu>li>a.checkbox>label,table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox>label{display:block;padding-right:20px}.footable-filtering-external ul.dropdown-menu>li>a.checkbox input[type=checkbox],table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox input[type=checkbox]{position:absolute;margin-right:-20px}@media (min-width:768px){table.footable>thead>tr.footable-filtering>th div.input-group{width:auto}table.footable>thead>tr.footable-filtering>th div.form-group{margin-right:2px;margin-left:2px}table.footable>thead>tr.footable-filtering>th div.form-group+div.form-group{margin-top:0}}table.footable>tbody>tr>td.footable-sortable,table.footable>tbody>tr>th.footable-sortable,table.footable>tfoot>tr>td.footable-sortable,table.footable>tfoot>tr>th.footable-sortable,table.footable>thead>tr>td.footable-sortable,table.footable>thead>tr>th.footable-sortable{position:relative;padding-left:30px;cursor:pointer}td.footable-sortable>span.fooicon,th.footable-sortable>span.fooicon{position:absolute;left:0;top:50%;margin-top:-7px;opacity:0;-webkit-transition:opacity .3s ease-in;transition:opacity .3s ease-in}td.footable-sortable.footable-asc>span.fooicon,td.footable-sortable.footable-desc>span.fooicon,td.footable-sortable:hover>span.fooicon,th.footable-sortable.footable-asc>span.fooicon,th.footable-sortable.footable-desc>span.fooicon,th.footable-sortable:hover>span.fooicon{opacity:1}table.footable-sorting-disabled td.footable-sortable.footable-asc>span.fooicon,table.footable-sorting-disabled td.footable-sortable.footable-desc>span.fooicon,table.footable-sorting-disabled td.footable-sortable:hover>span.fooicon,table.footable-sorting-disabled th.footable-sortable.footable-asc>span.fooicon,table.footable-sorting-disabled th.footable-sortable.footable-desc>span.fooicon,table.footable-sorting-disabled th.footable-sortable:hover>span.fooicon{opacity:0;visibility:hidden}.footable-paging-external ul.pagination,table.footable>tfoot>tr.footable-paging>td>ul.pagination{margin:10px 0 0}.footable-paging-external span.label,table.footable>tfoot>tr.footable-paging>td>span.label{display:inline-block;margin:0 0 10px;padding:4px 10px}.footable-paging-external.footable-paging-center,table.footable-paging-center>tfoot>tr.footable-paging>td,table.footable>tfoot>tr.footable-paging>td{text-align:center}.footable-paging-external.footable-paging-left,table.footable-paging-left>tfoot>tr.footable-paging>td{text-align:right}.footable-paging-external.footable-paging-right,table.footable-paging-right>tfoot>tr.footable-paging>td{text-align:left}ul.pagination>li.footable-page{display:none}ul.pagination>li.footable-page.visible{display:inline}td.footable-editing{width:90px;max-width:90px}table.footable-editing-no-delete td.footable-editing,table.footable-editing-no-edit td.footable-editing,table.footable-editing-no-view td.footable-editing{width:70px;max-width:70px}table.footable-editing-no-delete.footable-editing-no-view td.footable-editing,table.footable-editing-no-edit.footable-editing-no-delete td.footable-editing,table.footable-editing-no-edit.footable-editing-no-view td.footable-editing{width:50px;max-width:50px}table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view td.footable-editing,table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view th.footable-editing{width:0;max-width:0;display:none!important}table.footable-editing-right td.footable-editing,table.footable-editing-right tr.footable-editing{text-align:left}table.footable-editing-left td.footable-editing,table.footable-editing-left tr.footable-editing{text-align:right}table.footable-editing-show button.footable-show,table.footable-editing.footable-editing-always-show.footable-editing-no-add tr.footable-editing,table.footable-editing.footable-editing-always-show button.footable-hide,table.footable-editing.footable-editing-always-show button.footable-show,table.footable-editing button.footable-add,table.footable-editing button.footable-hide{display:none}table.footable-editing.footable-editing-always-show button.footable-add,table.footable-editing.footable-editing-show button.footable-add,table.footable-editing.footable-editing-show button.footable-hide{display:inline-block}.foo-table{table-layout:auto}.foo-table>caption{color:#000}.foo-table .nt_button_woo,.foo-table .nt_woo_view_cart{background-color:#a46497;color:#fff;-webkit-font-smoothing:antialiased;white-space:nowrap;display:inline-block;padding:7px 10px;margin:3px 0;-webkit-transition-duration:.4s;transition-duration:.4s;position:relative}.foo-table .nt_button_woo span.fooicon-loader,.foo-table .nt_woo_view_cart span.fooicon-loader{margin-top:-10px;position:absolute;top:50%;right:0;-webkit-animation:fooicon-spin-r .7s infinite linear;animation:fooicon-spin-r .7s infinite linear}.foo-table .nt_button_woo:after,.foo-table .nt_woo_view_cart:after{content:"";background:gray;color:#000;display:block;position:absolute;top:0;right:0;left:0;bottom:0;opacity:0;-webkit-transition:all .8s;transition:all .8s}.foo-table .nt_button_woo:active:after,.foo-table .nt_woo_view_cart:active:after{padding:0;margin:0;opacity:.5;-webkit-transition:0s;transition:0s}.foo-table .nt-quantity-wrapper{display:inline-block;vertical-align:middle;width:auto;white-space:nowrap;position:relative;width:64px;height:40px}.foo-table .nt-quantity-wrapper input{font-size:inherit;color:#000;text-align:center;width:100%!important;height:100%!important;padding:5px;border:1px solid #ddd;margin:0!important;-webkit-appearance:none;-moz-appearance:textfield;appearance:none;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-radius:inherit}.foo-table .nt_add_cart_wrapper.nt_added_cart{display:block;white-space:nowrap;width:auto}.foo-table .nt_add_cart_wrapper.nt_added_cart a.added_to_cart.wc-forward{color:#000;background:transparent;display:inline-block;text-decoration:none!important;-webkit-box-shadow:none;box-shadow:none}.foo-table .nt_add_cart_wrapper.nt_added_cart a.added_to_cart.wc-forward:after{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-style:normal;font-variant:normal;font-weight:400;line-height:1;font-family:ninja-tables-icons;font-weight:900;line-height:inherit;vertical-align:baseline;content:"g";height:1em;float:left;line-height:1.618}.foo-table .nt_btn{border:1px solid transparent;padding:7px 15px;font-size:14px;text-decoration:none!important;display:inline-block}.foo-table .nt_btn.nt_rounded_btn{border-radius:4px!important}.foo-table .nt_btn:hover{opacity:.9;border-color:transparent!important}.foo-table.footable.table>thead>tr>th{padding:.92857143em .78571429em}.foo-table td.footable-editing,.foo-table th.footable-editing{width:auto!important}.foo-table td.footable-editing .btn-group button{padding:1px 5px;margin:0;border-radius:3px}.foo-table td.footable-editing .btn-group button:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.foo-table td.footable-editing .btn-group button:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.foo-table .form-inline{display:block!important;margin-bottom:0}.foo-table.ninja_search_left tr.footable-filtering .form-inline{text-align:right}.foo-table.ninja_search_right tr.footable-filtering .form-inline{text-align:left}.foo-table.ninja_search_center tr.footable-filtering .form-inline{text-align:center}.foo-table td.ninja_temp_cell{display:none!important}.foo-table span.label.label-default{display:none;visibility:hidden}.foo-table.ninja_has_count_format span.label.label-default{display:inline-block;visibility:visible}.foo-table.footable-paging-right .footable-pagination-wrapper{text-align:left}.foo-table.footable-paging-center .footable-pagination-wrapper{text-align:center}.foo-table.footable-paging-left .footable-pagination-wrapper{text-align:right}.foo-table .footable-pagination-wrapper .pagination:after,.foo-table .footable-pagination-wrapper .pagination:before{content:none!important}.foo-table table.footable-details tr th{white-space:normal;overflow:visible!important;text-overflow:unset!important}.foo-table tr.footable-filtering th{overflow:visible!important}.foo-table .pagination{border:none;padding:0;font-weight:500}.foo-table button.btn.btn-default.dropdown-toggle{top:0;left:0;right:0}.foo-table button.btn.btn-default.dropdown-toggle:after{content:"";display:none!important}.foo-table li.dropdown-header{padding-right:20px;padding-bottom:5px;color:#333}.foo-table ul.dropdown-menu.dropdown-menu-right li:last-child a{border-bottom:0!important;-webkit-box-shadow:none;box-shadow:none}.foo-table ul.dropdown-menu.dropdown-menu-right li a:hover{-webkit-box-shadow:inset 0 0 0 transparent,0 1px 0 #000;box-shadow:inset 0 0 0 transparent,0 1px 0 #000}.foo-table span.footable-toggle{cursor:pointer}.foo-table.ninjatable_hide_header_row>thead tr.footable-header{display:none!important;visibility:hidden}.foo-table.hide_all_borders.table{border-color:transparent}.foo-table.hide_all_borders.table thead{border-color:transparent!important}.foo-table.hide_all_borders.table thead td,.foo-table.hide_all_borders.table thead tr,.foo-table.hide_all_borders.table thead tr>th{border-color:transparent!important;border-width:0!important}.foo-table.hide_all_borders.table tbody td,.foo-table.hide_all_borders.table tbody th{border-color:transparent!important}.foo-table.hide_all_borders.table tfoot tr>td{border-color:transparent!important;border:0!important}.foo-table.ninja_table_search_disabled>thead tr.footable-filtering .footable-filtering-search{display:none!important;visibility:hidden!important}.foo-table .form-group.footable-filtering-search .input-group-btn>button{margin:0!important;height:auto!important;padding:6px 12px!important}.foo-table .form-group.footable-filtering-search input.form-control{margin-bottom:0!important}.foo-table tbody tr.footable-detail-row>td{padding:5px!important}.foo-table tbody tr.footable-detail-row td table.footable-details:not(.ninja_custom_color){margin-bottom:0}.foo-table tbody tr.footable-detail-row td table.footable-details:not(.ninja_custom_color) tbody tr:nth-child(2n){background:#f7f7f7!important}.foo-table tbody tr.footable-detail-row table.inverted tbody tr{background:#fff!important;color:#000}.foo-table select.nt_pager_selection{width:auto;display:inline-block;margin-right:5px!important;height:38px;padding:6px 12px;margin:0;font-family:inherit;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.foo-table tbody tr td a,.foo-table tbody tr td h1,.foo-table tbody tr td h2,.foo-table tbody tr td h3,.foo-table tbody tr td p{margin:0;padding:0}.foo-table img{max-width:100%}.foo-table tbody tr:nth-child(2n) td,.foo-table tbody tr:nth-child(2n) th,.foo-table tbody tr:nth-child(odd) td,.foo-table tbody tr:nth-child(odd) th,.foo-table tbody tr td,.foo-table tbody tr th{background-color:transparent}.footable_parent{overflow-x:auto;width:100%}.footable_parent table.foo-table.vertical_centered tbody>tr>td,.footable_parent table.foo-table.vertical_centered thead>tr>th{vertical-align:middle}.ninja_table_pro table.footable-details tr.nt_has_hide{display:none!important}.ninja_table_pro.nt_hide_breakpoint_labels table.footable-details tbody>tr>th{display:none}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search{width:100%}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group{display:block;position:relative}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group>.form-control{display:inline-block;float:none}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group .input-group-btn{position:absolute;left:0;top:0;z-index:999999}.loading_ninja_table1{width:100%;height:200px;background:gray!important}.loading_ninja_table1 table{display:none}table.ninja_footable>thead>tr>th.hidden,table.ninja_footable col.hidden{display:none!important}@media (max-width:767px){table.ninja_footable>thead>tr>th.xs,table.ninja_footable col.xs{display:none}}@media (min-width:768px) and (max-width:991px){table.ninja_footable>thead>tr>th.sm,table.ninja_footable col.sm{display:none}}@media (min-width:992px) and (max-width:1199px){table.ninja_footable>thead>tr>th.md,table.ninja_footable col.md{display:none}}@media (min-width:1200px){table.ninja_footable>thead>tr>th.lg,table.ninja_footable col.lg{display:none}}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label{display:inline-block;margin-left:15px}@media (max-width:767px){.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label{display:block}}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label:last-child,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label:last-child{margin-left:0}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label input,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label input{margin-left:10px}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio label.ninja_filter_title,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox label.ninja_filter_title{margin-left:0}.ninja_table_wrapper table thead .footable-filtering .ninja_filter_title{margin-left:10px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline{display:block;width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group{text-align:right}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .form-control,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group{width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group>.ninja_filter_title{display:block;font-weight:700}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group.ninja_reset_wrapper{margin-top:24px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group{width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group .input-group-btn{width:70px!important}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_date_range,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_number_range{width:49%;margin:0 0 0 2%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_title,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_date_range:last-child,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_number_range:last-child{margin-left:0}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_from{margin-left:10px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_to,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_to{margin-bottom:5px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .form-group.footable-filtering-search .sr-only{position:relative;visibility:hidden!important;color:transparent;height:0;width:0}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:49%;padding:0 0 0 15px;float:right}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group:last-child{padding-left:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-left:0}}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group:nth-child(odd){clear:both}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:33.3%;padding:0 0 0 15px;float:right}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group:last-child{padding-left:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-left:0}}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group:nth-child(3n+1){clear:both}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:24.9%;padding:0 0 0 15px;float:right}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group:last-child{padding-left:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-left:0}}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group:nth-child(4n+1){clear:both}.ninja_table_wrapper .ninja_reset_button{color:#fff;background:#dc3545;border-color:#dc3545}.ninja_table_wrapper .ninja_reset_button:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline{display:block;width:100%}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline>.form-group{margin-bottom:10px}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline .ninja_custom_radio .ninja_filter_title{margin-left:10px}.ninja_table_wrapper .ninja_table_buttons{display:block;overflow:hidden;clear:both}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_left{text-align:right}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_center{text-align:center}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_right{text-align:left}.ninja_table_wrapper .ninja_table_buttons.after_search_box{margin-top:10px}.ninja_table_wrapper .ninja_table_buttons.before_table{margin-bottom:10px}.ninja_table_wrapper .ninja_table_buttons .ninja_button{border-radius:0;border-left:1px solid;padding:5px 10px}.ninja_table_wrapper .ninja_table_buttons .ninja_button:last-child{border-left:none}@media print{.ninja_table_print_view .footable_parent{overflow-x:hidden!important;width:100%}.ninja_table_print_view .footable-editing{display:none!important}}.ninja_table_wrapper .cart_details{display:block;position:relative;text-align:left}.ninja_table_wrapper .cart_details .nt_woo_cart_checkout_bttons,.ninja_table_wrapper .cart_details .nt_woo_items{display:inline-block}.ninja_table_wrapper .cart_details .nt_woo_items{padding-left:10px}.ninjatable_cart_wrapper{margin-bottom:10px}@font-face{font-family:ninja-tables-icons;src:url(../fonts/ninja-tables.eot?5c71ca4c05d382507807df3eef4564b3);src:url(../fonts/ninja-tables.eot?5c71ca4c05d382507807df3eef4564b3) format("embedded-opentype"),url(../fonts/ninja-tables.woff?10ed5e333d4d4b43f270e4007cba8413) format("woff"),url(../fonts/ninja-tables.woff2?1a82860cb5286f7833a2c33fbdd1d76c) format("woff2"),url(../fonts/ninja-tables.ttf?1db694e765d370865653f85529e09f61) format("truetype"),url(../fonts/ninja-tables.svg?0322d5aaaad653b558b843654e227528) format("svg");font-weight:400;font-style:normal}.footable_parent .fooicon{display:inline-block;font-size:inherit;font-family:ninja-tables-icons!important;font-style:normal;font-weight:400;line-height:1;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-transform:translate(0);transform:translate(0)}.footable_parent .fooicon:before{content:attr(data-icon)}.footable_parent .fooicon:before,.footable_parent [class*=" fooicon-"]:before,.footable_parent [class*=" footable-"]:before,.footable_parent [class^=fooicon-]:before,.footable_parent [class^=footable-]:before{font-family:ninja-tables-icons!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.footable_parent .fooicon-search:before{content:"\F002"}.footable_parent .fooicon-sort-desc:before{content:"\F161"}.footable_parent .fooicon-sort-asc:before{content:"\F160"}.footable_parent .fooicon-sort:before{content:"\F0DC"}.footable_parent .fooicon-minus:before{content:"\F068"}.footable_parent .fooicon-plus:before{content:"\F067"}.footable_parent .fooicon-circle-o-notch:before{content:"\E000"}.footable_parent .fooicon-remove:before{content:"\F00D"}.footable_parent .fooicon-loader-alt:before{content:"\F01"}.footable_parent .fooicon-refresh:before{content:"\E001"}.footable_parent .fooicon-loader:before{content:"\F01E"}.footable_parent .fooicon-grid:before{content:"a"}.footable_parent .fooicon-pencil:before{content:"b"}.footable_parent .fooicon-delete:before{content:"c"}.footable_parent .fooicon-view:before{content:"d"}.footable_parent .fooicon-edit:before{content:"e"}.footable_parent .fooicon-bag:before{content:"f"}.footable_parent .fooicon-basket:before{content:"g"}.footable_parent .fooicon-star:before{content:"h"}.footable_parent .fooicon-star-o:before{content:"i"}.footable_parent .fooicon-check:before{content:"j"}.footable_parent .fooicon-heart:before{content:"k"}.footable_parent .fooicon-download:before{content:"l"}.footable_parent .fooicon-trash:before{content:"c"}.footable_parent .fooicon-remove-1:before{content:"\F00D"}.bootstrap3 table{background-color:transparent}.bootstrap3 caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:right}.bootstrap3 th{text-align:right}.bootstrap3 .table{width:100%;max-width:100%;margin-bottom:20px}.bootstrap3 .table>tbody>tr>td,.bootstrap3 .table>tbody>tr>th,.bootstrap3 .table>tfoot>tr>td,.bootstrap3 .table>tfoot>tr>th,.bootstrap3 .table>thead>tr>td,.bootstrap3 .table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.bootstrap3 .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.bootstrap3 .table>caption+thead>tr:first-child>td,.bootstrap3 .table>caption+thead>tr:first-child>th,.bootstrap3 .table>colgroup+thead>tr:first-child>td,.bootstrap3 .table>colgroup+thead>tr:first-child>th,.bootstrap3 .table>thead:first-child>tr:first-child>td,.bootstrap3 .table>thead:first-child>tr:first-child>th{border-top:0}.bootstrap3 .table>tbody+tbody{border-top:2px solid #ddd}.bootstrap3 .table .table{background-color:#fff;color:#000}.bootstrap3 .table-condensed>tbody>tr>td,.bootstrap3 .table-condensed>tbody>tr>th,.bootstrap3 .table-condensed>tfoot>tr>td,.bootstrap3 .table-condensed>tfoot>tr>th,.bootstrap3 .table-condensed>thead>tr>td,.bootstrap3 .table-condensed>thead>tr>th{padding:5px}.bootstrap3 .table-bordered,.bootstrap3 .table-bordered>tbody>tr>td,.bootstrap3 .table-bordered>tbody>tr>th,.bootstrap3 .table-bordered>tfoot>tr>td,.bootstrap3 .table-bordered>tfoot>tr>th,.bootstrap3 .table-bordered>thead>tr>td,.bootstrap3 .table-bordered>thead>tr>th{border:1px solid #ddd}.bootstrap3 .table-bordered>thead>tr>td,.bootstrap3 .table-bordered>thead>tr>th{border-bottom-width:2px}.bootstrap3 .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.bootstrap3 .table-hover>tbody>tr:hover{background-color:#f5f5f5}.bootstrap3 table col[class*=col-]{position:static;display:table-column;float:none}.bootstrap3 table td[class*=col-],.bootstrap3 table th[class*=col-]{position:static;display:table-cell;float:none}.bootstrap3 .table>tbody>tr.active>td,.bootstrap3 .table>tbody>tr.active>th,.bootstrap3 .table>tbody>tr>td.active,.bootstrap3 .table>tbody>tr>th.active,.bootstrap3 .table>tfoot>tr.active>td,.bootstrap3 .table>tfoot>tr.active>th,.bootstrap3 .table>tfoot>tr>td.active,.bootstrap3 .table>tfoot>tr>th.active,.bootstrap3 .table>thead>tr.active>td,.bootstrap3 .table>thead>tr.active>th,.bootstrap3 .table>thead>tr>td.active,.bootstrap3 .table>thead>tr>th.active{background-color:#f5f5f5}.bootstrap3 .table-hover>tbody>tr.active:hover>td,.bootstrap3 .table-hover>tbody>tr.active:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.active,.bootstrap3 .table-hover>tbody>tr>td.active:hover,.bootstrap3 .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.bootstrap3 .table>tbody>tr.success>td,.bootstrap3 .table>tbody>tr.success>th,.bootstrap3 .table>tbody>tr>td.success,.bootstrap3 .table>tbody>tr>th.success,.bootstrap3 .table>tfoot>tr.success>td,.bootstrap3 .table>tfoot>tr.success>th,.bootstrap3 .table>tfoot>tr>td.success,.bootstrap3 .table>tfoot>tr>th.success,.bootstrap3 .table>thead>tr.success>td,.bootstrap3 .table>thead>tr.success>th,.bootstrap3 .table>thead>tr>td.success,.bootstrap3 .table>thead>tr>th.success{background-color:#dff0d8}.bootstrap3 .table-hover>tbody>tr.success:hover>td,.bootstrap3 .table-hover>tbody>tr.success:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.success,.bootstrap3 .table-hover>tbody>tr>td.success:hover,.bootstrap3 .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.bootstrap3 .table>tbody>tr.info>td,.bootstrap3 .table>tbody>tr.info>th,.bootstrap3 .table>tbody>tr>td.info,.bootstrap3 .table>tbody>tr>th.info,.bootstrap3 .table>tfoot>tr.info>td,.bootstrap3 .table>tfoot>tr.info>th,.bootstrap3 .table>tfoot>tr>td.info,.bootstrap3 .table>tfoot>tr>th.info,.bootstrap3 .table>thead>tr.info>td,.bootstrap3 .table>thead>tr.info>th,.bootstrap3 .table>thead>tr>td.info,.bootstrap3 .table>thead>tr>th.info{background-color:#d9edf7}.bootstrap3 .table-hover>tbody>tr.info:hover>td,.bootstrap3 .table-hover>tbody>tr.info:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.info,.bootstrap3 .table-hover>tbody>tr>td.info:hover,.bootstrap3 .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.bootstrap3 .table>tbody>tr.warning>td,.bootstrap3 .table>tbody>tr.warning>th,.bootstrap3 .table>tbody>tr>td.warning,.bootstrap3 .table>tbody>tr>th.warning,.bootstrap3 .table>tfoot>tr.warning>td,.bootstrap3 .table>tfoot>tr.warning>th,.bootstrap3 .table>tfoot>tr>td.warning,.bootstrap3 .table>tfoot>tr>th.warning,.bootstrap3 .table>thead>tr.warning>td,.bootstrap3 .table>thead>tr.warning>th,.bootstrap3 .table>thead>tr>td.warning,.bootstrap3 .table>thead>tr>th.warning{background-color:#fcf8e3}.bootstrap3 .table-hover>tbody>tr.warning:hover>td,.bootstrap3 .table-hover>tbody>tr.warning:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.warning,.bootstrap3 .table-hover>tbody>tr>td.warning:hover,.bootstrap3 .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.bootstrap3 .table>tbody>tr.danger>td,.bootstrap3 .table>tbody>tr.danger>th,.bootstrap3 .table>tbody>tr>td.danger,.bootstrap3 .table>tbody>tr>th.danger,.bootstrap3 .table>tfoot>tr.danger>td,.bootstrap3 .table>tfoot>tr.danger>th,.bootstrap3 .table>tfoot>tr>td.danger,.bootstrap3 .table>tfoot>tr>th.danger,.bootstrap3 .table>thead>tr.danger>td,.bootstrap3 .table>thead>tr.danger>th,.bootstrap3 .table>thead>tr>td.danger,.bootstrap3 .table>thead>tr>th.danger{background-color:#f2dede}.bootstrap3 .table-hover>tbody>tr.danger:hover>td,.bootstrap3 .table-hover>tbody>tr.danger:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.danger,.bootstrap3 .table-hover>tbody>tr>td.danger:hover,.bootstrap3 .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.bootstrap3 .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.bootstrap3 .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.bootstrap3 .table-responsive>.table{margin-bottom:0}.bootstrap3 .table-responsive>.table>tbody>tr>td,.bootstrap3 .table-responsive>.table>tbody>tr>th,.bootstrap3 .table-responsive>.table>tfoot>tr>td,.bootstrap3 .table-responsive>.table>tfoot>tr>th,.bootstrap3 .table-responsive>.table>thead>tr>td,.bootstrap3 .table-responsive>.table>thead>tr>th{white-space:nowrap}.bootstrap3 .table-responsive>.table-bordered{border:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>tbody>tr>th:first-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>th:first-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>th:first-child{border-right:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>tbody>tr>th:last-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>th:last-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>th:last-child{border-left:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr:last-child>td,.bootstrap3 .table-responsive>.table-bordered>tbody>tr:last-child>th,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr:last-child>td,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.bootstrap4 .table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.bootstrap4 .table td,.bootstrap4 .table th{padding:.75rem;vertical-align:top;border-top:1px solid #e9ecef}.bootstrap4 .table thead th{vertical-align:bottom;border-bottom:2px solid #e9ecef}.bootstrap4 .table tbody+tbody{border-top:2px solid #e9ecef}.bootstrap4 .table .table{background-color:#fff;color:#000}.bootstrap4 .table-sm td,.bootstrap4 .table-sm th{padding:.3rem}.bootstrap4 .table-bordered,.bootstrap4 .table-bordered td,.bootstrap4 .table-bordered th{border:1px solid #e9ecef}.bootstrap4 .table-bordered thead td,.bootstrap4 .table-bordered thead th{border-bottom-width:2px}.bootstrap4 .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.bootstrap4 .table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.bootstrap4 .table-primary,.bootstrap4 .table-primary>td,.bootstrap4 .table-primary>th{background-color:#b8daff}.bootstrap4 .table-hover .table-primary:hover,.bootstrap4 .table-hover .table-primary:hover>td,.bootstrap4 .table-hover .table-primary:hover>th{background-color:#9fcdff}.bootstrap4 .table-secondary,.bootstrap4 .table-secondary>td,.bootstrap4 .table-secondary>th{background-color:#dddfe2}.bootstrap4 .table-hover .table-secondary:hover,.bootstrap4 .table-hover .table-secondary:hover>td,.bootstrap4 .table-hover .table-secondary:hover>th{background-color:#cfd2d6}.bootstrap4 .table-success,.bootstrap4 .table-success>td,.bootstrap4 .table-success>th{background-color:#c3e6cb}.bootstrap4 .table-hover .table-success:hover,.bootstrap4 .table-hover .table-success:hover>td,.bootstrap4 .table-hover .table-success:hover>th{background-color:#b1dfbb}.bootstrap4 .table-info,.bootstrap4 .table-info>td,.bootstrap4 .table-info>th{background-color:#bee5eb}.bootstrap4 .table-hover .table-info:hover,.bootstrap4 .table-hover .table-info:hover>td,.bootstrap4 .table-hover .table-info:hover>th{background-color:#abdde5}.bootstrap4 .table-warning,.bootstrap4 .table-warning>td,.bootstrap4 .table-warning>th{background-color:#ffeeba}.bootstrap4 .table-hover .table-warning:hover,.bootstrap4 .table-hover .table-warning:hover>td,.bootstrap4 .table-hover .table-warning:hover>th{background-color:#ffe8a1}.bootstrap4 .table-danger,.bootstrap4 .table-danger>td,.bootstrap4 .table-danger>th{background-color:#f5c6cb}.bootstrap4 .table-hover .table-danger:hover,.bootstrap4 .table-hover .table-danger:hover>td,.bootstrap4 .table-hover .table-danger:hover>th{background-color:#f1b0b7}.bootstrap4 .table-light,.bootstrap4 .table-light>td,.bootstrap4 .table-light>th{background-color:#fdfdfe}.bootstrap4 .table-hover .table-light:hover,.bootstrap4 .table-hover .table-light:hover>td,.bootstrap4 .table-hover .table-light:hover>th{background-color:#ececf6}.bootstrap4 .table-dark,.bootstrap4 .table-dark>td,.bootstrap4 .table-dark>th{background-color:#c6c8ca}.bootstrap4 .table-hover .table-dark:hover,.bootstrap4 .table-hover .table-dark:hover>td,.bootstrap4 .table-hover .table-dark:hover>th{background-color:#b9bbbe}.bootstrap4 .table-active,.bootstrap4 .table-active>td,.bootstrap4 .table-active>th,.bootstrap4 .table-hover .table-active:hover,.bootstrap4 .table-hover .table-active:hover>td,.bootstrap4 .table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.bootstrap4 .thead-inverse th{color:#fff;background-color:#212529}.bootstrap4 .thead-default th{color:#495057;background-color:#e9ecef}.bootstrap4 .table-inverse{color:#fff;background-color:#212529}.bootstrap4 .table-inverse td,.bootstrap4 .table-inverse th,.bootstrap4 .table-inverse thead th{border-color:#32383e}.bootstrap4 .table-inverse.table-bordered{border:0}.bootstrap4 .table-inverse.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.bootstrap4 .table-inverse.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075)}@media (max-width:991px){.bootstrap4 .table-responsive{display:block;width:100%;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar}.bootstrap4 .table-responsive.table-bordered{border:0}}.semantic_ui{
2
  /*!
3
  * # Semantic UI 2.2.12 - Table
4
  * http://github.com/semantic-org/semantic-ui/
1
+ .footable-details.table,.footable-details.table *,.footable.table,.footable.table *{-webkit-box-sizing:border-box;box-sizing:border-box}.footable-details.table th,.footable.table th{text-align:right}.footable-details.table,.footable.table{width:100%;max-width:100%;margin-bottom:20px}.footable.table tbody tr td,.footable.table tr th{word-break:keep-all}.footable-details.table>caption+thead>tr:first-child>td,.footable-details.table>caption+thead>tr:first-child>th,.footable-details.table>colgroup+thead>tr:first-child>td,.footable-details.table>colgroup+thead>tr:first-child>th,.footable-details.table>thead:first-child>tr:first-child>td,.footable-details.table>thead:first-child>tr:first-child>th,.footable.table>caption+thead>tr:first-child>td,.footable.table>caption+thead>tr:first-child>th,.footable.table>colgroup+thead>tr:first-child>td,.footable.table>colgroup+thead>tr:first-child>th,.footable.table>thead:first-child>tr:first-child>td,.footable.table>thead:first-child>tr:first-child>th{border-top:0}.footable-details.table>tbody>tr>td,.footable-details.table>tbody>tr>th,.footable-details.table>tfoot>tr>td,.footable-details.table>tfoot>tr>th,.footable-details.table>thead>tr>td,.footable-details.table>thead>tr>th,.footable.table>tbody>tr>td,.footable.table>tbody>tr>th,.footable.table>tfoot>tr>td,.footable.table>tfoot>tr>th,.footable.table>thead>tr>td,.footable.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.footable-details.table>thead>tr>td,.footable-details.table>thead>tr>th,.footable.table>thead>tr>td,.footable.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.footable-details.table-condensed>tbody>tr>td,.footable-details.table-condensed>tbody>tr>th,.footable-details.table-condensed>tfoot>tr>td,.footable-details.table-condensed>tfoot>tr>th,.footable-details.table-condensed>thead>tr>td,.footable-details.table-condensed>thead>tr>th,.footable.table-condensed>tbody>tr>td,.footable.table-condensed>tbody>tr>th,.footable.table-condensed>tfoot>tr>td,.footable.table-condensed>tfoot>tr>th,.footable.table-condensed>thead>tr>td,.footable.table-condensed>thead>tr>th{padding:5px}.footable-details.table-bordered,.footable-details.table-bordered>tbody>tr>td,.footable-details.table-bordered>tbody>tr>th,.footable-details.table-bordered>tfoot>tr>td,.footable-details.table-bordered>tfoot>tr>th,.footable-details.table-bordered>thead>tr>td,.footable-details.table-bordered>thead>tr>th,.footable.table-bordered,.footable.table-bordered>tbody>tr>td,.footable.table-bordered>tbody>tr>th,.footable.table-bordered>tfoot>tr>td,.footable.table-bordered>tfoot>tr>th,.footable.table-bordered>thead>tr>td,.footable.table-bordered>thead>tr>th{border:1px solid #ddd}.footable-details.table-bordered>thead>tr>td,.footable-details.table-bordered>thead>tr>th,.footable.table-bordered>thead>tr>td,.footable.table-bordered>thead>tr>th{border-bottom-width:2px}.footable-details.table-striped>tbody>tr:nth-child(odd),.footable.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.footable-details.table-hover>tbody>tr:hover,.footable.table-hover>tbody>tr:hover{background-color:#f5f5f5}.footable .btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px;overflow:visible;text-transform:none}.footable .btn.focus,.footable .btn:focus,.footable .btn:hover{color:#333;text-decoration:none}.footable .btn-default{color:#333;background-color:#fff;border-color:#ccc}.footable .btn-default.active,.footable .btn-default.focus,.footable .btn-default:active,.footable .btn-default:focus,.footable .btn-default:hover,.footable .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.footable .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.footable .btn-primary.active,.footable .btn-primary.focus,.footable .btn-primary:active,.footable .btn-primary:focus,.footable .btn-primary:hover,.footable .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.footable .btn-group,.footable .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.footable .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-left-radius:0;border-bottom-left-radius:0}.footable .btn-group>.btn:first-child{margin-right:0}.footable .btn-group-vertical>.btn,.footable .btn-group>.btn{position:relative;float:right}.footable .btn-group-xs>.btn,.footable .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.footable .btn-group-sm>.btn,.footable .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.footable .btn-group-lg>.btn,.footable .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.footable .caret{display:inline-block;width:0;height:0;margin-right:2px;vertical-align:middle;border-top:4px solid;border-left:4px solid transparent;border-right:4px solid transparent}.footable .btn .caret{margin-right:0}.form-group{margin-bottom:15px}.footable .form-control{display:block;width:100%;height:34px;padding:6px 12px;margin:0;font-family:inherit;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.footable .input-group{position:relative;display:table;border-collapse:separate}.footable .input-group .form-control{position:relative;z-index:2;float:right;width:100%;margin-bottom:0}.footable .input-group-btn{position:relative;font-size:0;white-space:nowrap}.footable .input-group-addon,.footable .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.footable .input-group-addon,.footable .input-group-btn,.footable .input-group .form-control{display:table-cell}.footable .input-group-btn:last-child>.btn,.footable .input-group-btn:last-child>.btn-group,.footable .input-group-btn>.btn+.btn{margin-right:-1px}.footable .input-group-btn>.btn{position:relative}.footable .input-group-btn>.btn:active,.footable .input-group-btn>.btn:focus,.footable .input-group-btn>.btn:hover{z-index:2}.footable .input-group-addon:first-child,.footable .input-group-btn:first-child>.btn,.footable .input-group-btn:first-child>.btn-group>.btn,.footable .input-group-btn:first-child>.dropdown-toggle,.footable .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.footable .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.footable .input-group .form-control:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.footable .input-group-addon:last-child,.footable .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.footable .input-group-btn:first-child>.btn:not(:first-child),.footable .input-group-btn:last-child>.btn,.footable .input-group-btn:last-child>.btn-group>.btn,.footable .input-group-btn:last-child>.dropdown-toggle,.footable .input-group .form-control:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.footable .checkbox,.footable .radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.footable .checkbox label,.footable .radio label{max-width:100%;min-height:20px;padding-right:20px;margin-bottom:0;font-weight:400;cursor:pointer}.footable .checkbox-inline input[type=checkbox],.footable .checkbox input[type=checkbox],.footable .radio-inline input[type=radio],.footable .radio input[type=radio]{position:absolute;margin:4px -20px 0 0;line-height:normal}.footable .checkbox-inline input[type=checkbox]{display:block!important}.footable .dropdown-menu{position:absolute;top:100%;right:0;z-index:1000;display:none;float:right;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:right;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.footable .open>.dropdown-menu{display:block;list-style:none!important}.footable .dropdown-menu-right{left:0;right:auto}.footable .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.footable .dropdown-menu>li>a:focus,.footable .dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.footable .pagination{display:inline-block;padding-right:0;margin:20px 0;border-radius:4px}.footable .pagination>li{display:inline}.footable .pagination>li:first-child>a,.footable .pagination>li:first-child>span{margin-right:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.footable .pagination>li>a,.footable .pagination>li>span{position:relative;float:right;padding:6px 12px;margin-right:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none!important;background-color:#fff;border:1px solid #ddd}.footable .pagination>li>a:focus,.footable .pagination>li>a:hover,.footable .pagination>li>span:focus,.footable .pagination>li>span:hover{color:#23527c;background-color:#eee;border-color:#ddd}.footable .pagination>.active>a,.footable .pagination>.active>a:focus,.footable .pagination>.active>a:hover,.footable .pagination>.active>span,.footable .pagination>.active>span:focus,.footable .pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.footable .pagination>.disabled>a,.footable .pagination>.disabled>a:focus,.footable .pagination>.disabled>a:hover,.footable .pagination>.disabled>span,.footable .pagination>.disabled>span:focus,.footable .pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.footable .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.footable .label-default{background-color:#777}.footable-loader.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.footable .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (min-width:768px){.footable .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.footable .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.footable .form-inline .input-group{display:inline-table;vertical-align:middle}.footable .form-inline .input-group .form-control,.footable .form-inline .input-group .input-group-addon,.footable .form-inline .input-group .input-group-btn{width:auto}.footable .form-inline .input-group>.form-control{width:100%}}table.footable,table.footable-details{position:relative;width:100%;border-spacing:0;border-collapse:collapse}table.footable-details{margin-bottom:0}table.footable-hide-fouc{display:none}table>tbody>tr>td>span.footable-toggle{margin-left:8px;opacity:.3}table>tbody>tr>td>span.footable-toggle.last-column{margin-right:8px;float:left}table.table-condensed>tbody>tr>td>span.footable-toggle{margin-left:5px}table.footable-details>tbody>tr>th:first-child{min-width:40px;width:140px}table.footable-details>tbody>tr>td:nth-child(2){word-break:keep-all!important}table.footable-details>tbody>tr:first-child>td,table.footable-details>tbody>tr:first-child>th,table.footable-details>tfoot>tr:first-child>td,table.footable-details>tfoot>tr:first-child>th,table.footable-details>thead>tr:first-child>td,table.footable-details>thead>tr:first-child>th{border-top-width:0}table.footable-details.table-bordered>tbody>tr:first-child>td,table.footable-details.table-bordered>tbody>tr:first-child>th,table.footable-details.table-bordered>tfoot>tr:first-child>td,table.footable-details.table-bordered>tfoot>tr:first-child>th,table.footable-details.table-bordered>thead>tr:first-child>td,table.footable-details.table-bordered>thead>tr:first-child>th{border-top-width:1px}div.footable-loader{vertical-align:middle;text-align:center;height:300px;position:relative}div.footable-loader>span.fooicon{display:inline-block;opacity:.3;font-size:30px;line-height:32px;width:32px;height:32px;margin-top:-16px;margin-right:-16px;position:absolute;top:50%;right:50%;-webkit-animation:fooicon-spin-r 2s infinite linear;animation:fooicon-spin-r 2s infinite linear}table.footable>tbody>tr.footable-empty>td{vertical-align:middle;text-align:center;font-size:30px}table.footable>tbody>tr.footable-detail-row>td,table.footable>tbody>tr.footable-detail-row>th,table.footable>tbody>tr.footable-empty>td,table.footable>tbody>tr.footable-empty>th{display:table-cell}@-webkit-keyframes fooicon-spin-r{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}@keyframes fooicon-spin-r{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}table.footable>thead>tr.footable-filtering>th{border-bottom-width:1px;font-weight:400}.footable-filtering-external.footable-filtering-right,table.footable.footable-filtering-right>thead>tr.footable-filtering>th,table.footable>thead>tr.footable-filtering>th{text-align:left}.footable-filtering-external.footable-filtering-left,table.footable.footable-filtering-left>thead>tr.footable-filtering>th{text-align:right}.footable-filtering-external.footable-filtering-center,table.footable.footable-filtering-center>thead>tr.footable-filtering>th{text-align:center}table.footable>thead>tr.footable-filtering>th div.form-group{margin-bottom:0}table.footable>thead>tr.footable-filtering>th div.form-group+div.form-group{margin-top:5px}table.footable>thead>tr.footable-filtering>th div.input-group{width:100%}.footable-filtering-external ul.dropdown-menu>li>a.checkbox,table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox{margin:0;display:block;position:relative}.footable-filtering-external ul.dropdown-menu>li>a.checkbox>label,table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox>label{display:block;padding-right:20px}.footable-filtering-external ul.dropdown-menu>li>a.checkbox input[type=checkbox],table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox input[type=checkbox]{position:absolute;margin-right:-20px}@media (min-width:768px){table.footable>thead>tr.footable-filtering>th div.input-group{width:auto}table.footable>thead>tr.footable-filtering>th div.form-group{margin-right:2px;margin-left:2px}table.footable>thead>tr.footable-filtering>th div.form-group+div.form-group{margin-top:0}}table.footable>tbody>tr>td.footable-sortable,table.footable>tbody>tr>th.footable-sortable,table.footable>tfoot>tr>td.footable-sortable,table.footable>tfoot>tr>th.footable-sortable,table.footable>thead>tr>td.footable-sortable,table.footable>thead>tr>th.footable-sortable{position:relative;padding-left:30px;cursor:pointer}td.footable-sortable>span.fooicon,th.footable-sortable>span.fooicon{position:absolute;left:0;top:50%;margin-top:-7px;opacity:0;-webkit-transition:opacity .3s ease-in;transition:opacity .3s ease-in}td.footable-sortable.footable-asc>span.fooicon,td.footable-sortable.footable-desc>span.fooicon,td.footable-sortable:hover>span.fooicon,th.footable-sortable.footable-asc>span.fooicon,th.footable-sortable.footable-desc>span.fooicon,th.footable-sortable:hover>span.fooicon{opacity:1}table.footable-sorting-disabled td.footable-sortable.footable-asc>span.fooicon,table.footable-sorting-disabled td.footable-sortable.footable-desc>span.fooicon,table.footable-sorting-disabled td.footable-sortable:hover>span.fooicon,table.footable-sorting-disabled th.footable-sortable.footable-asc>span.fooicon,table.footable-sorting-disabled th.footable-sortable.footable-desc>span.fooicon,table.footable-sorting-disabled th.footable-sortable:hover>span.fooicon{opacity:0;visibility:hidden}.footable-paging-external ul.pagination,table.footable>tfoot>tr.footable-paging>td>ul.pagination{margin:10px 0 0}.footable-paging-external span.label,table.footable>tfoot>tr.footable-paging>td>span.label{display:inline-block;margin:0 0 10px;padding:4px 10px}.footable-paging-external.footable-paging-center,table.footable-paging-center>tfoot>tr.footable-paging>td,table.footable>tfoot>tr.footable-paging>td{text-align:center}.footable-paging-external.footable-paging-left,table.footable-paging-left>tfoot>tr.footable-paging>td{text-align:right}.footable-paging-external.footable-paging-right,table.footable-paging-right>tfoot>tr.footable-paging>td{text-align:left}ul.pagination>li.footable-page{display:none}ul.pagination>li.footable-page.visible{display:inline}td.footable-editing{width:90px;max-width:90px}table.footable-editing-no-delete td.footable-editing,table.footable-editing-no-edit td.footable-editing,table.footable-editing-no-view td.footable-editing{width:70px;max-width:70px}table.footable-editing-no-delete.footable-editing-no-view td.footable-editing,table.footable-editing-no-edit.footable-editing-no-delete td.footable-editing,table.footable-editing-no-edit.footable-editing-no-view td.footable-editing{width:50px;max-width:50px}table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view td.footable-editing,table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view th.footable-editing{width:0;max-width:0;display:none!important}table.footable-editing-right td.footable-editing,table.footable-editing-right tr.footable-editing{text-align:left}table.footable-editing-left td.footable-editing,table.footable-editing-left tr.footable-editing{text-align:right}table.footable-editing-show button.footable-show,table.footable-editing.footable-editing-always-show.footable-editing-no-add tr.footable-editing,table.footable-editing.footable-editing-always-show button.footable-hide,table.footable-editing.footable-editing-always-show button.footable-show,table.footable-editing button.footable-add,table.footable-editing button.footable-hide{display:none}table.footable-editing.footable-editing-always-show button.footable-add,table.footable-editing.footable-editing-show button.footable-add,table.footable-editing.footable-editing-show button.footable-hide{display:inline-block}.foo-table{table-layout:auto}.foo-table>caption{color:#000}.foo-table .nt_button_woo,.foo-table .nt_woo_view_cart{background-color:#a46497;color:#fff;-webkit-font-smoothing:antialiased;white-space:nowrap;display:inline-block;padding:7px 10px;margin:3px 0;-webkit-transition-duration:.4s;transition-duration:.4s;position:relative}.foo-table .nt_button_woo span.fooicon-loader,.foo-table .nt_woo_view_cart span.fooicon-loader{margin-top:-10px;position:absolute;top:50%;right:0;-webkit-animation:fooicon-spin-r .7s infinite linear;animation:fooicon-spin-r .7s infinite linear}.foo-table .nt_button_woo:after,.foo-table .nt_woo_view_cart:after{content:"";background:gray;color:#000;display:block;position:absolute;top:0;right:0;left:0;bottom:0;opacity:0;-webkit-transition:all .8s;transition:all .8s}.foo-table .nt_button_woo:active:after,.foo-table .nt_woo_view_cart:active:after{padding:0;margin:0;opacity:.5;-webkit-transition:0s;transition:0s}.foo-table .nt-quantity-wrapper{display:inline-block;vertical-align:middle;width:auto;white-space:nowrap;position:relative;width:64px;height:40px}.foo-table .nt-quantity-wrapper input{font-size:inherit;color:#000;text-align:center;width:100%!important;height:100%!important;padding:5px;border:1px solid #ddd;margin:0!important;-webkit-appearance:none;-moz-appearance:textfield;appearance:none;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-radius:inherit}.foo-table .nt_add_cart_wrapper.nt_added_cart{display:block;white-space:nowrap;width:auto}.foo-table .nt_add_cart_wrapper.nt_added_cart a.added_to_cart.wc-forward{color:#000;background:transparent;display:inline-block;text-decoration:none!important;-webkit-box-shadow:none;box-shadow:none}.foo-table .nt_add_cart_wrapper.nt_added_cart a.added_to_cart.wc-forward:after{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-style:normal;font-variant:normal;font-weight:400;line-height:1;font-family:ninja-tables-icons;font-weight:900;line-height:inherit;vertical-align:baseline;content:"g";height:1em;float:left;line-height:1.618}.foo-table.ninja_require_initial_hide.nt_type_legacy_table{display:none!important}.foo-table .nt_btn{border:1px solid transparent;padding:7px 15px;font-size:14px;text-decoration:none!important;display:inline-block}.foo-table .nt_btn.nt_rounded_btn{border-radius:4px!important}.foo-table .nt_btn:hover{opacity:.9;border-color:transparent!important}.foo-table.footable.table>thead>tr>th{padding:.92857143em .78571429em}.foo-table td.footable-editing,.foo-table th.footable-editing{width:auto!important}.foo-table td.footable-editing .btn-group button{padding:1px 5px;margin:0;border-radius:3px}.foo-table td.footable-editing .btn-group button:last-child{border-top-right-radius:0;border-bottom-right-radius:0}.foo-table td.footable-editing .btn-group button:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.foo-table .form-inline{display:block!important;margin-bottom:0}.foo-table.ninja_search_left tr.footable-filtering .form-inline{text-align:right}.foo-table.ninja_search_right tr.footable-filtering .form-inline{text-align:left}.foo-table.ninja_search_center tr.footable-filtering .form-inline{text-align:center}.foo-table td.ninja_temp_cell{display:none!important}.foo-table span.label.label-default{display:none;visibility:hidden}.foo-table.ninja_has_count_format span.label.label-default{display:inline-block;visibility:visible}.foo-table.footable-paging-right .footable-pagination-wrapper{text-align:left}.foo-table.footable-paging-center .footable-pagination-wrapper{text-align:center}.foo-table.footable-paging-left .footable-pagination-wrapper{text-align:right}.foo-table .footable-pagination-wrapper .pagination:after,.foo-table .footable-pagination-wrapper .pagination:before{content:none!important}.foo-table table.footable-details tr th{white-space:normal;overflow:visible!important;text-overflow:unset!important}.foo-table tr.footable-filtering th{overflow:visible!important}.foo-table .pagination{border:none;padding:0;font-weight:500}.foo-table button.btn.btn-default.dropdown-toggle{top:0;left:0;right:0}.foo-table button.btn.btn-default.dropdown-toggle:after{content:"";display:none!important}.foo-table li.dropdown-header{padding-right:20px;padding-bottom:5px;color:#333}.foo-table ul.dropdown-menu.dropdown-menu-right li:last-child a{border-bottom:0!important;-webkit-box-shadow:none;box-shadow:none}.foo-table ul.dropdown-menu.dropdown-menu-right li a:hover{-webkit-box-shadow:inset 0 0 0 transparent,0 1px 0 #000;box-shadow:inset 0 0 0 transparent,0 1px 0 #000}.foo-table span.footable-toggle{cursor:pointer}.foo-table.ninjatable_hide_header_row>thead tr.footable-header{display:none!important;visibility:hidden}.foo-table.hide_all_borders.table{border-color:transparent}.foo-table.hide_all_borders.table thead{border-color:transparent!important}.foo-table.hide_all_borders.table thead td,.foo-table.hide_all_borders.table thead tr,.foo-table.hide_all_borders.table thead tr>th{border-color:transparent!important;border-width:0!important}.foo-table.hide_all_borders.table tbody td,.foo-table.hide_all_borders.table tbody th{border-color:transparent!important}.foo-table.hide_all_borders.table tfoot tr>td{border-color:transparent!important;border:0!important}.foo-table.ninja_table_search_disabled>thead tr.footable-filtering .footable-filtering-search{display:none!important;visibility:hidden!important}.foo-table .form-group.footable-filtering-search .input-group-btn>button{margin:0!important;height:auto!important;padding:6px 12px!important}.foo-table .form-group.footable-filtering-search input.form-control{margin-bottom:0!important}.foo-table tbody tr.footable-detail-row>td{padding:5px!important}.foo-table tbody tr.footable-detail-row td table.footable-details:not(.ninja_custom_color){margin-bottom:0}.foo-table tbody tr.footable-detail-row td table.footable-details:not(.ninja_custom_color) tbody tr:nth-child(2n){background:#f7f7f7!important}.foo-table tbody tr.footable-detail-row table.inverted tbody tr{background:#fff!important;color:#000}.foo-table select.nt_pager_selection{width:auto;display:inline-block;margin-right:5px!important;height:38px;padding:6px 12px;margin:0;font-family:inherit;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.foo-table tbody tr td a,.foo-table tbody tr td h1,.foo-table tbody tr td h2,.foo-table tbody tr td h3,.foo-table tbody tr td p{margin:0;padding:0}.foo-table img{max-width:100%}.foo-table tbody tr:nth-child(2n) td,.foo-table tbody tr:nth-child(2n) th,.foo-table tbody tr:nth-child(odd) td,.foo-table tbody tr:nth-child(odd) th,.foo-table tbody tr td,.foo-table tbody tr th{background-color:transparent}.footable_parent{overflow-x:auto;width:100%}.footable_parent table.foo-table.vertical_centered tbody>tr>td,.footable_parent table.foo-table.vertical_centered thead>tr>th{vertical-align:middle}.ninja_table_pro table.footable-details tr.nt_has_hide{display:none!important}.ninja_table_pro.nt_hide_breakpoint_labels table.footable-details tbody>tr>th{display:none}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search{width:100%}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group{display:block;position:relative}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group>.form-control{display:inline-block;float:none}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group .input-group-btn{position:absolute;left:0;top:0;z-index:999999}.loading_ninja_table1{width:100%;height:200px;background:gray!important}.loading_ninja_table1 table{display:none}table.ninja_footable>thead>tr>th.hidden,table.ninja_footable col.hidden{display:none!important}@media (max-width:767px){table.ninja_footable>thead>tr>th.xs,table.ninja_footable col.xs{display:none}}@media (min-width:768px) and (max-width:991px){table.ninja_footable>thead>tr>th.sm,table.ninja_footable col.sm{display:none}}@media (min-width:992px) and (max-width:1199px){table.ninja_footable>thead>tr>th.md,table.ninja_footable col.md{display:none}}@media (min-width:1200px){table.ninja_footable>thead>tr>th.lg,table.ninja_footable col.lg{display:none}}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label{display:inline-block;margin-left:15px}@media (max-width:767px){.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label{display:block}}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label:last-child,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label:last-child{margin-left:0}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label input,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label input{margin-left:10px}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio label.ninja_filter_title,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox label.ninja_filter_title{margin-left:0}.ninja_table_wrapper table thead .footable-filtering .ninja_filter_title{margin-left:10px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline{display:block;width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group{text-align:right}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .form-control,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group{width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group>.ninja_filter_title{display:block;font-weight:700}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group.ninja_reset_wrapper{margin-top:24px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group{width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group .input-group-btn{width:70px!important}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_date_range,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_number_range{width:49%;margin:0 0 0 2%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_title,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_date_range:last-child,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_number_range:last-child{margin-left:0}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_from{margin-left:10px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_to,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_to{margin-bottom:5px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .form-group.footable-filtering-search .sr-only{position:relative;visibility:hidden!important;color:transparent;height:0;width:0}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:49%;padding:0 0 0 15px;float:right}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group:last-child{padding-left:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-left:0}}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group:nth-child(odd){clear:both}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:33.3%;padding:0 0 0 15px;float:right}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group:last-child{padding-left:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-left:0}}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group:nth-child(3n+1){clear:both}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:24.9%;padding:0 0 0 15px;float:right}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group:last-child{padding-left:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-left:0}}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group:nth-child(4n+1){clear:both}.ninja_table_wrapper .ninja_reset_button{color:#fff;background:#dc3545;border-color:#dc3545}.ninja_table_wrapper .ninja_reset_button:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline{display:block;width:100%}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline>.form-group{margin-bottom:10px}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline .ninja_custom_radio .ninja_filter_title{margin-left:10px}.ninja_table_wrapper .ninja_table_buttons{display:block;overflow:hidden;clear:both}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_left{text-align:right}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_center{text-align:center}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_right{text-align:left}.ninja_table_wrapper .ninja_table_buttons.after_search_box{margin-top:10px}.ninja_table_wrapper .ninja_table_buttons.before_table{margin-bottom:10px}.ninja_table_wrapper .ninja_table_buttons .ninja_button{border-radius:0;border-left:1px solid;padding:5px 10px}.ninja_table_wrapper .ninja_table_buttons .ninja_button:last-child{border-left:none}@media print{.ninja_table_print_view .footable_parent{overflow-x:hidden!important;width:100%}.ninja_table_print_view .footable-editing{display:none!important}}.ninja_table_wrapper .cart_details{display:block;position:relative;text-align:left}.ninja_table_wrapper .cart_details .nt_woo_cart_checkout_bttons,.ninja_table_wrapper .cart_details .nt_woo_items{display:inline-block}.ninja_table_wrapper .cart_details .nt_woo_items{padding-left:10px}.ninjatable_cart_wrapper{margin-bottom:10px}@font-face{font-family:ninja-tables-icons;src:url(../fonts/ninja-tables.eot?5c71ca4c05d382507807df3eef4564b3);src:url(../fonts/ninja-tables.eot?5c71ca4c05d382507807df3eef4564b3) format("embedded-opentype"),url(../fonts/ninja-tables.woff?10ed5e333d4d4b43f270e4007cba8413) format("woff"),url(../fonts/ninja-tables.woff2?1a82860cb5286f7833a2c33fbdd1d76c) format("woff2"),url(../fonts/ninja-tables.ttf?1db694e765d370865653f85529e09f61) format("truetype"),url(../fonts/ninja-tables.svg?0322d5aaaad653b558b843654e227528) format("svg");font-weight:400;font-style:normal}.footable_parent .fooicon{display:inline-block;font-size:inherit;font-family:ninja-tables-icons!important;font-style:normal;font-weight:400;line-height:1;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-transform:translate(0);transform:translate(0)}.footable_parent .fooicon:before{content:attr(data-icon)}.footable_parent .fooicon:before,.footable_parent [class*=" fooicon-"]:before,.footable_parent [class*=" footable-"]:before,.footable_parent [class^=fooicon-]:before,.footable_parent [class^=footable-]:before{font-family:ninja-tables-icons!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.footable_parent .fooicon-search:before{content:"\F002"}.footable_parent .fooicon-sort-desc:before{content:"\F161"}.footable_parent .fooicon-sort-asc:before{content:"\F160"}.footable_parent .fooicon-sort:before{content:"\F0DC"}.footable_parent .fooicon-minus:before{content:"\F068"}.footable_parent .fooicon-plus:before{content:"\F067"}.footable_parent .fooicon-circle-o-notch:before{content:"\E000"}.footable_parent .fooicon-remove:before{content:"\F00D"}.footable_parent .fooicon-loader-alt:before{content:"\F01"}.footable_parent .fooicon-refresh:before{content:"\E001"}.footable_parent .fooicon-loader:before{content:"\F01E"}.footable_parent .fooicon-grid:before{content:"a"}.footable_parent .fooicon-pencil:before{content:"b"}.footable_parent .fooicon-delete:before{content:"c"}.footable_parent .fooicon-view:before{content:"d"}.footable_parent .fooicon-edit:before{content:"e"}.footable_parent .fooicon-bag:before{content:"f"}.footable_parent .fooicon-basket:before{content:"g"}.footable_parent .fooicon-star:before{content:"h"}.footable_parent .fooicon-star-o:before{content:"i"}.footable_parent .fooicon-check:before{content:"j"}.footable_parent .fooicon-heart:before{content:"k"}.footable_parent .fooicon-download:before{content:"l"}.footable_parent .fooicon-trash:before{content:"c"}.footable_parent .fooicon-remove-1:before{content:"\F00D"}.bootstrap3 table{background-color:transparent}.bootstrap3 caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:right}.bootstrap3 th{text-align:right}.bootstrap3 .table{width:100%;max-width:100%;margin-bottom:20px}.bootstrap3 .table>tbody>tr>td,.bootstrap3 .table>tbody>tr>th,.bootstrap3 .table>tfoot>tr>td,.bootstrap3 .table>tfoot>tr>th,.bootstrap3 .table>thead>tr>td,.bootstrap3 .table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.bootstrap3 .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.bootstrap3 .table>caption+thead>tr:first-child>td,.bootstrap3 .table>caption+thead>tr:first-child>th,.bootstrap3 .table>colgroup+thead>tr:first-child>td,.bootstrap3 .table>colgroup+thead>tr:first-child>th,.bootstrap3 .table>thead:first-child>tr:first-child>td,.bootstrap3 .table>thead:first-child>tr:first-child>th{border-top:0}.bootstrap3 .table>tbody+tbody{border-top:2px solid #ddd}.bootstrap3 .table .table{background-color:#fff;color:#000}.bootstrap3 .table-condensed>tbody>tr>td,.bootstrap3 .table-condensed>tbody>tr>th,.bootstrap3 .table-condensed>tfoot>tr>td,.bootstrap3 .table-condensed>tfoot>tr>th,.bootstrap3 .table-condensed>thead>tr>td,.bootstrap3 .table-condensed>thead>tr>th{padding:5px}.bootstrap3 .table-bordered,.bootstrap3 .table-bordered>tbody>tr>td,.bootstrap3 .table-bordered>tbody>tr>th,.bootstrap3 .table-bordered>tfoot>tr>td,.bootstrap3 .table-bordered>tfoot>tr>th,.bootstrap3 .table-bordered>thead>tr>td,.bootstrap3 .table-bordered>thead>tr>th{border:1px solid #ddd}.bootstrap3 .table-bordered>thead>tr>td,.bootstrap3 .table-bordered>thead>tr>th{border-bottom-width:2px}.bootstrap3 .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.bootstrap3 .table-hover>tbody>tr:hover{background-color:#f5f5f5}.bootstrap3 table col[class*=col-]{position:static;display:table-column;float:none}.bootstrap3 table td[class*=col-],.bootstrap3 table th[class*=col-]{position:static;display:table-cell;float:none}.bootstrap3 .table>tbody>tr.active>td,.bootstrap3 .table>tbody>tr.active>th,.bootstrap3 .table>tbody>tr>td.active,.bootstrap3 .table>tbody>tr>th.active,.bootstrap3 .table>tfoot>tr.active>td,.bootstrap3 .table>tfoot>tr.active>th,.bootstrap3 .table>tfoot>tr>td.active,.bootstrap3 .table>tfoot>tr>th.active,.bootstrap3 .table>thead>tr.active>td,.bootstrap3 .table>thead>tr.active>th,.bootstrap3 .table>thead>tr>td.active,.bootstrap3 .table>thead>tr>th.active{background-color:#f5f5f5}.bootstrap3 .table-hover>tbody>tr.active:hover>td,.bootstrap3 .table-hover>tbody>tr.active:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.active,.bootstrap3 .table-hover>tbody>tr>td.active:hover,.bootstrap3 .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.bootstrap3 .table>tbody>tr.success>td,.bootstrap3 .table>tbody>tr.success>th,.bootstrap3 .table>tbody>tr>td.success,.bootstrap3 .table>tbody>tr>th.success,.bootstrap3 .table>tfoot>tr.success>td,.bootstrap3 .table>tfoot>tr.success>th,.bootstrap3 .table>tfoot>tr>td.success,.bootstrap3 .table>tfoot>tr>th.success,.bootstrap3 .table>thead>tr.success>td,.bootstrap3 .table>thead>tr.success>th,.bootstrap3 .table>thead>tr>td.success,.bootstrap3 .table>thead>tr>th.success{background-color:#dff0d8}.bootstrap3 .table-hover>tbody>tr.success:hover>td,.bootstrap3 .table-hover>tbody>tr.success:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.success,.bootstrap3 .table-hover>tbody>tr>td.success:hover,.bootstrap3 .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.bootstrap3 .table>tbody>tr.info>td,.bootstrap3 .table>tbody>tr.info>th,.bootstrap3 .table>tbody>tr>td.info,.bootstrap3 .table>tbody>tr>th.info,.bootstrap3 .table>tfoot>tr.info>td,.bootstrap3 .table>tfoot>tr.info>th,.bootstrap3 .table>tfoot>tr>td.info,.bootstrap3 .table>tfoot>tr>th.info,.bootstrap3 .table>thead>tr.info>td,.bootstrap3 .table>thead>tr.info>th,.bootstrap3 .table>thead>tr>td.info,.bootstrap3 .table>thead>tr>th.info{background-color:#d9edf7}.bootstrap3 .table-hover>tbody>tr.info:hover>td,.bootstrap3 .table-hover>tbody>tr.info:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.info,.bootstrap3 .table-hover>tbody>tr>td.info:hover,.bootstrap3 .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.bootstrap3 .table>tbody>tr.warning>td,.bootstrap3 .table>tbody>tr.warning>th,.bootstrap3 .table>tbody>tr>td.warning,.bootstrap3 .table>tbody>tr>th.warning,.bootstrap3 .table>tfoot>tr.warning>td,.bootstrap3 .table>tfoot>tr.warning>th,.bootstrap3 .table>tfoot>tr>td.warning,.bootstrap3 .table>tfoot>tr>th.warning,.bootstrap3 .table>thead>tr.warning>td,.bootstrap3 .table>thead>tr.warning>th,.bootstrap3 .table>thead>tr>td.warning,.bootstrap3 .table>thead>tr>th.warning{background-color:#fcf8e3}.bootstrap3 .table-hover>tbody>tr.warning:hover>td,.bootstrap3 .table-hover>tbody>tr.warning:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.warning,.bootstrap3 .table-hover>tbody>tr>td.warning:hover,.bootstrap3 .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.bootstrap3 .table>tbody>tr.danger>td,.bootstrap3 .table>tbody>tr.danger>th,.bootstrap3 .table>tbody>tr>td.danger,.bootstrap3 .table>tbody>tr>th.danger,.bootstrap3 .table>tfoot>tr.danger>td,.bootstrap3 .table>tfoot>tr.danger>th,.bootstrap3 .table>tfoot>tr>td.danger,.bootstrap3 .table>tfoot>tr>th.danger,.bootstrap3 .table>thead>tr.danger>td,.bootstrap3 .table>thead>tr.danger>th,.bootstrap3 .table>thead>tr>td.danger,.bootstrap3 .table>thead>tr>th.danger{background-color:#f2dede}.bootstrap3 .table-hover>tbody>tr.danger:hover>td,.bootstrap3 .table-hover>tbody>tr.danger:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.danger,.bootstrap3 .table-hover>tbody>tr>td.danger:hover,.bootstrap3 .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.bootstrap3 .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.bootstrap3 .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.bootstrap3 .table-responsive>.table{margin-bottom:0}.bootstrap3 .table-responsive>.table>tbody>tr>td,.bootstrap3 .table-responsive>.table>tbody>tr>th,.bootstrap3 .table-responsive>.table>tfoot>tr>td,.bootstrap3 .table-responsive>.table>tfoot>tr>th,.bootstrap3 .table-responsive>.table>thead>tr>td,.bootstrap3 .table-responsive>.table>thead>tr>th{white-space:nowrap}.bootstrap3 .table-responsive>.table-bordered{border:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>tbody>tr>th:first-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>th:first-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>th:first-child{border-right:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>tbody>tr>th:last-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>th:last-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>th:last-child{border-left:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr:last-child>td,.bootstrap3 .table-responsive>.table-bordered>tbody>tr:last-child>th,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr:last-child>td,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.bootstrap4 .table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.bootstrap4 .table td,.bootstrap4 .table th{padding:.75rem;vertical-align:top;border-top:1px solid #e9ecef}.bootstrap4 .table thead th{vertical-align:bottom;border-bottom:2px solid #e9ecef}.bootstrap4 .table tbody+tbody{border-top:2px solid #e9ecef}.bootstrap4 .table .table{background-color:#fff;color:#000}.bootstrap4 .table-sm td,.bootstrap4 .table-sm th{padding:.3rem}.bootstrap4 .table-bordered,.bootstrap4 .table-bordered td,.bootstrap4 .table-bordered th{border:1px solid #e9ecef}.bootstrap4 .table-bordered thead td,.bootstrap4 .table-bordered thead th{border-bottom-width:2px}.bootstrap4 .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.bootstrap4 .table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.bootstrap4 .table-primary,.bootstrap4 .table-primary>td,.bootstrap4 .table-primary>th{background-color:#b8daff}.bootstrap4 .table-hover .table-primary:hover,.bootstrap4 .table-hover .table-primary:hover>td,.bootstrap4 .table-hover .table-primary:hover>th{background-color:#9fcdff}.bootstrap4 .table-secondary,.bootstrap4 .table-secondary>td,.bootstrap4 .table-secondary>th{background-color:#dddfe2}.bootstrap4 .table-hover .table-secondary:hover,.bootstrap4 .table-hover .table-secondary:hover>td,.bootstrap4 .table-hover .table-secondary:hover>th{background-color:#cfd2d6}.bootstrap4 .table-success,.bootstrap4 .table-success>td,.bootstrap4 .table-success>th{background-color:#c3e6cb}.bootstrap4 .table-hover .table-success:hover,.bootstrap4 .table-hover .table-success:hover>td,.bootstrap4 .table-hover .table-success:hover>th{background-color:#b1dfbb}.bootstrap4 .table-info,.bootstrap4 .table-info>td,.bootstrap4 .table-info>th{background-color:#bee5eb}.bootstrap4 .table-hover .table-info:hover,.bootstrap4 .table-hover .table-info:hover>td,.bootstrap4 .table-hover .table-info:hover>th{background-color:#abdde5}.bootstrap4 .table-warning,.bootstrap4 .table-warning>td,.bootstrap4 .table-warning>th{background-color:#ffeeba}.bootstrap4 .table-hover .table-warning:hover,.bootstrap4 .table-hover .table-warning:hover>td,.bootstrap4 .table-hover .table-warning:hover>th{background-color:#ffe8a1}.bootstrap4 .table-danger,.bootstrap4 .table-danger>td,.bootstrap4 .table-danger>th{background-color:#f5c6cb}.bootstrap4 .table-hover .table-danger:hover,.bootstrap4 .table-hover .table-danger:hover>td,.bootstrap4 .table-hover .table-danger:hover>th{background-color:#f1b0b7}.bootstrap4 .table-light,.bootstrap4 .table-light>td,.bootstrap4 .table-light>th{background-color:#fdfdfe}.bootstrap4 .table-hover .table-light:hover,.bootstrap4 .table-hover .table-light:hover>td,.bootstrap4 .table-hover .table-light:hover>th{background-color:#ececf6}.bootstrap4 .table-dark,.bootstrap4 .table-dark>td,.bootstrap4 .table-dark>th{background-color:#c6c8ca}.bootstrap4 .table-hover .table-dark:hover,.bootstrap4 .table-hover .table-dark:hover>td,.bootstrap4 .table-hover .table-dark:hover>th{background-color:#b9bbbe}.bootstrap4 .table-active,.bootstrap4 .table-active>td,.bootstrap4 .table-active>th,.bootstrap4 .table-hover .table-active:hover,.bootstrap4 .table-hover .table-active:hover>td,.bootstrap4 .table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.bootstrap4 .thead-inverse th{color:#fff;background-color:#212529}.bootstrap4 .thead-default th{color:#495057;background-color:#e9ecef}.bootstrap4 .table-inverse{color:#fff;background-color:#212529}.bootstrap4 .table-inverse td,.bootstrap4 .table-inverse th,.bootstrap4 .table-inverse thead th{border-color:#32383e}.bootstrap4 .table-inverse.table-bordered{border:0}.bootstrap4 .table-inverse.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.bootstrap4 .table-inverse.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075)}@media (max-width:991px){.bootstrap4 .table-responsive{display:block;width:100%;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar}.bootstrap4 .table-responsive.table-bordered{border:0}}.semantic_ui{
2
  /*!
3
  * # Semantic UI 2.2.12 - Table
4
  * http://github.com/semantic-org/semantic-ui/
assets/css/ninjatables-public.css CHANGED
@@ -1,4 +1,4 @@
1
- .footable-details.table,.footable-details.table *,.footable.table,.footable.table *{-webkit-box-sizing:border-box;box-sizing:border-box}.footable-details.table th,.footable.table th{text-align:left}.footable-details.table,.footable.table{width:100%;max-width:100%;margin-bottom:20px}.footable.table tbody tr td,.footable.table tr th{word-break:keep-all}.footable-details.table>caption+thead>tr:first-child>td,.footable-details.table>caption+thead>tr:first-child>th,.footable-details.table>colgroup+thead>tr:first-child>td,.footable-details.table>colgroup+thead>tr:first-child>th,.footable-details.table>thead:first-child>tr:first-child>td,.footable-details.table>thead:first-child>tr:first-child>th,.footable.table>caption+thead>tr:first-child>td,.footable.table>caption+thead>tr:first-child>th,.footable.table>colgroup+thead>tr:first-child>td,.footable.table>colgroup+thead>tr:first-child>th,.footable.table>thead:first-child>tr:first-child>td,.footable.table>thead:first-child>tr:first-child>th{border-top:0}.footable-details.table>tbody>tr>td,.footable-details.table>tbody>tr>th,.footable-details.table>tfoot>tr>td,.footable-details.table>tfoot>tr>th,.footable-details.table>thead>tr>td,.footable-details.table>thead>tr>th,.footable.table>tbody>tr>td,.footable.table>tbody>tr>th,.footable.table>tfoot>tr>td,.footable.table>tfoot>tr>th,.footable.table>thead>tr>td,.footable.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.footable-details.table>thead>tr>td,.footable-details.table>thead>tr>th,.footable.table>thead>tr>td,.footable.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.footable-details.table-condensed>tbody>tr>td,.footable-details.table-condensed>tbody>tr>th,.footable-details.table-condensed>tfoot>tr>td,.footable-details.table-condensed>tfoot>tr>th,.footable-details.table-condensed>thead>tr>td,.footable-details.table-condensed>thead>tr>th,.footable.table-condensed>tbody>tr>td,.footable.table-condensed>tbody>tr>th,.footable.table-condensed>tfoot>tr>td,.footable.table-condensed>tfoot>tr>th,.footable.table-condensed>thead>tr>td,.footable.table-condensed>thead>tr>th{padding:5px}.footable-details.table-bordered,.footable-details.table-bordered>tbody>tr>td,.footable-details.table-bordered>tbody>tr>th,.footable-details.table-bordered>tfoot>tr>td,.footable-details.table-bordered>tfoot>tr>th,.footable-details.table-bordered>thead>tr>td,.footable-details.table-bordered>thead>tr>th,.footable.table-bordered,.footable.table-bordered>tbody>tr>td,.footable.table-bordered>tbody>tr>th,.footable.table-bordered>tfoot>tr>td,.footable.table-bordered>tfoot>tr>th,.footable.table-bordered>thead>tr>td,.footable.table-bordered>thead>tr>th{border:1px solid #ddd}.footable-details.table-bordered>thead>tr>td,.footable-details.table-bordered>thead>tr>th,.footable.table-bordered>thead>tr>td,.footable.table-bordered>thead>tr>th{border-bottom-width:2px}.footable-details.table-striped>tbody>tr:nth-child(odd),.footable.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.footable-details.table-hover>tbody>tr:hover,.footable.table-hover>tbody>tr:hover{background-color:#f5f5f5}.footable .btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px;overflow:visible;text-transform:none}.footable .btn.focus,.footable .btn:focus,.footable .btn:hover{color:#333;text-decoration:none}.footable .btn-default{color:#333;background-color:#fff;border-color:#ccc}.footable .btn-default.active,.footable .btn-default.focus,.footable .btn-default:active,.footable .btn-default:focus,.footable .btn-default:hover,.footable .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.footable .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.footable .btn-primary.active,.footable .btn-primary.focus,.footable .btn-primary:active,.footable .btn-primary:focus,.footable .btn-primary:hover,.footable .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.footable .btn-group,.footable .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.footable .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.footable .btn-group>.btn:first-child{margin-left:0}.footable .btn-group-vertical>.btn,.footable .btn-group>.btn{position:relative;float:left}.footable .btn-group-xs>.btn,.footable .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.footable .btn-group-sm>.btn,.footable .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.footable .btn-group-lg>.btn,.footable .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.footable .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.footable .btn .caret{margin-left:0}.form-group{margin-bottom:15px}.footable .form-control{display:block;width:100%;height:34px;padding:6px 12px;margin:0;font-family:inherit;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.footable .input-group{position:relative;display:table;border-collapse:separate}.footable .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.footable .input-group-btn{position:relative;font-size:0;white-space:nowrap}.footable .input-group-addon,.footable .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.footable .input-group-addon,.footable .input-group-btn,.footable .input-group .form-control{display:table-cell}.footable .input-group-btn:last-child>.btn,.footable .input-group-btn:last-child>.btn-group,.footable .input-group-btn>.btn+.btn{margin-left:-1px}.footable .input-group-btn>.btn{position:relative}.footable .input-group-btn>.btn:active,.footable .input-group-btn>.btn:focus,.footable .input-group-btn>.btn:hover{z-index:2}.footable .input-group-addon:first-child,.footable .input-group-btn:first-child>.btn,.footable .input-group-btn:first-child>.btn-group>.btn,.footable .input-group-btn:first-child>.dropdown-toggle,.footable .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.footable .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.footable .input-group .form-control:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.footable .input-group-addon:last-child,.footable .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.footable .input-group-btn:first-child>.btn:not(:first-child),.footable .input-group-btn:last-child>.btn,.footable .input-group-btn:last-child>.btn-group>.btn,.footable .input-group-btn:last-child>.dropdown-toggle,.footable .input-group .form-control:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.footable .checkbox,.footable .radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.footable .checkbox label,.footable .radio label{max-width:100%;min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.footable .checkbox-inline input[type=checkbox],.footable .checkbox input[type=checkbox],.footable .radio-inline input[type=radio],.footable .radio input[type=radio]{position:absolute;margin:4px 0 0 -20px;line-height:normal}.footable .checkbox-inline input[type=checkbox]{display:block!important}.footable .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.footable .open>.dropdown-menu{display:block;list-style:none!important}.footable .dropdown-menu-right{right:0;left:auto}.footable .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.footable .dropdown-menu>li>a:focus,.footable .dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.footable .pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.footable .pagination>li{display:inline}.footable .pagination>li:first-child>a,.footable .pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.footable .pagination>li>a,.footable .pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none!important;background-color:#fff;border:1px solid #ddd}.footable .pagination>li>a:focus,.footable .pagination>li>a:hover,.footable .pagination>li>span:focus,.footable .pagination>li>span:hover{color:#23527c;background-color:#eee;border-color:#ddd}.footable .pagination>.active>a,.footable .pagination>.active>a:focus,.footable .pagination>.active>a:hover,.footable .pagination>.active>span,.footable .pagination>.active>span:focus,.footable .pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.footable .pagination>.disabled>a,.footable .pagination>.disabled>a:focus,.footable .pagination>.disabled>a:hover,.footable .pagination>.disabled>span,.footable .pagination>.disabled>span:focus,.footable .pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.footable .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.footable .label-default{background-color:#777}.footable-loader.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.footable .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (min-width:768px){.footable .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.footable .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.footable .form-inline .input-group{display:inline-table;vertical-align:middle}.footable .form-inline .input-group .form-control,.footable .form-inline .input-group .input-group-addon,.footable .form-inline .input-group .input-group-btn{width:auto}.footable .form-inline .input-group>.form-control{width:100%}}table.footable,table.footable-details{position:relative;width:100%;border-spacing:0;border-collapse:collapse}table.footable-details{margin-bottom:0}table.footable-hide-fouc{display:none}table>tbody>tr>td>span.footable-toggle{margin-right:8px;opacity:.3}table>tbody>tr>td>span.footable-toggle.last-column{margin-left:8px;float:right}table.table-condensed>tbody>tr>td>span.footable-toggle{margin-right:5px}table.footable-details>tbody>tr>th:first-child{min-width:40px;width:140px}table.footable-details>tbody>tr>td:nth-child(2){word-break:keep-all!important}table.footable-details>tbody>tr:first-child>td,table.footable-details>tbody>tr:first-child>th,table.footable-details>tfoot>tr:first-child>td,table.footable-details>tfoot>tr:first-child>th,table.footable-details>thead>tr:first-child>td,table.footable-details>thead>tr:first-child>th{border-top-width:0}table.footable-details.table-bordered>tbody>tr:first-child>td,table.footable-details.table-bordered>tbody>tr:first-child>th,table.footable-details.table-bordered>tfoot>tr:first-child>td,table.footable-details.table-bordered>tfoot>tr:first-child>th,table.footable-details.table-bordered>thead>tr:first-child>td,table.footable-details.table-bordered>thead>tr:first-child>th{border-top-width:1px}div.footable-loader{vertical-align:middle;text-align:center;height:300px;position:relative}div.footable-loader>span.fooicon{display:inline-block;opacity:.3;font-size:30px;line-height:32px;width:32px;height:32px;margin-top:-16px;margin-left:-16px;position:absolute;top:50%;left:50%;-webkit-animation:fooicon-spin-r 2s infinite linear;animation:fooicon-spin-r 2s infinite linear}table.footable>tbody>tr.footable-empty>td{vertical-align:middle;text-align:center;font-size:30px}table.footable>tbody>tr.footable-detail-row>td,table.footable>tbody>tr.footable-detail-row>th,table.footable>tbody>tr.footable-empty>td,table.footable>tbody>tr.footable-empty>th{display:table-cell}@-webkit-keyframes fooicon-spin-r{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fooicon-spin-r{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}table.footable>thead>tr.footable-filtering>th{border-bottom-width:1px;font-weight:400}.footable-filtering-external.footable-filtering-right,table.footable.footable-filtering-right>thead>tr.footable-filtering>th,table.footable>thead>tr.footable-filtering>th{text-align:right}.footable-filtering-external.footable-filtering-left,table.footable.footable-filtering-left>thead>tr.footable-filtering>th{text-align:left}.footable-filtering-external.footable-filtering-center,table.footable.footable-filtering-center>thead>tr.footable-filtering>th{text-align:center}table.footable>thead>tr.footable-filtering>th div.form-group{margin-bottom:0}table.footable>thead>tr.footable-filtering>th div.form-group+div.form-group{margin-top:5px}table.footable>thead>tr.footable-filtering>th div.input-group{width:100%}.footable-filtering-external ul.dropdown-menu>li>a.checkbox,table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox{margin:0;display:block;position:relative}.footable-filtering-external ul.dropdown-menu>li>a.checkbox>label,table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox>label{display:block;padding-left:20px}.footable-filtering-external ul.dropdown-menu>li>a.checkbox input[type=checkbox],table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox input[type=checkbox]{position:absolute;margin-left:-20px}@media (min-width:768px){table.footable>thead>tr.footable-filtering>th div.input-group{width:auto}table.footable>thead>tr.footable-filtering>th div.form-group{margin-left:2px;margin-right:2px}table.footable>thead>tr.footable-filtering>th div.form-group+div.form-group{margin-top:0}}table.footable>tbody>tr>td.footable-sortable,table.footable>tbody>tr>th.footable-sortable,table.footable>tfoot>tr>td.footable-sortable,table.footable>tfoot>tr>th.footable-sortable,table.footable>thead>tr>td.footable-sortable,table.footable>thead>tr>th.footable-sortable{position:relative;padding-right:30px;cursor:pointer}td.footable-sortable>span.fooicon,th.footable-sortable>span.fooicon{position:absolute;right:0;top:50%;margin-top:-7px;opacity:0;-webkit-transition:opacity .3s ease-in;transition:opacity .3s ease-in}td.footable-sortable.footable-asc>span.fooicon,td.footable-sortable.footable-desc>span.fooicon,td.footable-sortable:hover>span.fooicon,th.footable-sortable.footable-asc>span.fooicon,th.footable-sortable.footable-desc>span.fooicon,th.footable-sortable:hover>span.fooicon{opacity:1}table.footable-sorting-disabled td.footable-sortable.footable-asc>span.fooicon,table.footable-sorting-disabled td.footable-sortable.footable-desc>span.fooicon,table.footable-sorting-disabled td.footable-sortable:hover>span.fooicon,table.footable-sorting-disabled th.footable-sortable.footable-asc>span.fooicon,table.footable-sorting-disabled th.footable-sortable.footable-desc>span.fooicon,table.footable-sorting-disabled th.footable-sortable:hover>span.fooicon{opacity:0;visibility:hidden}.footable-paging-external ul.pagination,table.footable>tfoot>tr.footable-paging>td>ul.pagination{margin:10px 0 0}.footable-paging-external span.label,table.footable>tfoot>tr.footable-paging>td>span.label{display:inline-block;margin:0 0 10px;padding:4px 10px}.footable-paging-external.footable-paging-center,table.footable-paging-center>tfoot>tr.footable-paging>td,table.footable>tfoot>tr.footable-paging>td{text-align:center}.footable-paging-external.footable-paging-left,table.footable-paging-left>tfoot>tr.footable-paging>td{text-align:left}.footable-paging-external.footable-paging-right,table.footable-paging-right>tfoot>tr.footable-paging>td{text-align:right}ul.pagination>li.footable-page{display:none}ul.pagination>li.footable-page.visible{display:inline}td.footable-editing{width:90px;max-width:90px}table.footable-editing-no-delete td.footable-editing,table.footable-editing-no-edit td.footable-editing,table.footable-editing-no-view td.footable-editing{width:70px;max-width:70px}table.footable-editing-no-delete.footable-editing-no-view td.footable-editing,table.footable-editing-no-edit.footable-editing-no-delete td.footable-editing,table.footable-editing-no-edit.footable-editing-no-view td.footable-editing{width:50px;max-width:50px}table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view td.footable-editing,table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view th.footable-editing{width:0;max-width:0;display:none!important}table.footable-editing-right td.footable-editing,table.footable-editing-right tr.footable-editing{text-align:right}table.footable-editing-left td.footable-editing,table.footable-editing-left tr.footable-editing{text-align:left}table.footable-editing-show button.footable-show,table.footable-editing.footable-editing-always-show.footable-editing-no-add tr.footable-editing,table.footable-editing.footable-editing-always-show button.footable-hide,table.footable-editing.footable-editing-always-show button.footable-show,table.footable-editing button.footable-add,table.footable-editing button.footable-hide{display:none}table.footable-editing.footable-editing-always-show button.footable-add,table.footable-editing.footable-editing-show button.footable-add,table.footable-editing.footable-editing-show button.footable-hide{display:inline-block}.foo-table{table-layout:auto}.foo-table>caption{color:#000}.foo-table .nt_button_woo,.foo-table .nt_woo_view_cart{background-color:#a46497;color:#fff;-webkit-font-smoothing:antialiased;white-space:nowrap;display:inline-block;padding:7px 10px;margin:3px 0;-webkit-transition-duration:.4s;transition-duration:.4s;position:relative}.foo-table .nt_button_woo span.fooicon-loader,.foo-table .nt_woo_view_cart span.fooicon-loader{margin-top:-10px;position:absolute;top:50%;left:0;-webkit-animation:fooicon-spin-r .7s infinite linear;animation:fooicon-spin-r .7s infinite linear}.foo-table .nt_button_woo:after,.foo-table .nt_woo_view_cart:after{content:"";background:gray;color:#000;display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;-webkit-transition:all .8s;transition:all .8s}.foo-table .nt_button_woo:active:after,.foo-table .nt_woo_view_cart:active:after{padding:0;margin:0;opacity:.5;-webkit-transition:0s;transition:0s}.foo-table .nt-quantity-wrapper{display:inline-block;vertical-align:middle;width:auto;white-space:nowrap;position:relative;width:64px;height:40px}.foo-table .nt-quantity-wrapper input{font-size:inherit;color:#000;text-align:center;width:100%!important;height:100%!important;padding:5px;border:1px solid #ddd;margin:0!important;-webkit-appearance:none;-moz-appearance:textfield;appearance:none;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-radius:inherit}.foo-table .nt_add_cart_wrapper.nt_added_cart{display:block;white-space:nowrap;width:auto}.foo-table .nt_add_cart_wrapper.nt_added_cart a.added_to_cart.wc-forward{color:#000;background:transparent;display:inline-block;text-decoration:none!important;-webkit-box-shadow:none;box-shadow:none}.foo-table .nt_add_cart_wrapper.nt_added_cart a.added_to_cart.wc-forward:after{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-style:normal;font-variant:normal;font-weight:400;line-height:1;font-family:ninja-tables-icons;font-weight:900;line-height:inherit;vertical-align:baseline;content:"g";height:1em;float:right;line-height:1.618}.foo-table .nt_btn{border:1px solid transparent;padding:7px 15px;font-size:14px;text-decoration:none!important;display:inline-block}.foo-table .nt_btn.nt_rounded_btn{border-radius:4px!important}.foo-table .nt_btn:hover{opacity:.9;border-color:transparent!important}.foo-table.footable.table>thead>tr>th{padding:.92857143em .78571429em}.foo-table td.footable-editing,.foo-table th.footable-editing{width:auto!important}.foo-table td.footable-editing .btn-group button{padding:1px 5px;margin:0;border-radius:3px}.foo-table td.footable-editing .btn-group button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.foo-table td.footable-editing .btn-group button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.foo-table .form-inline{display:block!important;margin-bottom:0}.foo-table.ninja_search_left tr.footable-filtering .form-inline{text-align:left}.foo-table.ninja_search_right tr.footable-filtering .form-inline{text-align:right}.foo-table.ninja_search_center tr.footable-filtering .form-inline{text-align:center}.foo-table td.ninja_temp_cell{display:none!important}.foo-table span.label.label-default{display:none;visibility:hidden}.foo-table.ninja_has_count_format span.label.label-default{display:inline-block;visibility:visible}.foo-table.footable-paging-right .footable-pagination-wrapper{text-align:right}.foo-table.footable-paging-center .footable-pagination-wrapper{text-align:center}.foo-table.footable-paging-left .footable-pagination-wrapper{text-align:left}.foo-table .footable-pagination-wrapper .pagination:after,.foo-table .footable-pagination-wrapper .pagination:before{content:none!important}.foo-table table.footable-details tr th{white-space:normal;overflow:visible!important;text-overflow:unset!important}.foo-table tr.footable-filtering th{overflow:visible!important}.foo-table .pagination{border:none;padding:0;font-weight:500}.foo-table button.btn.btn-default.dropdown-toggle{top:0;right:0;left:0}.foo-table button.btn.btn-default.dropdown-toggle:after{content:"";display:none!important}.foo-table li.dropdown-header{padding-left:20px;padding-bottom:5px;color:#333}.foo-table ul.dropdown-menu.dropdown-menu-right li:last-child a{border-bottom:0!important;-webkit-box-shadow:none;box-shadow:none}.foo-table ul.dropdown-menu.dropdown-menu-right li a:hover{-webkit-box-shadow:inset 0 0 0 transparent,0 1px 0 #000;box-shadow:inset 0 0 0 transparent,0 1px 0 #000}.foo-table span.footable-toggle{cursor:pointer}.foo-table.ninjatable_hide_header_row>thead tr.footable-header{display:none!important;visibility:hidden}.foo-table.hide_all_borders.table{border-color:transparent}.foo-table.hide_all_borders.table thead{border-color:transparent!important}.foo-table.hide_all_borders.table thead td,.foo-table.hide_all_borders.table thead tr,.foo-table.hide_all_borders.table thead tr>th{border-color:transparent!important;border-width:0!important}.foo-table.hide_all_borders.table tbody td,.foo-table.hide_all_borders.table tbody th{border-color:transparent!important}.foo-table.hide_all_borders.table tfoot tr>td{border-color:transparent!important;border:0!important}.foo-table.ninja_table_search_disabled>thead tr.footable-filtering .footable-filtering-search{display:none!important;visibility:hidden!important}.foo-table .form-group.footable-filtering-search .input-group-btn>button{margin:0!important;height:auto!important;padding:6px 12px!important}.foo-table .form-group.footable-filtering-search input.form-control{margin-bottom:0!important}.foo-table tbody tr.footable-detail-row>td{padding:5px!important}.foo-table tbody tr.footable-detail-row td table.footable-details:not(.ninja_custom_color){margin-bottom:0}.foo-table tbody tr.footable-detail-row td table.footable-details:not(.ninja_custom_color) tbody tr:nth-child(2n){background:#f7f7f7!important}.foo-table tbody tr.footable-detail-row table.inverted tbody tr{background:#fff!important;color:#000}.foo-table select.nt_pager_selection{width:auto;display:inline-block;margin-left:5px!important;height:38px;padding:6px 12px;margin:0;font-family:inherit;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.foo-table tbody tr td a,.foo-table tbody tr td h1,.foo-table tbody tr td h2,.foo-table tbody tr td h3,.foo-table tbody tr td p{margin:0;padding:0}.foo-table img{max-width:100%}.foo-table tbody tr:nth-child(2n) td,.foo-table tbody tr:nth-child(2n) th,.foo-table tbody tr:nth-child(odd) td,.foo-table tbody tr:nth-child(odd) th,.foo-table tbody tr td,.foo-table tbody tr th{background-color:transparent}.footable_parent{overflow-x:auto;width:100%}.footable_parent table.foo-table.vertical_centered tbody>tr>td,.footable_parent table.foo-table.vertical_centered thead>tr>th{vertical-align:middle}.ninja_table_pro table.footable-details tr.nt_has_hide{display:none!important}.ninja_table_pro.nt_hide_breakpoint_labels table.footable-details tbody>tr>th{display:none}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search{width:100%}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group{display:block;position:relative}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group>.form-control{display:inline-block;float:none}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group .input-group-btn{position:absolute;right:0;top:0;z-index:999999}.loading_ninja_table1{width:100%;height:200px;background:gray!important}.loading_ninja_table1 table{display:none}table.ninja_footable>thead>tr>th.hidden,table.ninja_footable col.hidden{display:none!important}@media (max-width:767px){table.ninja_footable>thead>tr>th.xs,table.ninja_footable col.xs{display:none}}@media (min-width:768px) and (max-width:991px){table.ninja_footable>thead>tr>th.sm,table.ninja_footable col.sm{display:none}}@media (min-width:992px) and (max-width:1199px){table.ninja_footable>thead>tr>th.md,table.ninja_footable col.md{display:none}}@media (min-width:1200px){table.ninja_footable>thead>tr>th.lg,table.ninja_footable col.lg{display:none}}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label{display:inline-block;margin-right:15px}@media (max-width:767px){.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label{display:block}}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label:last-child,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label:last-child{margin-right:0}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label input,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label input{margin-right:10px}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio label.ninja_filter_title,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox label.ninja_filter_title{margin-right:0}.ninja_table_wrapper table thead .footable-filtering .ninja_filter_title{margin-right:10px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline{display:block;width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group{text-align:left}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .form-control,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group{width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group>.ninja_filter_title{display:block;font-weight:700}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group.ninja_reset_wrapper{margin-top:24px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group{width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group .input-group-btn{width:70px!important}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_date_range,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_number_range{width:49%;margin:0 2% 0 0}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_title,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_date_range:last-child,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_number_range:last-child{margin-right:0}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_from{margin-right:10px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_to,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_to{margin-bottom:5px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .form-group.footable-filtering-search .sr-only{position:relative;visibility:hidden!important;color:transparent;height:0;width:0}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:49%;padding:0 15px 0 0;float:left}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group:last-child{padding-right:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-right:0}}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group:nth-child(odd){clear:both}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:33.3%;padding:0 15px 0 0;float:left}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group:last-child{padding-right:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-right:0}}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group:nth-child(3n+1){clear:both}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:24.9%;padding:0 15px 0 0;float:left}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group:last-child{padding-right:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-right:0}}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group:nth-child(4n+1){clear:both}.ninja_table_wrapper .ninja_reset_button{color:#fff;background:#dc3545;border-color:#dc3545}.ninja_table_wrapper .ninja_reset_button:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline{display:block;width:100%}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline>.form-group{margin-bottom:10px}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline .ninja_custom_radio .ninja_filter_title{margin-right:10px}.ninja_table_wrapper .ninja_table_buttons{display:block;overflow:hidden;clear:both}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_left{text-align:left}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_center{text-align:center}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_right{text-align:right}.ninja_table_wrapper .ninja_table_buttons.after_search_box{margin-top:10px}.ninja_table_wrapper .ninja_table_buttons.before_table{margin-bottom:10px}.ninja_table_wrapper .ninja_table_buttons .ninja_button{border-radius:0;border-right:1px solid;padding:5px 10px}.ninja_table_wrapper .ninja_table_buttons .ninja_button:last-child{border-right:none}@media print{.ninja_table_print_view .footable_parent{overflow-x:hidden!important;width:100%}.ninja_table_print_view .footable-editing{display:none!important}}.ninja_table_wrapper .cart_details{display:block;position:relative;text-align:right}.ninja_table_wrapper .cart_details .nt_woo_cart_checkout_bttons,.ninja_table_wrapper .cart_details .nt_woo_items{display:inline-block}.ninja_table_wrapper .cart_details .nt_woo_items{padding-right:10px}.ninjatable_cart_wrapper{margin-bottom:10px}@font-face{font-family:ninja-tables-icons;src:url(../fonts/ninja-tables.eot?5c71ca4c05d382507807df3eef4564b3);src:url(../fonts/ninja-tables.eot?5c71ca4c05d382507807df3eef4564b3) format("embedded-opentype"),url(../fonts/ninja-tables.woff?10ed5e333d4d4b43f270e4007cba8413) format("woff"),url(../fonts/ninja-tables.woff2?1a82860cb5286f7833a2c33fbdd1d76c) format("woff2"),url(../fonts/ninja-tables.ttf?1db694e765d370865653f85529e09f61) format("truetype"),url(../fonts/ninja-tables.svg?0322d5aaaad653b558b843654e227528) format("svg");font-weight:400;font-style:normal}.footable_parent .fooicon{display:inline-block;font-size:inherit;font-family:ninja-tables-icons!important;font-style:normal;font-weight:400;line-height:1;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-transform:translate(0);transform:translate(0)}.footable_parent .fooicon:before{content:attr(data-icon)}.footable_parent .fooicon:before,.footable_parent [class*=" fooicon-"]:before,.footable_parent [class*=" footable-"]:before,.footable_parent [class^=fooicon-]:before,.footable_parent [class^=footable-]:before{font-family:ninja-tables-icons!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.footable_parent .fooicon-search:before{content:"\F002"}.footable_parent .fooicon-sort-desc:before{content:"\F161"}.footable_parent .fooicon-sort-asc:before{content:"\F160"}.footable_parent .fooicon-sort:before{content:"\F0DC"}.footable_parent .fooicon-minus:before{content:"\F068"}.footable_parent .fooicon-plus:before{content:"\F067"}.footable_parent .fooicon-circle-o-notch:before{content:"\E000"}.footable_parent .fooicon-remove:before{content:"\F00D"}.footable_parent .fooicon-loader-alt:before{content:"\F01"}.footable_parent .fooicon-refresh:before{content:"\E001"}.footable_parent .fooicon-loader:before{content:"\F01E"}.footable_parent .fooicon-grid:before{content:"a"}.footable_parent .fooicon-pencil:before{content:"b"}.footable_parent .fooicon-delete:before{content:"c"}.footable_parent .fooicon-view:before{content:"d"}.footable_parent .fooicon-edit:before{content:"e"}.footable_parent .fooicon-bag:before{content:"f"}.footable_parent .fooicon-basket:before{content:"g"}.footable_parent .fooicon-star:before{content:"h"}.footable_parent .fooicon-star-o:before{content:"i"}.footable_parent .fooicon-check:before{content:"j"}.footable_parent .fooicon-heart:before{content:"k"}.footable_parent .fooicon-download:before{content:"l"}.footable_parent .fooicon-trash:before{content:"c"}.footable_parent .fooicon-remove-1:before{content:"\F00D"}.bootstrap3 table{background-color:transparent}.bootstrap3 caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}.bootstrap3 th{text-align:left}.bootstrap3 .table{width:100%;max-width:100%;margin-bottom:20px}.bootstrap3 .table>tbody>tr>td,.bootstrap3 .table>tbody>tr>th,.bootstrap3 .table>tfoot>tr>td,.bootstrap3 .table>tfoot>tr>th,.bootstrap3 .table>thead>tr>td,.bootstrap3 .table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.bootstrap3 .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.bootstrap3 .table>caption+thead>tr:first-child>td,.bootstrap3 .table>caption+thead>tr:first-child>th,.bootstrap3 .table>colgroup+thead>tr:first-child>td,.bootstrap3 .table>colgroup+thead>tr:first-child>th,.bootstrap3 .table>thead:first-child>tr:first-child>td,.bootstrap3 .table>thead:first-child>tr:first-child>th{border-top:0}.bootstrap3 .table>tbody+tbody{border-top:2px solid #ddd}.bootstrap3 .table .table{background-color:#fff;color:#000}.bootstrap3 .table-condensed>tbody>tr>td,.bootstrap3 .table-condensed>tbody>tr>th,.bootstrap3 .table-condensed>tfoot>tr>td,.bootstrap3 .table-condensed>tfoot>tr>th,.bootstrap3 .table-condensed>thead>tr>td,.bootstrap3 .table-condensed>thead>tr>th{padding:5px}.bootstrap3 .table-bordered,.bootstrap3 .table-bordered>tbody>tr>td,.bootstrap3 .table-bordered>tbody>tr>th,.bootstrap3 .table-bordered>tfoot>tr>td,.bootstrap3 .table-bordered>tfoot>tr>th,.bootstrap3 .table-bordered>thead>tr>td,.bootstrap3 .table-bordered>thead>tr>th{border:1px solid #ddd}.bootstrap3 .table-bordered>thead>tr>td,.bootstrap3 .table-bordered>thead>tr>th{border-bottom-width:2px}.bootstrap3 .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.bootstrap3 .table-hover>tbody>tr:hover{background-color:#f5f5f5}.bootstrap3 table col[class*=col-]{position:static;display:table-column;float:none}.bootstrap3 table td[class*=col-],.bootstrap3 table th[class*=col-]{position:static;display:table-cell;float:none}.bootstrap3 .table>tbody>tr.active>td,.bootstrap3 .table>tbody>tr.active>th,.bootstrap3 .table>tbody>tr>td.active,.bootstrap3 .table>tbody>tr>th.active,.bootstrap3 .table>tfoot>tr.active>td,.bootstrap3 .table>tfoot>tr.active>th,.bootstrap3 .table>tfoot>tr>td.active,.bootstrap3 .table>tfoot>tr>th.active,.bootstrap3 .table>thead>tr.active>td,.bootstrap3 .table>thead>tr.active>th,.bootstrap3 .table>thead>tr>td.active,.bootstrap3 .table>thead>tr>th.active{background-color:#f5f5f5}.bootstrap3 .table-hover>tbody>tr.active:hover>td,.bootstrap3 .table-hover>tbody>tr.active:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.active,.bootstrap3 .table-hover>tbody>tr>td.active:hover,.bootstrap3 .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.bootstrap3 .table>tbody>tr.success>td,.bootstrap3 .table>tbody>tr.success>th,.bootstrap3 .table>tbody>tr>td.success,.bootstrap3 .table>tbody>tr>th.success,.bootstrap3 .table>tfoot>tr.success>td,.bootstrap3 .table>tfoot>tr.success>th,.bootstrap3 .table>tfoot>tr>td.success,.bootstrap3 .table>tfoot>tr>th.success,.bootstrap3 .table>thead>tr.success>td,.bootstrap3 .table>thead>tr.success>th,.bootstrap3 .table>thead>tr>td.success,.bootstrap3 .table>thead>tr>th.success{background-color:#dff0d8}.bootstrap3 .table-hover>tbody>tr.success:hover>td,.bootstrap3 .table-hover>tbody>tr.success:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.success,.bootstrap3 .table-hover>tbody>tr>td.success:hover,.bootstrap3 .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.bootstrap3 .table>tbody>tr.info>td,.bootstrap3 .table>tbody>tr.info>th,.bootstrap3 .table>tbody>tr>td.info,.bootstrap3 .table>tbody>tr>th.info,.bootstrap3 .table>tfoot>tr.info>td,.bootstrap3 .table>tfoot>tr.info>th,.bootstrap3 .table>tfoot>tr>td.info,.bootstrap3 .table>tfoot>tr>th.info,.bootstrap3 .table>thead>tr.info>td,.bootstrap3 .table>thead>tr.info>th,.bootstrap3 .table>thead>tr>td.info,.bootstrap3 .table>thead>tr>th.info{background-color:#d9edf7}.bootstrap3 .table-hover>tbody>tr.info:hover>td,.bootstrap3 .table-hover>tbody>tr.info:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.info,.bootstrap3 .table-hover>tbody>tr>td.info:hover,.bootstrap3 .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.bootstrap3 .table>tbody>tr.warning>td,.bootstrap3 .table>tbody>tr.warning>th,.bootstrap3 .table>tbody>tr>td.warning,.bootstrap3 .table>tbody>tr>th.warning,.bootstrap3 .table>tfoot>tr.warning>td,.bootstrap3 .table>tfoot>tr.warning>th,.bootstrap3 .table>tfoot>tr>td.warning,.bootstrap3 .table>tfoot>tr>th.warning,.bootstrap3 .table>thead>tr.warning>td,.bootstrap3 .table>thead>tr.warning>th,.bootstrap3 .table>thead>tr>td.warning,.bootstrap3 .table>thead>tr>th.warning{background-color:#fcf8e3}.bootstrap3 .table-hover>tbody>tr.warning:hover>td,.bootstrap3 .table-hover>tbody>tr.warning:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.warning,.bootstrap3 .table-hover>tbody>tr>td.warning:hover,.bootstrap3 .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.bootstrap3 .table>tbody>tr.danger>td,.bootstrap3 .table>tbody>tr.danger>th,.bootstrap3 .table>tbody>tr>td.danger,.bootstrap3 .table>tbody>tr>th.danger,.bootstrap3 .table>tfoot>tr.danger>td,.bootstrap3 .table>tfoot>tr.danger>th,.bootstrap3 .table>tfoot>tr>td.danger,.bootstrap3 .table>tfoot>tr>th.danger,.bootstrap3 .table>thead>tr.danger>td,.bootstrap3 .table>thead>tr.danger>th,.bootstrap3 .table>thead>tr>td.danger,.bootstrap3 .table>thead>tr>th.danger{background-color:#f2dede}.bootstrap3 .table-hover>tbody>tr.danger:hover>td,.bootstrap3 .table-hover>tbody>tr.danger:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.danger,.bootstrap3 .table-hover>tbody>tr>td.danger:hover,.bootstrap3 .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.bootstrap3 .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.bootstrap3 .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.bootstrap3 .table-responsive>.table{margin-bottom:0}.bootstrap3 .table-responsive>.table>tbody>tr>td,.bootstrap3 .table-responsive>.table>tbody>tr>th,.bootstrap3 .table-responsive>.table>tfoot>tr>td,.bootstrap3 .table-responsive>.table>tfoot>tr>th,.bootstrap3 .table-responsive>.table>thead>tr>td,.bootstrap3 .table-responsive>.table>thead>tr>th{white-space:nowrap}.bootstrap3 .table-responsive>.table-bordered{border:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>tbody>tr>th:first-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>th:first-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>tbody>tr>th:last-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>th:last-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr:last-child>td,.bootstrap3 .table-responsive>.table-bordered>tbody>tr:last-child>th,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr:last-child>td,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.bootstrap4 .table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.bootstrap4 .table td,.bootstrap4 .table th{padding:.75rem;vertical-align:top;border-top:1px solid #e9ecef}.bootstrap4 .table thead th{vertical-align:bottom;border-bottom:2px solid #e9ecef}.bootstrap4 .table tbody+tbody{border-top:2px solid #e9ecef}.bootstrap4 .table .table{background-color:#fff;color:#000}.bootstrap4 .table-sm td,.bootstrap4 .table-sm th{padding:.3rem}.bootstrap4 .table-bordered,.bootstrap4 .table-bordered td,.bootstrap4 .table-bordered th{border:1px solid #e9ecef}.bootstrap4 .table-bordered thead td,.bootstrap4 .table-bordered thead th{border-bottom-width:2px}.bootstrap4 .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.bootstrap4 .table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.bootstrap4 .table-primary,.bootstrap4 .table-primary>td,.bootstrap4 .table-primary>th{background-color:#b8daff}.bootstrap4 .table-hover .table-primary:hover,.bootstrap4 .table-hover .table-primary:hover>td,.bootstrap4 .table-hover .table-primary:hover>th{background-color:#9fcdff}.bootstrap4 .table-secondary,.bootstrap4 .table-secondary>td,.bootstrap4 .table-secondary>th{background-color:#dddfe2}.bootstrap4 .table-hover .table-secondary:hover,.bootstrap4 .table-hover .table-secondary:hover>td,.bootstrap4 .table-hover .table-secondary:hover>th{background-color:#cfd2d6}.bootstrap4 .table-success,.bootstrap4 .table-success>td,.bootstrap4 .table-success>th{background-color:#c3e6cb}.bootstrap4 .table-hover .table-success:hover,.bootstrap4 .table-hover .table-success:hover>td,.bootstrap4 .table-hover .table-success:hover>th{background-color:#b1dfbb}.bootstrap4 .table-info,.bootstrap4 .table-info>td,.bootstrap4 .table-info>th{background-color:#bee5eb}.bootstrap4 .table-hover .table-info:hover,.bootstrap4 .table-hover .table-info:hover>td,.bootstrap4 .table-hover .table-info:hover>th{background-color:#abdde5}.bootstrap4 .table-warning,.bootstrap4 .table-warning>td,.bootstrap4 .table-warning>th{background-color:#ffeeba}.bootstrap4 .table-hover .table-warning:hover,.bootstrap4 .table-hover .table-warning:hover>td,.bootstrap4 .table-hover .table-warning:hover>th{background-color:#ffe8a1}.bootstrap4 .table-danger,.bootstrap4 .table-danger>td,.bootstrap4 .table-danger>th{background-color:#f5c6cb}.bootstrap4 .table-hover .table-danger:hover,.bootstrap4 .table-hover .table-danger:hover>td,.bootstrap4 .table-hover .table-danger:hover>th{background-color:#f1b0b7}.bootstrap4 .table-light,.bootstrap4 .table-light>td,.bootstrap4 .table-light>th{background-color:#fdfdfe}.bootstrap4 .table-hover .table-light:hover,.bootstrap4 .table-hover .table-light:hover>td,.bootstrap4 .table-hover .table-light:hover>th{background-color:#ececf6}.bootstrap4 .table-dark,.bootstrap4 .table-dark>td,.bootstrap4 .table-dark>th{background-color:#c6c8ca}.bootstrap4 .table-hover .table-dark:hover,.bootstrap4 .table-hover .table-dark:hover>td,.bootstrap4 .table-hover .table-dark:hover>th{background-color:#b9bbbe}.bootstrap4 .table-active,.bootstrap4 .table-active>td,.bootstrap4 .table-active>th,.bootstrap4 .table-hover .table-active:hover,.bootstrap4 .table-hover .table-active:hover>td,.bootstrap4 .table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.bootstrap4 .thead-inverse th{color:#fff;background-color:#212529}.bootstrap4 .thead-default th{color:#495057;background-color:#e9ecef}.bootstrap4 .table-inverse{color:#fff;background-color:#212529}.bootstrap4 .table-inverse td,.bootstrap4 .table-inverse th,.bootstrap4 .table-inverse thead th{border-color:#32383e}.bootstrap4 .table-inverse.table-bordered{border:0}.bootstrap4 .table-inverse.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.bootstrap4 .table-inverse.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075)}@media (max-width:991px){.bootstrap4 .table-responsive{display:block;width:100%;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar}.bootstrap4 .table-responsive.table-bordered{border:0}}.semantic_ui{
2
  /*!
3
  * # Semantic UI 2.2.12 - Table
4
  * http://github.com/semantic-org/semantic-ui/
1
+ .footable-details.table,.footable-details.table *,.footable.table,.footable.table *{-webkit-box-sizing:border-box;box-sizing:border-box}.footable-details.table th,.footable.table th{text-align:left}.footable-details.table,.footable.table{width:100%;max-width:100%;margin-bottom:20px}.footable.table tbody tr td,.footable.table tr th{word-break:keep-all}.footable-details.table>caption+thead>tr:first-child>td,.footable-details.table>caption+thead>tr:first-child>th,.footable-details.table>colgroup+thead>tr:first-child>td,.footable-details.table>colgroup+thead>tr:first-child>th,.footable-details.table>thead:first-child>tr:first-child>td,.footable-details.table>thead:first-child>tr:first-child>th,.footable.table>caption+thead>tr:first-child>td,.footable.table>caption+thead>tr:first-child>th,.footable.table>colgroup+thead>tr:first-child>td,.footable.table>colgroup+thead>tr:first-child>th,.footable.table>thead:first-child>tr:first-child>td,.footable.table>thead:first-child>tr:first-child>th{border-top:0}.footable-details.table>tbody>tr>td,.footable-details.table>tbody>tr>th,.footable-details.table>tfoot>tr>td,.footable-details.table>tfoot>tr>th,.footable-details.table>thead>tr>td,.footable-details.table>thead>tr>th,.footable.table>tbody>tr>td,.footable.table>tbody>tr>th,.footable.table>tfoot>tr>td,.footable.table>tfoot>tr>th,.footable.table>thead>tr>td,.footable.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.footable-details.table>thead>tr>td,.footable-details.table>thead>tr>th,.footable.table>thead>tr>td,.footable.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.footable-details.table-condensed>tbody>tr>td,.footable-details.table-condensed>tbody>tr>th,.footable-details.table-condensed>tfoot>tr>td,.footable-details.table-condensed>tfoot>tr>th,.footable-details.table-condensed>thead>tr>td,.footable-details.table-condensed>thead>tr>th,.footable.table-condensed>tbody>tr>td,.footable.table-condensed>tbody>tr>th,.footable.table-condensed>tfoot>tr>td,.footable.table-condensed>tfoot>tr>th,.footable.table-condensed>thead>tr>td,.footable.table-condensed>thead>tr>th{padding:5px}.footable-details.table-bordered,.footable-details.table-bordered>tbody>tr>td,.footable-details.table-bordered>tbody>tr>th,.footable-details.table-bordered>tfoot>tr>td,.footable-details.table-bordered>tfoot>tr>th,.footable-details.table-bordered>thead>tr>td,.footable-details.table-bordered>thead>tr>th,.footable.table-bordered,.footable.table-bordered>tbody>tr>td,.footable.table-bordered>tbody>tr>th,.footable.table-bordered>tfoot>tr>td,.footable.table-bordered>tfoot>tr>th,.footable.table-bordered>thead>tr>td,.footable.table-bordered>thead>tr>th{border:1px solid #ddd}.footable-details.table-bordered>thead>tr>td,.footable-details.table-bordered>thead>tr>th,.footable.table-bordered>thead>tr>td,.footable.table-bordered>thead>tr>th{border-bottom-width:2px}.footable-details.table-striped>tbody>tr:nth-child(odd),.footable.table-striped>tbody>tr:nth-child(odd){background-color:#f9f9f9}.footable-details.table-hover>tbody>tr:hover,.footable.table-hover>tbody>tr:hover{background-color:#f5f5f5}.footable .btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px;overflow:visible;text-transform:none}.footable .btn.focus,.footable .btn:focus,.footable .btn:hover{color:#333;text-decoration:none}.footable .btn-default{color:#333;background-color:#fff;border-color:#ccc}.footable .btn-default.active,.footable .btn-default.focus,.footable .btn-default:active,.footable .btn-default:focus,.footable .btn-default:hover,.footable .open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.footable .btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.footable .btn-primary.active,.footable .btn-primary.focus,.footable .btn-primary:active,.footable .btn-primary:focus,.footable .btn-primary:hover,.footable .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.footable .btn-group,.footable .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.footable .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.footable .btn-group>.btn:first-child{margin-left:0}.footable .btn-group-vertical>.btn,.footable .btn-group>.btn{position:relative;float:left}.footable .btn-group-xs>.btn,.footable .btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.footable .btn-group-sm>.btn,.footable .btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.footable .btn-group-lg>.btn,.footable .btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.footable .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.footable .btn .caret{margin-left:0}.form-group{margin-bottom:15px}.footable .form-control{display:block;width:100%;height:34px;padding:6px 12px;margin:0;font-family:inherit;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.footable .input-group{position:relative;display:table;border-collapse:separate}.footable .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.footable .input-group-btn{position:relative;font-size:0;white-space:nowrap}.footable .input-group-addon,.footable .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.footable .input-group-addon,.footable .input-group-btn,.footable .input-group .form-control{display:table-cell}.footable .input-group-btn:last-child>.btn,.footable .input-group-btn:last-child>.btn-group,.footable .input-group-btn>.btn+.btn{margin-left:-1px}.footable .input-group-btn>.btn{position:relative}.footable .input-group-btn>.btn:active,.footable .input-group-btn>.btn:focus,.footable .input-group-btn>.btn:hover{z-index:2}.footable .input-group-addon:first-child,.footable .input-group-btn:first-child>.btn,.footable .input-group-btn:first-child>.btn-group>.btn,.footable .input-group-btn:first-child>.dropdown-toggle,.footable .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.footable .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.footable .input-group .form-control:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.footable .input-group-addon:last-child,.footable .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.footable .input-group-btn:first-child>.btn:not(:first-child),.footable .input-group-btn:last-child>.btn,.footable .input-group-btn:last-child>.btn-group>.btn,.footable .input-group-btn:last-child>.dropdown-toggle,.footable .input-group .form-control:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.footable .checkbox,.footable .radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.footable .checkbox label,.footable .radio label{max-width:100%;min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.footable .checkbox-inline input[type=checkbox],.footable .checkbox input[type=checkbox],.footable .radio-inline input[type=radio],.footable .radio input[type=radio]{position:absolute;margin:4px 0 0 -20px;line-height:normal}.footable .checkbox-inline input[type=checkbox]{display:block!important}.footable .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.footable .open>.dropdown-menu{display:block;list-style:none!important}.footable .dropdown-menu-right{right:0;left:auto}.footable .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.footable .dropdown-menu>li>a:focus,.footable .dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.footable .pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.footable .pagination>li{display:inline}.footable .pagination>li:first-child>a,.footable .pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.footable .pagination>li>a,.footable .pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none!important;background-color:#fff;border:1px solid #ddd}.footable .pagination>li>a:focus,.footable .pagination>li>a:hover,.footable .pagination>li>span:focus,.footable .pagination>li>span:hover{color:#23527c;background-color:#eee;border-color:#ddd}.footable .pagination>.active>a,.footable .pagination>.active>a:focus,.footable .pagination>.active>a:hover,.footable .pagination>.active>span,.footable .pagination>.active>span:focus,.footable .pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.footable .pagination>.disabled>a,.footable .pagination>.disabled>a:focus,.footable .pagination>.disabled>a:hover,.footable .pagination>.disabled>span,.footable .pagination>.disabled>span:focus,.footable .pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.footable .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.footable .label-default{background-color:#777}.footable-loader.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.footable .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}@media (min-width:768px){.footable .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.footable .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.footable .form-inline .input-group{display:inline-table;vertical-align:middle}.footable .form-inline .input-group .form-control,.footable .form-inline .input-group .input-group-addon,.footable .form-inline .input-group .input-group-btn{width:auto}.footable .form-inline .input-group>.form-control{width:100%}}table.footable,table.footable-details{position:relative;width:100%;border-spacing:0;border-collapse:collapse}table.footable-details{margin-bottom:0}table.footable-hide-fouc{display:none}table>tbody>tr>td>span.footable-toggle{margin-right:8px;opacity:.3}table>tbody>tr>td>span.footable-toggle.last-column{margin-left:8px;float:right}table.table-condensed>tbody>tr>td>span.footable-toggle{margin-right:5px}table.footable-details>tbody>tr>th:first-child{min-width:40px;width:140px}table.footable-details>tbody>tr>td:nth-child(2){word-break:keep-all!important}table.footable-details>tbody>tr:first-child>td,table.footable-details>tbody>tr:first-child>th,table.footable-details>tfoot>tr:first-child>td,table.footable-details>tfoot>tr:first-child>th,table.footable-details>thead>tr:first-child>td,table.footable-details>thead>tr:first-child>th{border-top-width:0}table.footable-details.table-bordered>tbody>tr:first-child>td,table.footable-details.table-bordered>tbody>tr:first-child>th,table.footable-details.table-bordered>tfoot>tr:first-child>td,table.footable-details.table-bordered>tfoot>tr:first-child>th,table.footable-details.table-bordered>thead>tr:first-child>td,table.footable-details.table-bordered>thead>tr:first-child>th{border-top-width:1px}div.footable-loader{vertical-align:middle;text-align:center;height:300px;position:relative}div.footable-loader>span.fooicon{display:inline-block;opacity:.3;font-size:30px;line-height:32px;width:32px;height:32px;margin-top:-16px;margin-left:-16px;position:absolute;top:50%;left:50%;-webkit-animation:fooicon-spin-r 2s infinite linear;animation:fooicon-spin-r 2s infinite linear}table.footable>tbody>tr.footable-empty>td{vertical-align:middle;text-align:center;font-size:30px}table.footable>tbody>tr.footable-detail-row>td,table.footable>tbody>tr.footable-detail-row>th,table.footable>tbody>tr.footable-empty>td,table.footable>tbody>tr.footable-empty>th{display:table-cell}@-webkit-keyframes fooicon-spin-r{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fooicon-spin-r{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}table.footable>thead>tr.footable-filtering>th{border-bottom-width:1px;font-weight:400}.footable-filtering-external.footable-filtering-right,table.footable.footable-filtering-right>thead>tr.footable-filtering>th,table.footable>thead>tr.footable-filtering>th{text-align:right}.footable-filtering-external.footable-filtering-left,table.footable.footable-filtering-left>thead>tr.footable-filtering>th{text-align:left}.footable-filtering-external.footable-filtering-center,table.footable.footable-filtering-center>thead>tr.footable-filtering>th{text-align:center}table.footable>thead>tr.footable-filtering>th div.form-group{margin-bottom:0}table.footable>thead>tr.footable-filtering>th div.form-group+div.form-group{margin-top:5px}table.footable>thead>tr.footable-filtering>th div.input-group{width:100%}.footable-filtering-external ul.dropdown-menu>li>a.checkbox,table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox{margin:0;display:block;position:relative}.footable-filtering-external ul.dropdown-menu>li>a.checkbox>label,table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox>label{display:block;padding-left:20px}.footable-filtering-external ul.dropdown-menu>li>a.checkbox input[type=checkbox],table.footable>thead>tr.footable-filtering>th ul.dropdown-menu>li>a.checkbox input[type=checkbox]{position:absolute;margin-left:-20px}@media (min-width:768px){table.footable>thead>tr.footable-filtering>th div.input-group{width:auto}table.footable>thead>tr.footable-filtering>th div.form-group{margin-left:2px;margin-right:2px}table.footable>thead>tr.footable-filtering>th div.form-group+div.form-group{margin-top:0}}table.footable>tbody>tr>td.footable-sortable,table.footable>tbody>tr>th.footable-sortable,table.footable>tfoot>tr>td.footable-sortable,table.footable>tfoot>tr>th.footable-sortable,table.footable>thead>tr>td.footable-sortable,table.footable>thead>tr>th.footable-sortable{position:relative;padding-right:30px;cursor:pointer}td.footable-sortable>span.fooicon,th.footable-sortable>span.fooicon{position:absolute;right:0;top:50%;margin-top:-7px;opacity:0;-webkit-transition:opacity .3s ease-in;transition:opacity .3s ease-in}td.footable-sortable.footable-asc>span.fooicon,td.footable-sortable.footable-desc>span.fooicon,td.footable-sortable:hover>span.fooicon,th.footable-sortable.footable-asc>span.fooicon,th.footable-sortable.footable-desc>span.fooicon,th.footable-sortable:hover>span.fooicon{opacity:1}table.footable-sorting-disabled td.footable-sortable.footable-asc>span.fooicon,table.footable-sorting-disabled td.footable-sortable.footable-desc>span.fooicon,table.footable-sorting-disabled td.footable-sortable:hover>span.fooicon,table.footable-sorting-disabled th.footable-sortable.footable-asc>span.fooicon,table.footable-sorting-disabled th.footable-sortable.footable-desc>span.fooicon,table.footable-sorting-disabled th.footable-sortable:hover>span.fooicon{opacity:0;visibility:hidden}.footable-paging-external ul.pagination,table.footable>tfoot>tr.footable-paging>td>ul.pagination{margin:10px 0 0}.footable-paging-external span.label,table.footable>tfoot>tr.footable-paging>td>span.label{display:inline-block;margin:0 0 10px;padding:4px 10px}.footable-paging-external.footable-paging-center,table.footable-paging-center>tfoot>tr.footable-paging>td,table.footable>tfoot>tr.footable-paging>td{text-align:center}.footable-paging-external.footable-paging-left,table.footable-paging-left>tfoot>tr.footable-paging>td{text-align:left}.footable-paging-external.footable-paging-right,table.footable-paging-right>tfoot>tr.footable-paging>td{text-align:right}ul.pagination>li.footable-page{display:none}ul.pagination>li.footable-page.visible{display:inline}td.footable-editing{width:90px;max-width:90px}table.footable-editing-no-delete td.footable-editing,table.footable-editing-no-edit td.footable-editing,table.footable-editing-no-view td.footable-editing{width:70px;max-width:70px}table.footable-editing-no-delete.footable-editing-no-view td.footable-editing,table.footable-editing-no-edit.footable-editing-no-delete td.footable-editing,table.footable-editing-no-edit.footable-editing-no-view td.footable-editing{width:50px;max-width:50px}table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view td.footable-editing,table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view th.footable-editing{width:0;max-width:0;display:none!important}table.footable-editing-right td.footable-editing,table.footable-editing-right tr.footable-editing{text-align:right}table.footable-editing-left td.footable-editing,table.footable-editing-left tr.footable-editing{text-align:left}table.footable-editing-show button.footable-show,table.footable-editing.footable-editing-always-show.footable-editing-no-add tr.footable-editing,table.footable-editing.footable-editing-always-show button.footable-hide,table.footable-editing.footable-editing-always-show button.footable-show,table.footable-editing button.footable-add,table.footable-editing button.footable-hide{display:none}table.footable-editing.footable-editing-always-show button.footable-add,table.footable-editing.footable-editing-show button.footable-add,table.footable-editing.footable-editing-show button.footable-hide{display:inline-block}.foo-table{table-layout:auto}.foo-table>caption{color:#000}.foo-table .nt_button_woo,.foo-table .nt_woo_view_cart{background-color:#a46497;color:#fff;-webkit-font-smoothing:antialiased;white-space:nowrap;display:inline-block;padding:7px 10px;margin:3px 0;-webkit-transition-duration:.4s;transition-duration:.4s;position:relative}.foo-table .nt_button_woo span.fooicon-loader,.foo-table .nt_woo_view_cart span.fooicon-loader{margin-top:-10px;position:absolute;top:50%;left:0;-webkit-animation:fooicon-spin-r .7s infinite linear;animation:fooicon-spin-r .7s infinite linear}.foo-table .nt_button_woo:after,.foo-table .nt_woo_view_cart:after{content:"";background:gray;color:#000;display:block;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;-webkit-transition:all .8s;transition:all .8s}.foo-table .nt_button_woo:active:after,.foo-table .nt_woo_view_cart:active:after{padding:0;margin:0;opacity:.5;-webkit-transition:0s;transition:0s}.foo-table .nt-quantity-wrapper{display:inline-block;vertical-align:middle;width:auto;white-space:nowrap;position:relative;width:64px;height:40px}.foo-table .nt-quantity-wrapper input{font-size:inherit;color:#000;text-align:center;width:100%!important;height:100%!important;padding:5px;border:1px solid #ddd;margin:0!important;-webkit-appearance:none;-moz-appearance:textfield;appearance:none;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-radius:inherit}.foo-table .nt_add_cart_wrapper.nt_added_cart{display:block;white-space:nowrap;width:auto}.foo-table .nt_add_cart_wrapper.nt_added_cart a.added_to_cart.wc-forward{color:#000;background:transparent;display:inline-block;text-decoration:none!important;-webkit-box-shadow:none;box-shadow:none}.foo-table .nt_add_cart_wrapper.nt_added_cart a.added_to_cart.wc-forward:after{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-style:normal;font-variant:normal;font-weight:400;line-height:1;font-family:ninja-tables-icons;font-weight:900;line-height:inherit;vertical-align:baseline;content:"g";height:1em;float:right;line-height:1.618}.foo-table.ninja_require_initial_hide.nt_type_legacy_table{display:none!important}.foo-table .nt_btn{border:1px solid transparent;padding:7px 15px;font-size:14px;text-decoration:none!important;display:inline-block}.foo-table .nt_btn.nt_rounded_btn{border-radius:4px!important}.foo-table .nt_btn:hover{opacity:.9;border-color:transparent!important}.foo-table.footable.table>thead>tr>th{padding:.92857143em .78571429em}.foo-table td.footable-editing,.foo-table th.footable-editing{width:auto!important}.foo-table td.footable-editing .btn-group button{padding:1px 5px;margin:0;border-radius:3px}.foo-table td.footable-editing .btn-group button:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.foo-table td.footable-editing .btn-group button:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.foo-table .form-inline{display:block!important;margin-bottom:0}.foo-table.ninja_search_left tr.footable-filtering .form-inline{text-align:left}.foo-table.ninja_search_right tr.footable-filtering .form-inline{text-align:right}.foo-table.ninja_search_center tr.footable-filtering .form-inline{text-align:center}.foo-table td.ninja_temp_cell{display:none!important}.foo-table span.label.label-default{display:none;visibility:hidden}.foo-table.ninja_has_count_format span.label.label-default{display:inline-block;visibility:visible}.foo-table.footable-paging-right .footable-pagination-wrapper{text-align:right}.foo-table.footable-paging-center .footable-pagination-wrapper{text-align:center}.foo-table.footable-paging-left .footable-pagination-wrapper{text-align:left}.foo-table .footable-pagination-wrapper .pagination:after,.foo-table .footable-pagination-wrapper .pagination:before{content:none!important}.foo-table table.footable-details tr th{white-space:normal;overflow:visible!important;text-overflow:unset!important}.foo-table tr.footable-filtering th{overflow:visible!important}.foo-table .pagination{border:none;padding:0;font-weight:500}.foo-table button.btn.btn-default.dropdown-toggle{top:0;right:0;left:0}.foo-table button.btn.btn-default.dropdown-toggle:after{content:"";display:none!important}.foo-table li.dropdown-header{padding-left:20px;padding-bottom:5px;color:#333}.foo-table ul.dropdown-menu.dropdown-menu-right li:last-child a{border-bottom:0!important;-webkit-box-shadow:none;box-shadow:none}.foo-table ul.dropdown-menu.dropdown-menu-right li a:hover{-webkit-box-shadow:inset 0 0 0 transparent,0 1px 0 #000;box-shadow:inset 0 0 0 transparent,0 1px 0 #000}.foo-table span.footable-toggle{cursor:pointer}.foo-table.ninjatable_hide_header_row>thead tr.footable-header{display:none!important;visibility:hidden}.foo-table.hide_all_borders.table{border-color:transparent}.foo-table.hide_all_borders.table thead{border-color:transparent!important}.foo-table.hide_all_borders.table thead td,.foo-table.hide_all_borders.table thead tr,.foo-table.hide_all_borders.table thead tr>th{border-color:transparent!important;border-width:0!important}.foo-table.hide_all_borders.table tbody td,.foo-table.hide_all_borders.table tbody th{border-color:transparent!important}.foo-table.hide_all_borders.table tfoot tr>td{border-color:transparent!important;border:0!important}.foo-table.ninja_table_search_disabled>thead tr.footable-filtering .footable-filtering-search{display:none!important;visibility:hidden!important}.foo-table .form-group.footable-filtering-search .input-group-btn>button{margin:0!important;height:auto!important;padding:6px 12px!important}.foo-table .form-group.footable-filtering-search input.form-control{margin-bottom:0!important}.foo-table tbody tr.footable-detail-row>td{padding:5px!important}.foo-table tbody tr.footable-detail-row td table.footable-details:not(.ninja_custom_color){margin-bottom:0}.foo-table tbody tr.footable-detail-row td table.footable-details:not(.ninja_custom_color) tbody tr:nth-child(2n){background:#f7f7f7!important}.foo-table tbody tr.footable-detail-row table.inverted tbody tr{background:#fff!important;color:#000}.foo-table select.nt_pager_selection{width:auto;display:inline-block;margin-left:5px!important;height:38px;padding:6px 12px;margin:0;font-family:inherit;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out}.foo-table tbody tr td a,.foo-table tbody tr td h1,.foo-table tbody tr td h2,.foo-table tbody tr td h3,.foo-table tbody tr td p{margin:0;padding:0}.foo-table img{max-width:100%}.foo-table tbody tr:nth-child(2n) td,.foo-table tbody tr:nth-child(2n) th,.foo-table tbody tr:nth-child(odd) td,.foo-table tbody tr:nth-child(odd) th,.foo-table tbody tr td,.foo-table tbody tr th{background-color:transparent}.footable_parent{overflow-x:auto;width:100%}.footable_parent table.foo-table.vertical_centered tbody>tr>td,.footable_parent table.foo-table.vertical_centered thead>tr>th{vertical-align:middle}.ninja_table_pro table.footable-details tr.nt_has_hide{display:none!important}.ninja_table_pro.nt_hide_breakpoint_labels table.footable-details tbody>tr>th{display:none}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search{width:100%}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group{display:block;position:relative}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group>.form-control{display:inline-block;float:none}.ninja_table_pro.nt_search_full_width .form-group.footable-filtering-search .input-group .input-group-btn{position:absolute;right:0;top:0;z-index:999999}.loading_ninja_table1{width:100%;height:200px;background:gray!important}.loading_ninja_table1 table{display:none}table.ninja_footable>thead>tr>th.hidden,table.ninja_footable col.hidden{display:none!important}@media (max-width:767px){table.ninja_footable>thead>tr>th.xs,table.ninja_footable col.xs{display:none}}@media (min-width:768px) and (max-width:991px){table.ninja_footable>thead>tr>th.sm,table.ninja_footable col.sm{display:none}}@media (min-width:992px) and (max-width:1199px){table.ninja_footable>thead>tr>th.md,table.ninja_footable col.md{display:none}}@media (min-width:1200px){table.ninja_footable>thead>tr>th.lg,table.ninja_footable col.lg{display:none}}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label{display:inline-block;margin-right:15px}@media (max-width:767px){.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label{display:block}}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label:last-child,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label:last-child{margin-right:0}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio>label input,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox>label input{margin-right:10px}.ninja_table_wrapper table thead .footable-filtering .ninja_custom_radio label.ninja_filter_title,.ninja_table_wrapper table thead .footable-filtering .ninja_custom_select_checkbox label.ninja_filter_title{margin-right:0}.ninja_table_wrapper table thead .footable-filtering .ninja_filter_title{margin-right:10px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline{display:block;width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group{text-align:left}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .form-control,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group{width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group>.ninja_filter_title{display:block;font-weight:700}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group.ninja_reset_wrapper{margin-top:24px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group{width:100%}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .input-group .input-group-btn{width:70px!important}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_date_range,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_number_range{width:49%;margin:0 2% 0 0}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_title,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_date_range:last-child,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline>.form-group .ninja_filter_number_range:last-child{margin-right:0}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_from{margin-right:10px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_date_to,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_from,.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .ninja_filter_number_to{margin-bottom:5px}.ninja_table_wrapper .ninja_table_afd_columns thead .footable-filtering th .form-inline .form-group.footable-filtering-search .sr-only{position:relative;visibility:hidden!important;color:transparent;height:0;width:0}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:49%;padding:0 15px 0 0;float:left}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group:last-child{padding-right:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-right:0}}.ninja_table_wrapper .ninja_table_afcs_columns_2 thead .footable-filtering th .form-inline>.form-group:nth-child(odd){clear:both}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:33.3%;padding:0 15px 0 0;float:left}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group:last-child{padding-right:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-right:0}}.ninja_table_wrapper .ninja_table_afcs_columns_3 thead .footable-filtering th .form-inline>.form-group:nth-child(3n+1){clear:both}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group{margin:0 0 20px;width:24.9%;padding:0 15px 0 0;float:left}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group:last-child{padding-right:0}@media (max-width:767px){.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group{width:100%;float:none;padding-right:0}}.ninja_table_wrapper .ninja_table_afcs_columns_4 thead .footable-filtering th .form-inline>.form-group:nth-child(4n+1){clear:both}.ninja_table_wrapper .ninja_reset_button{color:#fff;background:#dc3545;border-color:#dc3545}.ninja_table_wrapper .ninja_reset_button:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline{display:block;width:100%}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline>.form-group{margin-bottom:10px}.ninja_table_wrapper .ninja_table_afd_inline thead .footable-filtering th .form-inline .ninja_custom_radio .ninja_filter_title{margin-right:10px}.ninja_table_wrapper .ninja_table_buttons{display:block;overflow:hidden;clear:both}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_left{text-align:left}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_center{text-align:center}.ninja_table_wrapper .ninja_table_buttons.ninja_buttons_right{text-align:right}.ninja_table_wrapper .ninja_table_buttons.after_search_box{margin-top:10px}.ninja_table_wrapper .ninja_table_buttons.before_table{margin-bottom:10px}.ninja_table_wrapper .ninja_table_buttons .ninja_button{border-radius:0;border-right:1px solid;padding:5px 10px}.ninja_table_wrapper .ninja_table_buttons .ninja_button:last-child{border-right:none}@media print{.ninja_table_print_view .footable_parent{overflow-x:hidden!important;width:100%}.ninja_table_print_view .footable-editing{display:none!important}}.ninja_table_wrapper .cart_details{display:block;position:relative;text-align:right}.ninja_table_wrapper .cart_details .nt_woo_cart_checkout_bttons,.ninja_table_wrapper .cart_details .nt_woo_items{display:inline-block}.ninja_table_wrapper .cart_details .nt_woo_items{padding-right:10px}.ninjatable_cart_wrapper{margin-bottom:10px}@font-face{font-family:ninja-tables-icons;src:url(../fonts/ninja-tables.eot?5c71ca4c05d382507807df3eef4564b3);src:url(../fonts/ninja-tables.eot?5c71ca4c05d382507807df3eef4564b3) format("embedded-opentype"),url(../fonts/ninja-tables.woff?10ed5e333d4d4b43f270e4007cba8413) format("woff"),url(../fonts/ninja-tables.woff2?1a82860cb5286f7833a2c33fbdd1d76c) format("woff2"),url(../fonts/ninja-tables.ttf?1db694e765d370865653f85529e09f61) format("truetype"),url(../fonts/ninja-tables.svg?0322d5aaaad653b558b843654e227528) format("svg");font-weight:400;font-style:normal}.footable_parent .fooicon{display:inline-block;font-size:inherit;font-family:ninja-tables-icons!important;font-style:normal;font-weight:400;line-height:1;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-transform:translate(0);transform:translate(0)}.footable_parent .fooicon:before{content:attr(data-icon)}.footable_parent .fooicon:before,.footable_parent [class*=" fooicon-"]:before,.footable_parent [class*=" footable-"]:before,.footable_parent [class^=fooicon-]:before,.footable_parent [class^=footable-]:before{font-family:ninja-tables-icons!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.footable_parent .fooicon-search:before{content:"\F002"}.footable_parent .fooicon-sort-desc:before{content:"\F161"}.footable_parent .fooicon-sort-asc:before{content:"\F160"}.footable_parent .fooicon-sort:before{content:"\F0DC"}.footable_parent .fooicon-minus:before{content:"\F068"}.footable_parent .fooicon-plus:before{content:"\F067"}.footable_parent .fooicon-circle-o-notch:before{content:"\E000"}.footable_parent .fooicon-remove:before{content:"\F00D"}.footable_parent .fooicon-loader-alt:before{content:"\F01"}.footable_parent .fooicon-refresh:before{content:"\E001"}.footable_parent .fooicon-loader:before{content:"\F01E"}.footable_parent .fooicon-grid:before{content:"a"}.footable_parent .fooicon-pencil:before{content:"b"}.footable_parent .fooicon-delete:before{content:"c"}.footable_parent .fooicon-view:before{content:"d"}.footable_parent .fooicon-edit:before{content:"e"}.footable_parent .fooicon-bag:before{content:"f"}.footable_parent .fooicon-basket:before{content:"g"}.footable_parent .fooicon-star:before{content:"h"}.footable_parent .fooicon-star-o:before{content:"i"}.footable_parent .fooicon-check:before{content:"j"}.footable_parent .fooicon-heart:before{content:"k"}.footable_parent .fooicon-download:before{content:"l"}.footable_parent .fooicon-trash:before{content:"c"}.footable_parent .fooicon-remove-1:before{content:"\F00D"}.bootstrap3 table{background-color:transparent}.bootstrap3 caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}.bootstrap3 th{text-align:left}.bootstrap3 .table{width:100%;max-width:100%;margin-bottom:20px}.bootstrap3 .table>tbody>tr>td,.bootstrap3 .table>tbody>tr>th,.bootstrap3 .table>tfoot>tr>td,.bootstrap3 .table>tfoot>tr>th,.bootstrap3 .table>thead>tr>td,.bootstrap3 .table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.bootstrap3 .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.bootstrap3 .table>caption+thead>tr:first-child>td,.bootstrap3 .table>caption+thead>tr:first-child>th,.bootstrap3 .table>colgroup+thead>tr:first-child>td,.bootstrap3 .table>colgroup+thead>tr:first-child>th,.bootstrap3 .table>thead:first-child>tr:first-child>td,.bootstrap3 .table>thead:first-child>tr:first-child>th{border-top:0}.bootstrap3 .table>tbody+tbody{border-top:2px solid #ddd}.bootstrap3 .table .table{background-color:#fff;color:#000}.bootstrap3 .table-condensed>tbody>tr>td,.bootstrap3 .table-condensed>tbody>tr>th,.bootstrap3 .table-condensed>tfoot>tr>td,.bootstrap3 .table-condensed>tfoot>tr>th,.bootstrap3 .table-condensed>thead>tr>td,.bootstrap3 .table-condensed>thead>tr>th{padding:5px}.bootstrap3 .table-bordered,.bootstrap3 .table-bordered>tbody>tr>td,.bootstrap3 .table-bordered>tbody>tr>th,.bootstrap3 .table-bordered>tfoot>tr>td,.bootstrap3 .table-bordered>tfoot>tr>th,.bootstrap3 .table-bordered>thead>tr>td,.bootstrap3 .table-bordered>thead>tr>th{border:1px solid #ddd}.bootstrap3 .table-bordered>thead>tr>td,.bootstrap3 .table-bordered>thead>tr>th{border-bottom-width:2px}.bootstrap3 .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.bootstrap3 .table-hover>tbody>tr:hover{background-color:#f5f5f5}.bootstrap3 table col[class*=col-]{position:static;display:table-column;float:none}.bootstrap3 table td[class*=col-],.bootstrap3 table th[class*=col-]{position:static;display:table-cell;float:none}.bootstrap3 .table>tbody>tr.active>td,.bootstrap3 .table>tbody>tr.active>th,.bootstrap3 .table>tbody>tr>td.active,.bootstrap3 .table>tbody>tr>th.active,.bootstrap3 .table>tfoot>tr.active>td,.bootstrap3 .table>tfoot>tr.active>th,.bootstrap3 .table>tfoot>tr>td.active,.bootstrap3 .table>tfoot>tr>th.active,.bootstrap3 .table>thead>tr.active>td,.bootstrap3 .table>thead>tr.active>th,.bootstrap3 .table>thead>tr>td.active,.bootstrap3 .table>thead>tr>th.active{background-color:#f5f5f5}.bootstrap3 .table-hover>tbody>tr.active:hover>td,.bootstrap3 .table-hover>tbody>tr.active:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.active,.bootstrap3 .table-hover>tbody>tr>td.active:hover,.bootstrap3 .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.bootstrap3 .table>tbody>tr.success>td,.bootstrap3 .table>tbody>tr.success>th,.bootstrap3 .table>tbody>tr>td.success,.bootstrap3 .table>tbody>tr>th.success,.bootstrap3 .table>tfoot>tr.success>td,.bootstrap3 .table>tfoot>tr.success>th,.bootstrap3 .table>tfoot>tr>td.success,.bootstrap3 .table>tfoot>tr>th.success,.bootstrap3 .table>thead>tr.success>td,.bootstrap3 .table>thead>tr.success>th,.bootstrap3 .table>thead>tr>td.success,.bootstrap3 .table>thead>tr>th.success{background-color:#dff0d8}.bootstrap3 .table-hover>tbody>tr.success:hover>td,.bootstrap3 .table-hover>tbody>tr.success:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.success,.bootstrap3 .table-hover>tbody>tr>td.success:hover,.bootstrap3 .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.bootstrap3 .table>tbody>tr.info>td,.bootstrap3 .table>tbody>tr.info>th,.bootstrap3 .table>tbody>tr>td.info,.bootstrap3 .table>tbody>tr>th.info,.bootstrap3 .table>tfoot>tr.info>td,.bootstrap3 .table>tfoot>tr.info>th,.bootstrap3 .table>tfoot>tr>td.info,.bootstrap3 .table>tfoot>tr>th.info,.bootstrap3 .table>thead>tr.info>td,.bootstrap3 .table>thead>tr.info>th,.bootstrap3 .table>thead>tr>td.info,.bootstrap3 .table>thead>tr>th.info{background-color:#d9edf7}.bootstrap3 .table-hover>tbody>tr.info:hover>td,.bootstrap3 .table-hover>tbody>tr.info:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.info,.bootstrap3 .table-hover>tbody>tr>td.info:hover,.bootstrap3 .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.bootstrap3 .table>tbody>tr.warning>td,.bootstrap3 .table>tbody>tr.warning>th,.bootstrap3 .table>tbody>tr>td.warning,.bootstrap3 .table>tbody>tr>th.warning,.bootstrap3 .table>tfoot>tr.warning>td,.bootstrap3 .table>tfoot>tr.warning>th,.bootstrap3 .table>tfoot>tr>td.warning,.bootstrap3 .table>tfoot>tr>th.warning,.bootstrap3 .table>thead>tr.warning>td,.bootstrap3 .table>thead>tr.warning>th,.bootstrap3 .table>thead>tr>td.warning,.bootstrap3 .table>thead>tr>th.warning{background-color:#fcf8e3}.bootstrap3 .table-hover>tbody>tr.warning:hover>td,.bootstrap3 .table-hover>tbody>tr.warning:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.warning,.bootstrap3 .table-hover>tbody>tr>td.warning:hover,.bootstrap3 .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.bootstrap3 .table>tbody>tr.danger>td,.bootstrap3 .table>tbody>tr.danger>th,.bootstrap3 .table>tbody>tr>td.danger,.bootstrap3 .table>tbody>tr>th.danger,.bootstrap3 .table>tfoot>tr.danger>td,.bootstrap3 .table>tfoot>tr.danger>th,.bootstrap3 .table>tfoot>tr>td.danger,.bootstrap3 .table>tfoot>tr>th.danger,.bootstrap3 .table>thead>tr.danger>td,.bootstrap3 .table>thead>tr.danger>th,.bootstrap3 .table>thead>tr>td.danger,.bootstrap3 .table>thead>tr>th.danger{background-color:#f2dede}.bootstrap3 .table-hover>tbody>tr.danger:hover>td,.bootstrap3 .table-hover>tbody>tr.danger:hover>th,.bootstrap3 .table-hover>tbody>tr:hover>.danger,.bootstrap3 .table-hover>tbody>tr>td.danger:hover,.bootstrap3 .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.bootstrap3 .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.bootstrap3 .table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.bootstrap3 .table-responsive>.table{margin-bottom:0}.bootstrap3 .table-responsive>.table>tbody>tr>td,.bootstrap3 .table-responsive>.table>tbody>tr>th,.bootstrap3 .table-responsive>.table>tfoot>tr>td,.bootstrap3 .table-responsive>.table>tfoot>tr>th,.bootstrap3 .table-responsive>.table>thead>tr>td,.bootstrap3 .table-responsive>.table>thead>tr>th{white-space:nowrap}.bootstrap3 .table-responsive>.table-bordered{border:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>tbody>tr>th:first-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>th:first-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>td:first-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>tbody>tr>th:last-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr>th:last-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>td:last-child,.bootstrap3 .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.bootstrap3 .table-responsive>.table-bordered>tbody>tr:last-child>td,.bootstrap3 .table-responsive>.table-bordered>tbody>tr:last-child>th,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr:last-child>td,.bootstrap3 .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.bootstrap4 .table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.bootstrap4 .table td,.bootstrap4 .table th{padding:.75rem;vertical-align:top;border-top:1px solid #e9ecef}.bootstrap4 .table thead th{vertical-align:bottom;border-bottom:2px solid #e9ecef}.bootstrap4 .table tbody+tbody{border-top:2px solid #e9ecef}.bootstrap4 .table .table{background-color:#fff;color:#000}.bootstrap4 .table-sm td,.bootstrap4 .table-sm th{padding:.3rem}.bootstrap4 .table-bordered,.bootstrap4 .table-bordered td,.bootstrap4 .table-bordered th{border:1px solid #e9ecef}.bootstrap4 .table-bordered thead td,.bootstrap4 .table-bordered thead th{border-bottom-width:2px}.bootstrap4 .table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.bootstrap4 .table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.bootstrap4 .table-primary,.bootstrap4 .table-primary>td,.bootstrap4 .table-primary>th{background-color:#b8daff}.bootstrap4 .table-hover .table-primary:hover,.bootstrap4 .table-hover .table-primary:hover>td,.bootstrap4 .table-hover .table-primary:hover>th{background-color:#9fcdff}.bootstrap4 .table-secondary,.bootstrap4 .table-secondary>td,.bootstrap4 .table-secondary>th{background-color:#dddfe2}.bootstrap4 .table-hover .table-secondary:hover,.bootstrap4 .table-hover .table-secondary:hover>td,.bootstrap4 .table-hover .table-secondary:hover>th{background-color:#cfd2d6}.bootstrap4 .table-success,.bootstrap4 .table-success>td,.bootstrap4 .table-success>th{background-color:#c3e6cb}.bootstrap4 .table-hover .table-success:hover,.bootstrap4 .table-hover .table-success:hover>td,.bootstrap4 .table-hover .table-success:hover>th{background-color:#b1dfbb}.bootstrap4 .table-info,.bootstrap4 .table-info>td,.bootstrap4 .table-info>th{background-color:#bee5eb}.bootstrap4 .table-hover .table-info:hover,.bootstrap4 .table-hover .table-info:hover>td,.bootstrap4 .table-hover .table-info:hover>th{background-color:#abdde5}.bootstrap4 .table-warning,.bootstrap4 .table-warning>td,.bootstrap4 .table-warning>th{background-color:#ffeeba}.bootstrap4 .table-hover .table-warning:hover,.bootstrap4 .table-hover .table-warning:hover>td,.bootstrap4 .table-hover .table-warning:hover>th{background-color:#ffe8a1}.bootstrap4 .table-danger,.bootstrap4 .table-danger>td,.bootstrap4 .table-danger>th{background-color:#f5c6cb}.bootstrap4 .table-hover .table-danger:hover,.bootstrap4 .table-hover .table-danger:hover>td,.bootstrap4 .table-hover .table-danger:hover>th{background-color:#f1b0b7}.bootstrap4 .table-light,.bootstrap4 .table-light>td,.bootstrap4 .table-light>th{background-color:#fdfdfe}.bootstrap4 .table-hover .table-light:hover,.bootstrap4 .table-hover .table-light:hover>td,.bootstrap4 .table-hover .table-light:hover>th{background-color:#ececf6}.bootstrap4 .table-dark,.bootstrap4 .table-dark>td,.bootstrap4 .table-dark>th{background-color:#c6c8ca}.bootstrap4 .table-hover .table-dark:hover,.bootstrap4 .table-hover .table-dark:hover>td,.bootstrap4 .table-hover .table-dark:hover>th{background-color:#b9bbbe}.bootstrap4 .table-active,.bootstrap4 .table-active>td,.bootstrap4 .table-active>th,.bootstrap4 .table-hover .table-active:hover,.bootstrap4 .table-hover .table-active:hover>td,.bootstrap4 .table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.bootstrap4 .thead-inverse th{color:#fff;background-color:#212529}.bootstrap4 .thead-default th{color:#495057;background-color:#e9ecef}.bootstrap4 .table-inverse{color:#fff;background-color:#212529}.bootstrap4 .table-inverse td,.bootstrap4 .table-inverse th,.bootstrap4 .table-inverse thead th{border-color:#32383e}.bootstrap4 .table-inverse.table-bordered{border:0}.bootstrap4 .table-inverse.table-striped tbody tr:nth-of-type(odd){background-color:hsla(0,0%,100%,.05)}.bootstrap4 .table-inverse.table-hover tbody tr:hover{background-color:hsla(0,0%,100%,.075)}@media (max-width:991px){.bootstrap4 .table-responsive{display:block;width:100%;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar}.bootstrap4 .table-responsive.table-bordered{border:0}}.semantic_ui{
2
  /*!
3
  * # Semantic UI 2.2.12 - Table
4
  * http://github.com/semantic-org/semantic-ui/
assets/js/ninja-table-tinymce-button.js CHANGED
@@ -1 +1 @@
1
- !function(n){var t={};function e(i){if(t[i])return t[i].exports;var a=t[i]={i:i,l:!1,exports:{}};return n[i].call(a.exports,a,a.exports,e),a.l=!0,a.exports}e.m=n,e.c=t,e.d=function(n,t,i){e.o(n,t)||Object.defineProperty(n,t,{configurable:!1,enumerable:!0,get:i})},e.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return e.d(t,"a",t),t},e.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},e.p="/",e(e.s=608)}({608:function(n,t,e){n.exports=e(609)},609:function(n,t){tinymce.create("tinymce.plugins.ninja_table",{init:function(n,t){n.addButton("ninja_table",{title:"Add Ninja Tables Shortcode",cmd:"ninja_table_action",image:t.slice(0,t.length-2)+"img/ninja-table-editor-button-2x.png"}),n.addCommand("ninja_table_action",function(){n.windowManager.open({title:window.ninja_tables_tiny_mce.title,body:[{type:"listbox",name:"ninja_table_shortcode",label:window.ninja_tables_tiny_mce.label,values:window.ninja_tables_tiny_mce.tables}],width:768,height:100,onsubmit:function(t){if(!t.data.ninja_table_shortcode)return alert(window.ninja_tables_tiny_mce.select_error),!1;n.insertContent('[ninja_tables id="'+t.data.ninja_table_shortcode+'"]')},buttons:[{text:window.ninja_tables_tiny_mce.insert_text,subtype:"primary",onclick:"submit"}]},{tinymce:tinymce})})}}),tinymce.PluginManager.add("ninja_table",tinymce.plugins.ninja_table)}});
1
+ !function(n){var t={};function e(i){if(t[i])return t[i].exports;var a=t[i]={i:i,l:!1,exports:{}};return n[i].call(a.exports,a,a.exports,e),a.l=!0,a.exports}e.m=n,e.c=t,e.d=function(n,t,i){e.o(n,t)||Object.defineProperty(n,t,{configurable:!1,enumerable:!0,get:i})},e.n=function(n){var t=n&&n.__esModule?function(){return n.default}:function(){return n};return e.d(t,"a",t),t},e.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},e.p="/",e(e.s=611)}({611:function(n,t,e){n.exports=e(612)},612:function(n,t){tinymce.create("tinymce.plugins.ninja_table",{init:function(n,t){n.addButton("ninja_table",{title:"Add Ninja Tables Shortcode",cmd:"ninja_table_action",image:t.slice(0,t.length-2)+"img/ninja-table-editor-button-2x.png"}),n.addCommand("ninja_table_action",function(){n.windowManager.open({title:window.ninja_tables_tiny_mce.title,body:[{type:"listbox",name:"ninja_table_shortcode",label:window.ninja_tables_tiny_mce.label,values:window.ninja_tables_tiny_mce.tables}],width:768,height:100,onsubmit:function(t){if(!t.data.ninja_table_shortcode)return alert(window.ninja_tables_tiny_mce.select_error),!1;n.insertContent('[ninja_tables id="'+t.data.ninja_table_shortcode+'"]')},buttons:[{text:window.ninja_tables_tiny_mce.insert_text,subtype:"primary",onclick:"submit"}]},{tinymce:tinymce})})}}),tinymce.PluginManager.add("ninja_table",tinymce.plugins.ninja_table)}});
assets/js/ninja-tables-admin.3.1.0.js CHANGED
@@ -1 +1 @@
1
- !function(t){var e={};function n(a){if(e[a])return e[a].exports;var i=e[a]={i:a,l:!1,exports:{}};return t[a].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=t,n.c=e,n.d=function(t,e,a){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:a})},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/",n(n.s=216)}([function(t,e){t.exports=function(t,e,n,a,i,o){var s,l=t=t||{},r=typeof t.default;"object"!==r&&"function"!==r||(s=t,l=t.default);var c,u="function"==typeof l?l.options:l;if(e&&(u.render=e.render,u.staticRenderFns=e.staticRenderFns,u._compiled=!0),n&&(u.functional=!0),i&&(u._scopeId=i),o?(c=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),a&&a.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},u._ssrRegister=c):a&&(c=a),c){var d=u.functional,_=d?u.render:u.beforeCreate;d?(u._injectStyles=c,u.render=function(t,e){return c.call(e),_(t,e)}):u.beforeCreate=_?[].concat(_,c):[c]}return{esModule:s,exports:l,options:u}}},function(t,e){t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var n=function(t,e){var n=t[1]||"",a=t[3];if(!a)return n;if(e&&"function"==typeof btoa){var i=(s=a,"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(s))))+" */"),o=a.sources.map(function(t){return"/*# sourceURL="+a.sourceRoot+t+" */"});return[n].concat(o).concat([i]).join("\n")}var s;return[n].join("\n")}(e,t);return e[2]?"@media "+e[2]+"{"+n+"}":n}).join("")},e.i=function(t,n){"string"==typeof t&&(t=[[null,t,""]]);for(var a={},i=0;i<this.length;i++){var o=this[i][0];"number"==typeof o&&(a[o]=!0)}for(i=0;i<t.length;i++){var s=t[i];"number"==typeof s[0]&&a[s[0]]||(n&&!s[2]?s[2]=n:n&&(s[2]="("+s[2]+") and ("+n+")"),e.push(s))}},e}},function(t,e,n){var a="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!a)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var i=n(221),o={},s=a&&(document.head||document.getElementsByTagName("head")[0]),l=null,r=0,c=!1,u=function(){},d=null,_="data-vue-ssr-id",p="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t){for(var e=0;e<t.length;e++){var n=t[e],a=o[n.id];if(a){a.refs++;for(var i=0;i<a.parts.length;i++)a.parts[i](n.parts[i]);for(;i<n.parts.length;i++)a.parts.push(v(n.parts[i]));a.parts.length>n.parts.length&&(a.parts.length=n.parts.length)}else{var s=[];for(i=0;i<n.parts.length;i++)s.push(v(n.parts[i]));o[n.id]={id:n.id,refs:1,parts:s}}}}function m(){var t=document.createElement("style");return t.type="text/css",s.appendChild(t),t}function v(t){var e,n,a=document.querySelector("style["+_+'~="'+t.id+'"]');if(a){if(c)return u;a.parentNode.removeChild(a)}if(p){var i=r++;a=l||(l=m()),e=g.bind(null,a,i,!1),n=g.bind(null,a,i,!0)}else a=m(),e=function(t,e){var n=e.css,a=e.media,i=e.sourceMap;a&&t.setAttribute("media",a);d.ssrId&&t.setAttribute(_,e.id);i&&(n+="\n/*# sourceURL="+i.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+" */");if(t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}.bind(null,a),n=function(){a.parentNode.removeChild(a)};return e(t),function(a){if(a){if(a.css===t.css&&a.media===t.media&&a.sourceMap===t.sourceMap)return;e(t=a)}else n()}}t.exports=function(t,e,n,a){c=n,d=a||{};var s=i(t,e);return f(s),function(e){for(var n=[],a=0;a<s.length;a++){var l=s[a];(r=o[l.id]).refs--,n.push(r)}e?f(s=i(t,e)):s=[];for(a=0;a<n.length;a++){var r;if(0===(r=n[a]).refs){for(var c=0;c<r.parts.length;c++)r.parts[c]();delete o[r.id]}}}};var h,b=(h=[],function(t,e){return h[t]=e,h.filter(Boolean).join("\n")});function g(t,e,n,a){var i=n?"":a.css;if(t.styleSheet)t.styleSheet.cssText=b(e,i);else{var o=document.createTextNode(i),s=t.childNodes;s[e]&&t.removeChild(s[e]),s.length?t.insertBefore(o,s[e]):t.appendChild(o)}}},,function(t,e){var n=Array.isArray;t.exports=n},function(t,e,n){var a=n(38),i="object"==typeof self&&self&&self.Object===Object&&self,o=a||i||Function("return this")();t.exports=o},function(t,e){t.exports=function(t){return null!=t&&"object"==typeof t}},function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},,,function(t,e,n){var a=n(11),i=n(71),o=n(72),s="[object Null]",l="[object Undefined]",r=a?a.toStringTag:void 0;t.exports=function(t){return null==t?void 0===t?l:s:r&&r in Object(t)?i(t):o(t)}},function(t,e,n){var a=n(5).Symbol;t.exports=a},,,function(t,e,n){t.exports=n(70)},function(t,e,n){var a=n(347),i=n(350);t.exports=function(t,e){var n=i(t,e);return a(n)?n:void 0}},,,,,,,function(t,e){t.exports=function(t,e){for(var n=-1,a=null==t?0:t.length,i=Array(a);++n<a;)i[n]=e(t[n],n,t);return i}},function(t,e,n){var a=n(10),i=n(6),o="[object Symbol]";t.exports=function(t){return"symbol"==typeof t||i(t)&&a(t)==o}},function(t,e,n){var a=n(80);t.exports=function(t){return null==t?"":a(t)}},,,function(t,e,n){var a=n(0)(n(270),n(271),!1,function(t){n(268)},"data-v-06fd6e1a",null);t.exports=a.exports},,,,,,,,,function(t,e,n){var a=n(0)(n(253),n(254),!1,function(t){n(251)},null,null);t.exports=a.exports},function(t,e,n){var a=n(283),i=n(119),o=n(39);t.exports=function(t){return o(t)?a(t):i(t)}},function(t,e,n){(function(e){var n="object"==typeof e&&e&&e.Object===Object&&e;t.exports=n}).call(e,n(7))},function(t,e,n){var a=n(120),i=n(73);t.exports=function(t){return null!=t&&i(t.length)&&!a(t)}},function(t,e){t.exports=function(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}},function(t,e){t.exports=function(t){return t}},function(t,e,n){var a=n(15)(Object,"create");t.exports=a},function(t,e,n){var a=n(355),i=n(356),o=n(357),s=n(358),l=n(359);function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var a=t[e];this.set(a[0],a[1])}}r.prototype.clear=a,r.prototype.delete=i,r.prototype.get=o,r.prototype.has=s,r.prototype.set=l,t.exports=r},function(t,e,n){var a=n(127);t.exports=function(t,e){for(var n=t.length;n--;)if(a(t[n][0],e))return n;return-1}},function(t,e,n){var a=n(361);t.exports=function(t,e){var n=t.__data__;return a(e)?n["string"==typeof e?"string":"hash"]:n.map}},function(t,e,n){var a=n(23),i=1/0;t.exports=function(t){if("string"==typeof t||a(t))return t;var e=t+"";return"0"==e&&1/t==-i?"-0":e}},function(t,e){t.exports=function(t){return function(e){return null==t?void 0:t[e]}}},function(t,e,n){var a=n(0)(n(485),n(502),!1,function(t){n(483)},null,null);t.exports=a.exports},,,,,,,,,,,,,,,,,,,,,,function(t,e,n){var a=n(278),i=n(279),o=n(293),s=n(4);t.exports=function(t,e){return(s(t)?a:i)(t,o(e))}},function(t,e,n){var a=n(11),i=Object.prototype,o=i.hasOwnProperty,s=i.toString,l=a?a.toStringTag:void 0;t.exports=function(t){var e=o.call(t,l),n=t[l];try{t[l]=void 0;var a=!0}catch(t){}var i=s.call(t);return a&&(e?t[l]=n:delete t[l]),i}},function(t,e){var n=Object.prototype.toString;t.exports=function(t){return n.call(t)}},function(t,e){var n=9007199254740991;t.exports=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=n}},function(t,e,n){"use strict";n.d(e,"a",function(){return a});var a=function(){return{footable:{title:"Footable",description:"A responsive table plugin built on jQuery",supports:{ajax:!1,sorting:!0,search:!0},css_libs:{semantic_ui:{title:"Semantic UI",description:"Apply Semantic UI styles in the table",styles:[{key:"single line",title:"Single Line Cells",description:"A table can specify that its cell contents should remain on a single line, and not wrap."},{key:"fixed",title:"Fixed Layout",description:"A special faster form of table rendering that does not resize table cells based on content."},{key:"selectable",title:"Hover rows",description:"Enable a hover state on table rows"},{key:"celled",title:"Bordered table",description:"Borders on all sides of the table and cells"},{key:"hide_horizonal_borders",title:"Hide Horizontal Borders",description:"This will hide horizontal borders of table body rows"},{key:"hide_vertical_borders",title:"Hide Vertical Borders",description:"This will hide Vertical borders of table body rows"},{key:"striped",title:"Striped rows",description:"Add zebra-striping to any table row"},{key:"compact",title:"Compact Table",description:"Make tables more compact by cutting cell padding in half"},{key:"vertical_centered",title:"Vertically centered table cell contents",description:"Make cell contents vertically centered"}]},bootstrap4:{title:"Bootstrap 4",description:"Apply Twitter Bootstrap 4 styles in the table",styles:[{key:"table-striped",title:"Striped rows",description:"Add zebra-striping to any table row"},{key:"table-bordered",title:"Bordered table",description:"Borders on all sides of the table and cells"},{key:"hide_horizonal_borders",title:"Hide Horizontal Borders",description:"This will hide horizontal borders of table body rows"},{key:"hide_vertical_borders",title:"Hide Vertical Borders",description:"This will hide Vertical borders of table body rows"},{key:"table-hover",title:"Hover rows",description:"Enable a hover state on table rows"},{key:"table-sm",title:"Small table",description:"Make tables more compact by cutting cell padding in half"},{key:"vertical_centered",title:"Vertically centered table cell contents",description:"Make cell contents vertically centered"}]},bootstrap3:{title:"Bootstrap 3",description:"Apply Twitter Bootstrap 3 styles in the table",styles:[{key:"table-striped",title:"Striped rows",description:"Add zebra-striping to any table row"},{key:"table-bordered",title:"Bordered table",description:"Borders on all sides of the table and cells"},{key:"hide_horizonal_borders",title:"Hide Horizontal Borders",description:"This will hide horizontal borders of table body rows"},{key:"hide_vertical_borders",title:"Hide Vertical Borders",description:"This will hide Vertical borders of table body rows"},{key:"table-hover",title:"Hover rows",description:"Enable a hover state on table rows"},{key:"table-condensed",title:"Condensed table",description:"Make tables more compact by cutting cell padding in half"},{key:"vertical_centered",title:"Vertically centered table cell contents",description:"Make cell contents vertically centered"}]}},colors:{ninja_no_color_table:"Default",red:"Red",orange:"Orange",yellow:"Yellow",olive:"Olive",green:"Green",teal:"Teal",blue:"Blue",violet:"Violet",purple:"Purple",pink:"Pink",grey:"Grey",black:"Black"}}}}},function(t,e,n){var a=n(344),i=n(360),o=n(362),s=n(363),l=n(364);function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var a=t[e];this.set(a[0],a[1])}}r.prototype.clear=a,r.prototype.delete=i,r.prototype.get=o,r.prototype.has=s,r.prototype.set=l,t.exports=r},function(t,e,n){var a=n(15)(n(5),"Map");t.exports=a},function(t,e,n){var a=n(119),i=n(130),o=n(39),s=n(402),l=n(403),r="[object Map]",c="[object Set]";t.exports=function(t){if(null==t)return 0;if(o(t))return s(t)?l(t):t.length;var e=i(t);return e==r||e==c?t.size:a(t).length}},function(t,e,n){var a=n(139);t.exports=function(t,e,n){var i=null==t?void 0:a(t,e);return void 0===i?n:i}},function(t,e,n){var a=n(4),i=n(23),o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,s=/^\w*$/;t.exports=function(t,e){if(a(t))return!1;var n=typeof t;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=t&&!i(t))||s.test(t)||!o.test(t)||null!=e&&t in Object(e)}},function(t,e,n){var a=n(11),i=n(22),o=n(4),s=n(23),l=1/0,r=a?a.prototype:void 0,c=r?r.toString:void 0;t.exports=function t(e){if("string"==typeof e)return e;if(o(e))return i(e,t)+"";if(s(e))return c?c.call(e):"";var n=e+"";return"0"==n&&1/e==-l?"-0":n}},function(t,e,n){var a=n(0)(n(490),n(491),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";var a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};n(83).polyfill(),e.a=function t(e,n,i,o){var s,l=t,r="";function c(t,e){return t=t[(e=e.pop?e:e.split(".")).shift()]||"",0 in e?c(t,e):t}n=Array.isArray(n)?n:n?[n]:[],n=o?0 in n?[]:[1]:n;for(s=0;s<n.length;s++){var u,d="",_=0,p="object"==a(n[s])?n[s]:{};(p=Object.assign({},i,p))[""]={"":n[s]},e.replace(/([\s\S]*?)({{((\/)|(\^)|#)(.*?)}}|$)/g,function(t,e,n,i,o,s,f){_?d+=_&&!o||_>1?t:e:(r+=e.replace(/{{{(.*?)}}}|{{(!?)(&?)(>?)(.*?)}}/g,function(t,e,n,a,i,o){return e?c(p,e):a?c(p,o):i?l(c(p,o),p):n?"":new Option(c(p,o)).innerHTML}),u=s),o?--_||(f=c(p,f),/^f/.test(void 0===f?"undefined":a(f))?r+=f.call(p,d,function(t){return l(t,p)}):r+=l(d,f,p,u),d=""):++_})}return r}},function(t,e,n){"use strict";function a(t,e){if(void 0===t||null===t)throw new TypeError("Cannot convert first argument to object");for(var n=Object(t),a=1;a<arguments.length;a++){var i=arguments[a];if(void 0!==i&&null!==i)for(var o=Object.keys(Object(i)),s=0,l=o.length;s<l;s++){var r=o[s],c=Object.getOwnPropertyDescriptor(i,r);void 0!==c&&c.enumerable&&(n[r]=i[r])}}return n}t.exports={assign:a,polyfill:function(){Object.assign||Object.defineProperty(Object,"assign",{enumerable:!1,configurable:!0,writable:!0,value:a})}}},function(t,e,n){var a=n(24),i=n(85),o=/&(?:amp|lt|gt|quot|#39);/g,s=RegExp(o.source);t.exports=function(t){return(t=a(t))&&s.test(t)?t.replace(o,i):t}},function(t,e,n){var a=n(47)({"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"});t.exports=a},function(t,e,n){"use strict";var a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},i=function(){function t(t,e){for(var n=0;n<e.length;n++){var a=e[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}return function(e,n,a){return n&&t(e.prototype,n),a&&t(e,a),e}}();var o=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),"object"==("undefined"==typeof formulaParser?"undefined":a(formulaParser))?this._addFunctionNUMVAL(this.instance=new formulaParser.Parser):this.instance=!1}return i(t,[{key:"parse",value:function(t){var e=this;if(!t||!this.instance)return t;var n=this.advancedParsablesShortcodes(t);if(n&&n.forEach(function(n){var a=n.replace("[f]","").replace("[/f]","");if(a){var i=e.instance.parse(a),o=i.result?i.result:"";t=t.replace(n,o)}}),this.isParsable(t)){var a=t.substr(1);if(a){var i=this.instance.parse(a);t=i.result?i.result:""}}return t}},{key:"isParsable",value:function(t){return"string"==typeof t&&0===t.indexOf("=")}},{key:"advancedParsablesShortcodes",value:function(t){if(-1==t.indexOf("[f]",t))return!1;var e=t.match(/\[f][\s\S]*?\[\/f]/g);return e||!1}},{key:"getSupportedFormulas",value:function(){return formulaParser.SUPPORTED_FORMULAS}},{key:"getInstance",value:function(){return this.instance}},{key:"_addFunctionNUMVAL",value:function(t){t.setFunction("NUMVAL",function(t){var e=t[0]||"";if(!e)return e;e=e.toString().replace(/[^\d\.,]+/g,"");var n=t[1]||",";e=e.indexOf(n)>-1?e.split(n).join(""):e.split(",").join("");var a=t[2]||".";e.indexOf(a)>-1&&(e=e.split(a).join("."));var i=Number(e);return isNaN(i)?e:i})}}]),t}();e.a=new o},function(t,e,n){"use strict";var a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};function i(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}!function(){function e(t){function e(t){t.parentElement.removeChild(t)}function n(t,e,n){var a=0===n?t.children[0]:t.children[n-1].nextSibling;t.insertBefore(e,a)}function o(t,e){var n=this;this.$nextTick(function(){return n.$emit(t.toLowerCase(),e)})}var s=["Start","Add","Remove","Update","End"],l=["Choose","Sort","Filter","Clone"],r=["Move"].concat(s,l).map(function(t){return"on"+t}),c=null;return{name:"draggable",props:{options:Object,list:{type:Array,required:!1,default:null},value:{type:Array,required:!1,default:null},noTransitionOnDrag:{type:Boolean,default:!1},clone:{type:Function,default:function(t){return t}},element:{type:String,default:"div"},move:{type:Function,default:null},componentData:{type:Object,required:!1,default:null}},data:function(){return{transitionMode:!1,noneFunctionalComponentMode:!1,init:!1}},render:function(t){var e=this.$slots.default;if(e&&1===e.length){var n=e[0];n.componentOptions&&"transition-group"===n.componentOptions.tag&&(this.transitionMode=!0)}var a=e,o=this.$slots.footer;o&&(a=e?[].concat(i(e),i(o)):[].concat(i(o)));var s=null,l=function(t,e){s=function(t,e,n){return void 0==n?t:((t=null==t?{}:t)[e]=n,t)}(s,t,e)};if(l("attrs",this.$attrs),this.componentData){var r=this.componentData,c=r.on,u=r.props;l("on",c),l("props",u)}return t(this.element,s,a)},mounted:function(){var e=this;if(this.noneFunctionalComponentMode=this.element.toLowerCase()!==this.$el.nodeName.toLowerCase(),this.noneFunctionalComponentMode&&this.transitionMode)throw new Error("Transition-group inside component is not supported. Please alter element value or remove transition-group. Current element value: "+this.element);var n={};s.forEach(function(t){n["on"+t]=function(t){var e=this;return function(n){null!==e.realList&&e["onDrag"+t](n),o.call(e,t,n)}}.call(e,t)}),l.forEach(function(t){n["on"+t]=o.bind(e,t)});var i=a({},this.options,n,{onMove:function(t,n){return e.onDragMove(t,n)}});!("draggable"in i)&&(i.draggable=">*"),this._sortable=new t(this.rootContainer,i),this.computeIndexes()},beforeDestroy:function(){this._sortable.destroy()},computed:{rootContainer:function(){return this.transitionMode?this.$el.children[0]:this.$el},isCloning:function(){return!!this.options&&!!this.options.group&&"clone"===this.options.group.pull},realList:function(){return this.list?this.list:this.value}},watch:{options:{handler:function(t){for(var e in t)-1==r.indexOf(e)&&this._sortable.option(e,t[e])},deep:!0},realList:function(){this.computeIndexes()}},methods:{getChildrenNodes:function(){if(this.init||(this.noneFunctionalComponentMode=this.noneFunctionalComponentMode&&1==this.$children.length,this.init=!0),this.noneFunctionalComponentMode)return this.$children[0].$slots.default;var t=this.$slots.default;return this.transitionMode?t[0].child.$slots.default:t},computeIndexes:function(){var t=this;this.$nextTick(function(){t.visibleIndexes=function(t,e,n){if(!t)return[];var a=t.map(function(t){return t.elm}),o=[].concat(i(e)).map(function(t){return a.indexOf(t)});return n?o.filter(function(t){return-1!==t}):o}(t.getChildrenNodes(),t.rootContainer.children,t.transitionMode)})},getUnderlyingVm:function(t){var e=function(t,e){return t.map(function(t){return t.elm}).indexOf(e)}(this.getChildrenNodes()||[],t);return-1===e?null:{index:e,element:this.realList[e]}},getUnderlyingPotencialDraggableComponent:function(t){var e=t.__vue__;return e&&e.$options&&"transition-group"===e.$options._componentTag?e.$parent:e},emitChanges:function(t){var e=this;this.$nextTick(function(){e.$emit("change",t)})},alterList:function(t){if(this.list)t(this.list);else{var e=[].concat(i(this.value));t(e),this.$emit("input",e)}},spliceList:function(){var t=arguments,e=function(e){return e.splice.apply(e,t)};this.alterList(e)},updatePosition:function(t,e){var n=function(n){return n.splice(e,0,n.splice(t,1)[0])};this.alterList(n)},getRelatedContextFromMoveEvent:function(t){var e=t.to,n=t.related,i=this.getUnderlyingPotencialDraggableComponent(e);if(!i)return{component:i};var o=i.realList,s={list:o,component:i};if(e!==n&&o&&i.getUnderlyingVm){var l=i.getUnderlyingVm(n);if(l)return a(l,s)}return s},getVmIndex:function(t){var e=this.visibleIndexes,n=e.length;return t>n-1?n:e[t]},getComponent:function(){return this.$slots.default[0].componentInstance},resetTransitionData:function(t){if(this.noTransitionOnDrag&&this.transitionMode){this.getChildrenNodes()[t].data=null;var e=this.getComponent();e.children=[],e.kept=void 0}},onDragStart:function(t){this.context=this.getUnderlyingVm(t.item),t.item._underlying_vm_=this.clone(this.context.element),c=t.item},onDragAdd:function(t){var n=t.item._underlying_vm_;if(void 0!==n){e(t.item);var a=this.getVmIndex(t.newIndex);this.spliceList(a,0,n),this.computeIndexes();var i={element:n,newIndex:a};this.emitChanges({added:i})}},onDragRemove:function(t){if(n(this.rootContainer,t.item,t.oldIndex),this.isCloning)e(t.clone);else{var a=this.context.index;this.spliceList(a,1);var i={element:this.context.element,oldIndex:a};this.resetTransitionData(a),this.emitChanges({removed:i})}},onDragUpdate:function(t){e(t.item),n(t.from,t.item,t.oldIndex);var a=this.context.index,i=this.getVmIndex(t.newIndex);this.updatePosition(a,i);var o={element:this.context.element,oldIndex:a,newIndex:i};this.emitChanges({moved:o})},computeFutureIndex:function(t,e){if(!t.element)return 0;var n=[].concat(i(e.to.children)).filter(function(t){return"none"!==t.style.display}),a=n.indexOf(e.related),o=t.component.getVmIndex(a);return-1!=n.indexOf(c)||!e.willInsertAfter?o:o+1},onDragMove:function(t,e){var n=this.move;if(!n||!this.realList)return!0;var i=this.getRelatedContextFromMoveEvent(t),o=this.context,s=this.computeFutureIndex(i,t);return a(o,{futureIndex:s}),a(t,{relatedContext:i,draggedContext:o}),n(t,e)},onDragEnd:function(t){this.computeIndexes(),c=null}}}}Array.from||(Array.from=function(t){return[].slice.call(t)});var o=n(132);t.exports=e(o)}()},,,,,,,,,,,,,,,,,,,,,function(t,e,n){var a,i,o,s;s=function(t,e,n,a){"use strict";var i=l(e),o=l(n),s=l(a);function l(t){return t&&t.__esModule?t:{default:t}}var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};var c=function(){function t(t,e){for(var n=0;n<e.length;n++){var a=e[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}return function(e,n,a){return n&&t(e.prototype,n),a&&t(e,a),e}}();var u=function(t){function e(t,n){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);var a=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return a.resolveOptions(n),a.listenClick(t),a}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,o.default),c(e,[{key:"resolveOptions",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText,this.container="object"===r(t.container)?t.container:document.body}},{key:"listenClick",value:function(t){var e=this;this.listener=(0,s.default)(t,"click",function(t){return e.onClick(t)})}},{key:"onClick",value:function(t){var e=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new i.default({action:this.action(e),target:this.target(e),text:this.text(e),container:this.container,trigger:e,emitter:this})}},{key:"defaultAction",value:function(t){return d("action",t)}},{key:"defaultTarget",value:function(t){var e=d("target",t);if(e)return document.querySelector(e)}},{key:"defaultText",value:function(t){return d("text",t)}},{key:"destroy",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],e="string"==typeof t?[t]:t,n=!!document.queryCommandSupported;return e.forEach(function(t){n=n&&!!document.queryCommandSupported(t)}),n}}]),e}();function d(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}t.exports=u},i=[t,n(237),n(239),n(240)],void 0===(o="function"==typeof(a=s)?a.apply(e,i):a)||(t.exports=o)},function(t,e,n){var a=n(0)(n(244),n(245),!1,null,null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(257),n(274),!1,function(t){n(255)},null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(272),n(273),!1,null,null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(277),n(294),!1,null,null,null);t.exports=a.exports},function(t,e,n){var a=n(285),i=n(6),o=Object.prototype,s=o.hasOwnProperty,l=o.propertyIsEnumerable,r=a(function(){return arguments}())?a:function(t){return i(t)&&s.call(t,"callee")&&!l.call(t,"callee")};t.exports=r},function(t,e,n){(function(t){var a=n(5),i=n(286),o="object"==typeof e&&e&&!e.nodeType&&e,s=o&&"object"==typeof t&&t&&!t.nodeType&&t,l=s&&s.exports===o?a.Buffer:void 0,r=(l?l.isBuffer:void 0)||i;t.exports=r}).call(e,n(115)(t))},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},function(t,e){var n=9007199254740991,a=/^(?:0|[1-9]\d*)$/;t.exports=function(t,e){var i=typeof t;return!!(e=null==e?n:e)&&("number"==i||"symbol"!=i&&a.test(t))&&t>-1&&t%1==0&&t<e}},function(t,e,n){var a=n(287),i=n(118),o=n(288),s=o&&o.isTypedArray,l=s?i(s):a;t.exports=l},function(t,e){t.exports=function(t){return function(e){return t(e)}}},function(t,e,n){var a=n(289),i=n(290),o=Object.prototype.hasOwnProperty;t.exports=function(t){if(!a(t))return i(t);var e=[];for(var n in Object(t))o.call(t,n)&&"constructor"!=n&&e.push(n);return e}},function(t,e,n){var a=n(10),i=n(40),o="[object AsyncFunction]",s="[object Function]",l="[object GeneratorFunction]",r="[object Proxy]";t.exports=function(t){if(!i(t))return!1;var e=a(t);return e==s||e==l||e==o||e==r}},function(t,e,n){var a=n(0)(n(298),n(299),!1,function(t){n(296)},null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(300),n(301),!1,null,null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(313),n(314),!1,function(t){n(311)},"data-v-ad6aab96",null);t.exports=a.exports},function(t,e,n){var a=n(22),i=n(343),o=n(372),s=n(380),l=o(function(t){var e=a(t,s);return e.length&&e[0]===t[0]?i(e):[]});t.exports=l},function(t,e,n){var a=n(75),i=n(365),o=n(366);function s(t){var e=-1,n=null==t?0:t.length;for(this.__data__=new a;++e<n;)this.add(t[e])}s.prototype.add=s.prototype.push=i,s.prototype.has=o,t.exports=s},function(t,e){var n=Function.prototype.toString;t.exports=function(t){if(null!=t){try{return n.call(t)}catch(t){}try{return t+""}catch(t){}}return""}},function(t,e){t.exports=function(t,e){return t===e||t!=t&&e!=e}},function(t,e){t.exports=function(t,e,n,a){for(var i=t.length,o=n+(a?1:-1);a?o--:++o<i;)if(e(t[o],o,t))return o;return-1}},function(t,e){t.exports=function(t,e){return t.has(e)}},function(t,e,n){var a=n(398),i=n(76),o=n(399),s=n(400),l=n(401),r=n(10),c=n(126),u=c(a),d=c(i),_=c(o),p=c(s),f=c(l),m=r;(a&&"[object DataView]"!=m(new a(new ArrayBuffer(1)))||i&&"[object Map]"!=m(new i)||o&&"[object Promise]"!=m(o.resolve())||s&&"[object Set]"!=m(new s)||l&&"[object WeakMap]"!=m(new l))&&(m=function(t){var e=r(t),n="[object Object]"==e?t.constructor:void 0,a=n?c(n):"";if(a)switch(a){case u:return"[object DataView]";case d:return"[object Map]";case _:return"[object Promise]";case p:return"[object Set]";case f:return"[object WeakMap]"}return e}),t.exports=m},function(t,e){t.exports=function(t){return function(e){return null==e?void 0:e[t]}}},function(t,e,n){var a,i;!function(o){"use strict";void 0===(i="function"==typeof(a=o)?a.call(e,n,e,t):a)||(t.exports=i)}(function(){"use strict";if("undefined"==typeof window||!window.document)return function(){throw new Error("Sortable.js requires a window with a document")};var t,e,n,a,i,o,s,l,r,c,u,d,_,p,f,m,v,h,b,g,y,w={},x=/\s+/g,k=/left|right|inline/,C="Sortable"+(new Date).getTime(),S=window,j=S.document,$=S.parseInt,T=S.setTimeout,P=S.jQuery||S.Zepto,E=S.Polymer,A=!1,N="draggable"in j.createElement("div"),O=!navigator.userAgent.match(/(?:Trident.*rv[ :]?11\.|msie)/i)&&((y=j.createElement("x")).style.cssText="pointer-events:auto","auto"===y.style.pointerEvents),D=!1,F=Math.abs,I=Math.min,M=[],L=[],z=at(function(t,e,n){if(n&&e.scroll){var a,i,o,s,u,d,_=n[C],p=e.scrollSensitivity,f=e.scrollSpeed,m=t.clientX,v=t.clientY,h=window.innerWidth,b=window.innerHeight;if(r!==n&&(l=e.scroll,r=n,c=e.scrollFn,!0===l)){l=n;do{if(l.offsetWidth<l.scrollWidth||l.offsetHeight<l.scrollHeight)break}while(l=l.parentNode)}l&&(a=l,i=l.getBoundingClientRect(),o=(F(i.right-m)<=p)-(F(i.left-m)<=p),s=(F(i.bottom-v)<=p)-(F(i.top-v)<=p)),o||s||(s=(b-v<=p)-(v<=p),((o=(h-m<=p)-(m<=p))||s)&&(a=S)),w.vx===o&&w.vy===s&&w.el===a||(w.el=a,w.vx=o,w.vy=s,clearInterval(w.pid),a&&(w.pid=setInterval(function(){if(d=s?s*f:0,u=o?o*f:0,"function"==typeof c)return c.call(_,u,d,t);a===S?S.scrollTo(S.pageXOffset+u,S.pageYOffset+d):(a.scrollTop+=d,a.scrollLeft+=u)},24)))}},30),B=function(t){function e(t,e){return void 0!==t&&!0!==t||(t=n.name),"function"==typeof t?t:function(n,a){var i=a.options.group.name;return e?t:t&&(t.join?t.indexOf(i)>-1:i==t)}}var n={},a=t.group;a&&"object"==typeof a||(a={name:a}),n.name=a.name,n.checkPull=e(a.pull,!0),n.checkPut=e(a.put),n.revertClone=a.revertClone,t.group=n};try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:function(){A={capture:!1,passive:!1}}}))}catch(t){}function R(t,e){if(!t||!t.nodeType||1!==t.nodeType)throw"Sortable: `el` must be HTMLElement, and not "+{}.toString.call(t);this.el=t,this.options=e=it({},e),t[C]=this;var n={group:Math.random(),sort:!0,disabled:!1,store:null,handle:null,scroll:!0,scrollSensitivity:30,scrollSpeed:10,draggable:/[uo]l/i.test(t.nodeName)?"li":">*",ghostClass:"sortable-ghost",chosenClass:"sortable-chosen",dragClass:"sortable-drag",ignore:"a, img",filter:null,preventOnFilter:!0,animation:0,setData:function(t,e){t.setData("Text",e.textContent)},dropBubble:!1,dragoverBubble:!1,dataIdAttr:"data-id",delay:0,forceFallback:!1,fallbackClass:"sortable-fallback",fallbackOnBody:!1,fallbackTolerance:0,fallbackOffset:{x:0,y:0},supportPointer:!1!==R.supportPointer};for(var a in n)!(a in e)&&(e[a]=n[a]);for(var i in B(e),this)"_"===i.charAt(0)&&"function"==typeof this[i]&&(this[i]=this[i].bind(this));this.nativeDraggable=!e.forceFallback&&N,H(t,"mousedown",this._onTapStart),H(t,"touchstart",this._onTapStart),e.supportPointer&&H(t,"pointerdown",this._onTapStart),this.nativeDraggable&&(H(t,"dragover",this),H(t,"dragenter",this)),L.push(this._onDragOver),e.store&&this.sort(e.store.get(this))}function q(e,n){"clone"!==e.lastPullMode&&(n=!0),a&&a.state!==n&&(W(a,"display",n?"none":""),n||a.state&&(e.options.group.revertClone?(i.insertBefore(a,o),e._animate(t,a)):i.insertBefore(a,t)),a.state=n)}function U(t,e,n){if(t){n=n||j;do{if(">*"===e&&t.parentNode===n||nt(t,e))return t}while(t=V(t))}return null}function V(t){var e=t.host;return e&&e.nodeType?e:t.parentNode}function H(t,e,n){t.addEventListener(e,n,A)}function Q(t,e,n){t.removeEventListener(e,n,A)}function Y(t,e,n){if(t)if(t.classList)t.classList[n?"add":"remove"](e);else{var a=(" "+t.className+" ").replace(x," ").replace(" "+e+" "," ");t.className=(a+(n?" "+e:"")).replace(x," ")}}function W(t,e,n){var a=t&&t.style;if(a){if(void 0===n)return j.defaultView&&j.defaultView.getComputedStyle?n=j.defaultView.getComputedStyle(t,""):t.currentStyle&&(n=t.currentStyle),void 0===e?n:n[e];e in a||(e="-webkit-"+e),a[e]=n+("string"==typeof n?"":"px")}}function J(t,e,n){if(t){var a=t.getElementsByTagName(e),i=0,o=a.length;if(n)for(;i<o;i++)n(a[i],i);return a}return[]}function G(t,e,n,i,o,s,l,r){t=t||e[C];var c=j.createEvent("Event"),u=t.options,d="on"+n.charAt(0).toUpperCase()+n.substr(1);c.initEvent(n,!0,!0),c.to=o||e,c.from=s||e,c.item=i||e,c.clone=a,c.oldIndex=l,c.newIndex=r,e.dispatchEvent(c),u[d]&&u[d].call(t,c)}function K(t,e,n,a,i,o,s,l){var r,c,u=t[C],d=u.options.onMove;return(r=j.createEvent("Event")).initEvent("move",!0,!0),r.to=e,r.from=t,r.dragged=n,r.draggedRect=a,r.related=i||e,r.relatedRect=o||e.getBoundingClientRect(),r.willInsertAfter=l,t.dispatchEvent(r),d&&(c=d.call(u,r,s)),c}function X(t){t.draggable=!1}function Z(){D=!1}function tt(t){for(var e=t.tagName+t.className+t.src+t.href+t.textContent,n=e.length,a=0;n--;)a+=e.charCodeAt(n);return a.toString(36)}function et(t,e){var n=0;if(!t||!t.parentNode)return-1;for(;t&&(t=t.previousElementSibling);)"TEMPLATE"===t.nodeName.toUpperCase()||">*"!==e&&!nt(t,e)||n++;return n}function nt(t,e){if(t){var n=(e=e.split(".")).shift().toUpperCase(),a=new RegExp("\\s("+e.join("|")+")(?=\\s)","g");return!(""!==n&&t.nodeName.toUpperCase()!=n||e.length&&((" "+t.className+" ").match(a)||[]).length!=e.length)}return!1}function at(t,e){var n,a;return function(){void 0===n&&(n=arguments,a=this,T(function(){1===n.length?t.call(a,n[0]):t.apply(a,n),n=void 0},e))}}function it(t,e){if(t&&e)for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}function ot(t){return E&&E.dom?E.dom(t).cloneNode(!0):P?P(t).clone(!0)[0]:t.cloneNode(!0)}function st(t){return T(t,0)}function lt(t){return clearTimeout(t)}return R.prototype={constructor:R,_onTapStart:function(e){var n,a=this,i=this.el,o=this.options,l=o.preventOnFilter,r=e.type,c=e.touches&&e.touches[0],u=(c||e).target,d=e.target.shadowRoot&&e.path&&e.path[0]||u,_=o.filter;if(function(t){var e=t.getElementsByTagName("input"),n=e.length;for(;n--;){var a=e[n];a.checked&&M.push(a)}}(i),!t&&!(/mousedown|pointerdown/.test(r)&&0!==e.button||o.disabled)&&!d.isContentEditable&&(u=U(u,o.draggable,i))&&s!==u){if(n=et(u,o.draggable),"function"==typeof _){if(_.call(this,e,u,this))return G(a,d,"filter",u,i,i,n),void(l&&e.preventDefault())}else if(_&&(_=_.split(",").some(function(t){if(t=U(d,t.trim(),i))return G(a,t,"filter",u,i,i,n),!0})))return void(l&&e.preventDefault());o.handle&&!U(d,o.handle,i)||this._prepareDragStart(e,c,u,n)}},_prepareDragStart:function(n,a,l,r){var c,u=this,d=u.el,_=u.options,f=d.ownerDocument;l&&!t&&l.parentNode===d&&(h=n,i=d,e=(t=l).parentNode,o=t.nextSibling,s=l,m=_.group,p=r,this._lastX=(a||n).clientX,this._lastY=(a||n).clientY,t.style["will-change"]="all",c=function(){u._disableDelayedDrag(),t.draggable=u.nativeDraggable,Y(t,_.chosenClass,!0),u._triggerDragStart(n,a),G(u,i,"choose",t,i,i,p)},_.ignore.split(",").forEach(function(e){J(t,e.trim(),X)}),H(f,"mouseup",u._onDrop),H(f,"touchend",u._onDrop),H(f,"touchcancel",u._onDrop),H(f,"selectstart",u),_.supportPointer&&H(f,"pointercancel",u._onDrop),_.delay?(H(f,"mouseup",u._disableDelayedDrag),H(f,"touchend",u._disableDelayedDrag),H(f,"touchcancel",u._disableDelayedDrag),H(f,"mousemove",u._disableDelayedDrag),H(f,"touchmove",u._disableDelayedDrag),_.supportPointer&&H(f,"pointermove",u._disableDelayedDrag),u._dragStartTimer=T(c,_.delay)):c())},_disableDelayedDrag:function(){var t=this.el.ownerDocument;clearTimeout(this._dragStartTimer),Q(t,"mouseup",this._disableDelayedDrag),Q(t,"touchend",this._disableDelayedDrag),Q(t,"touchcancel",this._disableDelayedDrag),Q(t,"mousemove",this._disableDelayedDrag),Q(t,"touchmove",this._disableDelayedDrag),Q(t,"pointermove",this._disableDelayedDrag)},_triggerDragStart:function(e,n){(n=n||("touch"==e.pointerType?e:null))?(h={target:t,clientX:n.clientX,clientY:n.clientY},this._onDragStart(h,"touch")):this.nativeDraggable?(H(t,"dragend",this),H(i,"dragstart",this._onDragStart)):this._onDragStart(h,!0);try{j.selection?st(function(){j.selection.empty()}):window.getSelection().removeAllRanges()}catch(t){}},_dragStarted:function(){if(i&&t){var e=this.options;Y(t,e.ghostClass,!0),Y(t,e.dragClass,!1),R.active=this,G(this,i,"start",t,i,i,p)}else this._nulling()},_emulateDragOver:function(){if(b){if(this._lastX===b.clientX&&this._lastY===b.clientY)return;this._lastX=b.clientX,this._lastY=b.clientY,O||W(n,"display","none");var t=j.elementFromPoint(b.clientX,b.clientY),e=t,a=L.length;if(t&&t.shadowRoot&&(e=t=t.shadowRoot.elementFromPoint(b.clientX,b.clientY)),e)do{if(e[C]){for(;a--;)L[a]({clientX:b.clientX,clientY:b.clientY,target:t,rootEl:e});break}t=e}while(e=e.parentNode);O||W(n,"display","")}},_onTouchMove:function(t){if(h){var e=this.options,a=e.fallbackTolerance,i=e.fallbackOffset,o=t.touches?t.touches[0]:t,s=o.clientX-h.clientX+i.x,l=o.clientY-h.clientY+i.y,r=t.touches?"translate3d("+s+"px,"+l+"px,0)":"translate("+s+"px,"+l+"px)";if(!R.active){if(a&&I(F(o.clientX-this._lastX),F(o.clientY-this._lastY))<a)return;this._dragStarted()}this._appendGhost(),g=!0,b=o,W(n,"webkitTransform",r),W(n,"mozTransform",r),W(n,"msTransform",r),W(n,"transform",r),t.preventDefault()}},_appendGhost:function(){if(!n){var e,a=t.getBoundingClientRect(),o=W(t),s=this.options;Y(n=t.cloneNode(!0),s.ghostClass,!1),Y(n,s.fallbackClass,!0),Y(n,s.dragClass,!0),W(n,"top",a.top-$(o.marginTop,10)),W(n,"left",a.left-$(o.marginLeft,10)),W(n,"width",a.width),W(n,"height",a.height),W(n,"opacity","0.8"),W(n,"position","fixed"),W(n,"zIndex","100000"),W(n,"pointerEvents","none"),s.fallbackOnBody&&j.body.appendChild(n)||i.appendChild(n),e=n.getBoundingClientRect(),W(n,"width",2*a.width-e.width),W(n,"height",2*a.height-e.height)}},_onDragStart:function(e,n){var o=this,s=e.dataTransfer,l=o.options;o._offUpEvents(),m.checkPull(o,o,t,e)&&((a=ot(t)).draggable=!1,a.style["will-change"]="",W(a,"display","none"),Y(a,o.options.chosenClass,!1),o._cloneId=st(function(){i.insertBefore(a,t),G(o,i,"clone",t)})),Y(t,l.dragClass,!0),n?("touch"===n?(H(j,"touchmove",o._onTouchMove),H(j,"touchend",o._onDrop),H(j,"touchcancel",o._onDrop),l.supportPointer&&(H(j,"pointermove",o._onTouchMove),H(j,"pointerup",o._onDrop))):(H(j,"mousemove",o._onTouchMove),H(j,"mouseup",o._onDrop)),o._loopId=setInterval(o._emulateDragOver,50)):(s&&(s.effectAllowed="move",l.setData&&l.setData.call(o,s,t)),H(j,"drop",o),o._dragStartId=st(o._dragStarted))},_onDragOver:function(s){var l,r,c,p,f=this.el,h=this.options,b=h.group,y=R.active,w=m===b,x=!1,S=h.sort;if(void 0!==s.preventDefault&&(s.preventDefault(),!h.dragoverBubble&&s.stopPropagation()),!t.animated&&(g=!0,y&&!h.disabled&&(w?S||(p=!i.contains(t)):v===this||(y.lastPullMode=m.checkPull(this,y,t,s))&&b.checkPut(this,y,t,s))&&(void 0===s.rootEl||s.rootEl===this.el))){if(z(s,h,this.el),D)return;if(l=U(s.target,h.draggable,f),r=t.getBoundingClientRect(),v!==this&&(v=this,x=!0),p)return q(y,!0),e=i,void(a||o?i.insertBefore(t,a||o):S||i.appendChild(t));if(0===f.children.length||f.children[0]===n||f===s.target&&function(t,e){var n=t.lastElementChild.getBoundingClientRect();return e.clientY-(n.top+n.height)>5||e.clientX-(n.left+n.width)>5}(f,s)){if(0!==f.children.length&&f.children[0]!==n&&f===s.target&&(l=f.lastElementChild),l){if(l.animated)return;c=l.getBoundingClientRect()}q(y,w),!1!==K(i,f,t,r,l,c,s)&&(t.contains(f)||(f.appendChild(t),e=f),this._animate(r,t),l&&this._animate(c,l))}else if(l&&!l.animated&&l!==t&&void 0!==l.parentNode[C]){u!==l&&(u=l,d=W(l),_=W(l.parentNode));var j=(c=l.getBoundingClientRect()).right-c.left,$=c.bottom-c.top,P=k.test(d.cssFloat+d.display)||"flex"==_.display&&0===_["flex-direction"].indexOf("row"),E=l.offsetWidth>t.offsetWidth,A=l.offsetHeight>t.offsetHeight,N=(P?(s.clientX-c.left)/j:(s.clientY-c.top)/$)>.5,O=l.nextElementSibling,F=!1;if(P){var I=t.offsetTop,M=l.offsetTop;F=I===M?l.previousElementSibling===t&&!E||N&&E:l.previousElementSibling===t||t.previousElementSibling===l?(s.clientY-c.top)/$>.5:M>I}else x||(F=O!==t&&!A||N&&A);var L=K(i,f,t,r,l,c,s,F);!1!==L&&(1!==L&&-1!==L||(F=1===L),D=!0,T(Z,30),q(y,w),t.contains(f)||(F&&!O?f.appendChild(t):l.parentNode.insertBefore(t,F?O:l)),e=t.parentNode,this._animate(r,t),this._animate(c,l))}}},_animate:function(t,e){var n=this.options.animation;if(n){var a=e.getBoundingClientRect();1===t.nodeType&&(t=t.getBoundingClientRect()),W(e,"transition","none"),W(e,"transform","translate3d("+(t.left-a.left)+"px,"+(t.top-a.top)+"px,0)"),e.offsetWidth,W(e,"transition","all "+n+"ms"),W(e,"transform","translate3d(0,0,0)"),clearTimeout(e.animated),e.animated=T(function(){W(e,"transition",""),W(e,"transform",""),e.animated=!1},n)}},_offUpEvents:function(){var t=this.el.ownerDocument;Q(j,"touchmove",this._onTouchMove),Q(j,"pointermove",this._onTouchMove),Q(t,"mouseup",this._onDrop),Q(t,"touchend",this._onDrop),Q(t,"pointerup",this._onDrop),Q(t,"touchcancel",this._onDrop),Q(t,"pointercancel",this._onDrop),Q(t,"selectstart",this)},_onDrop:function(s){var l=this.el,r=this.options;clearInterval(this._loopId),clearInterval(w.pid),clearTimeout(this._dragStartTimer),lt(this._cloneId),lt(this._dragStartId),Q(j,"mouseover",this),Q(j,"mousemove",this._onTouchMove),this.nativeDraggable&&(Q(j,"drop",this),Q(l,"dragstart",this._onDragStart)),this._offUpEvents(),s&&(g&&(s.preventDefault(),!r.dropBubble&&s.stopPropagation()),n&&n.parentNode&&n.parentNode.removeChild(n),i!==e&&"clone"===R.active.lastPullMode||a&&a.parentNode&&a.parentNode.removeChild(a),t&&(this.nativeDraggable&&Q(t,"dragend",this),X(t),t.style["will-change"]="",Y(t,this.options.ghostClass,!1),Y(t,this.options.chosenClass,!1),G(this,i,"unchoose",t,e,i,p),i!==e?(f=et(t,r.draggable))>=0&&(G(null,e,"add",t,e,i,p,f),G(this,i,"remove",t,e,i,p,f),G(null,e,"sort",t,e,i,p,f),G(this,i,"sort",t,e,i,p,f)):t.nextSibling!==o&&(f=et(t,r.draggable))>=0&&(G(this,i,"update",t,e,i,p,f),G(this,i,"sort",t,e,i,p,f)),R.active&&(null!=f&&-1!==f||(f=p),G(this,i,"end",t,e,i,p,f),this.save()))),this._nulling()},_nulling:function(){i=t=e=n=o=a=s=l=r=h=b=g=f=u=d=v=m=R.active=null,M.forEach(function(t){t.checked=!0}),M.length=0},handleEvent:function(e){switch(e.type){case"drop":case"dragend":this._onDrop(e);break;case"dragover":case"dragenter":t&&(this._onDragOver(e),function(t){t.dataTransfer&&(t.dataTransfer.dropEffect="move");t.preventDefault()}(e));break;case"mouseover":this._onDrop(e);break;case"selectstart":e.preventDefault()}},toArray:function(){for(var t,e=[],n=this.el.children,a=0,i=n.length,o=this.options;a<i;a++)U(t=n[a],o.draggable,this.el)&&e.push(t.getAttribute(o.dataIdAttr)||tt(t));return e},sort:function(t){var e={},n=this.el;this.toArray().forEach(function(t,a){var i=n.children[a];U(i,this.options.draggable,n)&&(e[t]=i)},this),t.forEach(function(t){e[t]&&(n.removeChild(e[t]),n.appendChild(e[t]))})},save:function(){var t=this.options.store;t&&t.set(this)},closest:function(t,e){return U(t,e||this.options.draggable,this.el)},option:function(t,e){var n=this.options;if(void 0===e)return n[t];n[t]=e,"group"===t&&B(n)},destroy:function(){var t=this.el;t[C]=null,Q(t,"mousedown",this._onTapStart),Q(t,"touchstart",this._onTapStart),Q(t,"pointerdown",this._onTapStart),this.nativeDraggable&&(Q(t,"dragover",this),Q(t,"dragenter",this)),Array.prototype.forEach.call(t.querySelectorAll("[draggable]"),function(t){t.removeAttribute("draggable")}),L.splice(L.indexOf(this._onDragOver),1),this._onDrop(),this.el=t=null}},H(j,"touchmove",function(t){R.active&&t.preventDefault()}),R.utils={on:H,off:Q,css:W,find:J,is:function(t,e){return!!U(t,e,t)},extend:it,throttle:at,closest:U,toggleClass:Y,clone:ot,index:et,nextTick:st,cancelNextTick:lt},R.create=function(t,e){return new R(t,e)},R.version="1.7.0",R})},function(t,e,n){var a=n(128),i=n(414),o=n(445),s=Math.max;t.exports=function(t,e,n){var l=null==t?0:t.length;if(!l)return-1;var r=null==n?0:o(n);return r<0&&(r=s(l+r,0)),a(t,i(e,3),r)}},function(t,e,n){var a=n(43),i=n(417),o=n(418),s=n(419),l=n(420),r=n(421);function c(t){var e=this.__data__=new a(t);this.size=e.size}c.prototype.clear=i,c.prototype.delete=o,c.prototype.get=s,c.prototype.has=l,c.prototype.set=r,t.exports=c},function(t,e,n){var a=n(422),i=n(6);t.exports=function t(e,n,o,s,l){return e===n||(null==e||null==n||!i(e)&&!i(n)?e!=e&&n!=n:a(e,n,o,s,t,l))}},function(t,e,n){var a=n(125),i=n(423),o=n(129),s=1,l=2;t.exports=function(t,e,n,r,c,u){var d=n&s,_=t.length,p=e.length;if(_!=p&&!(d&&p>_))return!1;var f=u.get(t);if(f&&u.get(e))return f==e;var m=-1,v=!0,h=n&l?new a:void 0;for(u.set(t,e),u.set(e,t);++m<_;){var b=t[m],g=e[m];if(r)var y=d?r(g,b,m,e,t,u):r(b,g,m,t,e,u);if(void 0!==y){if(y)continue;v=!1;break}if(h){if(!i(e,function(t,e){if(!o(h,e)&&(b===t||c(b,t,n,r,u)))return h.push(e)})){v=!1;break}}else if(b!==g&&!c(b,g,n,r,u)){v=!1;break}}return u.delete(t),u.delete(e),v}},function(t,e,n){var a=n(40);t.exports=function(t){return t==t&&!a(t)}},function(t,e){t.exports=function(t,e){return function(n){return null!=n&&n[t]===e&&(void 0!==e||t in Object(n))}}},function(t,e,n){var a=n(140),i=n(46);t.exports=function(t,e){for(var n=0,o=(e=a(e,t)).length;null!=t&&n<o;)t=t[i(e[n++])];return n&&n==o?t:void 0}},function(t,e,n){var a=n(4),i=n(79),o=n(437),s=n(24);t.exports=function(t,e){return a(t)?t:i(t,e)?[t]:o(s(t))}},function(t,e,n){var a=n(448)(function(t,e,n){return t+(n?"_":"")+e.toLowerCase()});t.exports=a},function(t,e,n){var a=n(0)(n(460),n(461),!1,null,null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(467),n(468),!1,function(t){n(465)},null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(472),n(473),!1,function(t){n(470)},null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(481),n(482),!1,function(t){n(479)},null,null);t.exports=a.exports},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){t.exports=n(217)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(218),i=n(224),o=n(328),s=n(331),l=n(336),r=n(341),c=n(383),u=n(388),d=n(391),_=n(410),p=n(530),f=n(557),m=n(568),v=n(577),h=[{path:"/",component:a,props:!0,children:[{path:"/",name:"home",component:i},{path:"/tools",component:o,children:[{path:"/",name:"import_tables",component:s},{path:"default_table_appearance",name:"default_table_appearance",component:r},{path:"permission",name:"permission",component:l},{path:"licensing",name:"licensing",component:c},{path:"global_settings",name:"global_settings",component:u}]},{path:"/help",name:"help",component:m}]},{path:"/tables/:table_id",component:d,props:!0,children:[{path:"/",name:"data_items",component:_},{path:"columns",name:"data_columns",component:p},{path:"design_studio",name:"design_studio",component:n(592)},{path:"additional_css",name:"additional_css",component:v},{path:"import-export",name:"import-export",component:f},{path:"table_editing",name:"table_editing",component:n(597)}]}],b=n(600),g=n.n(b);window.ninjaTableBus=new window.NINJATABLE.Vue,window.NINJATABLE.Vue.mixin({methods:{$t:function(t){var e=ninja_table_admin.i18n[t];return e||t},setStoreData:function(t,e){window.localStorage&&localStorage.setItem("ninjatable_"+t,e)},getFromStore:function(t,e){if(window.localStorage){var n=localStorage.getItem("ninjatable_"+t);if(n)return n}return e},applyFilters:window.NINJATABLE.applyFilters,addFilter:window.NINJATABLE.addFilter,addAction:window.NINJATABLE.addFilter,doAction:window.NINJATABLE.doAction,$get:window.NINJATABLE.$get,$post:window.NINJATABLE.$post},data:function(){return{}},directives:{focus:{inserted:function(t){t.focus()}}},filters:{ucFirst:function(t){return t.charAt(0).toUpperCase()+t.slice(1)}}});var y=new window.NINJATABLE.Router({routes:window.NINJATABLE.applyFilters("ninja_table_global_routes",h),linkActiveClass:"active"});g.a.router=y,window.ninjaApp=new window.NINJATABLE.Vue(g.a).$mount("#data-tables-app")},function(t,e,n){var a=n(0)(n(222),n(223),!1,function(t){n(219)},null,null);t.exports=a.exports},function(t,e,n){var a=n(220);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("4438693c",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".plugin-name{float:left;padding:8px 0}",""])},function(t,e){t.exports=function(t,e){for(var n=[],a={},i=0;i<e.length;i++){var o=e[i],s=o[0],l={id:t+":"+i,css:o[1],media:o[2],sourceMap:o[3]};a[s]?a[s].parts.push(l):n.push(a[s]={id:s,parts:[l]})}return n}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"home",data:function(){return{has_pro:window.ninja_table_admin.hasPro,topMenus:[]}},methods:{setTopMenu:function(){this.topMenus=this.applyFilters("ninja_table_top_menus",[{route:"home",title:"All Tables"},{route:"import_tables",title:"Tools and Settings"},{route:"help",title:"Help & Documentation"}])}},mounted:function(){this.setTopMenu()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"ninja_main_nav"},[n("span",{staticClass:"plugin-name"},[t._v(t._s(t.$t("Ninja Tables"))),t.has_pro?n("span",[t._v(" Pro")]):t._e()]),t._v(" "),t._l(t.topMenus,function(e){return n("router-link",{key:e.route,class:["ninja-tab"],attrs:{"active-class":"ninja-tab-active",exact:"",to:{name:e.route}}},[t._v("\n "+t._s(e.title)+"\n ")])}),t._v(" "),t.has_pro?t._e():n("a",{staticClass:"ninja-tab buy_pro_tab",attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade",target:"_blank"}},[t._v("Upgrade To Pro")])],2),t._v(" "),n("router-view",{attrs:{"has-pro":t.has_pro}})],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(227),n(327),!1,function(t){n(225)},null,null);t.exports=a.exports},function(t,e,n){var a=n(226);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("00d75314",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,"label.form_group.search_action{padding-top:0;margin-bottom:0}.create-table-modal{z-index:9999!important}.create-table-modal .el-dialog__body{padding:20px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(228),i=n(233),o=n(247),s=n(317),l=n(322);e.default={name:"all_tables",components:{Welcome:a,"list-all-tables":i,"add-table-modal":o,"lead-modal":s,NinjaReviewDialog:l},props:["hasPro"],data:function(){return{modalVisible:!1,published_tables:parseInt(window.ninja_table_admin.published_tables),searchAction:0,searchString:"",selected:[],review_option:window.ninja_table_admin.show_review_dialog}},methods:{addTableAction:function(t){this.$router.push({name:"data_items",params:{table_id:t}}),this.modalVisible=!1},getData:function(){this.searchAction++},makeSelection:function(t){this.selected=t},handleBulkActions:function(t){"delete"===t&&this.deleteTables()},deleteTables:function(){this.selected.length&&this.$confirm(this.$t("This will permanently delete the selected tables. Continue?"),"Warning",{confirmButtonText:this.$t("Yes, Delete"),cancelButtonText:this.$t("Cancel"),type:"warning"}).then(function(){}).catch(function(){})}},mounted:function(){var t=this;window.ninjaTableBus.$on("addedTable",function(){t.published_tables||(window.ninja_table_admin.published_tables=1)})}}},function(t,e,n){var a=n(0)(n(231),n(232),!1,function(t){n(229)},null,null);t.exports=a.exports},function(t,e,n){var a=n(230);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("59acd174",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_intro_welcome{max-width:600px;margin:45px auto 0;padding:30px 20px;background:#fff;text-align:center}.ninja_intro_welcome h2{font-size:30px}.ninja_intro_welcome .ninja_actions{margin-bottom:30px}.ninja_intro_welcome .ninja_docs{text-align:left}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"Welcome",methods:{create:function(){this.$emit("create",!0)}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_intro_welcome"},[n("h2",[t._v("Welcome to Ninja Tables")]),t._v(" "),n("p",[t._v("Thank you for installing Ninja Tables - Best Responsive Table Plugin for WordPress")]),t._v(" "),n("div",{staticClass:"ninja_actions"},[n("el-button",{attrs:{type:"success"},on:{click:t.create}},[t._v("\n Create Your First Table\n ")]),t._v(" "),n("router-link",{attrs:{to:{name:"import_tables"}}},[n("el-button",{attrs:{type:"info"}},[t._v(t._s(t.$t("Import From CSV")))])],1)],1),t._v(" "),n("hr"),t._v(" "),t._m(0)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_docs"},[e("h4",[this._v("Ninja Tables Documentation:")]),this._v(" "),e("ul",[e("li",[e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/ninja-tables/use-case/?ninja_intro=1"}},[this._v("\n Demo and Basic Settings\n ")])]),this._v(" "),e("li",[e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/setting-up-a-table/?ninja_intro=1"}},[this._v("\n Setting Up a Table\n ")])]),this._v(" "),e("li",[e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/configure-responsive-breakdowns-for-table/?ninja_intro=1"}},[this._v("\n Make Your Table Looks Great on All Devices\n ")])])])])}]}},function(t,e,n){var a=n(0)(n(236),n(246),!1,function(t){n(234)},null,null);t.exports=a.exports},function(t,e,n){var a=n(235);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("4640d162",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja-tables.el-table td,.ninja-tables.el-table th{padding:5px 0}.ninja-tables.el-table span.row-delete a{color:#a00}.ninja-tables.el-table a{text-decoration:none}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(108),i=n.n(a),o=n(109);e.default={name:"Home",components:{ninja_pagination:o},props:["searchAction","searchString"],watch:{searchAction:function(){this.paginate.current_page=1,this.fetchTables()}},data:function(){return{loading:!1,bulkAction:-1,selectAll:0,checkedItems:[],pageLoading:!1,items:[],paginate:{total:0,current_page:1,last_page:1,per_page:parseInt(this.getFromStore("tables_per_page",20))},hasPro:!!window.ninja_table_admin.hasPro,img_url_path:window.ninja_table_admin.img_url,is_installed:window.ninja_table_admin.isInstalled}},methods:{fetchTables:function(){var t=this;this.pageLoading=!0;var e={action:"ninja_tables_ajax_actions",target_action:"get-all-tables",per_page:this.paginate.per_page,page:this.paginate.current_page,search:this.searchString};jQuery.get(ajaxurl,e).done(function(e){t.items=e.data,t.paginate.total=e.total,t.paginate.current_page=e.current_page,t.paginate.last_page=e.last_page,t.pageLoading=!1,e.total&&t.$emit("total_table",e.total)}).fail(function(t){vueNotification.error("Something went wrong, please try again.")})},goToPage:function(t){this.paginate.current_page=t,this.fetchTables()},handleSizeChange:function(t){this.paginate.per_page=t,this.setStoreData("tables_per_page",t),this.fetchTables()},confirmDeleteTable:function(t){var e=this;this.$confirm("Are you sure, You want to delete this table?","Warning",{confirmButtonText:"Yes, Delete",cancelButtonText:"Cancel",type:"warning"}).then(function(){e.deleteTable(t)}).catch(function(){e.$message({type:"info",message:"Delete canceled"})})},deleteTable:function(t){var e=this,n={action:"ninja_tables_ajax_actions",target_action:"delete-a-table",table_id:t};jQuery.post(ajaxurl,n).then(function(t){e.fetchTables(),e.$message({type:"success",message:t.message})}).fail(function(t){alert(t.responseJSON.data.message)})},handleSelectionChange:function(t){this.$emit("selection",t.map(function(t){return t.ID}))},duplicate:function(t){var e=this,n={action:"ninja_tables_ajax_actions",target_action:"duplicate-table",tableId:t};jQuery.post(ajaxurl,n).then(function(t){e.$message({type:"success",message:t.data.message}),e.$router.push({name:"data_items",params:{table_id:t.data.table_id}})}).fail(function(t){alert(t.responseJSON.data.message)})},shouldBeVisible:function(t){return"fluent-form"!=t.dataSourceType||window.ninja_table_admin.hasFluentForm},dataSourceType:function(t){var e=t.dataSourceType||"Default";return e=e.indexOf("google")>-1?"Google SpreadSheet":e}},mounted:function(){var t=this;this.fetchTables(),new i.a(".copy").on("success",function(e){t.$message({message:"Copied to Clipboard!",type:"success"})})}}},function(t,e,n){var a,i,o,s;s=function(t,e){"use strict";var n,a=(n=e)&&n.__esModule?n:{default:n};var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};var o=function(){function t(t,e){for(var n=0;n<e.length;n++){var a=e[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}return function(e,n,a){return n&&t(e.prototype,n),a&&t(e,a),e}}(),s=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.resolveOptions(e),this.initSelection()}return o(t,[{key:"resolveOptions",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.container=t.container,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function(){var t=this,e="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return t.removeFake()},this.fakeHandler=this.container.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[e?"right":"left"]="-9999px";var n=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.style.top=n+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,this.container.appendChild(this.fakeElem),this.selectedText=(0,a.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function(){this.fakeHandler&&(this.container.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function(){this.selectedText=(0,a.default)(this.target),this.copyText()}},{key:"copyText",value:function(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function(){this.trigger&&this.trigger.focus(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function(){this.removeFake()}},{key:"action",set:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function(){return this._action}},{key:"target",set:function(t){if(void 0!==t){if(!t||"object"!==(void 0===t?"undefined":i(t))||1!==t.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function(){return this._target}}]),t}();t.exports=s},i=[t,n(238)],void 0===(o="function"==typeof(a=s)?a.apply(e,i):a)||(t.exports=o)},function(t,e){t.exports=function(t){var e;if("SELECT"===t.nodeName)t.focus(),e=t.value;else if("INPUT"===t.nodeName||"TEXTAREA"===t.nodeName){var n=t.hasAttribute("readonly");n||t.setAttribute("readonly",""),t.select(),t.setSelectionRange(0,t.value.length),n||t.removeAttribute("readonly"),e=t.value}else{t.hasAttribute("contenteditable")&&t.focus();var a=window.getSelection(),i=document.createRange();i.selectNodeContents(t),a.removeAllRanges(),a.addRange(i),e=a.toString()}return e}},function(t,e){function n(){}n.prototype={on:function(t,e,n){var a=this.e||(this.e={});return(a[t]||(a[t]=[])).push({fn:e,ctx:n}),this},once:function(t,e,n){var a=this;function i(){a.off(t,i),e.apply(n,arguments)}return i._=e,this.on(t,i,n)},emit:function(t){for(var e=[].slice.call(arguments,1),n=((this.e||(this.e={}))[t]||[]).slice(),a=0,i=n.length;a<i;a++)n[a].fn.apply(n[a].ctx,e);return this},off:function(t,e){var n=this.e||(this.e={}),a=n[t],i=[];if(a&&e)for(var o=0,s=a.length;o<s;o++)a[o].fn!==e&&a[o].fn._!==e&&i.push(a[o]);return i.length?n[t]=i:delete n[t],this}},t.exports=n},function(t,e,n){var a=n(241),i=n(242);t.exports=function(t,e,n){if(!t&&!e&&!n)throw new Error("Missing required arguments");if(!a.string(e))throw new TypeError("Second argument must be a String");if(!a.fn(n))throw new TypeError("Third argument must be a Function");if(a.node(t))return function(t,e,n){return t.addEventListener(e,n),{destroy:function(){t.removeEventListener(e,n)}}}(t,e,n);if(a.nodeList(t))return function(t,e,n){return Array.prototype.forEach.call(t,function(t){t.addEventListener(e,n)}),{destroy:function(){Array.prototype.forEach.call(t,function(t){t.removeEventListener(e,n)})}}}(t,e,n);if(a.string(t))return function(t,e,n){return i(document.body,t,e,n)}(t,e,n);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}},function(t,e){e.node=function(t){return void 0!==t&&t instanceof HTMLElement&&1===t.nodeType},e.nodeList=function(t){var n=Object.prototype.toString.call(t);return void 0!==t&&("[object NodeList]"===n||"[object HTMLCollection]"===n)&&"length"in t&&(0===t.length||e.node(t[0]))},e.string=function(t){return"string"==typeof t||t instanceof String},e.fn=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,e,n){var a=n(243);function i(t,e,n,i,o){var s=function(t,e,n,i){return function(n){n.delegateTarget=a(n.target,e),n.delegateTarget&&i.call(t,n)}}.apply(this,arguments);return t.addEventListener(n,s,o),{destroy:function(){t.removeEventListener(n,s,o)}}}t.exports=function(t,e,n,a,o){return"function"==typeof t.addEventListener?i.apply(null,arguments):"function"==typeof n?i.bind(null,document).apply(null,arguments):("string"==typeof t&&(t=document.querySelectorAll(t)),Array.prototype.map.call(t,function(t){return i(t,e,n,a,o)}))}},function(t,e){var n=9;if("undefined"!=typeof Element&&!Element.prototype.matches){var a=Element.prototype;a.matches=a.matchesSelector||a.mozMatchesSelector||a.msMatchesSelector||a.oMatchesSelector||a.webkitMatchesSelector}t.exports=function(t,e){for(;t&&t.nodeType!==n;){if("function"==typeof t.matches&&t.matches(e))return t;t=t.parentNode}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"NinjaPagination",props:["paginate"],data:function(){return{pageNumberInput:1}},methods:{goToPage:function(t){t>=1&&t<=this.paginate.last_page?(this.$emit("change_page",t),this.pageNumberInput=t):alert("invalid page number")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tablenav-pages"},[t.paginate.total?n("span",{staticClass:"displaying-num"},[t._v(t._s(t.paginate.total)+" "+t._s(t.$t("items")))]):t._e(),t._v(" "),n("span",{staticClass:"pagination-links"},[1==t.paginate.current_page?[n("span",{staticClass:"tablenav-pages-navspan",attrs:{"aria-hidden":"true"}},[t._v("«")]),t._v(" "),n("span",{staticClass:"tablenav-pages-navspan",attrs:{"aria-hidden":"true"}},[t._v("‹")])]:[n("a",{staticClass:"first-page",attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.goToPage(1)}}},[n("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.$t("First page")))]),n("span",{attrs:{"aria-hidden":"true"}},[t._v("«")])]),t._v(" "),n("a",{staticClass:"prev-page",attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.goToPage(t.paginate.current_page-1)}}},[n("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.$t("Previous page")))]),n("span",{attrs:{"aria-hidden":"true"}},[t._v("‹")])])],t._v(" "),n("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.$t("Current Page")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.pageNumberInput,expression:"pageNumberInput"}],staticClass:"current-page",attrs:{id:"current-page-selector",type:"text",size:"2","aria-describedby":"table-paging"},domProps:{value:t.pageNumberInput},on:{keydown:function(e){if(!("button"in e)&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault(),t.goToPage(t.pageNumberInput)},input:function(e){e.target.composing||(t.pageNumberInput=e.target.value)}}}),t._v("\n "+t._s(t.$t("of"))+"\n "),n("span",{staticClass:"total-pages"},[t._v(t._s(t.paginate.last_page))]),t._v(" "),t.paginate.current_page==t.paginate.last_page?[n("span",{staticClass:"tablenav-pages-navspan",attrs:{"aria-hidden":"true"}},[t._v("›")]),t._v(" "),n("span",{staticClass:"tablenav-pages-navspan",attrs:{"aria-hidden":"true"}},[t._v("»")])]:[n("a",{staticClass:"next-page",attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.goToPage(t.paginate.current_page+1)}}},[n("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.$t("Next page")))]),n("span",{attrs:{"aria-hidden":"true"}},[t._v("›")])]),t._v(" "),n("a",{staticClass:"last-page",attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.goToPage(t.paginate.last_page)}}},[n("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.$t("Last page")))]),n("span",{attrs:{"aria-hidden":"true"}},[t._v("»")])])]],2)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("el-table",{directives:[{name:"loading",rawName:"v-loading.body",value:t.pageLoading,expression:"pageLoading",modifiers:{body:!0}}],staticClass:"ninja-tables",staticStyle:{},attrs:{data:t.items,border:""},on:{"selection-change":t.handleSelectionChange}},[n("el-table-column",{attrs:{label:t.$t("ID"),width:"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("router-link",{attrs:{to:{name:"data_items",params:{table_id:e.row.ID}}}},[t._v("\n "+t._s(e.row.ID)+"\n ")])]}}])}),t._v(" "),n("el-table-column",{attrs:{label:t.$t("Title")},scopedSlots:t._u([{key:"default",fn:function(e){return[n("strong",[t.shouldBeVisible(e.row)?[n("router-link",{attrs:{to:{name:"data_items",params:{table_id:e.row.ID}}}},[t._v("\n "+t._s(e.row.post_title)+"\n ")])]:[t._v("\n "+t._s(e.row.post_title)+"\n ")],t._v(" "),n("span",{directives:[{name:"show",rawName:"v-show",value:"publish"!=e.row.post_status,expression:"scope.row.post_status != 'publish'"}]},[t._v("\n ("+t._s(e.row.post_status)+")\n ")])],2),t._v(" "),n("div",{staticClass:"row-actions"},[t.shouldBeVisible(e.row)?n("span",{staticClass:"row-edit"},[n("router-link",{attrs:{to:{name:"data_items",params:{table_id:e.row.ID}}}},[t._v("\n "+t._s(t.$t("Edit"))+"\n ")]),t._v(" |\n ")],1):t._e(),t._v(" "),t.shouldBeVisible(e.row)?n("span",{staticClass:"row-preview"},[n("a",{attrs:{rel:"noopener",href:e.row.preview_url,target:"_blank"}},[t._v(t._s(t.$t("Preview")))]),t._v(" |\n ")]):t._e(),t._v(" "),t.shouldBeVisible(e.row)?n("span",{staticClass:"row-duplicate"},[n("a",{attrs:{href:"#"},on:{click:function(n){n.preventDefault(),t.duplicate(e.row.ID)}}},[t._v(t._s(t.$t("Duplicate")))]),t._v(" |\n ")]):t._e(),t._v(" "),t.shouldBeVisible(e.row)&&e.row.fluentfrom_url?n("span",{staticClass:"row-duplicate"},[n("a",{attrs:{href:e.row.fluentfrom_url}},[t._v(t._s(t.$t("Fluent Form Entries")))]),t._v(" |\n ")]):t._e(),t._v(" "),n("span",{staticClass:"row-delete"},[n("a",{attrs:{href:"#"},on:{click:function(n){n.preventDefault(),t.confirmDeleteTable(e.row.ID)}}},[t._v(t._s(t.$t("Delete")))])])])]}}])}),t._v(" "),n("el-table-column",{attrs:{width:"160",label:t.$t("Data Source")},scopedSlots:t._u([{key:"default",fn:function(e){return[n("strong",[t._v(t._s(t.dataSourceType(e.row)))])]}}])}),t._v(" "),n("el-table-column",{attrs:{width:"250",label:t.$t("ShortCode")},scopedSlots:t._u([{key:"default",fn:function(e){return[n("el-tooltip",{attrs:{effect:"dark",content:"Click to copy shortcode",title:"Click to copy shortcode",placement:"top"}},[n("code",{staticClass:"copy",attrs:{"data-clipboard-text":'[ninja_tables id="'+e.row.ID+'"]'}},[n("i",{staticClass:"el-icon-document"}),t._v(' [ninja_tables id="'+t._s(e.row.ID)+'"]\n ')])])]}}])})],1),t._v(" "),n("div",{staticClass:"pull-right"},[n("el-pagination",{attrs:{"current-page":t.paginate.current_page,"page-sizes":[10,20,50,100],"page-size":t.paginate.per_page,layout:"total, sizes, prev, pager, next, jumper",total:t.paginate.total},on:{"size-change":t.handleSizeChange,"current-change":t.goToPage,"update:currentPage":function(e){t.$set(t.paginate,"current_page",e)}}})],1),t._v(" "),!t.loading&&!t.is_installed&&t.items.length>2&&!t.hasPro?n("div",[n("a",{staticStyle:{display:"block",width:"800px",margin:"40px auto 0px","max-width":"100%"},attrs:{target:"_blank",href:"https://wordpress.org/plugins/fluentform"}},[n("img",{staticStyle:{"max-width":"100%"},attrs:{src:t.img_url_path+"fluent_banner.png"}})])]):t.items.length>3&&!t.hasPro?n("div",{staticClass:"text-center",staticStyle:{"margin-top":"100px"}},[n("hr"),t._v(" "),n("h3",[t._v("Love Ninja Tables? Upgrade to Pro and get more exciting features and Performance")]),t._v(" "),n("a",{staticClass:"button button-primary",attrs:{target:"_blank",href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade"}},[t._v("Upgrade To Pro")])]):t._e()],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(250),n(316),!1,function(t){n(248)},null,null);t.exports=a.exports},function(t,e,n){var a=n(249);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("69ca19d3",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja-add-table .el-main{padding:0 1px 0 15px;min-height:0}.ninja-add-table .el-menu{border-right:initial}.ninja-add-table .el-menu-item .el-icon-fluent-form{height:18px}.ninja-add-table .el-menu-item .dashicons{width:24px;height:18px;margin-right:5px}.ninja-add-table .el-menu-item.is-active{background-color:#0073aa!important}.ninja-add-table .el-table .cell{text-overflow:clip}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(36),i=n.n(a),o=n(110),s=n.n(o),l=n(275),r=n.n(l),c=n(121),u=n.n(c),d=n(122),_=n.n(d),p=n(302),f=n.n(p),m=n(307),v=n.n(m),h=n(27),b=n.n(h);e.default={name:"add_table",components:{wp_editor:i.a,"wp-posts-data-source":s.a,"woo-data-source":r.a,"fluent-form-data-source":u.a,"external-data-source":_.a,ImportTable:f.a,RawSqlForm:v.a,PremiumNotice:b.a},props:{table:{type:Object,default:function(){return{ID:null,post_title:"",post_content:""}}},hasPro:{required:!0}},data:function(){return{activeTabName:"default",btnLoading:!1,activated_features:window.ninja_table_admin.activated_features,has_sql_permission:"yes"==window.ninja_table_admin.sql_permission,editorOption:{modules:{toolbar:[["bold","italic","underline","strike","link"],["blockquote","code-block"],[{header:1},{header:2}],[{list:"ordered"},{list:"bullet"}],[{script:"sub"},{script:"super"}],[{align:[]}],[{direction:"rtl"}]]}},isCollapse:!1,fluentFormIcon:window.ninja_table_admin.fluent_form_icon,wooIcon:window.ninja_table_admin.img_url+"woo-logo.png",has_woo:!!window.ninja_table_admin.has_woocommerce}},methods:{handleTabClick:function(t,e){setTimeout(function(){jQuery(t.$el).find("input:first").focus()},0)},addTable:function(){var t=this;this.btnLoading=!0;var e={action:"ninja_tables_ajax_actions",target_action:"store-a-table",post_title:this.table.post_title,post_content:this.table.post_content,tableId:this.table.ID};jQuery.post(ajaxurl,e).then(function(e){t.$message({showClose:!0,message:e.message,type:"success"}),window.ninjaTableBus.$emit("addedTable"),t.table.ID?t.closeModal():t.fireTableCreated(e.table_id)}).fail(function(e){e.responseJSON.data.message?t.$message({showClose:!0,message:e.responseJSON.data.message,type:"error"}):t.$message({showClose:!0,message:e.responseText,type:"error"})}).always(function(){t.btnLoading=!1})},closeModal:function(){this.$emit("modal_close")},onEditorChange:function(t){t.editor;var e=t.html;t.text;this.table.post_content=e},fireTableCreated:function(t){this.$emit("table_inserted",t)},checkScreenSize:function(){window.innerWidth<1e3?this.isCollapse=!0:this.isCollapse=!1}},mounted:function(){var t=this;this.checkScreenSize(),jQuery(window).resize(function(){t.checkScreenSize()})}}},function(t,e,n){var a=n(252);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("af720b18",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,"button.button.ninja_demo_media_button{position:absolute;z-index:9999999999;cursor:pointer}.wp_vue_editor{width:100%;min-height:100px}.wp_vue_editor_wrapper{position:relative}.wp_vue_editor_wrapper .popover-wrapper{z-index:2;position:absolute;top:0;left:0}.wp_vue_editor_wrapper .popover-wrapper-plaintext{left:auto;right:0;top:-32px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"wp_editor",props:{editor_id:{type:String,default:function(){return"wp_editor_"+Date.now()}},value:{type:String,default:function(){return""}}},data:function(){return{hasWpEditor:!!window.wp.editor,plain_content:this.value,has_pro:!!window.ninja_table_admin.hasPro}},computed:{ninja_editor_id:function(){var t=this.slugify(this.editor_id);return t.match(/^[A-Za-z]+$/)||(t="editor_english_"+Math.floor(1001*Math.random())+"_"+Math.floor(101*Math.random())),"ninja_editor_"+this.slugify(t)}},watch:{plain_content:function(){this.$emit("input",this.plain_content)},value:function(){this.value||this.reloadEditor()}},methods:{initEditor:function(){if(this.hasWpEditor){wp.editor.remove(this.ninja_editor_id);var t=this;wp.editor.initialize(this.ninja_editor_id,{mediaButtons:this.has_pro,mode:"none",tinymce:{toolbar1:"formatselect,bold,italic,bullist,numlist,link,blockquote,alignleft,aligncenter,alignright,strikethrough,underline,forecolor,codeformat,removeformat,undo,redo",valid_elements:"*[*]",forced_root_block:"",setup:function(e){e.on("change",function(e,n){t.changeContentEvent()})}},quicktags:!0}),jQuery("#"+this.ninja_editor_id).on("change",function(e){t.changeContentEvent()})}},slugify:function(t){return t.toString().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,"")},reloadEditor:function(){wp.editor.remove(this.ninja_editor_id),jQuery("#"+this.ninja_editor_id).val(""),this.initEditor()},changeContentEvent:function(){var t=wp.editor.getContent(this.ninja_editor_id);this.$emit("input",t)},showPro:function(){window.ninjaTableBus.$emit("show_pro_popup",1)}},mounted:function(){this.initEditor()},beforeDestroy:function(){}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"wp_vue_editor_wrapper",class:"editor_wrapper_"+t.ninja_editor_id},[t.hasWpEditor?[t.has_pro?t._e():n("button",{staticClass:"button ninja_demo_media_button",attrs:{type:"button"},on:{click:t.showPro}},[n("span",{staticClass:"dashicons dashicons-admin-media"}),t._v(" Add Media (pro)")]),t._v(" "),n("textarea",{staticClass:"wp_vue_editor",attrs:{id:t.ninja_editor_id}},[t._v(t._s(t.value))])]:[t._m(0),t._v(" "),n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.plain_content,expression:"plain_content"}],staticClass:"wp_vue_editor wp_vue_editor_plain",domProps:{value:t.plain_content},on:{input:function(e){e.target.composing||(t.plain_content=e.target.value)}}})]],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",{staticStyle:{"font-style":"italic"}},[e("small",[this._v("WP Editor is only available on WordPress version 4.8 or later. Please Upgrade Your WordPress Core")])])}]}},function(t,e,n){var a=n(256);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("f58ffa2e",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_tables_wpposts .el-checkbox-group{overflow:scroll!important}.ninja_tables_wpposts .el-transfer-panel,.ninja_tables_wpposts .table-rows .el-transfer-panel{width:230px!important}.ninja_tables_wpposts .el-transfer-panel__item{display:block!important}.no-margin{margin:0}.nt_conditions .el-collapse-item.is-active{border:1px solid #ebeef5}.nt_conditions .el-collapse-item.is-active .el-collapse-item__wrap{background:#ebeef5}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(258),i=n.n(a),o=n(263),s=n.n(o),l=n(27),r=n.n(l),c=n(111),u=n.n(c);e.default={name:"WP-Posts",props:{config:{type:Object},tableCreated:{type:Function},hasPLainLayout:{type:Boolean,default:!1}},components:{"wp-post-conditions":i.a,PremiumNotice:r.a,UpgradeNotice:u.a,WpPostMetaQuery:s.a},data:function(){return{loading:!1,saving:!1,title:null,tableId:null,postStatuses:[],all_types:[],all_fields:[],post_types:[],selected_post_types:[],post_types_fields:[],selected_post_types_fields:[],conditions_section:"conditions",conditions:[],meta_query:"meta",metas:[],active_step:0,query_extra:{},activated_features:window.ninja_table_admin.activated_features,hasPro:!!window.ninja_table_admin.hasPro,queryable_fields:["ID","post_author","comment_count","post_date","post_modified","post_status"]}},computed:{query_able_post_types_fields:function(){var t=this;return this.post_types_fields.filter(function(e){return-1!=t.queryable_fields.indexOf(e.key)||-1!=e.key.indexOf(".")})}},methods:{nextStep:function(){var t="";if(this.title||(t+=" The title field is required."),this.selected_post_types.length||(t+=" At least select one post type."),t=jQuery.trim(t))return this.active_step=0,void this.$message({showClose:!0,message:t,type:"error"});this.active_step++>=1&&(this.active_step=0)},handlePostTypeChange:function(t,e,n){var a=this,i=[];this.selected_post_types.forEach(function(t){a.all_types[t].fields.forEach(function(t){i.push({key:t,label:t})})}),this.post_types_fields=this.all_fields.concat(i),this._updateSelectedFields()},_updateSelectedFields:function(){var t=this;if(!this.selected_post_types.length)return this.post_types_fields=[],void(this.selected_post_types_fields=[]);this.selected_post_types_fields.filter(function(t){return!!t}).forEach(function(e,n){var a=e.split(".");a.length>1&&-1==t.selected_post_types.indexOf(a[0])&&t.selected_post_types_fields.splice(n,1)})},save:function(){var t=this;this.saving=!0,jQuery.post(ajaxurl,{action:"ninja_table_wp-posts_create_table",post_title:this.title,tableId:this.tableId,data:{post_types:this.selected_post_types,columns:this.selected_post_types_fields,where:this.conditions,metas:this.metas,query_extra:!(!this.config||!this.config.table)&&this.config.table.query_extra}}).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"}),t.tableCreated(e.data.table_id)}).fail(function(e){var n="",a=e.responseJSON.data.message;for(var i in a)n+=" "+a[i];t.$message({showClose:!0,message:n,type:"error"})}).always(function(e){return t.saving=!1})},getPostTypes:function(){var t=this;this.loading=!0,this.$get({action:"ninja_tables_ajax_actions",target_action:"get_wp_post_types"}).then(function(e){t.all_types=e.data.post_types,t.postStatuses=e.data.postStatuses,jQuery.each(t.all_types,function(e,n){var a="";"private"===n.status&&(a=" (private)"),t.post_types.push({key:e,label:e+a})}),t.all_fields=e.data.post_fields.map(function(t){return{key:t,label:t}}),t.config&&(t.tableId=t.config.table.ID,t.conditions=t.config.table.whereConditions||[],t.metas=t.config.table.metaQuery||[],t.selected_post_types=t.config.table.post_types,t.selected_post_types_fields=t.config.columns.map(function(t){return t.original_name}),t.handlePostTypeChange())}).fail(function(t){console.log(t)}).always(function(){t.loading=!1})}},mounted:function(){this.getPostTypes()}}},function(t,e,n){var a=n(0)(n(261),n(262),!1,function(t){n(259)},null,null);t.exports=a.exports},function(t,e,n){var a=n(260);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("921d84e4",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".el-row{margin-bottom:20px}.el-row:last-child{margin-bottom:0}.wp-post-conditions-el-picker{z-index:9999!important}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};function i(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}e.default={name:"WPPostConditions",props:["config","fields","conditions","allPostTypes","postStatuses","selected_post_types"],data:function(){return{default_condition:{field:null,operator:null,value:null,operators:[],selectableOptions:[],is_selectable:"false"},operators:[],common_operators:[{key:"=",value:"Equal To"},{key:"!=",value:"Not Equal To"}],uncommon_operators:[{key:"IN",value:"In"},{key:"NOT IN",value:"Not In"}],other_operators:[{key:">",value:"Greater Than"},{key:">=",value:"Greater Than Or Equal To"},{key:"<",value:"Less Than"},{key:"<=",value:"Less Than Or Equal To"}],query_limit:0,orderByFields:["ID","post_date","post_author","post_title","post_status","menu_order","comment_count"],authors:[]}},watch:{selected_post_types:function(){this.getPostAuthors()}},methods:{addCondition:function(t){this.conditions.push(a({},this.default_condition))},removeCondition:function(t,e){this.conditions.splice(t,1)},setOperators:function(t,e){e.operators=[].concat(i(this.common_operators)),"comment_count"==t&&e.operators.map(function(t,n){"!="==t.key&&e.operators.splice(n,1)}),-1!=["ID","comment_count","post_date","post_modified"].indexOf(t)?e.operators=[].concat(i(e.operators.concat(this.other_operators))):-1==t.indexOf(".")&&-1==["post_author","post_status"].indexOf(t)||(e.operators=[].concat(i(this.uncommon_operators))),this.setValueField(t,e)},setValueField:function(t,e){if("post_status"==t)e.value=[],e.is_selectable="true",e.selectableOptions=this.postStatuses;else if("post_author"==t)e.value=[],e.is_selectable="true",e.selectableOptions=this.authors.map(function(t){return{key:t.ID,label:t.display_name}});else if(-1!=t.indexOf(".")){e.value=[],e.is_selectable="true";var n=[].concat(i(t.split("."))),a=n[0],o=n[1],s=this.allPostTypes[a].taxonomies[o];e.selectableOptions=s.map(function(t){return{key:t.slug,label:t.name}})}else e.value=null,e.is_selectable="false",e.selectableOptions=[]},isDateField:function(t){return-1!=["post_date","post_modified"].indexOf(t.field)},isSelectable:function(t){return"true"==t.is_selectable},getPostAuthors:function(){var t=this;jQuery.getJSON(ajaxurl,{action:"ninja_tables_ajax_actions",target_action:"get_wp_post_authors",post_types:this.selected_post_types}).then(function(e){t.authors=e.data.authors})}},mounted:function(){this.getPostAuthors()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"wp-post-conditions"},[n("el-row",[n("el-col",{attrs:{md:21}},[n("el-alert",{attrs:{type:"info",title:"",closable:!1,description:"You can add additional conditions/where clauses here.","show-icon":""}})],1),t._v(" "),n("el-col",{staticStyle:{"text-align":"right"},attrs:{md:3}},[n("el-button",{staticStyle:{"margin-top":"4px"},attrs:{type:"primary",icon:"el-icon-plus",size:"small"},on:{click:function(e){t.addCondition(e)}}})],1)],1),t._v(" "),t._l(t.conditions,function(e,a){return[n("el-row",{attrs:{gutter:20}},[n("el-col",{attrs:{md:7,sm:7}},[n("el-select",{attrs:{placeholder:"Select"},on:{change:function(n){t.setOperators(n,e)}},model:{value:e.field,callback:function(n){t.$set(e,"field",n)},expression:"condition.field"}},t._l(t.fields,function(t){return n("el-option",{key:t.key,attrs:{label:t.label,value:t.key}})}))],1),t._v(" "),n("el-col",{attrs:{md:7,sm:7}},[n("el-select",{attrs:{placeholder:"Select"},model:{value:e.operator,callback:function(n){t.$set(e,"operator",n)},expression:"condition.operator"}},t._l(e.operators,function(t){return n("el-option",{key:t.key,attrs:{label:t.value,value:t.key}})}))],1),t._v(" "),n("el-col",{attrs:{md:7,sm:7}},[t.isSelectable(e)||t.isDateField(e)?!t.isSelectable(e)&&t.isDateField(e)?n("el-date-picker",{attrs:{"popper-class":"wp-post-conditions-el-picker",type:"datetime",placeholder:"Pick a date",format:"yyyy-MM-dd HH:mm:ss","value-format":"yyyy-MM-dd HH:mm:ss"},model:{value:e.value,callback:function(n){t.$set(e,"value",n)},expression:"condition.value"}}):t.isSelectable(e)?n("el-select",{attrs:{multiple:"",placeholder:"Select"},model:{value:e.value,callback:function(n){t.$set(e,"value",n)},expression:"condition.value"}},t._l(e.selectableOptions,function(t){return n("el-option",{key:t.key,attrs:{label:t.label,value:t.key}})})):t._e():n("el-input",{attrs:{placeholder:"Value"},model:{value:e.value,callback:function(n){t.$set(e,"value",n)},expression:"condition.value"}})],1),t._v(" "),n("el-col",{staticStyle:{"text-align":"right"},attrs:{md:3,sm:3}},[n("el-button",{staticStyle:{"margin-top":"4px"},attrs:{type:"danger",icon:"el-icon-delete",size:"small"},on:{click:function(e){t.removeCondition(a,e)}}})],1)],1)]}),t._v(" "),t.config&&t.config.table.query_extra?n("div",{staticClass:"ninja_post_query_limit"},[n("div",{staticClass:"ninja_form_group"},[n("label",[t._v(t._s(t.$t("Query Limit for Frontend"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Query Limit")]),t._v(" "),n("p",[t._v("\n Please specify how many posts/CPTs you want to show in total, Leave blank to show all\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{type:"number",size:"small"},model:{value:t.config.table.query_extra.query_limit,callback:function(e){t.$set(t.config.table.query_extra,"query_limit",e)},expression:"config.table.query_extra.query_limit"}}),t._v(" "),t._m(0)],1),t._v(" "),n("div",{staticClass:"ninja_form_group"},[n("label",[t._v(t._s(t.$t("Order By Column"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Order By Column")]),t._v(" "),n("p",[t._v("\n Please specify order by column. The script will order by with the selected column\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{attrs:{size:"mini"},model:{value:t.config.table.query_extra.order_by_column,callback:function(e){t.$set(t.config.table.query_extra,"order_by_column",e)},expression:"config.table.query_extra.order_by_column"}},t._l(t.orderByFields,function(t){return n("el-option",{key:t,attrs:{value:t,label:t}})}))],1),t._v(" "),n("div",{staticClass:"ninja_form_group",staticStyle:{"margin-top":"20px"}},[n("label",[t._v(t._s(t.$t("Order By Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Order By Type")]),t._v(" "),n("p",[t._v("\n Please specify order by type. The script will order with your selected type\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{attrs:{size:"mini"},model:{value:t.config.table.query_extra.order_by,callback:function(e){t.$set(t.config.table.query_extra,"order_by",e)},expression:"config.table.query_extra.order_by"}},[n("el-option",{attrs:{value:"ASC",label:"Ascending"}}),t._v(" "),n("el-option",{attrs:{value:"DESC",label:"Descending"}})],1)],1)]):t._e()],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",[e("small",[this._v("Please specify how many posts/CPTs you want to show in total, Leave blank to show all")])])}]}},function(t,e,n){var a=n(0)(n(266),n(267),!1,function(t){n(264)},null,null);t.exports=a.exports},function(t,e,n){var a=n(265);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("d5fbe0d6",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".el-row{margin-bottom:20px}.el-row:last-child{margin-bottom:0}.wp-post-conditions-el-picker{z-index:9999!important}.compact{padding:0!important;margin-top:3px!important}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};e.default={name:"WPPostMetaQuery",props:["metas"],data:function(){return{default_condition:{field:null,operator:null,value:null,operators:[],selectableOptions:[],is_selectable:"false"},operators:[{key:"=",value:"Equal To"},{key:"!=",value:"Not Equal To"},{key:"IN",value:"In"},{key:"NOT IN",value:"Not In"},{key:">",value:"Greater Than"},{key:">=",value:"Greater Than Or Equal To"},{key:"<",value:"Less Than"},{key:"<=",value:"Less Than Or Equal To"}]}},methods:{addCondition:function(t){this.metas.push(a({},this.default_condition))},removeCondition:function(t,e){this.metas.splice(t,1)},setOperators:function(t,e){e.operators=[].concat(function(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}(this.operators)),this.setValueField(t,e)},setValueField:function(t,e){e.value=null,e.is_selectable="false",e.selectableOptions=[]},shouldShowInfo:function(t){return-1!==["IN","NOT IN"].indexOf(t)}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"wp-post-conditions"},[n("el-row",[n("el-col",{attrs:{md:21}},[n("el-alert",{attrs:{type:"info",title:"",closable:!1,description:"You can add additional meta query here.","show-icon":""}})],1),t._v(" "),n("el-col",{staticStyle:{"text-align":"right"},attrs:{md:3}},[n("el-button",{staticStyle:{"margin-top":"4px"},attrs:{type:"primary",icon:"el-icon-plus",size:"small"},on:{click:function(e){t.addCondition(e)}}})],1)],1),t._v(" "),t._l(t.metas,function(e,a){return[n("el-row",{attrs:{gutter:20}},[n("el-col",{attrs:{md:7,sm:7}},[n("el-input",{attrs:{placeholder:"Meta Key"},on:{change:function(n){t.setOperators(n,e)}},model:{value:e.field,callback:function(n){t.$set(e,"field",n)},expression:"condition.field"}})],1),t._v(" "),n("el-col",{attrs:{md:7,sm:7}},[n("el-select",{attrs:{placeholder:"Select"},model:{value:e.operator,callback:function(n){t.$set(e,"operator",n)},expression:"condition.operator"}},t._l(e.operators,function(t){return n("el-option",{key:t.key,attrs:{label:t.value,value:t.key}})}))],1),t._v(" "),n("el-col",{attrs:{md:7,sm:7}},[n("el-input",{attrs:{placeholder:"Value"},model:{value:e.value,callback:function(n){t.$set(e,"value",n)},expression:"condition.value"}}),t._v(" "),t.shouldShowInfo(e.operator)?[n("el-alert",{staticClass:"compact",attrs:{title:"enter comma separated value",type:"info",closable:!1}})]:t._e()],2),t._v(" "),n("el-col",{staticStyle:{"text-align":"right"},attrs:{md:3,sm:3}},[n("el-button",{staticStyle:{"margin-top":"4px"},attrs:{type:"danger",icon:"el-icon-delete",size:"small"},on:{click:function(e){t.removeCondition(a,e)}}})],1)],1)]})],2)},staticRenderFns:[]}},function(t,e,n){var a=n(269);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("17456e14",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".premium-notice .buy_now_button[data-v-06fd6e1a]{text-decoration:none}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"PremiumNotice",props:["highlight"]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-alert",{staticClass:"premium-notice",attrs:{title:"",type:"warning",closable:!1}},[n("p",[t._v("\n This is a Premium feature. Get\n "),t.highlight?n("b",[t._v(t._s(t.highlight)+",")]):t._e(),t._v(" "),n("b",[t._v("unlimited customizations")]),t._v(",\n "),n("b",[t._v("data filters")]),t._v(",\n "),n("b",[t._v("professional looks")]),t._v(",\n "),n("b",[t._v("Many More Integrations")]),t._v("\n and so many things from the Pro version.\n ")]),t._v(" "),n("a",{staticClass:"buy_now_button el-button el-button--danger el-button--mini",attrs:{href:"https://wpmanageninja.com/ninja-tables/ninja-tables-pro-pricing/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade"}},[t._v("\n Get Premium Version Now\n ")])])},staticRenderFns:[]}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"UpgradeNotice"}},function(t,e){t.exports={render:function(){var t=this.$createElement,e=this._self._c||t;return e("el-alert",{staticClass:"update-notice",attrs:{title:"",type:"warning",closable:!1,"show-icon":""}},[e("p",[this._v("\n Please update Ninja Tables Pro Plugin to latest version. Required Ninja Table Version: 3.0 or later\n ")])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"ninja_tables_wpposts"},[t.hasPro?t.activated_features.wp_posts_table?n("div",[t.hasPLainLayout?[n("el-row",[n("el-col",{staticClass:"table-rows",attrs:{md:12}},[n("el-transfer",{staticStyle:{"text-align":"left",display:"block"},attrs:{data:t.post_types,titles:["All Types","Selected Types"]},on:{change:t.handlePostTypeChange},model:{value:t.selected_post_types,callback:function(e){t.selected_post_types=e},expression:"selected_post_types"}})],1),t._v(" "),n("el-col",{staticClass:"table-rows",attrs:{md:12}},[n("el-transfer",{staticStyle:{"text-align":"left",display:"block"},attrs:{data:t.post_types_fields,titles:["All Properties","Selected Properties"]},model:{value:t.selected_post_types_fields,callback:function(e){t.selected_post_types_fields=e},expression:"selected_post_types_fields"}})],1)],1),t._v(" "),n("el-row",[n("el-collapse",{staticClass:"nt_conditions",model:{value:t.conditions_section,callback:function(e){t.conditions_section=e},expression:"conditions_section"}},[n("el-collapse-item",{attrs:{name:"1"}},[n("template",{slot:"title"},[n("h4",{staticClass:"no-margin"},[t._v("Conditions")])]),t._v(" "),n("wp-post-conditions",{attrs:{config:t.config,selected_post_types:t.selected_post_types,postStatuses:t.postStatuses,conditions:t.conditions,allPostTypes:t.all_types,fields:t.query_able_post_types_fields}})],2)],1),t._v(" "),n("el-collapse",{staticClass:"nt_conditions",model:{value:t.meta_query,callback:function(e){t.meta_query=e},expression:"meta_query"}},[n("el-collapse-item",{attrs:{name:"1"}},[n("template",{slot:"title"},[n("h4",{staticClass:"no-margin"},[t._v("Meta Query")])]),t._v(" "),n("wp-post-meta-query",{attrs:{config:t.config,metas:t.metas,fields:t.query_able_post_types_fields}})],2)],1)],1),t._v(" "),n("el-row",[n("el-button",{staticStyle:{float:"right","margin-top":"12px"},attrs:{type:"success",size:"small",loading:t.saving},on:{click:t.save}},[t._v("Update\n ")])],1)]:t._e(),t._v(" "),t.hasPLainLayout?t._e():[n("h3",[t._v("\n Construct Table from Posts / CPTs\n ")]),t._v(" "),t._m(0),t._v(" "),n("el-steps",{attrs:{active:t.active_step,"align-center":""}},[n("el-step",{attrs:{title:"Step 1"}}),t._v(" "),n("el-step",{attrs:{title:"Step 2"}})],1),t._v(" "),0==t.active_step?[n("el-row",{staticStyle:{"margin-top":"20px"}},[n("el-input",{attrs:{placeholder:"Title"},model:{value:t.title,callback:function(e){t.title=e},expression:"title"}})],1),t._v(" "),n("el-row",{staticStyle:{"margin-top":"20px"}},[n("div",{staticStyle:{"text-align":"center"}},[n("el-transfer",{staticStyle:{"text-align":"left",display:"block"},attrs:{data:t.post_types,titles:["All Types","Selected Types"]},on:{change:t.handlePostTypeChange},model:{value:t.selected_post_types,callback:function(e){t.selected_post_types=e},expression:"selected_post_types"}})],1)])]:t._e(),t._v(" "),1==t.active_step?[n("el-row",{staticStyle:{"margin-top":"20px"}},[n("div",{staticStyle:{"text-align":"center"}},[n("el-transfer",{staticStyle:{"text-align":"left",display:"block"},attrs:{data:t.post_types_fields,titles:["All Properties","Selected Properties"]},model:{value:t.selected_post_types_fields,callback:function(e){t.selected_post_types_fields=e},expression:"selected_post_types_fields"}})],1)]),t._v(" "),n("el-row",{staticStyle:{"margin-top":"20px"}},[n("div",[n("el-collapse",{attrs:{accordion:"",value:"conditions"},model:{value:t.conditions_section,callback:function(e){t.conditions_section=e},expression:"conditions_section"}},[n("el-collapse-item",{attrs:{name:"conditions",title:"Conditions"}},[t.conditions_section?n("wp-post-conditions",{attrs:{postStatuses:t.postStatuses,selected_post_types:t.selected_post_types,conditions:t.conditions,allPostTypes:t.all_types,fields:t.query_able_post_types_fields}}):t._e()],1)],1)],1)])]:t._e(),t._v(" "),n("el-row",[n("el-col",{attrs:{md:12}},[n("el-button",{staticStyle:{"margin-top":"12px"},attrs:{type:"primary"},on:{click:t.nextStep}},[t._v("\n "+t._s(t.active_step>0?"Prev":"Next")+"\n ")])],1),t._v(" "),n("el-col",{attrs:{md:12}},[t.active_step>0?n("el-button",{staticStyle:{float:"right","margin-top":"12px"},attrs:{type:"success",disabled:!t.activated_features.wp_posts_table,loading:t.saving},on:{click:t.save}},[t._v("Save\n ")]):t._e()],1)],1)]],2):[n("upgrade-notice")]:[n("premium-notice",{attrs:{highlight:"Create nice tables from your existings posts/pages/custom post types"}})]],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",{staticClass:"ninja_subtitle"},[this._v("\n Displays website content in a searchable, sortable with Ninja Tables. It supports custom posts,\n pages, &\n custom post types. "),e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/wp-posts-table/"}},[this._v("Learn more\n about this module")])])}]}},function(t,e,n){var a=n(0)(n(276),n(295),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(112),i=n.n(a);e.default={name:"woo_product_table",components:{WooNav:i.a},data:function(){return{loading:!1,saving:!1,query_selections:{},post_title:"",query_conditions:{}}},props:{tableCreated:{type:Function}},methods:{save:function(){var t=this;this.post_title?(this.saving=!0,jQuery.post(ajaxurl,{action:"ninja_table_woocommerece_create_table",post_title:this.post_title,query_selections:this.query_selections,query_conditions:this.query_conditions}).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"}),t.tableCreated(e.data.table_id)}).fail(function(e){var n="",a=e.responseJSON.data.message;for(var i in a)n+=" "+a[i];t.$message({showClose:!0,message:n,type:"error"})}).always(function(e){return t.saving=!1})):this.$message({showClose:!0,message:"Please Provide a Table Title",type:"error"})}},mounted:function(){}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(14),i=n.n(a);e.default={name:"woo_conditions",props:["query_selections","query_conditions"],data:function(){return{query_terms:[],loading:!1,product_orders:{post_title:"Product Title",date:"Date",menu_order:"Menu Order",average_rating:"Average Rating",price:"price",popularity:"Popularity (Sales)",random:"Random"}}},methods:{getWooSettings:function(){var t=this;this.loading=!0,this.$get({action:"ninja_table_woocommerece_get_options"}).then(function(e){var n=e.data.query_terms;i()(n,function(e,n){t.query_selections[n]||t.$set(t.query_selections,n,[])}),t.query_terms=n}).fail(function(t){}).always(function(){t.loading=!1})}},mounted:function(){this.getWooSettings()}}},function(t,e){t.exports=function(t,e){for(var n=-1,a=null==t?0:t.length;++n<a&&!1!==e(t[n],n,t););return t}},function(t,e,n){var a=n(280),i=n(292)(a);t.exports=i},function(t,e,n){var a=n(281),i=n(37);t.exports=function(t,e){return t&&a(t,e,i)}},function(t,e,n){var a=n(282)();t.exports=a},function(t,e){t.exports=function(t){return function(e,n,a){for(var i=-1,o=Object(e),s=a(e),l=s.length;l--;){var r=s[t?l:++i];if(!1===n(o[r],r,o))break}return e}}},function(t,e,n){var a=n(284),i=n(113),o=n(4),s=n(114),l=n(116),r=n(117),c=Object.prototype.hasOwnProperty;t.exports=function(t,e){var n=o(t),u=!n&&i(t),d=!n&&!u&&s(t),_=!n&&!u&&!d&&r(t),p=n||u||d||_,f=p?a(t.length,String):[],m=f.length;for(var v in t)!e&&!c.call(t,v)||p&&("length"==v||d&&("offset"==v||"parent"==v)||_&&("buffer"==v||"byteLength"==v||"byteOffset"==v)||l(v,m))||f.push(v);return f}},function(t,e){t.exports=function(t,e){for(var n=-1,a=Array(t);++n<t;)a[n]=e(n);return a}},function(t,e,n){var a=n(10),i=n(6),o="[object Arguments]";t.exports=function(t){return i(t)&&a(t)==o}},function(t,e){t.exports=function(){return!1}},function(t,e,n){var a=n(10),i=n(73),o=n(6),s={};s["[object Float32Array]"]=s["[object Float64Array]"]=s["[object Int8Array]"]=s["[object Int16Array]"]=s["[object Int32Array]"]=s["[object Uint8Array]"]=s["[object Uint8ClampedArray]"]=s["[object Uint16Array]"]=s["[object Uint32Array]"]=!0,s["[object Arguments]"]=s["[object Array]"]=s["[object ArrayBuffer]"]=s["[object Boolean]"]=s["[object DataView]"]=s["[object Date]"]=s["[object Error]"]=s["[object Function]"]=s["[object Map]"]=s["[object Number]"]=s["[object Object]"]=s["[object RegExp]"]=s["[object Set]"]=s["[object String]"]=s["[object WeakMap]"]=!1,t.exports=function(t){return o(t)&&i(t.length)&&!!s[a(t)]}},function(t,e,n){(function(t){var a=n(38),i="object"==typeof e&&e&&!e.nodeType&&e,o=i&&"object"==typeof t&&t&&!t.nodeType&&t,s=o&&o.exports===i&&a.process,l=function(){try{var t=o&&o.require&&o.require("util").types;return t||s&&s.binding&&s.binding("util")}catch(t){}}();t.exports=l}).call(e,n(115)(t))},function(t,e){var n=Object.prototype;t.exports=function(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||n)}},function(t,e,n){var a=n(291)(Object.keys,Object);t.exports=a},function(t,e){t.exports=function(t,e){return function(n){return t(e(n))}}},function(t,e,n){var a=n(39);t.exports=function(t,e){return function(n,i){if(null==n)return n;if(!a(n))return t(n,i);for(var o=n.length,s=e?o:-1,l=Object(n);(e?s--:++s<o)&&!1!==i(l[s],s,l););return n}}},function(t,e,n){var a=n(41);t.exports=function(t){return"function"==typeof t?t:a}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"ntn_query_selections"},[t._l(t.query_terms,function(e,a){return n("div",{staticClass:"nt_each_selection"},[n("div",{staticClass:"nt_query_header"},[n("h3",[t._v(t._s(e.title))]),t._v(" "),n("p",[t._v(t._s(e.description))])]),t._v(" "),n("div",{staticClass:"nt_query_body"},[n("el-checkbox-group",{model:{value:t.query_selections[a],callback:function(e){t.$set(t.query_selections,a,e)},expression:"query_selections[term_name]"}},t._l(e.terms,function(e){return n("el-checkbox",{key:e.slug,attrs:{label:e.slug}},[t._v(t._s(e.name)+" ("+t._s(e.count)+")\n ")])}))],1)])}),t._v(" "),n("div",{staticClass:"nt_each_selection"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.query_conditions.hide_out_of_stock,callback:function(e){t.$set(t.query_conditions,"hide_out_of_stock",e)},expression:"query_conditions.hide_out_of_stock"}},[t._v("\n Hide "),n("b",[t._v("out of stocks")]),t._v(" items\n ")])],1),t._v(" "),n("div",{staticClass:"nt_each_selection"},[n("label",[t._v("\n Initial Order By\n "),n("el-select",{attrs:{size:"mini",placeholder:"Order By"},model:{value:t.query_conditions.order_by,callback:function(e){t.$set(t.query_conditions,"order_by",e)},expression:"query_conditions.order_by"}},t._l(t.product_orders,function(t,e){return n("el-option",{key:e,attrs:{label:t,value:e}})})),t._v(" "),n("el-select",{directives:[{name:"show",rawName:"v-show",value:t.query_conditions.order_by&&"random"!=t.query_conditions.order_by,expression:"query_conditions.order_by && query_conditions.order_by != 'random'"}],attrs:{size:"mini",placeholder:"Order By Type"},model:{value:t.query_conditions.order_by_type,callback:function(e){t.$set(t.query_conditions,"order_by_type",e)},expression:"query_conditions.order_by_type"}},[n("el-option",{attrs:{label:"Assending Way",value:"ASC"}}),t._v(" "),n("el-option",{attrs:{label:"Descending Way",value:"DESC"}})],1)],1)])],2)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"woo_table_creator"},[t._m(0),t._v(" "),n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"name"}},[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.post_title,expression:"post_title"}],staticClass:"form-control",attrs:{type:"text",id:"name",placeholder:"Enter a title to identify your table"},domProps:{value:t.post_title},on:{input:function(e){e.target.composing||(t.post_title=e.target.value)}}})]),t._v(" "),n("woo-nav",{attrs:{query_selections:t.query_selections,query_conditions:t.query_conditions}}),t._v(" "),n("div",{staticClass:"form-group"},[n("el-button",{attrs:{loading:t.saving,type:"primary",size:"small"},on:{click:function(e){t.save()}}},[t._v("\n Create Products Table\n ")])],1)],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"nt_module_header"},[e("h3",[this._v("\n Construct Table from Your WooCommerce Products\n ")]),this._v(" "),e("p",{staticClass:"ninja_subtitle"},[this._v("\n Displays products content in a searchable, sortable with Ninja Tables. "),e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/ninja-tables/woocommerce-product-table/"}},[this._v("Learn more\n about wocommerece integration")])])])}]}},function(t,e,n){var a=n(297);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("9f2741de",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".fluent-form-promo p{font-size:medium}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"FluentForm",props:{tableCreated:{type:Function,required:!0},editing:{type:Boolean},config:{type:Object}},data:function(){return{installing:!1,fetching:!1,forms:[],fields:[],btnLoading:!1,post_title:"",form:{id:null,fields:[],entry_status:"all",entry_limit:1e3},hasFluentForm:!!window.ninja_table_admin.hasFluentForm,isFluentFormUpdated:!!window.ninja_table_admin.isFluentFormUpdated}},methods:{fetchForms:function(){var t=this;this.fetching=!0,this.$get({action:"ninja_tables_get-fluentform-forms"}).then(function(e){return t.forms=e.data}).fail(function(t){return console.log(t)}).always(function(){t.fetching=!1})},handleFormSelectionChange:function(t){var e=this;this.$get({form_Id:t,action:"ninja-tables_get-fluentform-fields"}).then(function(t){e.fields=t.data,e.editing&&(e.form.entry_limit=e.config.table.entry_limit,e.form.entry_status=e.config.table.entry_status,e.$nextTick(function(){var t=e.config.columns.map(function(t){return t.original_name});e.fields.filter(function(e){return-1!=t.indexOf(e.name)}).forEach(function(t){e.$refs.rowSelectableTable.toggleRowSelection(t)})}))}).fail(function(t){}).always(function(){})},handleFieldsSelectionChange:function(t){this.form.fields=t},save:function(){var t=this;this.btnLoading=!0,this.config&&this.config.table.current_user_entry_only&&(this.form.current_user_entry_only=this.config.table.current_user_entry_only),jQuery.post(ajaxurl,{action:"ninja_tables_save_fluentform_table",post_title:this.post_title,form:this.form,table_Id:this.config&&this.config.table.ID||null}).then(function(e){return t.tableCreated(e.data.table_id)}).fail(function(e){var n="",a=e.responseJSON.data.message;for(var i in a)n+=" "+a[i];t.$message({showClose:!0,message:n,type:"error"})}).always(function(e){return t.btnLoading=!1})},installFluentFrom:function(){var t=this;this.installing=!0,jQuery.post(ajaxurl,{action:"ninja_tables_ajax_actions",target_action:"install_fluent_form"}).then(function(e){t.$message.success(e.data.message),e.data.redirect_url&&(window.location.href=e.data.redirect_url)}).fail(function(e){t.$message.error(e.responseJSON.message)}).always(function(){t.installing=!1})}},mounted:function(){this.hasFluentForm&&(this.editing?this.handleFormSelectionChange(this.form.id=this.config.table.fluentFormFormId):this.fetchForms())}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_modal-body"},[t.editing?t._e():n("h3",[t._v("\n Construct Table from WP Fluent Form Entries\n ")]),t._v(" "),t.isFluentFormUpdated?[t.editing?t._e():n("p",{staticClass:"ninja_subtitle"},[t._v("\n Prepare your table from your existing WP Fluent Forms submissions. It can be used to easily showcase\n your form submissions.\n "),n("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/wp-fluent-form-integration/"}},[t._v("Click\n here to learn more about WP Fluent From Integration")])]),t._v(" "),t.editing?t._e():n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"name"}},[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.post_title,expression:"post_title"}],staticClass:"form-control",attrs:{type:"text",id:"name",placeholder:"Enter a title to identify your table"},domProps:{value:t.post_title},on:{input:function(e){e.target.composing||(t.post_title=e.target.value)}}})]),t._v(" "),t.editing?t._e():n("div",{staticClass:"form-group"},[n("el-select",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}],staticStyle:{width:"100%"},attrs:{filterable:"",placeholder:"Select a Form"},on:{change:t.handleFormSelectionChange},model:{value:t.form.id,callback:function(e){t.$set(t.form,"id",e)},expression:"form.id"}},t._l(t.forms,function(t){return n("el-option",{key:t.id,attrs:{label:t.id+" : "+t.title,value:t.id}})}))],1),t._v(" "),t.form.id?n("div",{staticClass:"form-group"},[n("el-table",{ref:"rowSelectableTable",staticStyle:{width:"100% !important"},attrs:{data:t.fields,"empty-text":"Loading..."},on:{"selection-change":t.handleFieldsSelectionChange}},[n("el-table-column",{attrs:{type:"selection"}}),t._v(" "),n("el-table-column",{attrs:{prop:"label",label:"Select Entry Fields"}})],1)],1):t._e(),t._v(" "),n("div",{staticClass:"form-group"},[n("strong",[t._v("Options (Optional)")]),t._v(" "),n("hr"),t._v(" "),n("el-row",{staticStyle:{"margin-top":"15px"},attrs:{gutter:20}},[n("el-col",{attrs:{md:12}},[n("el-row",[n("el-col",{staticStyle:{"margin-top":"10px"},attrs:{md:5}},[n("strong",[n("el-tooltip",{attrs:{placement:"right",effect:"light",content:"Maximun records to show in frontend, keep empty to show all."}},[n("i",{staticClass:"el-icon-info el-text-info"})]),t._v("\n Max Records:\n ")],1)]),t._v(" "),n("el-col",{attrs:{md:19}},[n("el-input",{model:{value:t.form.entry_limit,callback:function(e){t.$set(t.form,"entry_limit",e)},expression:"form.entry_limit"}})],1)],1)],1),t._v(" "),n("el-col",{staticStyle:{"margin-top":"10px"},attrs:{md:12}},[n("el-row",[n("el-col",{attrs:{md:4}},[n("strong",[n("el-tooltip",{attrs:{placement:"right",effect:"light",content:"Select what type of entries you want to show from fluent form."}},[n("i",{staticClass:"el-icon-info el-text-info"})]),t._v("\n Entry Type:\n ")],1)]),t._v(" "),n("el-col",{staticStyle:{"margin-top":"3px"},attrs:{md:20}},[n("el-radio-group",{model:{value:t.form.entry_status,callback:function(e){t.$set(t.form,"entry_status",e)},expression:"form.entry_status"}},[n("el-radio",{attrs:{label:"all"}},[t._v("All")]),t._v(" "),n("el-radio",{attrs:{label:"read"}},[t._v("Read")]),t._v(" "),n("el-radio",{attrs:{label:"unread"}},[t._v("Unread")])],1)],1)],1)],1)],1),t._v(" "),t.config&&t.config.table?[n("br"),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.config.table.current_user_entry_only,callback:function(e){t.$set(t.config.table,"current_user_entry_only",e)},expression:"config.table.current_user_entry_only"}},[t._v("Show current user submissions only at frontend")])]:t._e()],2),t._v(" "),n("hr"),t._v(" "),n("div",{staticClass:"form-group"},[n("el-button",{staticStyle:{"margin-top":"12px",float:"right"},attrs:{size:"small",type:"primary",loading:t.btnLoading},on:{click:t.save}},[t._v(t._s(t.editing?t.$t("Update"):t.$t("Save"))+"\n ")])],1)]:t.hasFluentForm?[n("el-alert",{staticClass:"premium-notice",attrs:{title:"",type:"warning",closable:!1,"show-icon":""}},[n("p",[t._v("To use this feature your WP Fluent Form need to be updated. Please update WP Fluent From from plugins\n screen")])]),t._v(" "),n("h4",[t._v("See the form in action:")]),t._v(" "),n("br"),t._v(" "),t._m(0)]:n("div",{staticClass:"fluent-form-promo"},[t._m(1),t._v(" "),n("div",[n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.installing,expression:"installing"}],attrs:{type:"success"},on:{click:t.installFluentFrom}},[t.installing?n("span",[t._v("Installing WP Fluent From...")]):n("span",[t._v("Install Fluent Form Now")])]),t._v(" "),t.installing?n("p",[t._v("Please wait while installing WP Fluent From")]):t._e()],1),t._v(" "),n("h4",[t._v("See the form in action:")]),t._v(" "),n("br"),t._v(" "),t._m(2)])],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticStyle:{position:"relative","padding-bottom":"56.25%","padding-top":"25px",height:"0"}},[e("iframe",{staticStyle:{position:"absolute",top:"0",left:"0",width:"100%",height:"100%"},attrs:{width:"700",height:"394",src:"https://www.youtube.com/embed/XxBrmuhu6yQ",frameborder:"0",allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:""}})])},function(){var t=this.$createElement,e=this._self._c||t;return e("p",[e("a",{attrs:{href:"https://wordpress.org/plugins/fluentform",target:"_blank"}},[this._v("WP Fluent Form")]),this._v(" is a WordPress\n Contact Form plugin packed with all the premium features you would need to create\n a responsive, customizable, drag and drop form. Using this module, You can easily show your form entries\n in Ninja Tables.\n ")])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticStyle:{position:"relative","padding-bottom":"56.25%","padding-top":"25px",height:"0"}},[e("iframe",{staticStyle:{position:"absolute",top:"0",left:"0",width:"100%",height:"100%"},attrs:{width:"700",height:"394",src:"https://www.youtube.com/embed/XxBrmuhu6yQ",frameborder:"0",allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:""}})])}]}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(27),i=n.n(a),o=n(111),s=n.n(o),l=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};e.default={name:"Remote-Data-Source",components:{PremiumNotice:i.a,UpgradeNotice:s.a},props:{columns:{type:Array},type:{type:String,required:!0},tableCreated:{type:Function,required:!0},hasPro:{required:!0},table:{type:Object,default:function(){return{post_title:"",remote_url:"",fields:[],table_id:null}}},editing:{type:Boolean,default:!1},activated_features:{type:Object,default:function(){return{}}}},data:function(){return{fields:[],active_step:0,saving:!1,fetching:!1}},methods:{nextStep:function(){var t="";if(this.table.post_title||(t+=" The title field is required."),this.table.remote_url||(t+=" The url field is required."),t=jQuery.trim(t))return this.active_step=0,void this.$message({showClose:!0,message:t,type:"error"});this.active_step++>=1?this.active_step=0:this.fatchRemoteData()},fatchRemoteData:function(){var t=this;this.fetching=!0,jQuery.getJSON(ajaxurl,l({action:"ninja_table_external_data_source_create"},this.table,{type:this.type,get_headers_only:!0})).then(function(e){var n=[];if(jQuery.each(e.data,function(t){return n.push({name:t})}),t.fields=n,t.editing){var a=t.columns.map(function(t){return t.original_name});t.$nextTick(function(){t.fields.filter(function(t){return-1!=a.indexOf(t.name)}).forEach(function(e){t.$refs.rowSelectableTable.toggleRowSelection(e)})})}}).fail(function(e){var n="",a=e.responseJSON.data.message;for(var i in a)n+=" "+a[i];t.$message({showClose:!0,message:n,type:"error"})}).always(function(e){return t.fetching=!1})},handleFieldsSelectionChange:function(t){this.table.fields=t},save:function(t){var e=this;this.saving=!0,jQuery.post(ajaxurl,l({},this.table,{type:this.type,action:"ninja_table_external_data_source_create"})).then(function(t){var n=t.data;return e.tableCreated(n.ID)}).fail(function(t){var n="",a=t.responseJSON.data.message;for(var i in a)n+=" "+a[i];e.$message({showClose:!0,message:n,type:"error"})}).always(function(){return e.saving=!1})}},created:function(){this.editing&&(this.table.table_id=this.table.ID,this.fatchRemoteData())}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.editing?[n("el-table",{ref:"rowSelectableTable",staticStyle:{width:"100% !important"},attrs:{loading:t.fetching,data:t.fields},on:{"selection-change":t.handleFieldsSelectionChange}},[n("el-table-column",{attrs:{type:"selection"}}),t._v(" "),n("el-table-column",{attrs:{prop:"name",label:"Select Entry Fields"}})],1)]:n("div",{staticClass:"ninja_modal-body"},[n("el-steps",{attrs:{active:t.active_step,"align-center":""}},[n("el-step",{attrs:{title:"Step 1"}}),t._v(" "),n("el-step",{attrs:{title:"Step 2"}})],1),t._v(" "),0==t.active_step?["google-csv"==t.type?[n("h3",[t._v("\n Construct Table from Google Sheets\n ")]),t._v(" "),t._m(0)]:t._e(),t._v(" "),"csv"==t.type?[n("h3",[t._v("\n Construct Table from Remote CSV File\n ")]),t._v(" "),n("p",{staticClass:"ninja_subtitle"},[t._v("\n Whenever your remote CSV data changes it will be synced here automatically.\n ")])]:t._e(),t._v(" "),n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"name"}},[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.table.post_title,expression:"table.post_title"}],staticClass:"form-control",attrs:{type:"text",id:"name",placeholder:"Enter a title to identify your table",disabled:!t.activated_features.external_data_source},domProps:{value:t.table.post_title},on:{input:function(e){e.target.composing||t.$set(t.table,"post_title",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"remote_url"}},[t._v(t._s(t.$t("Data Source URL")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.table.remote_url,expression:"table.remote_url"}],staticClass:"form-control",attrs:{id:"remote_url",type:"text",placeholder:"Enter your source URL",disabled:!t.activated_features.external_data_source},domProps:{value:t.table.remote_url},on:{input:function(e){e.target.composing||t.$set(t.table,"remote_url",e.target.value)}}})])]:[n("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}],ref:"rowSelectableTable",staticStyle:{width:"100% !important"},attrs:{data:t.fields},on:{"selection-change":t.handleFieldsSelectionChange}},[n("el-table-column",{attrs:{type:"selection"}}),t._v(" "),n("el-table-column",{attrs:{prop:"name",label:"Select Entry Fields"}})],1)]],2),t._v(" "),t.hasPro?t.activated_features.external_data_source?t._e():[n("UpgradeNotice")]:[n("premium-notice")],t._v(" "),n("div",{staticClass:"modal-footer",staticStyle:{"margin-top":"20px"}},[t.editing?t._e():n("el-row",[n("el-col",{attrs:{md:12}},[n("el-button",{staticStyle:{float:"left"},attrs:{type:"primary",size:"small"},on:{click:t.nextStep}},[t._v("\n "+t._s(t.active_step>0?"Prev":"Next")+"\n ")])],1),t._v(" "),t.active_step>0?n("el-col",{attrs:{md:12}},[n("el-button",{staticStyle:{float:"right"},attrs:{type:"success",size:"small",loading:t.saving,disabled:!t.activated_features.external_data_source},on:{click:t.save}},[t._v(t._s(t.$t("Save"))+"\n ")])],1):t._e()],1)],1),t._v(" "),t.editing?n("div",{staticStyle:{"margin-top":"15px"}},[n("el-input",{attrs:{placeholder:"Remote URL..."},on:{keyup:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?t.fatchRemoteData(e):null}},model:{value:t.table.remoteURL,callback:function(e){t.$set(t.table,"remoteURL",e)},expression:"table.remoteURL"}},[n("el-button",{attrs:{slot:"prepend",loading:t.fetching,size:"small",plain:""},on:{click:t.fatchRemoteData},slot:"prepend"},[t._v(t._s(t.$t("Fetch Columns"))+"\n ")]),t._v(" "),n("el-button",{attrs:{slot:"append",loading:t.saving,size:"small",plain:""},on:{click:t.save},slot:"append"},[t._v(t._s(t.$t("Update Settings"))+"\n ")])],1)],1):t._e()],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",{staticClass:"ninja_subtitle"},[this._v("\n Whenever your Google Sheets data changes it will be automatically reflected here. You won't have\n to do a thing. Please provide the publishable public URL of your google sheet.\n "),e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/construct-table-from-google-sheets/"}},[this._v("View\n Documentation Here")])])}]}},function(t,e,n){var a=n(0)(n(305),n(306),!1,function(t){n(303)},"data-v-aec52ad6",null);t.exports=a.exports},function(t,e,n){var a=n(304);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("4ed069d6",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".hint[data-v-aec52ad6]{width:100%;background-color:#f4f4f5;color:#909399;padding:8px 16px}.form_group.ninja_errors[data-v-aec52ad6]{background:#ffd7d7;padding:10px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ImportTable",data:function(){return{imports:{source:"file",sourceOptions:["file"],formatOptions:{csv:this.$t("CSV - Comma-separated values"),json:this.$t("JSON - JavaScript Object Notation"),ninjaJson:this.$t("JSON - Exported From Ninja Tables")},format:"csv"},do_unicode:"no",errors:[],btnLoading:!1}},methods:{clear:function(){jQuery("#fileUpload").val("")},importTable:function(){var t=this;if(this.btnLoading=!0,this.errors=[],"file"===this.imports.source){var e=jQuery("#fileUpload")[0].files[0];if(e){var n=new FormData;n.append("format",this.imports.format),n.append("file",e),n.append("action","ninja_tables_ajax_actions"),n.append("target_action","import-table"),n.append("do_unicode",this.do_unicode),jQuery.ajax({url:ajaxurl,data:n,type:"POST",contentType:!1,processData:!1,success:function(e){t.$message({showClose:!0,message:e.message,type:"success"}),e.tableId&&t.$router.push({name:"data_items",params:{table_id:e.tableId}})},error:function(e){t.errors=e.responseJSON.data.errors,t.$message({showClose:!0,message:e.responseJSON.data.message,type:"error"}),t.btnLoading=!1}})}else this.btnLoading=!1}else this.btnLoading=!0}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"ninja_modal-body"},[n("h3",[t._v("Import Table")]),t._v(" "),n("p",{staticClass:"ninja_subtitle"},[t._v("\n Import table from existing CSV or JSON file.\n ")]),t._v(" "),n("div",{staticClass:"form"},[n("div",{staticClass:"form-group"},["file"===t.imports.source?[n("label",{attrs:{for:"fileUpload"}},[t._v(t._s(t.$t("Select file:")))]),t._v(" "),n("br"),t._v(" "),n("input",{attrs:{type:"file",id:"fileUpload"},on:{click:t.clear}})]:"url"===t.imports.source?[t._v("\n File upload url\n ")]:[n("label",[t._v(t._s(t.$t("Import data:")))]),t._v(" "),n("textarea",{attrs:{rows:"10"}})]],2),t._v(" "),n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"import_format"}},[t._v(t._s(t.$t("Import Format:")))]),t._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.imports.format,expression:"imports.format"}],staticClass:"form-control",attrs:{id:"import_format"},on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.imports,"format",e.target.multiple?n:n[0])}}},t._l(t.imports.formatOptions,function(e,a){return n("option",{domProps:{value:a}},[t._v(t._s(t.$t(e))+"\n ")])})),t._v(" "),"csv"===t.imports.format?[t._m(0),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.do_unicode,callback:function(e){t.do_unicode=e},expression:"do_unicode"}},[t._v("Convert to UTF-8 format ( Check this if your csv is non-unicode format )")])]:t._e(),t._v(" "),n("p",{directives:[{name:"show",rawName:"v-show",value:"json"===t.imports.format||"ninjaJson"===t.imports.format,expression:"imports.format === 'json' || imports.format === 'ninjaJson'"}],staticClass:"hint"},[t._v("\n Check tutorial for importing Table from JSON file\n\n "),n("a",{attrs:{href:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables",target:"_blank"}},[t._v("here")])])],2),t._v(" "),t.errors.length?n("div",{staticClass:"form_group ninja_errors"},[n("ul",t._l(t.errors,function(e,a){return n("li",{key:a},[t._v("\n "+t._s(e.info)+"\n ")])}))]):t._e()])]),t._v(" "),n("div",{staticClass:"modal-footer"},[n("el-button",{attrs:{size:"small",type:"primary",loading:t.btnLoading},on:{click:t.importTable}},[t._v("\n "+t._s(t.$t("Import"))+"\n ")])],1)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",{staticClass:"hint"},[this._v("\n Check tutorial for importing data from CSV file\n "),e("a",{attrs:{href:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables",target:"_blank"}},[this._v("here")])])}]}},function(t,e,n){var a=n(0)(n(310),n(315),!1,function(t){n(308)},null,null);t.exports=a.exports},function(t,e,n){var a=n(309);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("d9b367ca",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".fluent-form-promo p{font-size:medium}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(123),i=n.n(a),o=n(27),s=n.n(o);e.default={name:"CustomSQLQuery",components:{MySqlEditor:i.a,PremiumNotice:s.a},props:{tableCreated:{type:Function,required:!0},editing:{type:Boolean},config:{type:Object},activated_features:{type:Object}},data:function(){return{installing:!1,fetching:!1,btnLoading:!1,post_title:"",sql:"",error_html:"",isActivated:this.activated_features.raw_sql_query,hasPro:!!ninja_table_admin.hasPro,has_sql_permission:"yes"==window.ninja_table_admin.has_sql_permission}},methods:{save:function(){var t=this;this.btnLoading=!0,this.error_html="",jQuery.post(ajaxurl,{action:"ninja_tables_save_raw_sql_table",post_title:this.post_title,sql:this.sql,table_Id:this.config&&this.config.table.ID||null}).then(function(e){return t.tableCreated(e.data.table_id)}).fail(function(e){var n="",a=e.responseJSON.data.message;for(var i in a)n+=" "+a[i];t.$message({showClose:!0,message:n,type:"error"}),e.responseJSON.data.error&&(t.error_html=e.responseJSON.data.error)}).always(function(e){return t.btnLoading=!1})}},mounted:function(){}}},function(t,e,n){var a=n(312);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("0fa77a67",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_custom_css_editor[data-v-ad6aab96]{min-height:180px;height:auto}.ninja_css_errors .ace_gutter-cell.ace_warning[data-v-ad6aab96]{display:none}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_ace_editor",props:["value","mode","editor_id"],data:function(){return{ace_path:window.ninja_table_admin.ace_path_url,editorError:"",loading:!0}},methods:{loadDependencies:function(){var t=this;"undefined"==typeof ace?jQuery.get(this.ace_path+"/ace.min.js",function(){t.initAce()}):this.initAce()},initAce:function(){var t=this;ace.config.set("workerPath",this.ace_path),ace.config.set("modePath",this.ace_path),ace.config.set("themePath",this.ace_path);var e=ace.edit("ninja_custom_css");e.setTheme("ace/theme/monokai"),e.session.setMode("ace/mode/"+this.mode),e.getSession().on("changeAnnotation",function(){var n=e.getSession().getAnnotations();for(var a in t.editorError="",n)"error"==n[a].type&&(t.editorError=n[a].text)}),e.getSession().on("change",function(){t.$emit("input",e.getSession().getValue())}),this.loading=!1}},mounted:function(){this.loadDependencies()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],attrs:{"element-loading-text":"Loading Editor..."}},[n("div",{staticClass:"ace_container"},[n("div",{staticClass:"ninja_custom_css_editor",attrs:{id:"ninja_custom_css"}},[t._v(t._s(t.value))])]),t._v(" "),n("div",{staticClass:"editor_errors",class:"ninja_"+t.mode+"_errors"},[n("span",{directives:[{name:"show",rawName:"v-show",value:t.editorError,expression:"editorError"}],staticStyle:{"text-align":"right",display:"inline-block",color:"#ff7171",float:"right"}},[t._v(t._s(t.editorError))])])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_modal-body"},[n("h3",[t._v("\n Construct Table from Custom SQL Query\n ")]),t._v(" "),n("hr"),t._v(" "),t.hasPro?t.has_sql_permission?t.isActivated?[n("div",{staticClass:"ninja_modal-body"},[n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"name"}},[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.post_title,expression:"post_title"}],staticClass:"form-control",attrs:{type:"text",id:"name",placeholder:"Enter a title to identify your table"},domProps:{value:t.post_title},on:{input:function(e){e.target.composing||(t.post_title=e.target.value)}}})]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Custom SQL Query")))]),t._v(" "),n("my-sql-editor",{attrs:{mode:"mysql",editor_id:"ninja_mysql_editor"},model:{value:t.sql,callback:function(e){t.sql=e},expression:"sql"}}),t._v(" "),t._m(0)],1),t._v(" "),t.error_html?n("div",{staticClass:"form-group"},[n("el-alert",{attrs:{title:"SQL Error",type:"error"},on:{close:function(e){t.error_html=""}}},[n("div",{domProps:{innerHTML:t._s(t.error_html)}})])],1):t._e()]),t._v(" "),n("div",{staticClass:"modal-footer"},[n("el-button",{attrs:{type:"primary",size:"small"},on:{click:t.save}},[n("span",[t._v(t._s(t.$t("Add")))]),t._v(" "),t.btnLoading?n("i",{staticClass:"fooicon fooicon-spin fooicon-circle-o-notch"}):t._e()])],1)]:[n("el-alert",{staticClass:"update-notice",attrs:{title:"",type:"warning",closable:!1,"show-icon":""}},[n("p",[t._v("\n Please update Ninja Tables Pro Plugin to latest version. Required Ninja Table Version: 3.3 or later\n ")])])]:[n("el-alert",{attrs:{title:"",type:"error",closable:!1}},[n("p",[t._v("\n For security reason, Custom SQL module is enabled only for Administrator user role. Please ask your site administrator to enable SQL module for other user roles.\n ")])])]:[n("premium-notice",{attrs:{highlight:"SQL module where you can write custom SQL to build your table with "}})]],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",[this._v("Please write valid SQL query. Your written SQL query will be passed to "),e("code",[this._v("$wpdb->get_results()")]),this._v(" function")])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-container",{staticClass:"ninja-add-table"},[t.table.ID?t._e():n("el-aside",{staticStyle:{"background-color":"rgb(35, 40, 45)"}},[n("el-menu",{attrs:{collapse:t.isCollapse,"default-active":t.activeTabName,"background-color":"#23282d","text-color":"#eee","active-text-color":"#fff"}},[n("el-menu-item",{attrs:{index:"default"},on:{click:function(e){t.activeTabName="default"}}},[n("i",{staticClass:"el-icon-setting"}),t._v(" "),n("span",[t._v("Default")])]),t._v(" "),n("el-menu-item",{attrs:{index:"import_table"},on:{click:function(e){t.activeTabName="import_table"}}},[n("i",{staticClass:"el-icon-upload2"}),t._v(" "),n("span",[t._v("Import Table")])]),t._v(" "),n("el-menu-item",{attrs:{index:"fluent_form"},on:{click:function(e){t.activeTabName="fluent_form"}}},[n("img",{staticClass:"el-icon-fluent-form",attrs:{src:t.fluentFormIcon,alt:"fluent form icon"}}),t._v(" "),n("span",[t._v("Connect Fluent Form")])]),t._v(" "),n("el-menu-item",{attrs:{index:"wp_posts"},on:{click:function(e){t.activeTabName="wp_posts"}}},[n("i",{staticClass:"el-icon-news"}),t._v(" "),n("span",[t._v("WP Posts")])]),t._v(" "),t.has_woo?n("el-menu-item",{attrs:{index:"woo_table"},on:{click:function(e){t.activeTabName="woo_table"}}},[n("img",{staticClass:"el-icon-fluent-form",attrs:{src:t.wooIcon,alt:"woocomerce icon"}}),t._v(" "),n("span",[t._v("WooCommerce Table")])]):t._e(),t._v(" "),n("el-menu-item",{attrs:{index:"google_spread_sheet"},on:{click:function(e){t.activeTabName="google_spread_sheet"}}},[n("span",{staticClass:"dashicons dashicons-media-spreadsheet"}),t._v(" "),n("span",[t._v("Connect Google Sheets")])]),t._v(" "),n("el-menu-item",{attrs:{index:"csv"},on:{click:function(e){t.activeTabName="csv"}}},[n("i",{staticClass:"el-icon-document"}),t._v(" "),n("span",[t._v("Connect External CSV")])]),t._v(" "),n("el-menu-item",{attrs:{index:"raw_sql"},on:{click:function(e){t.activeTabName="raw_sql"}}},[n("i",{staticClass:"dashicons dashicons-editor-code"}),t._v(" "),n("span",[t._v("Custom SQL Query")])])],1)],1),t._v(" "),n("el-main",["default"==t.activeTabName?[n("div",{staticClass:"ninja_modal-body"},[t.table.ID?t._e():[n("h3",[t._v("Manually Create a Table")]),t._v(" "),n("p",{staticClass:"ninja_subtitle"},[t._v("\n Manually create your table columns and rows to get complete\n control over your data with tons of customizations.\n ")])],t._v(" "),n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"name"}},[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.table.post_title,expression:"table.post_title"}],staticClass:"form-control",attrs:{type:"text",id:"name",placeholder:"Enter a title to identify your table"},domProps:{value:t.table.post_title},on:{input:function(e){e.target.composing||t.$set(t.table,"post_title",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Table Description")))]),t._v(" "),n("wp_editor",{model:{value:t.table.post_content,callback:function(e){t.$set(t.table,"post_content",e)},expression:"table.post_content"}})],1)],2),t._v(" "),n("div",{staticClass:"modal-footer"},[n("el-button",{attrs:{type:"primary",size:"small"},on:{click:t.addTable}},[t.table.ID?n("span",[t._v(t._s(t.$t("Update")))]):n("span",[t._v(t._s(t.$t("Add")))]),t._v(" "),t.btnLoading?n("i",{staticClass:"fooicon fooicon-spin fooicon-circle-o-notch"}):t._e()])],1)]:"import_table"===t.activeTabName?[n("import-table")]:"google_spread_sheet"==t.activeTabName?[n("external-data-source",{attrs:{type:"google-csv",tableCreated:t.fireTableCreated,"has-pro":t.hasPro,activated_features:t.activated_features}})]:"csv"==t.activeTabName?[n("external-data-source",{attrs:{type:"csv",tableCreated:t.fireTableCreated,"has-pro":t.hasPro,activated_features:t.activated_features}})]:"fluent_form"==t.activeTabName?[n("fluent-form-data-source",{attrs:{tableCreated:t.fireTableCreated}})]:"wp_posts"==t.activeTabName?[n("wp-posts-data-source",{attrs:{tableCreated:t.fireTableCreated,activated_features:t.activated_features}})]:"woo_table"==t.activeTabName?[t.activated_features.woocommerce_table?n("woo-data-source",{attrs:{tableCreated:t.fireTableCreated}}):t.has_woo&&t.hasPro?n("div",[n("p",[t._v("Please update to latest version of "),n("b",[t._v("Ninja Tables Pro")]),t._v(" to use WooCommerce integration")])]):t.has_woo&&!t.hasPro?n("div",{staticClass:"ninja_no_woo"},[n("h3",[t._v("Upgrade to pro for using WooCommerce Integration")]),t._v(" "),n("premium-notice",{attrs:{highlight:"WooCommerce Integration module where you can create and build table with Woocomerce produsts and increase your conversion rate"}})],1):t._e()]:"raw_sql"==t.activeTabName?[n("raw-sql-form",{attrs:{has_sql_permission:t.has_sql_permission,tableCreated:t.fireTableCreated,activated_features:t.activated_features}})]:t._e()],2)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(320),n(321),!1,function(t){n(318)},null,null);t.exports=a.exports},function(t,e,n){var a=n(319);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("35eb5f12",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_permissions{margin-top:40px;text-align:center}.ninja_permissions a,.ninja_permissions p{font-size:12px;color:gray;text-decoration:none}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_lead",data:function(){return{loading:!1,leadVisible:!!window.ninja_table_admin.show_lead_pop_up,display_name:window.ninja_table_admin.current_user_name,showPermission:!1}},methods:{optin:function(t){var e=this;this.loading=!0,jQuery.post(window.ajaxurl,{action:"ninja_table_lead_optin",status:t}).then(function(t){e.$message({showClose:!0,message:t.data.message,type:"success"})}).fail(function(t){}).always(function(){e.leadVisible=!1,e.loading=!1,"yes"===t&&(window.ninja_table_admin.show_lead_pop_up=!1)})}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.leadVisible?n("el-dialog",{attrs:{visible:t.leadVisible,title:"We made a few tweaks to Ninja Tables"},on:{"update:visible":function(e){t.leadVisible=e}}},[n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"ninja_permission_wrapper"},[n("p",[t._v("Hey "+t._s(t.display_name)+","),n("br"),t._v("\n Never miss an important update - opt in to our security & feature updates notifications. We will never\n spam / share your data, We will only send emails about important updates")]),t._v(" "),n("el-button",{attrs:{type:"success"},on:{click:function(e){t.optin("yes")}}},[t._v("Opt-in and Continue")]),t._v(" "),n("el-button",{staticClass:"pull-right",attrs:{size:"mini"},on:{click:function(e){t.optin("no")}}},[t._v("Skip")]),t._v(" "),n("div",{staticClass:"ninja_permissions"},[n("a",{attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.showPermission=!t.showPermission}}},[t._v("What permissions are being granted?")]),t._v(" "),n("p",{directives:[{name:"show",rawName:"v-show",value:t.showPermission,expression:"showPermission"}],staticClass:"permissions"},[t._v("\n Name, email, Site URL, Plugins info, ip Address and uninstall event\n ")])])],1)]):t._e()},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(325),n(326),!1,function(t){n(323)},null,null);t.exports=a.exports},function(t,e,n){var a=n(324);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("20d61100",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".review_dialog{background:#fff;padding:10px 15px 20px;font-size:16px;position:relative}.review_dialog span.consentDismiss{position:absolute;right:7px;top:2px;z-index:99999;cursor:pointer;color:gray}.review_dialog p{font-size:16px}.review_dialog a{text-decoration:none;cursor:pointer;margin-right:20px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"review_dialog",methods:{recordActivity:function(t){var e=this;jQuery.post(ajaxurl,{action:"ninja_table_review_consent",status:t}).then(function(){}).fail(function(){}).always(function(){e.$emit("hideNotification",!0)})}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"review_dialog"},[n("span",{staticClass:"consentDismiss",on:{click:function(e){t.recordActivity("dismiss")}}},[t._v("x")]),t._v(" "),n("div",{staticClass:"consent_body"},[n("p",[t._v("Thank You for using Ninja Tables Plugin. We are continuously working on it to improve this plugin. If You can spare a minute, Please help us by leaving a five star rating on wordpress.org")]),t._v(" "),n("a",{staticClass:"el-button el-button--success el-button--small",attrs:{target:"_blank",href:"https://wordpress.org/support/plugin/ninja-tables/reviews/#new-post"},on:{click:function(e){t.recordActivity("yes")}}},[t._v("Happy To Help")]),t._v(" "),n("span",{staticStyle:{cursor:"pointer","font-size":"11px"},on:{click:function(e){t.recordActivity("no")}}},[t._v("Hide Notification")])])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.published_tables?[n("div",{staticClass:"row clearfix"},[n("h1",{staticClass:"wp-heading-inline"},[t._v("\n "+t._s(t.$t("All Tables"))+"\n ")]),t._v(" "),t.review_option?n("ninja-review-dialog",{on:{hideNotification:function(e){t.review_option=!1}}}):t._e(),t._v(" "),n("div",{staticClass:"pull-right",staticStyle:{"margin-top":"7px"}},[n("label",{staticClass:"form_group search_action",attrs:{for:"search"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.searchString,expression:"searchString"}],staticClass:"form-control inline",attrs:{id:"search",placeholder:"Search",type:"text"},domProps:{value:t.searchString},on:{keyup:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?t.getData(e):null},input:function(e){e.target.composing||(t.searchString=e.target.value)}}}),t._v(" "),n("i",{staticClass:"el-icon-search",on:{click:t.getData}})]),t._v(" "),n("el-button",{attrs:{size:"small",type:"primary"},on:{click:function(e){t.modalVisible=!t.modalVisible}}},[t._v("\n "+t._s(t.$t("Add Table"))+"\n ")]),t._v(" "),n("router-link",{attrs:{to:{name:"import_tables"}}},[n("el-button",{attrs:{size:"small",type:"success"}},[t._v("\n "+t._s(t.$t("Import Table"))+"\n ")])],1)],1)],1),t._v(" "),n("hr"),t._v(" "),n("list-all-tables",{directives:[{name:"show",rawName:"v-show",value:t.published_tables,expression:"published_tables"}],attrs:{searchString:t.searchString,searchAction:t.searchAction},on:{total_table:function(e){t.published_tables=!0},selection:t.makeSelection}})]:n("welcome",{on:{create:function(e){t.modalVisible=!t.modalVisible}}}),t._v(" "),n("el-dialog",{attrs:{"close-on-click-modal":!1,title:t.$t("How would you like to create your table?"),visible:t.modalVisible,top:"50px",width:"75%","append-to-body":!0,"custom-class":"create-table-modal"},on:{"update:visible":function(e){t.modalVisible=e}}},[n("add-table-modal",{attrs:{hasPro:t.hasPro},on:{table_inserted:t.addTableAction,modal_close:function(e){t.modalVisible=!1}}})],1),t._v(" "),n("lead-modal")],2)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(329),n(330),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"Tools",data:function(){return{has_pro:!!window.ninja_table_admin.hasPro,active_menu:this.$route.name,menuItems:[]}},methods:{setUpMenuItems:function(){this.menuItems=this.applyFilters("ninja_table_settings_tools",[{route:"import_tables",title:this.$t("Import"),icon_class:"el-icon-upload",status:!0},{route:"default_table_appearance",title:this.$t("Global Appearance"),icon_class:"el-icon-star-off",status:!0},{route:"permission",title:this.$t("Permission"),icon_class:"el-icon-setting",status:!0},{route:"licensing",title:this.$t("License"),icon_class:"dashicons dashicons-shield",status:this.has_pro},{route:"global_settings",title:this.$t("Global Settings"),icon_class:"el-icon-menu",status:!0}])}},mounted:function(){this.setUpMenuItems()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{"margin-top":"15px"}},[n("el-container",[n("el-aside",{attrs:{width:"200px"}},[n("el-menu",{attrs:{"background-color":"#545c64","default-active":t.active_menu,"text-color":"#fff",router:!0,"active-text-color":"#ffd04b"}},t._l(t.menuItems,function(e){return e.status?n("el-menu-item",{key:e.route,attrs:{index:e.route,route:{name:e.route}}},[n("i",{class:e.icon_class}),t._v(" "),n("span",[t._v(t._s(e.title))])]):t._e()}))],1),t._v(" "),n("el-main",[n("router-view")],1)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(334),n(335),!1,function(t){n(332)},"data-v-5348b674",null);t.exports=a.exports},function(t,e,n){var a=n(333);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("5913cf51",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".form-item[data-v-5348b674]{margin:10px 0}.form-item label[data-v-5348b674]{width:100px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"Tools",data:function(){return{has_pro:window.ninja_table_admin.hasPro,active_menu:"import",activeNames:["1","2"],imports:{source:"file",sourceOptions:["file"],formatOptions:{csv:this.$t("CSV - Comma-separated values"),json:this.$t("JSON - JavaScript Object Notation"),ninjaJson:this.$t("JSON - Exported From Ninja Tables")},format:"csv"},do_unicode:"no",btnLoading:!1,otherPlugins:{TablePress:"Table Press",UltimateTables:"Ultimate Tables",supsystic:"Data Tables Generator by Supsystic"},btnsLoading:{TablePress:!1,UltimateTables:!1},showPluginModal:!1,selectedPlugin:null,otherPluginTables:[],importing:!1}},methods:{clear:function(){jQuery("#fileUpload").val("")},importTable:function(){var t=this;if(this.btnLoading=!0,"file"!=!this.imports.source){var e=jQuery("#fileUpload")[0].files[0];if(e){var n=new FormData;n.append("format",this.imports.format),n.append("file",e),n.append("action","ninja_tables_ajax_actions"),n.append("target_action","import-table"),n.append("do_unicode",this.do_unicode),jQuery.ajax({url:ajaxurl,data:n,type:"POST",contentType:!1,processData:!1,success:function(e){alert(e.message),t.$router.push({name:"data_items",params:{table_id:e.tableId}})},error:function(e){t.btnLoading=!1,alert(e.responseJSON.message)}})}else this.btnLoading=!1}else this.btnLoading=!0},importFromOtherPlugin:function(t){var e=this;this.selectedPlugin=t,this.btnsLoading[t]=!0;var n={action:"ninja_tables_ajax_actions",target_action:"get-tables-from-plugin",plugin:t};jQuery.ajax({url:ajaxurl,data:n,type:"POST",success:function(n){n.tables?e.btnsLoading[t]=!1:e.$message.error("No Table Found"),e.showPluginModal=!0,e.otherPluginTables=n.tables},error:function(n){e.btnsLoading[t]=!1,n.responseJSON?e.$message.error(n.responseJSON.message):e.$message.error("No Table Found")}})},closePluginModal:function(){this.otherPluginTables=[],this.btnsLoading[this.selectedPlugin]=!1,this.showPluginModal=!1,this.selectedPlugin=null},importThisTable:function(t,e){var n=this;this.importing=!0;var a={action:"ninja_tables_ajax_actions",target_action:"import-table-from-plugin",plugin:this.selectedPlugin,tableId:t.ID};jQuery.ajax({url:ajaxurl,data:a,type:"POST",success:function(t){n.$message.success(t.data.message),n.importing=!1,n.$set(n.otherPluginTables[e],"ninja_table_id",t.data.tableId)},error:function(t){n.$message.error(t.responseJSON.data.message),n.importing=!1}})}},mounted:function(){var t=this;this.$route.query.active_menu&&(this.active_menu=this.$route.query.active_menu),jQuery(".ninja_table_tools_menu").on("click",function(){t.active_menu="import"}),jQuery(".ninja_table_import_menu").on("click",function(){t.active_menu="import"}),jQuery(".ninja_table_license_menu").on("click",function(){t.active_menu="license"})}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"ninja_header"},[n("h2",[t._v(t._s(t.$t("Import Table")))])]),t._v(" "),n("div",{staticClass:"ninja_content"},[n("div",{staticClass:"ninja_block"},[n("p",[t._v("\n "+t._s(t.$t("NinjaTables can import tables from existing data, like from a CSV or JSON file. You can also import existing tables from the other WordPress table plugins."))+"\n ")])]),t._v(" "),n("hr"),t._v(" "),n("div",{staticClass:"ninja_block_section"},[n("h3",[t._v("Import Table from CSV / JSON File")]),t._v(" "),n("p",[t._v("\n Browse and locate a CSV/JSON file you backed up before.\n ")]),t._v(" "),t._m(0),t._v(" "),n("div",{staticClass:"form"},[n("div",{staticClass:"form-item"},["file"==t.imports.source?[n("label",[t._v(t._s(t.$t("Select file:")))]),t._v(" "),n("input",{attrs:{type:"file",id:"fileUpload"},on:{click:t.clear}})]:"url"==t.imports.source?[t._v("\n File upload url\n ")]:[n("label",[t._v(t._s(t.$t("Import data:")))]),t._v(" "),n("textarea",{attrs:{rows:"10"}})]],2),t._v(" "),n("div",{staticClass:"form-item"},[n("label",{attrs:{for:"import_format"}},[t._v(t._s(t.$t("Import Format:")))]),t._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.imports.format,expression:"imports.format"}],attrs:{id:"import_format"},on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.imports,"format",e.target.multiple?n:n[0])}}},t._l(t.imports.formatOptions,function(e,a){return n("option",{domProps:{value:a}},[t._v(t._s(t.$t(e))+"\n ")])})),t._v(" "),"csv"==t.imports.format?[t._m(1),t._v(" "),n("div",{staticClass:"form-item"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.do_unicode,callback:function(e){t.do_unicode=e},expression:"do_unicode"}},[t._v("Convert to UTF-8 format ( Check this if your csv is non-unicode format )")])],1)]:t._e(),t._v(" "),n("span",{directives:[{name:"show",rawName:"v-show",value:"json"==t.imports.format||"ninjaJson"==t.imports.format,expression:"imports.format == 'json' || imports.format == 'ninjaJson'"}],staticClass:"help"},[t._v("\n Check tutorial for importing Table from JSON file "),n("a",{attrs:{href:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables",target:"_blank"}},[t._v("here")])])],2),t._v(" "),n("div",{staticClass:"form-item"},[n("el-button",{attrs:{type:"primary",size:"small",loading:t.btnLoading},on:{click:t.importTable}},[t._v("\n "+t._s(t.$t("Import"))+"\n ")])],1)])]),t._v(" "),n("hr"),t._v(" "),n("div",{staticClass:"ninja_block_section"},[n("h3",[t._v("Import From Other WP Table Plugin")]),t._v(" "),t._m(2),t._v(" "),n("table",{staticStyle:{"min-width":"400px"}},[n("tbody",t._l(t.otherPlugins,function(e,a){return n("tr",[n("td",[t._v(t._s(e))]),t._v(" "),n("td",[n("button",{staticClass:"btn btn-default btn-sm",on:{click:function(e){t.importFromOtherPlugin(a)}}},[t.btnsLoading[a]?[t._v("\n "+t._s(t.$t("Processing..."))+"\n "),n("i",{staticClass:"fooicon fooicon-spin fooicon-circle-o-notch"})]:[t._v("\n "+t._s(t.$t("Import"))+"\n ")]],2)])])}))])])]),t._v(" "),n("el-dialog",{attrs:{title:"Your current tables",visible:t.showPluginModal},on:{"update:visible":function(e){t.showPluginModal=e},close:function(e){t.closePluginModal()}}},[t.otherPluginTables.length?[n("el-table",{staticStyle:{width:"100%"},attrs:{data:t.otherPluginTables}},[n("el-table-column",{attrs:{label:"Name"},scopedSlots:t._u([{key:"default",fn:function(e){return[e.row.is_already_imported?n("span",[t._v("( Already Imported )")]):t._e(),t._v(" "+t._s(e.row.post_title)+"\n ")]}}])}),t._v(" "),n("el-table-column",{attrs:{label:"Action",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("el-button",{attrs:{type:"primary",size:"mini"},on:{click:function(n){t.importThisTable(e.row,e.$index)}}},[t._v(t._s(t.$t("Import"))+"\n ")]),t._v(" "),e.row.ninja_table_id?n("router-link",{staticClass:"el-button el-button--danger el-button--mini ninja_btn",attrs:{to:{name:"data_items",params:{table_id:e.row.ninja_table_id}}}},[t._v(t._s(t.$t("View Imported Table"))+"\n ")]):t._e()]}}])})],1),t._v(" "),t.importing?[n("br"),n("br"),t._v(" "),n("div",{staticClass:"updated notice notice-success",staticStyle:{padding:"10px"}},[t._v("\n "+t._s(t.$t("Importing the table, please wait a bit ..."))+"\n ")])]:t._e()]:n("div",{staticClass:"updated notice notice-success",staticStyle:{padding:"10px"}},[t._v("\n You don't have any tables in your "+t._s(t.selectedPlugin)+" plugin.\n ")])],2)],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",[this._v("\n Select the intended format and click "),e("strong",[this._v("Import")]),this._v(" button, we will do\n the rest for you.\n ")])},function(){var t=this.$createElement,e=this._self._c||t;return e("span",{staticClass:"help"},[this._v("\n Check tutorial for importing data from CSV file "),e("a",{attrs:{href:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables",target:"_blank"}},[this._v("here")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("p",[this._v("\n To import from other WordPress plugins click the respective "),e("strong",[this._v("Import")]),this._v("\n button.\n ")])}]}},function(t,e,n){var a=n(0)(n(339),n(340),!1,function(t){n(337)},null,null);t.exports=a.exports},function(t,e,n){var a=n(338);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("a3a20460",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".el-text-info{color:#58b7ff}.privacy label{margin-bottom:0}#capability{margin-left:75px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"Privacy",data:function(){return{hasPro:!1,fetching:!1,roles:[],checkAll:!1,sql_permission:"no",capability:["administrator"],isIndeterminate:!1,upgrade:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade"}},methods:{get:function(){var t=this;this.fetching=!0,this.$get({action:"ninja_tables_ajax_actions",target_action:"get_access_roles"}).then(function(e){t.capability=e.capability,t.roles=e.roles,t.sql_permission=e.sql_permission,t.handleCheckedCapabilitiesChange(t.capability)}).fail(function(t){}).always(function(){t.fetching=!1})},store:function(){var t=this,e={action:"ninja_tables_set_permission",capability:this.capability,sql_permission:this.sql_permission};jQuery.post(ajaxurl,e).then(function(e){t.$message({showClose:!0,message:e.message,type:"success"})}).fail(function(e){t.$message({showClose:!0,message:e.responseJSON.data.message,type:"error"})})},handleCheckAllChange:function(t){this.capability=t?this.roles.map(function(t){return t.key}):[],this.isIndeterminate=!1},handleCheckedCapabilitiesChange:function(t){var e=t.length;this.checkAll=e===this.roles.length,this.isIndeterminate=e>0&&e<this.roles.length}},mounted:function(){this.hasPro="1"===window.ninja_table_admin.hasPro,this.get()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"privacy"},[n("div",{staticClass:"ninja_header"},[n("h2",[t._v("Permission "),n("span",{directives:[{name:"show",rawName:"v-show",value:!t.hasPro,expression:"!hasPro"}]},[t._v("(Pro Feature)")])])]),t._v(" "),n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}],staticClass:"ninja_content"},[t._m(0),t._v(" "),n("hr"),t._v(" "),t.hasPro?[n("div",{staticClass:"form-group"},[n("el-checkbox",{attrs:{indeterminate:t.isIndeterminate},on:{change:t.handleCheckAllChange},model:{value:t.checkAll,callback:function(e){t.checkAll=e},expression:"checkAll"}},[t._v("\n "+t._s(t.$t("Check all"))+"\n ")])],1),t._v(" "),n("div",{staticClass:"form-group"},[n("el-checkbox-group",{on:{change:t.handleCheckedCapabilitiesChange},model:{value:t.capability,callback:function(e){t.capability=e},expression:"capability"}},t._l(t.roles,function(e){return n("el-checkbox",{key:e.key,attrs:{label:e.key}},[t._v("\n "+t._s(e.name)+"\n ")])}))],1),t._v(" "),t.capability&&t.capability.length?n("div",{staticClass:"form-group"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.sql_permission,callback:function(e){t.sql_permission=e},expression:"sql_permission"}},[t._v("Enable SQL-Module Permission for selected user roles")])],1):t._e(),t._v(" "),n("div",{staticClass:"form-group"},[n("el-button",{attrs:{type:"primary",size:"small"},on:{click:t.store}},[t._v("Save")])],1)]:[t._v("\n "+t._s(t.$t("Activate Ninja Tables Pro Add-on plugin to unlock this feature"))+"\n "),n("p",[n("a",{attrs:{target:"_blank",href:t.upgrade}},[t._v("Buy Ninja Tables Pro Add-On")])])]],2)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_block"},[e("p",[this._v("By default, Only Administrator have access to manage the tables. By selecting additional roles bellow, You can give access to manage your Tables to other user roles.")])])}]}},function(t,e,n){var a=n(0)(n(342),n(382),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(74),i=n(124),o=n.n(i),s=n(70),l=n.n(s);e.default={name:"Privacy",data:function(){return{fetching:!1,saving:!1,tableLibs:{},default_settings:{}}},computed:{tableColors:function(){return Object(a.a)().footable.colors},table_styles:function(){return Object(a.a)().footable.css_libs},availableStyles:function(){var t=this.table_styles[this.default_settings.css_lib];return!!t&&t.styles}},methods:{get:function(){var t=this;this.fetching=!0,this.$get({action:"ninja_tables_ajax_actions",target_action:"get_default_settings"}).then(function(e){t.default_settings=e.data.default_settings}).fail(function(t){}).always(function(){t.fetching=!1})},store:function(){var t=this;this.saving=!0;var e=[];l()(this.availableStyles,function(t){e.push(t.key)}),this.default_settings.css_classes=o()(e,this.default_settings.css_classes),this.$post({action:"ninja_tables_ajax_actions",target_action:"save_default_settings",default_settings:this.default_settings}).then(function(e){t.$message.success({showClose:!0,message:e.data.message,type:"success"})}).fail(function(t){}).always(function(){t.saving=!1})}},mounted:function(){this.get()}}},function(t,e,n){var a=n(125),i=n(367),o=n(371),s=n(22),l=n(118),r=n(129),c=Math.min;t.exports=function(t,e,n){for(var u=n?o:i,d=t[0].length,_=t.length,p=_,f=Array(_),m=1/0,v=[];p--;){var h=t[p];p&&e&&(h=s(h,l(e))),m=c(h.length,m),f[p]=!n&&(e||d>=120&&h.length>=120)?new a(p&&h):void 0}h=t[0];var b=-1,g=f[0];t:for(;++b<d&&v.length<m;){var y=h[b],w=e?e(y):y;if(y=n||0!==y?y:0,!(g?r(g,w):u(v,w,n))){for(p=_;--p;){var x=f[p];if(!(x?r(x,w):u(t[p],w,n)))continue t}g&&g.push(w),v.push(y)}}return v}},function(t,e,n){var a=n(345),i=n(43),o=n(76);t.exports=function(){this.size=0,this.__data__={hash:new a,map:new(o||i),string:new a}}},function(t,e,n){var a=n(346),i=n(351),o=n(352),s=n(353),l=n(354);function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var a=t[e];this.set(a[0],a[1])}}r.prototype.clear=a,r.prototype.delete=i,r.prototype.get=o,r.prototype.has=s,r.prototype.set=l,t.exports=r},function(t,e,n){var a=n(42);t.exports=function(){this.__data__=a?a(null):{},this.size=0}},function(t,e,n){var a=n(120),i=n(348),o=n(40),s=n(126),l=/^\[object .+?Constructor\]$/,r=Function.prototype,c=Object.prototype,u=r.toString,d=c.hasOwnProperty,_=RegExp("^"+u.call(d).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");t.exports=function(t){return!(!o(t)||i(t))&&(a(t)?_:l).test(s(t))}},function(t,e,n){var a,i=n(349),o=(a=/[^.]+$/.exec(i&&i.keys&&i.keys.IE_PROTO||""))?"Symbol(src)_1."+a:"";t.exports=function(t){return!!o&&o in t}},function(t,e,n){var a=n(5)["__core-js_shared__"];t.exports=a},function(t,e){t.exports=function(t,e){return null==t?void 0:t[e]}},function(t,e){t.exports=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e}},function(t,e,n){var a=n(42),i="__lodash_hash_undefined__",o=Object.prototype.hasOwnProperty;t.exports=function(t){var e=this.__data__;if(a){var n=e[t];return n===i?void 0:n}return o.call(e,t)?e[t]:void 0}},function(t,e,n){var a=n(42),i=Object.prototype.hasOwnProperty;t.exports=function(t){var e=this.__data__;return a?void 0!==e[t]:i.call(e,t)}},function(t,e,n){var a=n(42),i="__lodash_hash_undefined__";t.exports=function(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=a&&void 0===e?i:e,this}},function(t,e){t.exports=function(){this.__data__=[],this.size=0}},function(t,e,n){var a=n(44),i=Array.prototype.splice;t.exports=function(t){var e=this.__data__,n=a(e,t);return!(n<0||(n==e.length-1?e.pop():i.call(e,n,1),--this.size,0))}},function(t,e,n){var a=n(44);t.exports=function(t){var e=this.__data__,n=a(e,t);return n<0?void 0:e[n][1]}},function(t,e,n){var a=n(44);t.exports=function(t){return a(this.__data__,t)>-1}},function(t,e,n){var a=n(44);t.exports=function(t,e){var n=this.__data__,i=a(n,t);return i<0?(++this.size,n.push([t,e])):n[i][1]=e,this}},function(t,e,n){var a=n(45);t.exports=function(t){var e=a(this,t).delete(t);return this.size-=e?1:0,e}},function(t,e){t.exports=function(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}},function(t,e,n){var a=n(45);t.exports=function(t){return a(this,t).get(t)}},function(t,e,n){var a=n(45);t.exports=function(t){return a(this,t).has(t)}},function(t,e,n){var a=n(45);t.exports=function(t,e){var n=a(this,t),i=n.size;return n.set(t,e),this.size+=n.size==i?0:1,this}},function(t,e){var n="__lodash_hash_undefined__";t.exports=function(t){return this.__data__.set(t,n),this}},function(t,e){t.exports=function(t){return this.__data__.has(t)}},function(t,e,n){var a=n(368);t.exports=function(t,e){return!(null==t||!t.length)&&a(t,e,0)>-1}},function(t,e,n){var a=n(128),i=n(369),o=n(370);t.exports=function(t,e,n){return e==e?o(t,e,n):a(t,i,n)}},function(t,e){t.exports=function(t){return t!=t}},function(t,e){t.exports=function(t,e,n){for(var a=n-1,i=t.length;++a<i;)if(t[a]===e)return a;return-1}},function(t,e){t.exports=function(t,e,n){for(var a=-1,i=null==t?0:t.length;++a<i;)if(n(e,t[a]))return!0;return!1}},function(t,e,n){var a=n(41),i=n(373),o=n(375);t.exports=function(t,e){return o(i(t,e,a),t+"")}},function(t,e,n){var a=n(374),i=Math.max;t.exports=function(t,e,n){return e=i(void 0===e?t.length-1:e,0),function(){for(var o=arguments,s=-1,l=i(o.length-e,0),r=Array(l);++s<l;)r[s]=o[e+s];s=-1;for(var c=Array(e+1);++s<e;)c[s]=o[s];return c[e]=n(r),a(t,this,c)}}},function(t,e){t.exports=function(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}},function(t,e,n){var a=n(376),i=n(379)(a);t.exports=i},function(t,e,n){var a=n(377),i=n(378),o=n(41),s=i?function(t,e){return i(t,"toString",{configurable:!0,enumerable:!1,value:a(e),writable:!0})}:o;t.exports=s},function(t,e){t.exports=function(t){return function(){return t}}},function(t,e,n){var a=n(15),i=function(){try{var t=a(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();t.exports=i},function(t,e){var n=800,a=16,i=Date.now;t.exports=function(t){var e=0,o=0;return function(){var s=i(),l=a-(s-o);if(o=s,l>0){if(++e>=n)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}},function(t,e,n){var a=n(381);t.exports=function(t){return a(t)?t:[]}},function(t,e,n){var a=n(39),i=n(6);t.exports=function(t){return i(t)&&a(t)}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"privacy"},[t._m(0),t._v(" "),n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}],staticClass:"ninja_content"},[t._m(1),t._v(" "),n("hr"),t._v(" "),[n("div",{staticClass:"ninja_block"},[n("div",{staticClass:"form_group"},[n("h3",[t._v("Default Styling Library")]),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.default_settings.css_lib,callback:function(e){t.$set(t.default_settings,"css_lib",e)},expression:"default_settings.css_lib"}},t._l(t.table_styles,function(e,a){return n("el-radio-button",{key:a,attrs:{label:a}},[t._v("\n "+t._s(e.title)+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:e.description}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)}))],1),t._v(" "),n("div",{staticClass:"form_group"},[n("h3",[t._v("Default Table Styles")]),t._v(" "),t._l(t.availableStyles,function(e){return n("label",{key:e.key,attrs:{for:"table_style_"+e.key}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.css_classes,expression:"default_settings.css_classes"}],attrs:{type:"checkbox",name:"table_styles",id:"table_style_"+e.key},domProps:{value:e.key,checked:Array.isArray(t.default_settings.css_classes)?t._i(t.default_settings.css_classes,e.key)>-1:t.default_settings.css_classes},on:{change:function(n){var a=t.default_settings.css_classes,i=n.target,o=!!i.checked;if(Array.isArray(a)){var s=e.key,l=t._i(a,s);i.checked?l<0&&t.$set(t.default_settings,"css_classes",a.concat([s])):l>-1&&t.$set(t.default_settings,"css_classes",a.slice(0,l).concat(a.slice(l+1)))}else t.$set(t.default_settings,"css_classes",o)}}}),t._v("\n "+t._s(e.title)+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:e.description}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)})],2),t._v(" "),n("div",{staticClass:"form_group"},[n("h3",[t._v("Default Features")]),t._v(" "),n("label",{attrs:{for:"show_title"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.show_title,expression:"default_settings.show_title"}],attrs:{type:"checkbox",value:"1",id:"show_title"},domProps:{checked:Array.isArray(t.default_settings.show_title)?t._i(t.default_settings.show_title,"1")>-1:t.default_settings.show_title},on:{change:function(e){var n=t.default_settings.show_title,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,"1");a.checked?o<0&&t.$set(t.default_settings,"show_title",n.concat(["1"])):o>-1&&t.$set(t.default_settings,"show_title",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.default_settings,"show_title",i)}}}),t._v(" "+t._s(t.$t("Show Table Title"))+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Enable this if you want to show table title in frontend"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("label",{attrs:{for:"show_description"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.show_description,expression:"default_settings.show_description"}],attrs:{type:"checkbox",value:"1",id:"show_description"},domProps:{checked:Array.isArray(t.default_settings.show_description)?t._i(t.default_settings.show_description,"1")>-1:t.default_settings.show_description},on:{change:function(e){var n=t.default_settings.show_description,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,"1");a.checked?o<0&&t.$set(t.default_settings,"show_description",n.concat(["1"])):o>-1&&t.$set(t.default_settings,"show_description",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.default_settings,"show_description",i)}}}),t._v(" "+t._s(t.$t("Show Table Description"))+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Enable this if you want to show table description in frontend"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("label",{attrs:{for:"enable_search"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.enable_search,expression:"default_settings.enable_search"}],attrs:{type:"checkbox",value:"1",id:"enable_search"},domProps:{checked:Array.isArray(t.default_settings.enable_search)?t._i(t.default_settings.enable_search,"1")>-1:t.default_settings.enable_search},on:{change:function(e){var n=t.default_settings.enable_search,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,"1");a.checked?o<0&&t.$set(t.default_settings,"enable_search",n.concat(["1"])):o>-1&&t.$set(t.default_settings,"enable_search",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.default_settings,"enable_search",i)}}}),t._v(" "+t._s(t.$t("Enable the visitor to filter or search the table."))+"\n ")]),t._v(" "),n("label",{attrs:{for:"column_sorting"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.column_sorting,expression:"default_settings.column_sorting"}],attrs:{type:"checkbox",value:"1",id:"column_sorting"},domProps:{checked:Array.isArray(t.default_settings.column_sorting)?t._i(t.default_settings.column_sorting,"1")>-1:t.default_settings.column_sorting},on:{change:function(e){var n=t.default_settings.column_sorting,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,"1");a.checked?o<0&&t.$set(t.default_settings,"column_sorting",n.concat(["1"])):o>-1&&t.$set(t.default_settings,"column_sorting",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.default_settings,"column_sorting",i)}}}),t._v(" "+t._s(t.$t("Enable sorting of the table by the visitor"))+"\n ")]),t._v(" "),n("label",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.hide_all_borders,expression:"default_settings.hide_all_borders"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.default_settings.hide_all_borders)?t._i(t.default_settings.hide_all_borders,null)>-1:t.default_settings.hide_all_borders},on:{change:function(e){var n=t.default_settings.hide_all_borders,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,null);a.checked?o<0&&t.$set(t.default_settings,"hide_all_borders",n.concat([null])):o>-1&&t.$set(t.default_settings,"hide_all_borders",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.default_settings,"hide_all_borders",i)}}}),t._v("\n Hide All Borders\n ")])]),t._v(" "),n("div",{staticClass:"form_group",staticStyle:{"max-width":"400px"}},[n("h3",[t._v("Default Table Color")]),t._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.table_color,expression:"default_settings.table_color"}],staticClass:"form_control",on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.default_settings,"table_color",e.target.multiple?n:n[0])}}},t._l(t.tableColors,function(e,a){return n("option",{key:a,domProps:{value:a}},[t._v("\n "+t._s(e)+"\n ")])}))]),t._v(" "),n("div",{staticClass:"form_group"},[n("h3",[t._v("Default Pagination Setting")]),t._v(" "),n("el-switch",{attrs:{"inactive-color":"gray","active-text":"Hide Pagination (Show all data at once)","active-value":"1","inactive-value":"0"},model:{value:t.default_settings.show_all,callback:function(e){t.$set(t.default_settings,"show_all",e)},expression:"default_settings.show_all"}})],1)]),t._v(" "),n("div",{staticClass:"form_group",staticStyle:{"max-width":"400px"}},[n("label",{attrs:{for:"items_per_page"}},[t._v(t._s(t.$t("Pagination Items Per Page")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.perPage,expression:"default_settings.perPage"}],staticClass:"form_control",attrs:{id:"items_per_page",type:"number",disabled:1==t.default_settings.show_all||"1"==t.default_settings.show_all},domProps:{value:t.default_settings.perPage},on:{input:function(e){e.target.composing||t.$set(t.default_settings,"perPage",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"form-group",staticStyle:{"margin-top":"30px"}},[n("el-button",{attrs:{loading:t.saving,type:"success",size:"small"},on:{click:t.store}},[t._v("Update")])],1)]],2)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_header"},[e("h2",[this._v("Global Appearance Settings")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_block"},[e("p",[this._v("\n The following settings will be applied to the newly created tables. Of course, You can customize the\n appearance settings to each table level.\n ")])])}]}},function(t,e,n){var a=n(0)(n(386),n(387),!1,function(t){n(384)},null,null);t.exports=a.exports},function(t,e,n){var a=n(385);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("4435994d",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".license_form{text-align:center;padding:20px 0}.license_form label{font-size:30px;font-weight:400;display:block;margin-bottom:20px;text-transform:capitalize}.license_form .form_input input{min-width:400px;height:48px;width:50%;margin-bottom:20px;border-radius:5px;border:1px solid gray;background:#fbfdff;font-size:20px;padding:0 10px}.license_form .error_message{margin-top:40px;padding:10px;background:#ffe491;color:#000;font-weight:700;border-radius:5px}.license_success{text-align:center;padding:40px 0}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"license",data:function(){return{licenseKey:"",error_message:"",enter_new_license:!1,checkingLicense:!1,doing_ajax:!1,renewLicenseHtml:"",renewHtml:"",is_valid:window.ninja_table_admin.hasValidLicense}},methods:{activateLicense:function(){var t=this;this.licenseKey?(this.doing_ajax=!0,this.error_message="",jQuery.post(ajaxurl,{action:"_ninjatables_pro_license_activate_license",_ninjatables_pro_license_key:this.licenseKey}).then(function(e){e.data&&e.data.message?(jQuery(".error_notice_ninjatables_pro_license").remove(),t.is_valid="valid"):t.error_message="Something is wrong when contacting with license server. Please make sure you have curl installed you server",t.doing_ajax=!1}).fail(function(e){e.responseJSON&&e.responseJSON.data?t.error_message=e.responseJSON.data.message:t.error_message="Sorry, Something is wrong! Please make sure you have ninja tables pro installed and curl installed on your server",t.doing_ajax=!1}).always(function(){t.doing_ajax=!1})):this.error_message="Please provide a license key"},deactivateLicense:function(){var t=this;this.doing_ajax=!0,this.error_message="",jQuery.post(ajaxurl,{action:"_ninjatables_pro_license_deactivate_license"}).then(function(e){t.is_valid=!1}).fail(function(e){console.log(e),t.error_message=e.responseJSON.data.message,e.responseJSON&&e.responseJSON.data?t.$message.error(e.responseJSON.data.message):t.$message.error("Sorry, Something is wrong! Please try again")}).always(function(){t.doing_ajax=!1})},get_license_info:function(){var t=this;this.checkingLicense=!0,this.error_message="",jQuery.get(ajaxurl,{action:"_ninjatables_pro_license_get_license_info"}).then(function(e){t.renewLicenseHtml=e.data.renewHtml,t.is_valid=e.data.status,t.renewHtml=e.data.renewHtml}).fail(function(e){t.error_message=e.responseJSON.data.message}).always(function(){t.checkingLicense=!1})}},mounted:function(){this.get_license_info()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"license"},[n("div",{staticClass:"ninja_header"},["valid"==t.is_valid?n("div",[n("h2",[t._v(t._s(t.$t("Your License is Active")))])]):"expired"==t.is_valid?n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.checkingLicense,expression:"checkingLicense"}]},[n("h2",[t._v(t._s(t.$t("Licensing has been expired")))])]):n("div",[n("h2",[t._v(t._s(t.$t("Licensing")))]),t._v(" "),t._m(0)])]),t._v(" "),n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.checkingLicense,expression:"checkingLicense"}],staticClass:"ninja_content"},["valid"==t.is_valid?n("div",{staticClass:"license_success"},[n("h3",[t._v(t._s(t.$t("Your license is active! Enjoy Ninja Tables Pro Add On")))]),t._v(" "),n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.doing_ajax,expression:"doing_ajax"}],staticClass:"license_submit",attrs:{type:"default",size:"mini"},on:{click:function(e){t.deactivateLicense()}}},[t._v(t._s(t.$t("Deactivate License")))]),t._v(" "),t.renewHtml?n("p",{domProps:{innerHTML:t._s(t.renewHtml)}}):t._e()],1):"expired"==t.is_valid?n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.checkingLicense,expression:"checkingLicense"}],staticClass:"license_form"},[n("div",{staticClass:"checking_license",staticStyle:{"text-align":"center"},domProps:{innerHTML:t._s(t.renewLicenseHtml)}}),t._v(" "),n("p",[t._v("If you already renewed your license then please "),n("a",{attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.get_license_info()}}},[t._v("click here to check again")])]),t._v(" "),n("p",[t._v("Have a new license key? Please "),n("a",{attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.enter_new_license=!0}}},[t._v("click here")])]),t._v(" "),t.enter_new_license?n("div",{staticClass:"license_form"},[n("label",{attrs:{for:"license_form_input"}},[t._v("\n "+t._s(t.$t("Enter your license key"))+"\n ")]),t._v(" "),n("div",{staticClass:"form_input"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.licenseKey,expression:"licenseKey"}],attrs:{placeholder:"License Key",id:"license_form_input"},domProps:{value:t.licenseKey},on:{input:function(e){e.target.composing||(t.licenseKey=e.target.value)}}})]),t._v(" "),n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.doing_ajax,expression:"doing_ajax"}],staticClass:"license_submit",attrs:{type:"primary"},on:{click:function(e){t.activateLicense()}}},[t._v(t._s(t.$t("Activate Ninja Tables Pro")))]),t._v(" "),n("div",{staticClass:"nt_messages"},[t.error_message?n("p",{staticClass:"error_message",domProps:{innerHTML:t._s(t.error_message)}}):t._e()])],1):t._e()]):n("div",{staticClass:"license_form"},[n("label",{attrs:{for:"license_form_input"}},[t._v("\n "+t._s(t.$t("Enter your license key"))+"\n ")]),t._v(" "),n("div",{staticClass:"form_input"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.licenseKey,expression:"licenseKey"}],attrs:{placeholder:"License Key",id:"license_form_input"},domProps:{value:t.licenseKey},on:{input:function(e){e.target.composing||(t.licenseKey=e.target.value)}}})]),t._v(" "),n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.doing_ajax,expression:"doing_ajax"}],staticClass:"license_submit",attrs:{type:"primary"},on:{click:function(e){t.activateLicense()}}},[t._v(t._s(t.$t("Activate Ninja Tables Pro")))]),t._v(" "),n("div",{staticClass:"nt_messages"},[t.error_message?n("p",{staticClass:"error_message",domProps:{innerHTML:t._s(t.error_message)}}):t._e()])],1)])])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",[this._v("\n You need to activate your Ninja Table Pro by providing the license key bellow. If you don't have a\n license key please "),e("a",{attrs:{href:"https://wpmanageninja.com/checkout/purchase-history/",target:"_blank"}},[this._v("Click\n Here")]),this._v(" to get a license key from your purchase. "),e("br"),this._v("Any questions or problems with your license? "),e("a",{attrs:{href:"https://wpmanageninja.com/contact/",target:"_blank"}},[this._v("Contact us!")])])}]}},function(t,e,n){var a=n(0)(n(389),n(390),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"GlobalSettings",data:function(){return{loading:!1,ninja_suppress_error:"log_silently"}},methods:{getSettings:function(){var t=this;this.loading=!0,jQuery.get(ajaxurl,{action:"ninja_tables_ajax_actions",target_action:"get_global_settings"}).then(function(e){t.ninja_suppress_error=e.data.ninja_suppress_error}).fail(function(t){}).always(function(){t.loading=!1})},storeSettings:function(){var t=this,e={action:"ninja_tables_ajax_actions",target_action:"update_global_settings",suppress_error:this.ninja_suppress_error};jQuery.post(ajaxurl,e).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"})}).fail(function(t){})},clearCache:function(){var t=this;jQuery.post(ajaxurl,{action:"ninja_tables_ajax_actions",target_action:"clear_tables_cache"}).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"})}).fail(function(t){})}},mounted:function(){this.getSettings()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"privacy"},[t._m(0),t._v(" "),n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"ninja_content"},[n("div",{staticClass:"ninja_block"},[n("h3",[t._v("Global Javascript Error Handling")]),t._v(" "),n("el-radio-group",{staticClass:"spaced_new_line",model:{value:t.ninja_suppress_error,callback:function(e){t.ninja_suppress_error=e},expression:"ninja_suppress_error"}},[n("el-radio",{attrs:{label:"log_silently"}},[t._v("Console Log JS Errors Silently")]),t._v(" "),n("el-radio",{attrs:{label:"yes"}},[t._v("Handle Error But don't Log")]),t._v(" "),n("el-radio",{attrs:{label:"no"}},[t._v("Don't Handle Global Javascript Errors (Default)")])],1)],1),t._v(" "),n("el-button",{attrs:{size:"small",type:"success"},on:{click:function(e){t.storeSettings()}}},[t._v("Update Global Settings")])],1),t._v(" "),n("div",{staticClass:"ninja_block ninja_heightlight_block"},[n("h3",[t._v("Clear Table Cache")]),t._v(" "),n("p",[t._v("If you want to clear all the Ninja table cache, please click on the following button")]),t._v(" "),n("el-button",{attrs:{size:"small",type:"danger"},on:{click:function(e){t.clearCache()}}},[t._v("Clear Table Cache")])],1)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_header"},[e("h2",[this._v("Global Settings")])])}]}},function(t,e,n){var a=n(0)(n(394),n(409),!1,function(t){n(392)},null,null);t.exports=a.exports},function(t,e,n){var a=n(393);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("1d1d30f8",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".settings_header{font-size:20px;padding-bottom:20px;background:#fff;margin-top:-20px;padding-top:20px;margin-right:-20px;margin-left:-20px;padding-left:24px}.settings_header .action{font-size:16px;cursor:pointer}.settings_header .action:hover{color:#0085ba}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(108),i=n.n(a),o=n(395),s=n.n(o),l=n(14),r=n.n(l),c=n(77),u=n.n(c),d=n(407),_=n.n(d),p=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};e.default={name:"table_home",components:{edit_table:s.a},data:function(){return{table_tabs:[],is_data_saving:!1,is_form_saving:!1,tableId:this.$route.params.table_id,config:null,table:{},doingAjax:!1,doingAjaxTest:!1,user_tab:this.$route.query.user_tab,editTableModalShow:!1,preview_url:"#",has_pro:window.ninja_table_admin.hasPro}},methods:{updateTableColumns:function(t){var e=this;this.doingAjax=!0;var n={action:"ninja_tables_ajax_actions",target_action:"update-table-settings",table_id:this.tableId,columns:this.config.columns};jQuery.post(ajaxurl,n).success(function(n){e.$message({showClose:!0,message:n.message,type:"success"}),t(n)}).fail(function(t){}).always(function(){e.doingAjax=!1})},getSettings:function(){var t=this;this.doingAjax=!0;var e={action:"ninja_tables_ajax_actions",target_action:"get-table-settings",table_id:this.tableId};jQuery.getJSON(ajaxurl,e).then(function(e){"[object Object]"==Object.prototype.toString.call(e.columns)&&(e.columns=_()(e.columns)),t.config=e,t.table=e.table,t.preview_url=e.preview_url}).fail(function(e){t.$message.error(e.responseJSON.data.message),e.responseJSON.data.route&&t.$router.push({name:e.responseJSON.data.route})}).always(function(){return t.doingAjax=!1})},goToTab:function(t){this.user_tab=t,this.$router.push({name:"custom_tab",params:{table_id:this.tableId},query:{user_tab:t}})},size:u.a,each:r.a,initTableTabs:function(){this.table_tabs=this.applyFilters("ninja_table_table_tabs",[{route:"data_items",title:"Table Rows"},{route:"data_columns",title:"Table Configuration"},{route:"design_studio",title:"Table Design"},{route:"table_editing",title:"Frontend Editing"},{route:"additional_css",title:"Custom CSS/JS"},{route:"import-export",title:"Import - Export"}])}},mounted:function(){var t=this;this.initTableTabs(),this.getSettings(),new i.a(".copy").on("success",function(e){t.$message({message:"Copied to Clipboard!",type:"success"})}),window.ninjaTableBus.$on("initManualSorting",function(t,e,n){var a=p({action:"ninja_tables_init_sortable"},t);jQuery.post(ajaxurl,a).success(function(t){return e(t)}).fail(function(t){return n(t)})}),window.ninjaTableBus.$on("tableDoingAjax",function(e){t.doingAjax=e}),window.ninjaTableBus.$on("updateTableColumns",function(e){t.updateTableColumns(e)}),window.ninjaTableBus.$emit("addedTable")}}},function(t,e,n){var a=n(0)(n(396),n(397),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(36),i=n.n(a);e.default={name:"add_table",components:{wp_editor:i.a},props:{table:{type:Object,default:function(){return{ID:null,post_title:"",post_content:"",table_caption:""}}}},data:function(){return{btnLoading:!1}},methods:{handleTabClick:function(t,e){setTimeout(function(){jQuery(t.$el).find("input:first").focus()},0)},addTable:function(){var t=this;this.btnLoading=!0;var e={action:"ninja_tables_ajax_actions",target_action:"store-a-table",post_title:this.table.post_title,post_content:this.table.post_content,table_caption:this.table.table_caption,tableId:this.table.ID};jQuery.post(ajaxurl,e).then(function(e){t.$message({showClose:!0,message:e.message,type:"success"}),t.closeModal()}).fail(function(e){e.responseJSON.data.message?t.$message({showClose:!0,message:e.responseJSON.data.message,type:"error"}):t.$message({showClose:!0,message:e.responseText,type:"error"})}).always(function(){t.btnLoading=!1})},closeModal:function(){this.$emit("modal_close")}},mounted:function(){}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_table_edit"},[n("div",{staticClass:"ninja_modal-body"},[n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("el-input",{attrs:{type:"text",size:"small",placeholder:"Enter a title to identify your table"},model:{value:t.table.post_title,callback:function(e){t.$set(t.table,"post_title",e)},expression:"table.post_title"}})],1),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Table Caption")))]),t._v(" "),n("el-input",{attrs:{size:"small",type:"text",placeholder:"Enter a table caption if you want to show"},model:{value:t.table.table_caption,callback:function(e){t.$set(t.table,"table_caption",e)},expression:"table.table_caption"}})],1),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Table Description")))]),t._v(" "),n("wp_editor",{model:{value:t.table.post_content,callback:function(e){t.$set(t.table,"post_content",e)},expression:"table.post_content"}})],1)]),t._v(" "),n("div",{staticClass:"modal-footer"},[n("el-button",{attrs:{loading:t.btnLoading,type:"primary",size:"small"},on:{click:t.addTable}},[t._v("\n "+t._s(t.$t("Update"))+"\n ")])],1)])},staticRenderFns:[]}},function(t,e,n){var a=n(15)(n(5),"DataView");t.exports=a},function(t,e,n){var a=n(15)(n(5),"Promise");t.exports=a},function(t,e,n){var a=n(15)(n(5),"Set");t.exports=a},function(t,e,n){var a=n(15)(n(5),"WeakMap");t.exports=a},function(t,e,n){var a=n(10),i=n(4),o=n(6),s="[object String]";t.exports=function(t){return"string"==typeof t||!i(t)&&o(t)&&a(t)==s}},function(t,e,n){var a=n(404),i=n(405),o=n(406);t.exports=function(t){return i(t)?o(t):a(t)}},function(t,e,n){var a=n(131)("length");t.exports=a},function(t,e){var n=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");t.exports=function(t){return n.test(t)}},function(t,e){var n="[\\ud800-\\udfff]",a="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",i="\\ud83c[\\udffb-\\udfff]",o="[^\\ud800-\\udfff]",s="(?:\\ud83c[\\udde6-\\uddff]){2}",l="[\\ud800-\\udbff][\\udc00-\\udfff]",r="(?:"+a+"|"+i+")"+"?",c="[\\ufe0e\\ufe0f]?"+r+("(?:\\u200d(?:"+[o,s,l].join("|")+")[\\ufe0e\\ufe0f]?"+r+")*"),u="(?:"+[o+a+"?",a,s,l,n].join("|")+")",d=RegExp(i+"(?="+i+")|"+u+c,"g");t.exports=function(t){for(var e=d.lastIndex=0;d.test(t);)++e;return e}},function(t,e,n){var a=n(408),i=n(37);t.exports=function(t){return null==t?[]:a(t,i(t))}},function(t,e,n){var a=n(22);t.exports=function(t,e){return a(e,function(e){return t[e]})}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.doingAjax?n("span",{directives:[{name:"loading",rawName:"v-loading",value:t.doingAjax,expression:"doingAjax"}],staticClass:"doingAJaxLoading"}):t._e(),t._v(" "),n("div",{staticClass:"settings_header"},[n("div",{staticStyle:{display:"inline-block","margin-top":"8px"}},[n("el-button",{staticClass:"ninja_mini",attrs:{size:"mini"},on:{click:function(e){t.editTableModalShow=!t.editTableModalShow}}},[n("i",{staticClass:"el-icon-edit action",attrs:{title:"Edit"}},[t._v(t._s(t.$t("Edit")))])]),t._v(" "),n("span",{staticClass:"section_title"},[t._v(t._s(t.table.post_title))]),t._v(" "),n("el-tooltip",{attrs:{effect:"dark",content:"Click to copy shortcode",title:"Click to copy shortcode",placement:"top"}},[n("code",{staticClass:"copy",attrs:{"data-clipboard-text":'[ninja_tables id="'+t.tableId+'"]'}},[n("i",{staticClass:"el-icon-document"}),t._v(' [ninja_tables id="'+t._s(t.tableId)+'"]\n ')])])],1),t._v(" "),n("span",{staticClass:"pull-right",staticStyle:{"margin-right":"20px"}},[n("router-link",{staticClass:"doc_link",attrs:{to:{name:"help"}}},[t._v(t._s(t.$t("Documentation")))]),t._v(" "),n("a",{attrs:{href:t.preview_url,target:"_blank"}},[n("el-button",{attrs:{size:"mini"}},[t._v(t._s(t.$t("Preview")))])],1),t._v(" "),t.has_pro?t._e():n("a",{attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade",target:"_blank"}},[n("el-button",{attrs:{type:"danger",size:"mini"}},[t._v(t._s(t.$t("Buy Pro")))])],1)],1)]),t._v(" "),n("fieldset",{class:[t.is_form_saving?"disabled":""],attrs:{disabled:t.is_form_saving}},[n("h2",{staticClass:"nav-tab-wrapper"},t._l(t.table_tabs,function(e){return n("router-link",{key:e.route,class:["nav-tab"],attrs:{"active-class":"nav-tab-active",exact:"",to:{name:e.route,params:{table_id:t.tableId}}}},[t._v("\n "+t._s(e.title)+"\n ")])})),t._v(" "),t.config?n("router-view",{attrs:{config:t.config,getColumnSettings:t.getSettings}}):t._e()],1),t._v(" "),n("el-dialog",{attrs:{title:"Update Table Info",visible:t.editTableModalShow,top:"50px","append-to-body":!0},on:{"update:visible":function(e){t.editTableModalShow=e}}},[t.editTableModalShow?n("edit_table",{attrs:{table:t.table},on:{modal_close:function(e){t.editTableModalShow=!t.editTableModalShow}}}):t._e()],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(413),n(529),!1,function(t){n(411)},null,null);t.exports=a.exports},function(t,e,n){var a=n(412);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("33f2b9d0",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".el-table{margin-top:10px;margin-bottom:10px}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.sorting tr{cursor:move}.el-table__header tr th:hover .nt-column-config{opacity:1}.nt-column-config{padding-left:5px;cursor:pointer;opacity:0;display:inline-block}.nt-column-config:hover{color:#58b7ff}.instruction_block{padding:30px 20px;background:#fff}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(132),i=n.n(a),o=n(133),s=n.n(o),l=n(141),r=n.n(l),c=n(456),u=n.n(c),d=n(109),_=n.n(d),p=n(144),f=n.n(p),m=n(474),v=n.n(m),h=n(145),b=n.n(h),g=n(48),y=n.n(g),w=n(503),x=n.n(w),k=n(508),C=n.n(k),S=n(513),j=n.n(S),$=n(518),T=n.n($),P=n(523),E=n.n(P),A=n(526),N=n.n(A);e.default={name:"TableDataItems",components:{add_data_modal:u.a,ninja_pagination:_.a,Alert:f.a,DeletePopOver:v.a,SortableUpgradeNotice:b.a,columnsEditor:y.a,FluentFormNav:x.a,ExternalSourceNav:C.a,WPPostsNav:T.a,RawSqlNav:j.a,WooNavEdit:E.a,ShowEditableCell:N.a},props:["config","getColumnSettings","hasPro"],data:function(){return{columnModal:!1,show_meta:!1,new_column:{},has_pro:!!window.ninja_table_admin.hasPro,hasSortable:!!window.ninja_table_admin.hasSortable,isCompact:!0,tableWidth:"100%",tableData:[],searchString:"",doingAjax:!1,addDataModal:!1,tableId:this.$route.params.table_id,loading:!1,syncing:!1,bulkAction:-1,selectAll:0,checkedItems:[],pageLoading:!1,items:[],paginate:{total:0,current_page:1,last_page:1,per_page:20},multipleSelection:[],updateItem:null,editIndex:null,sorting:!1,sortableInstance:null,sortableUpgradeNotice:!1,insertAfterPosition:null,showColumnEditor:!1,currentEditingColumn:!1,addDataModalTitle:"Add Row",dataModalType:"add",dataSource:"default",isUpdatingTableSettings:!1,externalDataSourceUrl:this.config.table.remoteURL,insertAfterId:!1,insertAfterHash:!1}},watch:{searchString:function(){""==this.searchString&&this.getData()},sorting:function(t){if(t){if(!this.has_pro)return this.sorting=!1,void window.ninjaTableBus.$emit("show_pro_popup");if(!this.hasSortable)return this.sorting=!1,void(this.sortableUpgradeNotice=!0)}this.toggleSorting(t)},"new_column.name":function(){this.new_column.key=r()(this.new_column.name)}},computed:{columns:function(){return this.config&&this.config.columns?this.config.columns:[]},columnLength:function(){return this.columns.length},dataSourceType:function(){var t=this.config;return t&&"dataSourceType"in t.table?t.table.dataSourceType:"default"},isEditable:function(){var t=this.config;return!(t&&"isEditable"in t.table)||t.table.isEditable},isEditableMessage:function(){var t=this.config;return t&&"isEditableMessage"in t.table?t.table.isEditableMessage:null}},methods:{getData:function(){var t=this,e={action:"ninja_tables_ajax_actions",target_action:"get-table-data",table_id:this.tableId,page:this.paginate.current_page,per_page:this.paginate.per_page,search:this.searchString,default_sorting:this.config.settings.default_sorting};return this.loading=!0,jQuery.get(ajaxurl,e).success(function(e){t.items=e.data,t.dataSource=e.data_source,t.paginate.total=parseInt(e.total),t.paginate.last_page=parseInt(e.last_page)}).fail(function(t){}).always(function(){t.loading=!1})},addTableData:function(){},getItemNumber:function(t){return this.paginate.per_page*(this.paginate.current_page-1)+(t+1)},goToPage:function(t){this.paginate.current_page=t,this.getData()},handleSizeChange:function(t){this.paginate.per_page=t,this.getData()},confirmDeleteTable:function(t){confirm(this.$t("Are you sure, You want to delete this table"))&&this.deleteTable(t)},deleteTable:function(t){var e=this,n={action:"ninja_tables_ajax_actions",target_action:"delete-a-table",table_id:t};jQuery.post(ajaxurl,n).then(function(t){e.fetchTables(),alert(t.message)}).fail(function(t){alert(t.responseJSON.data.message)})},handleSelectionChange:function(t){this.multipleSelection=t},handleBulkAction:function(){this.multipleSelection.length&&"delete"==this.bulkAction&&this.handleBulkDelete()},handleBulkDelete:function(){var t=this;this.$confirm(this.$t("This will permanently delete the selected rows. Continue?"),"Warning",{confirmButtonText:this.$t("Yes, Delete"),cancelButtonText:this.$t("Cancel"),type:"warning"}).then(function(){var e=t.multipleSelection.map(function(t){return t.id});t.deleteItem(e)}).catch(function(){t.$message({type:"info",message:t.$t("Delete canceled")})})},deleteItem:function(t){var e=this,n={action:"ninja_tables_ajax_actions",target_action:"delete-data",table_id:this.tableId,id:t},a=this;jQuery.post(ajaxurl,n).then(function(t){e.$message({showClose:!0,message:t.message,type:"success"}),a.getData()}).fail(function(t){e.$message({showClose:!0,message:e.$t("Something is wrong! Please try again"),type:"error"})})},closeDataModal:function(t){this.addDataModal=!1,this.editIndex=null,this.insertAfterPosition=null,this.dataModalType="add",this.insertAfterId=!1,this.insertAfterHash=!1,t&&this.getData()},updateItemOnTable:function(t){this.items[this.editIndex].values=t.values,this.items[this.editIndex].settings=t.settings,t.created_at&&(this.items[this.editIndex].created_at=t.created_at)},addItemOnTable:function(t,e){e||(e=t.position),"last-first"==e&&(e="new_first"==this.config.settings.default_sorting?"first":"last"),e?"last"==e?this.items.push(t):"first"==e?this.items.unshift(t):!1!==this.insertAfterHash?(this.insertAfterHash++,this.items.splice(this.insertAfterHash,-1,t)):this.items.push(t):this.items.unshift(t),this.insertAfterPosition&&(this.insertAfterPosition=t.position),this.insertAfterId&&(this.insertAfterId=t.id),this.paginate.total++},showUpdateModal:function(t){this.updateItem=t.row,this.editIndex=t.$index,this.addDataModal=!0,this.dataModalType="update",this.addDataModalTitle="Update Row"},addColumn:function(){this.columnModal=!0},validateColumn:function(t){return t.name?t.key?-1===s()(this.columns,function(e){return e.key==t.key})||(this.$message({showClose:!0,message:this.$t("Column Key needs to be unique. Please add a suffix / prefix to make it unique"),type:"error"}),!1):(this.$message({showClose:!0,message:this.$t("Column Key is required"),type:"error"}),!1):(this.$message({showClose:!0,message:this.$t("Name is required"),type:"error"}),!1)},addNewColumn:function(){this.validateColumn(this.new_column)&&(this.config.columns.push(this.new_column),this.setNewColumn(),this.columnModal=!1,this.storeSettings())},setNewColumn:function(){var t={name:"",key:"",breakpoints:"",data_type:"text",dateFormat:"",header_html_content:"",enable_html_content:!1};"wp-posts"===this.dataSourceType&&(t.source_type="custom"),this.new_column=t},initSortable:function(){var t=document.querySelector(".js-sortable-table tbody"),e=this;this.sortableInstance=i.a.create(t,{onEnd:function(t){var n=t.newIndex,a=t.oldIndex,i=e.items[a];e.sortTable(i.id,e.items[n].position);var o=e.items.splice(a,1)[0];e.items.splice(n,0,o)}})},toggleSorting:function(t){var e=this;t?(this.loading=!0,new Promise(function(t,n){window.ninjaTableBus.$emit("initManualSorting",{table_id:e.tableId,page:e.paginate.current_page,per_page:e.paginate.per_page,search:e.searchString,default_sorting:e.config.settings.default_sorting},t,n)}).then(function(t){e.items=t.data,e.paginate.total=parseInt(t.total),e.paginate.last_page=parseInt(t.last_page),e.config.settings.sorting_type="manual_sort",e.initSortable()}).catch(function(t){console.log(t)}).then(function(){e.loading=!1})):this.sortableInstance&&this.sortableInstance.destroy()},sortTable:function(t,e){var n=this;this.loading=!0;var a={action:"ninja_tables_sort_table",table_id:this.tableId,id:t,newPosition:e,page:this.paginate.current_page,per_page:this.paginate.per_page,search:this.searchString,default_sorting:this.config.settings.default_sorting};jQuery.post(ajaxurl,a).then(function(t){n.items=t.data,n.paginate.total=parseInt(t.total),n.paginate.last_page=parseInt(t.last_page)}).fail(function(t){console.log(t)}).always(function(){n.loading=!1})},add:function(){this.updateItem=null,this.insertAfterPosition=null,this.addDataModal=!0,this.dataModalType="add",this.addDataModalTitle="Add Data"},addAfter:function(t){this.hasSortable?(this.updateItem=null,this.addDataModalTitle="Add Data",this.dataModalType="add-after",this.insertAfterPosition=parseInt(t.row.position),this.insertAfterHash=t.$index,this.insertAfterId=t.row.id,this.addDataModal=!0):this.sortableUpgradeNotice=!0},addConfigIcon:function(t,e){var n=e.column,a=(e.$index,this),i=JSON.parse(n.label),o=t("i",{props:{size:"mini",class:"el-icon-setting",plain:!0,round:!0},class:"el-icon-setting nt-column-config",on:{click:function(t){a.showColumnConfigModal(i)}}});return t("span",null,[i.name||i.key,o])},showColumnConfigModal:function(t){this.currentEditingColumn=this.columns.find(function(e){return e.key===t.key}),this.showColumnEditor=!0},storeSettings:function(){var t=this;window.ninjaTableBus.$emit("updateTableColumns",function(){t.showColumnEditor=!1,t.currentEditingColumn=!1,t.dataSource&&"default"!=t.dataSource&&t.getData()})},duplicateData:function(t){this.updateItem=Object.assign({},t.row),this.updateItem.id=null,this.hasSortable&&(this.insertAfterPosition=t.$index+1),this.insertAfterPosition=parseInt(t.row.position),this.insertAfterHash=t.$index,this.insertAfterId=t.row.id,this.addDataModal=!0,this.dataModalType="duplicate",this.addDataModalTitle="Duplicate Data"},reloadSettingsAndData:function(){this.getColumnSettings(),this.getData()},deleteColumn:function(){var t=this,e=s()(this.config.columns,this.currentEditingColumn);this.showColumnEditor=!1,this.currentEditingColumn=!1,this.config.columns.splice(e,1),this.$nextTick(function(){return t.storeSettings()})}},mounted:function(){this.getData(),this.tableWidth=jQuery(".wrap").width()+"px",this.setNewColumn()}}},function(t,e,n){var a=n(415),i=n(436),o=n(41),s=n(4),l=n(443);t.exports=function(t){return"function"==typeof t?t:null==t?o:"object"==typeof t?s(t)?i(t[0],t[1]):a(t):l(t)}},function(t,e,n){var a=n(416),i=n(435),o=n(138);t.exports=function(t){var e=i(t);return 1==e.length&&e[0][2]?o(e[0][0],e[0][1]):function(n){return n===t||a(n,t,e)}}},function(t,e,n){var a=n(134),i=n(135),o=1,s=2;t.exports=function(t,e,n,l){var r=n.length,c=r,u=!l;if(null==t)return!c;for(t=Object(t);r--;){var d=n[r];if(u&&d[2]?d[1]!==t[d[0]]:!(d[0]in t))return!1}for(;++r<c;){var _=(d=n[r])[0],p=t[_],f=d[1];if(u&&d[2]){if(void 0===p&&!(_ in t))return!1}else{var m=new a;if(l)var v=l(p,f,_,t,e,m);if(!(void 0===v?i(f,p,o|s,l,m):v))return!1}}return!0}},function(t,e,n){var a=n(43);t.exports=function(){this.__data__=new a,this.size=0}},function(t,e){t.exports=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n}},function(t,e){t.exports=function(t){return this.__data__.get(t)}},function(t,e){t.exports=function(t){return this.__data__.has(t)}},function(t,e,n){var a=n(43),i=n(76),o=n(75),s=200;t.exports=function(t,e){var n=this.__data__;if(n instanceof a){var l=n.__data__;if(!i||l.length<s-1)return l.push([t,e]),this.size=++n.size,this;n=this.__data__=new o(l)}return n.set(t,e),this.size=n.size,this}},function(t,e,n){var a=n(134),i=n(136),o=n(424),s=n(428),l=n(130),r=n(4),c=n(114),u=n(117),d=1,_="[object Arguments]",p="[object Array]",f="[object Object]",m=Object.prototype.hasOwnProperty;t.exports=function(t,e,n,v,h,b){var g=r(t),y=r(e),w=g?p:l(t),x=y?p:l(e),k=(w=w==_?f:w)==f,C=(x=x==_?f:x)==f,S=w==x;if(S&&c(t)){if(!c(e))return!1;g=!0,k=!1}if(S&&!k)return b||(b=new a),g||u(t)?i(t,e,n,v,h,b):o(t,e,w,n,v,h,b);if(!(n&d)){var j=k&&m.call(t,"__wrapped__"),$=C&&m.call(e,"__wrapped__");if(j||$){var T=j?t.value():t,P=$?e.value():e;return b||(b=new a),h(T,P,n,v,b)}}return!!S&&(b||(b=new a),s(t,e,n,v,h,b))}},function(t,e){t.exports=function(t,e){for(var n=-1,a=null==t?0:t.length;++n<a;)if(e(t[n],n,t))return!0;return!1}},function(t,e,n){var a=n(11),i=n(425),o=n(127),s=n(136),l=n(426),r=n(427),c=1,u=2,d="[object Boolean]",_="[object Date]",p="[object Error]",f="[object Map]",m="[object Number]",v="[object RegExp]",h="[object Set]",b="[object String]",g="[object Symbol]",y="[object ArrayBuffer]",w="[object DataView]",x=a?a.prototype:void 0,k=x?x.valueOf:void 0;t.exports=function(t,e,n,a,x,C,S){switch(n){case w:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case y:return!(t.byteLength!=e.byteLength||!C(new i(t),new i(e)));case d:case _:case m:return o(+t,+e);case p:return t.name==e.name&&t.message==e.message;case v:case b:return t==e+"";case f:var j=l;case h:var $=a&c;if(j||(j=r),t.size!=e.size&&!$)return!1;var T=S.get(t);if(T)return T==e;a|=u,S.set(t,e);var P=s(j(t),j(e),a,x,C,S);return S.delete(t),P;case g:if(k)return k.call(t)==k.call(e)}return!1}},function(t,e,n){var a=n(5).Uint8Array;t.exports=a},function(t,e){t.exports=function(t){var e=-1,n=Array(t.size);return t.forEach(function(t,a){n[++e]=[a,t]}),n}},function(t,e){t.exports=function(t){var e=-1,n=Array(t.size);return t.forEach(function(t){n[++e]=t}),n}},function(t,e,n){var a=n(429),i=1,o=Object.prototype.hasOwnProperty;t.exports=function(t,e,n,s,l,r){var c=n&i,u=a(t),d=u.length;if(d!=a(e).length&&!c)return!1;for(var _=d;_--;){var p=u[_];if(!(c?p in e:o.call(e,p)))return!1}var f=r.get(t);if(f&&r.get(e))return f==e;var m=!0;r.set(t,e),r.set(e,t);for(var v=c;++_<d;){var h=t[p=u[_]],b=e[p];if(s)var g=c?s(b,h,p,e,t,r):s(h,b,p,t,e,r);if(!(void 0===g?h===b||l(h,b,n,s,r):g)){m=!1;break}v||(v="constructor"==p)}if(m&&!v){var y=t.constructor,w=e.constructor;y!=w&&"constructor"in t&&"constructor"in e&&!("function"==typeof y&&y instanceof y&&"function"==typeof w&&w instanceof w)&&(m=!1)}return r.delete(t),r.delete(e),m}},function(t,e,n){var a=n(430),i=n(432),o=n(37);t.exports=function(t){return a(t,o,i)}},function(t,e,n){var a=n(431),i=n(4);t.exports=function(t,e,n){var o=e(t);return i(t)?o:a(o,n(t))}},function(t,e){t.exports=function(t,e){for(var n=-1,a=e.length,i=t.length;++n<a;)t[i+n]=e[n];return t}},function(t,e,n){var a=n(433),i=n(434),o=Object.prototype.propertyIsEnumerable,s=Object.getOwnPropertySymbols,l=s?function(t){return null==t?[]:(t=Object(t),a(s(t),function(e){return o.call(t,e)}))}:i;t.exports=l},function(t,e){t.exports=function(t,e){for(var n=-1,a=null==t?0:t.length,i=0,o=[];++n<a;){var s=t[n];e(s,n,t)&&(o[i++]=s)}return o}},function(t,e){t.exports=function(){return[]}},function(t,e,n){var a=n(137),i=n(37);t.exports=function(t){for(var e=i(t),n=e.length;n--;){var o=e[n],s=t[o];e[n]=[o,s,a(s)]}return e}},function(t,e,n){var a=n(135),i=n(78),o=n(440),s=n(79),l=n(137),r=n(138),c=n(46),u=1,d=2;t.exports=function(t,e){return s(t)&&l(e)?r(c(t),e):function(n){var s=i(n,t);return void 0===s&&s===e?o(n,t):a(e,s,u|d)}}},function(t,e,n){var a=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,i=/\\(\\)?/g,o=n(438)(function(t){var e=[];return 46===t.charCodeAt(0)&&e.push(""),t.replace(a,function(t,n,a,o){e.push(a?o.replace(i,"$1"):n||t)}),e});t.exports=o},function(t,e,n){var a=n(439),i=500;t.exports=function(t){var e=a(t,function(t){return n.size===i&&n.clear(),t}),n=e.cache;return e}},function(t,e,n){var a=n(75),i="Expected a function";function o(t,e){if("function"!=typeof t||null!=e&&"function"!=typeof e)throw new TypeError(i);var n=function(){var a=arguments,i=e?e.apply(this,a):a[0],o=n.cache;if(o.has(i))return o.get(i);var s=t.apply(this,a);return n.cache=o.set(i,s)||o,s};return n.cache=new(o.Cache||a),n}o.Cache=a,t.exports=o},function(t,e,n){var a=n(441),i=n(442);t.exports=function(t,e){return null!=t&&i(t,e,a)}},function(t,e){t.exports=function(t,e){return null!=t&&e in Object(t)}},function(t,e,n){var a=n(140),i=n(113),o=n(4),s=n(116),l=n(73),r=n(46);t.exports=function(t,e,n){for(var c=-1,u=(e=a(e,t)).length,d=!1;++c<u;){var _=r(e[c]);if(!(d=null!=t&&n(t,_)))break;t=t[_]}return d||++c!=u?d:!!(u=null==t?0:t.length)&&l(u)&&s(_,u)&&(o(t)||i(t))}},function(t,e,n){var a=n(131),i=n(444),o=n(79),s=n(46);t.exports=function(t){return o(t)?a(s(t)):i(t)}},function(t,e,n){var a=n(139);t.exports=function(t){return function(e){return a(e,t)}}},function(t,e,n){var a=n(446);t.exports=function(t){var e=a(t),n=e%1;return e==e?n?e-n:e:0}},function(t,e,n){var a=n(447),i=1/0,o=1.7976931348623157e308;t.exports=function(t){return t?(t=a(t))===i||t===-i?(t<0?-1:1)*o:t==t?t:0:0===t?t:0}},function(t,e,n){var a=n(40),i=n(23),o=NaN,s=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,r=/^0b[01]+$/i,c=/^0o[0-7]+$/i,u=parseInt;t.exports=function(t){if("number"==typeof t)return t;if(i(t))return o;if(a(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=a(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(s,"");var n=r.test(t);return n||c.test(t)?u(t.slice(2),n?2:8):l.test(t)?o:+t}},function(t,e,n){var a=n(449),i=n(450),o=n(452),s=RegExp("['’]","g");t.exports=function(t){return function(e){return a(o(i(e).replace(s,"")),t,"")}}},function(t,e){t.exports=function(t,e,n,a){var i=-1,o=null==t?0:t.length;for(a&&o&&(n=t[++i]);++i<o;)n=e(n,t[i],i,t);return n}},function(t,e,n){var a=n(451),i=n(24),o=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,s=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g");t.exports=function(t){return(t=i(t))&&t.replace(o,a).replace(s,"")}},function(t,e,n){var a=n(47)({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"});t.exports=a},function(t,e,n){var a=n(453),i=n(454),o=n(24),s=n(455);t.exports=function(t,e,n){return t=o(t),void 0===(e=n?void 0:e)?i(t)?s(t):a(t):t.match(e)||[]}},function(t,e){var n=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;t.exports=function(t){return t.match(n)||[]}},function(t,e){var n=/[a-z][A-Z]|[A-Z]{2,}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;t.exports=function(t){return n.test(t)}},function(t,e){var n="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",a="["+n+"]",i="\\d+",o="[\\u2700-\\u27bf]",s="[a-z\\xdf-\\xf6\\xf8-\\xff]",l="[^\\ud800-\\udfff"+n+i+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",r="(?:\\ud83c[\\udde6-\\uddff]){2}",c="[\\ud800-\\udbff][\\udc00-\\udfff]",u="[A-Z\\xc0-\\xd6\\xd8-\\xde]",d="(?:"+s+"|"+l+")",_="(?:"+u+"|"+l+")",p="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",f="[\\ufe0e\\ufe0f]?"+p+("(?:\\u200d(?:"+["[^\\ud800-\\udfff]",r,c].join("|")+")[\\ufe0e\\ufe0f]?"+p+")*"),m="(?:"+[o,r,c].join("|")+")"+f,v=RegExp([u+"?"+s+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[a,u,"$"].join("|")+")",_+"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[a,u+d,"$"].join("|")+")",u+"?"+d+"+(?:['’](?:d|ll|m|re|s|t|ve))?",u+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",i,m].join("|"),"g");t.exports=function(t){return t.match(v)||[]}},function(t,e,n){var a=n(0)(n(459),n(469),!1,function(t){n(457)},null,null);t.exports=a.exports},function(t,e,n){var a=n(458);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("28d73cd2",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".dialog-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.dialog-footer.single-child{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.row_config_container{display:block;padding:10px 15px;background:#d8edfd;position:relative;border-radius:5px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(14),i=n.n(a),o=n(36),s=n.n(o),l=n(142),r=n.n(l),c=n(462),u=n.n(c),d=n(143),_=n.n(d);e.default={name:"add_data",props:["title","show","columns","table_id","item","manualSort","insertAfterPosition","insertAfterId","type"],data:function(){return{row_config:!1,editorOption:{modules:{toolbar:[["bold","italic","underline","strike","link"],["blockquote","code-block"],[{header:1},{header:2}],[{list:"ordered"},{list:"bullet"}],[{script:"sub"},{script:"super"}],[{align:[]}],[{direction:"rtl"}]]}},btnLoading:!1,continueAdding:!0,newColumn:{},has_pro:!!window.ninja_table_admin.hasPro,position:"last",modal_title:"Add Row",item_settings:{},created_at:"",adding_counter:1}},computed:{editId:function(){return this.item&&this.item.id},shouldNotContinueAdding:function(){return!(!this.editId&&"duplicate"!==this.type)}},watch:{item:function(){this.initNewColumnObj(),this.item||(this.modal_title="Add Row")}},methods:{addData:function(){var t=this,e=!1;if(i()(this.newColumn,function(t){t&&(e=!0)}),e){this.btnLoading=!0;var n={action:"ninja_tables_ajax_actions",target_action:"store-table-data",table_id:this.table_id,row:this.newColumn,id:this.editId,created_at:this.created_at,settings:this.item_settings,position:this.position};this.insertAfterId&&(n.insert_after_id=this.insertAfterId,n.position=parseInt(this.insertAfterPosition)+1),jQuery.post(ajaxurl,n).then(function(e){if(e.item){if(t.$message({showClose:!0,message:e.message,type:"success"}),t.initNewColumnObj(),t.editId)t.$emit("updateItem",e.item);else{var a=n.position;t.manualSort||t.insertAfterId||(a="last-first"),t.$emit("createItem",e.item,a)}!t.editId&&t.continueAdding||t.$emit("modal_close"),"duplicate"===t.type&&t.$emit("modal_close"),t.adding_counter++}else t.$message({showClose:!0,message:"Failed to add/update data. Please reload this page and try again",type:"error"})}).fail(function(e){t.$message({showClose:!0,message:e.responseJSON.data.message,type:"error"})}).always(function(){t.btnLoading=!1})}else this.$message({showClose:!0,message:"Please add at least 1 value to the row",type:"error"})},closeModal:function(){this.$emit("modal_close")},initNewColumnObj:function(){var t=this,e={};i()(this.columns,function(n){t.item&&t.item.values[n.key]?e[n.key]=t.item.values[n.key]:"selection"==n.data_type&&"yes"==n.isMultiple?e[n.key]=[]:e[n.key]=""}),this.newColumn=e,this.initItemSettings()},initItemSettings:function(){var t=this;this.item&&this.item.settings&&(this.item_settings=this.item.settings),this.item_settings.cell||this.$set(this.item_settings,"cell",{}),i()(this.columns,function(e){t.item_settings.cell[e.key]||t.$set(t.item_settings.cell,e.key,{})}),this.item&&(this.created_at=this.item.created_at)},onEditorChange:function(t,e){e.editor;var n=e.html;e.text;this.newColumn[t]=n},slugify:function(t){return t.toString().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,"")},getFromSelectionStr:function(t){return t?t.split("\n"):[]}},mounted:function(){this.initNewColumnObj()},components:{wp_editor:s.a,NinjaDatePicker:_.a,mayBeSelect:r.a,ImageSelector:u.a}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"maybe_multi_select",props:["newColumn","column","size"],data:function(){return{appReady:!1}},methods:{getFromSelectionStr:function(t){return t?t.split(/\r?\n/):[]},maybeBlur:function(t){console.log(t),t||this.$emit("blur")}},mounted:function(){if("yes"==this.column.isMultiple){var t=this.newColumn[this.column.key];t?"string"==typeof t&&(this.newColumn[this.column.key]=[t]):this.newColumn[this.column.key]=[]}this.appReady=!0}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.appReady?n("div",{staticClass:"maybe_nt_multi_select"},["yes"==t.column.isMultiple?[n("el-select",{staticStyle:{width:"100%"},attrs:{filterable:"",multiple:"","allow-create":"",size:t.size,"default-first-option":"",placeholder:"Choose from the List"},on:{"remove-tag":function(e){t.$emit("blur")},change:function(e){t.$emit("blur")}},model:{value:t.newColumn[t.column.key],callback:function(e){t.$set(t.newColumn,t.column.key,e)},expression:"newColumn[column.key]"}},t._l(t.getFromSelectionStr(t.column.selections),function(t){return n("el-option",{key:t,attrs:{label:t,value:t}})}))]:[n("el-select",{staticStyle:{width:"100%"},attrs:{size:t.size,filterable:"","allow-create":"","default-first-option":"",placeholder:"Choose from the List"},on:{change:function(e){t.$emit("blur")}},model:{value:t.newColumn[t.column.key],callback:function(e){t.$set(t.newColumn,t.column.key,e)},expression:"newColumn[column.key]"}},t._l(t.getFromSelectionStr(t.column.selections),function(t){return n("el-option",{key:t,attrs:{label:t,value:t}})}))]],2):t._e()},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(463),n(464),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(14),i=n.n(a);e.default={name:"maybe_multi_select",props:["newColumn","column","adding_counter"],data:function(){return{appReady:!1,upload_action:"",data:{},preferedThum:window.ninja_table_admin.prefered_thumb}},watch:{adding_counter:function(){console.log(this.adding_counter);this.newColumn[this.column.key]={permalink:"",image_thumb:"",image_full:""},this.data=this.newColumn[this.column.key]}},methods:{beforeAvatarUpload:function(t){return"image/jpg"==t.type||"image/gif"==t.type||"image/png"==t.type||(this.$message.error("Image need to be jpg/png/gif format"),!1)},handleAvatarSuccess:function(t,e){console.log(t)},initUploader:function(t){var e=this,n=wp.media.editor.send.attachment;return wp.media.editor.send.attachment=function(t,a){console.log(a),e.newColumn[e.column.key].alt_text=a.alt||a.title,e.newColumn[e.column.key].image_full=a.url,e.newColumn[e.column.key].image_thumb=e.getThumb(a),wp.media.editor.send.attachment=n},wp.media.editor.open(),!1},initFileUploader:function(t){var e=this,n=wp.media.editor.send.attachment;return wp.media.editor.send.attachment=function(t,a){e.newColumn[e.column.key].permalink=a.url,wp.media.editor.send.attachment=n},wp.media.editor.open(),!1},getThumb:function(t){var e=this,n=t.width,a=t.url,o=!1;return"original"==this.preferedThum?t.url:(i()(t.sizes,function(t,i){i==e.preferedThum&&(o=t.url),(!o||t.width>300)&&(t.width<400?o=t.url:t.width<n&&(n=t.width,a=t.url))}),o||a)},preinitUploader:function(){var t=this.newColumn[this.column.key],e={permalink:"",image_thumb:"",image_full:""};t?"string"==typeof t&&(this.newColumn[this.column.key]=e):this.newColumn[this.column.key]=e,this.data=this.newColumn[this.column.key]}},mounted:function(){this.preinitUploader(),this.appReady=!0}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.appReady?n("div",{staticClass:"image_selector"},["hyperlinked"==t.column.link_type||"none"==t.column.link_type||"image_light_box"==t.column.link_type||"iframe_ligtbox"==t.column.link_type?[n("div",{staticClass:"nt_form_group"},[n("label",[t._v("Upload Image")]),t._v(" "),n("div",{staticClass:"nt_form_input"},[t.data.image_thumb?n("div",{staticClass:"image_preview"},[n("img",{attrs:{src:t.data.image_thumb}})]):t._e(),t._v(" "),n("el-button",{staticClass:"image_select_button",attrs:{size:"mini",type:"info"},on:{click:t.initUploader}},[t.data.image_thumb?n("span",[t._v("Change Image")]):n("span",[t._v("Upload Image")])])],1)]),t._v(" "),"hyperlinked"==t.column.link_type||"iframe_ligtbox"==t.column.link_type?n("div",{staticClass:"nt_form_group"},["iframe_ligtbox"==t.column.link_type?n("label",[t._v("Iframe URL (Only The URL)")]):n("label",[t._v("Target URL")]),t._v(" "),n("div",{staticClass:"nt_form_input"},[n("el-input",{attrs:{type:"url",size:"mini",placeholder:"Permalink"},model:{value:t.data.permalink,callback:function(e){t.$set(t.data,"permalink",e)},expression:"data.permalink"}})],1)]):t._e()]:t._e()],2):t._e()},staticRenderFns:[]}},function(t,e,n){var a=n(466);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("0ac0422f",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_date_picker>.form-control{width:90%;float:left}.ninja_date_picker>.el-date-editor{width:8px!important;padding:0;margin:0;cursor:pointer}.ninja_date_picker>.el-date-editor .el-input__inner{width:10px!important;padding:15px;background:gray;height:34px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninjaDatePicker",props:["column","new_column","only_picker"],computed:{elementFormat:function(){var t=this.column.dateFormat;return"DD-MMM-YY"==t?"dd/MMM/YY":t.replace(/Y/g,"y").replace(/D/g,"d")}},methods:{slugify:function(t){return t.toString().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,"")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:"yes"==t.only_picker?"ninja_only_picker":"ninja_date_picker"},["yes"!=t.only_picker?n("input",{directives:[{name:"model",rawName:"v-model",value:t.new_column[t.column.key],expression:"new_column[column.key]"}],staticClass:"form-control",attrs:{placeholder:t.column.dateFormat,type:"text",size:"small",id:t.slugify(t.column.key)},domProps:{value:t.new_column[t.column.key]},on:{input:function(e){e.target.composing||t.$set(t.new_column,t.column.key,e.target.value)}}}):t._e(),t._v(" "),n("el-date-picker",{attrs:{type:"date",size:"small","value-format":t.elementFormat,format:t.elementFormat,placeholder:"Pick a day"},on:{blur:function(e){t.$emit("blur")}},model:{value:t.new_column[t.column.key],callback:function(e){t.$set(t.new_column,t.column.key,e)},expression:"new_column[column.key]"}})],1)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-dialog",{attrs:{title:t.title,visible:t.show,top:"50px","append-to-body":!0},on:{"update:visible":function(e){t.show=e},close:t.closeModal}},[t.show?n("div",[t._l(t.columns,function(e){return n("div",{key:e.key,staticClass:"form-group"},[n("label",{attrs:{for:t.slugify(e.key)}},[t._v(t._s(e.name||e.key))]),t._v(" "),"textarea"==e.data_type?n("div",[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.newColumn[e.key],expression:"newColumn[column.key]"}],staticClass:"form-control",attrs:{placeholder:e.name,id:t.slugify(e.key)},domProps:{value:t.newColumn[e.key]},on:{input:function(n){n.target.composing||t.$set(t.newColumn,e.key,n.target.value)}}})]):"html"==e.data_type?n("div",[n("wp_editor",{attrs:{editor_id:t.slugify(e.key)},model:{value:t.newColumn[e.key],callback:function(n){t.$set(t.newColumn,e.key,n)},expression:"newColumn[column.key]"}})],1):"date"==e.data_type?n("div",[n("ninja-date-picker",{attrs:{column:e,new_column:t.newColumn}})],1):"selection"==e.data_type?n("div",[n("may-be-select",{attrs:{column:e,newColumn:t.newColumn}})],1):"image"==e.data_type&&t.has_pro?n("div",[n("image-selector",{attrs:{adding_counter:t.adding_counter,column:e,newColumn:t.newColumn}})],1):"button"==e.data_type&&t.has_pro?n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newColumn[e.key],expression:"newColumn[column.key]"}],staticClass:"form-control",attrs:{placeholder:"Valid button URL",type:"url",id:t.slugify(e.key)},domProps:{value:t.newColumn[e.key]},on:{input:function(n){n.target.composing||t.$set(t.newColumn,e.key,n.target.value)}}}),t._v(" "),n("small",[t._v("Please provide valid URL")])]):n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newColumn[e.key],expression:"newColumn[column.key]"}],staticClass:"form-control",attrs:{placeholder:e.name,type:"text",id:t.slugify(e.key)},domProps:{value:t.newColumn[e.key]},on:{input:function(n){n.target.composing||t.$set(t.newColumn,e.key,n.target.value)}}})])])}),t._v(" "),t.editId||!t.manualSort||t.insertAfterPosition?t._e():n("div",[t._v("\n Add at\n "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.position,expression:"position"}],staticStyle:{"margin-left":"5px"},attrs:{type:"radio",value:"last"},domProps:{checked:t._q(t.position,"last")},on:{change:function(e){t.position="last"}}}),t._v("Last\n "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.position,expression:"position"}],staticStyle:{"margin-left":"10px"},attrs:{type:"radio",value:"first"},domProps:{checked:t._q(t.position,"first")},on:{change:function(e){t.position="first"}}}),t._v("First\n ")])],2):t._e(),t._v(" "),t.row_config?n("div",{staticClass:"row_config_container"},[t.has_pro?[n("h3",[t._v("Row Settings")]),t._v(" "),n("div",{staticClass:"form_row_full"},[n("div",{staticClass:"form-group form_row_half"},[n("label",[t._v("Row Background Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.item_settings.row_bg,callback:function(e){t.$set(t.item_settings,"row_bg",e)},expression:"item_settings.row_bg"}})],1),t._v(" "),n("div",{staticClass:"form-group form_row_half"},[n("label",[t._v("Row Text Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.item_settings.text_color,callback:function(e){t.$set(t.item_settings,"text_color",e)},expression:"item_settings.text_color"}})],1)]),t._v(" "),n("h3",[t._v("Cell Color Customization")]),t._v(" "),n("table",{staticClass:"wp-list-table widefat fixed striped"},[n("thead",[n("tr",[n("th",[t._v("Column")]),t._v(" "),n("th",[t._v("Background Color")]),t._v(" "),n("th",[t._v("Text Color")])])]),t._v(" "),n("tbody",t._l(t.columns,function(e){return n("tr",{key:e.key},[n("td",[t._v(t._s(e.name))]),t._v(" "),n("td",[n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.item_settings.cell[e.key]["background-color"],callback:function(n){t.$set(t.item_settings.cell[e.key],"background-color",n)},expression:"item_settings.cell[column.key]['background-color']"}})],1),t._v(" "),n("td",[n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.item_settings.cell[e.key].color,callback:function(n){t.$set(t.item_settings.cell[e.key],"color",n)},expression:"item_settings.cell[column.key]['color']"}})],1)])}))]),t._v(" "),t.insertAfterPosition?t._e():n("div",{staticClass:"form-group",staticStyle:{"margin-top":"20px"}},[n("label",[t._v("\n Data Create Date\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"If you use table sorting by create date then you can change create date to sort your data"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-date-picker",{attrs:{"value-format":"yyyy-MM-dd HH:mm:ss",type:"datetime",placeholder:"Select date and time"},model:{value:t.created_at,callback:function(e){t.created_at=e},expression:"created_at"}})],1)]:[n("h3",[t._v("Row and Cell Color Customization")]),t._v(" "),n("p",[t._v("Using this module, You can set cell and row level colors of your data, It's a pro feature, Please\n purchase pro to unlock this feature")]),t._v(" "),n("a",{attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade",target:"_blank"}},[n("button",{staticClass:"el-button el-button--danger el-button--mini",attrs:{type:"button"}},[n("span",[t._v("Buy Pro")])])])]],2):t._e(),t._v(" "),n("div",{staticClass:"dialog-footer",class:{"single-child":t.shouldNotContinueAdding},attrs:{slot:"footer"},slot:"footer"},[t.shouldNotContinueAdding?t._e():[n("div",[n("label",{staticClass:"dialog-footer-item",attrs:{for:"adding_more"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.continueAdding,expression:"continueAdding"}],attrs:{type:"checkbox",id:"adding_more"},domProps:{checked:Array.isArray(t.continueAdding)?t._i(t.continueAdding,null)>-1:t.continueAdding},on:{change:function(e){var n=t.continueAdding,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,null);a.checked?o<0&&(t.continueAdding=n.concat([null])):o>-1&&(t.continueAdding=n.slice(0,o).concat(n.slice(o+1)))}else t.continueAdding=i}}}),t._v(" Continue Adding\n ")])])],t._v(" "),n("div",{staticClass:"dialog-footer-item"},[n("el-button",{attrs:{size:"small",type:"danger"},on:{click:function(e){t.row_config=!t.row_config}}},[n("i",{staticClass:"el-icon-setting"})]),t._v(" "),n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.btnLoading,expression:"btnLoading"}],attrs:{disabled:t.btnLoading,type:"primary",size:"small"},on:{click:t.addData}},[t.editId?n("span",[t._v(" "+t._s(t.$t("Update")))]):n("span",[t._v(t._s(t.$t("Add")))]),t._v(" "),t.btnLoading?n("i",{staticClass:"fooicon fooicon-spin fooicon-circle-o-notch"}):t._e()])],1)],2)])},staticRenderFns:[]}},function(t,e,n){var a=n(471);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("013f4f15",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_alert",props:["type"],computed:{alertClass:function(){return this.type||"success"}}}},function(t,e){t.exports={render:function(){var t=this.$createElement;return(this._self._c||t)("div",{staticClass:"alert",class:"alert-"+this.alertClass},[this._t("default")],2)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(477),n(478),!1,function(t){n(475)},"data-v-590fa148",null);t.exports=a.exports},function(t,e,n){var a=n(476);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("084af8d0",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".remove[data-v-590fa148]{display:inline-block}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"DeletePopOver",props:["label"],data:function(){return{visible:!1}},methods:{proceedConfirmation:function(){this.visible=!1,this.$emit("deleted")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"remove"},[n("el-popover",{ref:"popover5",attrs:{placement:"top",width:"160"},model:{value:t.visible,callback:function(e){t.visible=e},expression:"visible"}},[n("p",[t._v(t._s(t.$t("Are you sure to delete this?")))]),t._v(" "),n("div",{staticStyle:{"text-align":"right",margin:"0"}},[n("el-button",{attrs:{size:"mini",type:"text"},on:{click:function(e){t.visible=!1}}},[t._v("\n "+t._s(t.$t("cancel"))+"\n ")]),t._v(" "),n("el-button",{attrs:{type:"danger",size:"mini"},on:{click:t.proceedConfirmation}},[t._v("\n "+t._s(t.$t("confirm"))+"\n ")])],1)]),t._v(" "),t.label?n("span",{directives:[{name:"popover",rawName:"v-popover:popover5",arg:"popover5"}],staticClass:"span-block",domProps:{textContent:t._s(t.label)}}):n("a",{directives:[{name:"popover",rawName:"v-popover:popover5",arg:"popover5"}]},[n("span",{staticClass:"dashicons dashicons-trash"})])],1)},staticRenderFns:[]}},function(t,e,n){var a=n(480);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("34d0fce7",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".sortable-upgrade-notice .el-dialog__body{padding:20px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"SortableUpgradeNotice",props:["show"],data:function(){return{upgradeGuide:window.ninja_table_admin.upgradeGuide}},computed:{visible:{get:function(){return this.show},set:function(){this.close()}}},methods:{close:function(){this.$emit("close")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-dialog",{staticClass:"sortable-upgrade-notice",attrs:{visible:t.visible},on:{"update:visible":function(e){t.visible=e}}},[n("h1",{staticClass:"el-notifications",attrs:{slot:"title"},slot:"title"},[n("i",{staticClass:"el-icon-warning text-warning"}),t._v(" "+t._s(t.$t("Upgrade Notice"))+"\n ")]),t._v(" "),n("span",[t._v("\n "+t._s(t.$t("Your Ninja Tables Pro plugin is outdated. Please upgrade to its latest version."))+"\n ")]),t._v(" "),n("br"),t._v(" "),n("br"),t._v(" "),n("span",[n("a",{attrs:{href:t.upgradeGuide,target:"_blank"}},[t._v(t._s(t.$t("Click here")))]),t._v(" "+t._s(t.$t("to view the upgrade guide."))+"\n ")])])},staticRenderFns:[]}},function(t,e,n){var a=n(484);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("6d7947c8",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".form-wrapper{padding:10px}.form-wrapper label{display:initial;max-width:none;margin-bottom:0}.form-wrapper .el-form-item{margin-bottom:15px}.form-wrapper .more-settings:hover{cursor:pointer}.form-wrapper .more-settings i{font-size:1.5em}.form-wrapper .form_group{margin-top:10px}.form-wrapper .basic_settings .el-select{min-width:400px;max-width:100%}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(36),i=n.n(a),o=n(486),s=n.n(o),l=n(493),r=n.n(l),c=n(496),u=n.n(c),d=n(499),_=n.n(d),p=n(81),f=n.n(p);e.default={name:"ColumnsEditor",components:{wp_editor:i.a,condition:s.a,"wp-post-dynamic-column":r.a,"content-transformer":u.a,DynamicWooColumn:_.a,NinjaColorPicker:f.a},props:{model:{type:Object,default:function(){return{}}},hasPro:{type:Boolean,default:!1},updating:{type:Boolean,default:!1},moreSettings:{type:Boolean,default:!1},hideDelete:{type:Boolean,default:!1},hideCancel:{type:Boolean,default:!1},dataSourceType:{type:String,default:"default"},columns:{type:Array,default:function(){return[]}},settings:{type:Object}},data:function(){return{dataTypesOptions:{text:this.$t("Single Line Text Field"),textarea:this.$t("Text Area"),html:this.$t("HTML Field"),number:this.$t("Numeric Value"),date:this.$t("Date Field"),selection:this.$t("Select Field")},breakPointsOptions:{"":this.$t("Always show in all devices"),all:this.$t("Hidden On Desktop"),xs:this.$t("Initial Hidden Mobile"),"xs sm":this.$t("Initial Hidden Mobile and Tab"),"xs sm md lg":this.$t("Initial Hidden Mobile, Tab and Regular Computers"),hidden:this.$t("Totally hidden on all devices")},dateFormats:{"M/D/YYYY":"4/28/2018","M/D/YY":"4/28/18","MM/DD/YY":"04/28/18","MM/DD/YYYY":"04/28/2018","MMM/DD/YYYY":"Apr/28/2018","YY/MM/DD":"18/04/28","YYYY-MM-DD":"2018-04-28","DD-MMM-YY":"28-Apr-18"},formatType:"standard",has_pro:!!window.ninja_table_admin.hasPro,alignmentOptions:{"":"Default",center:"Center",left:"Left",right:"Right",justify:"Justify",start:"Start",end:"End"},contentAlignmentOptions:{"":"Default",center:"Center",left:"Left",right:"Right"},activeTab:"basic",showConfirm:!1,doingAjax:!1}},watch:{formatType:function(){"custom"===this.formatType&&(this.model.dateFormat="")},hideDelete:function(t,e){this.hideDelete="basic"!=this.activeTab},"model.data_type":function(){"image"==this.model.data_type&&(this.model.link_type||(this.model.link_type="none"))}},methods:{addColumn:function(){this.has_pro||"button"!=this.model.data_type&&"image"!=this.model.data_type||(this.model.data_type="text"),this.$emit("add")},cancel:function(){this.$emit("cancel")},deleteColumn:function(){this.$emit("delete")},store:function(){this.$emit("store")},onTabClick:function(t,e){"basic"==t.name?this.hideDelete=!1:(this.hideDelete=!0,this.moreSettings&&(this.moreSettings=!this.moreSettings))},showProPopUp:function(){this.hasPro||window.ninjaTableBus.$emit("show_pro_popup",1)}},mounted:function(){var t=this;console.log(this.dataSourceType),"default"==this.dataSourceType&&this.$set(this.dataTypesOptions,"image","Image/File/Lightbox"),this.dataTypesOptions.button=this.$t("Button/Link"),this.model&&(this.model.dateFormat=this.model.dateFormat||"",this.model.enable_html_content=-1!==["true",!0].indexOf(this.model.enable_html_content),this.model.header_html_content=this.model.header_html_content||"",this.model.contentAlign||this.$set(this.model,"contentAlign",""),this.model.textAlign||this.$set(this.model,"textAlign",""),window.ninjaTableBus.$on("tableDoingAjax",function(e){t.doingAjax=e}))}}},function(t,e,n){var a=n(0)(n(489),n(492),!1,function(t){n(487)},null,null);t.exports=a.exports},function(t,e,n){var a=n(488);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("5281c00f",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".column-condition-config .el-row{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:5px}.column-condition-config .el-col{margin:0 5px;display:-webkit-box;display:-ms-flexbox;display:flex}.column-condition-config .el-col .conditional_color_block{width:100%}.column-condition-config .el-col .conditional_color_block .el-color-picker__trigger{width:100%;height:33px}.column-condition-config .el-col:first-child>.if-cell-value{white-space:nowrap}.column-condition-config .if-cell-value{margin-top:10px;font-weight:400}.column-condition-config .form_group{margin:0;height:35px}.column-condition-config .el-color-picker,.column-condition-config .el-color-picker__mask{width:100%!important}.column-condition-config .el-button--mini{padding:5px 13px}.column-condition-config .conditional-settings-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(81),i=n.n(a),o=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};e.default={name:"Conditional",props:{hasPro:{type:Boolean,default:!1},column:{type:Object,default:function(){return{}}}},components:{NinjaColorPicker:i.a},data:function(){return{defaultCondition:{conditionalOperator:null,conditionalValue:null,conditionalValue2:null,targetAction:null,targetValue:null,targetValueColor:null}}},methods:{addCondition:function(){this.column.conditions||this.$set(this.column,"conditions",[]),this.column.conditions.push(o({},this.defaultCondition))},removeCondition:function(t){this.column.conditions.splice(t,1)},shouldShowColorPicker:function(t){return-1!=["set-cell-color","set-cell-bg-color","set-row-color","set-row-bg-color","set-column-color","set-column-bg-color"].indexOf(t.targetAction)}},mounted:function(){this.column&&!this.column.conditions&&this.$set(this.column,"conditions",[])}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_color_picker",props:["label","value","disabled"],data:function(){return{color:"",previous_color:""}},watch:{color:function(t){"transparent"===t&&(this.color=""),this.previous_color=this.color,this.$emit("input",this.color)}},methods:{changeColor:function(t){"transparent"===this.previous_color?(this.previous_color=t,this.color="transparent"):this.color=t}},mounted:function(){this.color=this.value}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"form_group"},[n("el-color-picker",{attrs:{"show-alpha":"",disabled:t.disabled},on:{"active-change":t.changeColor},model:{value:t.color,callback:function(e){t.color=e},expression:"color"}}),t._v(" "),t.label?n("label",[t._v(t._s(t.label))]):t._e()],1)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"column-condition-config"},[t.hasPro?n("div",{staticClass:"conditional-settings-header"},[t._m(0),t._v(" "),n("el-button",{attrs:{size:"small",type:"info",disabled:!t.hasPro},on:{click:t.addCondition}},[t._v("\n Add Condition\n ")])],1):n("div",{staticClass:"conditional-settings-header ninja_table_inline_upgrade"},[n("div",{staticClass:"conditional-settings-title"},[n("H3",[t._v("Conditional Formatting")]),t._v(" "),n("p",[t._v("\n Customize your table's appearances based on the cell value. Add as many conditions as you like.\n Conditional Formatting is a pro feature which can be enabled by using Ninja Table pro Add-on. Ninja\n Table Pro has lots of features that will help you to build any type of Tables.\n ")]),t._v(" "),t._m(1)],1)]),t._v(" "),n("hr"),t._v(" "),t._l(t.column.conditions,function(e,a){return n("el-row",{key:a},[n("el-col",{attrs:{sm:2,md:2}},[n("div",{staticClass:"if-cell-value"},[t._v("If Cell Value")])]),t._v(" "),n("el-col",{attrs:{sm:5,md:5}},[n("el-select",{staticStyle:{width:"100%"},attrs:{disabled:!t.hasPro,size:"small"},model:{value:e.conditionalOperator,callback:function(n){t.$set(e,"conditionalOperator",n)},expression:"condition.conditionalOperator"}},[n("el-option",{attrs:{label:"Equal",value:"equal"}}),t._v(" "),n("el-option",{attrs:{label:"Not Equal",value:"not-equal"}}),t._v(" "),-1==["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Contains",value:"contains"}}):t._e(),t._v(" "),-1==["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Does Not Contain",value:"does-not-contain"}}):t._e(),t._v(" "),-1!=["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Less Than",value:"less-than"}}):t._e(),t._v(" "),-1!=["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Greater Than",value:"greater-than"}}):t._e(),t._v(" "),-1!=["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Less Than Or Equal To",value:"less-than-or-equal-to"}}):t._e(),t._v(" "),-1!=["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Greater Than Or Equal To",value:"greater-than-or-equal-to"}}):t._e(),t._v(" "),-1!=["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Between (Min & Max Values)",value:"between"}}):t._e()],1)],1),t._v(" "),n("el-col",{attrs:{sm:5,md:5}},[n("el-input",{attrs:{size:"small",placeholder:"between"==e.conditionalOperator?"Min value":"Enter Value",disabled:!t.hasPro},model:{value:e.conditionalValue,callback:function(n){t.$set(e,"conditionalValue",n)},expression:"condition.conditionalValue"}})],1),t._v(" "),"between"==e.conditionalOperator?n("el-col",{attrs:{sm:4,md:4}},[n("el-input",{attrs:{size:"small",placeholder:"Max Value"},model:{value:e.conditionalValue2,callback:function(n){t.$set(e,"conditionalValue2",n)},expression:"condition.conditionalValue2"}})],1):t._e(),t._v(" "),n("el-col",{attrs:{sm:1,md:1}},[n("div",{staticClass:"if-cell-value text-center"},[t._v("Then")])]),t._v(" "),n("el-col",{attrs:{sm:5,md:5}},[n("el-select",{staticStyle:{width:"100%"},attrs:{disabled:!t.hasPro,filterable:"",size:"small"},model:{value:e.targetAction,callback:function(n){t.$set(e,"targetAction",n)},expression:"condition.targetAction"}},[n("el-option-group",{key:"cell_options",attrs:{label:"Cell Options"}},[n("el-option",{attrs:{label:"Set cell color",value:"set-cell-color"}}),t._v(" "),n("el-option",{attrs:{label:"Set cell background color",value:"set-cell-bg-color"}}),t._v(" "),n("el-option",{attrs:{label:"Set cell content",value:"set-cell-content"}}),t._v(" "),n("el-option",{attrs:{label:"Set cell CSS class",value:"set-cell-css-class"}}),t._v(" "),n("el-option",{attrs:{label:"Reset cell color to default",value:"reset-cell-color-to-default"}}),t._v(" "),n("el-option",{attrs:{label:"Reset cell background color to default",value:"reset-cell-bg-color-to-default"}}),t._v(" "),n("el-option",{attrs:{label:"Remove cell CSS class",value:"remove-cell-css-class"}})],1),t._v(" "),n("el-option-group",{key:"row_options",attrs:{label:"Row Options"}},[n("el-option",{attrs:{label:"Set row color",value:"set-row-color"}}),t._v(" "),n("el-option",{attrs:{label:"Set row background color",value:"set-row-bg-color"}}),t._v(" "),n("el-option",{attrs:{label:"Set row CSS class",value:"set-row-css-class"}}),t._v(" "),n("el-option",{attrs:{label:"Reset row color to default",value:"reset-row-color-to-default"}}),t._v(" "),n("el-option",{attrs:{label:"Reset row background color to default",value:"reset-row-bg-color"}}),t._v(" "),n("el-option",{attrs:{label:"Remove row CSS class",value:"remove-row-css-class"}})],1),t._v(" "),n("el-option-group",{key:"column_options",attrs:{label:"Column Options"}},[n("el-option",{attrs:{label:"Set column color",value:"set-column-color"}}),t._v(" "),n("el-option",{attrs:{label:"Set column background color",value:"set-column-bg-color"}}),t._v(" "),n("el-option",{attrs:{label:"Add column CSS class",value:"add-column-css-class"}}),t._v(" "),n("el-option",{attrs:{label:"Remove column CSS class",value:"remove-column-css-class"}})],1)],1)],1),t._v(" "),n("el-col",{attrs:{sm:4,md:4}},[n("el-input",{directives:[{name:"show",rawName:"v-show",value:!t.shouldShowColorPicker(e),expression:"!shouldShowColorPicker(condition)"}],attrs:{size:"small",placeholder:"Enter Value",disabled:!t.hasPro},model:{value:e.targetValue,callback:function(n){t.$set(e,"targetValue",n)},expression:"condition.targetValue"}}),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:t.shouldShowColorPicker(e),expression:"shouldShowColorPicker(condition)"}],staticClass:"conditional_color_block"},[n("ninja-color-picker",{attrs:{size:"mini",disabled:!t.hasPro},model:{value:e.targetValueColor,callback:function(n){t.$set(e,"targetValueColor",n)},expression:"condition.targetValueColor"}})],1)],1),t._v(" "),n("el-col",{attrs:{sm:1,md:1}},[n("el-button",{attrs:{size:"mini",type:"danger",icon:"el-icon-minus",disabled:!t.hasPro},on:{click:function(e){t.removeCondition(a)}}})],1)],1)}),t._v(" "),"date"==t.column.data_type?n("div",{staticClass:"nt_suggest"},[n("h4",[t._v("You can use placeholder for dynamic dates to style your row/cell/column")]),t._v(" "),n("p",[t._v("Example Usage")]),t._v(" "),n("ul",[n("li",[t._v("Today's Date: "),n("code",[t._v("{date:"+t._s(t.column.dateFormat)+"}")])]),t._v(" "),n("li",[t._v("Tomorrow's Date: "),n("code",[t._v("{date+1:"+t._s(t.column.dateFormat)+"}")])]),t._v(" "),n("li",[t._v("Yesterday's Date: "),n("code",[t._v("{date-1:"+t._s(t.column.dateFormat)+"}")])]),t._v(" "),n("li",[t._v("Date After 10 Days: "),n("code",[t._v("{date+10:"+t._s(t.column.dateFormat)+"}")])]),t._v(" "),n("li",[t._v("Date Before 10 Days: "),n("code",[t._v("{date-10:"+t._s(t.column.dateFormat)+"}")])])])]):t._e(),t._v(" "),t.column.conditions&&t.column.conditions.length?t._e():n("el-row",[n("el-alert",{attrs:{center:"",closable:!1,title:"You haven't added any conditions for the column yet!",type:"info"}})],1)],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"conditional-settings-title"},[this._v("\n Customize your table's appearances based on the cell value. Add as many conditions as you like. "),e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/conditional-column-formatting/"}},[this._v("View\n Documentation")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("a",{attrs:{href:"https://wpmanageninja.com/ninja-tables/ninja-tables-pro-pricing/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=conditional_formatting&utm_term=upgrade",target:"_blank"}},[e("button",{staticClass:"el-button el-button--danger",attrs:{type:"button"}},[e("span",[this._v("Buy Pro and Enable Conditional Formatting")])])])}]}},function(t,e,n){var a=n(0)(n(494),n(495),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"WPPostDynamicColumn",props:{column:{type:Object,default:function(){return{}}},columns:{type:Array,default:function(){return[]}}},data:function(){return{loading:!1,post_data_types:[],table_id:this.$route.params.table_id}},watch:{"column.wp_post_custom_data_type":function(){this.$set(this.column,"wp_post_custom_data_value","")}},computed:{selectedField:function(){var t=this,e=this.post_data_types.find(function(e){return e.key==t.column.wp_post_custom_data_type});return e||{}},selectedFiledValueType:function(){return this.selectedField&&this.selectedField.value_type?this.selectedField.value_type:"text"}},methods:{setFieldOptions:function(){var t=this;if(this.loading=!0,window.ninja_wp_posts_custom_fields)return this.post_data_types=window.ninja_wp_posts_custom_fields,void(this.loading=!1);jQuery.get(ajaxurl,{action:"ninja_table_wp-posts_get_custom_field_options",table_id:this.table_id}).then(function(e){window.ninja_wp_posts_custom_fields=e.data.custom_fields,t.post_data_types=e.data.custom_fields}).fail(function(t){}).always(function(){t.loading=!1})}},mounted:function(){this.setFieldOptions()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"wp_posts_dynamic_field"},[n("h4",[t._v(t._s(t.$t("Dynamic Post Data Settings")))]),t._v(" "),n("hr"),t._v(" "),"custom"==t.column.source_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Field Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Field Type")]),t._v(" "),n("p",[t._v("Select The field type you want to populate for each row")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{staticStyle:{width:"90%"},attrs:{placeholder:"Select Field",size:"small"},model:{value:t.column.wp_post_custom_data_type,callback:function(e){t.$set(t.column,"wp_post_custom_data_type",e)},expression:"column.wp_post_custom_data_type"}},t._l(t.post_data_types,function(t){return n("el-option",{key:t.key,attrs:{value:t.key,disabled:t.disabled,label:t.label}})}))],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Field Value"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Field Value")]),t._v(" "),n("p",[t._v("Provide the column value for your corresponding value type select")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),"options"==t.selectedFiledValueType?[n("el-select",{staticStyle:{width:"90%"},attrs:{placeholder:t.selectedField.placeholder,size:"small"},model:{value:t.column.wp_post_custom_data_value,callback:function(e){t.$set(t.column,"wp_post_custom_data_value",e)},expression:"column.wp_post_custom_data_value"}},t._l(t.selectedField.options,function(t){return n("el-option",{key:t,attrs:{value:t,label:t}})}))]:n("el-input",{attrs:{type:t.selectedFiledValueType,placeholder:t.selectedField.placeholder,size:"small"},model:{value:t.column.wp_post_custom_data_value,callback:function(e){t.$set(t.column,"wp_post_custom_data_value",e)},expression:"column.wp_post_custom_data_value"}}),t._v(" "),t.selectedField&&t.selectedField.instruction?n("div",{staticClass:"ninja_instruction"},[n("p",{domProps:{innerHTML:t._s(t.selectedField.instruction)}}),t._v(" "),t.selectedField.learn_more_url?n("p",[n("a",{attrs:{target:"_blank",href:t.selectedField.learn_more_url}},[t._v("\n "+t._s(t.selectedField.learn_more_text)+"\n ")])]):t._e()]):t._e()],2)]:t._e(),t._v(" "),"post_data"==t.column.source_type||"custom"==t.column.source_type&&"featured_image"==t.column.wp_post_custom_data_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Link"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Link to Post/Author Permalink")]),t._v(" "),n("p",[t._v("\n Enable this if you want to link to post/Author permalink\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),"post_author"==t.column.original_name?n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to Author Permalink"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}}):n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to post permalink"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}})],2),t._v(" "),"yes"==t.column.permalinked?["post_author"==t.column.original_name?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Permalink Action"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Permalink Action Type")]),t._v(" "),n("p",[t._v("\n Enable this if you want to make the author as table filter action. So when user click on those filters then they will see only the selected author posts.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Make Taxonomies as Table Filter"},model:{value:t.column.filter_permalinked,callback:function(e){t.$set(t.column,"filter_permalinked",e)},expression:"column.filter_permalinked"}})],2):t._e(),t._v(" "),"yes"!=t.column.filter_permalinked?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Open Link To New tab"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Open Link To New tab")]),t._v(" "),n("p",[t._v("\n Enable this if you want to open the links to new tab\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"_blank","false-label":"",value:"_blank",label:"Open link to new tab"},model:{value:t.column.permalink_target,callback:function(e){t.$set(t.column,"permalink_target",e)},expression:"column.permalink_target"}})],2):t._e()]:t._e()]:"tax_data"==t.column.source_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Link"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Link to Taxonomy Permalink")]),t._v(" "),n("p",[t._v("\n Enable this if you want to link to Taxonomy permalink\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to Taxonomy"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Taxonomy Separator"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Taxonomy Separator")]),t._v(" "),n("p",[t._v("Taxonomy Separator for Multiple Items")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{placeholder:"Enter Value",size:"small"},model:{value:t.column.taxonomy_separator,callback:function(e){t.$set(t.column,"taxonomy_separator",e)},expression:"column.taxonomy_separator"}})],2),t._v(" "),"yes"==t.column.permalinked?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Permalink Action"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Permalink Action Type")]),t._v(" "),n("p",[t._v("\n Enable this if you want to make the taxonomies as table filter action. So when user click on those filters then they will see only those type of posts.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"",value:"yes",label:"Make Taxonomies as Table Filter"},model:{value:t.column.filter_permalinked,callback:function(e){t.$set(t.column,"filter_permalinked",e)},expression:"column.filter_permalinked"}})],2),t._v(" "),"yes"!=t.column.filter_permalinked?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Open Link To New tab"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Open Link To New tab")]),t._v(" "),n("p",[t._v("\n Enable this if you want to open the links to new tab\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"_blank","false-label":"",value:"_blank",label:"Open link to new tab"},model:{value:t.column.permalink_target,callback:function(e){t.$set(t.column,"permalink_target",e)},expression:"column.permalink_target"}})],2):t._e()]:t._e()]:t._e()],2)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(497),n(498),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(144),i=n.n(a),o=n(27),s=n.n(o);e.default={name:"ContentTransformer",props:{column:{type:Object,default:function(){return{}}},columns:{type:Array,default:function(){return[]}},settings:{type:Object}},components:{ninja_alert:i.a,NinjaPremiumNotice:s.a},watch:{"settings.formula_support":function(){this.storeSettings()}},data:function(){return{hasPro:!!window.ninja_table_admin.hasPro,tableId:this.$route.params.table_id,doingAjax:!1}},computed:{placeholder:function(){var t="Please Input Transform Values (HTML supported)";return"yes"==this.settings.formula_support&&(t="Please Input Transform Values (HTML and Excel Formula are supported)"),t}},methods:{storeSettings:function(){var t=this;window.ninjaTableBus.$emit("tableDoingAjax",!0),this.doingAjax=!0;var e={action:"ninja_tables_ajax_actions",target_action:"update-table-settings",table_id:this.tableId,table_settings:this.settings};jQuery.post(ajaxurl,e).success(function(t){}).fail(function(t){}).always(function(){t.doingAjax=!1,window.ninjaTableBus.$emit("tableDoingAjax",!1)})}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("p",[t._v("\n Data Transformer is a powerful tool where you can concat any column values easily into any valid html and show as computed value.\n ")]),t._v(" "),n("el-input",{attrs:{type:"textarea",rows:"4",placeholder:t.placeholder,disabled:!t.hasPro},model:{value:t.column.transformed_value,callback:function(e){t.$set(t.column,"transformed_value",e)},expression:"column.transformed_value"}}),t._v(" "),t.hasPro?t._e():n("ninja-premium-notice",{attrs:{highlight:"Transform Column Value"}}),t._v(" "),n("div",{staticClass:"ninja_instruction"},[n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"yes","false-label":"no"},model:{value:t.settings.formula_support,callback:function(e){t.$set(t.settings,"formula_support",e)},expression:"settings.formula_support"}},[t._v("Enable Excel Formula support for Transofrm Value")]),t._v(" "),n("p",{directives:[{name:"show",rawName:"v-show",value:"yes"==t.settings.formula_support,expression:"settings.formula_support == 'yes'"}]},[t._v("Note: Excel formuala is an experimental feature so all formulas may not work. We are improving this feature day by day so please don't be mad if some formulas don't work properly.")])],1),t._v(" "),n("div",{staticClass:"ninja_instruction"},[n("p",[t._v("You can use the following Reference Shortcode Values to transform your cell value")]),t._v(" "),n("table",{staticClass:"wp-list-table widefat fixed striped"},[t._m(0),t._v(" "),n("tbody",t._l(t.columns,function(e){return n("tr",{key:e.key},[n("td",[t._v(t._s(e.name))]),t._v(" "),n("td",[t._v("{{"),n("span",[t._v("row."+t._s(e.key))]),t._v("}}")])])}))]),t._v(" "),n("br"),t._v(" "),t._m(1),t._v(" "),n("p",{directives:[{name:"show",rawName:"v-show",value:"yes"==t.settings.formula_support,expression:"settings.formula_support == 'yes'"}],staticStyle:{"font-weight":"bold"}},[t._v("You can use any Excel formula into the transform value box")])])],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("thead",[e("tr",[e("th",[this._v("Column Title")]),this._v(" "),e("th",[this._v("Reference Shortcode")])])])},function(){var t=this.$createElement,e=this._self._c||t;return e("p",[this._v("You may "),e("a",{attrs:{href:"https://wpmanageninja.com/docs/ninja-tables/configuring-tables/value-transformation/",target:"_blank"}},[this._v("check the documentation here.")])])}]}},function(t,e,n){var a=n(0)(n(500),n(501),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"WPWooDynamicColumn",props:{column:{type:Object,default:function(){return{}}},columns:{type:Array,default:function(){return[]}}},data:function(){return{loading:!1,post_data_types:[],table_id:this.$route.params.table_id}},watch:{"column.wp_post_custom_data_source_type":function(){this.$set(this.column,"source_type",this.selectedField.source_type),"tax_data"==this.selectedField.source_type&&this.$set(this.column,"taxonomy_separator",", "),this.$set(this.column,"wp_post_custom_data_key","")}},computed:{selectedField:function(){var t=this,e=this.post_data_types.find(function(e){return e.key==t.column.wp_post_custom_data_source_type});return e||{}},selectedFiledValueType:function(){return this.selectedField&&this.selectedField.value_type?this.selectedField.value_type:"text"}},methods:{setFieldOptions:function(){var t=this;if(this.loading=!0,window.ninja_wp_woo_custom_fields)return this.post_data_types=window.ninja_wp_woo_custom_fields,void(this.loading=!1);jQuery.get(ajaxurl,{action:"ninja_table_wp_woo_get_custom_field_options",table_id:this.table_id}).then(function(e){window.ninja_wp_woo_custom_fields=e.data.custom_fields,t.post_data_types=e.data.custom_fields}).fail(function(t){}).always(function(){t.loading=!1})}},mounted:function(){this.setFieldOptions()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"wp_posts_dynamic_field"},[n("h4",[t._v(t._s(t.$t("Dynamic Column Data Settings")))]),t._v(" "),n("hr"),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Field Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Field Type")]),t._v(" "),n("p",[t._v("Select The field type you want to populate for each row")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{staticStyle:{width:"90%"},attrs:{placeholder:"Select Data Type",size:"small"},model:{value:t.column.wp_post_custom_data_source_type,callback:function(e){t.$set(t.column,"wp_post_custom_data_source_type",e)},expression:"column.wp_post_custom_data_source_type"}},t._l(t.post_data_types,function(t){return n("el-option",{key:t.key,attrs:{value:t.key,disabled:t.disabled,label:t.label}})}))],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Field Value"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Field Value")]),t._v(" "),n("p",[t._v("Provide the column value for your corresponding value type select")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),"options"==t.selectedFiledValueType?[n("el-select",{staticStyle:{width:"90%"},attrs:{placeholder:t.selectedField.placeholder,size:"small"},model:{value:t.column.wp_post_custom_data_key,callback:function(e){t.$set(t.column,"wp_post_custom_data_key",e)},expression:"column.wp_post_custom_data_key"}},t._l(t.selectedField.options,function(t,e){return n("el-option",{key:e,attrs:{value:e,label:t}})})),t._v(" "),"featured_image"==t.column.wp_post_custom_data_source_type?n("div",[n("el-radio-group",{model:{value:t.column.image_permalink_type,callback:function(e){t.$set(t.column,"image_permalink_type",e)},expression:"column.image_permalink_type"}},[n("el-radio",{attrs:{label:"lightbox"}},[t._v("Make image as lightbox")]),t._v(" "),n("el-radio",{attrs:{label:"linked"}},[t._v("Link to Product page")]),t._v(" "),n("el-radio",{attrs:{label:""}},[t._v("None")])],1),t._v(" "),n("p",{directives:[{name:"show",rawName:"v-show",value:"linked"==t.column.image_permalink_type,expression:"column.image_permalink_type == 'linked'"}]},[n("el-checkbox",{attrs:{"true-label":"_blank","false-label":"no"},model:{value:t.column.permalink_target,callback:function(e){t.$set(t.column,"permalink_target",e)},expression:"column.permalink_target"}},[t._v("Open Link in new tab")])],1)],1):t._e()]:n("el-input",{attrs:{type:t.selectedFiledValueType,placeholder:t.selectedField.placeholder,size:"small"},model:{value:t.column.wp_post_custom_data_value,callback:function(e){t.$set(t.column,"wp_post_custom_data_value",e)},expression:"column.wp_post_custom_data_value"}}),t._v(" "),t.selectedField&&t.selectedField.instruction?n("div",{staticClass:"ninja_instruction"},[n("p",{domProps:{innerHTML:t._s(t.selectedField.instruction)}}),t._v(" "),t.selectedField.learn_more_url?n("p",[n("a",{attrs:{target:"_blank",href:t.selectedField.learn_more_url}},[t._v("\n "+t._s(t.selectedField.learn_more_text)+"\n ")])]):t._e()]):t._e()],2),t._v(" "),"buy_now_button"==t.column.wp_post_custom_data_key?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Buy Now Button Text"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Buy Now Button Text")]),t._v(" "),n("p",[t._v("Provide Buy Now Button Text")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{placeholder:"Buy Now Button Text",size:"small"},model:{value:t.column.buy_now_button_text,callback:function(e){t.$set(t.column,"buy_now_button_text",e)},expression:"column.buy_now_button_text"}})],2):t._e(),t._v(" "),"post_title"==t.column.wp_post_custom_data_key||"custom"==t.column.source_type&&"featured_image"==t.column.wp_post_custom_data_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Link"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Link to Post/Author Permalink")]),t._v(" "),n("p",[t._v("\n Enable this if you want to link to post/Author permalink\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),"post_author"==t.column.wp_post_custom_data_key?n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to Author Permalink"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}}):n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to post permalink"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}}),t._v(" "),n("el-checkbox",{attrs:{"true-label":"_blank","false-label":"",value:"_blank",label:"Open link to new tab"},model:{value:t.column.permalink_target,callback:function(e){t.$set(t.column,"permalink_target",e)},expression:"column.permalink_target"}})],2)]:"tax_data"==t.column.source_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Link"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Link to Taxonomy Permalink")]),t._v(" "),n("p",[t._v("\n Enable this if you want to link to Taxonomy permalink\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to Taxonomy"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Taxonomy Separator"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Taxonomy Separator")]),t._v(" "),n("p",[t._v("Taxonomy Separator for Multiple Items")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{placeholder:"Enter Value",size:"small"},model:{value:t.column.taxonomy_separator,callback:function(e){t.$set(t.column,"taxonomy_separator",e)},expression:"column.taxonomy_separator"}})],2),t._v(" "),"yes"==t.column.permalinked?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Permalink Action"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Permalink Action Type")]),t._v(" "),n("p",[t._v("\n Enable this if you want to make the taxonomies as table filter action. So when user click on those filters then they will see only those type of posts.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"",value:"yes",label:"Make Taxonomies as Table Filter"},model:{value:t.column.filter_permalinked,callback:function(e){t.$set(t.column,"filter_permalinked",e)},expression:"column.filter_permalinked"}})],2),t._v(" "),"yes"!=t.column.filter_permalinked?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Open Link To New tab"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Open Link To New tab")]),t._v(" "),n("p",[t._v("\n Enable this if you want to open the links to new tab\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"_blank","false-label":"",value:"_blank",label:"Open link to new tab"},model:{value:t.column.permalink_target,callback:function(e){t.$set(t.column,"permalink_target",e)},expression:"column.permalink_target"}})],2):t._e()]:t._e()]:t._e()],2)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-form",{ref:"form",staticClass:"form-wrapper",attrs:{model:t.model,"label-width":"200px"}},[n("el-tabs",{on:{"tab-click":t.onTabClick},model:{value:t.activeTab,callback:function(e){t.activeTab=e},expression:"activeTab"}},[n("el-tab-pane",{staticClass:"basic_settings",attrs:{label:"Basic Settings",name:"basic"}},[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Column Name"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Column Name")]),t._v(" "),n("p",[t._v("\n Enter a column name to set the header title.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small"},model:{value:t.model.name,callback:function(e){t.$set(t.model,"name",e)},expression:"model.name"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Column Key"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Column Key")]),t._v(" "),n("p",[t._v("\n Column key is for data mapping, export and import table data.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small",disabled:t.updating},model:{value:t.model.key,callback:function(e){t.$set(t.model,"key",e)},expression:"model.key"}}),t._v(" "),t.updating?t._e():n("small",[t._v("Please use english letters only")])],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Data Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v(" "+t._s(t.$t("Data Type")))]),t._v(" "),n("p",[t._v("\n Choose the data type of the column.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{staticClass:"nt_column_type_select",attrs:{size:"mini",placeholder:"Select Data Type of this column"},model:{value:t.model.data_type,callback:function(e){t.$set(t.model,"data_type",e)},expression:"model.data_type"}},t._l(t.dataTypesOptions,function(t,e){return n("el-option",{key:e,attrs:{label:t,value:e}})})),t._v(" "),n("p",{directives:[{name:"show",rawName:"v-show",value:t.hasPro,expression:"hasPro"}]},[t._v("Select HTML Field if you want to add Link, media or any type of html")])],2),t._v(" "),"date"==t.model.data_type?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Date Format"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v(" "+t._s(t.$t("Date Format")))]),t._v(" "),n("p",[t._v("\n Pattern of the date value.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-group",{model:{value:t.model.formatType,callback:function(e){t.$set(t.model,"formatType",e)},expression:"model.formatType"}},[n("el-radio",{attrs:{label:"standard"}},[t._v(t._s(t.$t("Standard")))]),t._v(" "),n("el-radio",{attrs:{label:"custom",disabled:!t.hasPro},nativeOn:{click:function(e){return t.showProPopUp(e)}}},[t._v("Custom")])],1),t._v(" "),"custom"!=t.model.formatType?n("el-form-item",[n("select",{directives:[{name:"model",rawName:"v-model",value:t.model.dateFormat,expression:"model.dateFormat"}],on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.model,"dateFormat",e.target.multiple?n:n[0])}}},[n("option",{attrs:{value:""}},[t._v(t._s(t.$t("Select a Format")))]),t._v(" "),t._l(t.dateFormats,function(e,a){return n("option",{key:a,domProps:{value:a}},[t._v("\n "+t._s(a)+" - (Ex: "+t._s(e)+")\n ")])})],2)]):n("el-form-item",[n("el-input",{attrs:{size:"small",placeholder:"Enter moment.js supported format"},model:{value:t.model.dateFormat,callback:function(e){t.$set(t.model,"dateFormat",e)},expression:"model.dateFormat"}})],1)],2):"number"==t.model.data_type&&t.hasPro?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Thousand Separator"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v(" "+t._s(t.$t("Thousand Separator")))]),t._v(" "),n("p",[t._v("\n Please Provide The Thousand Separator If Any.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-group",{model:{value:t.model.thousandSeparator,callback:function(e){t.$set(t.model,"thousandSeparator",e)},expression:"model.thousandSeparator"}},[n("el-radio",{attrs:{label:""}},[t._v("None")]),t._v(" "),n("el-radio",{attrs:{label:"."}},[t._v("Dot (.)")]),t._v(" "),n("el-radio",{attrs:{label:","}},[t._v("Comma (,)")])],1)],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Decimal Separator"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v(" "+t._s(t.$t("Thousand Separator")))]),t._v(" "),n("p",[t._v("\n Please Provide The Decimal Separator If Any.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-group",{model:{value:t.model.decimalSeparator,callback:function(e){t.$set(t.model,"decimalSeparator",e)},expression:"model.decimalSeparator"}},[n("el-radio",{attrs:{label:""}},[t._v("None")]),t._v(" "),n("el-radio",{attrs:{label:"."}},[t._v("Dot (.)")]),t._v(" "),n("el-radio",{attrs:{label:","}},[t._v("Comma (,)")])],1)],2)]:"selection"==t.model.data_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Select Items"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Select Field")]),t._v(" "),n("p",[t._v("\n Use Select Field to add data in your table from predefined list\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-form-item",[t.has_pro?t._e():n("p",[n("b",[t._v("Selection feature is only available on Pro version Please upgrade to\n pro to unlock this feature")])]),t._v(" "),n("el-input",{attrs:{type:"textarea",size:"small",disabled:!t.has_pro,placeholder:"Enter Select items one per line",autosize:{minRows:4,maxRows:8}},model:{value:t.model.selections,callback:function(e){t.$set(t.model,"selections",e)},expression:"model.selections"}}),t._v(" "),n("small",[t._v("Enter Select items one per line")])],1)],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Enable Multi-Selection"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Multiple Selection")]),t._v(" "),n("p",[t._v("\n If you select yes, Then admin can select multiple item on create data\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-switch",{attrs:{"active-value":"yes"},model:{value:t.model.isMultiple,callback:function(e){t.$set(t.model,"isMultiple",e)},expression:"model.isMultiple"}})],2)]:"image"==t.model.data_type?[t.hasPro?t._e():[n("el-form-item",[n("p",{staticStyle:{color:"red"}},[t._v("Image upload with lightbox, download link is a pro feature. It will\n not work without Pro Version "),n("b",[n("a",{attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade",target:"_blank"}},[t._v("Please upgrade to pro")])])])])],t._v(" "),n("el-form-item",{attrs:{label:"Image Linkable?"}},[n("el-radio",{attrs:{disabled:!t.hasPro,label:"none"},model:{value:t.model.link_type,callback:function(e){t.$set(t.model,"link_type",e)},expression:"model.link_type"}},[t._v("Image Only")]),t._v(" "),n("el-radio",{attrs:{disabled:!t.hasPro,label:"image_light_box"},model:{value:t.model.link_type,callback:function(e){t.$set(t.model,"link_type",e)},expression:"model.link_type"}},[t._v("Image Lightbox")]),t._v(" "),n("el-radio",{attrs:{disabled:!t.hasPro,label:"iframe_ligtbox"},model:{value:t.model.link_type,callback:function(e){t.$set(t.model,"link_type",e)},expression:"model.link_type"}},[t._v("Iframe Lightbox")]),t._v(" "),n("el-radio",{attrs:{disabled:!t.hasPro,label:"hyperlinked"},model:{value:t.model.link_type,callback:function(e){t.$set(t.model,"link_type",e)},expression:"model.link_type"}},[t._v("Link to URL")])],1),t._v(" "),"file_download"==t.model.link_type?n("el-form-item",{attrs:{label:"Download Button Text / HTML"}},[n("el-input",{attrs:{disabled:!t.hasPro,type:"textarea",placeholder:"Download Button Text / HTML"},model:{value:t.model.download_button,callback:function(e){t.$set(t.model,"download_button",e)},expression:"model.download_button"}})],1):t._e(),t._v(" "),"hyperlinked"==t.model.link_type||"file_download"==t.model.link_type?n("el-form-item",[n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"_blank","false-label":"_self"},model:{value:t.model.link_target,callback:function(e){t.$set(t.model,"link_target",e)},expression:"model.link_target"}},[t._v("Open Link\n in new window\n ")])],1):t._e()]:"button"==t.model.data_type?[t.hasPro?t._e():[n("el-form-item",[n("p",{staticStyle:{color:"red"}},[t._v("Button on Table is a pro Feature. It will not work without Pro Version. "),n("b",[n("a",{attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade",target:"_blank"}},[t._v("Please upgrade to pro")])])])])],t._v(" "),n("el-form-item",{attrs:{label:"Button Text"}},[n("el-input",{attrs:{size:"small",type:"text",placeholder:"Button Text (HTML supported)"},model:{value:t.model.button_text,callback:function(e){t.$set(t.model,"button_text",e)},expression:"model.button_text"}}),t._v(" "),n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"_blank","false-label":"_self"},model:{value:t.model.link_target,callback:function(e){t.$set(t.model,"link_target",e)},expression:"model.link_target"}},[t._v("Open Link\n in new window\n ")]),t._v(" "),n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"nt_rounded_btn","false-label":""},model:{value:t.model.btn_extra_class,callback:function(e){t.$set(t.model,"btn_extra_class",e)},expression:"model.btn_extra_class"}},[t._v("Make\n Button as rounded corner\n ")])],1),t._v(" "),n("el-form-item",{attrs:{label:"Button Style"}},[n("div",{staticClass:"ninja_color_blocks"},[n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{disabled:!t.hasPro,label:"Background"},model:{value:t.model.btn_bg_color,callback:function(e){t.$set(t.model,"btn_bg_color",e)},expression:"model.btn_bg_color"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{disabled:!t.hasPro,label:"Text Color"},model:{value:t.model.btn_text_color,callback:function(e){t.$set(t.model,"btn_text_color",e)},expression:"model.btn_text_color"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{disabled:!t.hasPro,label:"Border Color"},model:{value:t.model.btn_border_color,callback:function(e){t.$set(t.model,"btn_border_color",e)},expression:"model.btn_border_color"}})],1)])])]:t._e(),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Responsive Breakpoint"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Responsive Breakpoint")]),t._v(" "),n("p",[t._v("\n Choose responsive breakpoints of your table columns. "),n("br"),t._v("\n For more details check "),n("a",{attrs:{href:"https://wpmanageninja.com/r/docs/ninja-tables/configure-responsive-breakdowns-for-table/?utm_source=ninja-tables"}},[t._v("documentation")]),t._v(".\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{attrs:{size:"mini",placeholder:"Select Responsive Breakpoint"},model:{value:t.model.breakpoints,callback:function(e){t.$set(t.model,"breakpoints",e)},expression:"model.breakpoints"}},t._l(t.breakPointsOptions,function(t,e){return n("el-option",{key:e,attrs:{label:t,value:e}})}))],2),t._v(" "),"wp-posts"==t.dataSourceType?n("wp-post-dynamic-column",{attrs:{columns:t.columns,column:t.model}}):"wp_woo"==t.dataSourceType?[n("dynamic-woo-column",{attrs:{columns:t.columns,column:t.model}})]:t._e()],2),t._v(" "),n("el-tab-pane",{attrs:{label:"Advanced Settings",name:"advanced"}},[n("div",{staticClass:"advanced-settings"},[t.hasPro?t._e():n("div",{staticClass:"ninja_table_inline_upgrade"},[n("H3",[t._v("Advanced Column Settings")]),t._v(" "),n("p",[t._v("\n Customize your table's column's width, custom css class, content alignments, column styling\n with this feature.\n Advanced Column Settings is a pro feature and You can use it once you upgrade to Ninja\n Tables Pro.\n Ninja Table Pro has lots of features that will help you to build any type of Tables.\n ")]),t._v(" "),n("a",{attrs:{href:"https://wpmanageninja.com/ninja-tables/ninja-tables-pro-pricing/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=advanced_column&utm_term=upgrade",target:"_blank"}},[n("button",{staticClass:"el-button el-button--danger",attrs:{type:"button"}},[n("span",[t._v("Buy Pro and Enable This Module")])])])],1),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Extra Classes"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Extra CSS Classes")]),t._v(" "),n("p",[t._v("\n Enter extra CSS classes to the column. "),n("br"),t._v("\n Use `space` to separate each class.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small",disabled:!t.hasPro},model:{value:t.model.classes,callback:function(e){t.$set(t.model,"classes",e)},expression:"model.classes"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Max Width"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v(t._s(t.$t("Maximum Width")))]),t._v(" "),n("p",[t._v("\n Enter the maximum width of the column. This will be applied for the entire\n column\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small",type:"number",disabled:!t.hasPro},model:{value:t.model.width,callback:function(e){t.$set(t.model,"width",e)},expression:"model.width"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Header Text Align"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Header Text Alignment")]),t._v(" "),n("p",[t._v("\n Choose the text alignment. This will be applied only for header\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{attrs:{size:"mini",placeholder:"Text Align"},model:{value:t.model.textAlign,callback:function(e){t.$set(t.model,"textAlign",e)},expression:"model.textAlign"}},t._l(t.alignmentOptions,function(t,e){return n("el-option",{key:e,attrs:{label:t,value:e}})}))],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Row Content Text Align"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Content Text Alignment")]),t._v(" "),n("p",[t._v(" Choose the text alignment for Column Rows")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{attrs:{size:"mini",placeholder:"Content Alignment"},model:{value:t.model.contentAlign,callback:function(e){t.$set(t.model,"contentAlign",e)},expression:"model.contentAlign"}},t._l(t.contentAlignmentOptions,function(t,e){return n("el-option",{key:e,attrs:{label:t,value:e}})}))],2),t._v(" "),n("el-form-item",[n("el-checkbox",{attrs:{disabled:!t.hasPro,value:!0,label:"Enable HTML Table Header Content"},model:{value:t.model.enable_html_content,callback:function(e){t.$set(t.model,"enable_html_content",e)},expression:"model.enable_html_content"}})],1),t._v(" "),t.model.enable_html_content?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Header HTML Content"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Header HTML Content")]),t._v(" "),n("p",[t._v("\n Provide content for table column header if you want to show html content.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("wp_editor",{model:{value:t.model.header_html_content,callback:function(e){t.$set(t.model,"header_html_content",e)},expression:"model.header_html_content"}})],2):t._e(),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filterable"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Filterable")]),t._v(" "),n("p",[t._v("\n If You enable this then this column data will not be filterable at the frontend.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"yes","false-label":"no",value:"yes",label:"Disable frontend search for this column data"},model:{value:t.model.unfilterable,callback:function(e){t.$set(t.model,"unfilterable",e)},expression:"model.unfilterable"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Sortable"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Sortable")]),t._v(" "),n("p",[t._v("\n If You enable this then this column data will not be sortable at the frontend.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"yes","false-label":"no",value:"yes",label:"Disable frontend sorting for this column"},model:{value:t.model.unsortable,callback:function(e){t.$set(t.model,"unsortable",e)},expression:"model.unsortable"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Column Background"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Background color")]),t._v(" "),n("p",[t._v("\n You can set background color of this particular column that will show on the\n frontend table.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-color-picker",{attrs:{disabled:!t.hasPro,"show-alpha":""},model:{value:t.model.background_color,callback:function(e){t.$set(t.model,"background_color",e)},expression:"model.background_color"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Column Text Color"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Text Color color")]),t._v(" "),n("p",[t._v("\n You can set Column Text color of this particular column that will show on the\n frontend table.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-color-picker",{attrs:{disabled:!t.hasPro,"show-alpha":""},model:{value:t.model.text_color,callback:function(e){t.$set(t.model,"text_color",e)},expression:"model.text_color"}})],2)],1)]),t._v(" "),n("el-tab-pane",{attrs:{label:"Conditional Formatting",name:"conditional"}},[n("condition",{attrs:{column:t.model,"has-pro":t.hasPro}})],1),t._v(" "),n("el-tab-pane",{attrs:{label:"Transform Value",name:"transformer"}},[n("content-transformer",{attrs:{settings:t.settings,columns:t.columns,column:t.model}})],1),t._v(" "),n("hr",{staticStyle:{margin:"10px 0"}}),t._v(" "),n("div",{staticClass:"form_group"},[n("div",{staticClass:"pull-right"},[t.updating?[t.hideDelete?t._e():n("el-popover",{attrs:{placement:"top",width:"170",trigger:"click"},model:{value:t.showConfirm,callback:function(e){t.showConfirm=e},expression:"showConfirm"}},[n("p",[t._v("Are you sure to delete this?")]),t._v(" "),n("div",{staticStyle:{"text-align":"right",margin:"0"}},[n("el-button",{attrs:{type:"text",size:"mini"},on:{click:function(e){t.showConfirm=!1}}},[t._v("cancel\n ")]),t._v(" "),n("el-button",{attrs:{type:"primary",size:"mini"},on:{click:t.deleteColumn}},[t._v("confirm\n ")])],1),t._v(" "),t.hideDelete?t._e():n("el-button",{attrs:{slot:"reference",type:"danger",size:"small"},slot:"reference"},[t._v(t._s(t.$t("Delete"))+"\n ")])],1),t._v(" "),n("el-button",{attrs:{loading:t.doingAjax,type:"primary",size:"small"},on:{click:function(e){return e.preventDefault(),t.store(e)}}},[t._v("\n "+t._s(t.$t("Update"))+"\n ")])]:[t.hideCancel?t._e():n("el-button",{attrs:{type:"danger",size:"small"},on:{click:function(e){return e.preventDefault(),t.cancel(e)}}},[t._v("\n "+t._s(t.$t("Cancel"))+"\n ")]),t._v(" "),n("el-button",{attrs:{loading:t.doingAjax,type:"primary",size:"small"},on:{click:function(e){return e.preventDefault(),t.addColumn(e)}}},[t._v("Add Column\n ")])]],2)])],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(506),n(507),!1,function(t){n(504)},null,null);t.exports=a.exports},function(t,e,n){var a=n(505);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("508b4bf5",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".fluent-form-nav .el-collapse-item__header,.fluent-form-nav .el-collapse-item__wrap{padding:0 15px 15px}.fluent-form-nav .sync-settings{margin-top:15px}.fluent-form-nav .el-collapse-item__content{padding-bottom:15px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(121),i=n.n(a);e.default={name:"FluentformNav",components:{FluentForm:i.a},props:{config:{type:Object},tableCreated:{type:Function},isEditableMessage:{required:!0},model:{type:Object},hasPro:{type:Boolean}},data:function(){return{}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"fluent-form-nav"},[n("el-collapse",[n("el-collapse-item",{attrs:{name:"1"}},[n("template",{slot:"title"},[n("i",{staticClass:"header-icon el-icon-info el-text-info"}),t._v(" "),n("strong",[t._v("Edit:")]),t._v(" "+t._s(t.isEditableMessage)+"\n ")]),t._v(" "),n("FluentForm",{attrs:{tableCreated:t.tableCreated,editing:!0,config:t.config}})],2)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(511),n(512),!1,function(t){n(509)},null,null);t.exports=a.exports},function(t,e,n){var a=n(510);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("514643a9",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".external-source-nav .el-collapse-item__header,.external-source-nav .el-collapse-item__wrap{padding:0 15px}.external-source-nav .sync-settings{margin-top:15px}.external-source-nav .el-collapse-item__content{padding-bottom:15px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(122),i=n.n(a);e.default={name:"External",components:{"external-data-source":i.a},props:{tableCreated:{type:Function},config:{type:Object},isEditableMessage:{required:!0},hasPro:{required:!0}},data:function(){return{state:!1,url:this.value,activated_features:window.ninja_table_admin.activated_features}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"external-source-nav"},[n("el-collapse",[n("el-collapse-item",{attrs:{name:"1"}},[n("template",{slot:"title"},[n("i",{staticClass:"header-icon el-icon-info el-text-info"}),t._v(" "),n("strong",[t._v("Edit:")]),t._v(" "+t._s(t.isEditableMessage)+"\n ")]),t._v(" "),n("external-data-source",{attrs:{type:t.config.table.dataSourceType,tableCreated:t.tableCreated,columns:t.config.columns,table:t.config.table,hasPro:t.hasPro,editing:!0,activated_features:t.activated_features}})],2)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(516),n(517),!1,function(t){n(514)},null,null);t.exports=a.exports},function(t,e,n){var a=n(515);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("2cb81800",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".fluent-form-nav .el-collapse-item__header,.fluent-form-nav .el-collapse-item__wrap{padding:0 15px 15px}.fluent-form-nav .sync-settings{margin-top:15px}.fluent-form-nav .el-collapse-item__content{padding-bottom:15px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(123),i=n.n(a);e.default={name:"RowSQLNav",components:{MySqlEditor:i.a},props:{config:{type:Object},tableCreated:{type:Function},isEditableMessage:{required:!0},model:{type:Object},hasPro:{type:Boolean},column_count:{type:Number}},data:function(){return{error_html:"",loading:!1,active:"",has_sql_permission:"yes"==window.ninja_table_admin.has_sql_permission}},methods:{updateSql:function(){var t=this;this.loading=!0,this.error_html="",jQuery.post(ajaxurl,{action:"ninja_table_raw_sql_update_sql",table_id:this.config.table.ID,sql:this.config.table.sql}).then(function(e){t.tableCreated(),t.$message({showClose:!0,message:e.data.message,type:"success"})}).fail(function(e){var n="",a=e.responseJSON.data.message;for(var i in a)n+=" "+a[i];t.$message({showClose:!0,message:n,type:"error"}),e.responseJSON.data.error&&(t.error_html=e.responseJSON.data.error)}).always(function(){t.loading=!1})}},mounted:function(){this.column_count||(this.active="1")}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"fluent-form-nav"},[t.has_sql_permission?n("el-collapse",{model:{value:t.active,callback:function(e){t.active=e},expression:"active"}},[n("el-collapse-item",{attrs:{name:"1"}},[n("template",{slot:"title"},[n("i",{staticClass:"header-icon el-icon-info el-text-info"}),t._v(" "),n("strong",[t._v(" Edit:")]),t._v(" "+t._s(t.isEditableMessage)+"\n ")]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Custom SQL Query")))]),t._v(" "),n("my-sql-editor",{attrs:{mode:"mysql",editor_id:"ninja_mysql_editor"},model:{value:t.config.table.sql,callback:function(e){t.$set(t.config.table,"sql",e)},expression:"config.table.sql"}}),t._v(" "),n("p",[t._v("Please write valid SQL query. Your written SQL query will be passed to "),n("code",[t._v("$wpdb->get_results()")]),t._v(" function")]),t._v(" "),n("p",[t._v("Check the documentation for advanced use cases: "),n("a",{attrs:{target:"_blank",rel:"noopener",href:"https://wpmanageninja.com/docs/ninja-tables/integrations/construct-table-from-custom-sql/"}},[t._v("Ninja Tables SQL Integration Documentation")])]),t._v(" "),n("p",[t._v("Available Dynamic Placeholders: "),n("code",[t._v("{current_user_id}")]),t._v(" "),n("code",[t._v("{current_date}")]),t._v(" "),n("code",[t._v("{current_date_time}")]),t._v(" "),n("code",[t._v("{current_post_id}")]),t._v(" "),n("code",[t._v("{current_post_title}")]),t._v(" "),n("code",[t._v("{prefix}")])])],1),t._v(" "),t.error_html?n("div",{staticClass:"form-group"},[n("el-alert",{attrs:{title:"SQL Error",type:"error"},on:{close:function(e){t.error_html=""}}},[n("div",{domProps:{innerHTML:t._s(t.error_html)}})])],1):t._e(),t._v(" "),n("div",{staticClass:"form-group",staticStyle:{"text-align":"right"}},[n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],attrs:{size:"small",type:"primary"},on:{click:function(e){t.updateSql()}}},[t._v("Update SQL Query")])],1)],2)],1):[n("el-alert",{attrs:{title:"",type:"error",closable:!1}},[n("p",[t._v("\n For security reason, Custom SQL module is enabled only for Administrator user role. Please ask your site administrator to enable SQL module for other user roles."),n("br"),t._v("\n You can only see the data and update other settings but can't alter the original SQL.\n ")]),t._v(" "),n("b",[t._v("Current SQL Query: ")]),t._v(" "),n("p",[n("code",[t._v(t._s(t.config.table.sql))])])])]],2)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(521),n(522),!1,function(t){n(519)},null,null);t.exports=a.exports},function(t,e,n){var a=n(520);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("499d79da",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".fluent-form-nav .el-collapse-item__header,.fluent-form-nav .el-collapse-item__wrap{padding:0 15px}.fluent-form-nav .sync-settings{margin-top:15px}.fluent-form-nav .el-collapse-item__content{padding-bottom:15px}.el-transfer__buttons{padding:0 10px!important}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(110),i=n.n(a),o=n(48),s=n.n(o);e.default={name:"WPPostsNav",components:{WPPosts:i.a,columnsEditor:s.a},props:{config:{type:Object},tableCreated:{type:Function},isEditableMessage:{required:!0},model:{type:Object},hasPro:{type:Boolean}},data:function(){return{activeNames:["1"]}},methods:{addNewColumn:function(){this.$emit("add")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"fluent-form-nav"},[n("el-collapse",{model:{value:t.activeNames,callback:function(e){t.activeNames=e},expression:"activeNames"}},[n("el-collapse-item",{attrs:{title:"Table Query Settings and New Column",name:"1"}},[n("el-tabs",{attrs:{type:"border-card"}},[n("el-tab-pane",{attrs:{label:"Table Info"}},[n("p",[t._v('This table data is created from wp-posts. Use the "Query Settings" and "Add New Column" tab to customize the columns and query.')])]),t._v(" "),n("el-tab-pane",{attrs:{label:"Query Settings"}},[n("WPPosts",{attrs:{hasPLainLayout:!0,config:t.config,tableCreated:t.tableCreated}})],1),t._v(" "),n("el-tab-pane",{attrs:{label:"Add New Column"}},[n("columns-editor",{attrs:{model:t.model,columns:t.config.columns,hasPro:t.hasPro,settings:t.config.settings,hideCancel:!0,dataSourceType:"wp-posts"},on:{add:function(e){t.addNewColumn()}}})],1)],1)],1)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(524),n(525),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(112),i=n.n(a),o=n(48),s=n.n(o);e.default={name:"woo_nav_edit",props:["config","model"],components:{WooNav:i.a,ColumnsEditor:s.a},data:function(){return{query_terms:[],appearance:this.config.table.appearance_settings||{},loading:!1}},methods:{saveSettings:function(){var t=this;this.saving=!0,this.$post({action:"ninja_table_save_query_settings_woo_table",table_id:this.config.table.ID,query_selections:this.config.table.query_selections,query_conditions:this.config.table.query_conditions,appearance_settings:this.config.table.appearance_settings}).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"}),t.$emit("reloadData",1)}).fail(function(t){}).always(function(){t.saving=!1})},addNewColumn:function(){this.$emit("add")}},mounted:function(){}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("el-tabs",{attrs:{type:"border-card"}},[n("el-tab-pane",{attrs:{label:"Appearnce Settings"}},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.appearance.show_cart_before_table,callback:function(e){t.$set(t.appearance,"show_cart_before_table",e)},expression:"appearance.show_cart_before_table"}},[t._v("Show Cart Details Before Table")]),t._v(" "),n("br"),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.appearance.show_cart_after_table,callback:function(e){t.$set(t.appearance,"show_cart_after_table",e)},expression:"appearance.show_cart_after_table"}},[t._v("Show Cart Details After Table")]),t._v(" "),n("br"),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.appearance.show_cart_button,callback:function(e){t.$set(t.appearance,"show_cart_button",e)},expression:"appearance.show_cart_button"}},[t._v("Show Go to Cart Button")]),t._v(" "),n("br"),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.appearance.show_checkout_button,callback:function(e){t.$set(t.appearance,"show_checkout_button",e)},expression:"appearance.show_checkout_button"}},[t._v("Show Checkout Button")]),t._v(" "),n("br"),t._v(" "),n("el-button",{attrs:{type:"primary",size:"small"},on:{click:function(e){t.saveSettings()}}},[t._v("Save Settings")])],1),t._v(" "),n("el-tab-pane",{attrs:{label:"Query Settings"}},[n("woo-nav",{attrs:{query_selections:t.config.table.query_selections,query_conditions:t.config.table.query_conditions}}),t._v(" "),n("br"),t._v(" "),n("el-button",{attrs:{type:"primary",size:"small"},on:{click:function(e){t.saveSettings()}}},[t._v("Save Settings")])],1),t._v(" "),n("el-tab-pane",{attrs:{label:"Add New Column"}},[n("columns-editor",{attrs:{model:t.model,columns:t.config.columns,hasPro:!0,settings:t.config.settings,hideCancel:!0,dataSourceType:"wp_woo"},on:{add:function(e){t.addNewColumn()}}})],1)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(527),n(528),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(82),i=n(84),o=n.n(i),s=n(86),l=n(142),r=n.n(l),c=n(143),u=n.n(c),d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};e.default={name:"show_cell",props:["row","column","formula_support","is_editable"],components:{mayBeSelect:r.a,NinjaDatePicker:u.a},data:function(){return{is_editing:!1,btnLoading:!1,inital_value:""}},methods:{saveOnly:function(){},maybeSave:function(t){var e=this;if("change"!=t){var n=this.column.key,a=this.row.values[n];if(this.inital_value!=a){this.inital_value=JSON.stringify(a);var i={action:"ninja_tables_ajax_actions",target_action:"update-single-cell",row_id:this.row.id,column_key:n,column_value:a};this.btnLoading=!0,this.is_editing=!1,jQuery.post(ajaxurl,i).then(function(t){console.log(t)}).fail(function(t){e.$message.error("Failed")}).always(function(){e.btnLoading=!1})}else this.is_editing=!1}},renderTableCell:function(t,e,n){return"image"==e.data_type?"object"==(void 0===t?"undefined":d(t))&&t?"file_download"==e.link_type?'<a target="'+e.link_target+'" href="'+t.permalink+'">'+e.download_button+"</a>":t.image_thumb?'<img src="'+t.image_thumb+'" />':"":t:"button"==e.data_type?t?'<a target="'+e.link_target+'" class="nt_btn '+e.btn_extra_class+'" style="color: '+e.btn_text_color+"; background-color: "+e.btn_bg_color+"; border-color: "+e.btn_border_color+"\" href='"+t+"'>"+e.button_text+"</a>":"":(Array.isArray(t)&&(t=t.join(", ")),e.transformed_value&&e.transformed_value.trim()&&(t=this.getShortcodes(t,e,n)),"yes"==this.formula_support?s.a.parse(t):t)},getShortcodes:function(t,e,n){var i=e.transformed_value;-1!=i.indexOf("{{")&&(i=o()(Object(a.a)(i,{row:n})));var s=i.match(/{row.([^\}]*)}/g);return s&&$.each(s,function(t,e){var a=e.substring(5,e.length-1);i=i.replace(e,n[a])}),i}},computed:{cell_editable:function(){if(!this.is_editable)return!1;return-1==["image","button","html"].indexOf(this.column.data_type)}},mounted:function(){this.is_editable&&this.row.values[this.column.key]&&(this.inital_value=JSON.stringify(this.row.values[this.column.key]))}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.btnLoading,expression:"btnLoading"}],class:t.is_editing&&t.cell_editable?"nt_cell_editing":"nt_cell"},[t.is_editing&&t.cell_editable?n("div",{staticClass:"cell_editing"},["selection"==t.column.data_type?n("may-be-select",{attrs:{size:"mini",newColumn:t.row.values,column:t.column},on:{blur:function(e){t.maybeSave("blur")}}}):"date"==t.column.data_type?n("ninja-date-picker",{directives:[{name:"focus",rawName:"v-focus"}],attrs:{only_picker:"yes",column:t.column,new_column:t.row.values},on:{blur:function(e){t.maybeSave("blur")}}}):"textarea"==t.column.data_type?n("textarea",{directives:[{name:"focus",rawName:"v-focus"},{name:"model",rawName:"v-model",value:t.row.values[t.column.key],expression:"row['values'][column.key]"}],key:t.column.key,staticClass:"nt_inline_textarea",domProps:{value:t.row.values[t.column.key]},on:{blur:function(e){t.maybeSave("blur")},input:function(e){e.target.composing||t.$set(t.row.values,t.column.key,e.target.value)}}}):n("input",{directives:[{name:"focus",rawName:"v-focus"},{name:"model",rawName:"v-model",value:t.row.values[t.column.key],expression:"row['values'][column.key]"}],key:t.column.key,staticClass:"nt_cell_input",attrs:{type:"text"},domProps:{value:t.row.values[t.column.key]},on:{blur:function(e){t.maybeSave("blur")},keyup:function(e){if(!("button"in e)&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;t.maybeSave("submit")},input:function(e){e.target.composing||t.$set(t.row.values,t.column.key,e.target.value)}}})],1):n("div",{staticClass:"cell-content",class:t.cell_editable?"nt_cell_editable":"",attrs:{title:t.cell_editable?"Click to edit":t.row.values[t.column.key]},domProps:{innerHTML:t._s(t.renderTableCell(t.row.values[t.column.key],t.column,t.row.values))},on:{click:function(e){t.is_editing=!0}}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.isEditable?t._e():["fluent-form"==t.dataSourceType?n("div",{staticClass:"tablenav top"},[n("fluent-form-nav",{attrs:{config:t.config,model:t.new_column,hasPro:t.has_pro,"is-editable-message":t.isEditableMessage,tableCreated:t.reloadSettingsAndData}})],1):-1!=t.dataSourceType.indexOf("csv")?n("div",{staticClass:"tablenav top"},[n("external-source-nav",{attrs:{"is-editable-message":t.isEditableMessage,loading:t.syncing,config:t.config,hasPro:t.has_pro,tableCreated:t.reloadSettingsAndData},model:{value:t.externalDataSourceUrl,callback:function(e){t.externalDataSourceUrl=e},expression:"externalDataSourceUrl"}})],1):"wp-posts"==t.dataSourceType&&t.new_column?n("div",{staticClass:"tablenav top"},[n("WPPostsNav",{attrs:{config:t.config,model:t.new_column,hasPro:t.has_pro,"is-editable-message":t.isEditableMessage,tableCreated:t.reloadSettingsAndData},on:{add:function(e){t.addNewColumn()}}})],1):"raw_sql"==t.dataSourceType?n("div",{staticClass:"tablenav top"},[n("raw-sql-nav",{attrs:{"is-editable-message":t.isEditableMessage,loading:t.syncing,config:t.config,column_count:t.columns.length,hasPro:t.has_pro,tableCreated:t.reloadSettingsAndData}})],1):"wp_woo"==t.dataSourceType?n("div",{staticClass:"tablenav top"},[n("div",{staticClass:"woo_data_source_config"},[n("woo-nav-edit",{attrs:{model:t.new_column,config:t.config},on:{add:function(e){t.addNewColumn()},reloadData:function(e){t.getData()}}})],1)]):t._e(),t._v(" "),t.columns.length||t.loading?t._e():n("div",[n("h3",{staticStyle:{"text-align":"center"}},[t._v("No Data found based on your data source configaration")])])],t._v(" "),t.columns.length&&t.isEditable?[t.addDataModal?n("add_data_modal",{attrs:{title:t.addDataModalTitle,show:t.addDataModal,table_id:t.tableId,columns:t.columns,item:t.updateItem,"manual-sort":"manual_sort"===t.config.settings.sorting_type,"insert-after-position":t.insertAfterPosition,insertAfterId:t.insertAfterId,type:t.dataModalType},on:{modal_close:t.closeDataModal,updateItem:t.updateItemOnTable,createItem:t.addItemOnTable}}):t._e(),t._v(" "),n("div",{staticClass:"tablenav top"},[n("div",{staticClass:"alignleft actions bulkactions"},[n("label",{staticClass:"screen-reader-text",attrs:{for:"bulk-action-selector-top"}},[t._v("\n "+t._s(t.$t("Select bulk action"))+"\n ")]),t._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.bulkAction,expression:"bulkAction"}],attrs:{name:"action"},on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.bulkAction=e.target.multiple?n:n[0]}}},[n("option",{attrs:{value:"-1"}},[t._v(t._s(t.$t("Bulk Actions")))]),t._v(" "),n("option",{attrs:{value:"delete"}},[t._v(t._s(t.$t("Delete Entries")))])]),t._v(" "),n("button",{staticClass:"button action",on:{click:function(e){return e.preventDefault(),t.handleBulkAction(e)}}},[t._v(t._s(t.$t("Apply")))]),t._v(" "),n("label",{staticClass:"form_group",attrs:{for:"compact_view"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.isCompact,expression:"isCompact"}],attrs:{id:"compact_view",type:"checkbox"},domProps:{checked:Array.isArray(t.isCompact)?t._i(t.isCompact,null)>-1:t.isCompact},on:{change:function(e){var n=t.isCompact,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,null);a.checked?o<0&&(t.isCompact=n.concat([null])):o>-1&&(t.isCompact=n.slice(0,o).concat(n.slice(o+1)))}else t.isCompact=i}}}),t._v(" Compact View\n ")]),t._v(" "),n("label",[t._v("\n | "),n("i",{staticClass:"el-icon-news",attrs:{title:"show meta data"},on:{click:function(e){t.show_meta=!t.show_meta}}})]),t._v(" "),n("label",{staticClass:"form_group search_action",attrs:{for:"search"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.searchString,expression:"searchString"}],staticClass:"form-control inline",attrs:{id:"search",placeholder:"Search",type:"text"},domProps:{value:t.searchString},on:{keyup:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?t.getData(e):null},input:function(e){e.target.composing||(t.searchString=e.target.value)}}}),t._v(" "),n("i",{staticClass:"el-icon-search",on:{click:t.getData}})]),t._v(" "),n("label",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.sorting,expression:"sorting"}],attrs:{type:"checkbox",name:"checkbox"},domProps:{checked:Array.isArray(t.sorting)?t._i(t.sorting,null)>-1:t.sorting},on:{change:function(e){var n=t.sorting,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,null);a.checked?o<0&&(t.sorting=n.concat([null])):o>-1&&(t.sorting=n.slice(0,o).concat(n.slice(o+1)))}else t.sorting=i}}}),t._v("\n Sort Manually\n "),t.has_pro?t._e():[t._v("(Pro Feature)")]],2)]),t._v(" "),n("div",{staticClass:"pull-right"},[n("el-button",{attrs:{size:"small",type:"primary"},on:{click:function(e){t.add()}}},[t._v(" "+t._s(t.$t("Add Data")))]),t._v(" "),n("el-button",{attrs:{size:"small",type:"info"},on:{click:function(e){t.addColumn()}}},[t._v(" "+t._s(t.$t("Add Column")))])],1)])]:t._e(),t._v(" "),t.loading||t.columns.length||!t.isEditable?t._e():n("div",{staticClass:"instruction_block",staticStyle:{"margin-top":"15px","text-align":"center"},attrs:{type:"warning"}},[n("h3",[t._v(t._s(t.$t("To get started please add table columns")))]),t._v(" "),n("el-button",{attrs:{type:"primary"},on:{click:function(e){t.addColumn()}}},[t._v("\n Add Column\n ")])],1),t._v(" "),t.columns.length?[n("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"js-sortable-table",class:{compact:t.isCompact,sorting:t.sorting},style:"width: "+t.tableWidth,attrs:{data:t.items,"row-key":"id",border:"","max-height":"600"},on:{"selection-change":t.handleSelectionChange}},[t.isEditable?n("el-table-column",{attrs:{type:"selection",fixed:"",width:"60"}}):t._e(),t._v(" "),t._l(t.columns,function(e,a){return n("el-table-column",{key:a,attrs:{label:JSON.stringify(e),"render-header":t.addConfigIcon,width:t.columnLength==a+1?"":150},scopedSlots:t._u([{key:"default",fn:function(a){return[n("show-editable-cell",{attrs:{row:a.row,column:e,formula_support:t.config.settings.formula_support,is_editable:t.isEditable}})]}}])})}),t._v(" "),t.isEditable?[t.show_meta?[n("el-table-column",{attrs:{label:"Data ID",width:"100px",prop:"id"}}),t._v(" "),n("el-table-column",{attrs:{label:"Created By",width:"165px",prop:"created_by"}}),t._v(" "),n("el-table-column",{attrs:{label:"Reference Date",width:"165px",prop:"created_at"}})]:t._e(),t._v(" "),n("el-table-column",{attrs:{fixed:"right",label:"Actions","class-name":"actions",width:"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[t.has_pro?n("a",{on:{click:function(n){t.addAfter(e)}}},[n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Add Data after this row","open-delay":500}},[n("span",{staticClass:"dashicons dashicons-plus"})])],1):t._e(),t._v(" "),n("a",{on:{click:function(n){t.showUpdateModal(e)}}},[n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Edit data","open-delay":500}},[n("span",{staticClass:"dashicons dashicons-edit"})])],1),t._v(" "),n("a",{on:{click:function(n){t.duplicateData(e)}}},[n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Duplicate data","open-delay":500}},[n("span",{staticClass:"dashicons dashicons-admin-page"})])],1),t._v(" "),n("delete-pop-over",{on:{deleted:function(n){t.deleteItem(e.row.id)}}})]}}])})]:t._e()],2),t._v(" "),n("div",{staticClass:"tablenav bottom"},[t.isEditable?n("div",{staticClass:"alignleft actions bulkactions"},[n("label",{staticClass:"screen-reader-text",attrs:{for:"bulk-action-selector-top"}},[t._v("\n "+t._s(t.$t("Select bulk action"))+"\n ")]),t._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.bulkAction,expression:"bulkAction"}],attrs:{name:"action"},on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.bulkAction=e.target.multiple?n:n[0]}}},[n("option",{attrs:{value:"-1"}},[t._v(t._s(t.$t("Bulk Actions")))]),t._v(" "),n("option",{attrs:{value:"delete"}},[t._v(t._s(t.$t("Delete Entries")))])]),t._v(" "),n("button",{staticClass:"button action",on:{click:function(e){return e.preventDefault(),t.handleBulkAction(e)}}},[t._v(t._s(t.$t("Apply")))])]):t._e(),t._v(" "),n("div",{staticClass:"pull-right"},[n("el-pagination",{attrs:{"current-page":t.paginate.current_page,"page-sizes":[10,20,50,100,500,2e3],"page-size":t.paginate.per_page,layout:"total, sizes, prev, pager, next, jumper",total:t.paginate.total},on:{"size-change":t.handleSizeChange,"current-change":t.goToPage,"update:currentPage":function(e){t.$set(t.paginate,"current_page",e)}}})],1)])]:t._e(),t._v(" "),n("sortable-upgrade-notice",{attrs:{show:t.sortableUpgradeNotice},on:{close:function(e){t.sortableUpgradeNotice=!1}}}),t._v(" "),n("el-dialog",{staticClass:"no_padding_body",attrs:{"close-on-click-modal":!1,"append-to-body":!0,top:"50px",title:"Edit Table Column : "+t.currentEditingColumn.name,width:"70%",visible:t.showColumnEditor},on:{"update:visible":function(e){t.showColumnEditor=e}}},[t.showColumnEditor&&t.currentEditingColumn?n("columns-editor",{attrs:{dataSourceType:t.config.table.dataSourceType,model:t.currentEditingColumn,hasPro:t.has_pro,updating:!0,columns:t.columns,settings:t.config.settings,hideDelete:!1},on:{store:function(e){t.storeSettings()},delete:function(e){t.deleteColumn()},cancel:function(e){t.showColumnEditor=!1}}}):t._e()],1),t._v(" "),n("el-dialog",{attrs:{"close-on-click-modal":!1,top:"50px","append-to-body":!0,title:"Add Table Column",width:"70%",visible:t.columnModal},on:{"update:visible":function(e){t.columnModal=e}}},[n("columns-editor",{attrs:{model:t.new_column,hasPro:t.has_pro,columns:t.config.columns,settings:t.config.settings},on:{add:function(e){t.addNewColumn()},cancel:function(e){t.columnModal=!t.columnModal}}})],1)],2)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(533),n(556),!1,function(t){n(531)},null,null);t.exports=a.exports},function(t,e,n){var a=n(532);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("2c0abb3d",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".table-column-settings{margin-top:15px}.table-column-settings .el-menu{border-right:initial}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(87),i=n.n(a),o=n(133),s=n.n(o),l=n(78),r=n.n(l),c=n(77),u=n.n(c),d=n(141),_=n.n(d),p=n(48),f=n.n(p),m=n(534),v=n.n(m),h=n(547),b=n.n(h),g=n(550),y=n.n(g),w=n(553),x=n.n(w),k=n(74);e.default={name:"TableConfiguration",components:{draggable:i.a,ColumnsEditor:f.a,NinjaCustomFilters:v.a,NinjaLanguageSettings:b.a,NinjaRenderingSettings:y.a,NinjaButtonSettings:x.a},props:["config"],data:function(){return{hasPro:!!window.ninja_table_admin.hasPro,active_menu:"columns",table_color_primary:"#000",table_color_secondary:"#fff",tableId:this.$route.params.table_id,tableLibs:Object(k.a)(),doingAjax:!1,addColumnStatus:!1,new_column:!1,breakPointsOptions:{xs:this.$t("Initial Hidden Mobile"),"xs sm":this.$t("Initial Hidden Mobile and Tab"),"xs sm md lg":this.$t("Initial Hidden Mobile, Tab and Regular Computers"),"":this.$t("Always show in all devices"),hidden:this.$t("Totally hidden on all devices")},dataTypesOptions:{text:this.$t("Single Line Text Field"),textarea:this.$t("Text Area"),html:this.$t("HTML Field"),number:this.$t("Numeric Value"),date:this.$t("Date Field"),selection:this.$t("Select Field")},attributeModel:{name:null,key:null,breakpoints:""},columns:this.config.columns,tableSettings:this.config.settings,is_fluent_installed:window.ninja_table_admin.isInstalled,fluent_url:window.ninja_table_admin.fluentform_url,has_pro:!!window.ninja_table_admin.hasPro,hasSortable:!!window.ninja_table_admin.hasSortable,addVisible:!1,sortableUpgradeNotice:!1}},watch:{"new_column.name":function(){this.new_column.key=_()(this.new_column.name)}},methods:{storeSettings:function(){var t=this;window.ninjaTableBus.$emit("tableDoingAjax",!0),this.doingAjax=!0;var e={action:"ninja_tables_ajax_actions",target_action:"update-table-settings",table_id:this.tableId,columns:this.columns,table_settings:this.tableSettings};jQuery.post(ajaxurl,e).success(function(e){t.$message({showClose:!0,message:e.message,type:"success"}),t.$set(t.config,"columns",t.columns)}).fail(function(t){}).always(function(){t.doingAjax=!1,window.ninjaTableBus.$emit("tableDoingAjax",!1)})},openDrawer:function(t){jQuery(".drawer_body_"+t).slideToggle()},validateColumn:function(t){return t.name?t.key?-1===s()(this.columns,function(e){return e.key==t.key})||(this.$message({showClose:!0,message:this.$t("Column Key needs to be unique. Please add a suffix / prefix to make it unique"),type:"error"}),!1):(this.$message({showClose:!0,message:this.$t("Column Key is required"),type:"error"}),!1):(this.$message({showClose:!0,message:this.$t("Name is required"),type:"error"}),!1)},addNewColumn:function(){this.validateColumn(this.new_column)&&(this.columns.push(this.new_column),this.setNewColumn(),this.addColumnStatus=!1,this.storeSettings())},deleteColumn:function(t){this.config.columns.splice(t,1),this.storeSettings()},showProAd:function(t){this.addVisible=!0,window.ninjaTableBus.$emit("show_pro_popup",1)},size:u.a,get:r.a,initManualSorting:function(){var t=this;new Promise(function(e,n){window.ninjaTableBus.$emit("initManualSorting",{table_id:t.tableId,noData:!0},e,n)})},headerColorsClick:function(){this.has_pro||this.showProAd()},setNewColumn:function(){var t={name:"",key:"",breakpoints:"",data_type:"text",dateFormat:"",header_html_content:"",enable_html_content:!1};"wp-posts"===this.dataSourceType()&&(t.source_type="custom"),this.new_column=t},dataSourceType:function(){var t=this.config.table.dataSourceType||"Default";return t=t.indexOf("google")>-1?"Google SpreadSheet":t}},computed:{addable:function(){return-1!=["default","wp-posts"].indexOf(this.config.table.dataSourceType)}},mounted:function(){this.setNewColumn()}}},function(t,e,n){var a=n(0)(n(535),n(546),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(14),i=n.n(a),o=n(536),s=n.n(o),l=n(87),r=n.n(l);e.default={name:"custom_filter",props:["table_id","columns"],components:{NinjaFilterEditor:s.a,draggable:r.a},data:function(){return{loading:!1,saving:!1,hasPro:!!window.ninja_table_admin.hasPro,hasAdvancedFilters:!!window.ninja_table_admin.hasAdvancedFilters,table_filters:[],activeEditor:!1,editorModal:!1,addFilterModal:!1,filter_styling:{filter_display_type:"",filter_columns:"columns_2",filter_column_label:"new_line"}}},computed:{columnKeyPairs:function(){var t={};return i()(this.columns,function(e){t[e.key]=e.name}),t}},methods:{each:i.a,fetchFilters:function(){var t=this;this.loading=!0,jQuery.get(window.ajaxurl,{action:"ninjatable_get_custom_table_filters",table_id:this.table_id}).then(function(e){t.table_filters=e.data.table_filters,t.filter_styling=e.data.filter_styling}).fail(function(t){}).always(function(){t.loading=!1})},updateFilter:function(t){this.validateFilter(t)&&this.saveFilters()},validateFilter:function(t){return t.title?t.options.length?"reset_filter"==t.type||"select"==t.type||t.columns.length?!("select"==t.type&&"dynamic_data"==t.select_value_type&&!t.dynamic_select_column)||(this.$message.error("Please Select Target Column"),!1):(this.$message.error("Please Select columns that you need to add filter"),!1):(this.$message.error("Please Provide Filter Options"),!1):(this.$message.error("Please Provide Filter Title"),!1)},saveFilters:function(){var t=this;this.saving=!0,jQuery.post(window.ajaxurl,{action:"ninjatable_update_custom_table_filters",table_id:this.table_id,ninja_filters:this.table_filters,filter_styling:this.filter_styling}).then(function(e){t.$message.success(e.data.message)}).fail(function(t){}).always(function(){t.saving=!1,t.activeEditor=!1,t.editorModal=!1,t.addFilterModal=!1})},showAddFilter:function(){this.activeEditor={placeholder:"All",options:[{value:"",label:""}],type:"select",columns:[],strict:"no",title:""},this.addFilterModal=!0},addFilter:function(t){var e=this;this.validateFilter(t)&&(this.table_filters.push(t),this.$nextTick(function(){e.saveFilters()}))},edit:function(t){this.activeEditor=t,this.editorModal=!0},deleteFilter:function(t){this.table_filters.splice(t,1),this.saveFilters()}},mounted:function(){this.hasAdvancedFilters&&this.fetchFilters()}}},function(t,e,n){var a=n(0)(n(539),n(545),!1,function(t){n(537)},"data-v-282824ae",null);t.exports=a.exports},function(t,e,n){var a=n(538);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("b36716d8",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".spaced>.el-radio[data-v-282824ae]{margin-left:0;margin-right:30px!important;line-height:2}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(540),i=n.n(a),o=n(14),s=n.n(o);e.default={name:"FilterEditor",components:{KeyPairOptions:i.a},props:["activeEditor","columnKeyPairs","columns"],computed:{current_columns:function(){if("date_picker"==this.activeEditor.type||"date_range"==this.activeEditor.type){var t=[];return s()(this.columns,function(e){"date"==e.data_type&&t.push(e)}),t}if("number_range"==this.activeEditor.type){var e=[];return s()(this.columns,function(t){"number"==t.data_type&&e.push(t)}),e}return this.columns},has_filter_option:function(){return-1!==["radio","checkbox"].indexOf(this.activeEditor.type)},is_manual_select_options:function(){return"select"==this.activeEditor.type&&"manual"==this.activeEditor.select_value_type},need_placeholder:function(){return-1!==["radio","select","date_picker","text_input"].indexOf(this.activeEditor.type)},need_filter_columns:function(){return!("select"==this.activeEditor.type&&"dynamic_data"==this.activeEditor.select_value_type||"reset_filter"==this.activeEditor.type)}},watch:{"activeEditor.type":function(t){"select"==t&&this.$set(this.activeEditor,"select_value_type","manual"),Array.isArray(this.activeEditor.columns)||(this.activeEditor.columns=[])}},mounted:function(){Array.isArray(this.activeEditor.columns)||(this.activeEditor.columns=[])}}},function(t,e,n){var a=n(0)(n(543),n(544),!1,function(t){n(541)},null,null);t.exports=a.exports},function(t,e,n){var a=n(542);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("59ffc73b",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,"table.ninja_filter_table{width:100%;text-align:left;border-collapse:collapse}table.ninja_filter_table td,table.ninja_filter_table th,table.ninja_filter_table tr{border:1px solid #eaeaea;padding:2px 10px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(87),i=n.n(a);e.default={name:"ninja_key_pair_options",components:{draggable:i.a},props:["value"],data:function(){return{filterArray:[]}},methods:{deleteItem:function(t){this.value.splice(t,1)},add:function(){this.value.push({label:"",value:""})}},mounted:function(){}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("table",{staticClass:"ninja_filter_table"},[t._m(0),t._v(" "),n("draggable",{attrs:{options:{handle:".handle"},list:t.value,element:"tbody"}},t._l(t.value,function(e,a){return n("tr",[n("td",[n("span",{staticClass:"dashicons dashicons-editor-justify handle",staticStyle:{"margin-top":"10px"}})]),t._v(" "),n("td",[n("el-input",{attrs:{size:"mini",type:"text"},model:{value:e.label,callback:function(n){t.$set(e,"label",n)},expression:"filter.label"}})],1),t._v(" "),n("td",[n("el-input",{attrs:{size:"mini",type:"text"},model:{value:e.value,callback:function(n){t.$set(e,"value",n)},expression:"filter.value"}})],1),t._v(" "),n("td",[n("el-button",{attrs:{disabled:1==t.value.length,type:"danger",size:"mini"},on:{click:function(e){t.deleteItem(a)}}},[t._v("-")]),t._v(" "),n("el-button",{directives:[{name:"show",rawName:"v-show",value:a+1==t.value.length,expression:"(index + 1) == value.length"}],attrs:{type:"success",size:"mini"},on:{click:function(e){t.add()}}},[t._v("+")])],1)])}))],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("thead",[e("tr",[e("th"),this._v(" "),e("th",[this._v("Label")]),this._v(" "),e("th",[this._v("Filter Value")])])])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-form",{ref:"form",staticClass:"form-wrapper",attrs:{model:t.activeEditor,"label-width":"250px"}},[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filter Title"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Filter Title")]),t._v(" "),n("p",[t._v("Just a Name to identify your Filter")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small"},model:{value:t.activeEditor.title,callback:function(e){t.$set(t.activeEditor,"title",e)},expression:"activeEditor.title"}})],2),t._v(" "),"reset_filter"!=t.activeEditor.type?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filter Label"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Prefix")]),t._v(" "),n("p",[t._v("This will show on your Table Filter")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small"},model:{value:t.activeEditor.filter_prefix,callback:function(e){t.$set(t.activeEditor,"filter_prefix",e)},expression:"activeEditor.filter_prefix"}}),t._v(" "),n("small",[t._v("Keep it blank if you don't need any filter instruction at the frontend")])],2):t._e(),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filter UI Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Filter UI")]),t._v(" "),n("p",[t._v("Select the filter type that you want to show the filter in the frontend")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-group",{staticClass:"spaced",model:{value:t.activeEditor.type,callback:function(e){t.$set(t.activeEditor,"type",e)},expression:"activeEditor.type"}},[n("el-radio",{attrs:{label:"select"}},[t._v("Select Dropdown")]),t._v(" "),n("el-radio",{attrs:{label:"radio"}},[t._v("Radio")]),t._v(" "),n("el-radio",{attrs:{label:"checkbox"}},[t._v("Checkbox")]),t._v(" "),n("el-radio",{attrs:{label:"date_picker"}},[t._v("Date Picker")]),t._v(" "),n("el-radio",{attrs:{label:"date_range"}},[t._v("Date Range")]),t._v(" "),n("el-radio",{attrs:{label:"text_input"}},[t._v("Text Input")]),t._v(" "),n("el-radio",{attrs:{label:"number_range"}},[t._v("Number Range")]),t._v(" "),n("el-radio",{attrs:{label:"reset_filter"}},[t._v("Reset Filter Button")])],1)],2),t._v(" "),t.need_placeholder?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Placeholder"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("p",[t._v("This will show on as default placeholder to reset the label ( Ex: All )")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small"},model:{value:t.activeEditor.placeholder,callback:function(e){t.$set(t.activeEditor,"placeholder",e)},expression:"activeEditor.placeholder"}})],2):t._e(),t._v(" "),"select"==t.activeEditor.type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Value Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("p",[t._v("Select How the value will be populated to the select dropdown")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.activeEditor.select_value_type,callback:function(e){t.$set(t.activeEditor,"select_value_type",e)},expression:"activeEditor.select_value_type"}},[n("el-radio-button",{attrs:{label:"manual"}},[t._v("Manual Data")]),t._v(" "),n("el-radio-button",{attrs:{label:"dynamic_data"}},[t._v("Dynamic Data from Table Column")])],1)],2),t._v(" "),!t.is_manual_select_options&&t.activeEditor.select_value_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Target Column"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("p",[t._v("Select Column That you want to populate data")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-group",{staticClass:"spaced",model:{value:t.activeEditor.dynamic_select_column,callback:function(e){t.$set(t.activeEditor,"dynamic_select_column",e)},expression:"activeEditor.dynamic_select_column"}},t._l(t.current_columns,function(e){return n("el-radio",{key:e.key,attrs:{label:e.key}},[t._v(t._s(e.name))])}))],2),t._v(" "),n("el-form-item",[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.activeEditor.parse_comma_separated,callback:function(e){t.$set(t.activeEditor,"parse_comma_separated",e)},expression:"activeEditor.parse_comma_separated"}},[t._v(" Parse Comma Separated Words")])],1),t._v(" "),n("el-form-item",[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.activeEditor.disable_auto_sorting,callback:function(e){t.$set(t.activeEditor,"disable_auto_sorting",e)},expression:"activeEditor.disable_auto_sorting"}},[t._v(" Disable automatic filter value sorting")])],1),t._v(" "),"yes"!=t.activeEditor.disable_auto_sorting?[n("el-form-item",{attrs:{label:"Sort Dynamic Value as: "}},[n("el-radio-group",{model:{value:t.activeEditor.sorting_type,callback:function(e){t.$set(t.activeEditor,"sorting_type",e)},expression:"activeEditor.sorting_type"}},[n("el-radio",{attrs:{label:"asc"}},[t._v("Asending Way")]),t._v(" "),n("el-radio",{attrs:{label:"desc"}},[t._v("Descending Way")])],1)],1),t._v(" "),n("el-form-item",{attrs:{label:"Sort Algorithom"}},[n("el-radio-group",{model:{value:t.activeEditor.sorting_method,callback:function(e){t.$set(t.activeEditor,"sorting_method",e)},expression:"activeEditor.sorting_method"}},[n("el-radio",{attrs:{label:"text"}},[t._v("As Text Basis")]),t._v(" "),n("el-radio",{attrs:{label:"numeric"}},[t._v("As Numeric Basis")])],1)],1)]:t._e()]:t._e(),t._v(" "),n("el-form-item",[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.activeEditor.is_multi_select,callback:function(e){t.$set(t.activeEditor,"is_multi_select",e)},expression:"activeEditor.is_multi_select"}},[t._v("Enable Multi-Select")])],1)]:t._e(),t._v(" "),t.has_filter_option||t.is_manual_select_options?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filter Options"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Options")]),t._v(" "),n("p",[t._v("Provide the values that you want to show on the frontend. Your values should match your table cell data")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("key-pair-options",{model:{value:t.activeEditor.options,callback:function(e){t.$set(t.activeEditor,"options",e)},expression:"activeEditor.options"}})],2)]:t._e(),t._v(" "),"date_picker"==t.activeEditor.type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Date Filter Operator"))+"\n ")]),t._v(" "),n("el-radio-group",{model:{value:t.activeEditor.filter_operator,callback:function(e){t.$set(t.activeEditor,"filter_operator",e)},expression:"activeEditor.filter_operator"}},[n("el-radio",{attrs:{label:"less"}},[t._v("Less Than Equal")]),t._v(" "),n("el-radio",{attrs:{label:"greater"}},[t._v("Greater Than Equal")]),t._v(" "),n("el-radio",{attrs:{label:"equal"}},[t._v("Equal")])],1)],2)]:"date_range"==t.activeEditor.type||"number_range"==t.activeEditor.type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("From Placeholder"))+"\n ")]),t._v(" "),n("el-input",{attrs:{size:"small",placeholder:"From Placeholder"},model:{value:t.activeEditor.from_placeholder,callback:function(e){t.$set(t.activeEditor,"from_placeholder",e)},expression:"activeEditor.from_placeholder"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("To Placeholder"))+"\n ")]),t._v(" "),n("el-input",{attrs:{size:"small",placeholder:"To Placeholder"},model:{value:t.activeEditor.to_placeholder,callback:function(e){t.$set(t.activeEditor,"to_placeholder",e)},expression:"activeEditor.to_placeholder"}})],2)]:t._e(),t._v(" "),t.need_filter_columns?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filter Columns"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Columns")]),t._v(" "),n("p",[t._v("Select the columns that you want to apply this filter")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),t.current_columns.length?n("el-checkbox-group",{model:{value:t.activeEditor.columns,callback:function(e){t.$set(t.activeEditor,"columns",e)},expression:"activeEditor.columns"}},t._l(t.current_columns,function(e){return n("el-checkbox",{key:e.key,attrs:{label:e.key}},[t._v(t._s(e.name))])})):n("div",[t._v("\n Sorry, No corresponding columns found based on your selection and column's data type\n ")])],2):t._e(),t._v(" "),"reset_filter"==t.activeEditor.type?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Button Text"))+"\n ")]),t._v(" "),n("el-input",{attrs:{size:"mini"},model:{value:t.activeEditor.placeholder,callback:function(e){t.$set(t.activeEditor,"placeholder",e)},expression:"activeEditor.placeholder"}})],2):t._e(),t._v(" "),n("el-form-item",[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.activeEditor.strict,callback:function(e){t.$set(t.activeEditor,"strict",e)},expression:"activeEditor.strict"}},[t._v("Enable Strict Mode (If Enable, Ninja Table will try to match exact value)")])],1)],2)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_custom_filter_wrapper"},[t._m(0),t._v(" "),n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"ninja_style_wrapper",staticStyle:{margin:"25px 0"}},[t.hasAdvancedFilters?n("div",{staticClass:"section_block"},[n("el-button",{attrs:{size:"small",type:"primary"},on:{click:function(e){t.showAddFilter()}}},[t._v("Add New Filter")]),t._v(" "),t.table_filters.length?[n("table",{staticClass:"wp-list-table table-bordered widefat fixed striped",staticStyle:{margin:"20px 0"}},[t._m(1),t._v(" "),n("draggable",{attrs:{options:{handle:".handle"},list:t.table_filters,element:"tbody"},on:{change:function(e){t.saveFilters()}}},t._l(t.table_filters,function(e,a){return n("tr",[n("td",[n("span",{staticClass:"dashicons dashicons-editor-justify handle"}),t._v(" "+t._s(e.title))]),t._v(" "),n("td",[t._v(t._s(e.type))]),t._v(" "),n("td",t._l(e.columns,function(e){return n("code",{directives:[{name:"show",rawName:"v-show",value:t.columnKeyPairs[e],expression:"columnKeyPairs[columnKey]"}]},[t._v("\n "+t._s(t.columnKeyPairs[e])+"\n ")])})),t._v(" "),n("td",[n("el-button",{attrs:{size:"mini",type:"primary",icon:"el-icon-edit"},on:{click:function(n){t.edit(e)}}}),t._v(" "),n("el-button",{attrs:{size:"mini",type:"danger",icon:"el-icon-delete"},on:{click:function(e){t.deleteFilter(a)}}})],1)])}))],1),t._v(" "),n("h3",[t._v("Filter Appearance")]),t._v(" "),n("el-radio-group",{model:{value:t.filter_styling.filter_display_type,callback:function(e){t.$set(t.filter_styling,"filter_display_type",e)},expression:"filter_styling.filter_display_type"}},[n("el-radio",{attrs:{label:"inline"}},[t._v("Show filter inputs as inline")]),t._v(" "),n("el-radio",{attrs:{label:"columns"}},[t._v("Show filter inputs as Columns")])],1),t._v(" "),"columns"==t.filter_styling.filter_display_type?[n("h3",[t._v("Filter Columns")]),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.filter_styling.filter_columns,callback:function(e){t.$set(t.filter_styling,"filter_columns",e)},expression:"filter_styling.filter_columns"}},[n("el-radio-button",{attrs:{label:"columns_2"}},[t._v("Two Columns")]),t._v(" "),n("el-radio-button",{attrs:{label:"columns_3"}},[t._v("Three Columns")]),t._v(" "),n("el-radio-button",{attrs:{label:"columns_4"}},[t._v("Four Columns")])],1)]:t._e(),t._v(" "),n("h3",[t._v("Progressive Filter")]),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.filter_styling.progressive,callback:function(e){t.$set(t.filter_styling,"progressive",e)},expression:"filter_styling.progressive"}},[t._v("Enable Progressive filter for dynamic filter options")]),t._v(" "),n("div",{staticClass:"form_group",staticStyle:{"margin-top":"20px"}},[n("el-button",{attrs:{loading:t.saving,size:"small",type:"success"},on:{click:t.saveFilters}},[t._v("Update Settings")])],1)]:t._e()],2):t.hasPro?n("div",{staticClass:"section_block"},[t._m(2)]):n("div",{staticClass:"section_block text-center"},[t._m(3),t._v(" "),n("a",{staticClass:"el-button el-button--danger",attrs:{target:"_blank",href:"https://wpmanageninja.com/ninja-tables/ninja-tables-pro-pricing/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=custom_filters&utm_term=upgrade"}},[t._v("Purchase Now")])])]),t._v(" "),n("el-dialog",{attrs:{title:"Edit Custom Filter",visible:t.editorModal,width:"70%",top:"50px","append-to-body":!0},on:{"update:visible":function(e){t.editorModal=e}}},[t.activeEditor?n("ninja-filter-editor",{attrs:{columns:t.columns,columnKeyPairs:t.columnKeyPairs,activeEditor:t.activeEditor}}):t._e(),t._v(" "),n("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[n("el-button",{on:{click:function(e){t.editorModal=!1}}},[t._v("Cancel")]),t._v(" "),n("el-button",{attrs:{type:"primary"},on:{click:function(e){t.updateFilter(t.activeEditor)}}},[t._v("Update")])],1)],1),t._v(" "),n("el-dialog",{attrs:{title:"Add New Custom Filter",visible:t.addFilterModal,width:"70%",top:"50px","append-to-body":!0},on:{"update:visible":function(e){t.addFilterModal=e}}},[t.activeEditor?n("ninja-filter-editor",{attrs:{columns:t.columns,columnKeyPairs:t.columnKeyPairs,activeEditor:t.activeEditor}}):t._e(),t._v(" "),n("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[n("el-button",{on:{click:function(e){t.addFilterModal=!1}}},[t._v("Cancel")]),t._v(" "),n("el-button",{attrs:{type:"primary"},on:{click:function(e){t.addFilter(t.activeEditor)}}},[t._v("Add")])],1)],1)],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_header"},[e("h2",{staticClass:"ninja_block"},[this._v("Custom Search Filters")]),this._v(" "),e("p",[this._v("\n Custom Search Filters is useful if you want to add select box / Radio Button to show a group of rows of\n your table.\n "),e("br"),this._v("\n To learn more about this "),e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/custom-filters-on-ninja-tables/"}},[this._v("click\n here")])])])},function(){var t=this.$createElement,e=this._self._c||t;return e("thead",[e("tr",[e("th",[this._v("Name")]),this._v(" "),e("th",[this._v("Type")]),this._v(" "),e("th",[this._v("Target Columns")]),this._v(" "),e("th",[this._v("Action")])])])},function(){var t=this.$createElement,e=this._self._c||t;return e("h3",[this._v("Custom Filters is introduced in version 2.4.0. Please update "),e("b",[this._v("Ninja tables pro")]),this._v(" plugin to use\n this feature")])},function(){var t=this.$createElement,e=this._self._c||t;return e("h3",[this._v("Custom Filters is pro only features. Please purchase "),e("b",[this._v('"Ninja Tables Pro"')]),this._v(" to use this feature\n ")])}]}},function(t,e,n){var a=n(0)(n(548),n(549),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_language_settings",props:["tableSettings"],methods:{storeSettings:function(){this.$emit("storeSettings")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_Language_settings"},[n("div",{staticClass:"ninja_header"},[n("h2",[t._v("Language Settings")]),t._v(" "),n("div",{staticClass:"ninja_actions_action"},[n("el-button",{attrs:{size:"small",type:"primary"},on:{click:function(e){t.storeSettings()}}},[t._v(" "+t._s(t.$t("Update Configuration")))])],1)]),t._v(" "),n("div",{staticClass:"ninja_style_wrapper"},[n("div",{staticClass:"section_block"},[n("div",{staticClass:"language_block"},[n("div",{staticClass:"form_group"},[n("label",{attrs:{for:"no_result_text"}},[t._v("Empty Results Text:")]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.no_result_text,expression:"tableSettings.no_result_text"}],staticClass:"form_control",attrs:{id:"no_result_text",type:"text",autocomplete:"off"},domProps:{value:t.tableSettings.no_result_text},on:{input:function(e){e.target.composing||t.$set(t.tableSettings,"no_result_text",e.target.value)}}}),t._v(" "),n("small",[t._v("The text to display if the table contains no rows.")])]),t._v(" "),n("div",{staticClass:"form_group"},[n("label",{attrs:{for:"search_box_placeholder"}},[t._v("Search Box Placeholder Text")]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.search_placeholder,expression:"tableSettings.search_placeholder"}],staticClass:"form_control",attrs:{id:"search_box_placeholder",type:"text",autocomplete:"off"},domProps:{value:t.tableSettings.search_placeholder},on:{input:function(e){e.target.composing||t.$set(t.tableSettings,"search_placeholder",e.target.value)}}}),t._v(" "),n("small",[t._v("Search Box Placeholder")])]),t._v(" "),n("div",{staticClass:"form_group"},[n("label",{attrs:{for:"search_box_in"}},[t._v("Search Dropdown Heading")]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.search_in_text,expression:"tableSettings.search_in_text"}],staticClass:"form_control",attrs:{id:"search_box_in",type:"text",autocomplete:"off"},domProps:{value:t.tableSettings.search_in_text},on:{input:function(e){e.target.composing||t.$set(t.tableSettings,"search_in_text",e.target.value)}}}),t._v(" "),n("small",[t._v("Search Dropdown Box Title")])])])])])])},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(551),n(552),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja-rendering_settings",props:["tableSettings","config"],data:function(){return{hasPro:!!window.ninja_table_admin.hasPro}},methods:{storeSettings:function(){this.$emit("storeSettings")},changeTableType:function(t){if(!this.hasPro&&"legacy_table"==t)return window.ninjaTableBus.$emit("show_pro_popup",1),void(this.tableSettings.render_type="ajax_table");this.tableSettings.render_type=t}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_rendering_settings"},[n("div",{staticClass:"ninja_header"},[n("h2",[t._v("Table Render Settings")]),t._v(" "),n("div",{staticClass:"ninja_actions_action"},[n("el-button",{attrs:{size:"small",type:"primary"},on:{click:function(e){t.storeSettings()}}},[t._v(" "+t._s(t.$t("Update Configuration")))])],1)]),t._v(" "),n("div",{staticClass:"ninja_style_wrapper"},[n("div",{staticClass:"ninja_section_block_body"},[n("div",{staticClass:"section_block_item"},[n("p",[t._v("Please the select the settings for your table render method. Using Legacy table you can use\n shortcodes in your cells and it will render the full table from php side. Table styles will be\n same for both tables. Most of the cases you will need Ajax Table which is recommended\n settings.")]),t._v(" "),n("div",{staticClass:"card_block"},[n("div",{staticClass:"section_card",class:"ajax_table"==t.tableSettings.render_type?"selected_type":"",on:{click:function(e){t.changeTableType("ajax_table")}}},[n("div",{directives:[{name:"show",rawName:"v-show",value:"ajax_table"==t.tableSettings.render_type,expression:"tableSettings.render_type == 'ajax_table'"}],staticClass:"selected_ribbon"},[t._v("Selected\n ")]),t._v(" "),n("h4",[t._v("Ajax Table")]),t._v(" "),n("p",[t._v("\n Use this settings if you have lots of data and don't need cell merge features. It will\n load your data over ajax. Please note that, shortcodes in table will not work here.\n ")])]),t._v(" "),n("div",{staticClass:"section_card",class:"legacy_table"==t.tableSettings.render_type?"selected_type":"",on:{click:function(e){t.changeTableType("legacy_table")}}},[n("div",{directives:[{name:"show",rawName:"v-show",value:"legacy_table"==t.tableSettings.render_type,expression:"tableSettings.render_type == 'legacy_table'"}],staticClass:"selected_ribbon"},[t._v("Selected\n ")]),t._v(" "),n("h4",[t._v("Advanced Table (Legacy)")]),t._v(" "),t._m(0)])])]),t._v(" "),t.config.table.hasCacheFeature?n("div",{staticClass:"section_block_item"},[n("h3",[t._v("\n Disable Caching\n "),n("el-tooltip",{attrs:{placement:"right",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[t._v("\n To optimize and load faster, we cache the table "),n("br"),t._v("\n contents. It's not recommended to disable "),n("br"),t._v("\n caching unless you know what you are doing\n ")]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("div",{staticClass:"caching-block"},[n("div",{staticClass:"form-group"},[n("span",{staticStyle:{"margin-right":"5px"}},[t._v("Disable Caching")]),t._v(" "),n("el-switch",{attrs:{"active-value":"yes","inactive-value":"no"},model:{value:t.tableSettings.shouldNotCache,callback:function(e){t.$set(t.tableSettings,"shouldNotCache",e)},expression:"tableSettings.shouldNotCache"}})],1)])]):t._e(),t._v(" "),t.config.table.hasExternalCachingInterval?n("div",{staticClass:"section_block_item"},[n("h3",[t._v("\n Caching Interval\n "),n("el-tooltip",{attrs:{placement:"right",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[t._v("\n To optimize and load faster, You can cache the table data for certain minutes "),n("br"),t._v("\n so the data will load from cached data. Please Provide the value in minutes.\n ")]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("div",{staticClass:"caching-block"},[n("div",{staticClass:"form-group",staticStyle:{"max-width":"400px"}},[n("span",{staticStyle:{"margin-right":"5px"}},[t._v("Caching Interval (In Minutes)")]),t._v(" "),n("el-input",{attrs:{type:"number",size:"small"},model:{value:t.tableSettings.caching_interval,callback:function(e){t.$set(t.tableSettings,"caching_interval",e)},expression:"tableSettings.caching_interval"}}),t._v(" "),n("p",[t._v("Keep Blank or 0 to disable caching for table data")]),t._v(" "),t.tableSettings.caching_interval>60?n("p",[t._v("Current Caching Interval: "),n("b",[t._v(t._s((t.tableSettings.caching_interval/60).toFixed(2))+" hours")])]):t._e()],1)])]):t._e(),t._v(" "),"legacy_table"==t.config.settings.render_type&&"yes"!=t.tableSettings.shouldNotCache?n("div",{staticClass:"section_block_item"},[n("h3",[t._v("\n Enable Full HTML Cache\n "),n("el-tooltip",{attrs:{placement:"right",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[t._v("\n If you enable this then ninja tables will cache the full html of the table and"),n("br"),t._v("\n render that without interact with database. You can set the time how many minutes it will cache each iteration.\n ")]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("div",{staticClass:"caching-block"},[n("div",{staticClass:"form-group"},[n("span",{staticStyle:{"margin-right":"5px"}},[t._v("Enable HTML Caching")]),t._v(" "),n("el-switch",{attrs:{"active-value":"yes","inactive-value":"no"},model:{value:t.tableSettings.enable_html_cache,callback:function(e){t.$set(t.tableSettings,"enable_html_cache",e)},expression:"tableSettings.enable_html_cache"}})],1),t._v(" "),"yes"==t.tableSettings.enable_html_cache?n("div",{staticClass:"form-group"},[n("div",{staticClass:"form-group",staticStyle:{"max-width":"400px"}},[n("span",{staticStyle:{"margin-right":"5px"}},[t._v("Caching Interval (In Minutes)")]),t._v(" "),n("el-input",{attrs:{type:"number",size:"small"},model:{value:t.tableSettings.html_caching_minutes,callback:function(e){t.$set(t.tableSettings,"html_caching_minutes",e)},expression:"tableSettings.html_caching_minutes"}}),t._v(" "),t.tableSettings.html_caching_minutes>60?n("p",[t._v("Current Caching Interval: "),n("b",[t._v(t._s((t.tableSettings.html_caching_minutes/60).toFixed(2))+" hours")])]):t._e()],1)]):t._e()])]):t._e()])])])},staticRenderFns:[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("p",[t._v("\n Recommended settings for advanced features\n ")]),t._v(" "),n("ul",{staticClass:"ninja_render_features"},[n("li",[n("span",{staticClass:"dashicons dashicons-yes"}),t._v(" Colspan ( Cell-Merge )")]),t._v(" "),n("li",[n("span",{staticClass:"dashicons dashicons-yes"}),t._v(" Server Side Dom-Generation")]),t._v(" "),n("li",[n("span",{staticClass:"dashicons dashicons-yes"}),t._v(" Render shortcode into table cells\n ")]),t._v(" "),n("li",[n("span",{staticClass:"dashicons dashicons-yes"}),t._v(" Better for SEO")])])])}]}},function(t,e,n){var a=n(0)(n(554),n(555),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"button_settings",props:["table_id"],data:function(){return{table_buttons:{csv:{status:"no",label:"CSV",all_rows:"no"},print:{status:"no",label:"Print",all_rows:"no"}},fetching:!1,saving:!1,button_positions:{after_search_box:"After Search Box",before_table:"Before of the table",after_table:"Bottom of the table"},buttonAlignments:{ninja_buttons_left:"Left",ninja_buttons_center:"Center",ninja_buttons_right:"Right"},hasPro:!!window.ninja_table_admin.hasPro}},methods:{getSettings:function(){var t=this;this.fetching=!0,this.$get({action:"ninja_tables_ajax_actions",target_action:"get_button_settings",table_id:this.table_id}).then(function(e){t.table_buttons=e.data.button_settings}).fail(function(t){}).always(function(){t.fetching=!1})},saveSettings:function(){var t=this;this.saving=!0,this.$post({action:"ninja_tables_ajax_actions",target_action:"update_button_settings",table_id:this.table_id,button_settings:this.table_buttons}).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"})}).fail(function(t){}).always(function(){t.saving=!1})}},mounted:function(){this.getSettings()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_Language_settings"},[t._m(0),t._v(" "),t.hasPro?n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}],staticClass:"ninja_style_wrapper"},[n("div",{staticClass:"section_block",staticStyle:{"max-width":"800px"}},[n("h3",[t._v("CSV Export Button Settings")]),t._v(" "),n("div",{staticClass:"form_group"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.table_buttons.csv.status,callback:function(e){t.$set(t.table_buttons.csv,"status",e)},expression:"table_buttons.csv.status"}},[t._v("\n Enable CSV Export Button\n ")])],1),t._v(" "),"yes"==t.table_buttons.csv.status?[n("div",{staticClass:"form_group",staticStyle:{"max-width":"500px"}},[n("label",[t._v("Button Label")]),t._v(" "),n("el-input",{attrs:{size:"mini",placeholder:"Button Text"},model:{value:t.table_buttons.csv.label,callback:function(e){t.$set(t.table_buttons.csv,"label",e)},expression:"table_buttons.csv.label"}})],1),t._v(" "),n("div",{staticClass:"form_group"},[n("label",[t._v("Button Background Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.table_buttons.csv.bg_color,callback:function(e){t.$set(t.table_buttons.csv,"bg_color",e)},expression:"table_buttons.csv.bg_color"}})],1),t._v(" "),n("div",{staticClass:"form_group"},[n("label",[t._v("Button Text Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.table_buttons.csv.text_color,callback:function(e){t.$set(t.table_buttons.csv,"text_color",e)},expression:"table_buttons.csv.text_color"}})],1)]:t._e(),t._v(" "),n("hr"),t._v(" "),n("h3",[t._v("Print Button Settings")]),t._v(" "),n("div",{staticClass:"form_group"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.table_buttons.print.status,callback:function(e){t.$set(t.table_buttons.print,"status",e)},expression:"table_buttons.print.status"}},[t._v("Enable Print\n Button\n ")])],1),t._v(" "),"yes"==t.table_buttons.print.status?[n("div",{staticClass:"form_group",staticStyle:{"max-width":"500px"}},[n("label",[t._v("Button Label")]),t._v(" "),n("el-input",{attrs:{size:"mini",placeholder:"Button Text"},model:{value:t.table_buttons.print.label,callback:function(e){t.$set(t.table_buttons.print,"label",e)},expression:"table_buttons.print.label"}})],1),t._v(" "),n("div",{staticClass:"form_group form_row_full"},[n("div",{staticClass:"form_row_half"},[n("label",[t._v("Button Background Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.table_buttons.print.bg_color,callback:function(e){t.$set(t.table_buttons.print,"bg_color",e)},expression:"table_buttons.print.bg_color"}})],1),t._v(" "),n("div",{staticClass:"form_row_half"},[n("div",{staticClass:"form_group"},[n("label",[t._v("Button Text Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.table_buttons.print.text_color,callback:function(e){t.$set(t.table_buttons.print,"text_color",e)},expression:"table_buttons.print.text_color"}})],1)])])]:t._e(),t._v(" "),n("hr"),t._v(" "),n("h3",[t._v("Buttons Position")]),t._v(" "),n("div",{staticClass:"form_group"},[n("el-radio-group",{attrs:{size:"small"},model:{value:t.table_buttons.button_position,callback:function(e){t.$set(t.table_buttons,"button_position",e)},expression:"table_buttons.button_position"}},t._l(t.button_positions,function(e,a){return n("el-radio-button",{key:a,attrs:{label:a}},[t._v(t._s(e))])}))],1),t._v(" "),n("div",{staticClass:"form_group"},[n("label",[t._v("Buttons Alignment")]),t._v(" "),n("el-radio-group",{attrs:{size:"small"},model:{value:t.table_buttons.button_alignment,callback:function(e){t.$set(t.table_buttons,"button_alignment",e)},expression:"table_buttons.button_alignment"}},t._l(t.buttonAlignments,function(e,a){return n("el-radio-button",{key:a,attrs:{label:a}},[t._v(t._s(e))])}))],1),t._v(" "),t.hasPro?n("div",{staticClass:"form_group"},[n("el-button",{attrs:{loading:t.saving,disabled:t.saving,size:"small",type:"success"},on:{click:function(e){t.saveSettings()}}},[t._v("Update Settings")])],1):t._e()],2)]):n("div",{staticClass:"section_block text-center",staticStyle:{width:"100%",display:"block",padding:"20px"}},[t._m(1),t._v(" "),n("a",{staticClass:"el-button el-button--danger",attrs:{target:"_blank",href:"https://wpmanageninja.com/ninja-tables/ninja-tables-pro-pricing/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=custom_filters&utm_term=upgrade"}},[t._v("Purchase Now")])])])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_header"},[e("h2",[this._v("CSV Export / Print Button Settings for Frontend")]),this._v(" "),e("p",[this._v("You can enable/disable print and csv export settings here")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("h3",[this._v("Export CSV and Table Print is pro only features. Please purchase "),e("b",[this._v('"Ninja Tables Pro"')]),this._v(" to use this feature\n ")])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"table-column-settings"},[n("el-container",[n("el-aside",{attrs:{width:"200px"}},[n("el-menu",{attrs:{"background-color":"#545c64","default-active":t.active_menu,"text-color":"#fff","active-text-color":"#ffd04b"}},[n("el-menu-item",{attrs:{index:"columns"},on:{click:function(e){t.active_menu="columns"}}},[n("i",{staticClass:"dashicons dashicons-editor-table"}),t._v(" "),n("span",[t._v("Columns")])]),t._v(" "),n("el-menu-item",{attrs:{index:"rendering_settings"},on:{click:function(e){t.active_menu="rendering_settings"}}},[n("i",{staticClass:"dashicons dashicons-album"}),t._v(" "),n("span",[t._v("Rendering Settings")])]),t._v(" "),n("el-menu-item",{attrs:{index:"custom_filters"},on:{click:function(e){t.active_menu="custom_filters"}}},[n("i",{staticClass:"dashicons dashicons-filter"}),t._v(" "),n("span",[t._v("Custom Filters")])]),t._v(" "),n("el-menu-item",{attrs:{index:"button_settings"},on:{click:function(e){t.active_menu="button_settings"}}},[n("i",{staticClass:"dashicons dashicons-images-alt"}),t._v(" "),n("span",[t._v("Buttons (CSV/Print)")])]),t._v(" "),n("el-menu-item",{attrs:{index:"language_settings"},on:{click:function(e){t.active_menu="language_settings"}}},[n("i",{staticClass:"dashicons dashicons-translation"}),t._v(" "),n("span",[t._v("Language Settings")])])],1)],1),t._v(" "),n("el-main",["columns"==t.active_menu?[n("div",{staticClass:"ninja_header"},[n("h2",[t._v("Table Column Settings")])]),t._v(" "),n("div",{staticClass:"ninja_content"},[n("div",{staticClass:"section_widget"},[n("div",{staticClass:"heading"},[t.addColumnStatus||!t.columns.length?n("h3",{staticClass:"title"},[t._v(t._s(t.$t("Add Table Column")))]):n("h3",{staticClass:"title"},[t._v(t._s(t.$t("Available Columns")))]),t._v(" "),t.addable?n("div",{directives:[{name:"show",rawName:"v-show",value:!t.addColumnStatus,expression:"!addColumnStatus"}],staticClass:"inline_action"},[n("el-button",{directives:[{name:"show",rawName:"v-show",value:t.columns.length,expression:"columns.length"}],attrs:{size:"small",type:"primary"},on:{click:function(e){t.addColumnStatus=!t.addColumnStatus}}},[t._v("\n "+t._s(t.$t("Add Column"))+"\n ")])],1):t._e()]),t._v(" "),n("div",{staticClass:"widget_body"},[t.addColumnStatus||!t.columns.length?n("div",{staticClass:"column"},[n("div",{staticClass:"add_column_wrapper"},[n("columns-editor",{attrs:{columns:t.columns,dataSourceType:t.config.table.dataSourceType,model:t.new_column,settings:t.config.settings,"has-pro":t.has_pro},on:{add:function(e){t.addNewColumn()},cancel:function(e){t.addColumnStatus=!t.addColumnStatus}}})],1)]):t._e(),t._v(" "),n("draggable",{attrs:{options:{handle:".handle",animation:150}},on:{end:t.storeSettings},model:{value:t.columns,callback:function(e){t.columns=e},expression:"columns"}},t._l(t.columns,function(e,a){return n("div",{key:e.key,staticClass:"column drawer"},[n("div",{staticClass:"header"},[n("span",{staticClass:"dashicons dashicons-editor-justify handle"}),t._v(" "),n("span",{on:{click:function(e){t.openDrawer(a)}}},[t._v(t._s(e.name||e.key))]),t._v(" "),n("span",{staticClass:"dashicons dashicons-edit edit_icon",on:{click:function(e){t.openDrawer(a)}}})]),t._v(" "),n("div",{staticClass:"drawer_body",class:"drawer_body_"+a},[n("columns-editor",{attrs:{columns:t.columns,dataSourceType:t.config.table.dataSourceType,model:e,"has-pro":t.has_pro,settings:t.config.settings,updating:!0},on:{delete:function(e){t.deleteColumn(a)},store:function(e){t.storeSettings()}}})],1)])}))],1)]),t._v(" "),n("div",{staticClass:"proms"},[n("div",{staticClass:"help_section"},[n("p",[t._v("Need help to configure the columns and responsive breakdowns, Please check tutorial with\n video "),n("a",{attrs:{href:"https://wpmanageninja.com/r/docs/ninja-tables/configure-responsive-breakdowns-for-table/?utm_source=ninja-tables",target:"_blank"}},[t._v("here")])])]),t._v(" "),t.is_fluent_installed?t._e():n("div",{staticClass:"help_section"},[n("p",[t._v("Have you checked out FluentForm yet? We have developed a powerful Drag & Drop WordPress Form\n Builder plugin with some amazing Premium features "),n("a",{attrs:{href:t.fluent_url}},[t._v("Download from\n WordPress.org")])])])])])]:"rendering_settings"==t.active_menu?[n("ninja-rendering-settings",{attrs:{tableSettings:t.tableSettings,config:t.config},on:{storeSettings:t.storeSettings}})]:"language_settings"==t.active_menu?[n("ninja-language-settings",{attrs:{tableSettings:t.tableSettings},on:{storeSettings:t.storeSettings}})]:"custom_filters"==t.active_menu?[n("ninja-custom-filters",{attrs:{columns:t.columns,table_id:t.tableId}})]:(t.active_menu="button_settings")?[n("ninja-button-settings",{attrs:{table_id:t.tableId}})]:t._e()],2)],1)],1)])},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(558),n(567),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(559),i=n.n(a),o=n(562),s=n.n(o);e.default={name:"ExportImport",components:{export:i.a,import:s.a},props:["config"],data:function(){return{active_menu:"import",tableId:this.$route.params.table_id,activeNames:["1"]}}}},function(t,e,n){var a=n(0)(n(560),n(561),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ExportTable",props:["config"],data:function(){return{tableId:this.$route.params.table_id,exportOptions:{csv:"CSV",json:"JSON"},selected:"csv"}},methods:{downloadLink:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"csv",e={action:"ninja_tables_ajax_actions",target_action:"export-data",table_id:this.tableId,format:t};return ajaxurl+"?"+jQuery.param(e)},doExport:function(){var t=this.downloadLink(this.selected);location.href=t}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"ninja_header"},[n("h2",[t._v(t._s(t.$t("Export Data")))])]),t._v(" "),t.config.table.isExportable?n("div",{staticClass:"ninja_content"},[t._m(0),t._v(" "),n("div",{staticClass:"ninja_export_block"},[t._v("\n "+t._s(t.$t("Format:"))+"\n "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.selected,expression:"selected"}],on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.selected=e.target.multiple?n:n[0]}}},t._l(t.exportOptions,function(e,a){return n("option",{domProps:{value:a}},[t._v("\n "+t._s(e)+"\n ")])})),t._v(" "),n("el-button",{attrs:{type:"primary",icon:"el-icon-download",size:"small"},on:{click:function(e){e.preventDefault(),t.doExport()}}},[t._v("\n "+t._s(t.$t("Export"))+"\n ")])],1)]):n("div",{staticClass:"ninja_content"},[n("div",{staticClass:"ninja_suggest"},[n("p",[t._v("Sorry! You can not export the data as the table data is configured as external source ("+t._s(t.config.table.dataSourceType)+")")])])])])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_suggest"},[e("p",[this._v("You can download the table data as CSV or JSON format, If you download as json then you can import the table to any Ninja Table Installation")])])}]}},function(t,e,n){var a=n(0)(n(565),n(566),!1,function(t){n(563)},"data-v-643d3a11",null);t.exports=a.exports},function(t,e,n){var a=n(564);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("eb94fdd6",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,"#fileUpload[data-v-643d3a11]{max-width:200px}.justify-items[data-v-643d3a11]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ninja_content .ninja_suggest[data-v-643d3a11]{background:#f1f1f1}.ninja_content[data-v-643d3a11]{margin:1em 0}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(14),i=n.n(a);e.default={name:"Import",props:["config","tableId"],data:function(){return{btnLoading:!1,replace:!1,tutorial:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables",do_unicode:"no"}},computed:{columns:function(){return this.config&&this.config.columns?this.config.columns:[]},sampleData:function(){var t={};return i()(this.columns,function(e){t[e.key]="column value"}),Array(3).fill(t)}},methods:{clear:function(){jQuery("#fileUpload").val("")},upload:function(){var t=this;t.btnLoading=!0;var e=jQuery("#fileUpload")[0].files[0];if(e){var n=new FormData;n.append("file",e),n.append("action","ninja_tables_ajax_actions"),n.append("target_action","upload-data"),n.append("table_id",this.tableId),n.append("replace",this.replace),n.append("do_unicode",this.do_unicode),jQuery.ajax({url:ajaxurl,data:n,type:"POST",contentType:!1,processData:!1,success:function(e){t.$emit("csvUploaded"),t.clear(),t.$message.success(e.message)},error:function(e){t.$message.error(e.responseJSON.message)}}).always(function(){t.btnLoading=!1})}else t.btnLoading=!1},download:function(){var t=[],e=this.config.columns.map(function(t){return t.key});t.push(e),[1,2].forEach(function(n,a){var i=[];e.forEach(function(t,e){i.push("content_"+a+"_"+e)}),t.push(i)});var n="data:text/csv;charset=utf-8,";t.forEach(function(e,a){var i=e.join(",");n+=a<t.length?i+"\n":i});var a=encodeURI(n),i=document.createElement("a");i.setAttribute("href",a),i.setAttribute("download","sample.csv"),document.body.appendChild(i),i.click()}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"ninja_header"},[n("h2",[t._v(t._s(t.$t("Import Table Data")))])]),t._v(" "),t.config.table.isImportable?n("div",{staticClass:"ninja_content"},[t.columns.length?n("div",[n("form",{attrs:{action:"",id:"fileUploadForm"}},[n("div",{staticClass:"form-group"},[n("input",{attrs:{type:"file",id:"fileUpload"},on:{click:t.clear}}),t._v(" "),n("el-checkbox",{model:{value:t.replace,callback:function(e){t.replace=e},expression:"replace"}},[t._v(t._s(t.$t("Replace Existing Data")))])],1),t._v(" "),n("div",{staticClass:"form-group"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.do_unicode,callback:function(e){t.do_unicode=e},expression:"do_unicode"}},[t._v("Convert to UTF-8 format ( Check this if your csv is non-unicode format )")])],1),t._v(" "),n("div",{staticClass:"form-group"},[n("el-button",{attrs:{type:"primary",icon:"el-icon-upload2",size:"small",loading:t.btnLoading},on:{click:function(e){return e.preventDefault(),t.upload(e)}}},[t._v("\n "+t._s(t.$t("Import from CSV"))+"\n ")])],1)]),t._v(" "),n("div",{staticClass:"ninja_suggest"},[n("p",[t._v("\n Please note that, your CSV data structure need to follow the sample CSV.\n You may want to check the "),n("a",{attrs:{href:t.tutorial}},[t._v("video tutorial here.")])]),t._v(" "),n("br"),t._v(" "),n("p",[t._v("\n Also make sure the content is in UTF-8 format, for the best result.\n ")])]),t._v(" "),n("div",{staticClass:"justify-items"},[n("h3",[t._v("\n "+t._s(t.$t("CSV Header Structure"))+"\n ")]),t._v(" "),n("el-button",{staticStyle:{float:"right"},attrs:{type:"primary",icon:"el-icon-download",size:"small"},on:{click:t.download}},[t._v("\n "+t._s(t.$t("Download Sample CSV"))+"\n ")])],1),t._v(" "),n("el-table",{staticStyle:{width:"100%"},attrs:{border:"",data:t.sampleData,stripe:""}},t._l(t.columns,function(t){return n("el-table-column",{key:t.key,attrs:{prop:t.key,label:t.key}})})),t._v(" "),n("h3",[t._v("or as bellow")]),t._v(" "),n("el-table",{staticStyle:{width:"100%"},attrs:{border:"",data:t.sampleData,stripe:""}},t._l(t.columns,function(t){return n("el-table-column",{key:t.key,attrs:{prop:t.key,label:t.name}})}))],1):n("div",{staticClass:"error"},[n("p",[t._v(t._s(t.$t("Please set table configuration first.")))])])]):n("div",{staticClass:"ninja_content"},[n("div",{staticClass:"ninja_suggest"},[n("p",[t._v("Sorry! You can not import any data as the table data is configured as external source ("+t._s(t.config.table.dataSourceType)+")")])])])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{"margin-top":"15px"}},[n("el-container",[n("el-aside",{attrs:{width:"200px"}},[n("el-menu",{attrs:{"background-color":"#545c64","default-active":t.active_menu,"text-color":"#fff","active-text-color":"#ffd04b"}},[n("el-menu-item",{attrs:{index:"import"},on:{click:function(e){t.active_menu="import"}}},[n("i",{staticClass:"el-icon-upload"}),t._v(" "),n("span",[t._v(t._s(t.$t("Import Data")))])]),t._v(" "),n("el-menu-item",{attrs:{index:"export"},on:{click:function(e){t.active_menu="export"}}},[n("i",{staticClass:"el-icon-download"}),t._v(" "),n("span",[t._v(t._s(t.$t("Export Data")))])])],1)],1),t._v(" "),n("el-main",[n(t.active_menu,{tag:"component",attrs:{config:t.config,tableId:t.tableId}})],1)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(569),n(576),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(570),i=n.n(a),o=n(573),s=n.n(o);e.default={name:"help",components:{fluentpromoad:i.a,ninja_premium:s.a},data:function(){return{docs:[{title:"Ninja Tables Introduction",url:"https://wpmanageninja.com/r/docs/ninja-tables/getting-started/?utm_source=ninja-tables"},{title:"Ninja Tables Demo",url:"https://wpmanageninja.com/docs/ninja-tables/configure-tables/?utm_source=ninja-tables"},{title:"Setting up a Table",url:"https://wpmanageninja.com/r/docs/ninja-tables/setting-up-a-table/?utm_source=ninja-tables"},{title:"Configure Responsive Breakdowns for Table",url:"https://wpmanageninja.com/r/docs/ninja-tables/configure-responsive-breakdowns-for-table/?utm_source=ninja-tables"},{title:"Import Table Data from CSV",url:"https://wpmanageninja.com/r/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables"},{title:"Export Data from a Table",url:"https://wpmanageninja.com/r/docs/ninja-tables/export-data/?utm_source=ninja-tables"},{title:"Import Table from CSV",url:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables"},{title:"Import Table from JSON file",url:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables"},{title:"Import Table from Table Press Plugin",url:"https://wpmanageninja.com/docs/ninja-tables/import-table-from-table-press-plugin/?utm_source=ninja-tables"}],img_url:window.ninja_table_admin.img_url}},methods:{imageUrl:function(t){return this.img_url+t}},mounted:function(){}}},function(t,e,n){var a=n(0)(n(571),n(572),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"fluentpromoad_2",props:["dismisable"],data:function(){return{img_url_path:window.ninja_table_admin.img_url,fluent_url:window.ninja_table_admin.fluentform_url,fluent_wp_url:window.ninja_table_admin.fluent_wp_url,is_installed:window.ninja_table_admin.isInstalled,already_dismissed:window.ninja_table_admin.dismissed}},computed:{will_it_show:function(){return!this.is_installed&&(!this.dismisable||!this.already_dismissed)}},methods:{image_url:function(t){return this.img_url_path+t},dismiss:function(){var t=this;jQuery.post(ajaxurl,{action:"ninja_tables_ajax_actions",target_action:"dismiss_fluent_suggest"}).then(function(t){}).fail(function(t){}).always(function(){t.is_installed=!0})}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.will_it_show?n("div",{staticClass:"ninja_suggest_plugin"},[t.dismisable?n("div",{staticClass:"ninja_dismiss",on:{click:function(e){t.dismiss()}}},[t._v("X")]):t._e(),t._v(" "),n("div",{staticClass:"ninja_form_banner"},[n("img",{attrs:{src:t.image_url("fluentform_banner.jpg")}})]),t._v(" "),n("div",{staticClass:"ninja_fluent_copy"},[n("p",[t._v("Have you checked out FluentForm yet? We have developed a powerful Drag & Drop WordPress Form Builder plugin with some amazing Premium features")]),t._v(" "),n("a",{staticClass:"button button-primary",attrs:{href:t.fluent_url}},[t._v("Download from WordPress.org")]),t._v(" "),n("a",{staticClass:"button",attrs:{target:"_blank",href:t.fluent_wp_url}},[t._v("View Details")])])]):t._e()},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(574),n(575),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_premium",data:function(){return{img_url_path:window.ninja_table_admin.img_url}},computed:{will_it_show:function(){return!window.ninja_table_admin.hasPro||""==window.ninja_table_admin.hasPro}},methods:{image_url:function(t){return this.img_url_path+t}}}},function(t,e){t.exports={render:function(){var t=this.$createElement,e=this._self._c||t;return this.will_it_show?e("div",{staticClass:"ninja_suggest_plugin"},[e("div",{staticClass:"ninja_form_banner"},[e("img",{attrs:{src:this.image_url("banner_premium.png")}})]),this._v(" "),this._m(0)]):this._e()},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_fluent_copy"},[e("p",[this._v("Have you checked out NinjaTables Pro Add-On yet? We have added some exciting features in Ninja Tables with Pro Add-On")]),this._v(" "),e("a",{staticClass:"button button-primary",attrs:{target:"_blank",href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade"}},[this._v("Download Now")]),this._v(" "),e("a",{staticClass:"button",attrs:{target:"_blank",href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade"}},[this._v("View Details")])])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("h2",[t._v(t._s(t.$t("Plugin Documentation and Help")))]),t._v(" "),n("hr"),t._v(" "),n("ninja_premium"),t._v(" "),n("div",{staticClass:"ninja_documentaion_wrapper"},[n("div",{staticClass:"ninja_doc_top_blocks"},[n("div",{staticClass:"ff_block block_1_3"},[n("div",{staticClass:"ff_block_box help_container text-center"},[n("img",{staticClass:"block_icon",attrs:{src:t.imageUrl("fluent-icon.png")}}),t._v(" "),n("h3",[t._v("Try WP FluentFrom")]),t._v(" "),t._m(0),t._v(" "),t._m(1)])]),t._v(" "),t._m(2),t._v(" "),n("div",{staticClass:"ff_block block_1_3"},[n("div",{staticClass:"ff_block_box help_container text-center"},[n("img",{staticClass:"block_icon",attrs:{src:t.imageUrl("azonpress_logo.jpg")}}),t._v(" "),n("h3",[t._v("Amazon Affiliate Plugin")]),t._v(" "),n("p",[t._v("Amazon Affiliate WordPress Plugin for serious Amazon Affiliates")]),t._v(" "),t._m(3)])]),t._v(" "),n("div",{staticStyle:{width:"100%",float:"none",position:"relative",height:"10px",overflow:"hidden"}}),t._v(" "),n("div",{staticClass:"ff_block block_1_3"},[n("div",{staticClass:"ff_block_box help_container"},[n("h3",[t._v("User Guide")]),t._v(" "),n("p",[t._v("Please check the following Tutorials and Documentation for Ninja Tables Plugin")]),t._v(" "),n("ul",{staticClass:"doc_items"},t._l(t.docs,function(e,a){return n("li",{key:a},[n("a",{attrs:{href:e.url,target:"_blank"}},[t._v(t._s(e.title))])])}))])]),t._v(" "),n("div",{staticClass:"ff_block block_1_3"},[n("div",{staticClass:"ff_block_box text-center"},[n("img",{staticClass:"block_icon",attrs:{src:t.imageUrl("heart.png")}}),t._v(" "),n("h3",[t._v("Love this Plugin?")]),t._v(" "),n("p",[t._v("Please write a review in wp.org plugin repository. We appreciate it!")]),t._v(" "),t._m(4)])]),t._v(" "),n("div",{staticClass:"ff_block block_1_3"},[n("div",{staticClass:"ff_block_box text-center"},[n("img",{staticClass:"block_icon",attrs:{src:t.imageUrl("support.png")}}),t._v(" "),n("h3",[t._v("Need And Expert Support?")]),t._v(" "),n("p",[t._v("Our EXPERTS would like to assist you for your query and any customization.")]),t._v(" "),t._m(5)])])])]),t._v(" "),n("fluentpromoad")],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",[e("b",[this._v("Need to build a contact form by drag and drop form builder?")]),this._v(" Try the modern contact form plugin with all the necessary input fields, notifications and connect your form with powerful integrations")])},function(){var t=this.$createElement,e=this._self._c||t;return e("p",[e("a",{staticClass:"button button-primary",attrs:{target:"_blank",href:"https://wordpress.org/plugins/fluentform/"}},[this._v("Download from wp.org (Free)")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ff_block block_1_3"},[e("div",{staticClass:"ff_block_box help_container text-center"},[e("img",{staticClass:"block_icon",attrs:{src:"https://ps.w.org/wp-payment-form/assets/icon-256x256.png?rev=2108991"}}),this._v(" "),e("h3",[this._v("WPPayForm - Accept Payment Easily with WordPress Forms")]),this._v(" "),e("p",[this._v("Do you want to accept payments along with user inputs in WordPress? Then WPPayForm is the perfect plugin for you.")]),this._v(" "),e("p",[e("a",{staticClass:"button button-primary",attrs:{target:"_blank",href:"https://wordpress.org/plugins/wp-payment-form/"}},[this._v("Download WPPayForm (Free)")])])])])},function(){var t=this.$createElement,e=this._self._c||t;return e("p",[e("a",{staticClass:"button button-primary",attrs:{target:"_blank",href:"https://wpmanageninja.com/azonpress/"}},[this._v("Download AzonPress")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("p",[e("a",{staticClass:"button button-primary",attrs:{target:"_blank",href:"https://wordpress.org/plugins/ninja-tables/reviews/"}},[this._v("Write Review")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("p",[e("a",{staticClass:"button button-primary",attrs:{target:"_blank",href:"https://wpmanageninja.com/support-tickets/"}},[this._v("Contact Support")])])}]}},function(t,e,n){var a=n(0)(n(580),n(591),!1,function(t){n(578)},null,null);t.exports=a.exports},function(t,e,n){var a=n(579);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("dca5d8c2",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".js_instruction{padding:10px 20px;background:#fff;margin-bottom:20px;font-size:14px;line-height:22px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_css_editor",props:["config"],components:{ace_code_editor:n(581),ace_js_editor:n(586)},data:function(){return{current_tab:"additional_css",custom_css:"",custom_js:"",hasPro:!!window.ninja_table_admin.hasPro,fetching:!1}},methods:{saveScripts:function(){var t=this;this.hasPro||(this.custom_js=""),this.$post({action:"ninja_tables_ajax_actions",target_action:"save_custom_css_js",table_id:this.config.table.ID,custom_css:this.custom_css,custom_js:this.custom_js}).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"}),t.$set(t.config.table,"custom_css",t.custom_css)}).then(function(t){console.log(t)}).always(function(){})},getScripts:function(){var t=this;this.fetching=!0,this.$get({action:"ninja_tables_ajax_actions",target_action:"get_custom_css_js",table_id:this.config.table.ID}).then(function(e){t.custom_css=e.data.custom_css,t.custom_js=e.data.custom_js}).fail(function(t){}).always(function(){t.fetching=!1})}},mounted:function(){this.getScripts()}}},function(t,e,n){var a=n(0)(n(584),n(585),!1,function(t){n(582)},null,null);t.exports=a.exports},function(t,e,n){var a=n(583);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("011ca082",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_custom_css_editor{min-height:350px;height:auto}.ninja_css_errors .ace_gutter-cell.ace_warning{display:none}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_ace_editor",props:["value","mode","editor_id"],data:function(){return{ace_path:window.ninja_table_admin.ace_path_url,editorError:"",loading:!0}},methods:{loadDependencies:function(){var t=this;"undefined"==typeof ace?jQuery.get(this.ace_path+"/ace.min.js",function(){t.initAce()}):this.initAce()},initAce:function(){var t=this;ace.config.set("workerPath",this.ace_path),ace.config.set("modePath",this.ace_path),ace.config.set("themePath",this.ace_path);var e=ace.edit("ninja_custom_css");e.setTheme("ace/theme/monokai"),e.session.setMode("ace/mode/"+this.mode),e.getSession().on("changeAnnotation",function(){var n=e.getSession().getAnnotations();for(var a in t.editorError="",n)"error"==n[a].type&&(t.editorError=n[a].text)}),e.getSession().on("change",function(){t.$emit("input",e.getSession().getValue())}),this.loading=!1}},mounted:function(){this.loadDependencies()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],attrs:{"element-loading-text":"Loading Editor..."}},[n("div",{staticClass:"ace_container"},[n("div",{staticClass:"ninja_custom_css_editor",attrs:{id:"ninja_custom_css"}},[t._v(t._s(t.value))])]),t._v(" "),n("div",{staticClass:"editor_errors",class:"ninja_"+t.mode+"_errors"},[n("span",{directives:[{name:"show",rawName:"v-show",value:t.editorError,expression:"editorError"}],staticStyle:{"text-align":"right",display:"inline-block",color:"#ff7171",float:"right"}},[t._v(t._s(t.editorError))])])])},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(589),n(590),!1,function(t){n(587)},null,null);t.exports=a.exports},function(t,e,n){var a=n(588);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("76fce250",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_custom_css_editor{min-height:350px;height:auto}.ninja_css_errors .ace_gutter-cell.ace_warning{display:none}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_ace_editor_js",props:["value","mode","editor_id"],data:function(){return{ace_path:window.ninja_table_admin.ace_path_url,editorError:"",loading:!0}},methods:{loadDependencies:function(){var t=this;"undefined"==typeof ace?jQuery.get(this.ace_path+"/ace.min.js",function(){t.initAce()}):this.initAce()},initAce:function(){var t=this;ace.config.set("workerPath",this.ace_path),ace.config.set("modePath",this.ace_path),ace.config.set("themePath",this.ace_path);var e=ace.edit("ninja_custom_js");e.setTheme("ace/theme/monokai"),e.session.setMode("ace/mode/"+this.mode),e.getSession().on("changeAnnotation",function(){var n=e.getSession().getAnnotations();for(var a in t.editorError="",n)"error"==n[a].type&&(t.editorError=n[a].text)}),e.getSession().on("change",function(){t.$emit("input",e.getSession().getValue())}),this.loading=!1}},mounted:function(){this.loadDependencies()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],attrs:{"element-loading-text":"Loading Editor..."}},[n("div",{staticClass:"ace_container"},[n("div",{staticClass:"ninja_custom_css_editor",attrs:{id:"ninja_custom_js"}},[t._v(t._s(t.value))])]),t._v(" "),n("div",{staticClass:"editor_errors",class:"ninja_"+t.mode+"_errors"},[n("span",{directives:[{name:"show",rawName:"v-show",value:t.editorError,expression:"editorError"}],staticStyle:{"text-align":"right",display:"inline-block",color:"#ff7171",float:"right"}},[t._v(t._s(t.editorError))])])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.fetching?n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}]},[n("h3",[t._v("Loading... Please wait")])]):n("div",{staticClass:"section_block"},[n("el-radio-group",{model:{value:t.current_tab,callback:function(e){t.current_tab=e},expression:"current_tab"}},[n("el-radio-button",{attrs:{label:"additional_css"}},[t._v("Additional Custom CSS")]),t._v(" "),n("el-radio-button",{attrs:{label:"additional_js"}},[t._v("Custom Javascript")])],1),t._v(" "),n("hr"),t._v(" "),"additional_css"==t.current_tab?[n("p",[t._v("You may add "),n("code",[t._v("#footable_parent_"+t._s(t.config.table.ID)+" ")]),t._v(" as your css selector prefix to target this specific table")]),t._v(" "),n("ace_code_editor",{attrs:{editor_id:"ninja_custom_css",mode:"css"},model:{value:t.custom_css,callback:function(e){t.custom_css=e},expression:"custom_css"}}),t._v(" "),t._m(0),t._v(" "),n("br"),t._v(" "),n("div",{staticClass:"custom_css_submit",staticStyle:{"margin-top":"20px"}},[n("el-button",{attrs:{type:"success"},on:{click:function(e){t.saveScripts()}}},[t._v("Save Custom CSS")])],1)]:t._e(),t._v(" "),"additional_js"==t.current_tab?[n("p",[t._v("Your additional JS code will run after ninja table initialized. Please provide valid javascript code. Invalid JS code may break the table UI.")]),t._v(" "),t._m(1),t._v(" "),n("ace_js_editor",{attrs:{editor_id:"ninja_custom_js",mode:"javascript"},model:{value:t.custom_js,callback:function(e){t.custom_js=e},expression:"custom_js"}}),t._v(" "),t._m(2),t._v(" "),t.hasPro?[n("div",{staticClass:"custom_css_submit",staticStyle:{"margin-top":"20px"}},[n("el-button",{attrs:{type:"success"},on:{click:function(e){t.saveScripts()}}},[t._v("Save Custom Javascript")])],1)]:[n("p",[t._v("Custom Javascript feature is a pro feature along with many awesome features. Please upgrade to pro.")])]]:t._e()],2),t._v(" "),n("div",{staticClass:"section_block"})])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("span",[this._v("Please don't include "),e("code",[this._v("<style></style>")]),this._v(" tag")])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"js_instruction"},[this._v("\n The Following JavaScrip variables are available that you can use: "),e("br"),this._v(" "),e("b",[this._v("$table")]),this._v(" : The Javascript DOM object of the table"),e("br"),this._v(" "),e("b",[this._v("tableConfig")]),this._v(" : The configuration object of the table.\n ")])},function(){var t=this.$createElement,e=this._self._c||t;return e("span",[this._v("Please don't include "),e("code",[this._v("<script><\/script>")]),this._v(" tag")])}]}},function(t,e,n){var a=n(0)(n(595),n(596),!1,function(t){n(593)},null,null);t.exports=a.exports},function(t,e,n){var a=n(594);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("f9616050",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".striped>tbody>:nth-child(odd){background:transparent}.footable_parent.ninja_device_mobile{width:480px;margin:0 auto}.footable_parent.ninja_device_tablet{max-width:768px;padding:0 20px;margin:0 auto}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(74),i=n(78),o=n.n(i),s=n(77),l=n.n(s),r=n(70),c=n.n(r),u=n(124),d=n.n(u),_=n(145),p=n.n(_),f=n(81),m=n.n(f),v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};e.default={name:"table_preview",props:["config"],components:{SortableUpgradeNotice:p.a,NinjaColorPicker:m.a},data:function(){return{rows:[],activeDesign:"features",tableId:this.$route.params.table_id,tableSettings:this.config.settings,table_body_html:"",data_loaded:!1,script_loaded:!1,footableLoading:!1,tableLibs:Object(a.a)(),has_pro:!!window.ninja_table_admin.hasPro,savingSettings:!1,tableInnerHtml:"",showingDevice:"desktop",hasSortable:!!window.ninja_table_admin.hasSortable,sortableUpgradeNotice:!1,columnCss:""}},computed:{wrapperClasses:function(){var t=[];return t.push(this.tableSettings.css_lib),t.push("ninja_device_"+this.showingDevice),"custom_color"!=this.tableSettings.table_color_type&&"ninja_no_color_table"==this.tableSettings.table_color||t.push("colored_table"),t},tableClasses:function(){var t=this,e=[];e.push("foo_table_"+this.tableId),"custom_color"==this.tableSettings.table_color_type?(e.push("inverted"),e.push("ninja_custom_color")):(this.tableSettings.table_color&&"ninja_no_color_table"!=this.tableSettings.table_color&&e.push("inverted"),e.push(this.tableSettings.table_color)),this.tableSettings.pagination_position?e.push("footable-paging-"+this.tableSettings.pagination_position):e.push("footable-paging-right"),this.tableSettings.hide_header_row&&e.push("ninjatable_hide_header_row"),this.tableSettings.hide_all_borders&&e.push("hide_all_borders"),e.push("ninja_table_pro"),this.tableSettings.search_position&&e.push("ninja_search_"+this.tableSettings.search_position);var n=[];return this.tableSettings.css_classes&&(n=this.availableCssClasses.filter(function(e){return-1!=t.tableSettings.css_classes.indexOf(e)})),this.tableSettings.hide_responsive_labels&&e.push("nt_hide_breakpoint_labels"),this.tableSettings.nt_search_full_width&&e.push("nt_search_full_width"),"semantic_ui"==this.tableSettings.css_lib&&e.push("ui"),[].concat(function(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}(n),e)},formattedColumns:function(){var t=this.config.columns,e=[];return jQuery.each(t,function(t,n){e.push({name:n.key,title:n.name,breakpoints:n.breakpoints,type:n.data_type,sortable:!0,classes:["ninja_column_"+t],visible:"hidden"!=n.breakpoints})}),e},app_ready:function(){return this.data_loaded&&this.script_loaded},currentTableLibs:function(){return this.tableLibs[this.tableSettings.library].css_libs},colors:function(){return this.tableLibs[this.tableSettings.library].colors},availableStyles:function(){var t=this.currentTableLibs[this.tableSettings.css_lib];return!!t&&t.styles},availableCssClasses:function(){var t=[];return c()(this.availableStyles,function(e){t.push(e.key)}),t},showProNotice:function(){return!this.has_pro&&!!("custom_color"==this.tableSettings.table_color_type&&"color_customization"==this.activeDesign||"color_customization"==this.activeDesign&&this.tableSettings.table_color&&"ninja_no_color_table"!=this.tableSettings.table_color)},design_tips:function(){var t=[];return"custom_color"==this.tableSettings.table_color_type&&(this.tableSettings.table_search_color_primary&&this.tableSettings.table_header_color_primary&&this.tableSettings.table_color_primary&&this.tableSettings.table_color_secondary||t.push('You should set colors at <b>"Table Colors"</b> Tab')),t}},watch:{data_loaded:function(){this.app_ready&&this.reInitFootables()},script_loaded:function(){this.app_ready&&this.reInitFootables()},tableSettings:{handler:function(t){var e=this;this.$nextTick(function(){e.generateColorCss()})},deep:!0},tableClasses:{handler:function(t){var e=this;this.$nextTick(function(){e.reInitFootables()})},deep:!0},"tableSettings.enable_search":function(){var t=this;this.$nextTick(function(){t.reInitFootables()})},"tableSettings.column_sorting":function(){var t=this;this.$nextTick(function(){t.reInitFootables()})},"tableSettings.show_all":function(){var t=this;this.$nextTick(function(){t.reInitFootables()})},"tableSettings.togglePosition":function(){var t=this;this.$nextTick(function(){t.reInitFootables()})},"tableSettings.expand_type":function(t,e){var n=this;if("default"!=t&&!this.has_pro)return this.tableSettings.expand_type="default",void window.ninjaTableBus.$emit("show_pro_popup",1);this.$nextTick(function(){n.reInitFootables()})},"tableSettings.sorting_type":function(t,e){"manual_sort"===t&&(this.has_pro?this.hasSortable?this.initManualSorting():this.hasSortable||(this.tableSettings.sorting_type=e,this.sortableUpgradeNotice=!0):(this.tableSettings.sorting_type=e,window.ninjaTableBus.$emit("show_pro_popup",1)))},activeDesign:function(){this.checkColorPro()},"tableSettings.stackable":function(){Array.isArray(this.tableSettings.stacks_devices)||this.$set(this.tableSettings,"stacks_devices",[]),Array.isArray(this.tableSettings.stacks_appearances)||this.$set(this.tableSettings,"stacks_appearances",[])}},methods:{fetchTableBody:function(){var t=this;jQuery.get(ajaxurl,{action:"ninja_tables_ajax_actions",target_action:"get_table_preview_html",table_id:this.tableId}).then(function(e){t.tableInnerHtml=e,t.data_loaded=!0}).fail(function(e){jQuery("#footable_"+t.tableId).append("<h1>Error Loading</h1>")})},initManualSorting:function(){var t=this;new Promise(function(e,n){window.ninjaTableBus.$emit("initManualSorting",{table_id:t.tableId,noData:!0},e,n)})},storeSettings:function(){var t=this;this.checkColorPro(),this.savingSettings=!0;this.filterTableSettings(this.tableSettings);var e={action:"ninja_tables_ajax_actions",target_action:"update-table-settings",table_id:this.tableId,columns:this.columns,table_settings:this.tableSettings};jQuery.post(ajaxurl,e).success(function(e){t.$message({showClose:!0,message:e.message,type:"success"})}).fail(function(t){}).always(function(){t.savingSettings=!1})},filterTableSettings:function(t){var e=[];return c()(this.availableStyles,function(t){e.push(t.key)}),t.css_classes=d()(e,this.tableSettings.css_classes),t},reInitFootables:function(){if(this.app_ready){if("object"==("undefined"==typeof FooTable?"undefined":v(FooTable))){var t=FooTable.get("#footable_"+this.tableId);t&&t.destroy()}jQuery("#footable_"+this.tableId).find("thead,tbody,tfoot").remove(),this.footableLoading=!1,jQuery("#footable_"+this.tableId).append(this.tableInnerHtml),this.initFootables()}},initFootables:function(){if(!this.footableLoading&&this.script_loaded){this.footableLoading=!0;var t=window.ninjaTableApp,e=jQuery("#footable_"+this.tableId);this.tableSettings.hide_on_empty&&e.on("expanded.ft.row",function(t,n,a){e.find("table.footable-details td:empty").parent().addClass("nt_has_hide")});var n=this.getTableConfig();t.initTable(e,n),this.footableLoading=!1}},dysel:function(t){for(var e=t.links,n=t.callback,a=t.nocache,i=t.debug,o=function(t,e){var n=(t=t.toString()).split(".").pop(),a=null;if("js"==n?((a=document.createElement("script")).setAttribute("type","text/javascript"),a.setAttribute("src",t)):("css"==n||t.indexOf("googleapis.com/css?")>-1)&&((a=document.createElement("link")).setAttribute("rel","stylesheet"),a.setAttribute("type","text/css"),a.setAttribute("href",t)),void 0!==a){if(e){var o=e;i&&(o=function(){e()}),a.onreadystatechange=o,a.onload=o}document.getElementsByTagName("head")[0].appendChild(a)}},s=n,l=e.length-1;l>=0;l--){var r=s,c=e[l];a&&(c+="?"+ +(new Date).getTime()),s=function(t){o(this,t)}.bind(c,r)}s()},loadRequiredScripts:function(){var t=this;this.dysel({links:window.ninja_table_admin.preview_required_scripts,callback:function(){t.script_loaded=!0}})},size:l.a,get:o.a,generateColorCss:function(){if("pre_defined_color"!=this.tableSettings.table_color_type){var t="#footable_"+this.tableId,e="\n "+t+" {\n background-color: "+this.tableSettings.table_color_primary+" !important;\n color: "+this.tableSettings.table_color_secondary+" !important;\n }\n "+t+" thead tr.footable-filtering th {\n background-color: "+this.tableSettings.table_search_color_primary+" !important;\n color: "+this.tableSettings.table_search_color_secondary+" !important;\n }\n "+t+":not(.hide_all_borders) thead tr.footable-filtering th {\n "+(this.tableSettings.table_search_color_border?"\n border : 1px solid "+this.tableSettings.table_search_color_border+" !important;\n ":"\n border : 1px solid transparent !important;\n ")+"\n }\n "+t+" .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {\n background-color: "+this.tableSettings.table_search_color_secondary+" !important;\n color: "+this.tableSettings.table_search_color_primary+" !important;\n }\n "+t+" tr.footable-header, "+t+" tr.footable-header th {\n background-color: "+this.tableSettings.table_header_color_primary+" !important;\n color: "+this.tableSettings.table_color_header_secondary+" !important;\n }\n "+t+":not(.hide_all_borders) tr.footable-header th {\n border-color: "+this.tableSettings.table_color_header_border+" !important;\n }\n "+t+":not(.hide_all_borders) tbody tr td {\n border-color: "+this.tableSettings.table_color_border+" !important;\n }\n\n "+("yes"==this.tableSettings.alternate_color_status?"\n "+t+" tbody tr:nth-child(even) {\n background-color: "+this.tableSettings.table_alt_color_primary+";\n color: "+this.tableSettings.table_alt_color_secondary+";\n }\n "+t+" tbody tr:nth-child(odd) {\n background-color: "+this.tableSettings.table_alt_2_color_primary+";\n color: "+this.tableSettings.table_alt_2_color_secondary+";\n }\n "+t+" tbody tr:nth-child(even):hover {\n background-color: "+this.tableSettings.table_alt_color_hover+";\n }\n "+t+" tbody tr:nth-child(odd):hover {\n background-color: "+this.tableSettings.table_alt_2_color_hover+";\n }\n ":"\n ")+"\n\n "+t+" tfoot .footable-paging {\n background-color: "+this.tableSettings.table_footer_bg+" !important;\n }\n "+t+" tfoot .footable-paging .footable-page.active a {\n background-color: "+this.tableSettings.table_footer_active+" !important;\n }\n "+t+":not(.hide_all_borders) tfoot .footable-paging td {\n border-color: "+this.tableSettings.table_footer_border+" !important;\n }\n ";jQuery("#table_designer_css").html(e)}else jQuery("#table_designer_css").html("")},changeColor:function(t,e){this.$set(this.tableSettings,e,t)},checkColorPro:function(){this.has_pro||(this.tableSettings.table_color&&"ninja_no_color_table"!=this.tableSettings.table_color||"pre_defined_color"!=this.tableSettings.table_color_type)&&(this.tableSettings.table_color_type="pre_defined_color",this.tableSettings.table_color="ninja_no_color_table")},generateDefaultCss:function(){var t=this,e=this.config.table.custom_css;this.config.columns.forEach(function(n,a){(n.background_color||n.text_color||n.contentAlign)&&(e+="#footable_parent_"+t.tableId+" thead tr th.ninja_column_"+a+", #footable_parent_"+t.tableId+" tbody tr td.ninja_column_"+a+" { background-color: "+n.background_color+"; color: "+n.text_color+"; }",e+="#footable_parent_"+t.tableId+" tbody tr td.ninja_column_"+a+" { text-align: "+n.contentAlign+"; }")}),jQuery("#ninja_table_designer_common_css").html(e)},getTableConfig:function(){var t={};this.config.columns.forEach(function(e,n){t["ninja_column_"+n]={"text-align":e.textAlign,width:e.width+"px"}});var e={default_sorting:"old_first",defualt_filter:!1,defualt_filter_column:null,expandAll:"expandAll"===this.tableSettings.expand_type,expandFirst:"expandFirst"===this.tableSettings.expand_type,filtering:!!this.tableSettings.enable_search,i18n:{},use_parent_width:"desktop"!==this.showingDevice,sorting:!!this.tableSettings.column_sorting,togglePosition:this.tableSettings.togglePosition},n={toggleColumn:this.tableSettings.togglePosition,cascade:!0,useParentWidth:"desktop"!==this.showingDevice,columns:this.config.columns,expandFirst:"expandFirst"===this.tableSettings.expand_type,expandAll:"expandAll"===this.tableSettings.expand_type,empty:"",filtering:{enabled:!!this.tableSettings.enable_search},paging:{enabled:"0"==this.tableSettings.show_all||0==this.tableSettings.show_all,size:10,container:"#footable_parent_"+this.tableId+" .paging-ui-container"},sorting:{enabled:!!this.tableSettings.column_sorting}};return{columns:this.formattedColumns,custom_css:t,settings:e,render_type:"legacy_table",instance_name:"ninja_table_instance_0",table_id:this.table_id,title:"",init_config:n}}},mounted:function(){this.fetchTableBody(),this.loadRequiredScripts(),this.tableSettings.table_color_type||("ninja_table_custom_color"==this.tableSettings.table_color?this.$set(this.tableSettings,"table_color_type","custom_color"):this.$set(this.tableSettings,"table_color_type","pre_defined_color")),jQuery(".ninja_design_wrapper").css("width",jQuery(".wrap").width()+"px"),jQuery(window).on("resize",function(){jQuery(".ninja_design_wrapper").css("width",jQuery(".wrap").width()+"px")}),this.generateDefaultCss()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_design"},[n("div",{staticClass:"ninja_title_section"},[n("div",{staticClass:"ninja_title"},[n("h3",{staticStyle:{"margin-right":"15px"}},[t._v("Table Style Customization")]),t._v(" "),n("el-radio-group",{staticClass:"ninja_resp_tabs",attrs:{size:"mini"},model:{value:t.showingDevice,callback:function(e){t.showingDevice=e},expression:"showingDevice"}},[n("el-radio-button",{attrs:{label:"desktop"}},[n("span",{staticClass:"dashicons dashicons-desktop"}),t._v(" Desktop\n ")]),t._v(" "),n("el-radio-button",{attrs:{label:"tablet"}},[n("span",{staticClass:"dashicons dashicons-tablet"}),t._v(" Tablet\n ")]),t._v(" "),n("el-radio-button",{attrs:{label:"mobile"}},[n("span",{staticClass:"dashicons dashicons-smartphone"}),t._v(" Mobile\n ")])],1)],1),t._v(" "),n("el-button",{attrs:{loading:t.savingSettings,disabled:t.savingSettings,size:"small",type:"primary"},on:{click:function(e){t.storeSettings()}}},[t._v("Update Settings\n ")])],1),t._v(" "),n("div",{staticClass:"ninja_design_wrapper"},[n("div",{directives:[{name:"loading",rawName:"v-loading",value:!t.app_ready,expression:"!app_ready"}],staticClass:"design_preview",staticStyle:{background:"white",padding:"10px 20px"}},[t.showProNotice?n("div",{staticClass:"ninja_upgrade_bar"},[t._v("\n "+t._s(t.$t("Color customization is a PRO feature. Please upgrade to pro apply this feature."))+"\n "),n("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade_studio"}},[t._v(t._s(t.$t("Upgrade To Pro")))])]):t._e(),t._v(" "),n("div",{staticClass:"footable_parent ninja_table_wrapper loading_ninja_table wp_table_data_press_parent",class:t.wrapperClasses,attrs:{id:"footable_parent_"+t.tableId}},[t.tableSettings.show_title?n("h3",{staticClass:"table_title footable_title"},[t._v(t._s(t.config.table.post_title))]):t._e(),t._v(" "),t.tableSettings.show_description?n("div",{staticClass:"table_description footable_description",domProps:{innerHTML:t._s(t.config.table.post_content)}}):t._e(),t._v(" "),n("table",{directives:[{name:"show",rawName:"v-show",value:t.app_ready,expression:"app_ready"}],staticClass:"table foo-table ninja_footable",class:t.tableClasses,attrs:{id:"footable_"+t.tableId}},[n("colgroup",t._l(t.formattedColumns,function(t,e){return n("col",{key:e,class:["ninja_column_"+e,t.breakpoints]})})),t._v(" "),n("thead")])]),t._v(" "),n("div",{staticClass:"ninja_demo_disclaimer"},[n("hr"),t._v(" "),"yes"==t.tableSettings.stackable?n("p",[n("b",[t._v("For Stackable Tables, Live preview is disabled here. Please check on preview url")])]):t._e(),t._v(" "),t._m(0),t._v(" "),n("p",[t._v("Some elements like custom filters and row-inline styling is not available in this design mode. Please check on live preview or in your embeded page.")])])]),t._v(" "),n("div",{staticClass:"design_controls"},[n("el-tabs",{attrs:{type:"border-card"},model:{value:t.activeDesign,callback:function(e){t.activeDesign=e},expression:"activeDesign"}},[n("el-tab-pane",{attrs:{label:"Styling",name:"features"}},[n("div",{staticClass:"form_group"},[n("label",[t._v("Select Styling Library")]),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.tableSettings.css_lib,callback:function(e){t.$set(t.tableSettings,"css_lib",e)},expression:"tableSettings.css_lib"}},t._l(t.currentTableLibs,function(e,a){return n("el-radio-button",{key:a,attrs:{label:a}},[t._v("\n "+t._s(e.title)+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:e.description}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)}))],1),t._v(" "),t.availableStyles?n("div",{staticClass:"form_group label-normalize"},[n("h3",{staticClass:"ninja_inner_title"},[t._v("Styles")]),t._v(" "),t._l(t.availableStyles,function(e){return n("label",{key:e.key,attrs:{for:"table_style_"+e.key}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.css_classes,expression:"tableSettings.css_classes"}],attrs:{type:"checkbox",name:"table_styles",id:"table_style_"+e.key},domProps:{value:e.key,checked:Array.isArray(t.tableSettings.css_classes)?t._i(t.tableSettings.css_classes,e.key)>-1:t.tableSettings.css_classes},on:{change:function(n){var a=t.tableSettings.css_classes,i=n.target,o=!!i.checked;if(Array.isArray(a)){var s=e.key,l=t._i(a,s);i.checked?l<0&&t.$set(t.tableSettings,"css_classes",a.concat([s])):l>-1&&t.$set(t.tableSettings,"css_classes",a.slice(0,l).concat(a.slice(l+1)))}else t.$set(t.tableSettings,"css_classes",o)}}}),t._v("\n "+t._s(e.title)+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:e.description}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)})],2):t._e(),t._v(" "),n("div",{staticClass:"form_group label-normalize"},[n("h3",{staticClass:"ninja_inner_title"},[t._v("Features")]),t._v(" "),n("label",{attrs:{for:"show_title"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.show_title,expression:"tableSettings.show_title"}],attrs:{type:"checkbox",value:"1",id:"show_title"},domProps:{checked:Array.isArray(t.tableSettings.show_title)?t._i(t.tableSettings.show_title,"1")>-1:t.tableSettings.show_title},on:{change:function(e){var n=t.tableSettings.show_title,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,"1");a.checked?o<0&&t.$set(t.tableSettings,"show_title",n.concat(["1"])):o>-1&&t.$set(t.tableSettings,"show_title",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.tableSettings,"show_title",i)}}}),t._v(" "+t._s(t.$t("Show Table Title"))+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Enable this if you want to show table title in frontend"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("label",{attrs:{for:"show_description"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.show_description,expression:"tableSettings.show_description"}],attrs:{type:"checkbox",value:"1",id:"show_description"},domProps:{checked:Array.isArray(t.tableSettings.show_description)?t._i(t.tableSettings.show_description,"1")>-1:t.tableSettings.show_description},on:{change:function(e){var n=t.tableSettings.show_description,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,"1");a.checked?o<0&&t.$set(t.tableSettings,"show_description",n.concat(["1"])):o>-1&&t.$set(t.tableSettings,"show_description",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.tableSettings,"show_description",i)}}}),t._v(" "+t._s(t.$t("Show Table Description"))+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Enable this if you want to show table description in frontend"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("label",{attrs:{for:"enable_search"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.enable_search,expression:"tableSettings.enable_search"}],attrs:{type:"checkbox",value:"1",id:"enable_search"},domProps:{checked:Array.isArray(t.tableSettings.enable_search)?t._i(t.tableSettings.enable_search,"1")>-1:t.tableSettings.enable_search},on:{change:function(e){var n=t.tableSettings.enable_search,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,"1");a.checked?o<0&&t.$set(t.tableSettings,"enable_search",n.concat(["1"])):o>-1&&t.$set(t.tableSettings,"enable_search",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.tableSettings,"enable_search",i)}}}),t._v(" "+t._s(t.$t("Enable the visitor to filter or search the table."))+"\n ")]),t._v(" "),t.tableLibs[t.tableSettings.library].supports.sorting&&!t.tableSettings.enable_ajax?n("label",{attrs:{for:"column_sorting"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.column_sorting,expression:"tableSettings.column_sorting"}],attrs:{type:"checkbox",value:"1",id:"column_sorting"},domProps:{checked:Array.isArray(t.tableSettings.column_sorting)?t._i(t.tableSettings.column_sorting,"1")>-1:t.tableSettings.column_sorting},on:{change:function(e){var n=t.tableSettings.column_sorting,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,"1");a.checked?o<0&&t.$set(t.tableSettings,"column_sorting",n.concat(["1"])):o>-1&&t.$set(t.tableSettings,"column_sorting",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.tableSettings,"column_sorting",i)}}}),t._v(" "+t._s(t.$t("Enable sorting of the table by the visitor"))+"\n ")]):t._e(),t._v(" "),n("label",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.hide_header_row,expression:"tableSettings.hide_header_row"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.tableSettings.hide_header_row)?t._i(t.tableSettings.hide_header_row,null)>-1:t.tableSettings.hide_header_row},on:{change:function(e){var n=t.tableSettings.hide_header_row,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,null);a.checked?o<0&&t.$set(t.tableSettings,"hide_header_row",n.concat([null])):o>-1&&t.$set(t.tableSettings,"hide_header_row",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.tableSettings,"hide_header_row",i)}}}),t._v("\n Hide Header Row\n ")]),t._v(" "),n("label",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.hide_all_borders,expression:"tableSettings.hide_all_borders"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.tableSettings.hide_all_borders)?t._i(t.tableSettings.hide_all_borders,null)>-1:t.tableSettings.hide_all_borders},on:{change:function(e){var n=t.tableSettings.hide_all_borders,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,null);a.checked?o<0&&t.$set(t.tableSettings,"hide_all_borders",n.concat([null])):o>-1&&t.$set(t.tableSettings,"hide_all_borders",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.tableSettings,"hide_all_borders",i)}}}),t._v("\n Hide All Borders\n ")]),t._v(" "),n("label",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.hide_on_empty,expression:"tableSettings.hide_on_empty"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.tableSettings.hide_on_empty)?t._i(t.tableSettings.hide_on_empty,null)>-1:t.tableSettings.hide_on_empty},on:{change:function(e){var n=t.tableSettings.hide_on_empty,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,null);a.checked?o<0&&t.$set(t.tableSettings,"hide_on_empty",n.concat([null])):o>-1&&t.$set(t.tableSettings,"hide_on_empty",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.tableSettings,"hide_on_empty",i)}}}),t._v("\n Hide empty items on responsive breakdown "),n("span",{directives:[{name:"show",rawName:"v-show",value:!t.has_pro,expression:"!has_pro"}]},[t._v("(Pro Only)")]),t._v(" "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"If You enable this then the empty ietems will not show into responsive drawer / Stackable View"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("label",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.hide_responsive_labels,expression:"tableSettings.hide_responsive_labels"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.tableSettings.hide_responsive_labels)?t._i(t.tableSettings.hide_responsive_labels,null)>-1:t.tableSettings.hide_responsive_labels},on:{change:function(e){var n=t.tableSettings.hide_responsive_labels,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,null);a.checked?o<0&&t.$set(t.tableSettings,"hide_responsive_labels",n.concat([null])):o>-1&&t.$set(t.tableSettings,"hide_responsive_labels",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.tableSettings,"hide_responsive_labels",i)}}}),t._v("\n Hide Labels on responsive breakdown "),n("span",{directives:[{name:"show",rawName:"v-show",value:!t.has_pro,expression:"!has_pro"}]},[t._v("(Pro Only)")]),t._v(" "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"If You enable this then columns headings will not show into responsive drawer / Stackable View"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)]),t._v(" "),n("div",{staticClass:"form_group label-normalize"},[n("h3",{staticClass:"ninja_inner_title"},[t._v("\n Stackable Table Configuration\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"With stackable table, You can show your rows as list item. You can target by device width"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("div",{staticClass:"form_group"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.tableSettings.stackable,callback:function(e){t.$set(t.tableSettings,"stackable",e)},expression:"tableSettings.stackable"}},[t._v("\n Enable Stackable Table\n ")]),t._v(" "),"yes"==t.tableSettings.stackable?[n("h3",{staticClass:"ninja_inner_title",staticStyle:{"margin-top":"15px"}},[t._v("Target Devices\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Select the device by width in where the stackable tables will be enabled"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox-group",{model:{value:t.tableSettings.stacks_devices,callback:function(e){t.$set(t.tableSettings,"stacks_devices",e)},expression:"tableSettings.stacks_devices"}},[n("el-checkbox",{attrs:{label:"xs"}},[t._v("Mobile Device")]),t._v(" "),n("el-checkbox",{attrs:{label:"sm"}},[t._v("Tablet Device")]),t._v(" "),n("el-checkbox",{attrs:{label:"md"}},[t._v("Laptop")]),t._v(" "),n("el-checkbox",{attrs:{label:"lg"}},[t._v("Large Devices (imac)")])],1),t._v(" "),n("h3",{staticClass:"ninja_inner_title",staticStyle:{"margin-top":"15px"}},[t._v("Stacked Appearance\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"You can customize the appearance in stacked view of your table"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox-group",{model:{value:t.tableSettings.stacks_appearances,callback:function(e){t.$set(t.tableSettings,"stacks_appearances",e)},expression:"tableSettings.stacks_appearances"}},[n("el-checkbox",{attrs:{label:"hide_stacked_th"}},[t._v("Hide column headings")]),t._v(" "),n("el-checkbox",{attrs:{label:"ninja_stacked_no_cell_border"}},[t._v("Hide internal borders\n ")])],1)]:t._e()],2)])]),t._v(" "),n("el-tab-pane",{attrs:{label:"Table Colors",name:"color_customization"}},[n("div",{staticClass:"form_group"},[n("label",[t._v("Select Color Scheme")]),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.tableSettings.table_color_type,callback:function(e){t.$set(t.tableSettings,"table_color_type",e)},expression:"tableSettings.table_color_type"}},[n("el-radio-button",{attrs:{label:"pre_defined_color"}},[t._v("Pre Defined Scheme")]),t._v(" "),n("el-radio-button",{attrs:{label:"custom_color"}},[t._v("Custom Scheme")])],1)],1),t._v(" "),"pre_defined_color"==t.tableSettings.table_color_type?n("div",{staticClass:"form_group"},[n("select",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.table_color,expression:"tableSettings.table_color"}],staticClass:"form_control",on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.tableSettings,"table_color",e.target.multiple?n:n[0])}}},t._l(t.colors,function(e,a){return n("option",{key:a,domProps:{value:a}},[t._v(t._s(e)+"\n ")])}))]):n("div",{staticClass:"form_group ninja_color_customization"},[n("h3",{staticClass:"ninja_inner_title"},[t._v("Search Bar Colors")]),t._v(" "),n("div",{staticClass:"ninja_color_blocks"},[n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Background"},model:{value:t.tableSettings.table_search_color_primary,callback:function(e){t.$set(t.tableSettings,"table_search_color_primary",e)},expression:"tableSettings.table_search_color_primary"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Text"},model:{value:t.tableSettings.table_search_color_secondary,callback:function(e){t.$set(t.tableSettings,"table_search_color_secondary",e)},expression:"tableSettings.table_search_color_secondary"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Border"},model:{value:t.tableSettings.table_search_color_border,callback:function(e){t.$set(t.tableSettings,"table_search_color_border",e)},expression:"tableSettings.table_search_color_border"}})],1)]),t._v(" "),n("h3",{staticClass:"ninja_inner_title"},[t._v(t._s(t.$t("Table Header Colors")))]),t._v(" "),n("div",{staticClass:"ninja_color_blocks"},[n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Background"},model:{value:t.tableSettings.table_header_color_primary,callback:function(e){t.$set(t.tableSettings,"table_header_color_primary",e)},expression:"tableSettings.table_header_color_primary"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Text"},model:{value:t.tableSettings.table_color_header_secondary,callback:function(e){t.$set(t.tableSettings,"table_color_header_secondary",e)},expression:"tableSettings.table_color_header_secondary"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Border"},model:{value:t.tableSettings.table_color_header_border,callback:function(e){t.$set(t.tableSettings,"table_color_header_border",e)},expression:"tableSettings.table_color_header_border"}})],1)]),t._v(" "),n("h3",{staticClass:"ninja_inner_title"},[t._v(t._s(t.$t("Table Body Colors")))]),t._v(" "),n("div",{staticClass:"ninja_color_blocks"},[n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Background"},model:{value:t.tableSettings.table_color_primary,callback:function(e){t.$set(t.tableSettings,"table_color_primary",e)},expression:"tableSettings.table_color_primary"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Text"},model:{value:t.tableSettings.table_color_secondary,callback:function(e){t.$set(t.tableSettings,"table_color_secondary",e)},expression:"tableSettings.table_color_secondary"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Border"},model:{value:t.tableSettings.table_color_border,callback:function(e){t.$set(t.tableSettings,"table_color_border",e)},expression:"tableSettings.table_color_border"}})],1)]),t._v(" "),n("div",{staticClass:"ninja_switch_wrapper"},[n("el-switch",{attrs:{"inactive-color":"gray","active-text":"Use Alternate Color Schema for Table Rows","active-value":"yes","inactive-value":"no"},model:{value:t.tableSettings.alternate_color_status,callback:function(e){t.$set(t.tableSettings,"alternate_color_status",e)},expression:"tableSettings.alternate_color_status"}})],1),t._v(" "),"yes"==t.tableSettings.alternate_color_status?n("div",{staticClass:"ninja_alternate_colors"},[n("h3",{staticClass:"ninja_inner_title"},[t._v(t._s(t.$t("Odd Row Colors")))]),t._v(" "),n("div",{staticClass:"ninja_color_blocks"},[n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Background"},model:{value:t.tableSettings.table_alt_2_color_primary,callback:function(e){t.$set(t.tableSettings,"table_alt_2_color_primary",e)},expression:"tableSettings.table_alt_2_color_primary"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Text"},model:{value:t.tableSettings.table_alt_2_color_secondary,callback:function(e){t.$set(t.tableSettings,"table_alt_2_color_secondary",e)},expression:"tableSettings.table_alt_2_color_secondary"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Hover Background"},model:{value:t.tableSettings.table_alt_2_color_hover,callback:function(e){t.$set(t.tableSettings,"table_alt_2_color_hover",e)},expression:"tableSettings.table_alt_2_color_hover"}})],1)]),t._v(" "),n("h3",{staticClass:"ninja_inner_title"},[t._v(t._s(t.$t("Even Row Colors")))]),t._v(" "),n("div",{staticClass:"ninja_color_blocks"},[n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Background"},model:{value:t.tableSettings.table_alt_color_primary,callback:function(e){t.$set(t.tableSettings,"table_alt_color_primary",e)},expression:"tableSettings.table_alt_color_primary"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Text"},model:{value:t.tableSettings.table_alt_color_secondary,callback:function(e){t.$set(t.tableSettings,"table_alt_color_secondary",e)},expression:"tableSettings.table_alt_color_secondary"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Hover Background"},model:{value:t.tableSettings.table_alt_color_hover,callback:function(e){t.$set(t.tableSettings,"table_alt_color_hover",e)},expression:"tableSettings.table_alt_color_hover"}})],1)])]):t._e(),t._v(" "),n("h3",{staticClass:"ninja_inner_title"},[t._v(t._s(t.$t("Footer Colors")))]),t._v(" "),n("div",{staticClass:"ninja_color_blocks"},[n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Background"},model:{value:t.tableSettings.table_footer_bg,callback:function(e){t.$set(t.tableSettings,"table_footer_bg",e)},expression:"tableSettings.table_footer_bg"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Active"},model:{value:t.tableSettings.table_footer_active,callback:function(e){t.$set(t.tableSettings,"table_footer_active",e)},expression:"tableSettings.table_footer_active"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{label:"Border"},model:{value:t.tableSettings.table_footer_border,callback:function(e){t.$set(t.tableSettings,"table_footer_border",e)},expression:"tableSettings.table_footer_border"}})],1)])])]),t._v(" "),n("el-tab-pane",{attrs:{label:"Other",name:"other_settings"}},[n("div",{staticClass:"ninja_switch_wrapper"},[n("el-switch",{attrs:{"inactive-color":"gray","active-text":"Hide Pagination (Show all data at once)","active-value":"1","inactive-value":"0"},model:{value:t.tableSettings.show_all,callback:function(e){t.$set(t.tableSettings,"show_all",e)},expression:"tableSettings.show_all"}})],1),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:0==t.tableSettings.show_all,expression:"tableSettings.show_all == 0"}],staticClass:"form_group"},[n("div",{staticClass:"form_group"},[n("label",{attrs:{for:"items_per_page"}},[t._v(t._s(t.$t("Pagination Items Per Page")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.perPage,expression:"tableSettings.perPage"}],staticClass:"form_control",attrs:{id:"items_per_page",type:"number",disabled:1==t.tableSettings.show_all||"1"==t.tableSettings.show_all},domProps:{value:t.tableSettings.perPage},on:{input:function(e){e.target.composing||t.$set(t.tableSettings,"perPage",e.target.value)}}})]),t._v(" "),n("label",[t._v(t._s(t.$t("Pagination Position")))]),t._v(" "),n("el-radio-group",{attrs:{disabled:1==t.tableSettings.show_all||"1"==t.tableSettings.show_all,size:"mini"},model:{value:t.tableSettings.pagination_position,callback:function(e){t.$set(t.tableSettings,"pagination_position",e)},expression:"tableSettings.pagination_position"}},[n("el-radio-button",{attrs:{label:"left"}},[t._v("Left")]),t._v(" "),n("el-radio-button",{attrs:{label:"center"}},[t._v("Center")]),t._v(" "),n("el-radio-button",{attrs:{label:"right"}},[t._v("Right")])],1),t._v(" "),n("label",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.paginate_to_top,expression:"tableSettings.paginate_to_top"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.tableSettings.paginate_to_top)?t._i(t.tableSettings.paginate_to_top,null)>-1:t.tableSettings.paginate_to_top},on:{change:function(e){var n=t.tableSettings.paginate_to_top,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,null);a.checked?o<0&&t.$set(t.tableSettings,"paginate_to_top",n.concat([null])):o>-1&&t.$set(t.tableSettings,"paginate_to_top",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.tableSettings,"paginate_to_top",i)}}}),t._v("\n Scroll to table top for pagination change "),n("span",{directives:[{name:"show",rawName:"v-show",value:!t.has_pro,expression:"!has_pro"}]},[t._v("(Pro Only)")]),t._v(" "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"If you enable this then on pagination change, the table will be scrolled to top"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("label",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.show_pager,expression:"tableSettings.show_pager"}],attrs:{disabled:!t.has_pro,type:"checkbox"},domProps:{checked:Array.isArray(t.tableSettings.show_pager)?t._i(t.tableSettings.show_pager,null)>-1:t.tableSettings.show_pager},on:{change:function(e){var n=t.tableSettings.show_pager,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,null);a.checked?o<0&&t.$set(t.tableSettings,"show_pager",n.concat([null])):o>-1&&t.$set(t.tableSettings,"show_pager",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.tableSettings,"show_pager",i)}}}),t._v("\n Show Page sizes change option "),n("span",{directives:[{name:"show",rawName:"v-show",value:!t.has_pro,expression:"!has_pro"}]},[t._v("(Pro Only)")]),t._v(" "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"If you enable this then Users can change the items per page on frontend"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),t.tableSettings.show_pager?n("div",{staticClass:"form_group"},[n("label",[t._v(t._s(t.$t("Page Sizes (Number as Comma Separated)")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.paze_sizes,expression:"tableSettings.paze_sizes"}],staticClass:"form_control",attrs:{type:"text",placeholder:"Default: 10,20,50,100"},domProps:{value:t.tableSettings.paze_sizes},on:{input:function(e){e.target.composing||t.$set(t.tableSettings,"paze_sizes",e.target.value)}}})]):t._e()],1),t._v(" "),n("div",{staticClass:"form_group"},[n("label",[t._v(t._s(t.$t("Search Bar Position")))]),t._v(" "),n("el-radio-group",{attrs:{disabled:!t.has_pro,size:"mini"},model:{value:t.tableSettings.search_position,callback:function(e){t.$set(t.tableSettings,"search_position",e)},expression:"tableSettings.search_position"}},[n("el-radio-button",{attrs:{label:"left"}},[t._v("Left")]),t._v(" "),n("el-radio-button",{attrs:{label:"center"}},[t._v("Center")]),t._v(" "),n("el-radio-button",{attrs:{label:"right"}},[t._v("Right")]),t._v(" "),n("el-radio-button",{attrs:{label:""}},[t._v("Default")])],1),t._v(" "),n("label",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.nt_search_full_width,expression:"tableSettings.nt_search_full_width"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.tableSettings.nt_search_full_width)?t._i(t.tableSettings.nt_search_full_width,null)>-1:t.tableSettings.nt_search_full_width},on:{change:function(e){var n=t.tableSettings.nt_search_full_width,a=e.target,i=!!a.checked;if(Array.isArray(n)){var o=t._i(n,null);a.checked?o<0&&t.$set(t.tableSettings,"nt_search_full_width",n.concat([null])):o>-1&&t.$set(t.tableSettings,"nt_search_full_width",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.tableSettings,"nt_search_full_width",i)}}}),t._v("\n Make search input as full width "),n("span",{directives:[{name:"show",rawName:"v-show",value:!t.has_pro,expression:"!has_pro"}]},[t._v("(Pro Only)")]),t._v(" "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"If You enable this, Then the search input will take all the available space (100% width)"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)],1),t._v(" "),n("div",{staticClass:"form_group"},[n("label",[t._v("Select Sorting Method")]),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.tableSettings.sorting_type,callback:function(e){t.$set(t.tableSettings,"sorting_type",e)},expression:"tableSettings.sorting_type"}},[n("el-radio-button",{attrs:{disabled:!t.config.table.isCreatedSortable,label:"by_created_at"}},[t._v("By\n Created at\n ")]),t._v(" "),n("el-radio-button",{attrs:{label:"by_column"}},[t._v("By Column")]),t._v(" "),n("el-radio-button",{attrs:{disabled:!t.config.table.isSortable,label:"manual_sort"}},[t._v("Manual Sort\n ")])],1),t._v(" "),"by_created_at"==t.tableSettings.sorting_type?n("div",{},[n("span",[t._v(t._s(t.$t("Sort Type"))+"\n "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.default_sorting,expression:"tableSettings.default_sorting"}],on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.tableSettings,"default_sorting",e.target.multiple?n:n[0])}}},[n("option",{attrs:{value:"new_first"}},[t._v(t._s(t.$t("Show New Items First")))]),t._v(" "),n("option",{attrs:{value:"old_first"}},[t._v(t._s(t.$t("Show Old Items First")))])])])]):"by_column"==t.tableSettings.sorting_type?n("div",[n("label",[t._v(t._s(t.$t("Select Column"))+"\n "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.sorting_column,expression:"tableSettings.sorting_column"}],on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.tableSettings,"sorting_column",e.target.multiple?n:n[0])}}},t._l(t.config.columns,function(e){return n("option",{key:e.key,domProps:{value:e.key}},[t._v("\n "+t._s(e.name)+"\n ")])}))]),t._v(" "),n("label",[t._v(t._s(t.$t("Sort Type"))+"\n "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.sorting_column_by,expression:"tableSettings.sorting_column_by"}],on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.tableSettings,"sorting_column_by",e.target.multiple?n:n[0])}}},[n("option",{attrs:{value:"ASC"}},[t._v("Ascending Way")]),t._v(" "),n("option",{attrs:{value:"DESC"}},[t._v("Descending Way")])])])]):"manual_sort"==t.tableSettings.sorting_type?n("div",[n("p",[t._v("You can sort the table data from "),n("b",[t._v("Table Rows")]),t._v(" Manually. Click Sort Manually\n checkbox to sort the data using drag and drop feature")])]):t._e(),t._v(" "),t.tableSettings.sorting_type?n("el-button",{attrs:{size:"mini"},on:{click:function(e){t.tableSettings.sorting_type=""}}},[t._v("reset\n ")]):t._e()],1),t._v(" "),n("div",{staticClass:"form_group"},[n("label",[t._v(t._s(t.$t("Row Details (Responsive drawer)"))+" "),n("span",{directives:[{name:"show",rawName:"v-show",value:!t.has_pro,expression:"!has_pro"}]},[t._v("(PRO)")])]),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.tableSettings.expand_type,callback:function(e){t.$set(t.tableSettings,"expand_type",e)},expression:"tableSettings.expand_type"}},[n("el-radio-button",{attrs:{label:"default"}},[t._v("\n Default\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Show All the responsive columns data into the responsive drawer"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-button",{attrs:{label:"expandFirst"}},[t._v("\n Expand First\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"This will automatically expand the first row of the table when displayed on a device that\n hides any columns."}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-button",{attrs:{label:"expandAll"}},[t._v("\n Expand All\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"This will automatically expand all rows of the table when displayed on a device that hides\n any columns."}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)],1)],1),t._v(" "),n("div",{staticClass:"form_group"},[n("label",[t._v(t._s(t.$t("Toggle Position")))]),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.tableSettings.togglePosition,callback:function(e){t.$set(t.tableSettings,"togglePosition",e)},expression:"tableSettings.togglePosition"}},[n("el-radio-button",{attrs:{label:"first"}},[t._v("\n First Column\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"If you use responsive breakdown then the '+' icon will show at the first visible column"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-button",{attrs:{label:"last"}},[t._v("\n Last Column\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"If you use responsive breakdown then the '+' icon will show at the last visible column"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)],1)],1),t._v(" "),n("div",{staticClass:"form_group"},[n("label",{attrs:{for:"extra_css_class"}},[t._v(t._s(t.$t("Extra CSS Class for the table")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.extra_css_class,expression:"tableSettings.extra_css_class"}],staticClass:"form_control",attrs:{id:"extra_css_class",type:"text"},domProps:{value:t.tableSettings.extra_css_class},on:{input:function(e){e.target.composing||t.$set(t.tableSettings,"extra_css_class",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"form_group"},[n("label",[t._v(t._s(t.$t("Sticky Header (beta)"))+" "),t.has_pro?t._e():n("span",[t._v("(Pro)")])]),t._v(" "),n("el-checkbox",{attrs:{disabled:!t.has_pro,"true-label":"yes","false-label":"no"},model:{value:t.tableSettings.sticky_header,callback:function(e){t.$set(t.tableSettings,"sticky_header",e)},expression:"tableSettings.sticky_header"}},[t._v("Enable Sticky header for table\n ")]),t._v(" "),"yes"==t.tableSettings.sticky_header?[n("label",{staticStyle:{"margin-top":"10px"}},[t._v("Sticky Top Offset\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"You can set an offset value for the sticky table header."}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.sticky_header_offset,expression:"tableSettings.sticky_header_offset"}],staticClass:"form_control",attrs:{placeholder:"positive or negative number",type:"text"},domProps:{value:t.tableSettings.sticky_header_offset},on:{input:function(e){e.target.composing||t.$set(t.tableSettings,"sticky_header_offset",e.target.value)}}}),t._v(" "),n("small",[t._v("Please give positive/negative number or you can provide jquery element object\n ")]),t._v(" "),n("el-checkbox",{attrs:{disabled:!t.has_pro,"true-label":"yes","false-label":"no"},model:{value:t.tableSettings.disable_sticky_on_mobile,callback:function(e){t.$set(t.tableSettings,"disable_sticky_on_mobile",e)},expression:"tableSettings.disable_sticky_on_mobile"}},[t._v("Disable Sticky header for mobile devices\n ")])]:t._e()],2)])],1),t._v(" "),t.design_tips.length?n("div",{staticClass:"ninja_design_tips"},[n("ul",{staticClass:"ninja_design_tips_lists"},t._l(t.design_tips,function(e){return n("li",[n("i",{staticClass:"el-icon-warning"}),t._v(" "),n("span",{domProps:{innerHTML:t._s(e)}})])}))]):t._e(),t._v(" "),t.has_pro?t._e():n("div",{staticClass:"upgrade_box"},[n("a",{staticClass:"el-button el-button--danger el-button--small",attrs:{target:"_blank",href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade_studio"}},[n("i",{staticClass:"dashicons dashicons-shield"}),t._v(" "+t._s(t.$t("Upgrade To Pro to unlock advanced features"))+"\n ")])])],1)]),t._v(" "),n("sortable-upgrade-notice",{attrs:{show:t.sortableUpgradeNotice},on:{close:function(e){t.sortableUpgradeNotice=!1}}})],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",[e("b",[this._v("Note: ")]),this._v(" For preview purpose, you are seeing up to 25 latest rows here and and per page 10\n items if you enable paginate. Also note that, The table style may differ at the frontend as your\n theme may overwrite few css elements.\n ")])}]}},function(t,e,n){var a=n(0)(n(598),n(599),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"frontend-editing-settings",props:["config"],data:function(){return{fetching:!1,saving:!1,tableId:this.config.table.ID,columns:this.config.columns,settings:{allow_frontend:"no",user_roles_editing:[],user_roles_deleting:[]},editing_user_roles:{},user_roles:{},editing_items:{},required_items:{},default_values:{},appearance_settings:{},hasPro:!!window.ninja_table_admin.hasPro,isActivated:!!window.ninja_table_admin.activated_features.ninja_table_front_editor}},methods:{getEditSettings:function(){var t=this;this.fetching=!0,this.$get({action:"ninja_table_pro_get_editing_settings",table_id:this.tableId}).then(function(e){t.settings=e.data.settings,t.user_roles=e.data.user_roles,t.editing_user_roles=e.data.editing_user_roles,t.editing_items=e.data.editor_pref.editing_items,t.required_items=e.data.editor_pref.required_items,t.default_values=e.data.editor_pref.default_values,t.appearance_settings=e.data.editor_pref.appearance_settings}).fail(function(t){}).always(function(){t.fetching=!1})},updateSettings:function(){var t=this;this.saving=!0;var e={action:"ninja_table_pro_update_editing_settings",table_id:this.tableId,settings:this.settings,editing_items:this.editing_items,required_items:this.required_items,default_values:this.default_values,appearance_settings:this.appearance_settings};this.$post(e).then(function(e){t.$message({type:"success",message:e.data.message})}).fail(function(e){e.responseJSON&&e.responseJSON.data?t.$message({type:"error",message:e.responseJSON.data.message}):t.$message({type:"error",message:"Something is wrong! Please try again"})}).always(function(){t.saving=!1})}},mounted:function(){this.getEditSettings()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"table_editing"},[t.hasPro?t.isActivated?t.config.table.isEditable?n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}],staticClass:"el-main-editing"},[n("div",{staticClass:"ninja_header_editing"},[n("h2",[t._v("\n Frontend Editing Settings\n ")]),t._v(" "),n("div",{staticClass:"heading_actions"},[n("el-button",{attrs:{size:"small",type:"success"},on:{click:function(e){t.updateSettings()}}},[t._v("Update Settings")])],1)]),t._v(" "),n("div",{staticClass:"editing_body"},[n("div",{staticClass:"editing_sub_section"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.settings.allow_frontend,callback:function(e){t.$set(t.settings,"allow_frontend",e)},expression:"settings.allow_frontend"}},[t._v("\n Enable Frontend editing\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"Allow editing table from the frontend"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)],1),t._v(" "),"yes"==t.settings.allow_frontend?[n("div",{staticClass:"editing_sub_section"},[t._m(2),t._v(" "),n("div",{staticClass:"form_row_full"},[n("div",{staticClass:"form_group form_row_half"},[n("label",[t._v("\n User Roles for Edit/Add Table Rows\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"Your selected user roles can edit this table rows from frontend. Please note, Adminstrators will have this access by default"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox-group",{model:{value:t.settings.user_roles_editing,callback:function(e){t.$set(t.settings,"user_roles_editing",e)},expression:"settings.user_roles_editing"}},t._l(t.editing_user_roles,function(e,a){return n("el-checkbox",{key:a,attrs:{label:a}},[t._v("\n "+t._s(e)+"\n ")])}))],1),t._v(" "),n("div",{staticClass:"form_group form_row_half"},[n("label",[t._v("\n User Roles for Deleting Table Rows\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"Your selected user roles can delete this table rows from frontend. Please note, Adminstrators will have this access by default"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox-group",{model:{value:t.settings.user_roles_deleting,callback:function(e){t.$set(t.settings,"user_roles_deleting",e)},expression:"settings.user_roles_deleting"}},t._l(t.user_roles,function(e,a){return n("el-checkbox",{key:a,attrs:{label:a}},[t._v("\n "+t._s(e)+"\n ")])}))],1)]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v("\n Own Data Only\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"If this is enabled, users will see and edit only the rows that were created by them"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("div",{staticClass:"form-group"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.settings.own_data_only,callback:function(e){t.$set(t.settings,"own_data_only",e)},expression:"settings.own_data_only"}},[t._v("\n Users can see and edit/delete only own data\n ")])],1),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:"yes"==t.settings.own_data_only,expression:"settings.own_data_only == 'yes'"}],staticStyle:{"line-height":"120%"}},[t._v("\n Your Selected user roles only see their own data and manage those data. Other user roles can not see any data. If you want to show all the data without editing tools to all users, you can use the following shortcode:\n "),n("br"),n("pre",[n("b",[t._v('[ninja_tables disable_edit="yes" id="'+t._s(t.tableId)+'"]')])])])])]),t._v(" "),n("div",{staticClass:"editing_sub_section"},[t._m(3),t._v(" "),n("div",{staticClass:"ninja_editing_pref"},[n("table",{staticClass:"wp-list-table ninja_editing_table widefat fixed striped"},[n("thead",[n("tr",[n("th",[t._v("Column Name")]),t._v(" "),n("th",[t._v("\n Editable?\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"Select the columns that you need to be editable from frontend"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("th",[t._v("\n Required?\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"Select the columns that you need to be required from frontend"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("th",[t._v("\n Default Value\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"If you would like to have some values pre-defined in editors (i.e. default editor values) please enter these here."}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)])]),t._v(" "),n("tbody",t._l(t.columns,function(e){return n("tr",{key:e.key},[n("th",[t._v(t._s(e.name))]),t._v(" "),n("td",[n("el-switch",{attrs:{"active-value":"yes","inactive-value":"no"},model:{value:t.editing_items[e.key],callback:function(n){t.$set(t.editing_items,e.key,n)},expression:"editing_items[column.key]"}})],1),t._v(" "),n("td",[n("el-switch",{attrs:{"active-value":"yes","inactive-value":"no"},model:{value:t.required_items[e.key],callback:function(n){t.$set(t.required_items,e.key,n)},expression:"required_items[column.key]"}})],1),t._v(" "),n("td",[n("el-input",{attrs:{placeholder:"Default Value for "+e.name,size:"mini"},model:{value:t.default_values[e.key],callback:function(n){t.$set(t.default_values,e.key,n)},expression:"default_values[column.key]"}})],1)])}))])])]),t._v(" "),n("div",{staticClass:"editing_sub_section"},[t._m(4),t._v(" "),n("div",{staticClass:"form-group"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.appearance_settings.alwaysShow,callback:function(e){t.$set(t.appearance_settings,"alwaysShow",e)},expression:"appearance_settings.alwaysShow"}},[t._v("\n Always Show Edit Icons\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"If you enable this then, Selected user roles can always see the edit buttons, Otherwise they will see a button to initialize editing"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)],1),t._v(" "),n("div",{staticClass:"form_row_full"},[n("div",{staticClass:"form_group form_row_half"},[n("label",[t._v("\n Add Row Button Label\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"Button label for Add New Data Default: 'New row'"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"mini",placeholder:"eg: New row"},model:{value:t.appearance_settings.addText,callback:function(e){t.$set(t.appearance_settings,"addText",e)},expression:"appearance_settings.addText"}})],1),t._v(" "),n("div",{staticClass:"form_group form_row_half"},[n("label",[t._v("\n Edit Rows Button Label\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"Button label for Edit Rows Default: 'Edit rows'"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"mini",placeholder:"eg: Edit rows"},model:{value:t.appearance_settings.showText,callback:function(e){t.$set(t.appearance_settings,"showText",e)},expression:"appearance_settings.showText"}})],1)]),t._v(" "),n("div",{staticClass:"form_row_full"},[n("div",{staticClass:"form_group form_row_half"},[n("label",[t._v("\n Add Popup Heading\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"Title for popup heading for adding new data"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"mini",placeholder:"eg: Add Data"},model:{value:t.appearance_settings.addModalLabel,callback:function(e){t.$set(t.appearance_settings,"addModalLabel",e)},expression:"appearance_settings.addModalLabel"}})],1),t._v(" "),n("div",{staticClass:"form_group form_row_half"},[n("label",[t._v("\n Edit Popup Heading\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"Title for popup heading for editing existing data"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"mini",placeholder:"eg: Edit Data"},model:{value:t.appearance_settings.editModalLabel,callback:function(e){t.$set(t.appearance_settings,"editModalLabel",e)},expression:"appearance_settings.editModalLabel"}})],1)]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v("\n Editor Icon Position\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"Edit icon postion. If you select Right then it will append the edit icons at the last column otherwise at the first column"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("br"),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.appearance_settings.position,callback:function(e){t.$set(t.appearance_settings,"position",e)},expression:"appearance_settings.position"}},[n("el-radio-button",{attrs:{label:"left"}},[t._v("Left")]),t._v(" "),n("el-radio-button",{attrs:{label:"right"}},[t._v("Right")])],1)],1)])]:t._e(),t._v(" "),n("div",{staticClass:"form_group",staticStyle:{"text-align":"right"}},[n("el-button",{attrs:{size:"small",type:"success"},on:{click:function(e){t.updateSettings()}}},[t._v("Update Settings")])],1)],2)]):n("div",[n("h3",[t._v("This table can not be editable on frontend")]),t._v(" "),n("p",[t._v('Only "Default" data source tables can be editable')])]):n("div",[t._m(1)]):n("div",[t._m(0)])])},staticRenderFns:[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"el-main-editing"},[n("div",{staticClass:"ninja_header_editing"},[n("h2",{},[t._v("\n Frontend Editing Settings\n ")])]),t._v(" "),n("div",{staticClass:"editing_body text-center"},[n("h3",[t._v("Frontend Editing is a pro only features. Please purchase "),n("b",[t._v('"Ninja Tables Pro"')]),t._v(" to use this feature")]),t._v(" "),n("p",[t._v("Using this module, You can let your frontend users to add/edit/delete records based on user role. Also, You can separate the records by user submission")]),t._v(" "),n("a",{staticClass:"el-button el-button--danger",attrs:{target:"_blank",href:"https://wpmanageninja.com/ninja-tables/ninja-tables-pro-pricing/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=frontend-editing&utm_term=upgrade"}},[t._v("Purchase Now")])])])},function(){var t=this.$createElement,e=this._self._c||t;return e("h3",[this._v("\n Custom Filters is introduced in version 3.2.0. Please update "),e("b",[this._v("Ninja tables pro")]),this._v(" plugin to use\n this feature\n ")])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_section_block_header"},[e("h3",[this._v("Data Editing Permissions")]),this._v(" "),e("p",[this._v("\n Please specific user roles to be able to edit/delete this table. Only selected user\n roles\n can edit/delete the data.\n ")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_section_block_header"},[e("h3",[this._v("Editing Column Options")]),this._v(" "),e("p",[this._v("\n Please Specify which columns can be editable from front-end and also, You can specify\n which\n columns will be required\n ")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_section_block_header"},[e("h3",[this._v("Appearance Settings")]),this._v(" "),e("p",[this._v("\n You can set the Editing Component Labels and Appearances\n ")])])}]}},function(t,e,n){var a=n(0)(n(603),n(604),!1,function(t){n(601)},null,null);t.exports=a.exports},function(t,e,n){var a=n(602);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("3cd470e0",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".el-message{z-index:999999!important;top:5px}.pro_feature_dialog .el-dialog__wrapper{z-index:10000!important}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"TableApp",data:function(){return{addVisible:!1,integrity:window.ninja_table_admin.nt_integrity,admin_notices:window.ninja_table_admin.admin_notices}},mounted:function(){var t=this;window.ninjaTableBus.$on("show_pro_popup",function(e){t.addVisible=!0})}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"wrap"},[t._l(t.admin_notices,function(e,a){return n("el-alert",{key:a,attrs:{type:e.type,closable:e.closable,effect:"dark"}},[n("div",{domProps:{innerHTML:t._s(e.message)}})])}),t._v(" "),n("router-view"),t._v(" "),n("div",{staticClass:"pro_feature_dialog"},[n("el-dialog",{attrs:{title:"NinjaTable Pro Features",visible:t.addVisible},on:{"update:visible":function(e){t.addVisible=e}}},[n("div",{staticClass:"add_content"},[n("ul",{staticClass:"list_features"},[n("li",[t._v("Use Unlimited Colors in Your Tables")]),t._v(" "),n("li",[t._v("Add Media to Your Table Cells")]),t._v(" "),n("li",[t._v("Drag and Drop Table Data Sorting")]),t._v(" "),n("li",[t._v("Use Advanced Date Sorting")]),t._v(" "),n("li",[t._v("Colspan/Cell Merging Feature")]),t._v(" "),n("li",[t._v("Create Custom Filter UI in Table")]),t._v(" "),n("li",[t._v("Use Shortcode in your table cell")]),t._v(" "),n("li",[t._v("Use Advanced Data Filtering")]),t._v(" "),n("li",[t._v("Use Advanced Customization Features")]),t._v(" "),n("li",[t._v("Get VIP Support for any Issue")]),t._v(" "),n("li",[t._v("Incremental New Premium Features")]),t._v(" "),n("li",[t._v("And Many More feature")])])]),t._v(" "),n("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[n("a",{staticClass:"buy_now_button el-button el-button--danger el-button--mini",attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade"}},[t._v("Buy Pro Now")])])])],1),t._v(" "),"nope"==t.integrity?n("div",{staticStyle:{"margin-top":"90px",color:"rgb(236, 62, 62)","font-size":"16px","margin-bottom":"30px"}},[n("b",[t._v("Notice:")]),t._v(" Ninja Tables Pro integrity is not valid. You may downloaded from other sources. Please download ninja tables pro from "),n("a",{attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?integrity=1"}},[t._v("WPManageNinja")]),t._v(" to keep it upto date.\n ")]):t._e()],2)},staticRenderFns:[]}}]);
1
+ !function(t){var e={};function n(a){if(e[a])return e[a].exports;var o=e[a]={i:a,l:!1,exports:{}};return t[a].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=t,n.c=e,n.d=function(t,e,a){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:a})},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/",n(n.s=217)}([function(t,e){t.exports=function(t,e,n,a,o,i){var s,l=t=t||{},r=typeof t.default;"object"!==r&&"function"!==r||(s=t,l=t.default);var c,u="function"==typeof l?l.options:l;if(e&&(u.render=e.render,u.staticRenderFns=e.staticRenderFns,u._compiled=!0),n&&(u.functional=!0),o&&(u._scopeId=o),i?(c=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),a&&a.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(i)},u._ssrRegister=c):a&&(c=a),c){var d=u.functional,_=d?u.render:u.beforeCreate;d?(u._injectStyles=c,u.render=function(t,e){return c.call(e),_(t,e)}):u.beforeCreate=_?[].concat(_,c):[c]}return{esModule:s,exports:l,options:u}}},function(t,e){t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var n=function(t,e){var n=t[1]||"",a=t[3];if(!a)return n;if(e&&"function"==typeof btoa){var o=(s=a,"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(s))))+" */"),i=a.sources.map(function(t){return"/*# sourceURL="+a.sourceRoot+t+" */"});return[n].concat(i).concat([o]).join("\n")}var s;return[n].join("\n")}(e,t);return e[2]?"@media "+e[2]+"{"+n+"}":n}).join("")},e.i=function(t,n){"string"==typeof t&&(t=[[null,t,""]]);for(var a={},o=0;o<this.length;o++){var i=this[o][0];"number"==typeof i&&(a[i]=!0)}for(o=0;o<t.length;o++){var s=t[o];"number"==typeof s[0]&&a[s[0]]||(n&&!s[2]?s[2]=n:n&&(s[2]="("+s[2]+") and ("+n+")"),e.push(s))}},e}},function(t,e,n){var a="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!a)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o=n(222),i={},s=a&&(document.head||document.getElementsByTagName("head")[0]),l=null,r=0,c=!1,u=function(){},d=null,_="data-vue-ssr-id",p="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function f(t){for(var e=0;e<t.length;e++){var n=t[e],a=i[n.id];if(a){a.refs++;for(var o=0;o<a.parts.length;o++)a.parts[o](n.parts[o]);for(;o<n.parts.length;o++)a.parts.push(v(n.parts[o]));a.parts.length>n.parts.length&&(a.parts.length=n.parts.length)}else{var s=[];for(o=0;o<n.parts.length;o++)s.push(v(n.parts[o]));i[n.id]={id:n.id,refs:1,parts:s}}}}function m(){var t=document.createElement("style");return t.type="text/css",s.appendChild(t),t}function v(t){var e,n,a=document.querySelector("style["+_+'~="'+t.id+'"]');if(a){if(c)return u;a.parentNode.removeChild(a)}if(p){var o=r++;a=l||(l=m()),e=g.bind(null,a,o,!1),n=g.bind(null,a,o,!0)}else a=m(),e=function(t,e){var n=e.css,a=e.media,o=e.sourceMap;a&&t.setAttribute("media",a);d.ssrId&&t.setAttribute(_,e.id);o&&(n+="\n/*# sourceURL="+o.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+" */");if(t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}.bind(null,a),n=function(){a.parentNode.removeChild(a)};return e(t),function(a){if(a){if(a.css===t.css&&a.media===t.media&&a.sourceMap===t.sourceMap)return;e(t=a)}else n()}}t.exports=function(t,e,n,a){c=n,d=a||{};var s=o(t,e);return f(s),function(e){for(var n=[],a=0;a<s.length;a++){var l=s[a];(r=i[l.id]).refs--,n.push(r)}e?f(s=o(t,e)):s=[];for(a=0;a<n.length;a++){var r;if(0===(r=n[a]).refs){for(var c=0;c<r.parts.length;c++)r.parts[c]();delete i[r.id]}}}};var h,b=(h=[],function(t,e){return h[t]=e,h.filter(Boolean).join("\n")});function g(t,e,n,a){var o=n?"":a.css;if(t.styleSheet)t.styleSheet.cssText=b(e,o);else{var i=document.createTextNode(o),s=t.childNodes;s[e]&&t.removeChild(s[e]),s.length?t.insertBefore(i,s[e]):t.appendChild(i)}}},,function(t,e){var n=Array.isArray;t.exports=n},function(t,e,n){var a=n(38),o="object"==typeof self&&self&&self.Object===Object&&self,i=a||o||Function("return this")();t.exports=i},function(t,e){t.exports=function(t){return null!=t&&"object"==typeof t}},function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},,,function(t,e,n){var a=n(11),o=n(72),i=n(73),s="[object Null]",l="[object Undefined]",r=a?a.toStringTag:void 0;t.exports=function(t){return null==t?void 0===t?l:s:r&&r in Object(t)?o(t):i(t)}},function(t,e,n){var a=n(5).Symbol;t.exports=a},,,function(t,e,n){t.exports=n(71)},function(t,e,n){var a=n(350),o=n(353);t.exports=function(t,e){var n=o(t,e);return a(n)?n:void 0}},,,,,,,function(t,e){t.exports=function(t,e){for(var n=-1,a=null==t?0:t.length,o=Array(a);++n<a;)o[n]=e(t[n],n,t);return o}},function(t,e,n){var a=n(10),o=n(6),i="[object Symbol]";t.exports=function(t){return"symbol"==typeof t||o(t)&&a(t)==i}},function(t,e,n){var a=n(81);t.exports=function(t){return null==t?"":a(t)}},,,function(t,e,n){var a=n(0)(n(254),n(255),!1,function(t){n(252)},null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(271),n(272),!1,function(t){n(269)},"data-v-06fd6e1a",null);t.exports=a.exports},,,,,,,,,function(t,e,n){var a=n(284),o=n(119),i=n(39);t.exports=function(t){return i(t)?a(t):o(t)}},function(t,e,n){(function(e){var n="object"==typeof e&&e&&e.Object===Object&&e;t.exports=n}).call(e,n(7))},function(t,e,n){var a=n(120),o=n(74);t.exports=function(t){return null!=t&&o(t.length)&&!a(t)}},function(t,e){t.exports=function(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}},function(t,e){t.exports=function(t){return t}},function(t,e,n){var a=n(15)(Object,"create");t.exports=a},function(t,e,n){var a=n(358),o=n(359),i=n(360),s=n(361),l=n(362);function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var a=t[e];this.set(a[0],a[1])}}r.prototype.clear=a,r.prototype.delete=o,r.prototype.get=i,r.prototype.has=s,r.prototype.set=l,t.exports=r},function(t,e,n){var a=n(128);t.exports=function(t,e){for(var n=t.length;n--;)if(a(t[n][0],e))return n;return-1}},function(t,e,n){var a=n(364);t.exports=function(t,e){var n=t.__data__;return a(e)?n["string"==typeof e?"string":"hash"]:n.map}},function(t,e,n){var a=n(23),o=1/0;t.exports=function(t){if("string"==typeof t||a(t))return t;var e=t+"";return"0"==e&&1/t==-o?"-0":e}},function(t,e){t.exports=function(t){return function(e){return null==t?void 0:t[e]}}},function(t,e,n){var a=n(0)(n(488),n(505),!1,function(t){n(486)},null,null);t.exports=a.exports},function(t,e,n){"use strict";var a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=function(){function t(t,e){for(var n=0;n<e.length;n++){var a=e[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}return function(e,n,a){return n&&t(e.prototype,n),a&&t(e,a),e}}();var i=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),"object"==("undefined"==typeof formulaParser?"undefined":a(formulaParser))?(this._addFunctionNUMVAL(this.instance=new formulaParser.Parser),this._addFunctionDATEVAL(this.instance=new formulaParser.Parser)):this.instance=!1}return o(t,[{key:"parse",value:function(t){var e=this;if(!t||!this.instance)return t;var n=this.advancedParsablesShortcodes(t);if(n&&n.forEach(function(n){var a=n.replace("[f]","").replace("[/f]","");if(a){var o=e.instance.parse(a),i=o.result?o.result:"";t=t.replace(n,i)}}),this.isParsable(t)){var a=t.substr(1);if(a){var o=this.instance.parse(a);t=o.result?o.result:""}}return t}},{key:"isParsable",value:function(t){return"string"==typeof t&&0===t.indexOf("=")}},{key:"advancedParsablesShortcodes",value:function(t){if(-1==t.indexOf("[f]",t))return!1;var e=t.match(/\[f][\s\S]*?\[\/f]/g);return e||!1}},{key:"getSupportedFormulas",value:function(){var t=formulaParser.SUPPORTED_FORMULAS;return t.push("NUMVAL"),t.push("DATEVAL"),t}},{key:"getInstance",value:function(){return this.instance}},{key:"_addFunctionNUMVAL",value:function(t){t.setFunction("NUMVAL",function(t){var e=t[0]||"";if(!e)return e;e=e.toString().replace(/[^\d\.,]+/g,"");var n=t[1]||",";e=e.indexOf(n)>-1?e.split(n).join(""):e.split(",").join("");var a=t[2]||".";e.indexOf(a)>-1&&(e=e.split(a).join("."));var o=Number(e);return isNaN(o)?e:o})}},{key:"_addFunctionDATEVAL",value:function(t){t.setFunction("DATEVAL",function(t){var e=t[0]||"",n=t[1]||"";return e&&n?moment(e,n).unix():e})}}]),t}();e.a=new i},,,,,,,,,,,,,,,,,,,,,,function(t,e,n){var a=n(279),o=n(280),i=n(294),s=n(4);t.exports=function(t,e){return(s(t)?a:o)(t,i(e))}},function(t,e,n){var a=n(11),o=Object.prototype,i=o.hasOwnProperty,s=o.toString,l=a?a.toStringTag:void 0;t.exports=function(t){var e=i.call(t,l),n=t[l];try{t[l]=void 0;var a=!0}catch(t){}var o=s.call(t);return a&&(e?t[l]=n:delete t[l]),o}},function(t,e){var n=Object.prototype.toString;t.exports=function(t){return n.call(t)}},function(t,e){var n=9007199254740991;t.exports=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=n}},function(t,e,n){"use strict";n.d(e,"a",function(){return a});var a=function(){return{footable:{title:"Footable",description:"A responsive table plugin built on jQuery",supports:{ajax:!1,sorting:!0,search:!0},css_libs:{semantic_ui:{title:"Semantic UI",description:"Apply Semantic UI styles in the table",styles:[{key:"single line",title:"Single Line Cells",description:"A table can specify that its cell contents should remain on a single line, and not wrap."},{key:"fixed",title:"Fixed Layout",description:"A special faster form of table rendering that does not resize table cells based on content."},{key:"selectable",title:"Hover rows",description:"Enable a hover state on table rows"},{key:"celled",title:"Bordered table",description:"Borders on all sides of the table and cells"},{key:"hide_horizonal_borders",title:"Hide Horizontal Borders",description:"This will hide horizontal borders of table body rows"},{key:"hide_vertical_borders",title:"Hide Vertical Borders",description:"This will hide Vertical borders of table body rows"},{key:"striped",title:"Striped rows",description:"Add zebra-striping to any table row"},{key:"compact",title:"Compact Table",description:"Make tables more compact by cutting cell padding in half"},{key:"vertical_centered",title:"Vertically centered table cell contents",description:"Make cell contents vertically centered"}]},bootstrap4:{title:"Bootstrap 4",description:"Apply Twitter Bootstrap 4 styles in the table",styles:[{key:"table-striped",title:"Striped rows",description:"Add zebra-striping to any table row"},{key:"table-bordered",title:"Bordered table",description:"Borders on all sides of the table and cells"},{key:"hide_horizonal_borders",title:"Hide Horizontal Borders",description:"This will hide horizontal borders of table body rows"},{key:"hide_vertical_borders",title:"Hide Vertical Borders",description:"This will hide Vertical borders of table body rows"},{key:"table-hover",title:"Hover rows",description:"Enable a hover state on table rows"},{key:"table-sm",title:"Small table",description:"Make tables more compact by cutting cell padding in half"},{key:"vertical_centered",title:"Vertically centered table cell contents",description:"Make cell contents vertically centered"}]},bootstrap3:{title:"Bootstrap 3",description:"Apply Twitter Bootstrap 3 styles in the table",styles:[{key:"table-striped",title:"Striped rows",description:"Add zebra-striping to any table row"},{key:"table-bordered",title:"Bordered table",description:"Borders on all sides of the table and cells"},{key:"hide_horizonal_borders",title:"Hide Horizontal Borders",description:"This will hide horizontal borders of table body rows"},{key:"hide_vertical_borders",title:"Hide Vertical Borders",description:"This will hide Vertical borders of table body rows"},{key:"table-hover",title:"Hover rows",description:"Enable a hover state on table rows"},{key:"table-condensed",title:"Condensed table",description:"Make tables more compact by cutting cell padding in half"},{key:"vertical_centered",title:"Vertically centered table cell contents",description:"Make cell contents vertically centered"}]}},colors:{ninja_no_color_table:"Default",red:"Red",orange:"Orange",yellow:"Yellow",olive:"Olive",green:"Green",teal:"Teal",blue:"Blue",violet:"Violet",purple:"Purple",pink:"Pink",grey:"Grey",black:"Black"}}}}},function(t,e,n){var a=n(347),o=n(363),i=n(365),s=n(366),l=n(367);function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var a=t[e];this.set(a[0],a[1])}}r.prototype.clear=a,r.prototype.delete=o,r.prototype.get=i,r.prototype.has=s,r.prototype.set=l,t.exports=r},function(t,e,n){var a=n(15)(n(5),"Map");t.exports=a},function(t,e,n){var a=n(119),o=n(131),i=n(39),s=n(405),l=n(406),r="[object Map]",c="[object Set]";t.exports=function(t){if(null==t)return 0;if(i(t))return s(t)?l(t):t.length;var e=o(t);return e==r||e==c?t.size:a(t).length}},function(t,e,n){var a=n(140);t.exports=function(t,e,n){var o=null==t?void 0:a(t,e);return void 0===o?n:o}},function(t,e,n){var a=n(4),o=n(23),i=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,s=/^\w*$/;t.exports=function(t,e){if(a(t))return!1;var n=typeof t;return!("number"!=n&&"symbol"!=n&&"boolean"!=n&&null!=t&&!o(t))||s.test(t)||!i.test(t)||null!=e&&t in Object(e)}},function(t,e,n){var a=n(11),o=n(22),i=n(4),s=n(23),l=1/0,r=a?a.prototype:void 0,c=r?r.toString:void 0;t.exports=function t(e){if("string"==typeof e)return e;if(i(e))return o(e,t)+"";if(s(e))return c?c.call(e):"";var n=e+"";return"0"==n&&1/e==-l?"-0":n}},function(t,e,n){var a=n(0)(n(493),n(494),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";var a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};n(84).polyfill(),e.a=function t(e,n,o,i){var s,l=t,r="";function c(t,e){return t=t[(e=e.pop?e:e.split(".")).shift()]||"",0 in e?c(t,e):t}n=Array.isArray(n)?n:n?[n]:[],n=i?0 in n?[]:[1]:n;for(s=0;s<n.length;s++){var u,d="",_=0,p="object"==a(n[s])?n[s]:{};(p=Object.assign({},o,p))[""]={"":n[s]},e.replace(/([\s\S]*?)({{((\/)|(\^)|#)(.*?)}}|$)/g,function(t,e,n,o,i,s,f){_?d+=_&&!i||_>1?t:e:(r+=e.replace(/{{{(.*?)}}}|{{(!?)(&?)(>?)(.*?)}}/g,function(t,e,n,a,o,i){return e?c(p,e):a?c(p,i):o?l(c(p,i),p):n?"":new Option(c(p,i)).innerHTML}),u=s),i?--_||(f=c(p,f),/^f/.test(void 0===f?"undefined":a(f))?r+=f.call(p,d,function(t){return l(t,p)}):r+=l(d,f,p,u),d=""):++_})}return r}},function(t,e,n){"use strict";function a(t,e){if(void 0===t||null===t)throw new TypeError("Cannot convert first argument to object");for(var n=Object(t),a=1;a<arguments.length;a++){var o=arguments[a];if(void 0!==o&&null!==o)for(var i=Object.keys(Object(o)),s=0,l=i.length;s<l;s++){var r=i[s],c=Object.getOwnPropertyDescriptor(o,r);void 0!==c&&c.enumerable&&(n[r]=o[r])}}return n}t.exports={assign:a,polyfill:function(){Object.assign||Object.defineProperty(Object,"assign",{enumerable:!1,configurable:!0,writable:!0,value:a})}}},function(t,e,n){var a=n(24),o=n(86),i=/&(?:amp|lt|gt|quot|#39);/g,s=RegExp(i.source);t.exports=function(t){return(t=a(t))&&s.test(t)?t.replace(i,o):t}},function(t,e,n){var a=n(47)({"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"});t.exports=a},function(t,e,n){"use strict";var a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};function o(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}!function(){function e(t){function e(t){t.parentElement.removeChild(t)}function n(t,e,n){var a=0===n?t.children[0]:t.children[n-1].nextSibling;t.insertBefore(e,a)}function i(t,e){var n=this;this.$nextTick(function(){return n.$emit(t.toLowerCase(),e)})}var s=["Start","Add","Remove","Update","End"],l=["Choose","Sort","Filter","Clone"],r=["Move"].concat(s,l).map(function(t){return"on"+t}),c=null;return{name:"draggable",props:{options:Object,list:{type:Array,required:!1,default:null},value:{type:Array,required:!1,default:null},noTransitionOnDrag:{type:Boolean,default:!1},clone:{type:Function,default:function(t){return t}},element:{type:String,default:"div"},move:{type:Function,default:null},componentData:{type:Object,required:!1,default:null}},data:function(){return{transitionMode:!1,noneFunctionalComponentMode:!1,init:!1}},render:function(t){var e=this.$slots.default;if(e&&1===e.length){var n=e[0];n.componentOptions&&"transition-group"===n.componentOptions.tag&&(this.transitionMode=!0)}var a=e,i=this.$slots.footer;i&&(a=e?[].concat(o(e),o(i)):[].concat(o(i)));var s=null,l=function(t,e){s=function(t,e,n){return void 0==n?t:((t=null==t?{}:t)[e]=n,t)}(s,t,e)};if(l("attrs",this.$attrs),this.componentData){var r=this.componentData,c=r.on,u=r.props;l("on",c),l("props",u)}return t(this.element,s,a)},mounted:function(){var e=this;if(this.noneFunctionalComponentMode=this.element.toLowerCase()!==this.$el.nodeName.toLowerCase(),this.noneFunctionalComponentMode&&this.transitionMode)throw new Error("Transition-group inside component is not supported. Please alter element value or remove transition-group. Current element value: "+this.element);var n={};s.forEach(function(t){n["on"+t]=function(t){var e=this;return function(n){null!==e.realList&&e["onDrag"+t](n),i.call(e,t,n)}}.call(e,t)}),l.forEach(function(t){n["on"+t]=i.bind(e,t)});var o=a({},this.options,n,{onMove:function(t,n){return e.onDragMove(t,n)}});!("draggable"in o)&&(o.draggable=">*"),this._sortable=new t(this.rootContainer,o),this.computeIndexes()},beforeDestroy:function(){this._sortable.destroy()},computed:{rootContainer:function(){return this.transitionMode?this.$el.children[0]:this.$el},isCloning:function(){return!!this.options&&!!this.options.group&&"clone"===this.options.group.pull},realList:function(){return this.list?this.list:this.value}},watch:{options:{handler:function(t){for(var e in t)-1==r.indexOf(e)&&this._sortable.option(e,t[e])},deep:!0},realList:function(){this.computeIndexes()}},methods:{getChildrenNodes:function(){if(this.init||(this.noneFunctionalComponentMode=this.noneFunctionalComponentMode&&1==this.$children.length,this.init=!0),this.noneFunctionalComponentMode)return this.$children[0].$slots.default;var t=this.$slots.default;return this.transitionMode?t[0].child.$slots.default:t},computeIndexes:function(){var t=this;this.$nextTick(function(){t.visibleIndexes=function(t,e,n){if(!t)return[];var a=t.map(function(t){return t.elm}),i=[].concat(o(e)).map(function(t){return a.indexOf(t)});return n?i.filter(function(t){return-1!==t}):i}(t.getChildrenNodes(),t.rootContainer.children,t.transitionMode)})},getUnderlyingVm:function(t){var e=function(t,e){return t.map(function(t){return t.elm}).indexOf(e)}(this.getChildrenNodes()||[],t);return-1===e?null:{index:e,element:this.realList[e]}},getUnderlyingPotencialDraggableComponent:function(t){var e=t.__vue__;return e&&e.$options&&"transition-group"===e.$options._componentTag?e.$parent:e},emitChanges:function(t){var e=this;this.$nextTick(function(){e.$emit("change",t)})},alterList:function(t){if(this.list)t(this.list);else{var e=[].concat(o(this.value));t(e),this.$emit("input",e)}},spliceList:function(){var t=arguments,e=function(e){return e.splice.apply(e,t)};this.alterList(e)},updatePosition:function(t,e){var n=function(n){return n.splice(e,0,n.splice(t,1)[0])};this.alterList(n)},getRelatedContextFromMoveEvent:function(t){var e=t.to,n=t.related,o=this.getUnderlyingPotencialDraggableComponent(e);if(!o)return{component:o};var i=o.realList,s={list:i,component:o};if(e!==n&&i&&o.getUnderlyingVm){var l=o.getUnderlyingVm(n);if(l)return a(l,s)}return s},getVmIndex:function(t){var e=this.visibleIndexes,n=e.length;return t>n-1?n:e[t]},getComponent:function(){return this.$slots.default[0].componentInstance},resetTransitionData:function(t){if(this.noTransitionOnDrag&&this.transitionMode){this.getChildrenNodes()[t].data=null;var e=this.getComponent();e.children=[],e.kept=void 0}},onDragStart:function(t){this.context=this.getUnderlyingVm(t.item),t.item._underlying_vm_=this.clone(this.context.element),c=t.item},onDragAdd:function(t){var n=t.item._underlying_vm_;if(void 0!==n){e(t.item);var a=this.getVmIndex(t.newIndex);this.spliceList(a,0,n),this.computeIndexes();var o={element:n,newIndex:a};this.emitChanges({added:o})}},onDragRemove:function(t){if(n(this.rootContainer,t.item,t.oldIndex),this.isCloning)e(t.clone);else{var a=this.context.index;this.spliceList(a,1);var o={element:this.context.element,oldIndex:a};this.resetTransitionData(a),this.emitChanges({removed:o})}},onDragUpdate:function(t){e(t.item),n(t.from,t.item,t.oldIndex);var a=this.context.index,o=this.getVmIndex(t.newIndex);this.updatePosition(a,o);var i={element:this.context.element,oldIndex:a,newIndex:o};this.emitChanges({moved:i})},computeFutureIndex:function(t,e){if(!t.element)return 0;var n=[].concat(o(e.to.children)).filter(function(t){return"none"!==t.style.display}),a=n.indexOf(e.related),i=t.component.getVmIndex(a);return-1!=n.indexOf(c)||!e.willInsertAfter?i:i+1},onDragMove:function(t,e){var n=this.move;if(!n||!this.realList)return!0;var o=this.getRelatedContextFromMoveEvent(t),i=this.context,s=this.computeFutureIndex(o,t);return a(i,{futureIndex:s}),a(t,{relatedContext:o,draggedContext:i}),n(t,e)},onDragEnd:function(t){this.computeIndexes(),c=null}}}}Array.from||(Array.from=function(t){return[].slice.call(t)});var i=n(133);t.exports=e(i)}()},,,,,,,,,,,,,,,,,,,,,function(t,e,n){var a,o,i,s;s=function(t,e,n,a){"use strict";var o=l(e),i=l(n),s=l(a);function l(t){return t&&t.__esModule?t:{default:t}}var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};var c=function(){function t(t,e){for(var n=0;n<e.length;n++){var a=e[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}return function(e,n,a){return n&&t(e.prototype,n),a&&t(e,a),e}}();var u=function(t){function e(t,n){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e);var a=function(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}(this,(e.__proto__||Object.getPrototypeOf(e)).call(this));return a.resolveOptions(n),a.listenClick(t),a}return function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}(e,i.default),c(e,[{key:"resolveOptions",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof t.action?t.action:this.defaultAction,this.target="function"==typeof t.target?t.target:this.defaultTarget,this.text="function"==typeof t.text?t.text:this.defaultText,this.container="object"===r(t.container)?t.container:document.body}},{key:"listenClick",value:function(t){var e=this;this.listener=(0,s.default)(t,"click",function(t){return e.onClick(t)})}},{key:"onClick",value:function(t){var e=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new o.default({action:this.action(e),target:this.target(e),text:this.text(e),container:this.container,trigger:e,emitter:this})}},{key:"defaultAction",value:function(t){return d("action",t)}},{key:"defaultTarget",value:function(t){var e=d("target",t);if(e)return document.querySelector(e)}},{key:"defaultText",value:function(t){return d("text",t)}},{key:"destroy",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],e="string"==typeof t?[t]:t,n=!!document.queryCommandSupported;return e.forEach(function(t){n=n&&!!document.queryCommandSupported(t)}),n}}]),e}();function d(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}t.exports=u},o=[t,n(238),n(240),n(241)],void 0===(i="function"==typeof(a=s)?a.apply(e,o):a)||(t.exports=i)},function(t,e,n){var a=n(0)(n(245),n(246),!1,null,null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(258),n(275),!1,function(t){n(256)},null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(273),n(274),!1,null,null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(278),n(295),!1,null,null,null);t.exports=a.exports},function(t,e,n){var a=n(286),o=n(6),i=Object.prototype,s=i.hasOwnProperty,l=i.propertyIsEnumerable,r=a(function(){return arguments}())?a:function(t){return o(t)&&s.call(t,"callee")&&!l.call(t,"callee")};t.exports=r},function(t,e,n){(function(t){var a=n(5),o=n(287),i="object"==typeof e&&e&&!e.nodeType&&e,s=i&&"object"==typeof t&&t&&!t.nodeType&&t,l=s&&s.exports===i?a.Buffer:void 0,r=(l?l.isBuffer:void 0)||o;t.exports=r}).call(e,n(115)(t))},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},function(t,e){var n=9007199254740991,a=/^(?:0|[1-9]\d*)$/;t.exports=function(t,e){var o=typeof t;return!!(e=null==e?n:e)&&("number"==o||"symbol"!=o&&a.test(t))&&t>-1&&t%1==0&&t<e}},function(t,e,n){var a=n(288),o=n(118),i=n(289),s=i&&i.isTypedArray,l=s?o(s):a;t.exports=l},function(t,e){t.exports=function(t){return function(e){return t(e)}}},function(t,e,n){var a=n(290),o=n(291),i=Object.prototype.hasOwnProperty;t.exports=function(t){if(!a(t))return o(t);var e=[];for(var n in Object(t))i.call(t,n)&&"constructor"!=n&&e.push(n);return e}},function(t,e,n){var a=n(10),o=n(40),i="[object AsyncFunction]",s="[object Function]",l="[object GeneratorFunction]",r="[object Proxy]";t.exports=function(t){if(!o(t))return!1;var e=a(t);return e==s||e==l||e==i||e==r}},function(t,e,n){var a=n(0)(n(299),n(300),!1,function(t){n(297)},null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(301),n(302),!1,null,null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(314),n(315),!1,function(t){n(312)},"data-v-ad6aab96",null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(316),n(317),!1,null,null,null);t.exports=a.exports},function(t,e,n){var a=n(22),o=n(346),i=n(375),s=n(383),l=i(function(t){var e=a(t,s);return e.length&&e[0]===t[0]?o(e):[]});t.exports=l},function(t,e,n){var a=n(76),o=n(368),i=n(369);function s(t){var e=-1,n=null==t?0:t.length;for(this.__data__=new a;++e<n;)this.add(t[e])}s.prototype.add=s.prototype.push=o,s.prototype.has=i,t.exports=s},function(t,e){var n=Function.prototype.toString;t.exports=function(t){if(null!=t){try{return n.call(t)}catch(t){}try{return t+""}catch(t){}}return""}},function(t,e){t.exports=function(t,e){return t===e||t!=t&&e!=e}},function(t,e){t.exports=function(t,e,n,a){for(var o=t.length,i=n+(a?1:-1);a?i--:++i<o;)if(e(t[i],i,t))return i;return-1}},function(t,e){t.exports=function(t,e){return t.has(e)}},function(t,e,n){var a=n(401),o=n(77),i=n(402),s=n(403),l=n(404),r=n(10),c=n(127),u=c(a),d=c(o),_=c(i),p=c(s),f=c(l),m=r;(a&&"[object DataView]"!=m(new a(new ArrayBuffer(1)))||o&&"[object Map]"!=m(new o)||i&&"[object Promise]"!=m(i.resolve())||s&&"[object Set]"!=m(new s)||l&&"[object WeakMap]"!=m(new l))&&(m=function(t){var e=r(t),n="[object Object]"==e?t.constructor:void 0,a=n?c(n):"";if(a)switch(a){case u:return"[object DataView]";case d:return"[object Map]";case _:return"[object Promise]";case p:return"[object Set]";case f:return"[object WeakMap]"}return e}),t.exports=m},function(t,e){t.exports=function(t){return function(e){return null==e?void 0:e[t]}}},function(t,e,n){var a,o;!function(i){"use strict";void 0===(o="function"==typeof(a=i)?a.call(e,n,e,t):a)||(t.exports=o)}(function(){"use strict";if("undefined"==typeof window||!window.document)return function(){throw new Error("Sortable.js requires a window with a document")};var t,e,n,a,o,i,s,l,r,c,u,d,_,p,f,m,v,h,b,g,y,w={},x=/\s+/g,k=/left|right|inline/,C="Sortable"+(new Date).getTime(),S=window,j=S.document,$=S.parseInt,T=S.setTimeout,P=S.jQuery||S.Zepto,E=S.Polymer,A=!1,N="draggable"in j.createElement("div"),D=!navigator.userAgent.match(/(?:Trident.*rv[ :]?11\.|msie)/i)&&((y=j.createElement("x")).style.cssText="pointer-events:auto","auto"===y.style.pointerEvents),F=!1,O=Math.abs,I=Math.min,M=[],L=[],z=at(function(t,e,n){if(n&&e.scroll){var a,o,i,s,u,d,_=n[C],p=e.scrollSensitivity,f=e.scrollSpeed,m=t.clientX,v=t.clientY,h=window.innerWidth,b=window.innerHeight;if(r!==n&&(l=e.scroll,r=n,c=e.scrollFn,!0===l)){l=n;do{if(l.offsetWidth<l.scrollWidth||l.offsetHeight<l.scrollHeight)break}while(l=l.parentNode)}l&&(a=l,o=l.getBoundingClientRect(),i=(O(o.right-m)<=p)-(O(o.left-m)<=p),s=(O(o.bottom-v)<=p)-(O(o.top-v)<=p)),i||s||(s=(b-v<=p)-(v<=p),((i=(h-m<=p)-(m<=p))||s)&&(a=S)),w.vx===i&&w.vy===s&&w.el===a||(w.el=a,w.vx=i,w.vy=s,clearInterval(w.pid),a&&(w.pid=setInterval(function(){if(d=s?s*f:0,u=i?i*f:0,"function"==typeof c)return c.call(_,u,d,t);a===S?S.scrollTo(S.pageXOffset+u,S.pageYOffset+d):(a.scrollTop+=d,a.scrollLeft+=u)},24)))}},30),B=function(t){function e(t,e){return void 0!==t&&!0!==t||(t=n.name),"function"==typeof t?t:function(n,a){var o=a.options.group.name;return e?t:t&&(t.join?t.indexOf(o)>-1:o==t)}}var n={},a=t.group;a&&"object"==typeof a||(a={name:a}),n.name=a.name,n.checkPull=e(a.pull,!0),n.checkPut=e(a.put),n.revertClone=a.revertClone,t.group=n};try{window.addEventListener("test",null,Object.defineProperty({},"passive",{get:function(){A={capture:!1,passive:!1}}}))}catch(t){}function R(t,e){if(!t||!t.nodeType||1!==t.nodeType)throw"Sortable: `el` must be HTMLElement, and not "+{}.toString.call(t);this.el=t,this.options=e=ot({},e),t[C]=this;var n={group:Math.random(),sort:!0,disabled:!1,store:null,handle:null,scroll:!0,scrollSensitivity:30,scrollSpeed:10,draggable:/[uo]l/i.test(t.nodeName)?"li":">*",ghostClass:"sortable-ghost",chosenClass:"sortable-chosen",dragClass:"sortable-drag",ignore:"a, img",filter:null,preventOnFilter:!0,animation:0,setData:function(t,e){t.setData("Text",e.textContent)},dropBubble:!1,dragoverBubble:!1,dataIdAttr:"data-id",delay:0,forceFallback:!1,fallbackClass:"sortable-fallback",fallbackOnBody:!1,fallbackTolerance:0,fallbackOffset:{x:0,y:0},supportPointer:!1!==R.supportPointer};for(var a in n)!(a in e)&&(e[a]=n[a]);for(var o in B(e),this)"_"===o.charAt(0)&&"function"==typeof this[o]&&(this[o]=this[o].bind(this));this.nativeDraggable=!e.forceFallback&&N,H(t,"mousedown",this._onTapStart),H(t,"touchstart",this._onTapStart),e.supportPointer&&H(t,"pointerdown",this._onTapStart),this.nativeDraggable&&(H(t,"dragover",this),H(t,"dragenter",this)),L.push(this._onDragOver),e.store&&this.sort(e.store.get(this))}function q(e,n){"clone"!==e.lastPullMode&&(n=!0),a&&a.state!==n&&(W(a,"display",n?"none":""),n||a.state&&(e.options.group.revertClone?(o.insertBefore(a,i),e._animate(t,a)):o.insertBefore(a,t)),a.state=n)}function U(t,e,n){if(t){n=n||j;do{if(">*"===e&&t.parentNode===n||nt(t,e))return t}while(t=V(t))}return null}function V(t){var e=t.host;return e&&e.nodeType?e:t.parentNode}function H(t,e,n){t.addEventListener(e,n,A)}function Q(t,e,n){t.removeEventListener(e,n,A)}function Y(t,e,n){if(t)if(t.classList)t.classList[n?"add":"remove"](e);else{var a=(" "+t.className+" ").replace(x," ").replace(" "+e+" "," ");t.className=(a+(n?" "+e:"")).replace(x," ")}}function W(t,e,n){var a=t&&t.style;if(a){if(void 0===n)return j.defaultView&&j.defaultView.getComputedStyle?n=j.defaultView.getComputedStyle(t,""):t.currentStyle&&(n=t.currentStyle),void 0===e?n:n[e];e in a||(e="-webkit-"+e),a[e]=n+("string"==typeof n?"":"px")}}function J(t,e,n){if(t){var a=t.getElementsByTagName(e),o=0,i=a.length;if(n)for(;o<i;o++)n(a[o],o);return a}return[]}function G(t,e,n,o,i,s,l,r){t=t||e[C];var c=j.createEvent("Event"),u=t.options,d="on"+n.charAt(0).toUpperCase()+n.substr(1);c.initEvent(n,!0,!0),c.to=i||e,c.from=s||e,c.item=o||e,c.clone=a,c.oldIndex=l,c.newIndex=r,e.dispatchEvent(c),u[d]&&u[d].call(t,c)}function K(t,e,n,a,o,i,s,l){var r,c,u=t[C],d=u.options.onMove;return(r=j.createEvent("Event")).initEvent("move",!0,!0),r.to=e,r.from=t,r.dragged=n,r.draggedRect=a,r.related=o||e,r.relatedRect=i||e.getBoundingClientRect(),r.willInsertAfter=l,t.dispatchEvent(r),d&&(c=d.call(u,r,s)),c}function X(t){t.draggable=!1}function Z(){F=!1}function tt(t){for(var e=t.tagName+t.className+t.src+t.href+t.textContent,n=e.length,a=0;n--;)a+=e.charCodeAt(n);return a.toString(36)}function et(t,e){var n=0;if(!t||!t.parentNode)return-1;for(;t&&(t=t.previousElementSibling);)"TEMPLATE"===t.nodeName.toUpperCase()||">*"!==e&&!nt(t,e)||n++;return n}function nt(t,e){if(t){var n=(e=e.split(".")).shift().toUpperCase(),a=new RegExp("\\s("+e.join("|")+")(?=\\s)","g");return!(""!==n&&t.nodeName.toUpperCase()!=n||e.length&&((" "+t.className+" ").match(a)||[]).length!=e.length)}return!1}function at(t,e){var n,a;return function(){void 0===n&&(n=arguments,a=this,T(function(){1===n.length?t.call(a,n[0]):t.apply(a,n),n=void 0},e))}}function ot(t,e){if(t&&e)for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}function it(t){return E&&E.dom?E.dom(t).cloneNode(!0):P?P(t).clone(!0)[0]:t.cloneNode(!0)}function st(t){return T(t,0)}function lt(t){return clearTimeout(t)}return R.prototype={constructor:R,_onTapStart:function(e){var n,a=this,o=this.el,i=this.options,l=i.preventOnFilter,r=e.type,c=e.touches&&e.touches[0],u=(c||e).target,d=e.target.shadowRoot&&e.path&&e.path[0]||u,_=i.filter;if(function(t){var e=t.getElementsByTagName("input"),n=e.length;for(;n--;){var a=e[n];a.checked&&M.push(a)}}(o),!t&&!(/mousedown|pointerdown/.test(r)&&0!==e.button||i.disabled)&&!d.isContentEditable&&(u=U(u,i.draggable,o))&&s!==u){if(n=et(u,i.draggable),"function"==typeof _){if(_.call(this,e,u,this))return G(a,d,"filter",u,o,o,n),void(l&&e.preventDefault())}else if(_&&(_=_.split(",").some(function(t){if(t=U(d,t.trim(),o))return G(a,t,"filter",u,o,o,n),!0})))return void(l&&e.preventDefault());i.handle&&!U(d,i.handle,o)||this._prepareDragStart(e,c,u,n)}},_prepareDragStart:function(n,a,l,r){var c,u=this,d=u.el,_=u.options,f=d.ownerDocument;l&&!t&&l.parentNode===d&&(h=n,o=d,e=(t=l).parentNode,i=t.nextSibling,s=l,m=_.group,p=r,this._lastX=(a||n).clientX,this._lastY=(a||n).clientY,t.style["will-change"]="all",c=function(){u._disableDelayedDrag(),t.draggable=u.nativeDraggable,Y(t,_.chosenClass,!0),u._triggerDragStart(n,a),G(u,o,"choose",t,o,o,p)},_.ignore.split(",").forEach(function(e){J(t,e.trim(),X)}),H(f,"mouseup",u._onDrop),H(f,"touchend",u._onDrop),H(f,"touchcancel",u._onDrop),H(f,"selectstart",u),_.supportPointer&&H(f,"pointercancel",u._onDrop),_.delay?(H(f,"mouseup",u._disableDelayedDrag),H(f,"touchend",u._disableDelayedDrag),H(f,"touchcancel",u._disableDelayedDrag),H(f,"mousemove",u._disableDelayedDrag),H(f,"touchmove",u._disableDelayedDrag),_.supportPointer&&H(f,"pointermove",u._disableDelayedDrag),u._dragStartTimer=T(c,_.delay)):c())},_disableDelayedDrag:function(){var t=this.el.ownerDocument;clearTimeout(this._dragStartTimer),Q(t,"mouseup",this._disableDelayedDrag),Q(t,"touchend",this._disableDelayedDrag),Q(t,"touchcancel",this._disableDelayedDrag),Q(t,"mousemove",this._disableDelayedDrag),Q(t,"touchmove",this._disableDelayedDrag),Q(t,"pointermove",this._disableDelayedDrag)},_triggerDragStart:function(e,n){(n=n||("touch"==e.pointerType?e:null))?(h={target:t,clientX:n.clientX,clientY:n.clientY},this._onDragStart(h,"touch")):this.nativeDraggable?(H(t,"dragend",this),H(o,"dragstart",this._onDragStart)):this._onDragStart(h,!0);try{j.selection?st(function(){j.selection.empty()}):window.getSelection().removeAllRanges()}catch(t){}},_dragStarted:function(){if(o&&t){var e=this.options;Y(t,e.ghostClass,!0),Y(t,e.dragClass,!1),R.active=this,G(this,o,"start",t,o,o,p)}else this._nulling()},_emulateDragOver:function(){if(b){if(this._lastX===b.clientX&&this._lastY===b.clientY)return;this._lastX=b.clientX,this._lastY=b.clientY,D||W(n,"display","none");var t=j.elementFromPoint(b.clientX,b.clientY),e=t,a=L.length;if(t&&t.shadowRoot&&(e=t=t.shadowRoot.elementFromPoint(b.clientX,b.clientY)),e)do{if(e[C]){for(;a--;)L[a]({clientX:b.clientX,clientY:b.clientY,target:t,rootEl:e});break}t=e}while(e=e.parentNode);D||W(n,"display","")}},_onTouchMove:function(t){if(h){var e=this.options,a=e.fallbackTolerance,o=e.fallbackOffset,i=t.touches?t.touches[0]:t,s=i.clientX-h.clientX+o.x,l=i.clientY-h.clientY+o.y,r=t.touches?"translate3d("+s+"px,"+l+"px,0)":"translate("+s+"px,"+l+"px)";if(!R.active){if(a&&I(O(i.clientX-this._lastX),O(i.clientY-this._lastY))<a)return;this._dragStarted()}this._appendGhost(),g=!0,b=i,W(n,"webkitTransform",r),W(n,"mozTransform",r),W(n,"msTransform",r),W(n,"transform",r),t.preventDefault()}},_appendGhost:function(){if(!n){var e,a=t.getBoundingClientRect(),i=W(t),s=this.options;Y(n=t.cloneNode(!0),s.ghostClass,!1),Y(n,s.fallbackClass,!0),Y(n,s.dragClass,!0),W(n,"top",a.top-$(i.marginTop,10)),W(n,"left",a.left-$(i.marginLeft,10)),W(n,"width",a.width),W(n,"height",a.height),W(n,"opacity","0.8"),W(n,"position","fixed"),W(n,"zIndex","100000"),W(n,"pointerEvents","none"),s.fallbackOnBody&&j.body.appendChild(n)||o.appendChild(n),e=n.getBoundingClientRect(),W(n,"width",2*a.width-e.width),W(n,"height",2*a.height-e.height)}},_onDragStart:function(e,n){var i=this,s=e.dataTransfer,l=i.options;i._offUpEvents(),m.checkPull(i,i,t,e)&&((a=it(t)).draggable=!1,a.style["will-change"]="",W(a,"display","none"),Y(a,i.options.chosenClass,!1),i._cloneId=st(function(){o.insertBefore(a,t),G(i,o,"clone",t)})),Y(t,l.dragClass,!0),n?("touch"===n?(H(j,"touchmove",i._onTouchMove),H(j,"touchend",i._onDrop),H(j,"touchcancel",i._onDrop),l.supportPointer&&(H(j,"pointermove",i._onTouchMove),H(j,"pointerup",i._onDrop))):(H(j,"mousemove",i._onTouchMove),H(j,"mouseup",i._onDrop)),i._loopId=setInterval(i._emulateDragOver,50)):(s&&(s.effectAllowed="move",l.setData&&l.setData.call(i,s,t)),H(j,"drop",i),i._dragStartId=st(i._dragStarted))},_onDragOver:function(s){var l,r,c,p,f=this.el,h=this.options,b=h.group,y=R.active,w=m===b,x=!1,S=h.sort;if(void 0!==s.preventDefault&&(s.preventDefault(),!h.dragoverBubble&&s.stopPropagation()),!t.animated&&(g=!0,y&&!h.disabled&&(w?S||(p=!o.contains(t)):v===this||(y.lastPullMode=m.checkPull(this,y,t,s))&&b.checkPut(this,y,t,s))&&(void 0===s.rootEl||s.rootEl===this.el))){if(z(s,h,this.el),F)return;if(l=U(s.target,h.draggable,f),r=t.getBoundingClientRect(),v!==this&&(v=this,x=!0),p)return q(y,!0),e=o,void(a||i?o.insertBefore(t,a||i):S||o.appendChild(t));if(0===f.children.length||f.children[0]===n||f===s.target&&function(t,e){var n=t.lastElementChild.getBoundingClientRect();return e.clientY-(n.top+n.height)>5||e.clientX-(n.left+n.width)>5}(f,s)){if(0!==f.children.length&&f.children[0]!==n&&f===s.target&&(l=f.lastElementChild),l){if(l.animated)return;c=l.getBoundingClientRect()}q(y,w),!1!==K(o,f,t,r,l,c,s)&&(t.contains(f)||(f.appendChild(t),e=f),this._animate(r,t),l&&this._animate(c,l))}else if(l&&!l.animated&&l!==t&&void 0!==l.parentNode[C]){u!==l&&(u=l,d=W(l),_=W(l.parentNode));var j=(c=l.getBoundingClientRect()).right-c.left,$=c.bottom-c.top,P=k.test(d.cssFloat+d.display)||"flex"==_.display&&0===_["flex-direction"].indexOf("row"),E=l.offsetWidth>t.offsetWidth,A=l.offsetHeight>t.offsetHeight,N=(P?(s.clientX-c.left)/j:(s.clientY-c.top)/$)>.5,D=l.nextElementSibling,O=!1;if(P){var I=t.offsetTop,M=l.offsetTop;O=I===M?l.previousElementSibling===t&&!E||N&&E:l.previousElementSibling===t||t.previousElementSibling===l?(s.clientY-c.top)/$>.5:M>I}else x||(O=D!==t&&!A||N&&A);var L=K(o,f,t,r,l,c,s,O);!1!==L&&(1!==L&&-1!==L||(O=1===L),F=!0,T(Z,30),q(y,w),t.contains(f)||(O&&!D?f.appendChild(t):l.parentNode.insertBefore(t,O?D:l)),e=t.parentNode,this._animate(r,t),this._animate(c,l))}}},_animate:function(t,e){var n=this.options.animation;if(n){var a=e.getBoundingClientRect();1===t.nodeType&&(t=t.getBoundingClientRect()),W(e,"transition","none"),W(e,"transform","translate3d("+(t.left-a.left)+"px,"+(t.top-a.top)+"px,0)"),e.offsetWidth,W(e,"transition","all "+n+"ms"),W(e,"transform","translate3d(0,0,0)"),clearTimeout(e.animated),e.animated=T(function(){W(e,"transition",""),W(e,"transform",""),e.animated=!1},n)}},_offUpEvents:function(){var t=this.el.ownerDocument;Q(j,"touchmove",this._onTouchMove),Q(j,"pointermove",this._onTouchMove),Q(t,"mouseup",this._onDrop),Q(t,"touchend",this._onDrop),Q(t,"pointerup",this._onDrop),Q(t,"touchcancel",this._onDrop),Q(t,"pointercancel",this._onDrop),Q(t,"selectstart",this)},_onDrop:function(s){var l=this.el,r=this.options;clearInterval(this._loopId),clearInterval(w.pid),clearTimeout(this._dragStartTimer),lt(this._cloneId),lt(this._dragStartId),Q(j,"mouseover",this),Q(j,"mousemove",this._onTouchMove),this.nativeDraggable&&(Q(j,"drop",this),Q(l,"dragstart",this._onDragStart)),this._offUpEvents(),s&&(g&&(s.preventDefault(),!r.dropBubble&&s.stopPropagation()),n&&n.parentNode&&n.parentNode.removeChild(n),o!==e&&"clone"===R.active.lastPullMode||a&&a.parentNode&&a.parentNode.removeChild(a),t&&(this.nativeDraggable&&Q(t,"dragend",this),X(t),t.style["will-change"]="",Y(t,this.options.ghostClass,!1),Y(t,this.options.chosenClass,!1),G(this,o,"unchoose",t,e,o,p),o!==e?(f=et(t,r.draggable))>=0&&(G(null,e,"add",t,e,o,p,f),G(this,o,"remove",t,e,o,p,f),G(null,e,"sort",t,e,o,p,f),G(this,o,"sort",t,e,o,p,f)):t.nextSibling!==i&&(f=et(t,r.draggable))>=0&&(G(this,o,"update",t,e,o,p,f),G(this,o,"sort",t,e,o,p,f)),R.active&&(null!=f&&-1!==f||(f=p),G(this,o,"end",t,e,o,p,f),this.save()))),this._nulling()},_nulling:function(){o=t=e=n=i=a=s=l=r=h=b=g=f=u=d=v=m=R.active=null,M.forEach(function(t){t.checked=!0}),M.length=0},handleEvent:function(e){switch(e.type){case"drop":case"dragend":this._onDrop(e);break;case"dragover":case"dragenter":t&&(this._onDragOver(e),function(t){t.dataTransfer&&(t.dataTransfer.dropEffect="move");t.preventDefault()}(e));break;case"mouseover":this._onDrop(e);break;case"selectstart":e.preventDefault()}},toArray:function(){for(var t,e=[],n=this.el.children,a=0,o=n.length,i=this.options;a<o;a++)U(t=n[a],i.draggable,this.el)&&e.push(t.getAttribute(i.dataIdAttr)||tt(t));return e},sort:function(t){var e={},n=this.el;this.toArray().forEach(function(t,a){var o=n.children[a];U(o,this.options.draggable,n)&&(e[t]=o)},this),t.forEach(function(t){e[t]&&(n.removeChild(e[t]),n.appendChild(e[t]))})},save:function(){var t=this.options.store;t&&t.set(this)},closest:function(t,e){return U(t,e||this.options.draggable,this.el)},option:function(t,e){var n=this.options;if(void 0===e)return n[t];n[t]=e,"group"===t&&B(n)},destroy:function(){var t=this.el;t[C]=null,Q(t,"mousedown",this._onTapStart),Q(t,"touchstart",this._onTapStart),Q(t,"pointerdown",this._onTapStart),this.nativeDraggable&&(Q(t,"dragover",this),Q(t,"dragenter",this)),Array.prototype.forEach.call(t.querySelectorAll("[draggable]"),function(t){t.removeAttribute("draggable")}),L.splice(L.indexOf(this._onDragOver),1),this._onDrop(),this.el=t=null}},H(j,"touchmove",function(t){R.active&&t.preventDefault()}),R.utils={on:H,off:Q,css:W,find:J,is:function(t,e){return!!U(t,e,t)},extend:ot,throttle:at,closest:U,toggleClass:Y,clone:it,index:et,nextTick:st,cancelNextTick:lt},R.create=function(t,e){return new R(t,e)},R.version="1.7.0",R})},function(t,e,n){var a=n(129),o=n(417),i=n(448),s=Math.max;t.exports=function(t,e,n){var l=null==t?0:t.length;if(!l)return-1;var r=null==n?0:i(n);return r<0&&(r=s(l+r,0)),a(t,o(e,3),r)}},function(t,e,n){var a=n(43),o=n(420),i=n(421),s=n(422),l=n(423),r=n(424);function c(t){var e=this.__data__=new a(t);this.size=e.size}c.prototype.clear=o,c.prototype.delete=i,c.prototype.get=s,c.prototype.has=l,c.prototype.set=r,t.exports=c},function(t,e,n){var a=n(425),o=n(6);t.exports=function t(e,n,i,s,l){return e===n||(null==e||null==n||!o(e)&&!o(n)?e!=e&&n!=n:a(e,n,i,s,t,l))}},function(t,e,n){var a=n(126),o=n(426),i=n(130),s=1,l=2;t.exports=function(t,e,n,r,c,u){var d=n&s,_=t.length,p=e.length;if(_!=p&&!(d&&p>_))return!1;var f=u.get(t);if(f&&u.get(e))return f==e;var m=-1,v=!0,h=n&l?new a:void 0;for(u.set(t,e),u.set(e,t);++m<_;){var b=t[m],g=e[m];if(r)var y=d?r(g,b,m,e,t,u):r(b,g,m,t,e,u);if(void 0!==y){if(y)continue;v=!1;break}if(h){if(!o(e,function(t,e){if(!i(h,e)&&(b===t||c(b,t,n,r,u)))return h.push(e)})){v=!1;break}}else if(b!==g&&!c(b,g,n,r,u)){v=!1;break}}return u.delete(t),u.delete(e),v}},function(t,e,n){var a=n(40);t.exports=function(t){return t==t&&!a(t)}},function(t,e){t.exports=function(t,e){return function(n){return null!=n&&n[t]===e&&(void 0!==e||t in Object(n))}}},function(t,e,n){var a=n(141),o=n(46);t.exports=function(t,e){for(var n=0,i=(e=a(e,t)).length;null!=t&&n<i;)t=t[o(e[n++])];return n&&n==i?t:void 0}},function(t,e,n){var a=n(4),o=n(80),i=n(440),s=n(24);t.exports=function(t,e){return a(t)?t:o(t,e)?[t]:i(s(t))}},function(t,e,n){var a=n(451)(function(t,e,n){return t+(n?"_":"")+e.toLowerCase()});t.exports=a},function(t,e,n){var a=n(0)(n(463),n(464),!1,null,null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(470),n(471),!1,function(t){n(468)},null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(475),n(476),!1,function(t){n(473)},null,null);t.exports=a.exports},function(t,e,n){var a=n(0)(n(484),n(485),!1,function(t){n(482)},null,null);t.exports=a.exports},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){t.exports=n(218)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(219),o=n(225),i=n(331),s=n(334),l=n(339),r=n(344),c=n(386),u=n(391),d=n(394),_=n(413),p=n(533),f=n(560),m=n(571),v=n(580),h=[{path:"/",component:a,props:!0,children:[{path:"/",name:"home",component:o},{path:"/tools",component:i,children:[{path:"/",name:"import_tables",component:s},{path:"default_table_appearance",name:"default_table_appearance",component:r},{path:"permission",name:"permission",component:l},{path:"licensing",name:"licensing",component:c},{path:"global_settings",name:"global_settings",component:u}]},{path:"/help",name:"help",component:m}]},{path:"/tables/:table_id",component:d,props:!0,children:[{path:"/",name:"data_items",component:_},{path:"columns",name:"data_columns",component:p},{path:"design_studio",name:"design_studio",component:n(595)},{path:"additional_css",name:"additional_css",component:v},{path:"import-export",name:"import-export",component:f},{path:"table_editing",name:"table_editing",component:n(600)}]}],b=n(603),g=n.n(b);window.ninjaTableBus=new window.NINJATABLE.Vue,window.NINJATABLE.Vue.mixin({methods:{$t:function(t){var e=ninja_table_admin.i18n[t];return e||t},setStoreData:function(t,e){window.localStorage&&localStorage.setItem("ninjatable_"+t,e)},getFromStore:function(t,e){if(window.localStorage){var n=localStorage.getItem("ninjatable_"+t);if(n)return n}return e},applyFilters:window.NINJATABLE.applyFilters,addFilter:window.NINJATABLE.addFilter,addAction:window.NINJATABLE.addFilter,doAction:window.NINJATABLE.doAction,$get:window.NINJATABLE.$get,$post:window.NINJATABLE.$post},data:function(){return{}},directives:{focus:{inserted:function(t){t.focus()}}},filters:{ucFirst:function(t){return t.charAt(0).toUpperCase()+t.slice(1)}}});var y=new window.NINJATABLE.Router({routes:window.NINJATABLE.applyFilters("ninja_table_global_routes",h),linkActiveClass:"active"});g.a.router=y,window.ninjaApp=new window.NINJATABLE.Vue(g.a).$mount("#data-tables-app")},function(t,e,n){var a=n(0)(n(223),n(224),!1,function(t){n(220)},null,null);t.exports=a.exports},function(t,e,n){var a=n(221);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("4438693c",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".plugin-name{float:left;padding:8px 0}",""])},function(t,e){t.exports=function(t,e){for(var n=[],a={},o=0;o<e.length;o++){var i=e[o],s=i[0],l={id:t+":"+o,css:i[1],media:i[2],sourceMap:i[3]};a[s]?a[s].parts.push(l):n.push(a[s]={id:s,parts:[l]})}return n}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"home",data:function(){return{has_pro:window.ninja_table_admin.hasPro,topMenus:[]}},methods:{setTopMenu:function(){this.topMenus=this.applyFilters("ninja_table_top_menus",[{route:"home",title:"All Tables"},{route:"import_tables",title:"Tools and Settings"},{route:"help",title:"Help & Documentation"}])}},mounted:function(){this.setTopMenu()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"ninja_main_nav"},[n("span",{staticClass:"plugin-name"},[t._v(t._s(t.$t("Ninja Tables"))),t.has_pro?n("span",[t._v(" Pro")]):t._e()]),t._v(" "),t._l(t.topMenus,function(e){return n("router-link",{key:e.route,class:["ninja-tab"],attrs:{"active-class":"ninja-tab-active",exact:"",to:{name:e.route}}},[t._v("\n "+t._s(e.title)+"\n ")])}),t._v(" "),t.has_pro?t._e():n("a",{staticClass:"ninja-tab buy_pro_tab",attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade",target:"_blank"}},[t._v("Upgrade To Pro")])],2),t._v(" "),n("router-view",{attrs:{"has-pro":t.has_pro}})],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(228),n(330),!1,function(t){n(226)},null,null);t.exports=a.exports},function(t,e,n){var a=n(227);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("00d75314",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,"label.form_group.search_action{padding-top:0;margin-bottom:0}.create-table-modal{z-index:9999!important}.create-table-modal .el-dialog__body{padding:20px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(229),o=n(234),i=n(248),s=n(320),l=n(325);e.default={name:"all_tables",components:{Welcome:a,"list-all-tables":o,"add-table-modal":i,"lead-modal":s,NinjaReviewDialog:l},props:["hasPro"],data:function(){return{modalVisible:!1,published_tables:parseInt(window.ninja_table_admin.published_tables),searchAction:0,searchString:"",selected:[],review_option:window.ninja_table_admin.show_review_dialog}},methods:{addTableAction:function(t){this.$router.push({name:"data_items",params:{table_id:t}}),this.modalVisible=!1},getData:function(){this.searchAction++},makeSelection:function(t){this.selected=t},handleBulkActions:function(t){"delete"===t&&this.deleteTables()},deleteTables:function(){this.selected.length&&this.$confirm(this.$t("This will permanently delete the selected tables. Continue?"),"Warning",{confirmButtonText:this.$t("Yes, Delete"),cancelButtonText:this.$t("Cancel"),type:"warning"}).then(function(){}).catch(function(){})}},mounted:function(){var t=this;window.ninjaTableBus.$on("addedTable",function(){t.published_tables||(window.ninja_table_admin.published_tables=1)})}}},function(t,e,n){var a=n(0)(n(232),n(233),!1,function(t){n(230)},null,null);t.exports=a.exports},function(t,e,n){var a=n(231);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("59acd174",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_intro_welcome{max-width:600px;margin:45px auto 0;padding:30px 20px;background:#fff;text-align:center}.ninja_intro_welcome h2{font-size:30px}.ninja_intro_welcome .ninja_actions{margin-bottom:30px}.ninja_intro_welcome .ninja_docs{text-align:left}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"Welcome",methods:{create:function(){this.$emit("create",!0)}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_intro_welcome"},[n("h2",[t._v("Welcome to Ninja Tables")]),t._v(" "),n("p",[t._v("Thank you for installing Ninja Tables - Best Responsive Table Plugin for WordPress")]),t._v(" "),n("div",{staticClass:"ninja_actions"},[n("el-button",{attrs:{type:"success"},on:{click:t.create}},[t._v("\n Create Your First Table\n ")]),t._v(" "),n("router-link",{attrs:{to:{name:"import_tables"}}},[n("el-button",{attrs:{type:"info"}},[t._v(t._s(t.$t("Import From CSV")))])],1)],1),t._v(" "),n("hr"),t._v(" "),t._m(0)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_docs"},[e("h4",[this._v("Ninja Tables Documentation:")]),this._v(" "),e("ul",[e("li",[e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/ninja-tables/use-case/?ninja_intro=1"}},[this._v("\n Demo and Basic Settings\n ")])]),this._v(" "),e("li",[e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/setting-up-a-table/?ninja_intro=1"}},[this._v("\n Setting Up a Table\n ")])]),this._v(" "),e("li",[e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/configure-responsive-breakdowns-for-table/?ninja_intro=1"}},[this._v("\n Make Your Table Looks Great on All Devices\n ")])])])])}]}},function(t,e,n){var a=n(0)(n(237),n(247),!1,function(t){n(235)},null,null);t.exports=a.exports},function(t,e,n){var a=n(236);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("6c5ef0b8",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja-tables.el-table td,.ninja-tables.el-table th{padding:5px 0}.ninja-tables.el-table span.row-delete a{color:#a00}.ninja-tables.el-table a{text-decoration:none}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(108),o=n.n(a),i=n(109);e.default={name:"Home",components:{ninja_pagination:i},props:["searchAction","searchString"],watch:{searchAction:function(){this.paginate.current_page=1,this.fetchTables()}},data:function(){return{loading:!1,bulkAction:-1,selectAll:0,checkedItems:[],pageLoading:!1,items:[],paginate:{total:0,current_page:1,last_page:1,per_page:parseInt(this.getFromStore("tables_per_page",20))},hasPro:!!window.ninja_table_admin.hasPro,img_url_path:window.ninja_table_admin.img_url,is_installed:window.ninja_table_admin.isInstalled}},methods:{fetchTables:function(){var t=this;this.pageLoading=!0;var e={action:"ninja_tables_ajax_actions",target_action:"get-all-tables",per_page:this.paginate.per_page,page:this.paginate.current_page,search:this.searchString};jQuery.get(ajaxurl,e).done(function(e){t.items=e.data,t.paginate.total=e.total,t.paginate.current_page=e.current_page,t.paginate.last_page=e.last_page,t.pageLoading=!1,e.total&&t.$emit("total_table",e.total)}).fail(function(t){vueNotification.error("Something went wrong, please try again.")})},goToPage:function(t){this.paginate.current_page=t,this.fetchTables()},handleSizeChange:function(t){this.paginate.per_page=t,this.setStoreData("tables_per_page",t),this.fetchTables()},confirmDeleteTable:function(t){var e=this;this.$confirm("Are you sure, You want to delete this table?","Warning",{confirmButtonText:"Yes, Delete",cancelButtonText:"Cancel",type:"warning"}).then(function(){e.deleteTable(t)}).catch(function(){e.$message({type:"info",message:"Delete canceled"})})},deleteTable:function(t){var e=this,n={action:"ninja_tables_ajax_actions",target_action:"delete-a-table",table_id:t};jQuery.post(ajaxurl,n).then(function(t){e.fetchTables(),e.$message({type:"success",message:t.message})}).fail(function(t){alert(t.responseJSON.data.message)})},handleSelectionChange:function(t){this.$emit("selection",t.map(function(t){return t.ID}))},duplicate:function(t){var e=this,n={action:"ninja_tables_ajax_actions",target_action:"duplicate-table",tableId:t};jQuery.post(ajaxurl,n).then(function(t){e.$message({type:"success",message:t.data.message}),e.$router.push({name:"data_items",params:{table_id:t.data.table_id}})}).fail(function(t){alert(t.responseJSON.data.message)})},shouldBeVisible:function(t){return"fluent-form"!=t.dataSourceType||window.ninja_table_admin.hasFluentForm},dataSourceType:function(t){var e=t.dataSourceType||"Default";return"raw_sql"==e?"SQL":e=e.indexOf("google")>-1?"Google SpreadSheet":e}},mounted:function(){var t=this;this.fetchTables(),new o.a(".copy").on("success",function(e){t.$message({message:"Copied to Clipboard!",type:"success"})})}}},function(t,e,n){var a,o,i,s;s=function(t,e){"use strict";var n,a=(n=e)&&n.__esModule?n:{default:n};var o="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};var i=function(){function t(t,e){for(var n=0;n<e.length;n++){var a=e[n];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}return function(e,n,a){return n&&t(e.prototype,n),a&&t(e,a),e}}(),s=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.resolveOptions(e),this.initSelection()}return i(t,[{key:"resolveOptions",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.container=t.container,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function(){var t=this,e="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return t.removeFake()},this.fakeHandler=this.container.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[e?"right":"left"]="-9999px";var n=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.style.top=n+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,this.container.appendChild(this.fakeElem),this.selectedText=(0,a.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function(){this.fakeHandler&&(this.container.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function(){this.selectedText=(0,a.default)(this.target),this.copyText()}},{key:"copyText",value:function(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function(){this.trigger&&this.trigger.focus(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function(){this.removeFake()}},{key:"action",set:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function(){return this._action}},{key:"target",set:function(t){if(void 0!==t){if(!t||"object"!==(void 0===t?"undefined":o(t))||1!==t.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function(){return this._target}}]),t}();t.exports=s},o=[t,n(239)],void 0===(i="function"==typeof(a=s)?a.apply(e,o):a)||(t.exports=i)},function(t,e){t.exports=function(t){var e;if("SELECT"===t.nodeName)t.focus(),e=t.value;else if("INPUT"===t.nodeName||"TEXTAREA"===t.nodeName){var n=t.hasAttribute("readonly");n||t.setAttribute("readonly",""),t.select(),t.setSelectionRange(0,t.value.length),n||t.removeAttribute("readonly"),e=t.value}else{t.hasAttribute("contenteditable")&&t.focus();var a=window.getSelection(),o=document.createRange();o.selectNodeContents(t),a.removeAllRanges(),a.addRange(o),e=a.toString()}return e}},function(t,e){function n(){}n.prototype={on:function(t,e,n){var a=this.e||(this.e={});return(a[t]||(a[t]=[])).push({fn:e,ctx:n}),this},once:function(t,e,n){var a=this;function o(){a.off(t,o),e.apply(n,arguments)}return o._=e,this.on(t,o,n)},emit:function(t){for(var e=[].slice.call(arguments,1),n=((this.e||(this.e={}))[t]||[]).slice(),a=0,o=n.length;a<o;a++)n[a].fn.apply(n[a].ctx,e);return this},off:function(t,e){var n=this.e||(this.e={}),a=n[t],o=[];if(a&&e)for(var i=0,s=a.length;i<s;i++)a[i].fn!==e&&a[i].fn._!==e&&o.push(a[i]);return o.length?n[t]=o:delete n[t],this}},t.exports=n},function(t,e,n){var a=n(242),o=n(243);t.exports=function(t,e,n){if(!t&&!e&&!n)throw new Error("Missing required arguments");if(!a.string(e))throw new TypeError("Second argument must be a String");if(!a.fn(n))throw new TypeError("Third argument must be a Function");if(a.node(t))return function(t,e,n){return t.addEventListener(e,n),{destroy:function(){t.removeEventListener(e,n)}}}(t,e,n);if(a.nodeList(t))return function(t,e,n){return Array.prototype.forEach.call(t,function(t){t.addEventListener(e,n)}),{destroy:function(){Array.prototype.forEach.call(t,function(t){t.removeEventListener(e,n)})}}}(t,e,n);if(a.string(t))return function(t,e,n){return o(document.body,t,e,n)}(t,e,n);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}},function(t,e){e.node=function(t){return void 0!==t&&t instanceof HTMLElement&&1===t.nodeType},e.nodeList=function(t){var n=Object.prototype.toString.call(t);return void 0!==t&&("[object NodeList]"===n||"[object HTMLCollection]"===n)&&"length"in t&&(0===t.length||e.node(t[0]))},e.string=function(t){return"string"==typeof t||t instanceof String},e.fn=function(t){return"[object Function]"===Object.prototype.toString.call(t)}},function(t,e,n){var a=n(244);function o(t,e,n,o,i){var s=function(t,e,n,o){return function(n){n.delegateTarget=a(n.target,e),n.delegateTarget&&o.call(t,n)}}.apply(this,arguments);return t.addEventListener(n,s,i),{destroy:function(){t.removeEventListener(n,s,i)}}}t.exports=function(t,e,n,a,i){return"function"==typeof t.addEventListener?o.apply(null,arguments):"function"==typeof n?o.bind(null,document).apply(null,arguments):("string"==typeof t&&(t=document.querySelectorAll(t)),Array.prototype.map.call(t,function(t){return o(t,e,n,a,i)}))}},function(t,e){var n=9;if("undefined"!=typeof Element&&!Element.prototype.matches){var a=Element.prototype;a.matches=a.matchesSelector||a.mozMatchesSelector||a.msMatchesSelector||a.oMatchesSelector||a.webkitMatchesSelector}t.exports=function(t,e){for(;t&&t.nodeType!==n;){if("function"==typeof t.matches&&t.matches(e))return t;t=t.parentNode}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"NinjaPagination",props:["paginate"],data:function(){return{pageNumberInput:1}},methods:{goToPage:function(t){t>=1&&t<=this.paginate.last_page?(this.$emit("change_page",t),this.pageNumberInput=t):alert("invalid page number")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"tablenav-pages"},[t.paginate.total?n("span",{staticClass:"displaying-num"},[t._v(t._s(t.paginate.total)+" "+t._s(t.$t("items")))]):t._e(),t._v(" "),n("span",{staticClass:"pagination-links"},[1==t.paginate.current_page?[n("span",{staticClass:"tablenav-pages-navspan",attrs:{"aria-hidden":"true"}},[t._v("«")]),t._v(" "),n("span",{staticClass:"tablenav-pages-navspan",attrs:{"aria-hidden":"true"}},[t._v("‹")])]:[n("a",{staticClass:"first-page",attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.goToPage(1)}}},[n("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.$t("First page")))]),n("span",{attrs:{"aria-hidden":"true"}},[t._v("«")])]),t._v(" "),n("a",{staticClass:"prev-page",attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.goToPage(t.paginate.current_page-1)}}},[n("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.$t("Previous page")))]),n("span",{attrs:{"aria-hidden":"true"}},[t._v("‹")])])],t._v(" "),n("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.$t("Current Page")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.pageNumberInput,expression:"pageNumberInput"}],staticClass:"current-page",attrs:{id:"current-page-selector",type:"text",size:"2","aria-describedby":"table-paging"},domProps:{value:t.pageNumberInput},on:{keydown:function(e){if(!("button"in e)&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;e.preventDefault(),t.goToPage(t.pageNumberInput)},input:function(e){e.target.composing||(t.pageNumberInput=e.target.value)}}}),t._v("\n "+t._s(t.$t("of"))+"\n "),n("span",{staticClass:"total-pages"},[t._v(t._s(t.paginate.last_page))]),t._v(" "),t.paginate.current_page==t.paginate.last_page?[n("span",{staticClass:"tablenav-pages-navspan",attrs:{"aria-hidden":"true"}},[t._v("›")]),t._v(" "),n("span",{staticClass:"tablenav-pages-navspan",attrs:{"aria-hidden":"true"}},[t._v("»")])]:[n("a",{staticClass:"next-page",attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.goToPage(t.paginate.current_page+1)}}},[n("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.$t("Next page")))]),n("span",{attrs:{"aria-hidden":"true"}},[t._v("›")])]),t._v(" "),n("a",{staticClass:"last-page",attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.goToPage(t.paginate.last_page)}}},[n("span",{staticClass:"screen-reader-text"},[t._v(t._s(t.$t("Last page")))]),n("span",{attrs:{"aria-hidden":"true"}},[t._v("»")])])]],2)])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("el-table",{directives:[{name:"loading",rawName:"v-loading.body",value:t.pageLoading,expression:"pageLoading",modifiers:{body:!0}}],staticClass:"ninja-tables",staticStyle:{},attrs:{data:t.items,border:""},on:{"selection-change":t.handleSelectionChange}},[n("el-table-column",{attrs:{label:t.$t("ID"),width:"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("router-link",{attrs:{to:{name:"data_items",params:{table_id:e.row.ID}}}},[t._v("\n "+t._s(e.row.ID)+"\n ")])]}}])}),t._v(" "),n("el-table-column",{attrs:{label:t.$t("Title")},scopedSlots:t._u([{key:"default",fn:function(e){return[n("strong",[t.shouldBeVisible(e.row)?[n("router-link",{attrs:{to:{name:"data_items",params:{table_id:e.row.ID}}}},[t._v("\n "+t._s(e.row.post_title)+"\n ")])]:[t._v("\n "+t._s(e.row.post_title)+"\n ")],t._v(" "),n("span",{directives:[{name:"show",rawName:"v-show",value:"publish"!=e.row.post_status,expression:"scope.row.post_status != 'publish'"}]},[t._v("\n ("+t._s(e.row.post_status)+")\n ")])],2),t._v(" "),n("div",{staticClass:"row-actions"},[t.shouldBeVisible(e.row)?n("span",{staticClass:"row-edit"},[n("router-link",{attrs:{to:{name:"data_items",params:{table_id:e.row.ID}}}},[t._v("\n "+t._s(t.$t("Edit"))+"\n ")]),t._v(" |\n ")],1):t._e(),t._v(" "),t.shouldBeVisible(e.row)?n("span",{staticClass:"row-preview"},[n("a",{attrs:{rel:"noopener",href:e.row.preview_url,target:"_blank"}},[t._v(t._s(t.$t("Preview")))]),t._v(" |\n ")]):t._e(),t._v(" "),t.shouldBeVisible(e.row)?n("span",{staticClass:"row-duplicate"},[n("a",{attrs:{href:"#"},on:{click:function(n){n.preventDefault(),t.duplicate(e.row.ID)}}},[t._v(t._s(t.$t("Duplicate")))]),t._v(" |\n ")]):t._e(),t._v(" "),t.shouldBeVisible(e.row)&&e.row.fluentfrom_url?n("span",{staticClass:"row-duplicate"},[n("a",{attrs:{href:e.row.fluentfrom_url}},[t._v(t._s(t.$t("Fluent Form Entries")))]),t._v(" |\n ")]):t._e(),t._v(" "),n("span",{staticClass:"row-delete"},[n("a",{attrs:{href:"#"},on:{click:function(n){n.preventDefault(),t.confirmDeleteTable(e.row.ID)}}},[t._v(t._s(t.$t("Delete")))])])])]}}])}),t._v(" "),n("el-table-column",{attrs:{width:"190",label:t.$t("Data Source")},scopedSlots:t._u([{key:"default",fn:function(e){return[n("strong",[t._v(t._s(t.dataSourceType(e.row)))]),t._v(" "),e.row.remoteURL?[n("el-tooltip",{staticClass:"item",attrs:{effect:"dark",content:e.row.remoteURL,placement:"top-start"}},[n("i",{staticClass:"dashicons dashicons-info"})])]:t._e()]}}])}),t._v(" "),n("el-table-column",{attrs:{width:"250",label:t.$t("ShortCode")},scopedSlots:t._u([{key:"default",fn:function(e){return[n("el-tooltip",{attrs:{effect:"dark",content:"Click to copy shortcode",title:"Click to copy shortcode",placement:"top"}},[n("code",{staticClass:"copy",attrs:{"data-clipboard-text":'[ninja_tables id="'+e.row.ID+'"]'}},[n("i",{staticClass:"el-icon-document"}),t._v(' [ninja_tables id="'+t._s(e.row.ID)+'"]\n ')])])]}}])})],1),t._v(" "),n("div",{staticClass:"pull-right"},[n("el-pagination",{attrs:{"current-page":t.paginate.current_page,"page-sizes":[10,20,50,100],"page-size":t.paginate.per_page,layout:"total, sizes, prev, pager, next, jumper",total:t.paginate.total},on:{"size-change":t.handleSizeChange,"current-change":t.goToPage,"update:currentPage":function(e){t.$set(t.paginate,"current_page",e)}}})],1),t._v(" "),!t.loading&&!t.is_installed&&t.items.length>2&&!t.hasPro?n("div",[n("a",{staticStyle:{display:"block",width:"800px",margin:"40px auto 0px","max-width":"100%"},attrs:{target:"_blank",href:"https://wordpress.org/plugins/fluentform"}},[n("img",{staticStyle:{"max-width":"100%"},attrs:{src:t.img_url_path+"fluent_banner.png"}})])]):t.items.length>3&&!t.hasPro?n("div",{staticClass:"text-center",staticStyle:{"margin-top":"100px"}},[n("hr"),t._v(" "),n("h3",[t._v("Love Ninja Tables? Upgrade to Pro and get more exciting features and Performance")]),t._v(" "),n("a",{staticClass:"button button-primary",attrs:{target:"_blank",href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade"}},[t._v("Upgrade To Pro")])]):t._e()],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(251),n(319),!1,function(t){n(249)},null,null);t.exports=a.exports},function(t,e,n){var a=n(250);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("69ca19d3",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja-add-table .el-main{padding:0 1px 0 15px;min-height:0}.ninja-add-table .el-menu{border-right:initial}.ninja-add-table .el-menu-item .el-icon-fluent-form{height:18px}.ninja-add-table .el-menu-item .dashicons{width:24px;height:18px;margin-right:5px}.ninja-add-table .el-menu-item.is-active{background-color:#0073aa!important}.ninja-add-table .el-table .cell{text-overflow:clip}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(27),o=n.n(a),i=n(110),s=n.n(i),l=n(276),r=n.n(l),c=n(121),u=n.n(c),d=n(122),_=n.n(d),p=n(303),f=n.n(p),m=n(308),v=n.n(m),h=n(28),b=n.n(h);e.default={name:"add_table",components:{wp_editor:o.a,"wp-posts-data-source":s.a,"woo-data-source":r.a,"fluent-form-data-source":u.a,"external-data-source":_.a,ImportTable:f.a,RawSqlForm:v.a,PremiumNotice:b.a},props:{table:{type:Object,default:function(){return{ID:null,post_title:"",post_content:""}}},hasPro:{required:!0}},data:function(){return{activeTabName:"default",btnLoading:!1,activated_features:window.ninja_table_admin.activated_features,has_sql_permission:"yes"==window.ninja_table_admin.sql_permission,editorOption:{modules:{toolbar:[["bold","italic","underline","strike","link"],["blockquote","code-block"],[{header:1},{header:2}],[{list:"ordered"},{list:"bullet"}],[{script:"sub"},{script:"super"}],[{align:[]}],[{direction:"rtl"}]]}},isCollapse:!1,fluentFormIcon:window.ninja_table_admin.fluent_form_icon,wooIcon:window.ninja_table_admin.img_url+"woo-logo.png",has_woo:!!window.ninja_table_admin.has_woocommerce}},methods:{handleTabClick:function(t,e){setTimeout(function(){jQuery(t.$el).find("input:first").focus()},0)},addTable:function(){var t=this;this.btnLoading=!0;var e={action:"ninja_tables_ajax_actions",target_action:"store-a-table",post_title:this.table.post_title,post_content:this.table.post_content,tableId:this.table.ID};jQuery.post(ajaxurl,e).then(function(e){t.$message({showClose:!0,message:e.message,type:"success"}),window.ninjaTableBus.$emit("addedTable"),t.table.ID?t.closeModal():t.fireTableCreated(e.table_id)}).fail(function(e){e.responseJSON.data.message?t.$message({showClose:!0,message:e.responseJSON.data.message,type:"error"}):t.$message({showClose:!0,message:e.responseText,type:"error"})}).always(function(){t.btnLoading=!1})},closeModal:function(){this.$emit("modal_close")},onEditorChange:function(t){t.editor;var e=t.html;t.text;this.table.post_content=e},fireTableCreated:function(t){this.$emit("table_inserted",t)},checkScreenSize:function(){window.innerWidth<1e3?this.isCollapse=!0:this.isCollapse=!1}},mounted:function(){var t=this;this.checkScreenSize(),jQuery(window).resize(function(){t.checkScreenSize()})}}},function(t,e,n){var a=n(253);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("6c745972",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,"button.button.ninja_demo_media_button{position:absolute;z-index:9999999999;cursor:pointer}.wp_vue_editor{width:100%;min-height:100px}.wp_vue_editor_wrapper{position:relative}.wp_vue_editor_wrapper .popover-wrapper{z-index:2;position:absolute;top:0;left:0}.wp_vue_editor_wrapper .popover-wrapper-plaintext{left:auto;right:0;top:-32px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"wp_editor",props:{editor_id:{type:String,default:function(){return"wp_editor_"+Date.now()}},value:{type:String,default:function(){return""}}},data:function(){return{hasWpEditor:!!window.wp.editor,plain_content:this.value,has_pro:!!window.ninja_table_admin.hasPro}},computed:{ninja_editor_id:function(){var t=this.slugify(this.editor_id);return t.match(/^[A-Za-z]+$/)||(t="editor_english_"+Math.floor(1001*Math.random())+"_"+Math.floor(101*Math.random())),"ninja_editor_"+this.slugify(t)}},watch:{plain_content:function(){this.$emit("input",this.plain_content)},value:function(){this.value||this.reloadEditor()}},methods:{initEditor:function(){if(this.hasWpEditor){wp.editor.remove(this.ninja_editor_id);var t=this;wp.editor.initialize(this.ninja_editor_id,{mediaButtons:this.has_pro,mode:"none",tinymce:{toolbar1:"formatselect,bold,italic,bullist,numlist,link,blockquote,alignleft,aligncenter,alignright,strikethrough,underline,forecolor,codeformat,removeformat,undo,redo",valid_elements:"*[*]",forced_root_block:"",setup:function(e){e.on("change",function(e,n){t.changeContentEvent()})}},quicktags:!0}),jQuery("#"+this.ninja_editor_id).on("change",function(e){t.changeContentEvent()})}},slugify:function(t){return t.toString().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,"")},reloadEditor:function(){wp.editor.remove(this.ninja_editor_id),jQuery("#"+this.ninja_editor_id).val(""),this.initEditor()},changeContentEvent:function(){var t=wp.editor.getContent(this.ninja_editor_id);this.$emit("input",t)},showPro:function(){window.ninjaTableBus.$emit("show_pro_popup",1)}},mounted:function(){this.initEditor()},beforeDestroy:function(){}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"wp_vue_editor_wrapper",class:"editor_wrapper_"+t.ninja_editor_id},[t.hasWpEditor?[t.has_pro?t._e():n("button",{staticClass:"button ninja_demo_media_button",attrs:{type:"button"},on:{click:t.showPro}},[n("span",{staticClass:"dashicons dashicons-admin-media"}),t._v(" Add Media (pro)")]),t._v(" "),n("textarea",{staticClass:"wp_vue_editor",attrs:{id:t.ninja_editor_id}},[t._v(t._s(t.value))])]:[t._m(0),t._v(" "),n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.plain_content,expression:"plain_content"}],staticClass:"wp_vue_editor wp_vue_editor_plain",domProps:{value:t.plain_content},on:{input:function(e){e.target.composing||(t.plain_content=e.target.value)}}})]],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",{staticStyle:{"font-style":"italic"}},[e("small",[this._v("WP Editor is only available on WordPress version 4.8 or later. Please Upgrade Your WordPress Core")])])}]}},function(t,e,n){var a=n(257);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("f58ffa2e",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_tables_wpposts .el-checkbox-group{overflow:scroll!important}.ninja_tables_wpposts .el-transfer-panel,.ninja_tables_wpposts .table-rows .el-transfer-panel{width:230px!important}.ninja_tables_wpposts .el-transfer-panel__item{display:block!important}.no-margin{margin:0}.nt_conditions .el-collapse-item.is-active{border:1px solid #ebeef5}.nt_conditions .el-collapse-item.is-active .el-collapse-item__wrap{background:#ebeef5}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(259),o=n.n(a),i=n(264),s=n.n(i),l=n(28),r=n.n(l),c=n(111),u=n.n(c);e.default={name:"WP-Posts",props:{config:{type:Object},tableCreated:{type:Function},hasPLainLayout:{type:Boolean,default:!1}},components:{"wp-post-conditions":o.a,PremiumNotice:r.a,UpgradeNotice:u.a,WpPostMetaQuery:s.a},data:function(){return{loading:!1,saving:!1,title:null,tableId:null,postStatuses:[],all_types:[],all_fields:[],post_types:[],selected_post_types:[],post_types_fields:[],selected_post_types_fields:[],conditions_section:"conditions",conditions:[],meta_query:"meta",metas:[],active_step:0,query_extra:{},activated_features:window.ninja_table_admin.activated_features,hasPro:!!window.ninja_table_admin.hasPro,queryable_fields:["ID","post_author","comment_count","post_date","post_modified","post_status"]}},computed:{query_able_post_types_fields:function(){var t=this;return this.post_types_fields.filter(function(e){return-1!=t.queryable_fields.indexOf(e.key)||-1!=e.key.indexOf(".")})}},methods:{nextStep:function(){var t="";if(this.title||(t+=" The title field is required."),this.selected_post_types.length||(t+=" At least select one post type."),t=jQuery.trim(t))return this.active_step=0,void this.$message({showClose:!0,message:t,type:"error"});this.active_step++>=1&&(this.active_step=0)},handlePostTypeChange:function(t,e,n){var a=this,o=[];this.selected_post_types.forEach(function(t){a.all_types[t].fields.forEach(function(t){o.push({key:t,label:t})})}),this.post_types_fields=this.all_fields.concat(o),this._updateSelectedFields()},_updateSelectedFields:function(){var t=this;if(!this.selected_post_types.length)return this.post_types_fields=[],void(this.selected_post_types_fields=[]);this.selected_post_types_fields.filter(function(t){return!!t}).forEach(function(e,n){var a=e.split(".");a.length>1&&-1==t.selected_post_types.indexOf(a[0])&&t.selected_post_types_fields.splice(n,1)})},save:function(){var t=this;this.saving=!0,jQuery.post(ajaxurl,{action:"ninja_table_wp-posts_create_table",post_title:this.title,tableId:this.tableId,data:{post_types:this.selected_post_types,columns:this.selected_post_types_fields,where:this.conditions,metas:this.metas,query_extra:!(!this.config||!this.config.table)&&this.config.table.query_extra}}).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"}),t.tableCreated(e.data.table_id)}).fail(function(e){var n="",a=e.responseJSON.data.message;for(var o in a)n+=" "+a[o];t.$message({showClose:!0,message:n,type:"error"})}).always(function(e){return t.saving=!1})},getPostTypes:function(){var t=this;this.loading=!0,this.$get({action:"ninja_tables_ajax_actions",target_action:"get_wp_post_types"}).then(function(e){t.all_types=e.data.post_types,t.postStatuses=e.data.postStatuses,jQuery.each(t.all_types,function(e,n){var a="";"private"===n.status&&(a=" (private)"),t.post_types.push({key:e,label:e+a})}),t.all_fields=e.data.post_fields.map(function(t){return{key:t,label:t}}),t.config&&(t.tableId=t.config.table.ID,t.conditions=t.config.table.whereConditions||[],t.metas=t.config.table.metaQuery||[],t.selected_post_types=t.config.table.post_types,t.selected_post_types_fields=t.config.columns.map(function(t){return t.original_name}),t.handlePostTypeChange())}).fail(function(t){console.log(t)}).always(function(){t.loading=!1})}},mounted:function(){this.getPostTypes()}}},function(t,e,n){var a=n(0)(n(262),n(263),!1,function(t){n(260)},null,null);t.exports=a.exports},function(t,e,n){var a=n(261);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("921d84e4",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".el-row{margin-bottom:20px}.el-row:last-child{margin-bottom:0}.wp-post-conditions-el-picker{z-index:9999!important}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};function o(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}e.default={name:"WPPostConditions",props:["config","fields","conditions","allPostTypes","postStatuses","selected_post_types"],data:function(){return{default_condition:{field:null,operator:null,value:null,operators:[],selectableOptions:[],is_selectable:"false"},operators:[],common_operators:[{key:"=",value:"Equal To"},{key:"!=",value:"Not Equal To"}],uncommon_operators:[{key:"IN",value:"In"},{key:"NOT IN",value:"Not In"}],other_operators:[{key:">",value:"Greater Than"},{key:">=",value:"Greater Than Or Equal To"},{key:"<",value:"Less Than"},{key:"<=",value:"Less Than Or Equal To"}],query_limit:0,orderByFields:["ID","post_date","post_author","post_title","post_status","menu_order","comment_count"],authors:[]}},watch:{selected_post_types:function(){this.getPostAuthors()}},methods:{addCondition:function(t){this.conditions.push(a({},this.default_condition))},removeCondition:function(t,e){this.conditions.splice(t,1)},setOperators:function(t,e){e.operators=[].concat(o(this.common_operators)),"comment_count"==t&&e.operators.map(function(t,n){"!="==t.key&&e.operators.splice(n,1)}),-1!=["ID","comment_count","post_date","post_modified"].indexOf(t)?e.operators=[].concat(o(e.operators.concat(this.other_operators))):-1==t.indexOf(".")&&-1==["post_author","post_status"].indexOf(t)||(e.operators=[].concat(o(this.uncommon_operators))),this.setValueField(t,e)},setValueField:function(t,e){if("post_status"==t)e.value=[],e.is_selectable="true",e.selectableOptions=this.postStatuses;else if("post_author"==t)e.value=[],e.is_selectable="true",e.selectableOptions=this.authors.map(function(t){return{key:t.ID,label:t.display_name}});else if(-1!=t.indexOf(".")){e.value=[],e.is_selectable="true";var n=[].concat(o(t.split("."))),a=n[0],i=n[1],s=this.allPostTypes[a].taxonomies[i];e.selectableOptions=s.map(function(t){return{key:t.slug,label:t.name}})}else e.value=null,e.is_selectable="false",e.selectableOptions=[]},isDateField:function(t){return-1!=["post_date","post_modified"].indexOf(t.field)},isSelectable:function(t){return"true"==t.is_selectable},getPostAuthors:function(){var t=this;jQuery.getJSON(ajaxurl,{action:"ninja_tables_ajax_actions",target_action:"get_wp_post_authors",post_types:this.selected_post_types}).then(function(e){t.authors=e.data.authors})}},mounted:function(){this.getPostAuthors()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"wp-post-conditions"},[n("el-row",[n("el-col",{attrs:{md:21}},[n("el-alert",{attrs:{type:"info",title:"",closable:!1,description:"You can add additional conditions/where clauses here.","show-icon":""}})],1),t._v(" "),n("el-col",{staticStyle:{"text-align":"right"},attrs:{md:3}},[n("el-button",{staticStyle:{"margin-top":"4px"},attrs:{type:"primary",icon:"el-icon-plus",size:"small"},on:{click:function(e){t.addCondition(e)}}})],1)],1),t._v(" "),t._l(t.conditions,function(e,a){return[n("el-row",{attrs:{gutter:20}},[n("el-col",{attrs:{md:7,sm:7}},[n("el-select",{attrs:{placeholder:"Select"},on:{change:function(n){t.setOperators(n,e)}},model:{value:e.field,callback:function(n){t.$set(e,"field",n)},expression:"condition.field"}},t._l(t.fields,function(t){return n("el-option",{key:t.key,attrs:{label:t.label,value:t.key}})}))],1),t._v(" "),n("el-col",{attrs:{md:7,sm:7}},[n("el-select",{attrs:{placeholder:"Select"},model:{value:e.operator,callback:function(n){t.$set(e,"operator",n)},expression:"condition.operator"}},t._l(e.operators,function(t){return n("el-option",{key:t.key,attrs:{label:t.value,value:t.key}})}))],1),t._v(" "),n("el-col",{attrs:{md:7,sm:7}},[t.isSelectable(e)||t.isDateField(e)?!t.isSelectable(e)&&t.isDateField(e)?n("el-date-picker",{attrs:{"popper-class":"wp-post-conditions-el-picker",type:"datetime",placeholder:"Pick a date",format:"yyyy-MM-dd HH:mm:ss","value-format":"yyyy-MM-dd HH:mm:ss"},model:{value:e.value,callback:function(n){t.$set(e,"value",n)},expression:"condition.value"}}):t.isSelectable(e)?n("el-select",{attrs:{multiple:"",placeholder:"Select"},model:{value:e.value,callback:function(n){t.$set(e,"value",n)},expression:"condition.value"}},t._l(e.selectableOptions,function(t){return n("el-option",{key:t.key,attrs:{label:t.label,value:t.key}})})):t._e():n("el-input",{attrs:{placeholder:"Value"},model:{value:e.value,callback:function(n){t.$set(e,"value",n)},expression:"condition.value"}})],1),t._v(" "),n("el-col",{staticStyle:{"text-align":"right"},attrs:{md:3,sm:3}},[n("el-button",{staticStyle:{"margin-top":"4px"},attrs:{type:"danger",icon:"el-icon-delete",size:"small"},on:{click:function(e){t.removeCondition(a,e)}}})],1)],1)]}),t._v(" "),t.config&&t.config.table.query_extra?n("div",{staticClass:"ninja_post_query_limit"},[n("div",{staticClass:"ninja_form_group"},[n("label",[t._v(t._s(t.$t("Query Limit for Frontend"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Query Limit")]),t._v(" "),n("p",[t._v("\n Please specify how many posts/CPTs you want to show in total, Leave blank to show all\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{type:"number",size:"small"},model:{value:t.config.table.query_extra.query_limit,callback:function(e){t.$set(t.config.table.query_extra,"query_limit",e)},expression:"config.table.query_extra.query_limit"}}),t._v(" "),t._m(0)],1),t._v(" "),n("div",{staticClass:"ninja_form_group"},[n("label",[t._v(t._s(t.$t("Order By Column"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Order By Column")]),t._v(" "),n("p",[t._v("\n Please specify order by column. The script will order by with the selected column\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{attrs:{size:"mini"},model:{value:t.config.table.query_extra.order_by_column,callback:function(e){t.$set(t.config.table.query_extra,"order_by_column",e)},expression:"config.table.query_extra.order_by_column"}},t._l(t.orderByFields,function(t){return n("el-option",{key:t,attrs:{value:t,label:t}})}))],1),t._v(" "),n("div",{staticClass:"ninja_form_group",staticStyle:{"margin-top":"20px"}},[n("label",[t._v(t._s(t.$t("Order By Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Order By Type")]),t._v(" "),n("p",[t._v("\n Please specify order by type. The script will order with your selected type\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{attrs:{size:"mini"},model:{value:t.config.table.query_extra.order_by,callback:function(e){t.$set(t.config.table.query_extra,"order_by",e)},expression:"config.table.query_extra.order_by"}},[n("el-option",{attrs:{value:"ASC",label:"Ascending"}}),t._v(" "),n("el-option",{attrs:{value:"DESC",label:"Descending"}})],1)],1)]):t._e()],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",[e("small",[this._v("Please specify how many posts/CPTs you want to show in total, Leave blank to show all")])])}]}},function(t,e,n){var a=n(0)(n(267),n(268),!1,function(t){n(265)},null,null);t.exports=a.exports},function(t,e,n){var a=n(266);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("d5fbe0d6",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".el-row{margin-bottom:20px}.el-row:last-child{margin-bottom:0}.wp-post-conditions-el-picker{z-index:9999!important}.compact{padding:0!important;margin-top:3px!important}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};e.default={name:"WPPostMetaQuery",props:["metas"],data:function(){return{default_condition:{field:null,operator:null,value:null,operators:[],selectableOptions:[],is_selectable:"false"},operators:[{key:"=",value:"Equal To"},{key:"!=",value:"Not Equal To"},{key:"IN",value:"In"},{key:"NOT IN",value:"Not In"},{key:">",value:"Greater Than"},{key:">=",value:"Greater Than Or Equal To"},{key:"<",value:"Less Than"},{key:"<=",value:"Less Than Or Equal To"}]}},methods:{addCondition:function(t){this.metas.push(a({},this.default_condition))},removeCondition:function(t,e){this.metas.splice(t,1)},setOperators:function(t,e){e.operators=[].concat(function(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}(this.operators)),this.setValueField(t,e)},setValueField:function(t,e){e.value=null,e.is_selectable="false",e.selectableOptions=[]},shouldShowInfo:function(t){return-1!==["IN","NOT IN"].indexOf(t)}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"wp-post-conditions"},[n("el-row",[n("el-col",{attrs:{md:21}},[n("el-alert",{attrs:{type:"info",title:"",closable:!1,description:"You can add additional meta query here.","show-icon":""}})],1),t._v(" "),n("el-col",{staticStyle:{"text-align":"right"},attrs:{md:3}},[n("el-button",{staticStyle:{"margin-top":"4px"},attrs:{type:"primary",icon:"el-icon-plus",size:"small"},on:{click:function(e){t.addCondition(e)}}})],1)],1),t._v(" "),t._l(t.metas,function(e,a){return[n("el-row",{attrs:{gutter:20}},[n("el-col",{attrs:{md:7,sm:7}},[n("el-input",{attrs:{placeholder:"Meta Key"},on:{change:function(n){t.setOperators(n,e)}},model:{value:e.field,callback:function(n){t.$set(e,"field",n)},expression:"condition.field"}})],1),t._v(" "),n("el-col",{attrs:{md:7,sm:7}},[n("el-select",{attrs:{placeholder:"Select"},model:{value:e.operator,callback:function(n){t.$set(e,"operator",n)},expression:"condition.operator"}},t._l(e.operators,function(t){return n("el-option",{key:t.key,attrs:{label:t.value,value:t.key}})}))],1),t._v(" "),n("el-col",{attrs:{md:7,sm:7}},[n("el-input",{attrs:{placeholder:"Value"},model:{value:e.value,callback:function(n){t.$set(e,"value",n)},expression:"condition.value"}}),t._v(" "),t.shouldShowInfo(e.operator)?[n("el-alert",{staticClass:"compact",attrs:{title:"enter comma separated value",type:"info",closable:!1}})]:t._e()],2),t._v(" "),n("el-col",{staticStyle:{"text-align":"right"},attrs:{md:3,sm:3}},[n("el-button",{staticStyle:{"margin-top":"4px"},attrs:{type:"danger",icon:"el-icon-delete",size:"small"},on:{click:function(e){t.removeCondition(a,e)}}})],1)],1)]})],2)},staticRenderFns:[]}},function(t,e,n){var a=n(270);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("17456e14",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".premium-notice .buy_now_button[data-v-06fd6e1a]{text-decoration:none}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"PremiumNotice",props:["highlight"]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-alert",{staticClass:"premium-notice",attrs:{title:"",type:"warning",closable:!1}},[n("p",[t._v("\n This is a Premium feature. Get\n "),t.highlight?n("b",[t._v(t._s(t.highlight)+",")]):t._e(),t._v(" "),n("b",[t._v("unlimited customizations")]),t._v(",\n "),n("b",[t._v("data filters")]),t._v(",\n "),n("b",[t._v("professional looks")]),t._v(",\n "),n("b",[t._v("Many More Integrations")]),t._v("\n and so many things from the Pro version.\n ")]),t._v(" "),n("a",{staticClass:"buy_now_button el-button el-button--danger el-button--mini",attrs:{href:"https://wpmanageninja.com/ninja-tables/ninja-tables-pro-pricing/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade"}},[t._v("\n Get Premium Version Now\n ")])])},staticRenderFns:[]}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"UpgradeNotice"}},function(t,e){t.exports={render:function(){var t=this.$createElement,e=this._self._c||t;return e("el-alert",{staticClass:"update-notice",attrs:{title:"",type:"warning",closable:!1,"show-icon":""}},[e("p",[this._v("\n Please update Ninja Tables Pro Plugin to latest version. Required Ninja Table Version: 3.0 or later\n ")])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"ninja_tables_wpposts"},[t.hasPro?t.activated_features.wp_posts_table?n("div",[t.hasPLainLayout?[n("el-row",[n("el-col",{staticClass:"table-rows",attrs:{md:12}},[n("el-transfer",{staticStyle:{"text-align":"left",display:"block"},attrs:{data:t.post_types,titles:["All Types","Selected Types"]},on:{change:t.handlePostTypeChange},model:{value:t.selected_post_types,callback:function(e){t.selected_post_types=e},expression:"selected_post_types"}})],1),t._v(" "),n("el-col",{staticClass:"table-rows",attrs:{md:12}},[n("el-transfer",{staticStyle:{"text-align":"left",display:"block"},attrs:{data:t.post_types_fields,titles:["All Properties","Selected Properties"]},model:{value:t.selected_post_types_fields,callback:function(e){t.selected_post_types_fields=e},expression:"selected_post_types_fields"}})],1)],1),t._v(" "),n("el-row",[n("el-collapse",{staticClass:"nt_conditions",model:{value:t.conditions_section,callback:function(e){t.conditions_section=e},expression:"conditions_section"}},[n("el-collapse-item",{attrs:{name:"1"}},[n("template",{slot:"title"},[n("h4",{staticClass:"no-margin"},[t._v("Conditions")])]),t._v(" "),n("wp-post-conditions",{attrs:{config:t.config,selected_post_types:t.selected_post_types,postStatuses:t.postStatuses,conditions:t.conditions,allPostTypes:t.all_types,fields:t.query_able_post_types_fields}})],2)],1),t._v(" "),n("el-collapse",{staticClass:"nt_conditions",model:{value:t.meta_query,callback:function(e){t.meta_query=e},expression:"meta_query"}},[n("el-collapse-item",{attrs:{name:"1"}},[n("template",{slot:"title"},[n("h4",{staticClass:"no-margin"},[t._v("Meta Query")])]),t._v(" "),n("wp-post-meta-query",{attrs:{config:t.config,metas:t.metas,fields:t.query_able_post_types_fields}})],2)],1)],1),t._v(" "),n("el-row",[n("el-button",{staticStyle:{float:"right","margin-top":"12px"},attrs:{type:"success",size:"small",loading:t.saving},on:{click:t.save}},[t._v("Update\n ")])],1)]:t._e(),t._v(" "),t.hasPLainLayout?t._e():[n("h3",[t._v("\n Construct Table from Posts / CPTs\n ")]),t._v(" "),t._m(0),t._v(" "),n("el-steps",{attrs:{active:t.active_step,"align-center":""}},[n("el-step",{attrs:{title:"Step 1"}}),t._v(" "),n("el-step",{attrs:{title:"Step 2"}})],1),t._v(" "),0==t.active_step?[n("el-row",{staticStyle:{"margin-top":"20px"}},[n("el-input",{attrs:{placeholder:"Title"},model:{value:t.title,callback:function(e){t.title=e},expression:"title"}})],1),t._v(" "),n("el-row",{staticStyle:{"margin-top":"20px"}},[n("div",{staticStyle:{"text-align":"center"}},[n("el-transfer",{staticStyle:{"text-align":"left",display:"block"},attrs:{data:t.post_types,titles:["All Types","Selected Types"]},on:{change:t.handlePostTypeChange},model:{value:t.selected_post_types,callback:function(e){t.selected_post_types=e},expression:"selected_post_types"}})],1)])]:t._e(),t._v(" "),1==t.active_step?[n("el-row",{staticStyle:{"margin-top":"20px"}},[n("div",{staticStyle:{"text-align":"center"}},[n("el-transfer",{staticStyle:{"text-align":"left",display:"block"},attrs:{data:t.post_types_fields,titles:["All Properties","Selected Properties"]},model:{value:t.selected_post_types_fields,callback:function(e){t.selected_post_types_fields=e},expression:"selected_post_types_fields"}})],1)]),t._v(" "),n("el-row",{staticStyle:{"margin-top":"20px"}},[n("div",[n("el-collapse",{attrs:{accordion:"",value:"conditions"},model:{value:t.conditions_section,callback:function(e){t.conditions_section=e},expression:"conditions_section"}},[n("el-collapse-item",{attrs:{name:"conditions",title:"Conditions"}},[t.conditions_section?n("wp-post-conditions",{attrs:{postStatuses:t.postStatuses,selected_post_types:t.selected_post_types,conditions:t.conditions,allPostTypes:t.all_types,fields:t.query_able_post_types_fields}}):t._e()],1)],1)],1)])]:t._e(),t._v(" "),n("el-row",[n("el-col",{attrs:{md:12}},[n("el-button",{staticStyle:{"margin-top":"12px"},attrs:{type:"primary"},on:{click:t.nextStep}},[t._v("\n "+t._s(t.active_step>0?"Prev":"Next")+"\n ")])],1),t._v(" "),n("el-col",{attrs:{md:12}},[t.active_step>0?n("el-button",{staticStyle:{float:"right","margin-top":"12px"},attrs:{type:"success",disabled:!t.activated_features.wp_posts_table,loading:t.saving},on:{click:t.save}},[t._v("Save\n ")]):t._e()],1)],1)]],2):[n("upgrade-notice")]:[n("premium-notice",{attrs:{highlight:"Create nice tables from your existings posts/pages/custom post types"}})]],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",{staticClass:"ninja_subtitle"},[this._v("\n Displays website content in a searchable, sortable with Ninja Tables. It supports custom posts,\n pages, &\n custom post types. "),e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/wp-posts-table/"}},[this._v("Learn more\n about this module")])])}]}},function(t,e,n){var a=n(0)(n(277),n(296),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(112),o=n.n(a);e.default={name:"woo_product_table",components:{WooNav:o.a},data:function(){return{loading:!1,saving:!1,query_selections:{},post_title:"",query_conditions:{}}},props:{tableCreated:{type:Function}},methods:{save:function(){var t=this;this.post_title?(this.saving=!0,jQuery.post(ajaxurl,{action:"ninja_table_woocommerece_create_table",post_title:this.post_title,query_selections:this.query_selections,query_conditions:this.query_conditions}).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"}),t.tableCreated(e.data.table_id)}).fail(function(e){var n="",a=e.responseJSON.data.message;for(var o in a)n+=" "+a[o];t.$message({showClose:!0,message:n,type:"error"})}).always(function(e){return t.saving=!1})):this.$message({showClose:!0,message:"Please Provide a Table Title",type:"error"})}},mounted:function(){}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(14),o=n.n(a);e.default={name:"woo_conditions",props:["query_selections","query_conditions"],data:function(){return{query_terms:[],loading:!1,product_orders:{post_title:"Product Title",date:"Date",menu_order:"Menu Order",average_rating:"Average Rating",price:"price",popularity:"Popularity (Sales)",random:"Random"}}},methods:{getWooSettings:function(){var t=this;this.loading=!0,this.$get({action:"ninja_table_woocommerece_get_options"}).then(function(e){var n=e.data.query_terms;o()(n,function(e,n){t.query_selections[n]||t.$set(t.query_selections,n,[])}),t.query_terms=n}).fail(function(t){}).always(function(){t.loading=!1})}},mounted:function(){this.getWooSettings()}}},function(t,e){t.exports=function(t,e){for(var n=-1,a=null==t?0:t.length;++n<a&&!1!==e(t[n],n,t););return t}},function(t,e,n){var a=n(281),o=n(293)(a);t.exports=o},function(t,e,n){var a=n(282),o=n(37);t.exports=function(t,e){return t&&a(t,e,o)}},function(t,e,n){var a=n(283)();t.exports=a},function(t,e){t.exports=function(t){return function(e,n,a){for(var o=-1,i=Object(e),s=a(e),l=s.length;l--;){var r=s[t?l:++o];if(!1===n(i[r],r,i))break}return e}}},function(t,e,n){var a=n(285),o=n(113),i=n(4),s=n(114),l=n(116),r=n(117),c=Object.prototype.hasOwnProperty;t.exports=function(t,e){var n=i(t),u=!n&&o(t),d=!n&&!u&&s(t),_=!n&&!u&&!d&&r(t),p=n||u||d||_,f=p?a(t.length,String):[],m=f.length;for(var v in t)!e&&!c.call(t,v)||p&&("length"==v||d&&("offset"==v||"parent"==v)||_&&("buffer"==v||"byteLength"==v||"byteOffset"==v)||l(v,m))||f.push(v);return f}},function(t,e){t.exports=function(t,e){for(var n=-1,a=Array(t);++n<t;)a[n]=e(n);return a}},function(t,e,n){var a=n(10),o=n(6),i="[object Arguments]";t.exports=function(t){return o(t)&&a(t)==i}},function(t,e){t.exports=function(){return!1}},function(t,e,n){var a=n(10),o=n(74),i=n(6),s={};s["[object Float32Array]"]=s["[object Float64Array]"]=s["[object Int8Array]"]=s["[object Int16Array]"]=s["[object Int32Array]"]=s["[object Uint8Array]"]=s["[object Uint8ClampedArray]"]=s["[object Uint16Array]"]=s["[object Uint32Array]"]=!0,s["[object Arguments]"]=s["[object Array]"]=s["[object ArrayBuffer]"]=s["[object Boolean]"]=s["[object DataView]"]=s["[object Date]"]=s["[object Error]"]=s["[object Function]"]=s["[object Map]"]=s["[object Number]"]=s["[object Object]"]=s["[object RegExp]"]=s["[object Set]"]=s["[object String]"]=s["[object WeakMap]"]=!1,t.exports=function(t){return i(t)&&o(t.length)&&!!s[a(t)]}},function(t,e,n){(function(t){var a=n(38),o="object"==typeof e&&e&&!e.nodeType&&e,i=o&&"object"==typeof t&&t&&!t.nodeType&&t,s=i&&i.exports===o&&a.process,l=function(){try{var t=i&&i.require&&i.require("util").types;return t||s&&s.binding&&s.binding("util")}catch(t){}}();t.exports=l}).call(e,n(115)(t))},function(t,e){var n=Object.prototype;t.exports=function(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||n)}},function(t,e,n){var a=n(292)(Object.keys,Object);t.exports=a},function(t,e){t.exports=function(t,e){return function(n){return t(e(n))}}},function(t,e,n){var a=n(39);t.exports=function(t,e){return function(n,o){if(null==n)return n;if(!a(n))return t(n,o);for(var i=n.length,s=e?i:-1,l=Object(n);(e?s--:++s<i)&&!1!==o(l[s],s,l););return n}}},function(t,e,n){var a=n(41);t.exports=function(t){return"function"==typeof t?t:a}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"ntn_query_selections"},[t._l(t.query_terms,function(e,a){return n("div",{staticClass:"nt_each_selection"},[n("div",{staticClass:"nt_query_header"},[n("h3",[t._v(t._s(e.title))]),t._v(" "),n("p",[t._v(t._s(e.description))])]),t._v(" "),n("div",{staticClass:"nt_query_body"},[n("el-checkbox-group",{model:{value:t.query_selections[a],callback:function(e){t.$set(t.query_selections,a,e)},expression:"query_selections[term_name]"}},t._l(e.terms,function(e){return n("el-checkbox",{key:e.slug,attrs:{label:e.slug}},[t._v(t._s(e.name)+" ("+t._s(e.count)+")\n ")])}))],1)])}),t._v(" "),n("div",{staticClass:"nt_each_selection"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.query_conditions.hide_out_of_stock,callback:function(e){t.$set(t.query_conditions,"hide_out_of_stock",e)},expression:"query_conditions.hide_out_of_stock"}},[t._v("\n Hide "),n("b",[t._v("out of stocks")]),t._v(" items\n ")])],1),t._v(" "),n("div",{staticClass:"nt_each_selection"},[n("label",[t._v("\n Initial Order By\n "),n("el-select",{attrs:{size:"mini",placeholder:"Order By"},model:{value:t.query_conditions.order_by,callback:function(e){t.$set(t.query_conditions,"order_by",e)},expression:"query_conditions.order_by"}},t._l(t.product_orders,function(t,e){return n("el-option",{key:e,attrs:{label:t,value:e}})})),t._v(" "),n("el-select",{directives:[{name:"show",rawName:"v-show",value:t.query_conditions.order_by&&"random"!=t.query_conditions.order_by,expression:"query_conditions.order_by && query_conditions.order_by != 'random'"}],attrs:{size:"mini",placeholder:"Order By Type"},model:{value:t.query_conditions.order_by_type,callback:function(e){t.$set(t.query_conditions,"order_by_type",e)},expression:"query_conditions.order_by_type"}},[n("el-option",{attrs:{label:"Assending Way",value:"ASC"}}),t._v(" "),n("el-option",{attrs:{label:"Descending Way",value:"DESC"}})],1)],1)])],2)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"woo_table_creator"},[t._m(0),t._v(" "),n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"name"}},[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.post_title,expression:"post_title"}],staticClass:"form-control",attrs:{type:"text",id:"name",placeholder:"Enter a title to identify your table"},domProps:{value:t.post_title},on:{input:function(e){e.target.composing||(t.post_title=e.target.value)}}})]),t._v(" "),n("woo-nav",{attrs:{query_selections:t.query_selections,query_conditions:t.query_conditions}}),t._v(" "),n("div",{staticClass:"form-group"},[n("el-button",{attrs:{loading:t.saving,type:"primary",size:"small"},on:{click:function(e){t.save()}}},[t._v("\n Create Products Table\n ")])],1)],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"nt_module_header"},[e("h3",[this._v("\n Construct Table from Your WooCommerce Products\n ")]),this._v(" "),e("p",{staticClass:"ninja_subtitle"},[this._v("\n Displays products content in a searchable, sortable with Ninja Tables. "),e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/ninja-tables/woocommerce-product-table/"}},[this._v("Learn more\n about wocommerece integration")])])])}]}},function(t,e,n){var a=n(298);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("9f2741de",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".fluent-form-promo p{font-size:medium}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"FluentForm",props:{tableCreated:{type:Function,required:!0},editing:{type:Boolean},config:{type:Object}},data:function(){return{installing:!1,fetching:!1,forms:[],fields:[],btnLoading:!1,post_title:"",form:{id:null,fields:[],entry_status:"all",entry_limit:1e3},hasFluentForm:!!window.ninja_table_admin.hasFluentForm,isFluentFormUpdated:!!window.ninja_table_admin.isFluentFormUpdated}},methods:{fetchForms:function(){var t=this;this.fetching=!0,this.$get({action:"ninja_tables_get-fluentform-forms"}).then(function(e){return t.forms=e.data}).fail(function(t){return console.log(t)}).always(function(){t.fetching=!1})},handleFormSelectionChange:function(t){var e=this;this.$get({form_Id:t,action:"ninja-tables_get-fluentform-fields"}).then(function(t){e.fields=t.data,e.editing&&(e.form.entry_limit=e.config.table.entry_limit,e.form.entry_status=e.config.table.entry_status,e.$nextTick(function(){var t=e.config.columns.map(function(t){return t.original_name});e.fields.filter(function(e){return-1!=t.indexOf(e.name)}).forEach(function(t){e.$refs.rowSelectableTable.toggleRowSelection(t)})}))}).fail(function(t){}).always(function(){})},handleFieldsSelectionChange:function(t){this.form.fields=t},save:function(){var t=this;this.btnLoading=!0,this.config&&this.config.table.current_user_entry_only&&(this.form.current_user_entry_only=this.config.table.current_user_entry_only),jQuery.post(ajaxurl,{action:"ninja_tables_save_fluentform_table",post_title:this.post_title,form:this.form,table_Id:this.config&&this.config.table.ID||null}).then(function(e){return t.tableCreated(e.data.table_id)}).fail(function(e){var n="",a=e.responseJSON.data.message;for(var o in a)n+=" "+a[o];t.$message({showClose:!0,message:n,type:"error"})}).always(function(e){return t.btnLoading=!1})},installFluentFrom:function(){var t=this;this.installing=!0,jQuery.post(ajaxurl,{action:"ninja_tables_ajax_actions",target_action:"install_fluent_form"}).then(function(e){t.$message.success(e.data.message),e.data.redirect_url&&(window.location.href=e.data.redirect_url)}).fail(function(e){t.$message.error(e.responseJSON.message)}).always(function(){t.installing=!1})}},mounted:function(){this.hasFluentForm&&(this.editing?this.handleFormSelectionChange(this.form.id=this.config.table.fluentFormFormId):this.fetchForms())}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_modal-body"},[t.editing?t._e():n("h3",[t._v("\n Construct Table from WP Fluent Form Entries\n ")]),t._v(" "),t.isFluentFormUpdated?[t.editing?t._e():n("p",{staticClass:"ninja_subtitle"},[t._v("\n Prepare your table from your existing WP Fluent Forms submissions. It can be used to easily showcase\n your form submissions.\n "),n("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/wp-fluent-form-integration/"}},[t._v("Click\n here to learn more about WP Fluent From Integration")])]),t._v(" "),t.editing?t._e():n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"name"}},[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.post_title,expression:"post_title"}],staticClass:"form-control",attrs:{type:"text",id:"name",placeholder:"Enter a title to identify your table"},domProps:{value:t.post_title},on:{input:function(e){e.target.composing||(t.post_title=e.target.value)}}})]),t._v(" "),t.editing?t._e():n("div",{staticClass:"form-group"},[n("el-select",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}],staticStyle:{width:"100%"},attrs:{filterable:"",placeholder:"Select a Form"},on:{change:t.handleFormSelectionChange},model:{value:t.form.id,callback:function(e){t.$set(t.form,"id",e)},expression:"form.id"}},t._l(t.forms,function(t){return n("el-option",{key:t.id,attrs:{label:t.id+" : "+t.title,value:t.id}})}))],1),t._v(" "),t.form.id?n("div",{staticClass:"form-group"},[n("el-table",{ref:"rowSelectableTable",staticStyle:{width:"100% !important"},attrs:{data:t.fields,"empty-text":"Loading..."},on:{"selection-change":t.handleFieldsSelectionChange}},[n("el-table-column",{attrs:{type:"selection"}}),t._v(" "),n("el-table-column",{attrs:{prop:"label",label:"Select Entry Fields"}})],1)],1):t._e(),t._v(" "),n("div",{staticClass:"form-group"},[n("strong",[t._v("Options (Optional)")]),t._v(" "),n("hr"),t._v(" "),n("el-row",{staticStyle:{"margin-top":"15px"},attrs:{gutter:20}},[n("el-col",{attrs:{md:12}},[n("el-row",[n("el-col",{staticStyle:{"margin-top":"10px"},attrs:{md:5}},[n("strong",[n("el-tooltip",{attrs:{placement:"right",effect:"light",content:"Maximun records to show in frontend, keep empty to show all."}},[n("i",{staticClass:"el-icon-info el-text-info"})]),t._v("\n Max Records:\n ")],1)]),t._v(" "),n("el-col",{attrs:{md:19}},[n("el-input",{model:{value:t.form.entry_limit,callback:function(e){t.$set(t.form,"entry_limit",e)},expression:"form.entry_limit"}})],1)],1)],1),t._v(" "),n("el-col",{staticStyle:{"margin-top":"10px"},attrs:{md:12}},[n("el-row",[n("el-col",{attrs:{md:4}},[n("strong",[n("el-tooltip",{attrs:{placement:"right",effect:"light",content:"Select what type of entries you want to show from fluent form."}},[n("i",{staticClass:"el-icon-info el-text-info"})]),t._v("\n Entry Type:\n ")],1)]),t._v(" "),n("el-col",{staticStyle:{"margin-top":"3px"},attrs:{md:20}},[n("el-radio-group",{model:{value:t.form.entry_status,callback:function(e){t.$set(t.form,"entry_status",e)},expression:"form.entry_status"}},[n("el-radio",{attrs:{label:"all"}},[t._v("All")]),t._v(" "),n("el-radio",{attrs:{label:"read"}},[t._v("Read")]),t._v(" "),n("el-radio",{attrs:{label:"unread"}},[t._v("Unread")])],1)],1)],1)],1)],1),t._v(" "),t.config&&t.config.table?[n("br"),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.config.table.current_user_entry_only,callback:function(e){t.$set(t.config.table,"current_user_entry_only",e)},expression:"config.table.current_user_entry_only"}},[t._v("Show current user submissions only at frontend")])]:t._e()],2),t._v(" "),n("hr"),t._v(" "),n("div",{staticClass:"form-group"},[n("el-button",{staticStyle:{"margin-top":"12px",float:"right"},attrs:{size:"small",type:"primary",loading:t.btnLoading},on:{click:t.save}},[t._v(t._s(t.editing?t.$t("Update"):t.$t("Save"))+"\n ")])],1)]:t.hasFluentForm?[n("el-alert",{staticClass:"premium-notice",attrs:{title:"",type:"warning",closable:!1,"show-icon":""}},[n("p",[t._v("To use this feature your WP Fluent Form need to be updated. Please update WP Fluent From from plugins\n screen")])]),t._v(" "),n("h4",[t._v("See the form in action:")]),t._v(" "),n("br"),t._v(" "),t._m(0)]:n("div",{staticClass:"fluent-form-promo"},[t._m(1),t._v(" "),n("div",[n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.installing,expression:"installing"}],attrs:{type:"success"},on:{click:t.installFluentFrom}},[t.installing?n("span",[t._v("Installing WP Fluent From...")]):n("span",[t._v("Install Fluent Form Now")])]),t._v(" "),t.installing?n("p",[t._v("Please wait while installing WP Fluent From")]):t._e()],1),t._v(" "),n("h4",[t._v("See the form in action:")]),t._v(" "),n("br"),t._v(" "),t._m(2)])],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticStyle:{position:"relative","padding-bottom":"56.25%","padding-top":"25px",height:"0"}},[e("iframe",{staticStyle:{position:"absolute",top:"0",left:"0",width:"100%",height:"100%"},attrs:{width:"700",height:"394",src:"https://www.youtube.com/embed/XxBrmuhu6yQ",frameborder:"0",allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:""}})])},function(){var t=this.$createElement,e=this._self._c||t;return e("p",[e("a",{attrs:{href:"https://wordpress.org/plugins/fluentform",target:"_blank"}},[this._v("WP Fluent Form")]),this._v(" is a WordPress\n Contact Form plugin packed with all the premium features you would need to create\n a responsive, customizable, drag and drop form. Using this module, You can easily show your form entries\n in Ninja Tables.\n ")])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticStyle:{position:"relative","padding-bottom":"56.25%","padding-top":"25px",height:"0"}},[e("iframe",{staticStyle:{position:"absolute",top:"0",left:"0",width:"100%",height:"100%"},attrs:{width:"700",height:"394",src:"https://www.youtube.com/embed/XxBrmuhu6yQ",frameborder:"0",allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:""}})])}]}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(28),o=n.n(a),i=n(111),s=n.n(i),l=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};e.default={name:"Remote-Data-Source",components:{PremiumNotice:o.a,UpgradeNotice:s.a},props:{columns:{type:Array},type:{type:String,required:!0},tableCreated:{type:Function,required:!0},hasPro:{required:!0},table:{type:Object,default:function(){return{post_title:"",remote_url:"",fields:[],table_id:null}}},editing:{type:Boolean,default:!1},activated_features:{type:Object,default:function(){return{}}}},data:function(){return{fields:[],active_step:0,saving:!1,fetching:!1}},methods:{nextStep:function(){var t="";if(this.table.post_title||(t+=" The title field is required."),this.table.remote_url||(t+=" The url field is required."),t=jQuery.trim(t))return this.active_step=0,void this.$message({showClose:!0,message:t,type:"error"});this.active_step++>=1?this.active_step=0:this.fatchRemoteData()},fatchRemoteData:function(){var t=this;this.fetching=!0;var e=l({action:"ninja_table_external_data_source_create"},this.table,{type:this.type,get_headers_only:!0});delete e.custom_css,jQuery.getJSON(ajaxurl,e).then(function(e){var n=[];if(jQuery.each(e.data,function(t){return n.push({name:t})}),t.fields=n,t.editing){var a=t.columns.map(function(t){return t.original_name});t.$nextTick(function(){t.fields.filter(function(t){return-1!=a.indexOf(t.name)}).forEach(function(e){t.$refs.rowSelectableTable.toggleRowSelection(e)})})}}).fail(function(e){var n="",a=e.responseJSON.data.message;for(var o in a)n+=" "+a[o];t.$message({showClose:!0,message:n,type:"error"})}).always(function(e){return t.fetching=!1})},handleFieldsSelectionChange:function(t){this.table.fields=t},save:function(t){var e=this;this.saving=!0;var n=l({},this.table,{type:this.type,action:"ninja_table_external_data_source_create"});delete n.custom_css,jQuery.post(ajaxurl,n).then(function(t){var n=t.data;return e.tableCreated(n.ID)}).fail(function(t){var n="",a=t.responseJSON.data.message;for(var o in a)n+=" "+a[o];e.$message({showClose:!0,message:n,type:"error"})}).always(function(){return e.saving=!1})}},created:function(){this.editing&&(this.table.table_id=this.table.ID,this.fatchRemoteData())}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.editing?[n("el-table",{ref:"rowSelectableTable",staticStyle:{width:"100% !important"},attrs:{loading:t.fetching,data:t.fields},on:{"selection-change":t.handleFieldsSelectionChange}},[n("el-table-column",{attrs:{type:"selection"}}),t._v(" "),n("el-table-column",{attrs:{prop:"name",label:"Select Entry Fields"}})],1)]:n("div",{staticClass:"ninja_modal-body"},[n("el-steps",{attrs:{active:t.active_step,"align-center":""}},[n("el-step",{attrs:{title:"Step 1"}}),t._v(" "),n("el-step",{attrs:{title:"Step 2"}})],1),t._v(" "),0==t.active_step?["google-csv"==t.type?[n("h3",[t._v("\n Construct Table from Google Sheets\n ")]),t._v(" "),t._m(0)]:t._e(),t._v(" "),"csv"==t.type?[n("h3",[t._v("\n Construct Table from Remote CSV File\n ")]),t._v(" "),n("p",{staticClass:"ninja_subtitle"},[t._v("\n Whenever your remote CSV data changes it will be synced here automatically.\n ")])]:t._e(),t._v(" "),n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"name"}},[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.table.post_title,expression:"table.post_title"}],staticClass:"form-control",attrs:{type:"text",id:"name",placeholder:"Enter a title to identify your table",disabled:!t.activated_features.external_data_source},domProps:{value:t.table.post_title},on:{input:function(e){e.target.composing||t.$set(t.table,"post_title",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"remote_url"}},[t._v(t._s(t.$t("Data Source URL")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.table.remote_url,expression:"table.remote_url"}],staticClass:"form-control",attrs:{id:"remote_url",type:"text",placeholder:"Enter your source URL",disabled:!t.activated_features.external_data_source},domProps:{value:t.table.remote_url},on:{input:function(e){e.target.composing||t.$set(t.table,"remote_url",e.target.value)}}})])]:[n("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}],ref:"rowSelectableTable",staticStyle:{width:"100% !important"},attrs:{data:t.fields},on:{"selection-change":t.handleFieldsSelectionChange}},[n("el-table-column",{attrs:{type:"selection"}}),t._v(" "),n("el-table-column",{attrs:{prop:"name",label:"Select Entry Fields"}})],1)]],2),t._v(" "),t.hasPro?t.activated_features.external_data_source?t._e():[n("UpgradeNotice")]:[n("premium-notice")],t._v(" "),n("div",{staticClass:"modal-footer",staticStyle:{"margin-top":"20px"}},[t.editing?t._e():n("el-row",[n("el-col",{attrs:{md:12}},[n("el-button",{staticStyle:{float:"left"},attrs:{type:"primary",size:"small"},on:{click:t.nextStep}},[t._v("\n "+t._s(t.active_step>0?"Prev":"Next")+"\n ")])],1),t._v(" "),t.active_step>0?n("el-col",{attrs:{md:12}},[n("el-button",{staticStyle:{float:"right"},attrs:{type:"success",size:"small",loading:t.saving,disabled:!t.activated_features.external_data_source},on:{click:t.save}},[t._v(t._s(t.$t("Save"))+"\n ")])],1):t._e()],1)],1),t._v(" "),t.editing?n("div",{staticStyle:{"margin-top":"15px"}},[n("el-input",{attrs:{placeholder:"Remote URL..."},on:{keyup:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?t.fatchRemoteData(e):null}},model:{value:t.table.remoteURL,callback:function(e){t.$set(t.table,"remoteURL",e)},expression:"table.remoteURL"}},[n("el-button",{attrs:{slot:"prepend",loading:t.fetching,size:"small",plain:""},on:{click:t.fatchRemoteData},slot:"prepend"},[t._v(t._s(t.$t("Fetch Columns"))+"\n ")]),t._v(" "),n("el-button",{attrs:{slot:"append",loading:t.saving,size:"small",plain:""},on:{click:t.save},slot:"append"},[t._v(t._s(t.$t("Update Settings"))+"\n ")])],1)],1):t._e()],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",{staticClass:"ninja_subtitle"},[this._v("\n Whenever your Google Sheets data changes it will be automatically reflected here. You won't have\n to do a thing. Please provide the publishable public URL of your google sheet.\n "),e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/construct-table-from-google-sheets/"}},[this._v("View\n Documentation Here")])])}]}},function(t,e,n){var a=n(0)(n(306),n(307),!1,function(t){n(304)},"data-v-5b933675",null);t.exports=a.exports},function(t,e,n){var a=n(305);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("1957b5b6",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".hint[data-v-5b933675]{width:100%;background-color:#f4f4f5;color:#909399;padding:8px 16px}.form_group.ninja_errors[data-v-5b933675]{background:#ffd7d7;padding:10px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ImportTable",data:function(){return{imports:{source:"file",sourceOptions:["file"],formatOptions:{csv:this.$t("CSV - Comma-separated values"),json:this.$t("JSON - Javascript Object Notation"),ninjaJson:this.$t("JSON - Exported From Ninja Tables")},format:"csv"},do_unicode:"no",errors:[],btnLoading:!1}},methods:{clear:function(){jQuery("#fileUpload").val("")},importTable:function(){var t=this;if(this.btnLoading=!0,this.errors=[],"file"===this.imports.source){var e=jQuery("#fileUpload")[0].files[0];if(e){var n=new FormData;n.append("format",this.imports.format),n.append("file",e),n.append("action","ninja_tables_ajax_actions"),n.append("target_action","import-table"),n.append("do_unicode",this.do_unicode),jQuery.ajax({url:ajaxurl,data:n,type:"POST",contentType:!1,processData:!1,success:function(e){t.$message({showClose:!0,message:e.message,type:"success"}),e.tableId&&t.$router.push({name:"data_items",params:{table_id:e.tableId}})},error:function(e){t.errors=e.responseJSON.data.errors,t.$message({showClose:!0,message:e.responseJSON.data.message,type:"error"}),t.btnLoading=!1}})}else this.btnLoading=!1}else this.btnLoading=!0}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"ninja_modal-body"},[n("h3",[t._v("Import Table")]),t._v(" "),n("p",{staticClass:"ninja_subtitle"},[t._v("\n Import table from existing CSV or JSON file.\n ")]),t._v(" "),n("div",{staticClass:"form"},[n("div",{staticClass:"form-group"},["file"===t.imports.source?[n("label",{attrs:{for:"fileUpload"}},[t._v(t._s(t.$t("Select file:")))]),t._v(" "),n("br"),t._v(" "),n("input",{attrs:{type:"file",id:"fileUpload"},on:{click:t.clear}})]:"url"===t.imports.source?[t._v("\n File upload url\n ")]:[n("label",[t._v(t._s(t.$t("Import data:")))]),t._v(" "),n("textarea",{attrs:{rows:"10"}})]],2),t._v(" "),n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"import_format"}},[t._v(t._s(t.$t("Import Format:")))]),t._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.imports.format,expression:"imports.format"}],staticClass:"form-control",attrs:{id:"import_format"},on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.imports,"format",e.target.multiple?n:n[0])}}},t._l(t.imports.formatOptions,function(e,a){return n("option",{domProps:{value:a}},[t._v(t._s(t.$t(e))+"\n ")])})),t._v(" "),"csv"===t.imports.format?[t._m(0),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.do_unicode,callback:function(e){t.do_unicode=e},expression:"do_unicode"}},[t._v("Convert to UTF-8 format ( Check this if your csv is non-unicode format )")])]:t._e(),t._v(" "),n("p",{directives:[{name:"show",rawName:"v-show",value:"json"===t.imports.format||"ninjaJson"===t.imports.format,expression:"imports.format === 'json' || imports.format === 'ninjaJson'"}],staticClass:"hint"},[t._v("\n Check tutorial for importing Table from JSON file\n\n "),n("a",{attrs:{href:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables",target:"_blank"}},[t._v("here")])])],2),t._v(" "),t.errors.length?n("div",{staticClass:"form_group ninja_errors"},[n("ul",t._l(t.errors,function(e,a){return n("li",{key:a},[t._v("\n "+t._s(e.info)+"\n ")])}))]):t._e()])]),t._v(" "),n("div",{staticClass:"modal-footer"},[n("el-button",{attrs:{size:"small",type:"primary",loading:t.btnLoading},on:{click:t.importTable}},[t._v("\n "+t._s(t.$t("Import"))+"\n ")])],1)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",{staticClass:"hint"},[this._v("\n Check tutorial for importing data from CSV file\n "),e("a",{attrs:{href:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables",target:"_blank"}},[this._v("here")])])}]}},function(t,e,n){var a=n(0)(n(311),n(318),!1,function(t){n(309)},null,null);t.exports=a.exports},function(t,e,n){var a=n(310);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("00ea6aed",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".fluent-form-promo p{font-size:medium}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(123),o=n.n(a),i=n(28),s=n.n(i),l=n(124),r=n.n(l);e.default={name:"CustomSQLQuery",components:{MySqlEditor:o.a,PremiumNotice:s.a,RemoteSqlConnection:r.a},props:{tableCreated:{type:Function,required:!0},editing:{type:Boolean},config:{type:Object},activated_features:{type:Object}},data:function(){return{installing:!1,fetching:!1,btnLoading:!1,post_title:"",connection_type:"local",remote_connection:{db_name:"",db_username:"",db_userpassword:"",db_host:"localhost",db_host_port:3306},sql:"",error_html:"",isActivated:this.activated_features.raw_sql_query,hasPro:!!ninja_table_admin.hasPro,has_sql_permission:"yes"==window.ninja_table_admin.has_sql_permission}},methods:{save:function(){var t=this;this.btnLoading=!0,this.error_html="",jQuery.post(ajaxurl,{action:"ninja_tables_save_raw_sql_table",post_title:this.post_title,sql:this.sql,connection_details:this.remote_connection,connection_type:this.connection_type,table_Id:this.config&&this.config.table.ID||null}).then(function(e){console.log(e),"string"!=typeof e&&e&&e.data&&e.data.table_id?t.tableCreated(e.data.table_id):t.error_html=e}).fail(function(e){if(console.log(e),"string"!=typeof e){var n="",a=e.responseJSON.data.message;for(var o in a)n+=" "+a[o];t.$message({showClose:!0,message:n,type:"error"}),e.responseJSON.data.error&&(t.error_html=e.responseJSON.data.error)}else t.error_html=res}).always(function(e){return t.btnLoading=!1})}},mounted:function(){}}},function(t,e,n){var a=n(313);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("0fa77a67",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_custom_css_editor[data-v-ad6aab96]{min-height:180px;height:auto}.ninja_css_errors .ace_gutter-cell.ace_warning[data-v-ad6aab96]{display:none}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_ace_editor",props:["value","mode","editor_id"],data:function(){return{ace_path:window.ninja_table_admin.ace_path_url,editorError:"",loading:!0}},methods:{loadDependencies:function(){var t=this;"undefined"==typeof ace?jQuery.get(this.ace_path+"/ace.min.js",function(){t.initAce()}):this.initAce()},initAce:function(){var t=this;ace.config.set("workerPath",this.ace_path),ace.config.set("modePath",this.ace_path),ace.config.set("themePath",this.ace_path);var e=ace.edit("ninja_custom_css");e.setTheme("ace/theme/monokai"),e.session.setMode("ace/mode/"+this.mode),e.getSession().on("changeAnnotation",function(){var n=e.getSession().getAnnotations();for(var a in t.editorError="",n)"error"==n[a].type&&(t.editorError=n[a].text)}),e.getSession().on("change",function(){t.$emit("input",e.getSession().getValue())}),this.loading=!1}},mounted:function(){this.loadDependencies()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],attrs:{"element-loading-text":"Loading Editor..."}},[n("div",{staticClass:"ace_container"},[n("div",{staticClass:"ninja_custom_css_editor",attrs:{id:"ninja_custom_css"}},[t._v(t._s(t.value))])]),t._v(" "),n("div",{staticClass:"editor_errors",class:"ninja_"+t.mode+"_errors"},[n("span",{directives:[{name:"show",rawName:"v-show",value:t.editorError,expression:"editorError"}],staticStyle:{"text-align":"right",display:"inline-block",color:"#ff7171",float:"right"}},[t._v(t._s(t.editorError))])])])},staticRenderFns:[]}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"remote_sql_form",props:["connection"],data:function(){return{}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"sql_connection_wrapper"},[n("div",{staticClass:"form-group"},[n("label",[t._v("\n DB Name\n "),n("el-input",{attrs:{size:"mini",placeholder:"DB Name"},model:{value:t.connection.db_name,callback:function(e){t.$set(t.connection,"db_name",e)},expression:"connection.db_name"}})],1)]),t._v(" "),n("div",{staticClass:"nt_row_2"},[n("div",{staticClass:"form-group"},[n("label",[t._v("\n DB username\n "),n("el-input",{attrs:{size:"mini",placeholder:"DB User Name"},model:{value:t.connection.db_username,callback:function(e){t.$set(t.connection,"db_username",e)},expression:"connection.db_username"}})],1)]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v("\n DB User Password\n "),n("el-input",{attrs:{size:"mini",type:"password",placeholder:"DB User Password"},model:{value:t.connection.db_userpassword,callback:function(e){t.$set(t.connection,"db_userpassword",e)},expression:"connection.db_userpassword"}})],1)])]),t._v(" "),n("div",{staticClass:"nt_row_2"},[n("div",{staticClass:"form-group"},[n("label",[t._v("\n DB Host\n "),n("el-input",{attrs:{size:"mini",placeholder:"DB Host"},model:{value:t.connection.db_host,callback:function(e){t.$set(t.connection,"db_host",e)},expression:"connection.db_host"}})],1)]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v("\n DB Host Port\n "),n("el-input",{attrs:{size:"mini",type:"number",placeholder:"Default: 3306 "},model:{value:t.connection.db_host_port,callback:function(e){t.$set(t.connection,"db_host_port",e)},expression:"connection.db_host_port"}})],1)])])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_modal-body"},[n("h3",[t._v("\n Construct Table from Custom SQL Query\n ")]),t._v(" "),n("hr"),t._v(" "),t.hasPro?t.has_sql_permission?t.isActivated?[n("div",{staticClass:"ninja_modal-body"},[n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"name"}},[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.post_title,expression:"post_title"}],staticClass:"form-control",attrs:{type:"text",id:"name",placeholder:"Enter a title to identify your table"},domProps:{value:t.post_title},on:{input:function(e){e.target.composing||(t.post_title=e.target.value)}}})]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Custom SQL Query")))]),t._v(" "),n("my-sql-editor",{attrs:{mode:"mysql",editor_id:"ninja_mysql_editor"},model:{value:t.sql,callback:function(e){t.sql=e},expression:"sql"}}),t._v(" "),t._m(0)],1),t._v(" "),t.error_html?n("div",{staticClass:"form-group"},[n("el-alert",{attrs:{title:"SQL Error",type:"error"},on:{close:function(e){t.error_html=""}}},[n("div",{domProps:{innerHTML:t._s(t.error_html)}})])],1):t._e(),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("SQL COnnection Type")))]),t._v(" "),n("el-radio-group",{model:{value:t.connection_type,callback:function(e){t.connection_type=e},expression:"connection_type"}},[n("el-radio",{attrs:{label:"local"}},[t._v("Default WP SQL Table")]),t._v(" "),n("el-radio",{attrs:{label:"external"}},[t._v("Remote/External SQL")])],1)],1),t._v(" "),"external"==t.connection_type?n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("MYSQL Connection Details")))]),t._v(" "),n("remote-sql-connection",{attrs:{connection:t.remote_connection}})],1):t._e()]),t._v(" "),n("div",{staticClass:"modal-footer"},[n("el-button",{attrs:{type:"primary",size:"small"},on:{click:t.save}},[n("span",[t._v(t._s(t.$t("Add")))]),t._v(" "),t.btnLoading?n("i",{staticClass:"fooicon fooicon-spin fooicon-circle-o-notch"}):t._e()])],1)]:[n("el-alert",{staticClass:"update-notice",attrs:{title:"",type:"warning",closable:!1,"show-icon":""}},[n("p",[t._v("\n Please update Ninja Tables Pro Plugin to latest version. Required Ninja Table Version: 3.3 or later\n ")])])]:[n("el-alert",{attrs:{title:"",type:"error",closable:!1}},[n("p",[t._v("\n For security reason, Custom SQL module is enabled only for Administrator user role. Please ask your site administrator to enable SQL module for other user roles.\n ")])])]:[n("premium-notice",{attrs:{highlight:"SQL module where you can write custom SQL to build your table with "}})]],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",[this._v("Please write valid SQL query. Your written SQL query will be passed to "),e("code",[this._v("$wpdb->get_results()")]),this._v(" function")])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-container",{staticClass:"ninja-add-table"},[t.table.ID?t._e():n("el-aside",{staticStyle:{"background-color":"rgb(35, 40, 45)"}},[n("el-menu",{attrs:{collapse:t.isCollapse,"default-active":t.activeTabName,"background-color":"#23282d","text-color":"#eee","active-text-color":"#fff"}},[n("el-menu-item",{attrs:{index:"default"},on:{click:function(e){t.activeTabName="default"}}},[n("i",{staticClass:"el-icon-setting"}),t._v(" "),n("span",[t._v("Default")])]),t._v(" "),n("el-menu-item",{attrs:{index:"import_table"},on:{click:function(e){t.activeTabName="import_table"}}},[n("i",{staticClass:"el-icon-upload2"}),t._v(" "),n("span",[t._v("Import Table")])]),t._v(" "),n("el-menu-item",{attrs:{index:"fluent_form"},on:{click:function(e){t.activeTabName="fluent_form"}}},[n("img",{staticClass:"el-icon-fluent-form",attrs:{src:t.fluentFormIcon,alt:"fluent form icon"}}),t._v(" "),n("span",[t._v("Connect Fluent Form")])]),t._v(" "),n("el-menu-item",{attrs:{index:"wp_posts"},on:{click:function(e){t.activeTabName="wp_posts"}}},[n("i",{staticClass:"el-icon-news"}),t._v(" "),n("span",[t._v("WP Posts")])]),t._v(" "),t.has_woo?n("el-menu-item",{attrs:{index:"woo_table"},on:{click:function(e){t.activeTabName="woo_table"}}},[n("img",{staticClass:"el-icon-fluent-form",attrs:{src:t.wooIcon,alt:"woocomerce icon"}}),t._v(" "),n("span",[t._v("WooCommerce Table")])]):t._e(),t._v(" "),n("el-menu-item",{attrs:{index:"google_spread_sheet"},on:{click:function(e){t.activeTabName="google_spread_sheet"}}},[n("span",{staticClass:"dashicons dashicons-media-spreadsheet"}),t._v(" "),n("span",[t._v("Connect Google Sheets")])]),t._v(" "),n("el-menu-item",{attrs:{index:"csv"},on:{click:function(e){t.activeTabName="csv"}}},[n("i",{staticClass:"el-icon-document"}),t._v(" "),n("span",[t._v("Connect External CSV")])]),t._v(" "),n("el-menu-item",{attrs:{index:"raw_sql"},on:{click:function(e){t.activeTabName="raw_sql"}}},[n("i",{staticClass:"dashicons dashicons-editor-code"}),t._v(" "),n("span",[t._v("Custom SQL Query")])])],1)],1),t._v(" "),n("el-main",["default"==t.activeTabName?[n("div",{staticClass:"ninja_modal-body"},[t.table.ID?t._e():[n("h3",[t._v("Manually Create a Table")]),t._v(" "),n("p",{staticClass:"ninja_subtitle"},[t._v("\n Manually create your table columns and rows to get complete\n control over your data with tons of customizations.\n ")])],t._v(" "),n("div",{staticClass:"form-group"},[n("label",{attrs:{for:"name"}},[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.table.post_title,expression:"table.post_title"}],staticClass:"form-control",attrs:{type:"text",id:"name",placeholder:"Enter a title to identify your table"},domProps:{value:t.table.post_title},on:{input:function(e){e.target.composing||t.$set(t.table,"post_title",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Table Description")))]),t._v(" "),n("wp_editor",{model:{value:t.table.post_content,callback:function(e){t.$set(t.table,"post_content",e)},expression:"table.post_content"}})],1)],2),t._v(" "),n("div",{staticClass:"modal-footer"},[n("el-button",{attrs:{type:"primary",size:"small"},on:{click:t.addTable}},[t.table.ID?n("span",[t._v(t._s(t.$t("Update")))]):n("span",[t._v(t._s(t.$t("Add")))]),t._v(" "),t.btnLoading?n("i",{staticClass:"fooicon fooicon-spin fooicon-circle-o-notch"}):t._e()])],1)]:"import_table"===t.activeTabName?[n("import-table")]:"google_spread_sheet"==t.activeTabName?[n("external-data-source",{attrs:{type:"google-csv",tableCreated:t.fireTableCreated,"has-pro":t.hasPro,activated_features:t.activated_features}})]:"csv"==t.activeTabName?[n("external-data-source",{attrs:{type:"csv",tableCreated:t.fireTableCreated,"has-pro":t.hasPro,activated_features:t.activated_features}})]:"fluent_form"==t.activeTabName?[n("fluent-form-data-source",{attrs:{tableCreated:t.fireTableCreated}})]:"wp_posts"==t.activeTabName?[n("wp-posts-data-source",{attrs:{tableCreated:t.fireTableCreated,activated_features:t.activated_features}})]:"woo_table"==t.activeTabName?[t.activated_features.woocommerce_table?n("woo-data-source",{attrs:{tableCreated:t.fireTableCreated}}):t.has_woo&&t.hasPro?n("div",[n("p",[t._v("Please update to latest version of "),n("b",[t._v("Ninja Tables Pro")]),t._v(" to use WooCommerce integration")])]):t.has_woo&&!t.hasPro?n("div",{staticClass:"ninja_no_woo"},[n("h3",[t._v("Upgrade to pro for using WooCommerce Integration")]),t._v(" "),n("premium-notice",{attrs:{highlight:"WooCommerce Integration module where you can create and build table with Woocomerce produsts and increase your conversion rate"}})],1):t._e()]:"raw_sql"==t.activeTabName?[n("raw-sql-form",{attrs:{has_sql_permission:t.has_sql_permission,tableCreated:t.fireTableCreated,activated_features:t.activated_features}})]:t._e()],2)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(323),n(324),!1,function(t){n(321)},null,null);t.exports=a.exports},function(t,e,n){var a=n(322);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("35eb5f12",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_permissions{margin-top:40px;text-align:center}.ninja_permissions a,.ninja_permissions p{font-size:12px;color:gray;text-decoration:none}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_lead",data:function(){return{loading:!1,leadVisible:!!window.ninja_table_admin.show_lead_pop_up,display_name:window.ninja_table_admin.current_user_name,showPermission:!1}},methods:{optin:function(t){var e=this;this.loading=!0,jQuery.post(window.ajaxurl,{action:"ninja_table_lead_optin",status:t}).then(function(t){e.$message({showClose:!0,message:t.data.message,type:"success"})}).fail(function(t){}).always(function(){e.leadVisible=!1,e.loading=!1,"yes"===t&&(window.ninja_table_admin.show_lead_pop_up=!1)})}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.leadVisible?n("el-dialog",{attrs:{visible:t.leadVisible,title:"We made a few tweaks to Ninja Tables"},on:{"update:visible":function(e){t.leadVisible=e}}},[n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"ninja_permission_wrapper"},[n("p",[t._v("Hey "+t._s(t.display_name)+","),n("br"),t._v("\n Never miss an important update - opt in to our security & feature updates notifications. We will never\n spam / share your data, We will only send emails about important updates")]),t._v(" "),n("el-button",{attrs:{type:"success"},on:{click:function(e){t.optin("yes")}}},[t._v("Opt-in and Continue")]),t._v(" "),n("el-button",{staticClass:"pull-right",attrs:{size:"mini"},on:{click:function(e){t.optin("no")}}},[t._v("Skip")]),t._v(" "),n("div",{staticClass:"ninja_permissions"},[n("a",{attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.showPermission=!t.showPermission}}},[t._v("What permissions are being granted?")]),t._v(" "),n("p",{directives:[{name:"show",rawName:"v-show",value:t.showPermission,expression:"showPermission"}],staticClass:"permissions"},[t._v("\n Name, email, Site URL, Plugins info, ip Address and uninstall event\n ")])])],1)]):t._e()},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(328),n(329),!1,function(t){n(326)},null,null);t.exports=a.exports},function(t,e,n){var a=n(327);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("20d61100",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".review_dialog{background:#fff;padding:10px 15px 20px;font-size:16px;position:relative}.review_dialog span.consentDismiss{position:absolute;right:7px;top:2px;z-index:99999;cursor:pointer;color:gray}.review_dialog p{font-size:16px}.review_dialog a{text-decoration:none;cursor:pointer;margin-right:20px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"review_dialog",methods:{recordActivity:function(t){var e=this;jQuery.post(ajaxurl,{action:"ninja_table_review_consent",status:t}).then(function(){}).fail(function(){}).always(function(){e.$emit("hideNotification",!0)})}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"review_dialog"},[n("span",{staticClass:"consentDismiss",on:{click:function(e){t.recordActivity("dismiss")}}},[t._v("x")]),t._v(" "),n("div",{staticClass:"consent_body"},[n("p",[t._v("Thank You for using Ninja Tables Plugin. We are continuously working on it to improve this plugin. If You can spare a minute, Please help us by leaving a five star rating on wordpress.org")]),t._v(" "),n("a",{staticClass:"el-button el-button--success el-button--small",attrs:{target:"_blank",href:"https://wordpress.org/support/plugin/ninja-tables/reviews/#new-post"},on:{click:function(e){t.recordActivity("yes")}}},[t._v("Happy To Help")]),t._v(" "),n("span",{staticStyle:{cursor:"pointer","font-size":"11px"},on:{click:function(e){t.recordActivity("no")}}},[t._v("Hide Notification")])])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.published_tables?[n("div",{staticClass:"row clearfix"},[n("h1",{staticClass:"wp-heading-inline"},[t._v("\n "+t._s(t.$t("All Tables"))+"\n ")]),t._v(" "),t.review_option?n("ninja-review-dialog",{on:{hideNotification:function(e){t.review_option=!1}}}):t._e(),t._v(" "),n("div",{staticClass:"pull-right",staticStyle:{"margin-top":"7px"}},[n("label",{staticClass:"form_group search_action",attrs:{for:"search"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.searchString,expression:"searchString"}],staticClass:"form-control inline",attrs:{id:"search",placeholder:"Search",type:"text"},domProps:{value:t.searchString},on:{keyup:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?t.getData(e):null},input:function(e){e.target.composing||(t.searchString=e.target.value)}}}),t._v(" "),n("i",{staticClass:"el-icon-search",on:{click:t.getData}})]),t._v(" "),n("el-button",{attrs:{size:"small",type:"primary"},on:{click:function(e){t.modalVisible=!t.modalVisible}}},[t._v("\n "+t._s(t.$t("Add Table"))+"\n ")]),t._v(" "),n("router-link",{attrs:{to:{name:"import_tables"}}},[n("el-button",{attrs:{size:"small",type:"success"}},[t._v("\n "+t._s(t.$t("Import Table"))+"\n ")])],1)],1)],1),t._v(" "),n("hr"),t._v(" "),n("list-all-tables",{directives:[{name:"show",rawName:"v-show",value:t.published_tables,expression:"published_tables"}],attrs:{searchString:t.searchString,searchAction:t.searchAction},on:{total_table:function(e){t.published_tables=!0},selection:t.makeSelection}})]:n("welcome",{on:{create:function(e){t.modalVisible=!t.modalVisible}}}),t._v(" "),n("el-dialog",{attrs:{"close-on-click-modal":!1,title:t.$t("How would you like to create your table?"),visible:t.modalVisible,top:"50px",width:"75%","append-to-body":!0,"custom-class":"create-table-modal"},on:{"update:visible":function(e){t.modalVisible=e}}},[n("add-table-modal",{attrs:{hasPro:t.hasPro},on:{table_inserted:t.addTableAction,modal_close:function(e){t.modalVisible=!1}}})],1),t._v(" "),n("lead-modal")],2)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(332),n(333),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"Tools",data:function(){return{has_pro:!!window.ninja_table_admin.hasPro,active_menu:this.$route.name,menuItems:[]}},methods:{setUpMenuItems:function(){this.menuItems=this.applyFilters("ninja_table_settings_tools",[{route:"import_tables",title:this.$t("Import"),icon_class:"el-icon-upload",status:!0},{route:"default_table_appearance",title:this.$t("Global Appearance"),icon_class:"el-icon-star-off",status:!0},{route:"permission",title:this.$t("Permission"),icon_class:"el-icon-setting",status:!0},{route:"licensing",title:this.$t("License"),icon_class:"dashicons dashicons-shield",status:this.has_pro},{route:"global_settings",title:this.$t("Global Settings"),icon_class:"el-icon-menu",status:!0}])}},mounted:function(){this.setUpMenuItems()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{"margin-top":"15px"}},[n("el-container",[n("el-aside",{attrs:{width:"200px"}},[n("el-menu",{attrs:{"background-color":"#545c64","default-active":t.active_menu,"text-color":"#fff",router:!0,"active-text-color":"#ffd04b"}},t._l(t.menuItems,function(e){return e.status?n("el-menu-item",{key:e.route,attrs:{index:e.route,route:{name:e.route}}},[n("i",{class:e.icon_class}),t._v(" "),n("span",[t._v(t._s(e.title))])]):t._e()}))],1),t._v(" "),n("el-main",[n("router-view")],1)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(337),n(338),!1,function(t){n(335)},"data-v-666868a6",null);t.exports=a.exports},function(t,e,n){var a=n(336);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("3db9ce2a",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".form-item[data-v-666868a6]{margin:10px 0}.form-item label[data-v-666868a6]{width:100px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"Tools",data:function(){return{has_pro:window.ninja_table_admin.hasPro,active_menu:"import",activeNames:["1","2"],imports:{source:"file",sourceOptions:["file"],formatOptions:{csv:this.$t("CSV - Comma-separated values"),json:this.$t("JSON - Javascript Object Notation"),ninjaJson:this.$t("JSON - Exported From Ninja Tables")},format:"csv"},do_unicode:"no",btnLoading:!1,otherPlugins:{TablePress:"Table Press",UltimateTables:"Ultimate Tables",supsystic:"Data Tables Generator by Supsystic"},btnsLoading:{TablePress:!1,UltimateTables:!1},showPluginModal:!1,selectedPlugin:null,otherPluginTables:[],importing:!1}},methods:{clear:function(){jQuery("#fileUpload").val("")},importTable:function(){var t=this;if(this.btnLoading=!0,"file"!=!this.imports.source){var e=jQuery("#fileUpload")[0].files[0];if(e){var n=new FormData;n.append("format",this.imports.format),n.append("file",e),n.append("action","ninja_tables_ajax_actions"),n.append("target_action","import-table"),n.append("do_unicode",this.do_unicode),jQuery.ajax({url:ajaxurl,data:n,type:"POST",contentType:!1,processData:!1,success:function(e){alert(e.message),t.$router.push({name:"data_items",params:{table_id:e.tableId}})},error:function(e){t.btnLoading=!1,alert(e.responseJSON.message)}})}else this.btnLoading=!1}else this.btnLoading=!0},importFromOtherPlugin:function(t){var e=this;this.selectedPlugin=t,this.btnsLoading[t]=!0;var n={action:"ninja_tables_ajax_actions",target_action:"get-tables-from-plugin",plugin:t};jQuery.ajax({url:ajaxurl,data:n,type:"POST",success:function(n){n.tables?e.btnsLoading[t]=!1:e.$message.error("No Table Found"),e.showPluginModal=!0,e.otherPluginTables=n.tables},error:function(n){e.btnsLoading[t]=!1,n.responseJSON?e.$message.error(n.responseJSON.message):e.$message.error("No Table Found")}})},closePluginModal:function(){this.otherPluginTables=[],this.btnsLoading[this.selectedPlugin]=!1,this.showPluginModal=!1,this.selectedPlugin=null},importThisTable:function(t,e){var n=this;this.importing=!0;var a={action:"ninja_tables_ajax_actions",target_action:"import-table-from-plugin",plugin:this.selectedPlugin,tableId:t.ID};jQuery.ajax({url:ajaxurl,data:a,type:"POST",success:function(t){n.$message.success(t.data.message),n.importing=!1,n.$set(n.otherPluginTables[e],"ninja_table_id",t.data.tableId)},error:function(t){n.$message.error(t.responseJSON.data.message),n.importing=!1}})}},mounted:function(){var t=this;this.$route.query.active_menu&&(this.active_menu=this.$route.query.active_menu),jQuery(".ninja_table_tools_menu").on("click",function(){t.active_menu="import"}),jQuery(".ninja_table_import_menu").on("click",function(){t.active_menu="import"}),jQuery(".ninja_table_license_menu").on("click",function(){t.active_menu="license"})}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"ninja_header"},[n("h2",[t._v(t._s(t.$t("Import Table")))])]),t._v(" "),n("div",{staticClass:"ninja_content"},[n("div",{staticClass:"ninja_block"},[n("p",[t._v("\n "+t._s(t.$t("NinjaTables can import tables from existing data, like from a CSV or JSON file. You can also import existing tables from the other WordPress table plugins."))+"\n ")])]),t._v(" "),n("hr"),t._v(" "),n("div",{staticClass:"ninja_block_section"},[n("h3",[t._v("Import Table from CSV / JSON File")]),t._v(" "),n("p",[t._v("\n Browse and locate a CSV/JSON file you backed up before.\n ")]),t._v(" "),t._m(0),t._v(" "),n("div",{staticClass:"form"},[n("div",{staticClass:"form-item"},["file"==t.imports.source?[n("label",[t._v(t._s(t.$t("Select file:")))]),t._v(" "),n("input",{attrs:{type:"file",id:"fileUpload"},on:{click:t.clear}})]:"url"==t.imports.source?[t._v("\n File upload url\n ")]:[n("label",[t._v(t._s(t.$t("Import data:")))]),t._v(" "),n("textarea",{attrs:{rows:"10"}})]],2),t._v(" "),n("div",{staticClass:"form-item"},[n("label",{attrs:{for:"import_format"}},[t._v(t._s(t.$t("Import Format:")))]),t._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.imports.format,expression:"imports.format"}],attrs:{id:"import_format"},on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.imports,"format",e.target.multiple?n:n[0])}}},t._l(t.imports.formatOptions,function(e,a){return n("option",{domProps:{value:a}},[t._v(t._s(t.$t(e))+"\n ")])})),t._v(" "),"csv"==t.imports.format?[t._m(1),t._v(" "),n("div",{staticClass:"form-item"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.do_unicode,callback:function(e){t.do_unicode=e},expression:"do_unicode"}},[t._v("Convert to UTF-8 format ( Check this if your csv is non-unicode format )")])],1)]:t._e(),t._v(" "),n("span",{directives:[{name:"show",rawName:"v-show",value:"json"==t.imports.format||"ninjaJson"==t.imports.format,expression:"imports.format == 'json' || imports.format == 'ninjaJson'"}],staticClass:"help"},[t._v("\n Check tutorial for importing Table from JSON file "),n("a",{attrs:{href:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables",target:"_blank"}},[t._v("here")])])],2),t._v(" "),n("div",{staticClass:"form-item"},[n("el-button",{attrs:{type:"primary",size:"small",loading:t.btnLoading},on:{click:t.importTable}},[t._v("\n "+t._s(t.$t("Import"))+"\n ")])],1)])]),t._v(" "),n("hr"),t._v(" "),n("div",{staticClass:"ninja_block_section"},[n("h3",[t._v("Import From Other WP Table Plugin")]),t._v(" "),t._m(2),t._v(" "),n("table",{staticStyle:{"min-width":"400px"}},[n("tbody",t._l(t.otherPlugins,function(e,a){return n("tr",[n("td",[t._v(t._s(e))]),t._v(" "),n("td",[n("button",{staticClass:"btn btn-default btn-sm",on:{click:function(e){t.importFromOtherPlugin(a)}}},[t.btnsLoading[a]?[t._v("\n "+t._s(t.$t("Processing..."))+"\n "),n("i",{staticClass:"fooicon fooicon-spin fooicon-circle-o-notch"})]:[t._v("\n "+t._s(t.$t("Import"))+"\n ")]],2)])])}))])])]),t._v(" "),n("el-dialog",{attrs:{title:"Your current tables",visible:t.showPluginModal},on:{"update:visible":function(e){t.showPluginModal=e},close:function(e){t.closePluginModal()}}},[t.otherPluginTables.length?[n("el-table",{staticStyle:{width:"100%"},attrs:{data:t.otherPluginTables}},[n("el-table-column",{attrs:{label:"Name"},scopedSlots:t._u([{key:"default",fn:function(e){return[e.row.is_already_imported?n("span",[t._v("( Already Imported )")]):t._e(),t._v(" "+t._s(e.row.post_title)+"\n ")]}}])}),t._v(" "),n("el-table-column",{attrs:{label:"Action",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("el-button",{attrs:{type:"primary",size:"mini"},on:{click:function(n){t.importThisTable(e.row,e.$index)}}},[t._v(t._s(t.$t("Import"))+"\n ")]),t._v(" "),e.row.ninja_table_id?n("router-link",{staticClass:"el-button el-button--danger el-button--mini ninja_btn",attrs:{to:{name:"data_items",params:{table_id:e.row.ninja_table_id}}}},[t._v(t._s(t.$t("View Imported Table"))+"\n ")]):t._e()]}}])})],1),t._v(" "),t.importing?[n("br"),n("br"),t._v(" "),n("div",{staticClass:"updated notice notice-success",staticStyle:{padding:"10px"}},[t._v("\n "+t._s(t.$t("Importing the table, please wait a bit ..."))+"\n ")])]:t._e()]:n("div",{staticClass:"updated notice notice-success",staticStyle:{padding:"10px"}},[t._v("\n You don't have any tables in your "+t._s(t.selectedPlugin)+" plugin.\n ")])],2)],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",[this._v("\n Select the intended format and click "),e("strong",[this._v("Import")]),this._v(" button, we will do\n the rest for you.\n ")])},function(){var t=this.$createElement,e=this._self._c||t;return e("span",{staticClass:"help"},[this._v("\n Check tutorial for importing data from CSV file "),e("a",{attrs:{href:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables",target:"_blank"}},[this._v("here")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("p",[this._v("\n To import from other WordPress plugins click the respective "),e("strong",[this._v("Import")]),this._v("\n button.\n ")])}]}},function(t,e,n){var a=n(0)(n(342),n(343),!1,function(t){n(340)},null,null);t.exports=a.exports},function(t,e,n){var a=n(341);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("a3a20460",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".el-text-info{color:#58b7ff}.privacy label{margin-bottom:0}#capability{margin-left:75px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"Privacy",data:function(){return{hasPro:!1,fetching:!1,roles:[],checkAll:!1,sql_permission:"no",capability:["administrator"],isIndeterminate:!1,upgrade:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade"}},methods:{get:function(){var t=this;this.fetching=!0,this.$get({action:"ninja_tables_ajax_actions",target_action:"get_access_roles"}).then(function(e){t.capability=e.capability,t.roles=e.roles,t.sql_permission=e.sql_permission,t.handleCheckedCapabilitiesChange(t.capability)}).fail(function(t){}).always(function(){t.fetching=!1})},store:function(){var t=this,e={action:"ninja_tables_set_permission",capability:this.capability,sql_permission:this.sql_permission};jQuery.post(ajaxurl,e).then(function(e){t.$message({showClose:!0,message:e.message,type:"success"})}).fail(function(e){t.$message({showClose:!0,message:e.responseJSON.data.message,type:"error"})})},handleCheckAllChange:function(t){this.capability=t?this.roles.map(function(t){return t.key}):[],this.isIndeterminate=!1},handleCheckedCapabilitiesChange:function(t){var e=t.length;this.checkAll=e===this.roles.length,this.isIndeterminate=e>0&&e<this.roles.length}},mounted:function(){this.hasPro="1"===window.ninja_table_admin.hasPro,this.get()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"privacy"},[n("div",{staticClass:"ninja_header"},[n("h2",[t._v("Permission "),n("span",{directives:[{name:"show",rawName:"v-show",value:!t.hasPro,expression:"!hasPro"}]},[t._v("(Pro Feature)")])])]),t._v(" "),n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}],staticClass:"ninja_content"},[t._m(0),t._v(" "),n("hr"),t._v(" "),t.hasPro?[n("div",{staticClass:"form-group"},[n("el-checkbox",{attrs:{indeterminate:t.isIndeterminate},on:{change:t.handleCheckAllChange},model:{value:t.checkAll,callback:function(e){t.checkAll=e},expression:"checkAll"}},[t._v("\n "+t._s(t.$t("Check all"))+"\n ")])],1),t._v(" "),n("div",{staticClass:"form-group"},[n("el-checkbox-group",{on:{change:t.handleCheckedCapabilitiesChange},model:{value:t.capability,callback:function(e){t.capability=e},expression:"capability"}},t._l(t.roles,function(e){return n("el-checkbox",{key:e.key,attrs:{label:e.key}},[t._v("\n "+t._s(e.name)+"\n ")])}))],1),t._v(" "),t.capability&&t.capability.length?n("div",{staticClass:"form-group"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.sql_permission,callback:function(e){t.sql_permission=e},expression:"sql_permission"}},[t._v("Enable SQL-Module Permission for selected user roles")])],1):t._e(),t._v(" "),n("div",{staticClass:"form-group"},[n("el-button",{attrs:{type:"primary",size:"small"},on:{click:t.store}},[t._v("Save")])],1)]:[t._v("\n "+t._s(t.$t("Activate Ninja Tables Pro Add-on plugin to unlock this feature"))+"\n "),n("p",[n("a",{attrs:{target:"_blank",href:t.upgrade}},[t._v("Buy Ninja Tables Pro Add-On")])])]],2)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_block"},[e("p",[this._v("By default, Only Administrator have access to manage the tables. By selecting additional roles bellow, You can give access to manage your Tables to other user roles.")])])}]}},function(t,e,n){var a=n(0)(n(345),n(385),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(75),o=n(125),i=n.n(o),s=n(71),l=n.n(s);e.default={name:"Privacy",data:function(){return{fetching:!1,saving:!1,tableLibs:{},default_settings:{}}},computed:{tableColors:function(){return Object(a.a)().footable.colors},table_styles:function(){return Object(a.a)().footable.css_libs},availableStyles:function(){var t=this.table_styles[this.default_settings.css_lib];return!!t&&t.styles}},methods:{get:function(){var t=this;this.fetching=!0,this.$get({action:"ninja_tables_ajax_actions",target_action:"get_default_settings"}).then(function(e){t.default_settings=e.data.default_settings}).fail(function(t){}).always(function(){t.fetching=!1})},store:function(){var t=this;this.saving=!0;var e=[];l()(this.availableStyles,function(t){e.push(t.key)}),this.default_settings.css_classes=i()(e,this.default_settings.css_classes),this.$post({action:"ninja_tables_ajax_actions",target_action:"save_default_settings",default_settings:this.default_settings}).then(function(e){t.$message.success({showClose:!0,message:e.data.message,type:"success"})}).fail(function(t){}).always(function(){t.saving=!1})}},mounted:function(){this.get()}}},function(t,e,n){var a=n(126),o=n(370),i=n(374),s=n(22),l=n(118),r=n(130),c=Math.min;t.exports=function(t,e,n){for(var u=n?i:o,d=t[0].length,_=t.length,p=_,f=Array(_),m=1/0,v=[];p--;){var h=t[p];p&&e&&(h=s(h,l(e))),m=c(h.length,m),f[p]=!n&&(e||d>=120&&h.length>=120)?new a(p&&h):void 0}h=t[0];var b=-1,g=f[0];t:for(;++b<d&&v.length<m;){var y=h[b],w=e?e(y):y;if(y=n||0!==y?y:0,!(g?r(g,w):u(v,w,n))){for(p=_;--p;){var x=f[p];if(!(x?r(x,w):u(t[p],w,n)))continue t}g&&g.push(w),v.push(y)}}return v}},function(t,e,n){var a=n(348),o=n(43),i=n(77);t.exports=function(){this.size=0,this.__data__={hash:new a,map:new(i||o),string:new a}}},function(t,e,n){var a=n(349),o=n(354),i=n(355),s=n(356),l=n(357);function r(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var a=t[e];this.set(a[0],a[1])}}r.prototype.clear=a,r.prototype.delete=o,r.prototype.get=i,r.prototype.has=s,r.prototype.set=l,t.exports=r},function(t,e,n){var a=n(42);t.exports=function(){this.__data__=a?a(null):{},this.size=0}},function(t,e,n){var a=n(120),o=n(351),i=n(40),s=n(127),l=/^\[object .+?Constructor\]$/,r=Function.prototype,c=Object.prototype,u=r.toString,d=c.hasOwnProperty,_=RegExp("^"+u.call(d).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");t.exports=function(t){return!(!i(t)||o(t))&&(a(t)?_:l).test(s(t))}},function(t,e,n){var a,o=n(352),i=(a=/[^.]+$/.exec(o&&o.keys&&o.keys.IE_PROTO||""))?"Symbol(src)_1."+a:"";t.exports=function(t){return!!i&&i in t}},function(t,e,n){var a=n(5)["__core-js_shared__"];t.exports=a},function(t,e){t.exports=function(t,e){return null==t?void 0:t[e]}},function(t,e){t.exports=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e}},function(t,e,n){var a=n(42),o="__lodash_hash_undefined__",i=Object.prototype.hasOwnProperty;t.exports=function(t){var e=this.__data__;if(a){var n=e[t];return n===o?void 0:n}return i.call(e,t)?e[t]:void 0}},function(t,e,n){var a=n(42),o=Object.prototype.hasOwnProperty;t.exports=function(t){var e=this.__data__;return a?void 0!==e[t]:o.call(e,t)}},function(t,e,n){var a=n(42),o="__lodash_hash_undefined__";t.exports=function(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=a&&void 0===e?o:e,this}},function(t,e){t.exports=function(){this.__data__=[],this.size=0}},function(t,e,n){var a=n(44),o=Array.prototype.splice;t.exports=function(t){var e=this.__data__,n=a(e,t);return!(n<0||(n==e.length-1?e.pop():o.call(e,n,1),--this.size,0))}},function(t,e,n){var a=n(44);t.exports=function(t){var e=this.__data__,n=a(e,t);return n<0?void 0:e[n][1]}},function(t,e,n){var a=n(44);t.exports=function(t){return a(this.__data__,t)>-1}},function(t,e,n){var a=n(44);t.exports=function(t,e){var n=this.__data__,o=a(n,t);return o<0?(++this.size,n.push([t,e])):n[o][1]=e,this}},function(t,e,n){var a=n(45);t.exports=function(t){var e=a(this,t).delete(t);return this.size-=e?1:0,e}},function(t,e){t.exports=function(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}},function(t,e,n){var a=n(45);t.exports=function(t){return a(this,t).get(t)}},function(t,e,n){var a=n(45);t.exports=function(t){return a(this,t).has(t)}},function(t,e,n){var a=n(45);t.exports=function(t,e){var n=a(this,t),o=n.size;return n.set(t,e),this.size+=n.size==o?0:1,this}},function(t,e){var n="__lodash_hash_undefined__";t.exports=function(t){return this.__data__.set(t,n),this}},function(t,e){t.exports=function(t){return this.__data__.has(t)}},function(t,e,n){var a=n(371);t.exports=function(t,e){return!(null==t||!t.length)&&a(t,e,0)>-1}},function(t,e,n){var a=n(129),o=n(372),i=n(373);t.exports=function(t,e,n){return e==e?i(t,e,n):a(t,o,n)}},function(t,e){t.exports=function(t){return t!=t}},function(t,e){t.exports=function(t,e,n){for(var a=n-1,o=t.length;++a<o;)if(t[a]===e)return a;return-1}},function(t,e){t.exports=function(t,e,n){for(var a=-1,o=null==t?0:t.length;++a<o;)if(n(e,t[a]))return!0;return!1}},function(t,e,n){var a=n(41),o=n(376),i=n(378);t.exports=function(t,e){return i(o(t,e,a),t+"")}},function(t,e,n){var a=n(377),o=Math.max;t.exports=function(t,e,n){return e=o(void 0===e?t.length-1:e,0),function(){for(var i=arguments,s=-1,l=o(i.length-e,0),r=Array(l);++s<l;)r[s]=i[e+s];s=-1;for(var c=Array(e+1);++s<e;)c[s]=i[s];return c[e]=n(r),a(t,this,c)}}},function(t,e){t.exports=function(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}},function(t,e,n){var a=n(379),o=n(382)(a);t.exports=o},function(t,e,n){var a=n(380),o=n(381),i=n(41),s=o?function(t,e){return o(t,"toString",{configurable:!0,enumerable:!1,value:a(e),writable:!0})}:i;t.exports=s},function(t,e){t.exports=function(t){return function(){return t}}},function(t,e,n){var a=n(15),o=function(){try{var t=a(Object,"defineProperty");return t({},"",{}),t}catch(t){}}();t.exports=o},function(t,e){var n=800,a=16,o=Date.now;t.exports=function(t){var e=0,i=0;return function(){var s=o(),l=a-(s-i);if(i=s,l>0){if(++e>=n)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}},function(t,e,n){var a=n(384);t.exports=function(t){return a(t)?t:[]}},function(t,e,n){var a=n(39),o=n(6);t.exports=function(t){return o(t)&&a(t)}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"privacy"},[t._m(0),t._v(" "),n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}],staticClass:"ninja_content"},[t._m(1),t._v(" "),n("hr"),t._v(" "),[n("div",{staticClass:"ninja_block"},[n("div",{staticClass:"form_group"},[n("h3",[t._v("Default Styling Library")]),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.default_settings.css_lib,callback:function(e){t.$set(t.default_settings,"css_lib",e)},expression:"default_settings.css_lib"}},t._l(t.table_styles,function(e,a){return n("el-radio-button",{key:a,attrs:{label:a}},[t._v("\n "+t._s(e.title)+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:e.description}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)}))],1),t._v(" "),n("div",{staticClass:"form_group"},[n("h3",[t._v("Default Table Styles")]),t._v(" "),t._l(t.availableStyles,function(e){return n("label",{key:e.key,attrs:{for:"table_style_"+e.key}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.css_classes,expression:"default_settings.css_classes"}],attrs:{type:"checkbox",name:"table_styles",id:"table_style_"+e.key},domProps:{value:e.key,checked:Array.isArray(t.default_settings.css_classes)?t._i(t.default_settings.css_classes,e.key)>-1:t.default_settings.css_classes},on:{change:function(n){var a=t.default_settings.css_classes,o=n.target,i=!!o.checked;if(Array.isArray(a)){var s=e.key,l=t._i(a,s);o.checked?l<0&&t.$set(t.default_settings,"css_classes",a.concat([s])):l>-1&&t.$set(t.default_settings,"css_classes",a.slice(0,l).concat(a.slice(l+1)))}else t.$set(t.default_settings,"css_classes",i)}}}),t._v("\n "+t._s(e.title)+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:e.description}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1)})],2),t._v(" "),n("div",{staticClass:"form_group"},[n("h3",[t._v("Default Features")]),t._v(" "),n("label",{attrs:{for:"show_title"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.show_title,expression:"default_settings.show_title"}],attrs:{type:"checkbox",value:"1",id:"show_title"},domProps:{checked:Array.isArray(t.default_settings.show_title)?t._i(t.default_settings.show_title,"1")>-1:t.default_settings.show_title},on:{change:function(e){var n=t.default_settings.show_title,a=e.target,o=!!a.checked;if(Array.isArray(n)){var i=t._i(n,"1");a.checked?i<0&&t.$set(t.default_settings,"show_title",n.concat(["1"])):i>-1&&t.$set(t.default_settings,"show_title",n.slice(0,i).concat(n.slice(i+1)))}else t.$set(t.default_settings,"show_title",o)}}}),t._v(" "+t._s(t.$t("Show Table Title"))+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Enable this if you want to show table title in frontend"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("label",{attrs:{for:"show_description"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.show_description,expression:"default_settings.show_description"}],attrs:{type:"checkbox",value:"1",id:"show_description"},domProps:{checked:Array.isArray(t.default_settings.show_description)?t._i(t.default_settings.show_description,"1")>-1:t.default_settings.show_description},on:{change:function(e){var n=t.default_settings.show_description,a=e.target,o=!!a.checked;if(Array.isArray(n)){var i=t._i(n,"1");a.checked?i<0&&t.$set(t.default_settings,"show_description",n.concat(["1"])):i>-1&&t.$set(t.default_settings,"show_description",n.slice(0,i).concat(n.slice(i+1)))}else t.$set(t.default_settings,"show_description",o)}}}),t._v(" "+t._s(t.$t("Show Table Description"))+"\n "),n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Enable this if you want to show table description in frontend"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("label",{attrs:{for:"enable_search"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.enable_search,expression:"default_settings.enable_search"}],attrs:{type:"checkbox",value:"1",id:"enable_search"},domProps:{checked:Array.isArray(t.default_settings.enable_search)?t._i(t.default_settings.enable_search,"1")>-1:t.default_settings.enable_search},on:{change:function(e){var n=t.default_settings.enable_search,a=e.target,o=!!a.checked;if(Array.isArray(n)){var i=t._i(n,"1");a.checked?i<0&&t.$set(t.default_settings,"enable_search",n.concat(["1"])):i>-1&&t.$set(t.default_settings,"enable_search",n.slice(0,i).concat(n.slice(i+1)))}else t.$set(t.default_settings,"enable_search",o)}}}),t._v(" "+t._s(t.$t("Enable the visitor to filter or search the table."))+"\n ")]),t._v(" "),n("label",{attrs:{for:"column_sorting"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.column_sorting,expression:"default_settings.column_sorting"}],attrs:{type:"checkbox",value:"1",id:"column_sorting"},domProps:{checked:Array.isArray(t.default_settings.column_sorting)?t._i(t.default_settings.column_sorting,"1")>-1:t.default_settings.column_sorting},on:{change:function(e){var n=t.default_settings.column_sorting,a=e.target,o=!!a.checked;if(Array.isArray(n)){var i=t._i(n,"1");a.checked?i<0&&t.$set(t.default_settings,"column_sorting",n.concat(["1"])):i>-1&&t.$set(t.default_settings,"column_sorting",n.slice(0,i).concat(n.slice(i+1)))}else t.$set(t.default_settings,"column_sorting",o)}}}),t._v(" "+t._s(t.$t("Enable sorting of the table by the visitor"))+"\n ")]),t._v(" "),n("label",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.hide_all_borders,expression:"default_settings.hide_all_borders"}],attrs:{type:"checkbox"},domProps:{checked:Array.isArray(t.default_settings.hide_all_borders)?t._i(t.default_settings.hide_all_borders,null)>-1:t.default_settings.hide_all_borders},on:{change:function(e){var n=t.default_settings.hide_all_borders,a=e.target,o=!!a.checked;if(Array.isArray(n)){var i=t._i(n,null);a.checked?i<0&&t.$set(t.default_settings,"hide_all_borders",n.concat([null])):i>-1&&t.$set(t.default_settings,"hide_all_borders",n.slice(0,i).concat(n.slice(i+1)))}else t.$set(t.default_settings,"hide_all_borders",o)}}}),t._v("\n Hide All Borders\n ")])]),t._v(" "),n("div",{staticClass:"form_group",staticStyle:{"max-width":"400px"}},[n("h3",[t._v("Default Table Color")]),t._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.table_color,expression:"default_settings.table_color"}],staticClass:"form_control",on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.default_settings,"table_color",e.target.multiple?n:n[0])}}},t._l(t.tableColors,function(e,a){return n("option",{key:a,domProps:{value:a}},[t._v("\n "+t._s(e)+"\n ")])}))]),t._v(" "),n("div",{staticClass:"form_group"},[n("h3",[t._v("Default Pagination Setting")]),t._v(" "),n("el-switch",{attrs:{"inactive-color":"gray","active-text":"Hide Pagination (Show all data at once)","active-value":"1","inactive-value":"0"},model:{value:t.default_settings.show_all,callback:function(e){t.$set(t.default_settings,"show_all",e)},expression:"default_settings.show_all"}})],1)]),t._v(" "),n("div",{staticClass:"form_group",staticStyle:{"max-width":"400px"}},[n("label",{attrs:{for:"items_per_page"}},[t._v(t._s(t.$t("Pagination Items Per Page")))]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.default_settings.perPage,expression:"default_settings.perPage"}],staticClass:"form_control",attrs:{id:"items_per_page",type:"number",disabled:1==t.default_settings.show_all||"1"==t.default_settings.show_all},domProps:{value:t.default_settings.perPage},on:{input:function(e){e.target.composing||t.$set(t.default_settings,"perPage",e.target.value)}}})]),t._v(" "),n("div",{staticClass:"form-group",staticStyle:{"margin-top":"30px"}},[n("el-button",{attrs:{loading:t.saving,type:"success",size:"small"},on:{click:t.store}},[t._v("Update")])],1)]],2)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_header"},[e("h2",[this._v("Global Appearance Settings")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_block"},[e("p",[this._v("\n The following settings will be applied to the newly created tables. Of course, You can customize the\n appearance settings to each table level.\n ")])])}]}},function(t,e,n){var a=n(0)(n(389),n(390),!1,function(t){n(387)},null,null);t.exports=a.exports},function(t,e,n){var a=n(388);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("f8b49d58",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".license_form{text-align:center;padding:20px 0}.license_form label{font-size:30px;font-weight:400;display:block;margin-bottom:20px;text-transform:capitalize}.license_form .form_input input{min-width:400px;height:48px;width:50%;margin-bottom:20px;border-radius:5px;border:1px solid gray;background:#fbfdff;font-size:20px;padding:0 10px}.license_form .error_message{margin-top:40px;padding:10px;background:#ffe491;color:#000;font-weight:700;border-radius:5px}.license_success{text-align:center;padding:40px 0}.license_renew_box{padding:10px;border:2px dashed #ff0;background:#ffee9b}.license_renew_box p{font-size:18px}.license_renew_box a{font-weight:700;text-transform:capitalize;border:1px solid gray;text-decoration:none;padding:5px 15px;background:#0073aa;color:#fff;border-radius:21px}.license_renew_box a:hover{background:#fff;color:#0073aa}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"license",data:function(){return{licenseKey:"",error_message:"",enter_new_license:!1,checkingLicense:!1,doing_ajax:!1,renewLicenseHtml:"",renewHtml:"",is_valid:window.ninja_table_admin.hasValidLicense}},methods:{activateLicense:function(){var t=this;this.licenseKey?(this.doing_ajax=!0,this.error_message="",jQuery.post(ajaxurl,{action:"_ninjatables_pro_license_activate_license",_ninjatables_pro_license_key:this.licenseKey}).then(function(e){e.data&&e.data.message?(jQuery(".error_notice_ninjatables_pro_license").remove(),t.is_valid="valid"):t.error_message="Something is wrong when contacting with license server. Please make sure you have curl installed you server",t.doing_ajax=!1}).fail(function(e){e.responseJSON&&e.responseJSON.data?t.error_message=e.responseJSON.data.message:t.error_message="Sorry, Something is wrong! Please make sure you have ninja tables pro installed and curl installed on your server",t.doing_ajax=!1}).always(function(){t.doing_ajax=!1})):this.error_message="Please provide a license key"},deactivateLicense:function(){var t=this;this.doing_ajax=!0,this.error_message="",jQuery.post(ajaxurl,{action:"_ninjatables_pro_license_deactivate_license"}).then(function(e){t.is_valid=!1}).fail(function(e){console.log(e),t.error_message=e.responseJSON.data.message,e.responseJSON&&e.responseJSON.data?t.$message.error(e.responseJSON.data.message):t.$message.error("Sorry, Something is wrong! Please try again")}).always(function(){t.doing_ajax=!1})},get_license_info:function(){var t=this;this.checkingLicense=!0,this.error_message="",jQuery.get(ajaxurl,{action:"_ninjatables_pro_license_get_license_info"}).then(function(e){t.renewLicenseHtml=e.data.renewHtml,t.is_valid=e.data.status,t.renewHtml=e.data.renewHtml}).fail(function(e){t.error_message=e.responseJSON.data.message}).always(function(){t.checkingLicense=!1})}},mounted:function(){this.get_license_info()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"license"},[n("div",{staticClass:"ninja_header"},["valid"==t.is_valid?n("div",[n("h2",[t._v(t._s(t.$t("Your License is Active")))])]):"expired"==t.is_valid?n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.checkingLicense,expression:"checkingLicense"}]},[n("h2",[t._v(t._s(t.$t("Licensing has been expired")))])]):n("div",[n("h2",[t._v(t._s(t.$t("Licensing")))]),t._v(" "),t._m(0)])]),t._v(" "),n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.checkingLicense,expression:"checkingLicense"}],staticClass:"ninja_content"},["valid"==t.is_valid?n("div",{staticClass:"license_success"},[n("h3",[t._v(t._s(t.$t("Your license is active! Enjoy Ninja Tables Pro Add On")))]),t._v(" "),n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.doing_ajax,expression:"doing_ajax"}],staticClass:"license_submit",attrs:{type:"default",size:"mini"},on:{click:function(e){t.deactivateLicense()}}},[t._v(t._s(t.$t("Deactivate License")))]),t._v(" "),t.renewHtml?n("p",{domProps:{innerHTML:t._s(t.renewHtml)}}):t._e()],1):"expired"==t.is_valid?n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.checkingLicense,expression:"checkingLicense"}],staticClass:"license_form"},[n("div",{staticClass:"checking_license license_renew_box",staticStyle:{"text-align":"center"},domProps:{innerHTML:t._s(t.renewLicenseHtml)}}),t._v(" "),n("p",[t._v("If you already renewed your license then please "),n("a",{attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.get_license_info()}}},[t._v("click here to check again")])]),t._v(" "),n("p",[t._v("Have a new license key? Please "),n("a",{attrs:{href:"#"},on:{click:function(e){e.preventDefault(),t.enter_new_license=!0}}},[t._v("click here")])]),t._v(" "),t.enter_new_license?n("div",{staticClass:"license_form"},[n("label",{attrs:{for:"license_form_input"}},[t._v("\n "+t._s(t.$t("Enter your license key"))+"\n ")]),t._v(" "),n("div",{staticClass:"form_input"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.licenseKey,expression:"licenseKey"}],attrs:{placeholder:"License Key",id:"license_form_input"},domProps:{value:t.licenseKey},on:{input:function(e){e.target.composing||(t.licenseKey=e.target.value)}}})]),t._v(" "),n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.doing_ajax,expression:"doing_ajax"}],staticClass:"license_submit",attrs:{type:"primary"},on:{click:function(e){t.activateLicense()}}},[t._v(t._s(t.$t("Activate Ninja Tables Pro")))]),t._v(" "),n("div",{staticClass:"nt_messages"},[t.error_message?n("p",{staticClass:"error_message",domProps:{innerHTML:t._s(t.error_message)}}):t._e()])],1):t._e()]):n("div",{staticClass:"license_form"},[n("label",{attrs:{for:"license_form_input"}},[t._v("\n "+t._s(t.$t("Enter your license key"))+"\n ")]),t._v(" "),n("div",{staticClass:"form_input"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.licenseKey,expression:"licenseKey"}],attrs:{placeholder:"License Key",id:"license_form_input"},domProps:{value:t.licenseKey},on:{input:function(e){e.target.composing||(t.licenseKey=e.target.value)}}})]),t._v(" "),n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.doing_ajax,expression:"doing_ajax"}],staticClass:"license_submit",attrs:{type:"primary"},on:{click:function(e){t.activateLicense()}}},[t._v(t._s(t.$t("Activate Ninja Tables Pro")))]),t._v(" "),n("div",{staticClass:"nt_messages"},[t.error_message?n("p",{staticClass:"error_message",domProps:{innerHTML:t._s(t.error_message)}}):t._e()])],1)])])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("p",[this._v("\n You need to activate your Ninja Table Pro by providing the license key bellow. If you don't have a\n license key please "),e("a",{attrs:{href:"https://wpmanageninja.com/checkout/purchase-history/",target:"_blank"}},[this._v("Click\n Here")]),this._v(" to get a license key from your purchase. "),e("br"),this._v("Any questions or problems with your license? "),e("a",{attrs:{href:"https://wpmanageninja.com/contact/",target:"_blank"}},[this._v("Contact us!")])])}]}},function(t,e,n){var a=n(0)(n(392),n(393),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"GlobalSettings",data:function(){return{loading:!1,ninja_suppress_error:"log_silently"}},methods:{getSettings:function(){var t=this;this.loading=!0,jQuery.get(ajaxurl,{action:"ninja_tables_ajax_actions",target_action:"get_global_settings"}).then(function(e){t.ninja_suppress_error=e.data.ninja_suppress_error}).fail(function(t){}).always(function(){t.loading=!1})},storeSettings:function(){var t=this,e={action:"ninja_tables_ajax_actions",target_action:"update_global_settings",suppress_error:this.ninja_suppress_error};jQuery.post(ajaxurl,e).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"})}).fail(function(t){})},clearCache:function(){var t=this;jQuery.post(ajaxurl,{action:"ninja_tables_ajax_actions",target_action:"clear_tables_cache"}).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"})}).fail(function(t){})}},mounted:function(){this.getSettings()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"privacy"},[t._m(0),t._v(" "),n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"ninja_content"},[n("div",{staticClass:"ninja_block"},[n("h3",[t._v("Global Javascript Error Handling")]),t._v(" "),n("el-radio-group",{staticClass:"spaced_new_line",model:{value:t.ninja_suppress_error,callback:function(e){t.ninja_suppress_error=e},expression:"ninja_suppress_error"}},[n("el-radio",{attrs:{label:"log_silently"}},[t._v("Console Log JS Errors Silently")]),t._v(" "),n("el-radio",{attrs:{label:"yes"}},[t._v("Handle Error But don't Log")]),t._v(" "),n("el-radio",{attrs:{label:"no"}},[t._v("Don't Handle Global Javascript Errors (Default)")])],1)],1),t._v(" "),n("el-button",{attrs:{size:"small",type:"success"},on:{click:function(e){t.storeSettings()}}},[t._v("Update Global Settings")])],1),t._v(" "),n("div",{staticClass:"ninja_block ninja_heightlight_block"},[n("h3",[t._v("Clear Table Cache")]),t._v(" "),n("p",[t._v("If you want to clear all the Ninja table cache, please click on the following button")]),t._v(" "),n("el-button",{attrs:{size:"small",type:"danger"},on:{click:function(e){t.clearCache()}}},[t._v("Clear Table Cache")])],1)])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_header"},[e("h2",[this._v("Global Settings")])])}]}},function(t,e,n){var a=n(0)(n(397),n(412),!1,function(t){n(395)},null,null);t.exports=a.exports},function(t,e,n){var a=n(396);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("1d1d30f8",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".settings_header{font-size:20px;padding-bottom:20px;background:#fff;margin-top:-20px;padding-top:20px;margin-right:-20px;margin-left:-20px;padding-left:24px}.settings_header .action{font-size:16px;cursor:pointer}.settings_header .action:hover{color:#0085ba}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(108),o=n.n(a),i=n(398),s=n.n(i),l=n(14),r=n.n(l),c=n(78),u=n.n(c),d=n(410),_=n.n(d),p=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};e.default={name:"table_home",components:{edit_table:s.a},data:function(){return{table_tabs:[],is_data_saving:!1,is_form_saving:!1,tableId:this.$route.params.table_id,config:null,table:{},doingAjax:!1,doingAjaxTest:!1,user_tab:this.$route.query.user_tab,editTableModalShow:!1,preview_url:"#",has_pro:window.ninja_table_admin.hasPro}},methods:{updateTableColumns:function(t){var e=this;this.doingAjax=!0;var n={action:"ninja_tables_ajax_actions",target_action:"update-table-settings",table_id:this.tableId,columns:this.config.columns};jQuery.post(ajaxurl,n).success(function(n){e.$message({showClose:!0,message:n.message,type:"success"}),t(n)}).fail(function(t){}).always(function(){e.doingAjax=!1})},getSettings:function(){var t=this;this.doingAjax=!0;var e={action:"ninja_tables_ajax_actions",target_action:"get-table-settings",table_id:this.tableId};jQuery.getJSON(ajaxurl,e).then(function(e){"[object Object]"==Object.prototype.toString.call(e.columns)&&(e.columns=_()(e.columns)),t.config=e,t.table=e.table,t.preview_url=e.preview_url}).fail(function(e){t.$message.error(e.responseJSON.data.message),e.responseJSON.data.route&&t.$router.push({name:e.responseJSON.data.route})}).always(function(){return t.doingAjax=!1})},goToTab:function(t){this.user_tab=t,this.$router.push({name:"custom_tab",params:{table_id:this.tableId},query:{user_tab:t}})},size:u.a,each:r.a,initTableTabs:function(){this.table_tabs=this.applyFilters("ninja_table_table_tabs",[{route:"data_items",title:"Table Rows"},{route:"data_columns",title:"Table Configuration"},{route:"design_studio",title:"Table Design"},{route:"table_editing",title:"Frontend Editing"},{route:"additional_css",title:"Custom CSS/JS"},{route:"import-export",title:"Import - Export"}])}},mounted:function(){var t=this;this.initTableTabs(),this.getSettings(),new o.a(".copy").on("success",function(e){t.$message({message:"Copied to Clipboard!",type:"success"})}),window.ninjaTableBus.$on("initManualSorting",function(t,e,n){var a=p({action:"ninja_tables_init_sortable"},t);jQuery.post(ajaxurl,a).success(function(t){return e(t)}).fail(function(t){return n(t)})}),window.ninjaTableBus.$on("tableDoingAjax",function(e){t.doingAjax=e}),window.ninjaTableBus.$on("updateTableColumns",function(e){t.updateTableColumns(e)}),window.ninjaTableBus.$emit("addedTable")}}},function(t,e,n){var a=n(0)(n(399),n(400),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(27),o=n.n(a);e.default={name:"add_table",components:{wp_editor:o.a},props:{table:{type:Object,default:function(){return{ID:null,post_title:"",post_content:"",table_caption:""}}}},data:function(){return{btnLoading:!1}},methods:{handleTabClick:function(t,e){setTimeout(function(){jQuery(t.$el).find("input:first").focus()},0)},addTable:function(){var t=this;this.btnLoading=!0;var e={action:"ninja_tables_ajax_actions",target_action:"store-a-table",post_title:this.table.post_title,post_content:this.table.post_content,table_caption:this.table.table_caption,tableId:this.table.ID};jQuery.post(ajaxurl,e).then(function(e){t.$message({showClose:!0,message:e.message,type:"success"}),t.closeModal()}).fail(function(e){e.responseJSON.data.message?t.$message({showClose:!0,message:e.responseJSON.data.message,type:"error"}):t.$message({showClose:!0,message:e.responseText,type:"error"})}).always(function(){t.btnLoading=!1})},closeModal:function(){this.$emit("modal_close")}},mounted:function(){}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_table_edit"},[n("div",{staticClass:"ninja_modal-body"},[n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Table Title")))]),t._v(" "),n("el-input",{attrs:{type:"text",size:"small",placeholder:"Enter a title to identify your table"},model:{value:t.table.post_title,callback:function(e){t.$set(t.table,"post_title",e)},expression:"table.post_title"}})],1),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Table Caption")))]),t._v(" "),n("el-input",{attrs:{size:"small",type:"text",placeholder:"Enter a table caption if you want to show"},model:{value:t.table.table_caption,callback:function(e){t.$set(t.table,"table_caption",e)},expression:"table.table_caption"}})],1),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Table Description")))]),t._v(" "),n("wp_editor",{model:{value:t.table.post_content,callback:function(e){t.$set(t.table,"post_content",e)},expression:"table.post_content"}})],1)]),t._v(" "),n("div",{staticClass:"modal-footer"},[n("el-button",{attrs:{loading:t.btnLoading,type:"primary",size:"small"},on:{click:t.addTable}},[t._v("\n "+t._s(t.$t("Update"))+"\n ")])],1)])},staticRenderFns:[]}},function(t,e,n){var a=n(15)(n(5),"DataView");t.exports=a},function(t,e,n){var a=n(15)(n(5),"Promise");t.exports=a},function(t,e,n){var a=n(15)(n(5),"Set");t.exports=a},function(t,e,n){var a=n(15)(n(5),"WeakMap");t.exports=a},function(t,e,n){var a=n(10),o=n(4),i=n(6),s="[object String]";t.exports=function(t){return"string"==typeof t||!o(t)&&i(t)&&a(t)==s}},function(t,e,n){var a=n(407),o=n(408),i=n(409);t.exports=function(t){return o(t)?i(t):a(t)}},function(t,e,n){var a=n(132)("length");t.exports=a},function(t,e){var n=RegExp("[\\u200d\\ud800-\\udfff\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff\\ufe0e\\ufe0f]");t.exports=function(t){return n.test(t)}},function(t,e){var n="[\\ud800-\\udfff]",a="[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]",o="\\ud83c[\\udffb-\\udfff]",i="[^\\ud800-\\udfff]",s="(?:\\ud83c[\\udde6-\\uddff]){2}",l="[\\ud800-\\udbff][\\udc00-\\udfff]",r="(?:"+a+"|"+o+")"+"?",c="[\\ufe0e\\ufe0f]?"+r+("(?:\\u200d(?:"+[i,s,l].join("|")+")[\\ufe0e\\ufe0f]?"+r+")*"),u="(?:"+[i+a+"?",a,s,l,n].join("|")+")",d=RegExp(o+"(?="+o+")|"+u+c,"g");t.exports=function(t){for(var e=d.lastIndex=0;d.test(t);)++e;return e}},function(t,e,n){var a=n(411),o=n(37);t.exports=function(t){return null==t?[]:a(t,o(t))}},function(t,e,n){var a=n(22);t.exports=function(t,e){return a(e,function(e){return t[e]})}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.doingAjax?n("span",{directives:[{name:"loading",rawName:"v-loading",value:t.doingAjax,expression:"doingAjax"}],staticClass:"doingAJaxLoading"}):t._e(),t._v(" "),n("div",{staticClass:"settings_header"},[n("div",{staticStyle:{display:"inline-block","margin-top":"8px"}},[n("el-button",{staticClass:"ninja_mini",attrs:{size:"mini"},on:{click:function(e){t.editTableModalShow=!t.editTableModalShow}}},[n("i",{staticClass:"el-icon-edit action",attrs:{title:"Edit"}},[t._v(t._s(t.$t("Edit")))])]),t._v(" "),n("span",{staticClass:"section_title"},[t._v(t._s(t.table.post_title))]),t._v(" "),n("el-tooltip",{attrs:{effect:"dark",content:"Click to copy shortcode",title:"Click to copy shortcode",placement:"top"}},[n("code",{staticClass:"copy",attrs:{"data-clipboard-text":'[ninja_tables id="'+t.tableId+'"]'}},[n("i",{staticClass:"el-icon-document"}),t._v(' [ninja_tables id="'+t._s(t.tableId)+'"]\n ')])])],1),t._v(" "),n("span",{staticClass:"pull-right",staticStyle:{"margin-right":"20px"}},[n("router-link",{staticClass:"doc_link",attrs:{to:{name:"help"}}},[t._v(t._s(t.$t("Documentation")))]),t._v(" "),n("a",{attrs:{href:t.preview_url,target:"_blank"}},[n("el-button",{attrs:{size:"mini"}},[t._v(t._s(t.$t("Preview")))])],1),t._v(" "),t.has_pro?t._e():n("a",{attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade",target:"_blank"}},[n("el-button",{attrs:{type:"danger",size:"mini"}},[t._v(t._s(t.$t("Buy Pro")))])],1)],1)]),t._v(" "),n("fieldset",{class:[t.is_form_saving?"disabled":""],attrs:{disabled:t.is_form_saving}},[n("h2",{staticClass:"nav-tab-wrapper"},t._l(t.table_tabs,function(e){return n("router-link",{key:e.route,class:["nav-tab"],attrs:{"active-class":"nav-tab-active",exact:"",to:{name:e.route,params:{table_id:t.tableId}}}},[t._v("\n "+t._s(e.title)+"\n ")])})),t._v(" "),t.config?n("router-view",{attrs:{config:t.config,getColumnSettings:t.getSettings}}):t._e()],1),t._v(" "),n("el-dialog",{attrs:{title:"Update Table Info",visible:t.editTableModalShow,top:"50px","append-to-body":!0},on:{"update:visible":function(e){t.editTableModalShow=e}}},[t.editTableModalShow?n("edit_table",{attrs:{table:t.table},on:{modal_close:function(e){t.editTableModalShow=!t.editTableModalShow}}}):t._e()],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(416),n(532),!1,function(t){n(414)},null,null);t.exports=a.exports},function(t,e,n){var a=n(415);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("33f2b9d0",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".el-table{margin-top:10px;margin-bottom:10px}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.sorting tr{cursor:move}.el-table__header tr th:hover .nt-column-config{opacity:1}.nt-column-config{padding-left:5px;cursor:pointer;opacity:0;display:inline-block}.nt-column-config:hover{color:#58b7ff}.instruction_block{padding:30px 20px;background:#fff}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(133),o=n.n(a),i=n(134),s=n.n(i),l=n(142),r=n.n(l),c=n(459),u=n.n(c),d=n(109),_=n.n(d),p=n(145),f=n.n(p),m=n(477),v=n.n(m),h=n(146),b=n.n(h),g=n(48),y=n.n(g),w=n(506),x=n.n(w),k=n(511),C=n.n(k),S=n(516),j=n.n(S),$=n(521),T=n.n($),P=n(526),E=n.n(P),A=n(529),N=n.n(A);e.default={name:"TableDataItems",components:{add_data_modal:u.a,ninja_pagination:_.a,Alert:f.a,DeletePopOver:v.a,SortableUpgradeNotice:b.a,columnsEditor:y.a,FluentFormNav:x.a,ExternalSourceNav:C.a,WPPostsNav:T.a,RawSqlNav:j.a,WooNavEdit:E.a,ShowEditableCell:N.a},props:["config","getColumnSettings","hasPro"],data:function(){return{columnModal:!1,show_meta:!1,new_column:{},has_pro:!!window.ninja_table_admin.hasPro,hasSortable:!!window.ninja_table_admin.hasSortable,isCompact:!0,tableWidth:"100%",tableData:[],searchString:"",doingAjax:!1,addDataModal:!1,tableId:this.$route.params.table_id,loading:!1,syncing:!1,bulkAction:-1,selectAll:0,checkedItems:[],pageLoading:!1,items:[],paginate:{total:0,current_page:1,last_page:1,per_page:20},multipleSelection:[],updateItem:null,editIndex:null,sorting:!1,sortableInstance:null,sortableUpgradeNotice:!1,insertAfterPosition:null,showColumnEditor:!1,currentEditingColumn:!1,addDataModalTitle:"Add Row",dataModalType:"add",dataSource:"default",isUpdatingTableSettings:!1,externalDataSourceUrl:this.config.table.remoteURL,insertAfterId:!1,insertAfterHash:!1}},watch:{searchString:function(){""==this.searchString&&this.getData()},sorting:function(t){if(t){if(!this.has_pro)return this.sorting=!1,void window.ninjaTableBus.$emit("show_pro_popup");if(!this.hasSortable)return this.sorting=!1,void(this.sortableUpgradeNotice=!0)}this.toggleSorting(t)},"new_column.name":function(){this.new_column.key=r()(this.new_column.name)}},computed:{columns:function(){return this.config&&this.config.columns?this.config.columns:[]},columnLength:function(){return this.columns.length},dataSourceType:function(){var t=this.config;return t&&"dataSourceType"in t.table?t.table.dataSourceType:"default"},isEditable:function(){var t=this.config;return!(t&&"isEditable"in t.table)||t.table.isEditable},isEditableMessage:function(){var t=this.config;return t&&"isEditableMessage"in t.table?t.table.isEditableMessage:null}},methods:{getData:function(){var t=this,e={action:"ninja_tables_ajax_actions",target_action:"get-table-data",table_id:this.tableId,page:this.paginate.current_page,per_page:this.paginate.per_page,search:this.searchString,default_sorting:this.config.settings.default_sorting};return this.loading=!0,jQuery.get(ajaxurl,e).success(function(e){t.items=e.data,t.dataSource=e.data_source,t.paginate.total=parseInt(e.total),t.paginate.last_page=parseInt(e.last_page)}).fail(function(t){}).always(function(){t.loading=!1})},addTableData:function(){},getItemNumber:function(t){return this.paginate.per_page*(this.paginate.current_page-1)+(t+1)},goToPage:function(t){this.paginate.current_page=t,this.getData()},handleSizeChange:function(t){this.paginate.per_page=t,this.getData()},confirmDeleteTable:function(t){confirm(this.$t("Are you sure, You want to delete this table"))&&this.deleteTable(t)},deleteTable:function(t){var e=this,n={action:"ninja_tables_ajax_actions",target_action:"delete-a-table",table_id:t};jQuery.post(ajaxurl,n).then(function(t){e.fetchTables(),alert(t.message)}).fail(function(t){alert(t.responseJSON.data.message)})},handleSelectionChange:function(t){this.multipleSelection=t},handleBulkAction:function(){this.multipleSelection.length&&"delete"==this.bulkAction&&this.handleBulkDelete()},handleBulkDelete:function(){var t=this;this.$confirm(this.$t("This will permanently delete the selected rows. Continue?"),"Warning",{confirmButtonText:this.$t("Yes, Delete"),cancelButtonText:this.$t("Cancel"),type:"warning"}).then(function(){var e=t.multipleSelection.map(function(t){return t.id});t.deleteItem(e)}).catch(function(){t.$message({type:"info",message:t.$t("Delete canceled")})})},deleteItem:function(t){var e=this,n={action:"ninja_tables_ajax_actions",target_action:"delete-data",table_id:this.tableId,id:t},a=this;jQuery.post(ajaxurl,n).then(function(t){e.$message({showClose:!0,message:t.message,type:"success"}),a.getData()}).fail(function(t){e.$message({showClose:!0,message:e.$t("Something is wrong! Please try again"),type:"error"})})},closeDataModal:function(t){this.addDataModal=!1,this.editIndex=null,this.insertAfterPosition=null,this.dataModalType="add",this.insertAfterId=!1,this.insertAfterHash=!1,t&&this.getData()},updateItemOnTable:function(t){this.items[this.editIndex].values=t.values,this.items[this.editIndex].settings=t.settings,t.created_at&&(this.items[this.editIndex].created_at=t.created_at)},addItemOnTable:function(t,e){e||(e=t.position),"last-first"==e&&(e="new_first"==this.config.settings.default_sorting?"first":"last"),e?"last"==e?this.items.push(t):"first"==e?this.items.unshift(t):!1!==this.insertAfterHash?(this.insertAfterHash++,this.items.splice(this.insertAfterHash,-1,t)):this.items.push(t):this.items.unshift(t),this.insertAfterPosition&&(this.insertAfterPosition=t.position),this.insertAfterId&&(this.insertAfterId=t.id),this.paginate.total++},showUpdateModal:function(t){this.updateItem=t.row,this.editIndex=t.$index,this.addDataModal=!0,this.dataModalType="update",this.addDataModalTitle="Update Row"},addColumn:function(){this.columnModal=!0},validateColumn:function(t){return t.name?t.key?-1===s()(this.columns,function(e){return e.key==t.key})||(this.$message({showClose:!0,message:this.$t("Column Key needs to be unique. Please add a suffix / prefix to make it unique"),type:"error"}),!1):(this.$message({showClose:!0,message:this.$t("Column Key is required"),type:"error"}),!1):(this.$message({showClose:!0,message:this.$t("Name is required"),type:"error"}),!1)},addNewColumn:function(){this.validateColumn(this.new_column)&&(this.config.columns.push(this.new_column),this.setNewColumn(),this.columnModal=!1,this.storeSettings())},setNewColumn:function(){var t={name:"",key:"",breakpoints:"",data_type:"text",dateFormat:"",header_html_content:"",enable_html_content:!1};"wp-posts"===this.dataSourceType&&(t.source_type="custom"),this.new_column=t},initSortable:function(){var t=document.querySelector(".js-sortable-table tbody"),e=this;this.sortableInstance=o.a.create(t,{onEnd:function(t){var n=t.newIndex,a=t.oldIndex,o=e.items[a];e.sortTable(o.id,e.items[n].position);var i=e.items.splice(a,1)[0];e.items.splice(n,0,i)}})},toggleSorting:function(t){var e=this;t?(this.loading=!0,new Promise(function(t,n){window.ninjaTableBus.$emit("initManualSorting",{table_id:e.tableId,page:e.paginate.current_page,per_page:e.paginate.per_page,search:e.searchString,default_sorting:e.config.settings.default_sorting},t,n)}).then(function(t){e.items=t.data,e.paginate.total=parseInt(t.total),e.paginate.last_page=parseInt(t.last_page),e.config.settings.sorting_type="manual_sort",e.initSortable()}).catch(function(t){console.log(t)}).then(function(){e.loading=!1})):this.sortableInstance&&this.sortableInstance.destroy()},sortTable:function(t,e){var n=this;this.loading=!0;var a={action:"ninja_tables_sort_table",table_id:this.tableId,id:t,newPosition:e,page:this.paginate.current_page,per_page:this.paginate.per_page,search:this.searchString,default_sorting:this.config.settings.default_sorting};jQuery.post(ajaxurl,a).then(function(t){n.items=t.data,n.paginate.total=parseInt(t.total),n.paginate.last_page=parseInt(t.last_page)}).fail(function(t){console.log(t)}).always(function(){n.loading=!1})},add:function(){this.updateItem=null,this.insertAfterPosition=null,this.addDataModal=!0,this.dataModalType="add",this.addDataModalTitle="Add Data"},addAfter:function(t){this.hasSortable?(this.updateItem=null,this.addDataModalTitle="Add Data",this.dataModalType="add-after",this.insertAfterPosition=parseInt(t.row.position),this.insertAfterHash=t.$index,this.insertAfterId=t.row.id,this.addDataModal=!0):this.sortableUpgradeNotice=!0},addConfigIcon:function(t,e){var n=e.column,a=(e.$index,this),o=JSON.parse(n.label),i=t("i",{props:{size:"mini",class:"el-icon-setting",plain:!0,round:!0},class:"el-icon-setting nt-column-config",on:{click:function(t){a.showColumnConfigModal(o)}}});return t("span",null,[o.name||o.key,i])},showColumnConfigModal:function(t){this.currentEditingColumn=this.columns.find(function(e){return e.key===t.key}),this.showColumnEditor=!0},storeSettings:function(){var t=this;window.ninjaTableBus.$emit("updateTableColumns",function(){t.showColumnEditor=!1,t.currentEditingColumn=!1,t.dataSource&&"default"!=t.dataSource&&t.getData()})},duplicateData:function(t){this.updateItem=Object.assign({},t.row),this.updateItem.id=null,this.hasSortable&&(this.insertAfterPosition=t.$index+1),this.insertAfterPosition=parseInt(t.row.position),this.insertAfterHash=t.$index,this.insertAfterId=t.row.id,this.addDataModal=!0,this.dataModalType="duplicate",this.addDataModalTitle="Duplicate Data"},reloadSettingsAndData:function(){this.getColumnSettings(),this.getData()},deleteColumn:function(){var t=this,e=s()(this.config.columns,this.currentEditingColumn);this.showColumnEditor=!1,this.currentEditingColumn=!1,this.config.columns.splice(e,1),this.$nextTick(function(){return t.storeSettings()})}},mounted:function(){this.getData(),this.tableWidth=jQuery(".wrap").width()+"px",this.setNewColumn()}}},function(t,e,n){var a=n(418),o=n(439),i=n(41),s=n(4),l=n(446);t.exports=function(t){return"function"==typeof t?t:null==t?i:"object"==typeof t?s(t)?o(t[0],t[1]):a(t):l(t)}},function(t,e,n){var a=n(419),o=n(438),i=n(139);t.exports=function(t){var e=o(t);return 1==e.length&&e[0][2]?i(e[0][0],e[0][1]):function(n){return n===t||a(n,t,e)}}},function(t,e,n){var a=n(135),o=n(136),i=1,s=2;t.exports=function(t,e,n,l){var r=n.length,c=r,u=!l;if(null==t)return!c;for(t=Object(t);r--;){var d=n[r];if(u&&d[2]?d[1]!==t[d[0]]:!(d[0]in t))return!1}for(;++r<c;){var _=(d=n[r])[0],p=t[_],f=d[1];if(u&&d[2]){if(void 0===p&&!(_ in t))return!1}else{var m=new a;if(l)var v=l(p,f,_,t,e,m);if(!(void 0===v?o(f,p,i|s,l,m):v))return!1}}return!0}},function(t,e,n){var a=n(43);t.exports=function(){this.__data__=new a,this.size=0}},function(t,e){t.exports=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n}},function(t,e){t.exports=function(t){return this.__data__.get(t)}},function(t,e){t.exports=function(t){return this.__data__.has(t)}},function(t,e,n){var a=n(43),o=n(77),i=n(76),s=200;t.exports=function(t,e){var n=this.__data__;if(n instanceof a){var l=n.__data__;if(!o||l.length<s-1)return l.push([t,e]),this.size=++n.size,this;n=this.__data__=new i(l)}return n.set(t,e),this.size=n.size,this}},function(t,e,n){var a=n(135),o=n(137),i=n(427),s=n(431),l=n(131),r=n(4),c=n(114),u=n(117),d=1,_="[object Arguments]",p="[object Array]",f="[object Object]",m=Object.prototype.hasOwnProperty;t.exports=function(t,e,n,v,h,b){var g=r(t),y=r(e),w=g?p:l(t),x=y?p:l(e),k=(w=w==_?f:w)==f,C=(x=x==_?f:x)==f,S=w==x;if(S&&c(t)){if(!c(e))return!1;g=!0,k=!1}if(S&&!k)return b||(b=new a),g||u(t)?o(t,e,n,v,h,b):i(t,e,w,n,v,h,b);if(!(n&d)){var j=k&&m.call(t,"__wrapped__"),$=C&&m.call(e,"__wrapped__");if(j||$){var T=j?t.value():t,P=$?e.value():e;return b||(b=new a),h(T,P,n,v,b)}}return!!S&&(b||(b=new a),s(t,e,n,v,h,b))}},function(t,e){t.exports=function(t,e){for(var n=-1,a=null==t?0:t.length;++n<a;)if(e(t[n],n,t))return!0;return!1}},function(t,e,n){var a=n(11),o=n(428),i=n(128),s=n(137),l=n(429),r=n(430),c=1,u=2,d="[object Boolean]",_="[object Date]",p="[object Error]",f="[object Map]",m="[object Number]",v="[object RegExp]",h="[object Set]",b="[object String]",g="[object Symbol]",y="[object ArrayBuffer]",w="[object DataView]",x=a?a.prototype:void 0,k=x?x.valueOf:void 0;t.exports=function(t,e,n,a,x,C,S){switch(n){case w:if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case y:return!(t.byteLength!=e.byteLength||!C(new o(t),new o(e)));case d:case _:case m:return i(+t,+e);case p:return t.name==e.name&&t.message==e.message;case v:case b:return t==e+"";case f:var j=l;case h:var $=a&c;if(j||(j=r),t.size!=e.size&&!$)return!1;var T=S.get(t);if(T)return T==e;a|=u,S.set(t,e);var P=s(j(t),j(e),a,x,C,S);return S.delete(t),P;case g:if(k)return k.call(t)==k.call(e)}return!1}},function(t,e,n){var a=n(5).Uint8Array;t.exports=a},function(t,e){t.exports=function(t){var e=-1,n=Array(t.size);return t.forEach(function(t,a){n[++e]=[a,t]}),n}},function(t,e){t.exports=function(t){var e=-1,n=Array(t.size);return t.forEach(function(t){n[++e]=t}),n}},function(t,e,n){var a=n(432),o=1,i=Object.prototype.hasOwnProperty;t.exports=function(t,e,n,s,l,r){var c=n&o,u=a(t),d=u.length;if(d!=a(e).length&&!c)return!1;for(var _=d;_--;){var p=u[_];if(!(c?p in e:i.call(e,p)))return!1}var f=r.get(t);if(f&&r.get(e))return f==e;var m=!0;r.set(t,e),r.set(e,t);for(var v=c;++_<d;){var h=t[p=u[_]],b=e[p];if(s)var g=c?s(b,h,p,e,t,r):s(h,b,p,t,e,r);if(!(void 0===g?h===b||l(h,b,n,s,r):g)){m=!1;break}v||(v="constructor"==p)}if(m&&!v){var y=t.constructor,w=e.constructor;y!=w&&"constructor"in t&&"constructor"in e&&!("function"==typeof y&&y instanceof y&&"function"==typeof w&&w instanceof w)&&(m=!1)}return r.delete(t),r.delete(e),m}},function(t,e,n){var a=n(433),o=n(435),i=n(37);t.exports=function(t){return a(t,i,o)}},function(t,e,n){var a=n(434),o=n(4);t.exports=function(t,e,n){var i=e(t);return o(t)?i:a(i,n(t))}},function(t,e){t.exports=function(t,e){for(var n=-1,a=e.length,o=t.length;++n<a;)t[o+n]=e[n];return t}},function(t,e,n){var a=n(436),o=n(437),i=Object.prototype.propertyIsEnumerable,s=Object.getOwnPropertySymbols,l=s?function(t){return null==t?[]:(t=Object(t),a(s(t),function(e){return i.call(t,e)}))}:o;t.exports=l},function(t,e){t.exports=function(t,e){for(var n=-1,a=null==t?0:t.length,o=0,i=[];++n<a;){var s=t[n];e(s,n,t)&&(i[o++]=s)}return i}},function(t,e){t.exports=function(){return[]}},function(t,e,n){var a=n(138),o=n(37);t.exports=function(t){for(var e=o(t),n=e.length;n--;){var i=e[n],s=t[i];e[n]=[i,s,a(s)]}return e}},function(t,e,n){var a=n(136),o=n(79),i=n(443),s=n(80),l=n(138),r=n(139),c=n(46),u=1,d=2;t.exports=function(t,e){return s(t)&&l(e)?r(c(t),e):function(n){var s=o(n,t);return void 0===s&&s===e?i(n,t):a(e,s,u|d)}}},function(t,e,n){var a=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,o=/\\(\\)?/g,i=n(441)(function(t){var e=[];return 46===t.charCodeAt(0)&&e.push(""),t.replace(a,function(t,n,a,i){e.push(a?i.replace(o,"$1"):n||t)}),e});t.exports=i},function(t,e,n){var a=n(442),o=500;t.exports=function(t){var e=a(t,function(t){return n.size===o&&n.clear(),t}),n=e.cache;return e}},function(t,e,n){var a=n(76),o="Expected a function";function i(t,e){if("function"!=typeof t||null!=e&&"function"!=typeof e)throw new TypeError(o);var n=function(){var a=arguments,o=e?e.apply(this,a):a[0],i=n.cache;if(i.has(o))return i.get(o);var s=t.apply(this,a);return n.cache=i.set(o,s)||i,s};return n.cache=new(i.Cache||a),n}i.Cache=a,t.exports=i},function(t,e,n){var a=n(444),o=n(445);t.exports=function(t,e){return null!=t&&o(t,e,a)}},function(t,e){t.exports=function(t,e){return null!=t&&e in Object(t)}},function(t,e,n){var a=n(141),o=n(113),i=n(4),s=n(116),l=n(74),r=n(46);t.exports=function(t,e,n){for(var c=-1,u=(e=a(e,t)).length,d=!1;++c<u;){var _=r(e[c]);if(!(d=null!=t&&n(t,_)))break;t=t[_]}return d||++c!=u?d:!!(u=null==t?0:t.length)&&l(u)&&s(_,u)&&(i(t)||o(t))}},function(t,e,n){var a=n(132),o=n(447),i=n(80),s=n(46);t.exports=function(t){return i(t)?a(s(t)):o(t)}},function(t,e,n){var a=n(140);t.exports=function(t){return function(e){return a(e,t)}}},function(t,e,n){var a=n(449);t.exports=function(t){var e=a(t),n=e%1;return e==e?n?e-n:e:0}},function(t,e,n){var a=n(450),o=1/0,i=1.7976931348623157e308;t.exports=function(t){return t?(t=a(t))===o||t===-o?(t<0?-1:1)*i:t==t?t:0:0===t?t:0}},function(t,e,n){var a=n(40),o=n(23),i=NaN,s=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,r=/^0b[01]+$/i,c=/^0o[0-7]+$/i,u=parseInt;t.exports=function(t){if("number"==typeof t)return t;if(o(t))return i;if(a(t)){var e="function"==typeof t.valueOf?t.valueOf():t;t=a(e)?e+"":e}if("string"!=typeof t)return 0===t?t:+t;t=t.replace(s,"");var n=r.test(t);return n||c.test(t)?u(t.slice(2),n?2:8):l.test(t)?i:+t}},function(t,e,n){var a=n(452),o=n(453),i=n(455),s=RegExp("['’]","g");t.exports=function(t){return function(e){return a(i(o(e).replace(s,"")),t,"")}}},function(t,e){t.exports=function(t,e,n,a){var o=-1,i=null==t?0:t.length;for(a&&i&&(n=t[++o]);++o<i;)n=e(n,t[o],o,t);return n}},function(t,e,n){var a=n(454),o=n(24),i=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,s=RegExp("[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]","g");t.exports=function(t){return(t=o(t))&&t.replace(i,a).replace(s,"")}},function(t,e,n){var a=n(47)({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"});t.exports=a},function(t,e,n){var a=n(456),o=n(457),i=n(24),s=n(458);t.exports=function(t,e,n){return t=i(t),void 0===(e=n?void 0:e)?o(t)?s(t):a(t):t.match(e)||[]}},function(t,e){var n=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;t.exports=function(t){return t.match(n)||[]}},function(t,e){var n=/[a-z][A-Z]|[A-Z]{2,}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;t.exports=function(t){return n.test(t)}},function(t,e){var n="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",a="["+n+"]",o="\\d+",i="[\\u2700-\\u27bf]",s="[a-z\\xdf-\\xf6\\xf8-\\xff]",l="[^\\ud800-\\udfff"+n+o+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",r="(?:\\ud83c[\\udde6-\\uddff]){2}",c="[\\ud800-\\udbff][\\udc00-\\udfff]",u="[A-Z\\xc0-\\xd6\\xd8-\\xde]",d="(?:"+s+"|"+l+")",_="(?:"+u+"|"+l+")",p="(?:[\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff]|\\ud83c[\\udffb-\\udfff])?",f="[\\ufe0e\\ufe0f]?"+p+("(?:\\u200d(?:"+["[^\\ud800-\\udfff]",r,c].join("|")+")[\\ufe0e\\ufe0f]?"+p+")*"),m="(?:"+[i,r,c].join("|")+")"+f,v=RegExp([u+"?"+s+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[a,u,"$"].join("|")+")",_+"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[a,u+d,"$"].join("|")+")",u+"?"+d+"+(?:['’](?:d|ll|m|re|s|t|ve))?",u+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",o,m].join("|"),"g");t.exports=function(t){return t.match(v)||[]}},function(t,e,n){var a=n(0)(n(462),n(472),!1,function(t){n(460)},null,null);t.exports=a.exports},function(t,e,n){var a=n(461);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("f37a401c",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".dialog-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.dialog-footer.single-child{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.row_config_container{display:block;padding:10px 15px;background:#d8edfd;position:relative;border-radius:5px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(14),o=n.n(a),i=n(27),s=n.n(i),l=n(143),r=n.n(l),c=n(465),u=n.n(c),d=n(144),_=n.n(d);e.default={name:"add_data",props:["title","show","columns","table_id","item","manualSort","insertAfterPosition","insertAfterId","type"],data:function(){return{row_config:!1,editorOption:{modules:{toolbar:[["bold","italic","underline","strike","link"],["blockquote","code-block"],[{header:1},{header:2}],[{list:"ordered"},{list:"bullet"}],[{script:"sub"},{script:"super"}],[{align:[]}],[{direction:"rtl"}]]}},btnLoading:!1,continueAdding:!0,newColumn:{},has_pro:!!window.ninja_table_admin.hasPro,position:"last",modal_title:"Add Row",item_settings:{},created_at:"",adding_counter:1}},computed:{editId:function(){return this.item&&this.item.id},shouldNotContinueAdding:function(){return!(!this.editId&&"duplicate"!==this.type)}},watch:{item:function(){this.initNewColumnObj(),this.item||(this.modal_title="Add Row")}},methods:{addData:function(){var t=this,e=!1;if(o()(this.newColumn,function(t){t&&(e=!0)}),e){this.btnLoading=!0;var n={action:"ninja_tables_ajax_actions",target_action:"store-table-data",table_id:this.table_id,row:this.newColumn,id:this.editId,created_at:this.created_at,settings:this.item_settings,position:this.position};this.insertAfterId&&(n.insert_after_id=this.insertAfterId,n.position=parseInt(this.insertAfterPosition)+1),jQuery.post(ajaxurl,n).then(function(e){if(e.item){if(t.$message({showClose:!0,message:e.message,type:"success"}),t.initNewColumnObj(),t.editId)t.$emit("updateItem",e.item);else{var a=n.position;t.manualSort||t.insertAfterId||(a="last-first"),t.$emit("createItem",e.item,a)}!t.editId&&t.continueAdding||t.$emit("modal_close"),"duplicate"===t.type&&t.$emit("modal_close"),t.adding_counter++}else t.$message({showClose:!0,message:"Failed to add/update data. Please reload this page and try again",type:"error"})}).fail(function(e){t.$message({showClose:!0,message:e.responseJSON.data.message,type:"error"})}).always(function(){t.btnLoading=!1})}else this.$message({showClose:!0,message:"Please add at least 1 value to the row",type:"error"})},closeModal:function(){this.$emit("modal_close")},initNewColumnObj:function(){var t=this,e={};o()(this.columns,function(n){t.item&&t.item.values[n.key]?e[n.key]=t.item.values[n.key]:"selection"==n.data_type&&"yes"==n.isMultiple?e[n.key]=[]:e[n.key]=""}),this.newColumn=e,this.initItemSettings()},initItemSettings:function(){var t=this;this.item&&this.item.settings&&(this.item_settings=this.item.settings),this.item_settings.cell||this.$set(this.item_settings,"cell",{}),o()(this.columns,function(e){t.item_settings.cell[e.key]||t.$set(t.item_settings.cell,e.key,{})}),this.item&&(this.created_at=this.item.created_at)},onEditorChange:function(t,e){e.editor;var n=e.html;e.text;this.newColumn[t]=n},slugify:function(t){return t.toString().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,"")},getFromSelectionStr:function(t){return t?t.split("\n"):[]}},mounted:function(){this.initNewColumnObj()},components:{wp_editor:s.a,NinjaDatePicker:_.a,mayBeSelect:r.a,ImageSelector:u.a}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"maybe_multi_select",props:["newColumn","column","size"],data:function(){return{appReady:!1}},methods:{getFromSelectionStr:function(t){return t?t.split(/\r?\n/):[]},maybeBlur:function(t){console.log(t),t||this.$emit("blur")}},mounted:function(){if("yes"==this.column.isMultiple){var t=this.newColumn[this.column.key];t?"string"==typeof t&&(this.newColumn[this.column.key]=[t]):this.newColumn[this.column.key]=[]}this.appReady=!0}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.appReady?n("div",{staticClass:"maybe_nt_multi_select",staticStyle:{"max-width":"90%"}},["yes"==t.column.isMultiple?[n("el-select",{staticStyle:{width:"100%"},attrs:{filterable:"",multiple:"","allow-create":"",size:t.size,"default-first-option":"",placeholder:"Choose from the List"},on:{"remove-tag":function(e){t.$emit("blur")},change:function(e){t.$emit("blur")}},model:{value:t.newColumn[t.column.key],callback:function(e){t.$set(t.newColumn,t.column.key,e)},expression:"newColumn[column.key]"}},t._l(t.getFromSelectionStr(t.column.selections),function(t){return n("el-option",{key:t,attrs:{label:t,value:t}})}))]:[n("el-select",{staticStyle:{width:"100%"},attrs:{size:t.size,filterable:"","allow-create":"","default-first-option":"",placeholder:"Choose from the List"},on:{change:function(e){t.$emit("blur")}},model:{value:t.newColumn[t.column.key],callback:function(e){t.$set(t.newColumn,t.column.key,e)},expression:"newColumn[column.key]"}},t._l(t.getFromSelectionStr(t.column.selections),function(t){return n("el-option",{key:t,attrs:{label:t,value:t}})}))]],2):t._e()},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(466),n(467),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(14),o=n.n(a);e.default={name:"maybe_multi_select",props:["newColumn","column","adding_counter"],data:function(){return{appReady:!1,upload_action:"",data:{},preferedThum:window.ninja_table_admin.prefered_thumb}},watch:{adding_counter:function(){console.log(this.adding_counter);this.newColumn[this.column.key]={permalink:"",image_thumb:"",image_full:""},this.data=this.newColumn[this.column.key]}},methods:{beforeAvatarUpload:function(t){return"image/jpg"==t.type||"image/gif"==t.type||"image/png"==t.type||(this.$message.error("Image need to be jpg/png/gif format"),!1)},handleAvatarSuccess:function(t,e){console.log(t)},initUploader:function(t){var e=this,n=wp.media.editor.send.attachment;return wp.media.editor.send.attachment=function(t,a){console.log(a),e.newColumn[e.column.key].alt_text=a.alt||a.title,e.newColumn[e.column.key].image_full=a.url,e.newColumn[e.column.key].image_thumb=e.getThumb(a),wp.media.editor.send.attachment=n},wp.media.editor.open(),!1},initFileUploader:function(t){var e=this,n=wp.media.editor.send.attachment;return wp.media.editor.send.attachment=function(t,a){e.newColumn[e.column.key].permalink=a.url,wp.media.editor.send.attachment=n},wp.media.editor.open(),!1},getThumb:function(t){var e=this,n=t.width,a=t.url,i=!1;return"original"==this.preferedThum?t.url:(o()(t.sizes,function(t,o){o==e.preferedThum&&(i=t.url),(!i||t.width>300)&&(t.width<400?i=t.url:t.width<n&&(n=t.width,a=t.url))}),i||a)},preinitUploader:function(){var t=this.newColumn[this.column.key],e={permalink:"",image_thumb:"",image_full:""};t?"string"==typeof t&&(this.newColumn[this.column.key]=e):this.newColumn[this.column.key]=e,this.data=this.newColumn[this.column.key]}},mounted:function(){this.preinitUploader(),this.appReady=!0}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.appReady?n("div",{staticClass:"image_selector"},["hyperlinked"==t.column.link_type||"none"==t.column.link_type||"image_light_box"==t.column.link_type||"iframe_ligtbox"==t.column.link_type?[n("div",{staticClass:"nt_form_group"},[n("label",[t._v("Upload Image")]),t._v(" "),n("div",{staticClass:"nt_form_input"},[t.data.image_thumb?n("div",{staticClass:"image_preview"},[n("img",{attrs:{src:t.data.image_thumb}})]):t._e(),t._v(" "),n("el-button",{staticClass:"image_select_button",attrs:{size:"mini",type:"info"},on:{click:t.initUploader}},[t.data.image_thumb?n("span",[t._v("Change Image")]):n("span",[t._v("Upload Image")])])],1)]),t._v(" "),"hyperlinked"==t.column.link_type||"iframe_ligtbox"==t.column.link_type?n("div",{staticClass:"nt_form_group"},["iframe_ligtbox"==t.column.link_type?n("label",[t._v("Iframe URL (Only The URL)")]):n("label",[t._v("Target URL")]),t._v(" "),n("div",{staticClass:"nt_form_input"},[n("el-input",{attrs:{type:"url",size:"mini",placeholder:"Permalink"},model:{value:t.data.permalink,callback:function(e){t.$set(t.data,"permalink",e)},expression:"data.permalink"}})],1)]):t._e()]:t._e()],2):t._e()},staticRenderFns:[]}},function(t,e,n){var a=n(469);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("07d8d9b2",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".ninja_date_picker>.form-control{width:90%;float:left}.ninja_date_picker>.el-date-editor{width:8px!important;padding:0;margin:0;cursor:pointer}.ninja_date_picker>.el-date-editor .el-input__inner{width:10px!important;padding:15px;background:gray;height:34px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninjaDatePicker",props:["column","new_column","only_picker"],computed:{elementFormat:function(){var t=this.column.dateFormat;return"DD-MMM-YY"==t?"dd-MMM-yy":t.replace(/Y/g,"y").replace(/D/g,"d")}},methods:{slugify:function(t){return t.toString().toLowerCase().replace(/\s+/g,"-").replace(/[^\w\-]+/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,"")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:"yes"==t.only_picker?"ninja_only_picker":"ninja_date_picker"},["yes"!=t.only_picker?n("input",{directives:[{name:"model",rawName:"v-model",value:t.new_column[t.column.key],expression:"new_column[column.key]"}],staticClass:"form-control",attrs:{placeholder:t.column.dateFormat,type:"text",size:"small",id:t.slugify(t.column.key)},domProps:{value:t.new_column[t.column.key]},on:{input:function(e){e.target.composing||t.$set(t.new_column,t.column.key,e.target.value)}}}):t._e(),t._v(" "),n("el-date-picker",{attrs:{type:"date",size:"small","value-format":t.elementFormat,format:t.elementFormat,placeholder:"Pick a day"},on:{blur:function(e){t.$emit("blur")}},model:{value:t.new_column[t.column.key],callback:function(e){t.$set(t.new_column,t.column.key,e)},expression:"new_column[column.key]"}})],1)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-dialog",{attrs:{title:t.title,visible:t.show,top:"50px","close-on-click-modal":!1,"append-to-body":!0},on:{"update:visible":function(e){t.show=e},close:t.closeModal}},[t.show?n("div",[t._l(t.columns,function(e){return n("div",{key:e.key,staticClass:"form-group"},[n("label",{attrs:{for:t.slugify(e.key)}},[t._v(t._s(e.name||e.key))]),t._v(" "),"textarea"==e.data_type?n("div",[n("textarea",{directives:[{name:"model",rawName:"v-model",value:t.newColumn[e.key],expression:"newColumn[column.key]"}],staticClass:"form-control",attrs:{placeholder:e.name,id:t.slugify(e.key)},domProps:{value:t.newColumn[e.key]},on:{input:function(n){n.target.composing||t.$set(t.newColumn,e.key,n.target.value)}}})]):"html"==e.data_type?n("div",[n("wp_editor",{attrs:{editor_id:t.slugify(e.key)},model:{value:t.newColumn[e.key],callback:function(n){t.$set(t.newColumn,e.key,n)},expression:"newColumn[column.key]"}})],1):"date"==e.data_type?n("div",[n("ninja-date-picker",{attrs:{column:e,new_column:t.newColumn}})],1):"selection"==e.data_type?n("div",[n("may-be-select",{attrs:{column:e,newColumn:t.newColumn}})],1):"image"==e.data_type&&t.has_pro?n("div",[n("image-selector",{attrs:{adding_counter:t.adding_counter,column:e,newColumn:t.newColumn}})],1):"button"==e.data_type&&t.has_pro?n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newColumn[e.key],expression:"newColumn[column.key]"}],staticClass:"form-control",attrs:{placeholder:"Valid button URL",type:"url",id:t.slugify(e.key)},domProps:{value:t.newColumn[e.key]},on:{input:function(n){n.target.composing||t.$set(t.newColumn,e.key,n.target.value)}}}),t._v(" "),n("small",[t._v("Please provide valid URL")])]):n("div",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.newColumn[e.key],expression:"newColumn[column.key]"}],staticClass:"form-control",attrs:{placeholder:e.name,type:"text",id:t.slugify(e.key)},domProps:{value:t.newColumn[e.key]},on:{input:function(n){n.target.composing||t.$set(t.newColumn,e.key,n.target.value)}}})])])}),t._v(" "),t.editId||!t.manualSort||t.insertAfterPosition?t._e():n("div",[t._v("\n Add at\n "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.position,expression:"position"}],staticStyle:{"margin-left":"5px"},attrs:{type:"radio",value:"last"},domProps:{checked:t._q(t.position,"last")},on:{change:function(e){t.position="last"}}}),t._v("Last\n "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.position,expression:"position"}],staticStyle:{"margin-left":"10px"},attrs:{type:"radio",value:"first"},domProps:{checked:t._q(t.position,"first")},on:{change:function(e){t.position="first"}}}),t._v("First\n ")])],2):t._e(),t._v(" "),t.row_config?n("div",{staticClass:"row_config_container"},[t.has_pro?[n("h3",[t._v("Row Settings")]),t._v(" "),n("div",{staticClass:"form_row_full"},[n("div",{staticClass:"form-group form_row_half"},[n("label",[t._v("Row Background Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.item_settings.row_bg,callback:function(e){t.$set(t.item_settings,"row_bg",e)},expression:"item_settings.row_bg"}})],1),t._v(" "),n("div",{staticClass:"form-group form_row_half"},[n("label",[t._v("Row Text Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.item_settings.text_color,callback:function(e){t.$set(t.item_settings,"text_color",e)},expression:"item_settings.text_color"}})],1)]),t._v(" "),n("h3",[t._v("Cell Color Customization")]),t._v(" "),n("table",{staticClass:"wp-list-table widefat fixed striped"},[n("thead",[n("tr",[n("th",[t._v("Column")]),t._v(" "),n("th",[t._v("Background Color")]),t._v(" "),n("th",[t._v("Text Color")])])]),t._v(" "),n("tbody",t._l(t.columns,function(e){return n("tr",{key:e.key},[n("td",[t._v(t._s(e.name))]),t._v(" "),n("td",[n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.item_settings.cell[e.key]["background-color"],callback:function(n){t.$set(t.item_settings.cell[e.key],"background-color",n)},expression:"item_settings.cell[column.key]['background-color']"}})],1),t._v(" "),n("td",[n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.item_settings.cell[e.key].color,callback:function(n){t.$set(t.item_settings.cell[e.key],"color",n)},expression:"item_settings.cell[column.key]['color']"}})],1)])}))]),t._v(" "),t.insertAfterPosition?t._e():n("div",{staticClass:"form-group",staticStyle:{"margin-top":"20px"}},[n("label",[t._v("\n Data Create Date\n "),n("el-tooltip",{attrs:{placement:"top-start",effect:"light",content:"If you use table sorting by create date then you can change create date to sort your data"}},[n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-date-picker",{attrs:{"value-format":"yyyy-MM-dd HH:mm:ss",type:"datetime",placeholder:"Select date and time"},model:{value:t.created_at,callback:function(e){t.created_at=e},expression:"created_at"}})],1)]:[n("h3",[t._v("Row and Cell Color Customization")]),t._v(" "),n("p",[t._v("Using this module, You can set cell and row level colors of your data, It's a pro feature, Please\n purchase pro to unlock this feature")]),t._v(" "),n("a",{attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade",target:"_blank"}},[n("button",{staticClass:"el-button el-button--danger el-button--mini",attrs:{type:"button"}},[n("span",[t._v("Buy Pro")])])])]],2):t._e(),t._v(" "),n("div",{staticClass:"dialog-footer",class:{"single-child":t.shouldNotContinueAdding},attrs:{slot:"footer"},slot:"footer"},[t.shouldNotContinueAdding?t._e():[n("div",[n("label",{staticClass:"dialog-footer-item",attrs:{for:"adding_more"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.continueAdding,expression:"continueAdding"}],attrs:{type:"checkbox",id:"adding_more"},domProps:{checked:Array.isArray(t.continueAdding)?t._i(t.continueAdding,null)>-1:t.continueAdding},on:{change:function(e){var n=t.continueAdding,a=e.target,o=!!a.checked;if(Array.isArray(n)){var i=t._i(n,null);a.checked?i<0&&(t.continueAdding=n.concat([null])):i>-1&&(t.continueAdding=n.slice(0,i).concat(n.slice(i+1)))}else t.continueAdding=o}}}),t._v(" Continue Adding\n ")])])],t._v(" "),n("div",{staticClass:"dialog-footer-item"},[n("el-button",{attrs:{size:"small",type:"danger"},on:{click:function(e){t.row_config=!t.row_config}}},[n("i",{staticClass:"el-icon-setting"})]),t._v(" "),n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.btnLoading,expression:"btnLoading"}],attrs:{disabled:t.btnLoading,type:"primary",size:"small"},on:{click:t.addData}},[t.editId?n("span",[t._v(" "+t._s(t.$t("Update")))]):n("span",[t._v(t._s(t.$t("Add")))]),t._v(" "),t.btnLoading?n("i",{staticClass:"fooicon fooicon-spin fooicon-circle-o-notch"}):t._e()])],1)],2)])},staticRenderFns:[]}},function(t,e,n){var a=n(474);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("013f4f15",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_alert",props:["type"],computed:{alertClass:function(){return this.type||"success"}}}},function(t,e){t.exports={render:function(){var t=this.$createElement;return(this._self._c||t)("div",{staticClass:"alert",class:"alert-"+this.alertClass},[this._t("default")],2)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(480),n(481),!1,function(t){n(478)},"data-v-590fa148",null);t.exports=a.exports},function(t,e,n){var a=n(479);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("084af8d0",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".remove[data-v-590fa148]{display:inline-block}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"DeletePopOver",props:["label"],data:function(){return{visible:!1}},methods:{proceedConfirmation:function(){this.visible=!1,this.$emit("deleted")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"remove"},[n("el-popover",{ref:"popover5",attrs:{placement:"top",width:"160"},model:{value:t.visible,callback:function(e){t.visible=e},expression:"visible"}},[n("p",[t._v(t._s(t.$t("Are you sure to delete this?")))]),t._v(" "),n("div",{staticStyle:{"text-align":"right",margin:"0"}},[n("el-button",{attrs:{size:"mini",type:"text"},on:{click:function(e){t.visible=!1}}},[t._v("\n "+t._s(t.$t("cancel"))+"\n ")]),t._v(" "),n("el-button",{attrs:{type:"danger",size:"mini"},on:{click:t.proceedConfirmation}},[t._v("\n "+t._s(t.$t("confirm"))+"\n ")])],1)]),t._v(" "),t.label?n("span",{directives:[{name:"popover",rawName:"v-popover:popover5",arg:"popover5"}],staticClass:"span-block",domProps:{textContent:t._s(t.label)}}):n("a",{directives:[{name:"popover",rawName:"v-popover:popover5",arg:"popover5"}]},[n("span",{staticClass:"dashicons dashicons-trash"})])],1)},staticRenderFns:[]}},function(t,e,n){var a=n(483);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("34d0fce7",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".sortable-upgrade-notice .el-dialog__body{padding:20px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"SortableUpgradeNotice",props:["show"],data:function(){return{upgradeGuide:window.ninja_table_admin.upgradeGuide}},computed:{visible:{get:function(){return this.show},set:function(){this.close()}}},methods:{close:function(){this.$emit("close")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-dialog",{staticClass:"sortable-upgrade-notice",attrs:{visible:t.visible},on:{"update:visible":function(e){t.visible=e}}},[n("h1",{staticClass:"el-notifications",attrs:{slot:"title"},slot:"title"},[n("i",{staticClass:"el-icon-warning text-warning"}),t._v(" "+t._s(t.$t("Upgrade Notice"))+"\n ")]),t._v(" "),n("span",[t._v("\n "+t._s(t.$t("Your Ninja Tables Pro plugin is outdated. Please upgrade to its latest version."))+"\n ")]),t._v(" "),n("br"),t._v(" "),n("br"),t._v(" "),n("span",[n("a",{attrs:{href:t.upgradeGuide,target:"_blank"}},[t._v(t._s(t.$t("Click here")))]),t._v(" "+t._s(t.$t("to view the upgrade guide."))+"\n ")])])},staticRenderFns:[]}},function(t,e,n){var a=n(487);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("3788dd80",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".form-wrapper{padding:10px}.form-wrapper label{display:initial;max-width:none;margin-bottom:0}.form-wrapper .el-form-item{margin-bottom:15px}.form-wrapper .more-settings:hover{cursor:pointer}.form-wrapper .more-settings i{font-size:1.5em}.form-wrapper .form_group{margin-top:10px}.form-wrapper .basic_settings .el-select{min-width:400px;max-width:100%}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(27),o=n.n(a),i=n(489),s=n.n(i),l=n(496),r=n.n(l),c=n(499),u=n.n(c),d=n(502),_=n.n(d),p=n(82),f=n.n(p);e.default={name:"ColumnsEditor",components:{wp_editor:o.a,condition:s.a,"wp-post-dynamic-column":r.a,"content-transformer":u.a,DynamicWooColumn:_.a,NinjaColorPicker:f.a},props:{model:{type:Object,default:function(){return{}}},hasPro:{type:Boolean,default:!1},updating:{type:Boolean,default:!1},moreSettings:{type:Boolean,default:!1},hideDelete:{type:Boolean,default:!1},hideCancel:{type:Boolean,default:!1},dataSourceType:{type:String,default:"default"},columns:{type:Array,default:function(){return[]}},settings:{type:Object}},data:function(){return{dataTypesOptions:{text:this.$t("Single Line Text Field"),textarea:this.$t("Text Area"),html:this.$t("HTML Field"),number:this.$t("Numeric Value"),date:this.$t("Date Field"),selection:this.$t("Select Field")},breakPointsOptions:{"":this.$t("Always show in all devices"),all:this.$t("Hidden On Desktop"),xs:this.$t("Initial Hidden Mobile"),"xs sm":this.$t("Initial Hidden Mobile and Tab"),"xs sm md lg":this.$t("Initial Hidden Mobile, Tab and Regular Computers"),hidden:this.$t("Totally hidden on all devices")},dateFormats:{"M/D/YYYY":"4/28/2018","M/D/YY":"4/28/18","MM/DD/YY":"04/28/18","MM/DD/YYYY":"04/28/2018","MMM/DD/YYYY":"Apr/28/2018","YY/MM/DD":"18/04/28","YYYY-MM-DD":"2018-04-28","DD-MMM-YY":"28-Apr-18"},formatType:"standard",has_pro:!!window.ninja_table_admin.hasPro,alignmentOptions:{"":"Default",center:"Center",left:"Left",right:"Right",justify:"Justify",start:"Start",end:"End"},contentAlignmentOptions:{"":"Default",center:"Center",left:"Left",right:"Right"},activeTab:"basic",showConfirm:!1,doingAjax:!1}},watch:{formatType:function(){"custom"===this.formatType&&(this.model.dateFormat="")},hideDelete:function(t,e){this.hideDelete="basic"!=this.activeTab},"model.data_type":function(){"image"==this.model.data_type?this.model.link_type||this.$set(this.model,"link_type","none"):"number"!=this.model.data_type||this.model.decimal_system||(","==this.model.decimalSeparator?this.$set(this.model,"decimal_system","eu"):this.$set(this.model,"decimal_system","us"),this.changeDecimalStyle())}},methods:{addColumn:function(){this.hasPro||"button"!=this.model.data_type&&"image"!=this.model.data_type||(this.model.data_type="text"),this.$emit("add")},cancel:function(){this.$emit("cancel")},deleteColumn:function(){this.$emit("delete")},store:function(){this.$emit("store")},onTabClick:function(t,e){"basic"==t.name?this.hideDelete=!1:(this.hideDelete=!0,this.moreSettings&&(this.moreSettings=!this.moreSettings))},showProPopUp:function(){this.hasPro||window.ninjaTableBus.$emit("show_pro_popup",1)},changeDecimalStyle:function(){"us"==this.model.decimal_system?(this.$set(this.model,"decimalSeparator","."),this.$set(this.model,"thousandSeparator",",")):(this.$set(this.model,"decimalSeparator",","),this.$set(this.model,"thousandSeparator","."))}},mounted:function(){var t=this;"default"==this.dataSourceType&&this.$set(this.dataTypesOptions,"image","Image/File/Lightbox"),this.dataTypesOptions.button=this.$t("Button/Link"),this.model&&(this.model.dateFormat=this.model.dateFormat||"",this.model.enable_html_content=-1!==["true",!0].indexOf(this.model.enable_html_content),this.model.header_html_content=this.model.header_html_content||"",this.model.contentAlign||this.$set(this.model,"contentAlign",""),this.model.textAlign||this.$set(this.model,"textAlign",""),window.ninjaTableBus.$on("tableDoingAjax",function(e){t.doingAjax=e}))}}},function(t,e,n){var a=n(0)(n(492),n(495),!1,function(t){n(490)},null,null);t.exports=a.exports},function(t,e,n){var a=n(491);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("5281c00f",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".column-condition-config .el-row{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:5px}.column-condition-config .el-col{margin:0 5px;display:-webkit-box;display:-ms-flexbox;display:flex}.column-condition-config .el-col .conditional_color_block{width:100%}.column-condition-config .el-col .conditional_color_block .el-color-picker__trigger{width:100%;height:33px}.column-condition-config .el-col:first-child>.if-cell-value{white-space:nowrap}.column-condition-config .if-cell-value{margin-top:10px;font-weight:400}.column-condition-config .form_group{margin:0;height:35px}.column-condition-config .el-color-picker,.column-condition-config .el-color-picker__mask{width:100%!important}.column-condition-config .el-button--mini{padding:5px 13px}.column-condition-config .conditional-settings-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(82),o=n.n(a),i=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var a in n)Object.prototype.hasOwnProperty.call(n,a)&&(t[a]=n[a])}return t};e.default={name:"Conditional",props:{hasPro:{type:Boolean,default:!1},column:{type:Object,default:function(){return{}}}},components:{NinjaColorPicker:o.a},data:function(){return{defaultCondition:{conditionalOperator:null,conditionalValue:null,conditionalValue2:null,targetAction:null,targetValue:null,targetValueColor:null}}},methods:{addCondition:function(){this.column.conditions||this.$set(this.column,"conditions",[]),this.column.conditions.push(i({},this.defaultCondition))},removeCondition:function(t){this.column.conditions.splice(t,1)},shouldShowColorPicker:function(t){return-1!=["set-cell-color","set-cell-bg-color","set-row-color","set-row-bg-color","set-column-color","set-column-bg-color"].indexOf(t.targetAction)}},mounted:function(){this.column&&!this.column.conditions&&this.$set(this.column,"conditions",[])}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_color_picker",props:["label","value","disabled"],data:function(){return{color:"",previous_color:""}},watch:{color:function(t){"transparent"===t&&(this.color=""),this.previous_color=this.color,this.$emit("input",this.color)}},methods:{changeColor:function(t){"transparent"===this.previous_color?(this.previous_color=t,this.color="transparent"):this.color=t}},mounted:function(){this.color=this.value}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"form_group"},[n("el-color-picker",{attrs:{"show-alpha":"",disabled:t.disabled},on:{"active-change":t.changeColor},model:{value:t.color,callback:function(e){t.color=e},expression:"color"}}),t._v(" "),t.label?n("label",[t._v(t._s(t.label))]):t._e()],1)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"column-condition-config"},[t.hasPro?n("div",{staticClass:"conditional-settings-header"},[t._m(0),t._v(" "),n("el-button",{attrs:{size:"small",type:"info",disabled:!t.hasPro},on:{click:t.addCondition}},[t._v("\n Add Condition\n ")])],1):n("div",{staticClass:"conditional-settings-header ninja_table_inline_upgrade"},[n("div",{staticClass:"conditional-settings-title"},[n("H3",[t._v("Conditional Formatting")]),t._v(" "),n("p",[t._v("\n Customize your table's appearances based on the cell value. Add as many conditions as you like.\n Conditional Formatting is a pro feature which can be enabled by using Ninja Table pro Add-on. Ninja\n Table Pro has lots of features that will help you to build any type of Tables.\n ")]),t._v(" "),t._m(1)],1)]),t._v(" "),n("hr"),t._v(" "),t._l(t.column.conditions,function(e,a){return n("el-row",{key:a},[n("el-col",{attrs:{sm:2,md:2}},[n("div",{staticClass:"if-cell-value"},[t._v("If Cell Value")])]),t._v(" "),n("el-col",{attrs:{sm:5,md:5}},[n("el-select",{staticStyle:{width:"100%"},attrs:{disabled:!t.hasPro,size:"small"},model:{value:e.conditionalOperator,callback:function(n){t.$set(e,"conditionalOperator",n)},expression:"condition.conditionalOperator"}},[n("el-option",{attrs:{label:"Equal",value:"equal"}}),t._v(" "),n("el-option",{attrs:{label:"Not Equal",value:"not-equal"}}),t._v(" "),-1==["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Contains",value:"contains"}}):t._e(),t._v(" "),-1==["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Does Not Contain",value:"does-not-contain"}}):t._e(),t._v(" "),-1!=["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Less Than",value:"less-than"}}):t._e(),t._v(" "),-1!=["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Greater Than",value:"greater-than"}}):t._e(),t._v(" "),-1!=["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Less Than Or Equal To",value:"less-than-or-equal-to"}}):t._e(),t._v(" "),-1!=["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Greater Than Or Equal To",value:"greater-than-or-equal-to"}}):t._e(),t._v(" "),-1!=["number","date"].indexOf(t.column.data_type)?n("el-option",{attrs:{label:"Between (Min & Max Values)",value:"between"}}):t._e()],1)],1),t._v(" "),n("el-col",{attrs:{sm:5,md:5}},[n("el-input",{attrs:{size:"small",placeholder:"between"==e.conditionalOperator?"Min value":"Enter Value",disabled:!t.hasPro},model:{value:e.conditionalValue,callback:function(n){t.$set(e,"conditionalValue",n)},expression:"condition.conditionalValue"}})],1),t._v(" "),"between"==e.conditionalOperator?n("el-col",{attrs:{sm:4,md:4}},[n("el-input",{attrs:{size:"small",placeholder:"Max Value"},model:{value:e.conditionalValue2,callback:function(n){t.$set(e,"conditionalValue2",n)},expression:"condition.conditionalValue2"}})],1):t._e(),t._v(" "),n("el-col",{attrs:{sm:1,md:1}},[n("div",{staticClass:"if-cell-value text-center"},[t._v("Then")])]),t._v(" "),n("el-col",{attrs:{sm:5,md:5}},[n("el-select",{staticStyle:{width:"100%"},attrs:{disabled:!t.hasPro,filterable:"",size:"small"},model:{value:e.targetAction,callback:function(n){t.$set(e,"targetAction",n)},expression:"condition.targetAction"}},[n("el-option-group",{key:"cell_options",attrs:{label:"Cell Options"}},[n("el-option",{attrs:{label:"Set cell color",value:"set-cell-color"}}),t._v(" "),n("el-option",{attrs:{label:"Set cell background color",value:"set-cell-bg-color"}}),t._v(" "),n("el-option",{attrs:{label:"Set cell content",value:"set-cell-content"}}),t._v(" "),n("el-option",{attrs:{label:"Set cell CSS class",value:"set-cell-css-class"}}),t._v(" "),n("el-option",{attrs:{label:"Reset cell color to default",value:"reset-cell-color-to-default"}}),t._v(" "),n("el-option",{attrs:{label:"Reset cell background color to default",value:"reset-cell-bg-color-to-default"}}),t._v(" "),n("el-option",{attrs:{label:"Remove cell CSS class",value:"remove-cell-css-class"}})],1),t._v(" "),n("el-option-group",{key:"row_options",attrs:{label:"Row Options"}},[n("el-option",{attrs:{label:"Set row color",value:"set-row-color"}}),t._v(" "),n("el-option",{attrs:{label:"Set row background color",value:"set-row-bg-color"}}),t._v(" "),n("el-option",{attrs:{label:"Set row CSS class",value:"set-row-css-class"}}),t._v(" "),n("el-option",{attrs:{label:"Reset row color to default",value:"reset-row-color-to-default"}}),t._v(" "),n("el-option",{attrs:{label:"Reset row background color to default",value:"reset-row-bg-color"}}),t._v(" "),n("el-option",{attrs:{label:"Remove row CSS class",value:"remove-row-css-class"}})],1),t._v(" "),n("el-option-group",{key:"column_options",attrs:{label:"Column Options"}},[n("el-option",{attrs:{label:"Set column color",value:"set-column-color"}}),t._v(" "),n("el-option",{attrs:{label:"Set column background color",value:"set-column-bg-color"}}),t._v(" "),n("el-option",{attrs:{label:"Add column CSS class",value:"add-column-css-class"}}),t._v(" "),n("el-option",{attrs:{label:"Remove column CSS class",value:"remove-column-css-class"}})],1)],1)],1),t._v(" "),n("el-col",{attrs:{sm:4,md:4}},[n("el-input",{directives:[{name:"show",rawName:"v-show",value:!t.shouldShowColorPicker(e),expression:"!shouldShowColorPicker(condition)"}],attrs:{size:"small",placeholder:"Enter Value",disabled:!t.hasPro},model:{value:e.targetValue,callback:function(n){t.$set(e,"targetValue",n)},expression:"condition.targetValue"}}),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:t.shouldShowColorPicker(e),expression:"shouldShowColorPicker(condition)"}],staticClass:"conditional_color_block"},[n("ninja-color-picker",{attrs:{size:"mini",disabled:!t.hasPro},model:{value:e.targetValueColor,callback:function(n){t.$set(e,"targetValueColor",n)},expression:"condition.targetValueColor"}})],1)],1),t._v(" "),n("el-col",{attrs:{sm:1,md:1}},[n("el-button",{attrs:{size:"mini",type:"danger",icon:"el-icon-minus",disabled:!t.hasPro},on:{click:function(e){t.removeCondition(a)}}})],1)],1)}),t._v(" "),"date"==t.column.data_type?n("div",{staticClass:"nt_suggest"},[n("h4",[t._v("You can use placeholder for dynamic dates to style your row/cell/column")]),t._v(" "),n("p",[t._v("Example Usage")]),t._v(" "),n("ul",[n("li",[t._v("Today's Date: "),n("code",[t._v("{date:"+t._s(t.column.dateFormat)+"}")])]),t._v(" "),n("li",[t._v("Tomorrow's Date: "),n("code",[t._v("{date+1:"+t._s(t.column.dateFormat)+"}")])]),t._v(" "),n("li",[t._v("Yesterday's Date: "),n("code",[t._v("{date-1:"+t._s(t.column.dateFormat)+"}")])]),t._v(" "),n("li",[t._v("Date After 10 Days: "),n("code",[t._v("{date+10:"+t._s(t.column.dateFormat)+"}")])]),t._v(" "),n("li",[t._v("Date Before 10 Days: "),n("code",[t._v("{date-10:"+t._s(t.column.dateFormat)+"}")])])])]):t._e(),t._v(" "),t.column.conditions&&t.column.conditions.length?t._e():n("el-row",[n("el-alert",{attrs:{center:"",closable:!1,title:"You haven't added any conditions for the column yet!",type:"info"}})],1)],2)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"conditional-settings-title"},[this._v("\n Customize your table's appearances based on the cell value. Add as many conditions as you like. "),e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/conditional-column-formatting/"}},[this._v("View\n Documentation")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("a",{attrs:{href:"https://wpmanageninja.com/ninja-tables/ninja-tables-pro-pricing/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=conditional_formatting&utm_term=upgrade",target:"_blank"}},[e("button",{staticClass:"el-button el-button--danger",attrs:{type:"button"}},[e("span",[this._v("Buy Pro and Enable Conditional Formatting")])])])}]}},function(t,e,n){var a=n(0)(n(497),n(498),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"WPPostDynamicColumn",props:{column:{type:Object,default:function(){return{}}},columns:{type:Array,default:function(){return[]}}},data:function(){return{loading:!1,post_data_types:[],table_id:this.$route.params.table_id}},watch:{"column.wp_post_custom_data_type":function(){this.$set(this.column,"wp_post_custom_data_value","")}},computed:{selectedField:function(){var t=this,e=this.post_data_types.find(function(e){return e.key==t.column.wp_post_custom_data_type});return e||{}},selectedFiledValueType:function(){return this.selectedField&&this.selectedField.value_type?this.selectedField.value_type:"text"}},methods:{setFieldOptions:function(){var t=this;if(this.loading=!0,window.ninja_wp_posts_custom_fields)return this.post_data_types=window.ninja_wp_posts_custom_fields,void(this.loading=!1);jQuery.get(ajaxurl,{action:"ninja_table_wp-posts_get_custom_field_options",table_id:this.table_id}).then(function(e){window.ninja_wp_posts_custom_fields=e.data.custom_fields,t.post_data_types=e.data.custom_fields}).fail(function(t){}).always(function(){t.loading=!1})}},mounted:function(){this.setFieldOptions()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"wp_posts_dynamic_field"},[n("h4",[t._v(t._s(t.$t("Dynamic Post Data Settings")))]),t._v(" "),n("hr"),t._v(" "),"custom"==t.column.source_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Field Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Field Type")]),t._v(" "),n("p",[t._v("Select The field type you want to populate for each row")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{staticStyle:{width:"90%"},attrs:{placeholder:"Select Field",size:"small"},model:{value:t.column.wp_post_custom_data_type,callback:function(e){t.$set(t.column,"wp_post_custom_data_type",e)},expression:"column.wp_post_custom_data_type"}},t._l(t.post_data_types,function(t){return n("el-option",{key:t.key,attrs:{value:t.key,disabled:t.disabled,label:t.label}})}))],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Field Value"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Field Value")]),t._v(" "),n("p",[t._v("Provide the column value for your corresponding value type select")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),"options"==t.selectedFiledValueType?[n("el-select",{staticStyle:{width:"90%"},attrs:{placeholder:t.selectedField.placeholder,size:"small"},model:{value:t.column.wp_post_custom_data_value,callback:function(e){t.$set(t.column,"wp_post_custom_data_value",e)},expression:"column.wp_post_custom_data_value"}},t._l(t.selectedField.options,function(t){return n("el-option",{key:t,attrs:{value:t,label:t}})}))]:n("el-input",{attrs:{type:t.selectedFiledValueType,placeholder:t.selectedField.placeholder,size:"small"},model:{value:t.column.wp_post_custom_data_value,callback:function(e){t.$set(t.column,"wp_post_custom_data_value",e)},expression:"column.wp_post_custom_data_value"}}),t._v(" "),t.selectedField&&t.selectedField.instruction?n("div",{staticClass:"ninja_instruction"},[n("p",{domProps:{innerHTML:t._s(t.selectedField.instruction)}}),t._v(" "),t.selectedField.learn_more_url?n("p",[n("a",{attrs:{target:"_blank",href:t.selectedField.learn_more_url}},[t._v("\n "+t._s(t.selectedField.learn_more_text)+"\n ")])]):t._e()]):t._e()],2)]:t._e(),t._v(" "),"post_data"==t.column.source_type||"custom"==t.column.source_type&&"featured_image"==t.column.wp_post_custom_data_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Link"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Link to Post/Author Permalink")]),t._v(" "),n("p",[t._v("\n Enable this if you want to link to post/Author permalink\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),"post_author"==t.column.original_name?n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to Author Permalink"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}}):n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to post permalink"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}})],2),t._v(" "),"yes"==t.column.permalinked?["post_author"==t.column.original_name?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Permalink Action"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Permalink Action Type")]),t._v(" "),n("p",[t._v("\n Enable this if you want to make the author as table filter action. So when user click on those filters then they will see only the selected author posts.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Make Taxonomies as Table Filter"},model:{value:t.column.filter_permalinked,callback:function(e){t.$set(t.column,"filter_permalinked",e)},expression:"column.filter_permalinked"}})],2):t._e(),t._v(" "),"yes"!=t.column.filter_permalinked?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Open Link To New tab"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Open Link To New tab")]),t._v(" "),n("p",[t._v("\n Enable this if you want to open the links to new tab\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"_blank","false-label":"",value:"_blank",label:"Open link to new tab"},model:{value:t.column.permalink_target,callback:function(e){t.$set(t.column,"permalink_target",e)},expression:"column.permalink_target"}})],2):t._e()]:t._e()]:"tax_data"==t.column.source_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Link"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Link to Taxonomy Permalink")]),t._v(" "),n("p",[t._v("\n Enable this if you want to link to Taxonomy permalink\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to Taxonomy"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Taxonomy Separator"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Taxonomy Separator")]),t._v(" "),n("p",[t._v("Taxonomy Separator for Multiple Items")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{placeholder:"Enter Value",size:"small"},model:{value:t.column.taxonomy_separator,callback:function(e){t.$set(t.column,"taxonomy_separator",e)},expression:"column.taxonomy_separator"}})],2),t._v(" "),"yes"==t.column.permalinked?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Permalink Action"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Permalink Action Type")]),t._v(" "),n("p",[t._v("\n Enable this if you want to make the taxonomies as table filter action. So when user click on those filters then they will see only those type of posts.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"",value:"yes",label:"Make Taxonomies as Table Filter"},model:{value:t.column.filter_permalinked,callback:function(e){t.$set(t.column,"filter_permalinked",e)},expression:"column.filter_permalinked"}})],2),t._v(" "),"yes"!=t.column.filter_permalinked?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Open Link To New tab"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Open Link To New tab")]),t._v(" "),n("p",[t._v("\n Enable this if you want to open the links to new tab\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"_blank","false-label":"",value:"_blank",label:"Open link to new tab"},model:{value:t.column.permalink_target,callback:function(e){t.$set(t.column,"permalink_target",e)},expression:"column.permalink_target"}})],2):t._e()]:t._e()]:t._e()],2)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(500),n(501),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(145),o=n.n(a),i=n(28),s=n.n(i),l=n(49);e.default={name:"ContentTransformer",props:{column:{type:Object,default:function(){return{}}},columns:{type:Array,default:function(){return[]}},settings:{type:Object}},components:{ninja_alert:o.a,NinjaPremiumNotice:s.a},watch:{"settings.formula_support":function(){this.storeSettings()}},data:function(){return{hasPro:!!window.ninja_table_admin.hasPro,tableId:this.$route.params.table_id,doingAjax:!1,supported_formullas:[],show_formulas:!1}},computed:{placeholder:function(){var t="Please Input Transform Values (HTML supported)";return"yes"==this.settings.formula_support&&(t="Please Input Transform Values (HTML and Excel Formula are supported)"),t}},methods:{storeSettings:function(){var t=this;window.ninjaTableBus.$emit("tableDoingAjax",!0),this.doingAjax=!0;var e={action:"ninja_tables_ajax_actions",target_action:"update-table-settings",table_id:this.tableId,table_settings:this.settings};jQuery.post(ajaxurl,e).success(function(t){}).fail(function(t){}).always(function(){t.doingAjax=!1,window.ninjaTableBus.$emit("tableDoingAjax",!1)})}},mounted:function(){this.supported_formullas=l.a.getSupportedFormulas()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("p",[t._v("\n Data Transformer is a powerful tool where you can concat any column values easily into any valid html and show as computed value.\n ")]),t._v(" "),n("el-input",{attrs:{type:"textarea",rows:"4",placeholder:t.placeholder,disabled:!t.hasPro},model:{value:t.column.transformed_value,callback:function(e){t.$set(t.column,"transformed_value",e)},expression:"column.transformed_value"}}),t._v(" "),t.hasPro?t._e():n("ninja-premium-notice",{attrs:{highlight:"Transform Column Value"}}),t._v(" "),n("div",{staticClass:"ninja_instruction"},[n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"yes","false-label":"no"},model:{value:t.settings.formula_support,callback:function(e){t.$set(t.settings,"formula_support",e)},expression:"settings.formula_support"}},[t._v("Enable Excel Formula support for Transofrm Value")]),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:"yes"==t.settings.formula_support,expression:"settings.formula_support == 'yes'"}]},[n("p",[t._v("Note: Excel formuala is an experimental feature so all formulas may not work. We are improving this feature day by day so please don't be mad if some formulas don't work properly.")]),t._v(" "),n("el-button",{attrs:{size:"mini"},on:{click:function(e){t.show_formulas=!0}}},[t._v("Show Formulas")]),t._v(" "),n("el-dialog",{attrs:{title:"Supported Excel Formullas",visible:t.show_formulas,width:"30%"},on:{"update:visible":function(e){t.show_formulas=e}}},[n("ul",{staticStyle:{margin:"0px 20px","padding-top":"20px"}},t._l(t.supported_formullas,function(e){return n("li",[t._v(t._s(e))])}))])],1)],1),t._v(" "),n("div",{staticClass:"ninja_instruction"},[n("p",[t._v("You can use the following Reference Shortcode Values to transform your cell value")]),t._v(" "),n("table",{staticClass:"wp-list-table widefat fixed striped"},[t._m(0),t._v(" "),n("tbody",t._l(t.columns,function(e){return n("tr",{key:e.key},[n("td",[t._v(t._s(e.name))]),t._v(" "),n("td",[t._v("{{"),n("span",[t._v("row."+t._s(e.key))]),t._v("}}")])])}))]),t._v(" "),n("br"),t._v(" "),t._m(1),t._v(" "),n("p",{directives:[{name:"show",rawName:"v-show",value:"yes"==t.settings.formula_support,expression:"settings.formula_support == 'yes'"}],staticStyle:{"font-weight":"bold"}},[t._v("You can use any Excel formula into the transform value box")])])],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("thead",[e("tr",[e("th",[this._v("Column Title")]),this._v(" "),e("th",[this._v("Reference Shortcode")])])])},function(){var t=this.$createElement,e=this._self._c||t;return e("p",[this._v("You may "),e("a",{attrs:{href:"https://wpmanageninja.com/docs/ninja-tables/configuring-tables/value-transformation/",target:"_blank"}},[this._v("check the documentation here.")])])}]}},function(t,e,n){var a=n(0)(n(503),n(504),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"WPWooDynamicColumn",props:{column:{type:Object,default:function(){return{}}},columns:{type:Array,default:function(){return[]}}},data:function(){return{loading:!1,post_data_types:[],table_id:this.$route.params.table_id}},watch:{"column.wp_post_custom_data_source_type":function(){this.$set(this.column,"source_type",this.selectedField.source_type),"tax_data"==this.selectedField.source_type&&this.$set(this.column,"taxonomy_separator",", "),this.$set(this.column,"wp_post_custom_data_key","")}},computed:{selectedField:function(){var t=this,e=this.post_data_types.find(function(e){return e.key==t.column.wp_post_custom_data_source_type});return e||{}},selectedFiledValueType:function(){return this.selectedField&&this.selectedField.value_type?this.selectedField.value_type:"text"}},methods:{setFieldOptions:function(){var t=this;if(this.loading=!0,window.ninja_wp_woo_custom_fields)return this.post_data_types=window.ninja_wp_woo_custom_fields,void(this.loading=!1);jQuery.get(ajaxurl,{action:"ninja_table_wp_woo_get_custom_field_options",table_id:this.table_id}).then(function(e){window.ninja_wp_woo_custom_fields=e.data.custom_fields,t.post_data_types=e.data.custom_fields}).fail(function(t){}).always(function(){t.loading=!1})}},mounted:function(){this.setFieldOptions()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"wp_posts_dynamic_field"},[n("h4",[t._v(t._s(t.$t("Dynamic Column Data Settings")))]),t._v(" "),n("hr"),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Field Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Field Type")]),t._v(" "),n("p",[t._v("Select The field type you want to populate for each row")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{staticStyle:{width:"90%"},attrs:{placeholder:"Select Data Type",size:"small"},model:{value:t.column.wp_post_custom_data_source_type,callback:function(e){t.$set(t.column,"wp_post_custom_data_source_type",e)},expression:"column.wp_post_custom_data_source_type"}},t._l(t.post_data_types,function(t){return n("el-option",{key:t.key,attrs:{value:t.key,disabled:t.disabled,label:t.label}})}))],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Field Value"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Field Value")]),t._v(" "),n("p",[t._v("Provide the column value for your corresponding value type select")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),"options"==t.selectedFiledValueType?[n("el-select",{staticStyle:{width:"90%"},attrs:{placeholder:t.selectedField.placeholder,size:"small"},model:{value:t.column.wp_post_custom_data_key,callback:function(e){t.$set(t.column,"wp_post_custom_data_key",e)},expression:"column.wp_post_custom_data_key"}},t._l(t.selectedField.options,function(t,e){return n("el-option",{key:e,attrs:{value:e,label:t}})})),t._v(" "),"featured_image"==t.column.wp_post_custom_data_source_type?n("div",[n("el-radio-group",{model:{value:t.column.image_permalink_type,callback:function(e){t.$set(t.column,"image_permalink_type",e)},expression:"column.image_permalink_type"}},[n("el-radio",{attrs:{label:"lightbox"}},[t._v("Make image as lightbox")]),t._v(" "),n("el-radio",{attrs:{label:"linked"}},[t._v("Link to Product page")]),t._v(" "),n("el-radio",{attrs:{label:""}},[t._v("None")])],1),t._v(" "),n("p",{directives:[{name:"show",rawName:"v-show",value:"linked"==t.column.image_permalink_type,expression:"column.image_permalink_type == 'linked'"}]},[n("el-checkbox",{attrs:{"true-label":"_blank","false-label":"no"},model:{value:t.column.permalink_target,callback:function(e){t.$set(t.column,"permalink_target",e)},expression:"column.permalink_target"}},[t._v("Open Link in new tab")])],1)],1):t._e()]:n("el-input",{attrs:{type:t.selectedFiledValueType,placeholder:t.selectedField.placeholder,size:"small"},model:{value:t.column.wp_post_custom_data_value,callback:function(e){t.$set(t.column,"wp_post_custom_data_value",e)},expression:"column.wp_post_custom_data_value"}}),t._v(" "),t.selectedField&&t.selectedField.instruction?n("div",{staticClass:"ninja_instruction"},[n("p",{domProps:{innerHTML:t._s(t.selectedField.instruction)}}),t._v(" "),t.selectedField.learn_more_url?n("p",[n("a",{attrs:{target:"_blank",href:t.selectedField.learn_more_url}},[t._v("\n "+t._s(t.selectedField.learn_more_text)+"\n ")])]):t._e()]):t._e()],2),t._v(" "),"buy_now_button"==t.column.wp_post_custom_data_key?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Buy Now Button Text"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Buy Now Button Text")]),t._v(" "),n("p",[t._v("Provide Buy Now Button Text")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{placeholder:"Buy Now Button Text",size:"small"},model:{value:t.column.buy_now_button_text,callback:function(e){t.$set(t.column,"buy_now_button_text",e)},expression:"column.buy_now_button_text"}})],2):t._e(),t._v(" "),"post_title"==t.column.wp_post_custom_data_key||"custom"==t.column.source_type&&"featured_image"==t.column.wp_post_custom_data_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Link"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Link to Post/Author Permalink")]),t._v(" "),n("p",[t._v("\n Enable this if you want to link to post/Author permalink\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),"post_author"==t.column.wp_post_custom_data_key?n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to Author Permalink"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}}):n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to post permalink"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}}),t._v(" "),n("el-checkbox",{attrs:{"true-label":"_blank","false-label":"",value:"_blank",label:"Open link to new tab"},model:{value:t.column.permalink_target,callback:function(e){t.$set(t.column,"permalink_target",e)},expression:"column.permalink_target"}})],2)]:"tax_data"==t.column.source_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Link"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Link to Taxonomy Permalink")]),t._v(" "),n("p",[t._v("\n Enable this if you want to link to Taxonomy permalink\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no",value:"yes",label:"Link to Taxonomy"},model:{value:t.column.permalinked,callback:function(e){t.$set(t.column,"permalinked",e)},expression:"column.permalinked"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Taxonomy Separator"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Taxonomy Separator")]),t._v(" "),n("p",[t._v("Taxonomy Separator for Multiple Items")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{placeholder:"Enter Value",size:"small"},model:{value:t.column.taxonomy_separator,callback:function(e){t.$set(t.column,"taxonomy_separator",e)},expression:"column.taxonomy_separator"}})],2),t._v(" "),"yes"==t.column.permalinked?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Permalink Action"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Permalink Action Type")]),t._v(" "),n("p",[t._v("\n Enable this if you want to make the taxonomies as table filter action. So when user click on those filters then they will see only those type of posts.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"",value:"yes",label:"Make Taxonomies as Table Filter"},model:{value:t.column.filter_permalinked,callback:function(e){t.$set(t.column,"filter_permalinked",e)},expression:"column.filter_permalinked"}})],2),t._v(" "),"yes"!=t.column.filter_permalinked?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Open Link To New tab"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Open Link To New tab")]),t._v(" "),n("p",[t._v("\n Enable this if you want to open the links to new tab\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{"true-label":"_blank","false-label":"",value:"_blank",label:"Open link to new tab"},model:{value:t.column.permalink_target,callback:function(e){t.$set(t.column,"permalink_target",e)},expression:"column.permalink_target"}})],2):t._e()]:t._e()]:t._e()],2)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-form",{ref:"form",staticClass:"form-wrapper",attrs:{model:t.model,"label-width":"200px"}},[n("el-tabs",{on:{"tab-click":t.onTabClick},model:{value:t.activeTab,callback:function(e){t.activeTab=e},expression:"activeTab"}},[n("el-tab-pane",{staticClass:"basic_settings",attrs:{label:"Basic Settings",name:"basic"}},[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Column Name"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Column Name")]),t._v(" "),n("p",[t._v("\n Enter a column name to set the header title.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small"},model:{value:t.model.name,callback:function(e){t.$set(t.model,"name",e)},expression:"model.name"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Column Key"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Column Key")]),t._v(" "),n("p",[t._v("\n Column key is for data mapping, export and import table data.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small",disabled:t.updating},model:{value:t.model.key,callback:function(e){t.$set(t.model,"key",e)},expression:"model.key"}}),t._v(" "),t.updating?t._e():n("small",[t._v("Please use english letters only")])],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Data Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v(" "+t._s(t.$t("Data Type")))]),t._v(" "),n("p",[t._v("\n Choose the data type of the column.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{staticClass:"nt_column_type_select",attrs:{size:"mini",placeholder:"Select Data Type of this column"},model:{value:t.model.data_type,callback:function(e){t.$set(t.model,"data_type",e)},expression:"model.data_type"}},t._l(t.dataTypesOptions,function(t,e){return n("el-option",{key:e,attrs:{label:t,value:e}})})),t._v(" "),n("p",{directives:[{name:"show",rawName:"v-show",value:t.hasPro,expression:"hasPro"}]},[t._v("Select HTML Field if you want to add Link, media or any type of html")])],2),t._v(" "),"date"==t.model.data_type?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Date Format"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v(" "+t._s(t.$t("Date Format")))]),t._v(" "),n("p",[t._v("\n Pattern of the date value.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-group",{model:{value:t.model.formatType,callback:function(e){t.$set(t.model,"formatType",e)},expression:"model.formatType"}},[n("el-radio",{attrs:{label:"standard"}},[t._v(t._s(t.$t("Standard")))]),t._v(" "),n("el-radio",{attrs:{label:"custom",disabled:!t.hasPro},nativeOn:{click:function(e){return t.showProPopUp(e)}}},[t._v("Custom")])],1),t._v(" "),"custom"!=t.model.formatType?n("el-form-item",[n("select",{directives:[{name:"model",rawName:"v-model",value:t.model.dateFormat,expression:"model.dateFormat"}],on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.$set(t.model,"dateFormat",e.target.multiple?n:n[0])}}},[n("option",{attrs:{value:""}},[t._v(t._s(t.$t("Select a Format")))]),t._v(" "),t._l(t.dateFormats,function(e,a){return n("option",{key:a,domProps:{value:a}},[t._v("\n "+t._s(a)+" - (Ex: "+t._s(e)+")\n ")])})],2)]):n("el-form-item",[n("el-input",{attrs:{size:"small",placeholder:"Enter moment.js supported format"},model:{value:t.model.dateFormat,callback:function(e){t.$set(t.model,"dateFormat",e)},expression:"model.dateFormat"}})],1)],2):"number"==t.model.data_type&&t.hasPro?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Separator Style"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v(" "+t._s(t.$t("Thousand Separator")))]),t._v(" "),n("p",[t._v("\n Please Provide The Thousand/Decimal Separator If Any.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-group",{on:{change:function(e){t.changeDecimalStyle()}},model:{value:t.model.decimal_system,callback:function(e){t.$set(t.model,"decimal_system",e)},expression:"model.decimal_system"}},[n("el-radio",{attrs:{label:"us"}},[t._v("US Style - decimal point (123,234.01)")]),t._v(" "),n("el-radio",{attrs:{label:"eu"}},[t._v("European Style - decimal comma (123.234,01)")])],1)],2)]:"selection"==t.model.data_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Select Items"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Select Field")]),t._v(" "),n("p",[t._v("\n Use Select Field to add data in your table from predefined list\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-form-item",[t.has_pro?t._e():n("p",[n("b",[t._v("Selection feature is only available on Pro version Please upgrade to\n pro to unlock this feature")])]),t._v(" "),n("el-input",{attrs:{type:"textarea",size:"small",disabled:!t.has_pro,placeholder:"Enter Select items one per line",autosize:{minRows:4,maxRows:8}},model:{value:t.model.selections,callback:function(e){t.$set(t.model,"selections",e)},expression:"model.selections"}}),t._v(" "),n("small",[t._v("Enter Select items one per line")])],1)],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Enable Multi-Selection"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Multiple Selection")]),t._v(" "),n("p",[t._v("\n If you select yes, Then admin can select multiple item on create data\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-switch",{attrs:{"active-value":"yes"},model:{value:t.model.isMultiple,callback:function(e){t.$set(t.model,"isMultiple",e)},expression:"model.isMultiple"}})],2)]:"image"==t.model.data_type?[t.hasPro?t._e():[n("el-form-item",[n("p",{staticStyle:{color:"red"}},[t._v("Image upload with lightbox, download link is a pro feature. It will\n not work without Pro Version "),n("b",[n("a",{attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade",target:"_blank"}},[t._v("Please upgrade to pro")])])])])],t._v(" "),n("el-form-item",{attrs:{label:"Image Linkable?"}},[n("el-radio",{attrs:{disabled:!t.hasPro,label:"none"},model:{value:t.model.link_type,callback:function(e){t.$set(t.model,"link_type",e)},expression:"model.link_type"}},[t._v("Image Only")]),t._v(" "),n("el-radio",{attrs:{disabled:!t.hasPro,label:"image_light_box"},model:{value:t.model.link_type,callback:function(e){t.$set(t.model,"link_type",e)},expression:"model.link_type"}},[t._v("Image Lightbox")]),t._v(" "),n("el-radio",{attrs:{disabled:!t.hasPro,label:"iframe_ligtbox"},model:{value:t.model.link_type,callback:function(e){t.$set(t.model,"link_type",e)},expression:"model.link_type"}},[t._v("Iframe Lightbox")]),t._v(" "),n("el-radio",{attrs:{disabled:!t.hasPro,label:"hyperlinked"},model:{value:t.model.link_type,callback:function(e){t.$set(t.model,"link_type",e)},expression:"model.link_type"}},[t._v("Link to URL")])],1),t._v(" "),"file_download"==t.model.link_type?n("el-form-item",{attrs:{label:"Download Button Text / HTML"}},[n("el-input",{attrs:{disabled:!t.hasPro,type:"textarea",placeholder:"Download Button Text / HTML"},model:{value:t.model.download_button,callback:function(e){t.$set(t.model,"download_button",e)},expression:"model.download_button"}})],1):t._e(),t._v(" "),"hyperlinked"==t.model.link_type||"file_download"==t.model.link_type?n("el-form-item",[n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"_blank","false-label":"_self"},model:{value:t.model.link_target,callback:function(e){t.$set(t.model,"link_target",e)},expression:"model.link_target"}},[t._v("Open Link\n in new window\n ")])],1):t._e()]:"button"==t.model.data_type?[t.hasPro?t._e():[n("el-form-item",[n("p",{staticStyle:{color:"red"}},[t._v("Button on Table is a pro Feature. It will not work without Pro Version. "),n("b",[n("a",{attrs:{href:"https://wpmanageninja.com/downloads/ninja-tables-pro-add-on/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=wp_plugin&utm_term=upgrade",target:"_blank"}},[t._v("Please upgrade to pro")])])])])],t._v(" "),n("el-form-item",{attrs:{label:"Button Text"}},[n("el-input",{attrs:{size:"small",type:"text",placeholder:"Button Text (HTML supported)"},model:{value:t.model.button_text,callback:function(e){t.$set(t.model,"button_text",e)},expression:"model.button_text"}}),t._v(" "),n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"_blank","false-label":"_self"},model:{value:t.model.link_target,callback:function(e){t.$set(t.model,"link_target",e)},expression:"model.link_target"}},[t._v("Open Link\n in new window\n ")]),t._v(" "),n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"nt_rounded_btn","false-label":""},model:{value:t.model.btn_extra_class,callback:function(e){t.$set(t.model,"btn_extra_class",e)},expression:"model.btn_extra_class"}},[t._v("Make\n Button as rounded corner\n ")])],1),t._v(" "),n("el-form-item",{attrs:{label:"Button Style"}},[n("div",{staticClass:"ninja_color_blocks"},[n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{disabled:!t.hasPro,label:"Background"},model:{value:t.model.btn_bg_color,callback:function(e){t.$set(t.model,"btn_bg_color",e)},expression:"model.btn_bg_color"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{disabled:!t.hasPro,label:"Text Color"},model:{value:t.model.btn_text_color,callback:function(e){t.$set(t.model,"btn_text_color",e)},expression:"model.btn_text_color"}})],1),t._v(" "),n("div",{staticClass:"ninja_color_block"},[n("ninja-color-picker",{attrs:{disabled:!t.hasPro,label:"Border Color"},model:{value:t.model.btn_border_color,callback:function(e){t.$set(t.model,"btn_border_color",e)},expression:"model.btn_border_color"}})],1)])])]:t._e(),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Responsive Breakpoint"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Responsive Breakpoint")]),t._v(" "),n("p",[t._v("\n Choose responsive breakpoints of your table columns. "),n("br"),t._v("\n For more details check "),n("a",{attrs:{href:"https://wpmanageninja.com/r/docs/ninja-tables/configure-responsive-breakdowns-for-table/?utm_source=ninja-tables"}},[t._v("documentation")]),t._v(".\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{attrs:{size:"mini",placeholder:"Select Responsive Breakpoint"},model:{value:t.model.breakpoints,callback:function(e){t.$set(t.model,"breakpoints",e)},expression:"model.breakpoints"}},t._l(t.breakPointsOptions,function(t,e){return n("el-option",{key:e,attrs:{label:t,value:e}})}))],2),t._v(" "),"wp-posts"==t.dataSourceType?n("wp-post-dynamic-column",{attrs:{columns:t.columns,column:t.model}}):"wp_woo"==t.dataSourceType?[n("dynamic-woo-column",{attrs:{columns:t.columns,column:t.model}})]:t._e()],2),t._v(" "),n("el-tab-pane",{attrs:{label:"Advanced Settings",name:"advanced"}},[n("div",{staticClass:"advanced-settings"},[t.hasPro?t._e():n("div",{staticClass:"ninja_table_inline_upgrade"},[n("H3",[t._v("Advanced Column Settings")]),t._v(" "),n("p",[t._v("\n Customize your table's column's width, custom css class, content alignments, column styling\n with this feature.\n Advanced Column Settings is a pro feature and You can use it once you upgrade to Ninja\n Tables Pro.\n Ninja Table Pro has lots of features that will help you to build any type of Tables.\n ")]),t._v(" "),n("a",{attrs:{href:"https://wpmanageninja.com/ninja-tables/ninja-tables-pro-pricing/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=advanced_column&utm_term=upgrade",target:"_blank"}},[n("button",{staticClass:"el-button el-button--danger",attrs:{type:"button"}},[n("span",[t._v("Buy Pro and Enable This Module")])])])],1),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Extra Classes"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Extra CSS Classes")]),t._v(" "),n("p",[t._v("\n Enter extra CSS classes to the column. "),n("br"),t._v("\n Use `space` to separate each class.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small",disabled:!t.hasPro},model:{value:t.model.classes,callback:function(e){t.$set(t.model,"classes",e)},expression:"model.classes"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Max Width"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v(t._s(t.$t("Maximum Width")))]),t._v(" "),n("p",[t._v("\n Enter the maximum width of the column. This will be applied for the entire\n column\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small",type:"number",disabled:!t.hasPro},model:{value:t.model.width,callback:function(e){t.$set(t.model,"width",e)},expression:"model.width"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Header Text Align"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Header Text Alignment")]),t._v(" "),n("p",[t._v("\n Choose the text alignment. This will be applied only for header\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{attrs:{size:"mini",placeholder:"Text Align"},model:{value:t.model.textAlign,callback:function(e){t.$set(t.model,"textAlign",e)},expression:"model.textAlign"}},t._l(t.alignmentOptions,function(t,e){return n("el-option",{key:e,attrs:{label:t,value:e}})}))],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Row Content Text Align"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Content Text Alignment")]),t._v(" "),n("p",[t._v(" Choose the text alignment for Column Rows")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-select",{attrs:{size:"mini",placeholder:"Content Alignment"},model:{value:t.model.contentAlign,callback:function(e){t.$set(t.model,"contentAlign",e)},expression:"model.contentAlign"}},t._l(t.contentAlignmentOptions,function(t,e){return n("el-option",{key:e,attrs:{label:t,value:e}})}))],2),t._v(" "),n("el-form-item",[n("el-checkbox",{attrs:{disabled:!t.hasPro,value:!0,label:"Enable HTML Table Header Content"},model:{value:t.model.enable_html_content,callback:function(e){t.$set(t.model,"enable_html_content",e)},expression:"model.enable_html_content"}})],1),t._v(" "),t.model.enable_html_content?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Header HTML Content"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Header HTML Content")]),t._v(" "),n("p",[t._v("\n Provide content for table column header if you want to show html content.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("wp_editor",{model:{value:t.model.header_html_content,callback:function(e){t.$set(t.model,"header_html_content",e)},expression:"model.header_html_content"}})],2):t._e(),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filterable"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Filterable")]),t._v(" "),n("p",[t._v("\n If You enable this then this column data will not be filterable at the frontend.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"yes","false-label":"no",value:"yes",label:"Disable frontend search for this column data"},model:{value:t.model.unfilterable,callback:function(e){t.$set(t.model,"unfilterable",e)},expression:"model.unfilterable"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Sortable"))+"\n\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Sortable")]),t._v(" "),n("p",[t._v("\n If You enable this then this column data will not be sortable at the frontend.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-checkbox",{attrs:{disabled:!t.hasPro,"true-label":"yes","false-label":"no",value:"yes",label:"Disable frontend sorting for this column"},model:{value:t.model.unsortable,callback:function(e){t.$set(t.model,"unsortable",e)},expression:"model.unsortable"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Column Background"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Background color")]),t._v(" "),n("p",[t._v("\n You can set background color of this particular column that will show on the\n frontend table.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-color-picker",{attrs:{disabled:!t.hasPro,"show-alpha":""},model:{value:t.model.background_color,callback:function(e){t.$set(t.model,"background_color",e)},expression:"model.background_color"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Column Text Color"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Text Color color")]),t._v(" "),n("p",[t._v("\n You can set Column Text color of this particular column that will show on the\n frontend table.\n ")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-color-picker",{attrs:{disabled:!t.hasPro,"show-alpha":""},model:{value:t.model.text_color,callback:function(e){t.$set(t.model,"text_color",e)},expression:"model.text_color"}})],2)],1)]),t._v(" "),n("el-tab-pane",{attrs:{label:"Conditional Formatting",name:"conditional"}},[n("condition",{attrs:{column:t.model,"has-pro":t.hasPro}})],1),t._v(" "),n("el-tab-pane",{attrs:{label:"Transform Value",name:"transformer"}},[n("content-transformer",{attrs:{settings:t.settings,columns:t.columns,column:t.model}})],1),t._v(" "),n("hr",{staticStyle:{margin:"10px 0"}}),t._v(" "),n("div",{staticClass:"form_group"},[n("div",{staticClass:"pull-right"},[t.updating?[t.hideDelete?t._e():n("el-popover",{attrs:{placement:"top",width:"170",trigger:"click"},model:{value:t.showConfirm,callback:function(e){t.showConfirm=e},expression:"showConfirm"}},[n("p",[t._v("Are you sure to delete this?")]),t._v(" "),n("div",{staticStyle:{"text-align":"right",margin:"0"}},[n("el-button",{attrs:{type:"text",size:"mini"},on:{click:function(e){t.showConfirm=!1}}},[t._v("cancel\n ")]),t._v(" "),n("el-button",{attrs:{type:"primary",size:"mini"},on:{click:t.deleteColumn}},[t._v("confirm\n ")])],1),t._v(" "),t.hideDelete?t._e():n("el-button",{attrs:{slot:"reference",type:"danger",size:"small"},slot:"reference"},[t._v(t._s(t.$t("Delete"))+"\n ")])],1),t._v(" "),n("el-button",{attrs:{loading:t.doingAjax,type:"primary",size:"small"},on:{click:function(e){return e.preventDefault(),t.store(e)}}},[t._v("\n "+t._s(t.$t("Update"))+"\n ")])]:[t.hideCancel?t._e():n("el-button",{attrs:{type:"danger",size:"small"},on:{click:function(e){return e.preventDefault(),t.cancel(e)}}},[t._v("\n "+t._s(t.$t("Cancel"))+"\n ")]),t._v(" "),n("el-button",{attrs:{loading:t.doingAjax,type:"primary",size:"small"},on:{click:function(e){return e.preventDefault(),t.addColumn(e)}}},[t._v("Add Column\n ")])]],2)])],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(509),n(510),!1,function(t){n(507)},null,null);t.exports=a.exports},function(t,e,n){var a=n(508);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("508b4bf5",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".fluent-form-nav .el-collapse-item__header,.fluent-form-nav .el-collapse-item__wrap{padding:0 15px 15px}.fluent-form-nav .sync-settings{margin-top:15px}.fluent-form-nav .el-collapse-item__content{padding-bottom:15px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(121),o=n.n(a);e.default={name:"FluentformNav",components:{FluentForm:o.a},props:{config:{type:Object},tableCreated:{type:Function},isEditableMessage:{required:!0},model:{type:Object},hasPro:{type:Boolean}},data:function(){return{}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"fluent-form-nav"},[n("el-collapse",[n("el-collapse-item",{attrs:{name:"1"}},[n("template",{slot:"title"},[n("i",{staticClass:"header-icon el-icon-info el-text-info"}),t._v(" "),n("strong",[t._v("Edit:")]),t._v(" "+t._s(t.isEditableMessage)+"\n ")]),t._v(" "),n("FluentForm",{attrs:{tableCreated:t.tableCreated,editing:!0,config:t.config}})],2)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(514),n(515),!1,function(t){n(512)},null,null);t.exports=a.exports},function(t,e,n){var a=n(513);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("514643a9",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".external-source-nav .el-collapse-item__header,.external-source-nav .el-collapse-item__wrap{padding:0 15px}.external-source-nav .sync-settings{margin-top:15px}.external-source-nav .el-collapse-item__content{padding-bottom:15px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(122),o=n.n(a);e.default={name:"External",components:{"external-data-source":o.a},props:{tableCreated:{type:Function},config:{type:Object},isEditableMessage:{required:!0},hasPro:{required:!0}},data:function(){return{state:!1,url:this.value,activated_features:window.ninja_table_admin.activated_features}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"external-source-nav"},[n("el-collapse",[n("el-collapse-item",{attrs:{name:"1"}},[n("template",{slot:"title"},[n("i",{staticClass:"header-icon el-icon-info el-text-info"}),t._v(" "),n("strong",[t._v("Edit:")]),t._v(" "+t._s(t.isEditableMessage)+"\n ")]),t._v(" "),n("external-data-source",{attrs:{type:t.config.table.dataSourceType,tableCreated:t.tableCreated,columns:t.config.columns,table:t.config.table,hasPro:t.hasPro,editing:!0,activated_features:t.activated_features}})],2)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(519),n(520),!1,function(t){n(517)},null,null);t.exports=a.exports},function(t,e,n){var a=n(518);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("bd7c6ab4",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".fluent-form-nav .el-collapse-item__header,.fluent-form-nav .el-collapse-item__wrap{padding:0 15px 15px}.fluent-form-nav .sync-settings{margin-top:15px}.fluent-form-nav .el-collapse-item__content{padding-bottom:15px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(123),o=n.n(a),i=n(124),s=n.n(i);e.default={name:"RowSQLNav",components:{MySqlEditor:o.a,RemoteSqlConnection:s.a},props:{config:{type:Object},tableCreated:{type:Function},isEditableMessage:{required:!0},model:{type:Object},hasPro:{type:Boolean},column_count:{type:Number}},data:function(){return{error_html:"",loading:!1,active:"",connection_details:{},has_sql_permission:"yes"==window.ninja_table_admin.has_sql_permission}},methods:{updateSql:function(){var t=this;this.loading=!0,this.error_html="";var e={action:"ninja_table_raw_sql_update_sql",table_id:this.config.table.ID,sql:this.config.table.sql};"external"==this.config.table.connection_type&&(e.connection_details=this.connection_details),jQuery.post(ajaxurl,e).then(function(e){"string"!=typeof e?(t.tableCreated(),t.$message({showClose:!0,message:e.data.message,type:"success"})):t.error_html=e}).fail(function(e){var n="",a=e.responseJSON.data.message;for(var o in a)n+=" "+a[o];t.$message({showClose:!0,message:n,type:"error"}),e.responseJSON.data.error&&(t.error_html=e.responseJSON.data.error)}).always(function(){t.loading=!1})},getRemoteConnectionDetails:function(){var t=this;jQuery.get(ajaxurl,{action:"ninja_table_raw_sql_remote_connection_details",table_id:this.config.table.ID}).then(function(e){t.connection_details=e.data.connection_details}).fail(function(t){console.log(t)})}},mounted:function(){this.column_count||(this.active="1"),"external"==this.config.table.connection_type&&this.getRemoteConnectionDetails()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"fluent-form-nav"},[t.has_sql_permission?n("el-collapse",{model:{value:t.active,callback:function(e){t.active=e},expression:"active"}},[n("el-collapse-item",{attrs:{name:"1"}},[n("template",{slot:"title"},[n("i",{staticClass:"header-icon el-icon-info el-text-info"}),t._v(" "),n("strong",[t._v(" Edit:")]),t._v(" "+t._s(t.isEditableMessage)+"\n ")]),t._v(" "),n("div",{staticClass:"form-group"},[n("label",[t._v(t._s(t.$t("Custom SQL Query")))]),t._v(" "),n("my-sql-editor",{attrs:{mode:"mysql",editor_id:"ninja_mysql_editor"},model:{value:t.config.table.sql,callback:function(e){t.$set(t.config.table,"sql",e)},expression:"config.table.sql"}}),t._v(" "),n("p",[t._v("Please write valid SQL query. Your written SQL query will be passed to "),n("code",[t._v("$wpdb->get_results()")]),t._v(" function")]),t._v(" "),n("p",[t._v("Check the documentation for advanced use cases: "),n("a",{attrs:{target:"_blank",rel:"noopener",href:"https://wpmanageninja.com/docs/ninja-tables/integrations/construct-table-from-custom-sql/"}},[t._v("Ninja Tables SQL Integration Documentation")])]),t._v(" "),n("p",[t._v("Available Dynamic Placeholders: "),n("code",[t._v("{current_user_id}")]),t._v(" "),n("code",[t._v("{current_date}")]),t._v(" "),n("code",[t._v("{current_date_time}")]),t._v(" "),n("code",[t._v("{current_post_id}")]),t._v(" "),n("code",[t._v("{current_post_title}")]),t._v(" "),n("code",[t._v("{prefix}")])])],1),t._v(" "),t.error_html?n("div",{staticClass:"form-group"},[n("el-alert",{attrs:{title:"SQL Error",type:"error"},on:{close:function(e){t.error_html=""}}},[n("div",{domProps:{innerHTML:t._s(t.error_html)}})])],1):t._e(),t._v(" "),n("div",{staticClass:"form-group",staticStyle:{"text-align":"right"}},[n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],attrs:{size:"small",type:"primary"},on:{click:function(e){t.updateSql()}}},[t._v("Update SQL Query")])],1)],2),t._v(" "),"external"==t.config.table.connection_type?n("el-collapse-item",{attrs:{name:"2"}},[n("template",{slot:"title"},[n("strong",[t._v("SQL Connection Details:")])]),t._v(" "),n("remote-sql-connection",{attrs:{connection:t.connection_details}}),t._v(" "),t.error_html?n("div",{staticClass:"form-group"},[n("el-alert",{attrs:{title:"SQL Error",type:"error"},on:{close:function(e){t.error_html=""}}},[n("div",{domProps:{innerHTML:t._s(t.error_html)}})])],1):t._e(),t._v(" "),n("div",{staticClass:"form-group",staticStyle:{"text-align":"right"}},[n("el-button",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],attrs:{size:"small",type:"primary"},on:{click:function(e){t.updateSql()}}},[t._v("Update SQL Connection Details")])],1)],2):t._e()],1):[n("el-alert",{attrs:{title:"",type:"error",closable:!1}},[n("p",[t._v("\n For security reason, Custom SQL module is enabled only for Administrator user role. Please ask your site administrator to enable SQL module for other user roles."),n("br"),t._v("\n You can only see the data and update other settings but can't alter the original SQL.\n ")]),t._v(" "),n("b",[t._v("Current SQL Query: ")]),t._v(" "),n("p",[n("code",[t._v(t._s(t.config.table.sql))])])])]],2)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(524),n(525),!1,function(t){n(522)},null,null);t.exports=a.exports},function(t,e,n){var a=n(523);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("499d79da",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".fluent-form-nav .el-collapse-item__header,.fluent-form-nav .el-collapse-item__wrap{padding:0 15px}.fluent-form-nav .sync-settings{margin-top:15px}.fluent-form-nav .el-collapse-item__content{padding-bottom:15px}.el-transfer__buttons{padding:0 10px!important}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(110),o=n.n(a),i=n(48),s=n.n(i);e.default={name:"WPPostsNav",components:{WPPosts:o.a,columnsEditor:s.a},props:{config:{type:Object},tableCreated:{type:Function},isEditableMessage:{required:!0},model:{type:Object},hasPro:{type:Boolean}},data:function(){return{activeNames:["1"]}},methods:{addNewColumn:function(){this.$emit("add")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"fluent-form-nav"},[n("el-collapse",{model:{value:t.activeNames,callback:function(e){t.activeNames=e},expression:"activeNames"}},[n("el-collapse-item",{attrs:{title:"Table Query Settings and New Column",name:"1"}},[n("el-tabs",{attrs:{type:"border-card"}},[n("el-tab-pane",{attrs:{label:"Table Info"}},[n("p",[t._v('This table data is created from wp-posts. Use the "Query Settings" and "Add New Column" tab to customize the columns and query.')])]),t._v(" "),n("el-tab-pane",{attrs:{label:"Query Settings"}},[n("WPPosts",{attrs:{hasPLainLayout:!0,config:t.config,tableCreated:t.tableCreated}})],1),t._v(" "),n("el-tab-pane",{attrs:{label:"Add New Column"}},[n("columns-editor",{attrs:{model:t.model,columns:t.config.columns,hasPro:t.hasPro,settings:t.config.settings,hideCancel:!0,dataSourceType:"wp-posts"},on:{add:function(e){t.addNewColumn()}}})],1)],1)],1)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(527),n(528),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(112),o=n.n(a),i=n(48),s=n.n(i);e.default={name:"woo_nav_edit",props:["config","model"],components:{WooNav:o.a,ColumnsEditor:s.a},data:function(){return{query_terms:[],appearance:this.config.table.appearance_settings||{},loading:!1}},methods:{saveSettings:function(){var t=this;this.saving=!0,this.$post({action:"ninja_table_save_query_settings_woo_table",table_id:this.config.table.ID,query_selections:this.config.table.query_selections,query_conditions:this.config.table.query_conditions,appearance_settings:this.config.table.appearance_settings}).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"}),t.$emit("reloadData",1)}).fail(function(t){}).always(function(){t.saving=!1})},addNewColumn:function(){this.$emit("add")}},mounted:function(){}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("el-tabs",{attrs:{type:"border-card"}},[n("el-tab-pane",{attrs:{label:"Appearnce Settings"}},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.appearance.show_cart_before_table,callback:function(e){t.$set(t.appearance,"show_cart_before_table",e)},expression:"appearance.show_cart_before_table"}},[t._v("Show Cart Details Before Table")]),t._v(" "),n("br"),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.appearance.show_cart_after_table,callback:function(e){t.$set(t.appearance,"show_cart_after_table",e)},expression:"appearance.show_cart_after_table"}},[t._v("Show Cart Details After Table")]),t._v(" "),n("br"),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.appearance.show_cart_button,callback:function(e){t.$set(t.appearance,"show_cart_button",e)},expression:"appearance.show_cart_button"}},[t._v("Show Go to Cart Button")]),t._v(" "),n("br"),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.appearance.show_checkout_button,callback:function(e){t.$set(t.appearance,"show_checkout_button",e)},expression:"appearance.show_checkout_button"}},[t._v("Show Checkout Button")]),t._v(" "),n("br"),t._v(" "),n("el-button",{attrs:{type:"primary",size:"small"},on:{click:function(e){t.saveSettings()}}},[t._v("Save Settings")])],1),t._v(" "),n("el-tab-pane",{attrs:{label:"Query Settings"}},[n("woo-nav",{attrs:{query_selections:t.config.table.query_selections,query_conditions:t.config.table.query_conditions}}),t._v(" "),n("br"),t._v(" "),n("el-button",{attrs:{type:"primary",size:"small"},on:{click:function(e){t.saveSettings()}}},[t._v("Save Settings")])],1),t._v(" "),n("el-tab-pane",{attrs:{label:"Add New Column"}},[n("columns-editor",{attrs:{model:t.model,columns:t.config.columns,hasPro:!0,settings:t.config.settings,hideCancel:!0,dataSourceType:"wp_woo"},on:{add:function(e){t.addNewColumn()}}})],1)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(530),n(531),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(83),o=n(85),i=n.n(o),s=n(49),l=n(143),r=n.n(l),c=n(144),u=n.n(c),d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};e.default={name:"show_cell",props:["row","column","formula_support","is_editable"],components:{mayBeSelect:r.a,NinjaDatePicker:u.a},data:function(){return{is_editing:!1,btnLoading:!1,inital_value:""}},methods:{saveOnly:function(){},maybeSave:function(t){var e=this;if("change"!=t){var n=this.column.key,a=this.row.values[n];if(this.inital_value!=a){this.inital_value=JSON.stringify(a);var o={action:"ninja_tables_ajax_actions",target_action:"update-single-cell",row_id:this.row.id,column_key:n,column_value:a};this.btnLoading=!0,this.is_editing=!1,jQuery.post(ajaxurl,o).then(function(t){console.log(t)}).fail(function(t){e.$message.error("Failed")}).always(function(){e.btnLoading=!1})}else this.is_editing=!1}},renderTableCell:function(t,e,n){return"image"==e.data_type?"object"==(void 0===t?"undefined":d(t))&&t?"file_download"==e.link_type?'<a target="'+e.link_target+'" href="'+t.permalink+'">'+e.download_button+"</a>":t.image_thumb?'<img src="'+t.image_thumb+'" />':"":t:"button"==e.data_type?t?'<a target="'+e.link_target+'" class="nt_btn '+e.btn_extra_class+'" style="color: '+e.btn_text_color+"; background-color: "+e.btn_bg_color+"; border-color: "+e.btn_border_color+"\" href='"+t+"'>"+e.button_text+"</a>":"":(Array.isArray(t)&&(t=t.join(", ")),e.transformed_value&&e.transformed_value.trim()&&(t=this.getShortcodes(t,e,n)),"yes"==this.formula_support?s.a.parse(t):t)},getShortcodes:function(t,e,n){var o=e.transformed_value;-1!=o.indexOf("{{")&&(o=i()(Object(a.a)(o,{row:n})));var s=o.match(/{row.([^\}]*)}/g);return s&&$.each(s,function(t,e){var a=e.substring(5,e.length-1);o=o.replace(e,n[a])}),o}},computed:{cell_editable:function(){if(!this.is_editable)return!1;return-1==["image","button","html"].indexOf(this.column.data_type)}},mounted:function(){this.is_editable&&this.row.values[this.column.key]&&(this.inital_value=JSON.stringify(this.row.values[this.column.key]))}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.btnLoading,expression:"btnLoading"}],class:t.is_editing&&t.cell_editable?"nt_cell_editing":"nt_cell"},[t.is_editing&&t.cell_editable?n("div",{staticClass:"cell_editing"},["selection"==t.column.data_type?n("may-be-select",{attrs:{size:"mini",newColumn:t.row.values,column:t.column},on:{blur:function(e){t.maybeSave("blur")}}}):"date"==t.column.data_type?n("ninja-date-picker",{directives:[{name:"focus",rawName:"v-focus"}],attrs:{only_picker:"yes",column:t.column,new_column:t.row.values},on:{blur:function(e){t.maybeSave("blur")}}}):"textarea"==t.column.data_type?n("textarea",{directives:[{name:"focus",rawName:"v-focus"},{name:"model",rawName:"v-model",value:t.row.values[t.column.key],expression:"row['values'][column.key]"}],key:t.column.key,staticClass:"nt_inline_textarea",domProps:{value:t.row.values[t.column.key]},on:{blur:function(e){t.maybeSave("blur")},input:function(e){e.target.composing||t.$set(t.row.values,t.column.key,e.target.value)}}}):n("input",{directives:[{name:"focus",rawName:"v-focus"},{name:"model",rawName:"v-model",value:t.row.values[t.column.key],expression:"row['values'][column.key]"}],key:t.column.key,staticClass:"nt_cell_input",attrs:{type:"text"},domProps:{value:t.row.values[t.column.key]},on:{blur:function(e){t.maybeSave("blur")},keyup:function(e){if(!("button"in e)&&t._k(e.keyCode,"enter",13,e.key,"Enter"))return null;t.maybeSave("submit")},input:function(e){e.target.composing||t.$set(t.row.values,t.column.key,e.target.value)}}})],1):n("div",{staticClass:"cell-content",class:t.cell_editable?"nt_cell_editable":"",attrs:{title:t.cell_editable?"Click to edit":t.row.values[t.column.key]},domProps:{innerHTML:t._s(t.renderTableCell(t.row.values[t.column.key],t.column,t.row.values))},on:{click:function(e){t.is_editing=!0}}})])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[t.isEditable?t._e():["fluent-form"==t.dataSourceType?n("div",{staticClass:"tablenav top"},[n("fluent-form-nav",{attrs:{config:t.config,model:t.new_column,hasPro:t.has_pro,"is-editable-message":t.isEditableMessage,tableCreated:t.reloadSettingsAndData}})],1):-1!=t.dataSourceType.indexOf("csv")?n("div",{staticClass:"tablenav top"},[n("external-source-nav",{attrs:{"is-editable-message":t.isEditableMessage,loading:t.syncing,config:t.config,hasPro:t.has_pro,tableCreated:t.reloadSettingsAndData},model:{value:t.externalDataSourceUrl,callback:function(e){t.externalDataSourceUrl=e},expression:"externalDataSourceUrl"}})],1):"wp-posts"==t.dataSourceType&&t.new_column?n("div",{staticClass:"tablenav top"},[n("WPPostsNav",{attrs:{config:t.config,model:t.new_column,hasPro:t.has_pro,"is-editable-message":t.isEditableMessage,tableCreated:t.reloadSettingsAndData},on:{add:function(e){t.addNewColumn()}}})],1):"raw_sql"==t.dataSourceType?n("div",{staticClass:"tablenav top"},[n("raw-sql-nav",{attrs:{"is-editable-message":t.isEditableMessage,loading:t.syncing,config:t.config,column_count:t.columns.length,hasPro:t.has_pro,tableCreated:t.reloadSettingsAndData}})],1):"wp_woo"==t.dataSourceType?n("div",{staticClass:"tablenav top"},[n("div",{staticClass:"woo_data_source_config"},[n("woo-nav-edit",{attrs:{model:t.new_column,config:t.config},on:{add:function(e){t.addNewColumn()},reloadData:function(e){t.getData()}}})],1)]):t._e(),t._v(" "),t.columns.length||t.loading?t._e():n("div",[n("h3",{staticStyle:{"text-align":"center"}},[t._v("No Data found based on your data source configaration")])])],t._v(" "),t.columns.length&&t.isEditable?[t.addDataModal?n("add_data_modal",{attrs:{title:t.addDataModalTitle,show:t.addDataModal,table_id:t.tableId,columns:t.columns,item:t.updateItem,"manual-sort":"manual_sort"===t.config.settings.sorting_type,"insert-after-position":t.insertAfterPosition,insertAfterId:t.insertAfterId,type:t.dataModalType},on:{modal_close:t.closeDataModal,updateItem:t.updateItemOnTable,createItem:t.addItemOnTable}}):t._e(),t._v(" "),n("div",{staticClass:"tablenav top"},[n("div",{staticClass:"alignleft actions bulkactions"},[n("label",{staticClass:"screen-reader-text",attrs:{for:"bulk-action-selector-top"}},[t._v("\n "+t._s(t.$t("Select bulk action"))+"\n ")]),t._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.bulkAction,expression:"bulkAction"}],attrs:{name:"action"},on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.bulkAction=e.target.multiple?n:n[0]}}},[n("option",{attrs:{value:"-1"}},[t._v(t._s(t.$t("Bulk Actions")))]),t._v(" "),n("option",{attrs:{value:"delete"}},[t._v(t._s(t.$t("Delete Entries")))])]),t._v(" "),n("button",{staticClass:"button action",on:{click:function(e){return e.preventDefault(),t.handleBulkAction(e)}}},[t._v(t._s(t.$t("Apply")))]),t._v(" "),n("label",{staticClass:"form_group",attrs:{for:"compact_view"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.isCompact,expression:"isCompact"}],attrs:{id:"compact_view",type:"checkbox"},domProps:{checked:Array.isArray(t.isCompact)?t._i(t.isCompact,null)>-1:t.isCompact},on:{change:function(e){var n=t.isCompact,a=e.target,o=!!a.checked;if(Array.isArray(n)){var i=t._i(n,null);a.checked?i<0&&(t.isCompact=n.concat([null])):i>-1&&(t.isCompact=n.slice(0,i).concat(n.slice(i+1)))}else t.isCompact=o}}}),t._v(" Compact View\n ")]),t._v(" "),n("label",[t._v("\n | "),n("i",{staticClass:"el-icon-news",attrs:{title:"show meta data"},on:{click:function(e){t.show_meta=!t.show_meta}}})]),t._v(" "),n("label",{staticClass:"form_group search_action",attrs:{for:"search"}},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.searchString,expression:"searchString"}],staticClass:"form-control inline",attrs:{id:"search",placeholder:"Search",type:"text"},domProps:{value:t.searchString},on:{keyup:function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?t.getData(e):null},input:function(e){e.target.composing||(t.searchString=e.target.value)}}}),t._v(" "),n("i",{staticClass:"el-icon-search",on:{click:t.getData}})]),t._v(" "),n("label",[n("input",{directives:[{name:"model",rawName:"v-model",value:t.sorting,expression:"sorting"}],attrs:{type:"checkbox",name:"checkbox"},domProps:{checked:Array.isArray(t.sorting)?t._i(t.sorting,null)>-1:t.sorting},on:{change:function(e){var n=t.sorting,a=e.target,o=!!a.checked;if(Array.isArray(n)){var i=t._i(n,null);a.checked?i<0&&(t.sorting=n.concat([null])):i>-1&&(t.sorting=n.slice(0,i).concat(n.slice(i+1)))}else t.sorting=o}}}),t._v("\n Sort Manually\n "),t.has_pro?t._e():[t._v("(Pro Feature)")]],2)]),t._v(" "),n("div",{staticClass:"pull-right"},[n("el-button",{attrs:{size:"small",type:"primary"},on:{click:function(e){t.add()}}},[t._v(" "+t._s(t.$t("Add Data")))]),t._v(" "),n("el-button",{attrs:{size:"small",type:"info"},on:{click:function(e){t.addColumn()}}},[t._v(" "+t._s(t.$t("Add Column")))])],1)])]:t._e(),t._v(" "),t.loading||t.columns.length||!t.isEditable?t._e():n("div",{staticClass:"instruction_block",staticStyle:{"margin-top":"15px","text-align":"center"},attrs:{type:"warning"}},[n("h3",[t._v(t._s(t.$t("To get started please add table columns")))]),t._v(" "),n("el-button",{attrs:{type:"primary"},on:{click:function(e){t.addColumn()}}},[t._v("\n Add Column\n ")])],1),t._v(" "),t.columns.length?[n("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"js-sortable-table",class:{compact:t.isCompact,sorting:t.sorting},style:"width: "+t.tableWidth,attrs:{data:t.items,"row-key":"id",border:"","max-height":"600"},on:{"selection-change":t.handleSelectionChange}},[t.isEditable?n("el-table-column",{attrs:{type:"selection",fixed:"",width:"60"}}):t._e(),t._v(" "),t._l(t.columns,function(e,a){return n("el-table-column",{key:a,attrs:{label:JSON.stringify(e),"render-header":t.addConfigIcon,width:t.columnLength==a+1?"":150},scopedSlots:t._u([{key:"default",fn:function(a){return[n("show-editable-cell",{attrs:{row:a.row,column:e,formula_support:t.config.settings.formula_support,is_editable:t.isEditable}})]}}])})}),t._v(" "),t.isEditable?[t.show_meta?[n("el-table-column",{attrs:{label:"Data ID",width:"100px",prop:"id"}}),t._v(" "),n("el-table-column",{attrs:{label:"Created By",width:"165px",prop:"created_by"}}),t._v(" "),n("el-table-column",{attrs:{label:"Reference Date",width:"165px",prop:"created_at"}})]:t._e(),t._v(" "),n("el-table-column",{attrs:{fixed:"right",label:"Actions","class-name":"actions",width:"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[t.has_pro?n("a",{on:{click:function(n){t.addAfter(e)}}},[n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Add Data after this row","open-delay":500}},[n("span",{staticClass:"dashicons dashicons-plus"})])],1):t._e(),t._v(" "),n("a",{on:{click:function(n){t.showUpdateModal(e)}}},[n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Edit data","open-delay":500}},[n("span",{staticClass:"dashicons dashicons-edit"})])],1),t._v(" "),n("a",{on:{click:function(n){t.duplicateData(e)}}},[n("el-tooltip",{attrs:{placement:"top-end",effect:"light",content:"Duplicate data","open-delay":500}},[n("span",{staticClass:"dashicons dashicons-admin-page"})])],1),t._v(" "),n("delete-pop-over",{on:{deleted:function(n){t.deleteItem(e.row.id)}}})]}}])})]:t._e()],2),t._v(" "),n("div",{staticClass:"tablenav bottom"},[t.isEditable?n("div",{staticClass:"alignleft actions bulkactions"},[n("label",{staticClass:"screen-reader-text",attrs:{for:"bulk-action-selector-top"}},[t._v("\n "+t._s(t.$t("Select bulk action"))+"\n ")]),t._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.bulkAction,expression:"bulkAction"}],attrs:{name:"action"},on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.bulkAction=e.target.multiple?n:n[0]}}},[n("option",{attrs:{value:"-1"}},[t._v(t._s(t.$t("Bulk Actions")))]),t._v(" "),n("option",{attrs:{value:"delete"}},[t._v(t._s(t.$t("Delete Entries")))])]),t._v(" "),n("button",{staticClass:"button action",on:{click:function(e){return e.preventDefault(),t.handleBulkAction(e)}}},[t._v(t._s(t.$t("Apply")))])]):t._e(),t._v(" "),n("div",{staticClass:"pull-right"},[n("el-pagination",{attrs:{"current-page":t.paginate.current_page,"page-sizes":[10,20,50,100,500,2e3],"page-size":t.paginate.per_page,layout:"total, sizes, prev, pager, next, jumper",total:t.paginate.total},on:{"size-change":t.handleSizeChange,"current-change":t.goToPage,"update:currentPage":function(e){t.$set(t.paginate,"current_page",e)}}})],1)])]:t._e(),t._v(" "),n("sortable-upgrade-notice",{attrs:{show:t.sortableUpgradeNotice},on:{close:function(e){t.sortableUpgradeNotice=!1}}}),t._v(" "),n("el-dialog",{staticClass:"no_padding_body",attrs:{"close-on-click-modal":!1,"append-to-body":!0,top:"50px",title:"Edit Table Column : "+t.currentEditingColumn.name,width:"70%",visible:t.showColumnEditor},on:{"update:visible":function(e){t.showColumnEditor=e}}},[t.showColumnEditor&&t.currentEditingColumn?n("columns-editor",{attrs:{dataSourceType:t.config.table.dataSourceType,model:t.currentEditingColumn,hasPro:t.has_pro,updating:!0,columns:t.columns,settings:t.config.settings,hideDelete:!1},on:{store:function(e){t.storeSettings()},delete:function(e){t.deleteColumn()},cancel:function(e){t.showColumnEditor=!1}}}):t._e()],1),t._v(" "),n("el-dialog",{attrs:{"close-on-click-modal":!1,top:"50px","append-to-body":!0,title:"Add Table Column",width:"70%",visible:t.columnModal},on:{"update:visible":function(e){t.columnModal=e}}},[n("columns-editor",{attrs:{model:t.new_column,hasPro:t.has_pro,columns:t.config.columns,settings:t.config.settings},on:{add:function(e){t.addNewColumn()},cancel:function(e){t.columnModal=!t.columnModal}}})],1)],2)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(536),n(559),!1,function(t){n(534)},null,null);t.exports=a.exports},function(t,e,n){var a=n(535);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("2c0abb3d",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".table-column-settings{margin-top:15px}.table-column-settings .el-menu{border-right:initial}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(87),o=n.n(a),i=n(134),s=n.n(i),l=n(79),r=n.n(l),c=n(78),u=n.n(c),d=n(142),_=n.n(d),p=n(48),f=n.n(p),m=n(537),v=n.n(m),h=n(550),b=n.n(h),g=n(553),y=n.n(g),w=n(556),x=n.n(w),k=n(75);e.default={name:"TableConfiguration",components:{draggable:o.a,ColumnsEditor:f.a,NinjaCustomFilters:v.a,NinjaLanguageSettings:b.a,NinjaRenderingSettings:y.a,NinjaButtonSettings:x.a},props:["config"],data:function(){return{hasPro:!!window.ninja_table_admin.hasPro,active_menu:"columns",table_color_primary:"#000",table_color_secondary:"#fff",tableId:this.$route.params.table_id,tableLibs:Object(k.a)(),doingAjax:!1,addColumnStatus:!1,new_column:!1,breakPointsOptions:{xs:this.$t("Initial Hidden Mobile"),"xs sm":this.$t("Initial Hidden Mobile and Tab"),"xs sm md lg":this.$t("Initial Hidden Mobile, Tab and Regular Computers"),"":this.$t("Always show in all devices"),hidden:this.$t("Totally hidden on all devices")},dataTypesOptions:{text:this.$t("Single Line Text Field"),textarea:this.$t("Text Area"),html:this.$t("HTML Field"),number:this.$t("Numeric Value"),date:this.$t("Date Field"),selection:this.$t("Select Field")},attributeModel:{name:null,key:null,breakpoints:""},columns:this.config.columns,tableSettings:this.config.settings,is_fluent_installed:window.ninja_table_admin.isInstalled,fluent_url:window.ninja_table_admin.fluentform_url,has_pro:!!window.ninja_table_admin.hasPro,hasSortable:!!window.ninja_table_admin.hasSortable,addVisible:!1,sortableUpgradeNotice:!1}},watch:{"new_column.name":function(){this.new_column.key=_()(this.new_column.name)}},methods:{storeSettings:function(){var t=this;window.ninjaTableBus.$emit("tableDoingAjax",!0),this.doingAjax=!0;var e={action:"ninja_tables_ajax_actions",target_action:"update-table-settings",table_id:this.tableId,columns:this.columns,table_settings:this.tableSettings};jQuery.post(ajaxurl,e).success(function(e){t.$message({showClose:!0,message:e.message,type:"success"}),t.$set(t.config,"columns",t.columns)}).fail(function(t){}).always(function(){t.doingAjax=!1,window.ninjaTableBus.$emit("tableDoingAjax",!1)})},openDrawer:function(t){jQuery(".drawer_body_"+t).slideToggle()},validateColumn:function(t){return t.name?t.key?-1===s()(this.columns,function(e){return e.key==t.key})||(this.$message({showClose:!0,message:this.$t("Column Key needs to be unique. Please add a suffix / prefix to make it unique"),type:"error"}),!1):(this.$message({showClose:!0,message:this.$t("Column Key is required"),type:"error"}),!1):(this.$message({showClose:!0,message:this.$t("Name is required"),type:"error"}),!1)},addNewColumn:function(){this.validateColumn(this.new_column)&&(this.columns.push(this.new_column),this.setNewColumn(),this.addColumnStatus=!1,this.storeSettings())},deleteColumn:function(t){this.config.columns.splice(t,1),this.storeSettings()},showProAd:function(t){this.addVisible=!0,window.ninjaTableBus.$emit("show_pro_popup",1)},size:u.a,get:r.a,initManualSorting:function(){var t=this;new Promise(function(e,n){window.ninjaTableBus.$emit("initManualSorting",{table_id:t.tableId,noData:!0},e,n)})},headerColorsClick:function(){this.has_pro||this.showProAd()},setNewColumn:function(){var t={name:"",key:"",breakpoints:"",data_type:"text",dateFormat:"",header_html_content:"",enable_html_content:!1};"wp-posts"===this.dataSourceType()&&(t.source_type="custom"),this.new_column=t},dataSourceType:function(){var t=this.config.table.dataSourceType||"Default";return t=t.indexOf("google")>-1?"Google SpreadSheet":t}},computed:{addable:function(){return-1!=["default","wp-posts"].indexOf(this.config.table.dataSourceType)}},mounted:function(){this.setNewColumn()}}},function(t,e,n){var a=n(0)(n(538),n(549),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(14),o=n.n(a),i=n(539),s=n.n(i),l=n(87),r=n.n(l);e.default={name:"custom_filter",props:["table_id","columns"],components:{NinjaFilterEditor:s.a,draggable:r.a},data:function(){return{loading:!1,saving:!1,hasPro:!!window.ninja_table_admin.hasPro,hasAdvancedFilters:!!window.ninja_table_admin.hasAdvancedFilters,table_filters:[],activeEditor:!1,editorModal:!1,addFilterModal:!1,filter_styling:{filter_display_type:"",filter_columns:"columns_2",filter_column_label:"new_line"}}},computed:{columnKeyPairs:function(){var t={};return o()(this.columns,function(e){t[e.key]=e.name}),t}},methods:{each:o.a,fetchFilters:function(){var t=this;this.loading=!0,jQuery.get(window.ajaxurl,{action:"ninjatable_get_custom_table_filters",table_id:this.table_id}).then(function(e){t.table_filters=e.data.table_filters,t.filter_styling=e.data.filter_styling}).fail(function(t){}).always(function(){t.loading=!1})},updateFilter:function(t){this.validateFilter(t)&&this.saveFilters()},validateFilter:function(t){return t.title?t.options.length?"reset_filter"==t.type||"select"==t.type||t.columns.length?!("select"==t.type&&"dynamic_data"==t.select_value_type&&!t.dynamic_select_column)||(this.$message.error("Please Select Target Column"),!1):(this.$message.error("Please Select columns that you need to add filter"),!1):(this.$message.error("Please Provide Filter Options"),!1):(this.$message.error("Please Provide Filter Title"),!1)},saveFilters:function(){var t=this;this.saving=!0,jQuery.post(window.ajaxurl,{action:"ninjatable_update_custom_table_filters",table_id:this.table_id,ninja_filters:this.table_filters,filter_styling:this.filter_styling}).then(function(e){t.$message.success(e.data.message)}).fail(function(t){}).always(function(){t.saving=!1,t.activeEditor=!1,t.editorModal=!1,t.addFilterModal=!1})},showAddFilter:function(){this.activeEditor={placeholder:"All",options:[{value:"",label:""}],type:"select",columns:[],strict:"no",title:""},this.addFilterModal=!0},addFilter:function(t){var e=this;this.validateFilter(t)&&(this.table_filters.push(t),this.$nextTick(function(){e.saveFilters()}))},edit:function(t){this.activeEditor=t,this.editorModal=!0},deleteFilter:function(t){this.table_filters.splice(t,1),this.saveFilters()}},mounted:function(){this.hasAdvancedFilters&&this.fetchFilters()}}},function(t,e,n){var a=n(0)(n(542),n(548),!1,function(t){n(540)},"data-v-56eb18cf",null);t.exports=a.exports},function(t,e,n){var a=n(541);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("63397d04",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,".spaced>.el-radio[data-v-56eb18cf]{margin-left:0;margin-right:30px!important;line-height:2}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(543),o=n.n(a),i=n(14),s=n.n(i);e.default={name:"FilterEditor",components:{KeyPairOptions:o.a},props:["activeEditor","columnKeyPairs","columns"],computed:{current_columns:function(){if("date_picker"==this.activeEditor.type||"date_range"==this.activeEditor.type){var t=[];return s()(this.columns,function(e){"date"==e.data_type&&t.push(e)}),t}if("number_range"==this.activeEditor.type){var e=[];return s()(this.columns,function(t){"number"==t.data_type&&e.push(t)}),e}return this.columns},has_filter_option:function(){return-1!==["radio","checkbox"].indexOf(this.activeEditor.type)},is_manual_select_options:function(){return"select"==this.activeEditor.type&&"manual"==this.activeEditor.select_value_type},need_placeholder:function(){return-1!==["radio","select","date_picker","text_input"].indexOf(this.activeEditor.type)},need_filter_columns:function(){return!("select"==this.activeEditor.type&&"dynamic_data"==this.activeEditor.select_value_type||"reset_filter"==this.activeEditor.type)}},watch:{"activeEditor.type":function(t){"select"==t&&this.$set(this.activeEditor,"select_value_type","manual"),Array.isArray(this.activeEditor.columns)||(this.activeEditor.columns=[])}},mounted:function(){Array.isArray(this.activeEditor.columns)||(this.activeEditor.columns=[])}}},function(t,e,n){var a=n(0)(n(546),n(547),!1,function(t){n(544)},null,null);t.exports=a.exports},function(t,e,n){var a=n(545);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("59ffc73b",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,"table.ninja_filter_table{width:100%;text-align:left;border-collapse:collapse}table.ninja_filter_table td,table.ninja_filter_table th,table.ninja_filter_table tr{border:1px solid #eaeaea;padding:2px 10px}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(87),o=n.n(a);e.default={name:"ninja_key_pair_options",components:{draggable:o.a},props:["value"],data:function(){return{filterArray:[]}},methods:{deleteItem:function(t){this.value.splice(t,1)},add:function(){this.value.push({label:"",value:""})}},mounted:function(){}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("table",{staticClass:"ninja_filter_table"},[t._m(0),t._v(" "),n("draggable",{attrs:{options:{handle:".handle"},list:t.value,element:"tbody"}},t._l(t.value,function(e,a){return n("tr",[n("td",[n("span",{staticClass:"dashicons dashicons-editor-justify handle",staticStyle:{"margin-top":"10px"}})]),t._v(" "),n("td",[n("el-input",{attrs:{size:"mini",type:"text"},model:{value:e.label,callback:function(n){t.$set(e,"label",n)},expression:"filter.label"}})],1),t._v(" "),n("td",[n("el-input",{attrs:{size:"mini",type:"text"},model:{value:e.value,callback:function(n){t.$set(e,"value",n)},expression:"filter.value"}})],1),t._v(" "),n("td",[n("el-button",{attrs:{disabled:1==t.value.length,type:"danger",size:"mini"},on:{click:function(e){t.deleteItem(a)}}},[t._v("-")]),t._v(" "),n("el-button",{directives:[{name:"show",rawName:"v-show",value:a+1==t.value.length,expression:"(index + 1) == value.length"}],attrs:{type:"success",size:"mini"},on:{click:function(e){t.add()}}},[t._v("+")])],1)])}))],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("thead",[e("tr",[e("th"),this._v(" "),e("th",[this._v("Label")]),this._v(" "),e("th",[this._v("Filter Value")])])])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-form",{ref:"form",staticClass:"form-wrapper",attrs:{model:t.activeEditor,"label-width":"250px"}},[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filter Title"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Filter Title")]),t._v(" "),n("p",[t._v("Just a Name to identify your Filter")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small"},model:{value:t.activeEditor.title,callback:function(e){t.$set(t.activeEditor,"title",e)},expression:"activeEditor.title"}})],2),t._v(" "),"reset_filter"!=t.activeEditor.type?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filter Label"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Prefix")]),t._v(" "),n("p",[t._v("This will show on your Table Filter")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small"},model:{value:t.activeEditor.filter_prefix,callback:function(e){t.$set(t.activeEditor,"filter_prefix",e)},expression:"activeEditor.filter_prefix"}}),t._v(" "),n("small",[t._v("Keep it blank if you don't need any filter instruction at the frontend")])],2):t._e(),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filter UI Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Filter UI")]),t._v(" "),n("p",[t._v("Select the filter type that you want to show the filter in the frontend")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-group",{staticClass:"spaced",model:{value:t.activeEditor.type,callback:function(e){t.$set(t.activeEditor,"type",e)},expression:"activeEditor.type"}},[n("el-radio",{attrs:{label:"select"}},[t._v("Select Dropdown")]),t._v(" "),n("el-radio",{attrs:{label:"radio"}},[t._v("Radio")]),t._v(" "),n("el-radio",{attrs:{label:"checkbox"}},[t._v("Checkbox")]),t._v(" "),n("el-radio",{attrs:{label:"date_picker"}},[t._v("Date Picker")]),t._v(" "),n("el-radio",{attrs:{label:"date_range"}},[t._v("Date Range")]),t._v(" "),n("el-radio",{attrs:{label:"text_input"}},[t._v("Text Input")]),t._v(" "),n("el-radio",{attrs:{label:"number_range"}},[t._v("Number Range")]),t._v(" "),n("el-radio",{attrs:{label:"reset_filter"}},[t._v("Reset Filter Button")])],1)],2),t._v(" "),t.need_placeholder?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Placeholder"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("p",[t._v("This will show on as default placeholder to reset the label ( Ex: All )")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small"},model:{value:t.activeEditor.placeholder,callback:function(e){t.$set(t.activeEditor,"placeholder",e)},expression:"activeEditor.placeholder"}})],2):t._e(),t._v(" "),"select"==t.activeEditor.type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Value Type"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("p",[t._v("Select How the value will be populated to the select dropdown")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.activeEditor.select_value_type,callback:function(e){t.$set(t.activeEditor,"select_value_type",e)},expression:"activeEditor.select_value_type"}},[n("el-radio-button",{attrs:{label:"manual"}},[t._v("Manual Data")]),t._v(" "),n("el-radio-button",{attrs:{label:"dynamic_data"}},[t._v("Dynamic Data from Table Column")])],1)],2),t._v(" "),!t.is_manual_select_options&&t.activeEditor.select_value_type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Target Column"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("p",[t._v("Select Column That you want to populate data")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-radio-group",{staticClass:"spaced",model:{value:t.activeEditor.dynamic_select_column,callback:function(e){t.$set(t.activeEditor,"dynamic_select_column",e)},expression:"activeEditor.dynamic_select_column"}},t._l(t.current_columns,function(e){return n("el-radio",{key:e.key,attrs:{label:e.key}},[t._v(t._s(e.name))])}))],2),t._v(" "),n("el-form-item",[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.activeEditor.parse_comma_separated,callback:function(e){t.$set(t.activeEditor,"parse_comma_separated",e)},expression:"activeEditor.parse_comma_separated"}},[t._v(" Parse Comma Separated Words")])],1),t._v(" "),n("el-form-item",[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.activeEditor.disable_auto_sorting,callback:function(e){t.$set(t.activeEditor,"disable_auto_sorting",e)},expression:"activeEditor.disable_auto_sorting"}},[t._v(" Disable automatic filter value sorting")])],1),t._v(" "),"yes"!=t.activeEditor.disable_auto_sorting?[n("el-form-item",{attrs:{label:"Sort Dynamic Value as: "}},[n("el-radio-group",{model:{value:t.activeEditor.sorting_type,callback:function(e){t.$set(t.activeEditor,"sorting_type",e)},expression:"activeEditor.sorting_type"}},[n("el-radio",{attrs:{label:"asc"}},[t._v("Asending Way")]),t._v(" "),n("el-radio",{attrs:{label:"desc"}},[t._v("Descending Way")])],1)],1),t._v(" "),n("el-form-item",{attrs:{label:"Sort Algorithom"}},[n("el-radio-group",{model:{value:t.activeEditor.sorting_method,callback:function(e){t.$set(t.activeEditor,"sorting_method",e)},expression:"activeEditor.sorting_method"}},[n("el-radio",{attrs:{label:"text"}},[t._v("As Text Basis")]),t._v(" "),n("el-radio",{attrs:{label:"numeric"}},[t._v("As Numeric Basis")])],1)],1)]:t._e()]:t._e(),t._v(" "),n("el-form-item",[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.activeEditor.is_multi_select,callback:function(e){t.$set(t.activeEditor,"is_multi_select",e)},expression:"activeEditor.is_multi_select"}},[t._v("Enable Multi-Select")])],1)]:t._e(),t._v(" "),t.has_filter_option||t.is_manual_select_options?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filter Options"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Options")]),t._v(" "),n("p",[t._v("Provide the values that you want to show on the frontend. Your values should match your table cell data")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("key-pair-options",{model:{value:t.activeEditor.options,callback:function(e){t.$set(t.activeEditor,"options",e)},expression:"activeEditor.options"}})],2)]:t._e(),t._v(" "),"date_picker"==t.activeEditor.type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Date Filter Operator"))+"\n ")]),t._v(" "),n("el-radio-group",{model:{value:t.activeEditor.filter_operator,callback:function(e){t.$set(t.activeEditor,"filter_operator",e)},expression:"activeEditor.filter_operator"}},[n("el-radio",{attrs:{label:"less"}},[t._v("Less Than Equal")]),t._v(" "),n("el-radio",{attrs:{label:"greater"}},[t._v("Greater Than Equal")]),t._v(" "),n("el-radio",{attrs:{label:"equal"}},[t._v("Equal")])],1)],2)]:"date_range"==t.activeEditor.type||"number_range"==t.activeEditor.type?[n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("From Placeholder"))+"\n ")]),t._v(" "),n("el-input",{attrs:{size:"small",placeholder:"From Placeholder"},model:{value:t.activeEditor.from_placeholder,callback:function(e){t.$set(t.activeEditor,"from_placeholder",e)},expression:"activeEditor.from_placeholder"}})],2),t._v(" "),n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("To Placeholder"))+"\n ")]),t._v(" "),n("el-input",{attrs:{size:"small",placeholder:"To Placeholder"},model:{value:t.activeEditor.to_placeholder,callback:function(e){t.$set(t.activeEditor,"to_placeholder",e)},expression:"activeEditor.to_placeholder"}})],2)]:t._e(),t._v(" "),"text_input"==t.activeEditor.type?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filter Prefix"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Filter Prefix")]),t._v(" "),n("p",[t._v("You can use filter prefix to append the value of user inputed value. It will join with the value and perform the search")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("el-input",{attrs:{size:"small",placeholder:"Filter Prefix"},model:{value:t.activeEditor.filter_value_prefix,callback:function(e){t.$set(t.activeEditor,"filter_value_prefix",e)},expression:"activeEditor.filter_value_prefix"}})],2):t._e(),t._v(" "),t.need_filter_columns?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Filter Columns"))+"\n "),n("el-tooltip",{staticClass:"item",attrs:{placement:"bottom-start",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[n("h3",[t._v("Columns")]),t._v(" "),n("p",[t._v("Select the columns that you want to apply this filter")])]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),t.current_columns.length?n("el-checkbox-group",{model:{value:t.activeEditor.columns,callback:function(e){t.$set(t.activeEditor,"columns",e)},expression:"activeEditor.columns"}},t._l(t.current_columns,function(e){return n("el-checkbox",{key:e.key,attrs:{label:e.key}},[t._v(t._s(e.name))])})):n("div",[t._v("\n Sorry, No corresponding columns found based on your selection and column's data type\n ")])],2):t._e(),t._v(" "),"reset_filter"==t.activeEditor.type?n("el-form-item",[n("template",{slot:"label"},[t._v("\n "+t._s(t.$t("Button Text"))+"\n ")]),t._v(" "),n("el-input",{attrs:{size:"mini"},model:{value:t.activeEditor.placeholder,callback:function(e){t.$set(t.activeEditor,"placeholder",e)},expression:"activeEditor.placeholder"}})],2):t._e(),t._v(" "),n("el-form-item",[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.activeEditor.strict,callback:function(e){t.$set(t.activeEditor,"strict",e)},expression:"activeEditor.strict"}},[t._v("Enable Strict Mode (If Enable, Ninja Table will try to match exact value)")])],1)],2)},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_custom_filter_wrapper"},[t._m(0),t._v(" "),n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"ninja_style_wrapper",staticStyle:{margin:"25px 0"}},[t.hasAdvancedFilters?n("div",{staticClass:"section_block"},[n("el-button",{attrs:{size:"small",type:"primary"},on:{click:function(e){t.showAddFilter()}}},[t._v("Add New Filter")]),t._v(" "),t.table_filters.length?[n("table",{staticClass:"wp-list-table table-bordered widefat fixed striped",staticStyle:{margin:"20px 0"}},[t._m(1),t._v(" "),n("draggable",{attrs:{options:{handle:".handle"},list:t.table_filters,element:"tbody"},on:{change:function(e){t.saveFilters()}}},t._l(t.table_filters,function(e,a){return n("tr",[n("td",[n("span",{staticClass:"dashicons dashicons-editor-justify handle"}),t._v(" "+t._s(e.title))]),t._v(" "),n("td",[t._v(t._s(e.type))]),t._v(" "),n("td",t._l(e.columns,function(e){return n("code",{directives:[{name:"show",rawName:"v-show",value:t.columnKeyPairs[e],expression:"columnKeyPairs[columnKey]"}]},[t._v("\n "+t._s(t.columnKeyPairs[e])+"\n ")])})),t._v(" "),n("td",[n("el-button",{attrs:{size:"mini",type:"primary",icon:"el-icon-edit"},on:{click:function(n){t.edit(e)}}}),t._v(" "),n("el-button",{attrs:{size:"mini",type:"danger",icon:"el-icon-delete"},on:{click:function(e){t.deleteFilter(a)}}})],1)])}))],1),t._v(" "),n("h3",[t._v("Filter Appearance")]),t._v(" "),n("el-radio-group",{model:{value:t.filter_styling.filter_display_type,callback:function(e){t.$set(t.filter_styling,"filter_display_type",e)},expression:"filter_styling.filter_display_type"}},[n("el-radio",{attrs:{label:"inline"}},[t._v("Show filter inputs as inline")]),t._v(" "),n("el-radio",{attrs:{label:"columns"}},[t._v("Show filter inputs as Columns")])],1),t._v(" "),"columns"==t.filter_styling.filter_display_type?[n("h3",[t._v("Filter Columns")]),t._v(" "),n("el-radio-group",{attrs:{size:"mini"},model:{value:t.filter_styling.filter_columns,callback:function(e){t.$set(t.filter_styling,"filter_columns",e)},expression:"filter_styling.filter_columns"}},[n("el-radio-button",{attrs:{label:"columns_2"}},[t._v("Two Columns")]),t._v(" "),n("el-radio-button",{attrs:{label:"columns_3"}},[t._v("Three Columns")]),t._v(" "),n("el-radio-button",{attrs:{label:"columns_4"}},[t._v("Four Columns")])],1)]:t._e(),t._v(" "),n("h3",[t._v("Progressive Filter")]),t._v(" "),n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.filter_styling.progressive,callback:function(e){t.$set(t.filter_styling,"progressive",e)},expression:"filter_styling.progressive"}},[t._v("Enable Progressive filter for dynamic filter options")]),t._v(" "),n("div",{staticClass:"form_group",staticStyle:{"margin-top":"20px"}},[n("el-button",{attrs:{loading:t.saving,size:"small",type:"success"},on:{click:t.saveFilters}},[t._v("Update Settings")])],1)]:t._e()],2):t.hasPro?n("div",{staticClass:"section_block"},[t._m(2)]):n("div",{staticClass:"section_block text-center"},[t._m(3),t._v(" "),n("a",{staticClass:"el-button el-button--danger",attrs:{target:"_blank",href:"https://wpmanageninja.com/ninja-tables/ninja-tables-pro-pricing/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=custom_filters&utm_term=upgrade"}},[t._v("Purchase Now")])])]),t._v(" "),n("el-dialog",{attrs:{title:"Edit Custom Filter",visible:t.editorModal,width:"70%",top:"50px","append-to-body":!0},on:{"update:visible":function(e){t.editorModal=e}}},[t.activeEditor?n("ninja-filter-editor",{attrs:{columns:t.columns,columnKeyPairs:t.columnKeyPairs,activeEditor:t.activeEditor}}):t._e(),t._v(" "),n("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[n("el-button",{on:{click:function(e){t.editorModal=!1}}},[t._v("Cancel")]),t._v(" "),n("el-button",{attrs:{type:"primary"},on:{click:function(e){t.updateFilter(t.activeEditor)}}},[t._v("Update")])],1)],1),t._v(" "),n("el-dialog",{attrs:{title:"Add New Custom Filter",visible:t.addFilterModal,width:"70%",top:"50px","append-to-body":!0},on:{"update:visible":function(e){t.addFilterModal=e}}},[t.activeEditor?n("ninja-filter-editor",{attrs:{columns:t.columns,columnKeyPairs:t.columnKeyPairs,activeEditor:t.activeEditor}}):t._e(),t._v(" "),n("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[n("el-button",{on:{click:function(e){t.addFilterModal=!1}}},[t._v("Cancel")]),t._v(" "),n("el-button",{attrs:{type:"primary"},on:{click:function(e){t.addFilter(t.activeEditor)}}},[t._v("Add")])],1)],1)],1)},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_header"},[e("h2",{staticClass:"ninja_block"},[this._v("Custom Search Filters")]),this._v(" "),e("p",[this._v("\n Custom Search Filters is useful if you want to add select box / Radio Button to show a group of rows of\n your table.\n "),e("br"),this._v("\n To learn more about this "),e("a",{attrs:{target:"_blank",href:"https://wpmanageninja.com/docs/ninja-tables/custom-filters-on-ninja-tables/"}},[this._v("click\n here")])])])},function(){var t=this.$createElement,e=this._self._c||t;return e("thead",[e("tr",[e("th",[this._v("Name")]),this._v(" "),e("th",[this._v("Type")]),this._v(" "),e("th",[this._v("Target Columns")]),this._v(" "),e("th",[this._v("Action")])])])},function(){var t=this.$createElement,e=this._self._c||t;return e("h3",[this._v("Custom Filters is introduced in version 2.4.0. Please update "),e("b",[this._v("Ninja tables pro")]),this._v(" plugin to use\n this feature")])},function(){var t=this.$createElement,e=this._self._c||t;return e("h3",[this._v("Custom Filters is pro only features. Please purchase "),e("b",[this._v('"Ninja Tables Pro"')]),this._v(" to use this feature\n ")])}]}},function(t,e,n){var a=n(0)(n(551),n(552),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja_language_settings",props:["tableSettings"],methods:{storeSettings:function(){this.$emit("storeSettings")}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_Language_settings"},[n("div",{staticClass:"ninja_header"},[n("h2",[t._v("Language Settings")]),t._v(" "),n("div",{staticClass:"ninja_actions_action"},[n("el-button",{attrs:{size:"small",type:"primary"},on:{click:function(e){t.storeSettings()}}},[t._v(" "+t._s(t.$t("Update Configuration")))])],1)]),t._v(" "),n("div",{staticClass:"ninja_style_wrapper"},[n("div",{staticClass:"section_block"},[n("div",{staticClass:"language_block"},[n("div",{staticClass:"form_group"},[n("label",{attrs:{for:"no_result_text"}},[t._v("Empty Results Text:")]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.no_result_text,expression:"tableSettings.no_result_text"}],staticClass:"form_control",attrs:{id:"no_result_text",type:"text",autocomplete:"off"},domProps:{value:t.tableSettings.no_result_text},on:{input:function(e){e.target.composing||t.$set(t.tableSettings,"no_result_text",e.target.value)}}}),t._v(" "),n("small",[t._v("The text to display if the table contains no rows.")])]),t._v(" "),n("div",{staticClass:"form_group"},[n("label",{attrs:{for:"search_box_placeholder"}},[t._v("Search Box Placeholder Text")]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.search_placeholder,expression:"tableSettings.search_placeholder"}],staticClass:"form_control",attrs:{id:"search_box_placeholder",type:"text",autocomplete:"off"},domProps:{value:t.tableSettings.search_placeholder},on:{input:function(e){e.target.composing||t.$set(t.tableSettings,"search_placeholder",e.target.value)}}}),t._v(" "),n("small",[t._v("Search Box Placeholder")])]),t._v(" "),n("div",{staticClass:"form_group"},[n("label",{attrs:{for:"search_box_in"}},[t._v("Search Dropdown Heading")]),t._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:t.tableSettings.search_in_text,expression:"tableSettings.search_in_text"}],staticClass:"form_control",attrs:{id:"search_box_in",type:"text",autocomplete:"off"},domProps:{value:t.tableSettings.search_in_text},on:{input:function(e){e.target.composing||t.$set(t.tableSettings,"search_in_text",e.target.value)}}}),t._v(" "),n("small",[t._v("Search Dropdown Box Title")])])])])])])},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(554),n(555),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ninja-rendering_settings",props:["tableSettings","config"],data:function(){return{hasPro:!!window.ninja_table_admin.hasPro}},methods:{storeSettings:function(){this.$emit("storeSettings")},changeTableType:function(t){if(!this.hasPro&&"legacy_table"==t)return window.ninjaTableBus.$emit("show_pro_popup",1),void(this.tableSettings.render_type="ajax_table");this.tableSettings.render_type=t}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_rendering_settings"},[n("div",{staticClass:"ninja_header"},[n("h2",[t._v("Table Render Settings")]),t._v(" "),n("div",{staticClass:"ninja_actions_action"},[n("el-button",{attrs:{size:"small",type:"primary"},on:{click:function(e){t.storeSettings()}}},[t._v(" "+t._s(t.$t("Update Configuration")))])],1)]),t._v(" "),n("div",{staticClass:"ninja_style_wrapper"},[n("div",{staticClass:"ninja_section_block_body"},[n("div",{staticClass:"section_block_item"},[n("p",[t._v("Please the select the settings for your table render method. Using Legacy table you can use\n shortcodes in your cells and it will render the full table from php side. Table styles will be\n same for both tables. Most of the cases you will need Ajax Table which is recommended\n settings.")]),t._v(" "),n("div",{staticClass:"card_block"},[n("div",{staticClass:"section_card",class:"ajax_table"==t.tableSettings.render_type?"selected_type":"",on:{click:function(e){t.changeTableType("ajax_table")}}},[n("div",{directives:[{name:"show",rawName:"v-show",value:"ajax_table"==t.tableSettings.render_type,expression:"tableSettings.render_type == 'ajax_table'"}],staticClass:"selected_ribbon"},[t._v("Selected\n ")]),t._v(" "),n("h4",[t._v("Ajax Table")]),t._v(" "),n("p",[t._v("\n Use this settings if you have lots of data and don't need cell merge features. It will\n load your data over ajax. Please note that, shortcodes in table will not work here.\n ")])]),t._v(" "),n("div",{staticClass:"section_card",class:"legacy_table"==t.tableSettings.render_type?"selected_type":"",on:{click:function(e){t.changeTableType("legacy_table")}}},[n("div",{directives:[{name:"show",rawName:"v-show",value:"legacy_table"==t.tableSettings.render_type,expression:"tableSettings.render_type == 'legacy_table'"}],staticClass:"selected_ribbon"},[t._v("Selected\n ")]),t._v(" "),n("h4",[t._v("Advanced Table (Legacy)")]),t._v(" "),t._m(0)])])]),t._v(" "),t.config.table.hasCacheFeature?n("div",{staticClass:"section_block_item"},[n("h3",[t._v("\n Disable Caching\n "),n("el-tooltip",{attrs:{placement:"right",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[t._v("\n To optimize and load faster, we cache the table "),n("br"),t._v("\n contents. It's not recommended to disable "),n("br"),t._v("\n caching unless you know what you are doing\n ")]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("div",{staticClass:"caching-block"},[n("div",{staticClass:"form-group"},[n("span",{staticStyle:{"margin-right":"5px"}},[t._v("Disable Caching")]),t._v(" "),n("el-switch",{attrs:{"active-value":"yes","inactive-value":"no"},model:{value:t.tableSettings.shouldNotCache,callback:function(e){t.$set(t.tableSettings,"shouldNotCache",e)},expression:"tableSettings.shouldNotCache"}})],1)])]):t._e(),t._v(" "),t.config.table.hasExternalCachingInterval?n("div",{staticClass:"section_block_item"},[n("h3",[t._v("\n Caching Interval\n "),n("el-tooltip",{attrs:{placement:"right",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[t._v("\n To optimize and load faster, You can cache the table data for certain minutes "),n("br"),t._v("\n so the data will load from cached data. Please Provide the value in minutes.\n ")]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("div",{staticClass:"caching-block"},[n("div",{staticClass:"form-group",staticStyle:{"max-width":"400px"}},[n("span",{staticStyle:{"margin-right":"5px"}},[t._v("Caching Interval (In Minutes)")]),t._v(" "),n("el-input",{attrs:{type:"number",size:"small"},model:{value:t.tableSettings.caching_interval,callback:function(e){t.$set(t.tableSettings,"caching_interval",e)},expression:"tableSettings.caching_interval"}}),t._v(" "),n("p",[t._v("Keep Blank or 0 to disable caching for table data")]),t._v(" "),t.tableSettings.caching_interval>60?n("p",[t._v("Current Caching Interval: "),n("b",[t._v(t._s((t.tableSettings.caching_interval/60).toFixed(2))+" hours")])]):t._e()],1)])]):t._e(),t._v(" "),"legacy_table"==t.config.settings.render_type&&"yes"!=t.tableSettings.shouldNotCache?n("div",{staticClass:"section_block_item"},[n("h3",[t._v("\n Enable Full HTML Cache\n "),n("el-tooltip",{attrs:{placement:"right",effect:"light"}},[n("div",{attrs:{slot:"content"},slot:"content"},[t._v("\n If you enable this then ninja tables will cache the full html of the table and"),n("br"),t._v("\n render that without interact with database. You can set the time how many minutes it will cache each iteration.\n ")]),t._v(" "),n("i",{staticClass:"el-icon-info el-text-info"})])],1),t._v(" "),n("div",{staticClass:"caching-block"},[n("div",{staticClass:"form-group"},[n("span",{staticStyle:{"margin-right":"5px"}},[t._v("Enable HTML Caching")]),t._v(" "),n("el-switch",{attrs:{"active-value":"yes","inactive-value":"no"},model:{value:t.tableSettings.enable_html_cache,callback:function(e){t.$set(t.tableSettings,"enable_html_cache",e)},expression:"tableSettings.enable_html_cache"}})],1),t._v(" "),"yes"==t.tableSettings.enable_html_cache?n("div",{staticClass:"form-group"},[n("div",{staticClass:"form-group",staticStyle:{"max-width":"400px"}},[n("span",{staticStyle:{"margin-right":"5px"}},[t._v("Caching Interval (In Minutes)")]),t._v(" "),n("el-input",{attrs:{type:"number",size:"small"},model:{value:t.tableSettings.html_caching_minutes,callback:function(e){t.$set(t.tableSettings,"html_caching_minutes",e)},expression:"tableSettings.html_caching_minutes"}}),t._v(" "),t.tableSettings.html_caching_minutes>60?n("p",[t._v("Current Caching Interval: "),n("b",[t._v(t._s((t.tableSettings.html_caching_minutes/60).toFixed(2))+" hours")])]):t._e()],1)]):t._e()])]):t._e()])])])},staticRenderFns:[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("p",[t._v("\n Recommended settings for advanced features\n ")]),t._v(" "),n("ul",{staticClass:"ninja_render_features"},[n("li",[n("span",{staticClass:"dashicons dashicons-yes"}),t._v(" Colspan ( Cell-Merge )")]),t._v(" "),n("li",[n("span",{staticClass:"dashicons dashicons-yes"}),t._v(" Server Side Dom-Generation")]),t._v(" "),n("li",[n("span",{staticClass:"dashicons dashicons-yes"}),t._v(" Render shortcode into table cells\n ")]),t._v(" "),n("li",[n("span",{staticClass:"dashicons dashicons-yes"}),t._v(" Better for SEO")])])])}]}},function(t,e,n){var a=n(0)(n(557),n(558),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(27),o=n.n(a);e.default={name:"button_settings",components:{wpEditor:o.a},props:["table_id"],data:function(){return{table_buttons:{csv:{status:"no",label:"CSV",all_rows:"no"},print:{status:"no",label:"Print",all_rows:"no"}},fetching:!1,saving:!1,button_positions:{after_search_box:"After Search Box",before_table:"Before of the table",after_table:"Bottom of the table"},buttonAlignments:{ninja_buttons_left:"Left",ninja_buttons_center:"Center",ninja_buttons_right:"Right"},hasPro:!!window.ninja_table_admin.hasPro}},methods:{getSettings:function(){var t=this;this.fetching=!0,this.$get({action:"ninja_tables_ajax_actions",target_action:"get_button_settings",table_id:this.table_id}).then(function(e){t.table_buttons=e.data.button_settings}).fail(function(t){}).always(function(){t.fetching=!1})},saveSettings:function(){var t=this;this.saving=!0,this.$post({action:"ninja_tables_ajax_actions",target_action:"update_button_settings",table_id:this.table_id,button_settings:this.table_buttons}).then(function(e){t.$message({showClose:!0,message:e.data.message,type:"success"})}).fail(function(t){}).always(function(){t.saving=!1})}},mounted:function(){this.getSettings()}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"ninja_Language_settings"},[t._m(0),t._v(" "),t.hasPro?n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.fetching,expression:"fetching"}],staticClass:"ninja_style_wrapper"},[n("div",{staticClass:"section_block",staticStyle:{"max-width":"800px"}},[n("h3",[t._v("CSV Export Button Settings")]),t._v(" "),n("div",{staticClass:"form_group"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.table_buttons.csv.status,callback:function(e){t.$set(t.table_buttons.csv,"status",e)},expression:"table_buttons.csv.status"}},[t._v("\n Enable CSV Export Button\n ")])],1),t._v(" "),"yes"==t.table_buttons.csv.status?[n("div",{staticClass:"form_group",staticStyle:{"max-width":"500px"}},[n("label",[t._v("Button Label")]),t._v(" "),n("el-input",{attrs:{size:"mini",placeholder:"Button Text"},model:{value:t.table_buttons.csv.label,callback:function(e){t.$set(t.table_buttons.csv,"label",e)},expression:"table_buttons.csv.label"}})],1),t._v(" "),n("div",{staticClass:"form_group"},[n("label",[t._v("Button Background Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.table_buttons.csv.bg_color,callback:function(e){t.$set(t.table_buttons.csv,"bg_color",e)},expression:"table_buttons.csv.bg_color"}})],1),t._v(" "),n("div",{staticClass:"form_group"},[n("label",[t._v("Button Text Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.table_buttons.csv.text_color,callback:function(e){t.$set(t.table_buttons.csv,"text_color",e)},expression:"table_buttons.csv.text_color"}})],1)]:t._e(),t._v(" "),n("hr"),t._v(" "),n("h3",[t._v("Print Button Settings")]),t._v(" "),n("div",{staticClass:"form_group"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.table_buttons.print.status,callback:function(e){t.$set(t.table_buttons.print,"status",e)},expression:"table_buttons.print.status"}},[t._v("Enable Print\n Button\n ")])],1),t._v(" "),"yes"==t.table_buttons.print.status?[n("div",{staticClass:"form_group",staticStyle:{"max-width":"500px"}},[n("label",[t._v("Button Label")]),t._v(" "),n("el-input",{attrs:{size:"mini",placeholder:"Button Text"},model:{value:t.table_buttons.print.label,callback:function(e){t.$set(t.table_buttons.print,"label",e)},expression:"table_buttons.print.label"}})],1),t._v(" "),n("div",{staticClass:"form_group form_row_full"},[n("div",{staticClass:"form_row_half"},[n("label",[t._v("Button Background Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.table_buttons.print.bg_color,callback:function(e){t.$set(t.table_buttons.print,"bg_color",e)},expression:"table_buttons.print.bg_color"}})],1),t._v(" "),n("div",{staticClass:"form_row_half"},[n("div",{staticClass:"form_group"},[n("label",[t._v("Button Text Color")]),t._v(" "),n("el-color-picker",{attrs:{"show-alpha":""},model:{value:t.table_buttons.print.text_color,callback:function(e){t.$set(t.table_buttons.print,"text_color",e)},expression:"table_buttons.print.text_color"}})],1)])]),t._v(" "),n("el-collapse",{attrs:{accordion:""}},[n("el-collapse-item",{attrs:{title:"Print Screen Header",name:"header"}},[n("wp-editor",{model:{value:t.table_buttons.print.header_html,callback:function(e){t.$set(t.table_buttons.print,"header_html",e)},expression:"table_buttons.print.header_html"}})],1),t._v(" "),n("el-collapse-item",{attrs:{title:"Print Screen Footer",name:"footer"}},[n("wp-editor",{model:{value:t.table_buttons.print.footer_html,callback:function(e){t.$set(t.table_buttons.print,"footer_html",e)},expression:"table_buttons.print.footer_html"}})],1)],1)]:t._e(),t._v(" "),n("hr"),t._v(" "),n("h3",[t._v("Buttons Position")]),t._v(" "),n("div",{staticClass:"form_group"},[n("el-radio-group",{attrs:{size:"small"},model:{value:t.table_buttons.button_position,callback:function(e){t.$set(t.table_buttons,"button_position",e)},expression:"table_buttons.button_position"}},t._l(t.button_positions,function(e,a){return n("el-radio-button",{key:a,attrs:{label:a}},[t._v(t._s(e))])}))],1),t._v(" "),n("div",{staticClass:"form_group"},[n("label",[t._v("Buttons Alignment")]),t._v(" "),n("el-radio-group",{attrs:{size:"small"},model:{value:t.table_buttons.button_alignment,callback:function(e){t.$set(t.table_buttons,"button_alignment",e)},expression:"table_buttons.button_alignment"}},t._l(t.buttonAlignments,function(e,a){return n("el-radio-button",{key:a,attrs:{label:a}},[t._v(t._s(e))])}))],1),t._v(" "),t.hasPro?n("div",{staticClass:"form_group"},[n("el-button",{attrs:{loading:t.saving,disabled:t.saving,size:"small",type:"success"},on:{click:function(e){t.saveSettings()}}},[t._v("Update Settings")])],1):t._e()],2)]):n("div",{staticClass:"section_block text-center",staticStyle:{width:"100%",display:"block",padding:"20px"}},[t._m(1),t._v(" "),n("a",{staticClass:"el-button el-button--danger",attrs:{target:"_blank",href:"https://wpmanageninja.com/ninja-tables/ninja-tables-pro-pricing/?utm_source=ninja-tables&utm_medium=wp&utm_campaign=custom_filters&utm_term=upgrade"}},[t._v("Purchase Now")])])])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_header"},[e("h2",[this._v("CSV Export / Print Button Settings for Frontend")]),this._v(" "),e("p",[this._v("You can enable/disable print and csv export settings here")])])},function(){var t=this.$createElement,e=this._self._c||t;return e("h3",[this._v("Export CSV and Table Print is pro only features. Please purchase "),e("b",[this._v('"Ninja Tables Pro"')]),this._v(" to use this feature\n ")])}]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"table-column-settings"},[n("el-container",[n("el-aside",{attrs:{width:"200px"}},[n("el-menu",{attrs:{"background-color":"#545c64","default-active":t.active_menu,"text-color":"#fff","active-text-color":"#ffd04b"}},[n("el-menu-item",{attrs:{index:"columns"},on:{click:function(e){t.active_menu="columns"}}},[n("i",{staticClass:"dashicons dashicons-editor-table"}),t._v(" "),n("span",[t._v("Columns")])]),t._v(" "),n("el-menu-item",{attrs:{index:"rendering_settings"},on:{click:function(e){t.active_menu="rendering_settings"}}},[n("i",{staticClass:"dashicons dashicons-album"}),t._v(" "),n("span",[t._v("Rendering Settings")])]),t._v(" "),n("el-menu-item",{attrs:{index:"custom_filters"},on:{click:function(e){t.active_menu="custom_filters"}}},[n("i",{staticClass:"dashicons dashicons-filter"}),t._v(" "),n("span",[t._v("Custom Filters")])]),t._v(" "),n("el-menu-item",{attrs:{index:"button_settings"},on:{click:function(e){t.active_menu="button_settings"}}},[n("i",{staticClass:"dashicons dashicons-images-alt"}),t._v(" "),n("span",[t._v("Buttons (CSV/Print)")])]),t._v(" "),n("el-menu-item",{attrs:{index:"language_settings"},on:{click:function(e){t.active_menu="language_settings"}}},[n("i",{staticClass:"dashicons dashicons-translation"}),t._v(" "),n("span",[t._v("Language Settings")])])],1)],1),t._v(" "),n("el-main",["columns"==t.active_menu?[n("div",{staticClass:"ninja_header"},[n("h2",[t._v("Table Column Settings")])]),t._v(" "),n("div",{staticClass:"ninja_content"},[n("div",{staticClass:"section_widget"},[n("div",{staticClass:"heading"},[t.addColumnStatus||!t.columns.length?n("h3",{staticClass:"title"},[t._v(t._s(t.$t("Add Table Column")))]):n("h3",{staticClass:"title"},[t._v(t._s(t.$t("Available Columns")))]),t._v(" "),t.addable?n("div",{directives:[{name:"show",rawName:"v-show",value:!t.addColumnStatus,expression:"!addColumnStatus"}],staticClass:"inline_action"},[n("el-button",{directives:[{name:"show",rawName:"v-show",value:t.columns.length,expression:"columns.length"}],attrs:{size:"small",type:"primary"},on:{click:function(e){t.addColumnStatus=!t.addColumnStatus}}},[t._v("\n "+t._s(t.$t("Add Column"))+"\n ")])],1):t._e()]),t._v(" "),n("div",{staticClass:"widget_body"},[t.addColumnStatus||!t.columns.length?n("div",{staticClass:"column"},[n("div",{staticClass:"add_column_wrapper"},[n("columns-editor",{attrs:{columns:t.columns,dataSourceType:t.config.table.dataSourceType,model:t.new_column,settings:t.config.settings,"has-pro":t.has_pro},on:{add:function(e){t.addNewColumn()},cancel:function(e){t.addColumnStatus=!t.addColumnStatus}}})],1)]):t._e(),t._v(" "),n("draggable",{attrs:{options:{handle:".handle",animation:150}},on:{end:t.storeSettings},model:{value:t.columns,callback:function(e){t.columns=e},expression:"columns"}},t._l(t.columns,function(e,a){return n("div",{key:e.key,staticClass:"column drawer"},[n("div",{staticClass:"header"},[n("span",{staticClass:"dashicons dashicons-editor-justify handle"}),t._v(" "),n("span",{on:{click:function(e){t.openDrawer(a)}}},[t._v(t._s(e.name||e.key))]),t._v(" "),n("span",{staticClass:"dashicons dashicons-edit edit_icon",on:{click:function(e){t.openDrawer(a)}}})]),t._v(" "),n("div",{staticClass:"drawer_body",class:"drawer_body_"+a},[n("columns-editor",{attrs:{columns:t.columns,dataSourceType:t.config.table.dataSourceType,model:e,"has-pro":t.has_pro,settings:t.config.settings,updating:!0},on:{delete:function(e){t.deleteColumn(a)},store:function(e){t.storeSettings()}}})],1)])}))],1)]),t._v(" "),n("div",{staticClass:"proms"},[n("div",{staticClass:"help_section"},[n("p",[t._v("Need help to configure the columns and responsive breakdowns, Please check tutorial with\n video "),n("a",{attrs:{href:"https://wpmanageninja.com/r/docs/ninja-tables/configure-responsive-breakdowns-for-table/?utm_source=ninja-tables",target:"_blank"}},[t._v("here")])])]),t._v(" "),t.is_fluent_installed?t._e():n("div",{staticClass:"help_section"},[n("p",[t._v("Have you checked out FluentForm yet? We have developed a powerful Drag & Drop WordPress Form\n Builder plugin with some amazing Premium features "),n("a",{attrs:{href:t.fluent_url}},[t._v("Download from\n WordPress.org")])])])])])]:"rendering_settings"==t.active_menu?[n("ninja-rendering-settings",{attrs:{tableSettings:t.tableSettings,config:t.config},on:{storeSettings:t.storeSettings}})]:"language_settings"==t.active_menu?[n("ninja-language-settings",{attrs:{tableSettings:t.tableSettings},on:{storeSettings:t.storeSettings}})]:"custom_filters"==t.active_menu?[n("ninja-custom-filters",{attrs:{columns:t.columns,table_id:t.tableId}})]:(t.active_menu="button_settings")?[n("ninja-button-settings",{attrs:{table_id:t.tableId}})]:t._e()],2)],1)],1)])},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(561),n(570),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(562),o=n.n(a),i=n(565),s=n.n(i);e.default={name:"ExportImport",components:{export:o.a,import:s.a},props:["config"],data:function(){return{active_menu:"import",tableId:this.$route.params.table_id,activeNames:["1"]}}}},function(t,e,n){var a=n(0)(n(563),n(564),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"ExportTable",props:["config"],data:function(){return{tableId:this.$route.params.table_id,exportOptions:{csv:"CSV",json:"JSON"},selected:"csv"}},methods:{downloadLink:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"csv",e={action:"ninja_tables_ajax_actions",target_action:"export-data",table_id:this.tableId,format:t};return ajaxurl+"?"+jQuery.param(e)},doExport:function(){var t=this.downloadLink(this.selected);location.href=t}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"ninja_header"},[n("h2",[t._v(t._s(t.$t("Export Data")))])]),t._v(" "),t.config.table.isExportable?n("div",{staticClass:"ninja_content"},[t._m(0),t._v(" "),n("div",{staticClass:"ninja_export_block"},[t._v("\n "+t._s(t.$t("Format:"))+"\n "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.selected,expression:"selected"}],on:{change:function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.selected=e.target.multiple?n:n[0]}}},t._l(t.exportOptions,function(e,a){return n("option",{domProps:{value:a}},[t._v("\n "+t._s(e)+"\n ")])})),t._v(" "),n("el-button",{attrs:{type:"primary",icon:"el-icon-download",size:"small"},on:{click:function(e){e.preventDefault(),t.doExport()}}},[t._v("\n "+t._s(t.$t("Export"))+"\n ")])],1)]):n("div",{staticClass:"ninja_content"},[n("div",{staticClass:"ninja_suggest"},[n("p",[t._v("Sorry! You can not export the data as the table data is configured as external source ("+t._s(t.config.table.dataSourceType)+")")])])])])},staticRenderFns:[function(){var t=this.$createElement,e=this._self._c||t;return e("div",{staticClass:"ninja_suggest"},[e("p",[this._v("You can download the table data as CSV or JSON format, If you download as json then you can import the table to any Ninja Table Installation")])])}]}},function(t,e,n){var a=n(0)(n(568),n(569),!1,function(t){n(566)},"data-v-643d3a11",null);t.exports=a.exports},function(t,e,n){var a=n(567);"string"==typeof a&&(a=[[t.i,a,""]]),a.locals&&(t.exports=a.locals);n(2)("eb94fdd6",a,!0,{})},function(t,e,n){(t.exports=n(1)(!1)).push([t.i,"#fileUpload[data-v-643d3a11]{max-width:200px}.justify-items[data-v-643d3a11]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ninja_content .ninja_suggest[data-v-643d3a11]{background:#f1f1f1}.ninja_content[data-v-643d3a11]{margin:1em 0}",""])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(14),o=n.n(a);e.default={name:"Import",props:["config","tableId"],data:function(){return{btnLoading:!1,replace:!1,tutorial:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables",do_unicode:"no"}},computed:{columns:function(){return this.config&&this.config.columns?this.config.columns:[]},sampleData:function(){var t={};return o()(this.columns,function(e){t[e.key]="column value"}),Array(3).fill(t)}},methods:{clear:function(){jQuery("#fileUpload").val("")},upload:function(){var t=this;t.btnLoading=!0;var e=jQuery("#fileUpload")[0].files[0];if(e){var n=new FormData;n.append("file",e),n.append("action","ninja_tables_ajax_actions"),n.append("target_action","upload-data"),n.append("table_id",this.tableId),n.append("replace",this.replace),n.append("do_unicode",this.do_unicode),jQuery.ajax({url:ajaxurl,data:n,type:"POST",contentType:!1,processData:!1,success:function(e){t.$emit("csvUploaded"),t.clear(),t.$message.success(e.message)},error:function(e){t.$message.error(e.responseJSON.message)}}).always(function(){t.btnLoading=!1})}else t.btnLoading=!1},download:function(){var t=[],e=this.config.columns.map(function(t){return t.key});t.push(e),[1,2].forEach(function(n,a){var o=[];e.forEach(function(t,e){o.push("content_"+a+"_"+e)}),t.push(o)});var n="data:text/csv;charset=utf-8,";t.forEach(function(e,a){var o=e.join(",");n+=a<t.length?o+"\n":o});var a=encodeURI(n),o=document.createElement("a");o.setAttribute("href",a),o.setAttribute("download","sample.csv"),document.body.appendChild(o),o.click()}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"ninja_header"},[n("h2",[t._v(t._s(t.$t("Import Table Data")))])]),t._v(" "),t.config.table.isImportable?n("div",{staticClass:"ninja_content"},[t.columns.length?n("div",[n("form",{attrs:{action:"",id:"fileUploadForm"}},[n("div",{staticClass:"form-group"},[n("input",{attrs:{type:"file",id:"fileUpload"},on:{click:t.clear}}),t._v(" "),n("el-checkbox",{model:{value:t.replace,callback:function(e){t.replace=e},expression:"replace"}},[t._v(t._s(t.$t("Replace Existing Data")))])],1),t._v(" "),n("div",{staticClass:"form-group"},[n("el-checkbox",{attrs:{"true-label":"yes","false-label":"no"},model:{value:t.do_unicode,callback:function(e){t.do_unicode=e},expression:"do_unicode"}},[t._v("Convert to UTF-8 format ( Check this if your csv is non-unicode format )")])],1),t._v(" "),n("div",{staticClass:"form-group"},[n("el-button",{attrs:{type:"primary",icon:"el-icon-upload2",size:"small",loading:t.btnLoading},on:{click:function(e){return e.preventDefault(),t.upload(e)}}},[t._v("\n "+t._s(t.$t("Import from CSV"))+"\n ")])],1)]),t._v(" "),n("div",{staticClass:"ninja_suggest"},[n("p",[t._v("\n Please note that, your CSV data structure need to follow the sample CSV.\n You may want to check the "),n("a",{attrs:{href:t.tutorial}},[t._v("video tutorial here.")])]),t._v(" "),n("br"),t._v(" "),n("p",[t._v("\n Also make sure the content is in UTF-8 format, for the best result.\n ")])]),t._v(" "),n("div",{staticClass:"justify-items"},[n("h3",[t._v("\n "+t._s(t.$t("CSV Header Structure"))+"\n ")]),t._v(" "),n("el-button",{staticStyle:{float:"right"},attrs:{type:"primary",icon:"el-icon-download",size:"small"},on:{click:t.download}},[t._v("\n "+t._s(t.$t("Download Sample CSV"))+"\n ")])],1),t._v(" "),n("el-table",{staticStyle:{width:"100%"},attrs:{border:"",data:t.sampleData,stripe:""}},t._l(t.columns,function(t){return n("el-table-column",{key:t.key,attrs:{prop:t.key,label:t.key}})})),t._v(" "),n("h3",[t._v("or as bellow")]),t._v(" "),n("el-table",{staticStyle:{width:"100%"},attrs:{border:"",data:t.sampleData,stripe:""}},t._l(t.columns,function(t){return n("el-table-column",{key:t.key,attrs:{prop:t.key,label:t.name}})}))],1):n("div",{staticClass:"error"},[n("p",[t._v(t._s(t.$t("Please set table configuration first.")))])])]):n("div",{staticClass:"ninja_content"},[n("div",{staticClass:"ninja_suggest"},[n("p",[t._v("Sorry! You can not import any data as the table data is configured as external source ("+t._s(t.config.table.dataSourceType)+")")])])])])},staticRenderFns:[]}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{"margin-top":"15px"}},[n("el-container",[n("el-aside",{attrs:{width:"200px"}},[n("el-menu",{attrs:{"background-color":"#545c64","default-active":t.active_menu,"text-color":"#fff","active-text-color":"#ffd04b"}},[n("el-menu-item",{attrs:{index:"import"},on:{click:function(e){t.active_menu="import"}}},[n("i",{staticClass:"el-icon-upload"}),t._v(" "),n("span",[t._v(t._s(t.$t("Import Data")))])]),t._v(" "),n("el-menu-item",{attrs:{index:"export"},on:{click:function(e){t.active_menu="export"}}},[n("i",{staticClass:"el-icon-download"}),t._v(" "),n("span",[t._v(t._s(t.$t("Export Data")))])])],1)],1),t._v(" "),n("el-main",[n(t.active_menu,{tag:"component",attrs:{config:t.config,tableId:t.tableId}})],1)],1)],1)},staticRenderFns:[]}},function(t,e,n){var a=n(0)(n(572),n(579),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var a=n(573),o=n.n(a),i=n(576),s=n.n(i);e.default={name:"help",components:{fluentpromoad:o.a,ninja_premium:s.a},data:function(){return{docs:[{title:"Ninja Tables Introduction",url:"https://wpmanageninja.com/r/docs/ninja-tables/getting-started/?utm_source=ninja-tables"},{title:"Ninja Tables Demo",url:"https://wpmanageninja.com/docs/ninja-tables/configure-tables/?utm_source=ninja-tables"},{title:"Setting up a Table",url:"https://wpmanageninja.com/r/docs/ninja-tables/setting-up-a-table/?utm_source=ninja-tables"},{title:"Configure Responsive Breakdowns for Table",url:"https://wpmanageninja.com/r/docs/ninja-tables/configure-responsive-breakdowns-for-table/?utm_source=ninja-tables"},{title:"Import Table Data from CSV",url:"https://wpmanageninja.com/r/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables"},{title:"Export Data from a Table",url:"https://wpmanageninja.com/r/docs/ninja-tables/export-data/?utm_source=ninja-tables"},{title:"Import Table from CSV",url:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables"},{title:"Import Table from JSON file",url:"https://wpmanageninja.com/docs/ninja-tables/import-table-data-from-csv/?utm_source=ninja-tables"},{title:"Import Table from Table Press Plugin",url:"https://wpmanageninja.com/docs/ninja-tables/import-table-from-table-press-plugin/?utm_source=ninja-tables"}],img_url:window.ninja_table_admin.img_url}},methods:{imageUrl:function(t){return this.img_url+t}},mounted:function(){}}},function(t,e,n){var a=n(0)(n(574),n(575),!1,null,null,null);t.exports=a.exports},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default={name:"fluentpromoad_2",props:["dismisable"],data:function(){return{img_url_path:window.ninja_table_admin.img_url,fluent_url:window.ninja_table_admin.fluentform_url,fluent_wp_url:window.ninja_table_admin.fluent_wp_url,is_installed:window.ninja_table_admin.isInstalled,already_dismissed:window.ninja_table_admin.dismissed}},computed:{will_it_show:function(){return!this.is_installed&&(!this.dismisable||!this.already_dismissed)}},methods:{image_url:function(t){return this.img_url_path+t},dismiss:function(){var t=this;jQuery.post(ajaxurl,{action:"ninja_tables_ajax_actions",target_action:"dismiss_fluent_suggest"}).then(function(t){}).fail(function(t){}).always(function(){t.is_installed=!0})}}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.will_it_show?n("div",{staticClass:"ninja_suggest_plugin"},[t.dismisable?n("div",{staticClass:"ninja_dismiss",on:{click:function(e){t.dismiss()}}},[t._v("X")]):t._e(),t._v(" "),n("div",{staticClass:"ninja_form_banner"},[n("img",{at