WP VR – 360 Panorama and virtual tour creator for WordPress - Version 8.2.3

Version Description

(01-11-2022) = * New: Multiple Tour Support Inside Elementor Tabs. * Fix: Summernote Image Upload Issue. * Fix: Hotspot IDs hovering over Scene-type hotspots on Preview mode. * Fix: Floor Plan option appearing for Video Tours & Street View Tours. * Fix: Options are appearing over the Preview Image on the front end. * Tweak: Improvements on WPVR Gutenberg Block & Oxygen Module.

Download this release

Release Info

Developer rextheme
Plugin Icon 128x128 WP VR – 360 Panorama and virtual tour creator for WordPress
Version 8.2.3
Comparing to
See all releases

Code changes from version 8.2.1 to 8.2.3

README.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://rextheme.com/wp-vr-360-panorama-and-virtual-tour-creator-fo
5
  Requires at least: 5.0
6
  Tested up to: 6.0
7
  Requires PHP: 7.0.0
8
- Stable tag: 8.2.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -309,6 +309,34 @@ Admins can remove the access from Authors and Editors at any time.
309
 
310
  == Changelog ==
311
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
312
  = 8.2.0 (12-09-2022) =
313
  * New: Floor Plan for virtual tours.
314
  * Fix: Disable option for On-hover content not working.
5
  Requires at least: 5.0
6
  Tested up to: 6.0
7
  Requires PHP: 7.0.0
8
+ Stable tag: 8.2.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
309
 
310
  == Changelog ==
311
 
312
+ = 8.2.3 (01-11-2022) =
313
+ * New: Multiple Tour Support Inside Elementor Tabs.
314
+ * Fix: Summernote Image Upload Issue.
315
+ * Fix: Hotspot IDs hovering over Scene-type hotspots on Preview mode.
316
+ * Fix: Floor Plan option appearing for Video Tours & Street View Tours.
317
+ * Fix: Options are appearing over the Preview Image on the front end.
318
+ * Tweak: Improvements on WPVR Gutenberg Block & Oxygen Module.
319
+
320
+ = 8.2.2 (17-10-2022) =
321
+ * New: WPVR Gutenberg Block Support re-designed & refined with new options (Height, Width, Radius, Mobile Height, Border Width, Style & Color).
322
+ * New: WPVR Divi Module Support re-designed & refined with new options (Height, Width, Radius, & Mobile Height).
323
+ * New: WPVR Visual Composer Module re-designed & refined with new options (Height, Width, & Radius).
324
+ * New: WPVR Oxygen Element re-designed & refined with new options (Height, Width, Radius, & Mobile Height).
325
+ * New: Two Options for Scene Gallery Icon (Small & Large).
326
+ * Fix: Timeout error for image content in hotspots.
327
+ * Fix: Issue while importing tours.
328
+ * Fix: Uncaught TypeError: Cannot access offset of type string on string.
329
+ * Fix: Company Logo Changes position - tour published with Divi.
330
+ * Fix: Scene Gallery Moves to Left - published with Divi.
331
+ * Fix: Floor Plan & Explainer Video buttons overlapping - published with Divi.
332
+ * Fix: Floor Plan pointer & Close option lost style - published with Divi.
333
+ * Fix: Removed 'RexTheme' text on right-click in pro.
334
+ * Tweak: Warning Message improved for Free version missing.
335
+ * Tweak: Content & Tooltips improved on the Floor Plan section.
336
+
337
+ = 8.2.1 (12-09-2022) =
338
+ * Fix: Floor Plan looping issue.
339
+
340
  = 8.2.0 (12-09-2022) =
341
  * New: Floor Plan for virtual tours.
342
  * Fix: Disable option for On-hover content not working.
admin/class-wpvr-admin.php CHANGED
@@ -185,7 +185,8 @@ class Wpvr_Admin {
185
 
186
  $wpvr_posts = get_posts( $args );
187
  foreach ($wpvr_posts as $wpvr_post) {
188
- $wpvr_list[] = array('value'=>$wpvr_post->ID,'label'=>$wpvr_post->post_title);
 
189
  }
190
 
191
  $asset_url = apply_filters( 'change_asset_url', plugin_dir_url( __FILE__ ) );
@@ -307,5 +308,80 @@ class Wpvr_Admin {
307
  }
308
  }
309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
 
311
  }
185
 
186
  $wpvr_posts = get_posts( $args );
187
  foreach ($wpvr_posts as $wpvr_post) {
188
+ $title = $wpvr_post->ID . ' : ' . $wpvr_post->post_title;
189
+ $wpvr_list[] = array( 'value'=>$wpvr_post->ID,'label'=> $title);
190
  }
191
 
192
  $asset_url = apply_filters( 'change_asset_url', plugin_dir_url( __FILE__ ) );
308
  }
309
  }
310
 
311
+ /**
312
+ * Floor plan image Display
313
+ * Display Pro feature demo in free user
314
+ * @return void
315
+ */
316
+
317
+ public function floor_plan_image_show_for_free_user()
318
+ {
319
+ if(!is_plugin_active('wpvr-pro/wpvr-pro.php')){
320
+
321
+ ?>
322
+ <div class="rex-pano-tab floor-plan" id="floorPlan">
323
+
324
+ <img src="<?= WPVR_PLUGIN_DIR_URL . 'images/floor-plan-demo.png'?>" alt="icon" />
325
+ </div>
326
+ <?php
327
+ }
328
+
329
+ }
330
+ /**
331
+ * Background Tour image Display
332
+ * Display Pro feature demo in free user
333
+ * @return void
334
+ */
335
+ public function background_tour_image_show_for_free_user()
336
+ {
337
+ if(!is_plugin_active('wpvr-pro/wpvr-pro.php')){
338
+
339
+ ?>
340
+ <div class="rex-pano-tab background-tour" id="backgroundTour">
341
+
342
+ <!-- <img src="--><?//= WPVR_PLUGIN_DIR_URL . 'images/floor-plan-demo.png'?><!--" alt="icon" />-->
343
+ </div>
344
+ <?php
345
+ }
346
+
347
+ }
348
+ /**
349
+ * Street View image Display
350
+ * Display Pro feature demo in free user
351
+ * @return void
352
+ */
353
+ public function street_view_image_show_for_free_user()
354
+ {
355
+ if(!is_plugin_active('wpvr-pro/wpvr-pro.php')){
356
+
357
+ ?>
358
+ <div class="rex-pano-tab streetview" id="streetview">
359
+ <!-- <img src="--><?//= WPVR_PLUGIN_DIR_URL . 'images/floor-plan-demo.png'?><!--" alt="icon" />-->
360
+ </div>
361
+ <?php
362
+ }
363
+
364
+ }
365
+
366
+ public function scene_pro_image_show_for_free_user($pano_scene)
367
+ {
368
+ if(!is_plugin_active('wpvr-pro/wpvr-pro.php')){
369
+
370
+ ?>
371
+ <img src="<?= WPVR_PLUGIN_DIR_URL . 'images/scene-pro-feature.png'?>" alt="icon" />
372
+ <?php
373
+ }
374
+ }
375
+
376
+ public function empty_scene_pro_image_show_for_free_user()
377
+ {
378
+ if(!is_plugin_active('wpvr-pro/wpvr-pro.php')){
379
+
380
+ ?>
381
+ <img src="<?= WPVR_PLUGIN_DIR_URL . 'images/scene-pro-feature.png'?>" alt="icon" />
382
+ <?php
383
+ }
384
+ }
385
+
386
 
387
  }
admin/classes/class-wpvr-meta-field.php CHANGED
@@ -331,6 +331,36 @@ class WPVR_Meta_Field {
331
 
332
  <?php }
333
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  //== Render Export Tab for Tour edit ==//
335
  if(is_plugin_active( 'wpvr-pro/wpvr-pro.php' )) { if (isset($postdata['panoid'])) { ?>
336
  <li class="export" data-screen="export">
331
 
332
  <?php }
333
 
334
+ // if(!is_plugin_active('wpvr-pro/wpvr-pro.php')){
335
+ // ?>
336
+ <!---->
337
+ <!-- <li class="floor-plan floor-plan-pro-tag" data-screen="floorPlan">-->
338
+ <!-- <div class="navigator-pro-tag">pro</div>-->
339
+ <!-- <span data-href="#floorPlan">-->
340
+ <!-- <img src="http://localhost:10071/wp-content/plugins/wpvr/admin/icon/map.svg" alt="icon" class="regular">-->
341
+ <!-- <img src="http://localhost:10071/wp-content/plugins/wpvr/admin/icon/map.svg" alt="icon" class="hover">-->
342
+ <!-- Floor Plan-->
343
+ <!-- </span>-->
344
+ <!-- </li>-->
345
+ <!-- <li class="background-tour background-tour-pro-tag" data-screen="backgroundTour">-->
346
+ <!-- <div class="navigator-pro-tag">pro</div>-->
347
+ <!-- <span data-href="#backgroundTour">-->
348
+ <!-- <img src="http://localhost:10071/wp-content/plugins/wpvr/admin/icon/bg-tour-regular.png" alt="icon" class="regular">-->
349
+ <!-- <img src="http://localhost:10071/wp-content/plugins/wpvr/admin/icon/bg-tour-hover.png" alt="icon" class="hover">-->
350
+ <!-- Background Tour-->
351
+ <!-- </span>-->
352
+ <!-- </li>-->
353
+ <!-- <li class="streetview streetview-pro-tag " data-screen="streetview">-->
354
+ <!-- <div class="navigator-pro-tag">pro</div>-->
355
+ <!-- <span data-href="#streetview">-->
356
+ <!-- <img src="http://localhost:10071/wp-content/plugins/wpvr/admin/icon/street-view-regular.png" alt="icon" class="regular">-->
357
+ <!-- <img src="http://localhost:10071/wp-content/plugins/wpvr/admin/icon/street-view-hover.png" alt="icon" class="hover">-->
358
+ <!-- Street View-->
359
+ <!-- </span>-->
360
+ <!-- </li>-->
361
+ <!-- --><?php
362
+ // }
363
+
364
  //== Render Export Tab for Tour edit ==//
365
  if(is_plugin_active( 'wpvr-pro/wpvr-pro.php' )) { if (isset($postdata['panoid'])) { ?>
366
  <li class="export" data-screen="export">
admin/classes/class-wpvr-scene.php CHANGED
@@ -329,9 +329,10 @@ class WPVR_Scene {
329
 
330
  $custom_control = isset($_POST['customcontrol']) ? $_POST['customcontrol'] : null;
331
 
332
- $vrgallery = $this->format->set_checkbox_value(@$_POST['vrgallery']);
333
- $vrgallery_title = $this->format->set_checkbox_value(@$_POST['vrgallery_title']);
334
- $vrgallery_display = $this->format->set_checkbox_value(@$_POST['vrgallery_display']);
 
335
 
336
  $mouseZoom = $this->format->set_pro_checkbox_value(@$_POST['mouseZoom']);
337
  $draggable = $this->format->set_pro_checkbox_value(@$_POST['draggable']);
@@ -414,7 +415,8 @@ class WPVR_Scene {
414
  'vrgallery' => $vrgallery,
415
  'vrgallery_title' => $vrgallery_title,
416
  'vrgallery_display' => $vrgallery_display,
417
- 'bg_music' => $bg_music,
 
418
  'bg_music_url' => $bg_music_url,
419
  'autoplay_bg_music' => $autoplay_bg_music,
420
  'loop_bg_music' => $loop_bg_music,
@@ -579,7 +581,10 @@ class WPVR_Scene {
579
  if (isset($postdata['vrgallery_display'])) {
580
  $vrgallery_display = $postdata['vrgallery_display'];
581
  }
582
-
 
 
 
583
  $gyro = false;
584
  $gyro_orientation = false;
585
  if (isset($postdata['gyro'])) {
@@ -620,9 +625,9 @@ class WPVR_Scene {
620
 
621
  $explainer_right = "10px";
622
  if ((isset($postdata['compass']) && $postdata['compass'] == 'on') && (isset($postdata['bg_music']) && $postdata['bg_music'] == 'on') && ( $floor_plan_enable == 'on' && !empty($floor_plan_image) ) ) {
623
- $explainer_right = "125px";
624
  } elseif (isset($postdata['compass']) && $postdata['compass'] == 'on' && ($floor_plan_enable == 'on' && !empty($floor_plan_image) )) {
625
- $explainer_right = "90px";
626
  } elseif (isset($postdata['bg_music']) && $postdata['bg_music'] == "on" && ($floor_plan_enable == 'on' && !empty($floor_plan_image) )) {
627
  $explainer_right = "60px";
628
  } elseif((isset($postdata['compass']) && $postdata['compass'] == 'on') && (isset($postdata['bg_music']) && $postdata['bg_music'] == 'on') ) {
@@ -1452,9 +1457,13 @@ class WPVR_Scene {
1452
 
1453
  if ($vrgallery) {
1454
  //===Carousal setup===//
 
 
 
 
1455
  $html .= '<div id="vrgcontrols' . $id . '" class="vrgcontrols">';
1456
 
1457
- $html .= '<div class="vrgctrl' . $id . ' vrbounce">';
1458
  $html .= '</div>';
1459
  $html .= '</div>';
1460
 
@@ -1823,7 +1832,8 @@ class WPVR_Scene {
1823
  var compassBlock = "";
1824
  var infoBlock = "";
1825
  jQuery(document).on("click",".vr_mode_change' . $id . '",function (){
1826
-
 
1827
  var getValue = jQuery(this).val();
1828
  var getParent = jQuery(this).parent().parent();
1829
  var compass = getParent.find("#pano2' . $id . ' .pnlm-compass.pnlm-controls.pnlm-control").css("display");
@@ -2331,6 +2341,9 @@ class WPVR_Scene {
2331
  jQuery("#controls' . $id . '").hide();
2332
  jQuery("#zoom-in-out-controls' . $id . '").hide();
2333
  jQuery("#adcontrol' . $id . '").hide();
 
 
 
2334
  jQuery("#pano' . $id . '").find(".pnlm-panorama-info").hide();
2335
  });
2336
 
@@ -2350,6 +2363,9 @@ class WPVR_Scene {
2350
  jQuery("#controls' . $id . '").show();
2351
  jQuery("#zoom-in-out-controls' . $id . '").show();
2352
  jQuery("#adcontrol' . $id . '").show();
 
 
 
2353
  jQuery("#pano' . $id . '").find(".pnlm-panorama-info").show();
2354
  });';
2355
  }
@@ -2367,9 +2383,9 @@ class WPVR_Scene {
2367
  var element_id = this.id;
2368
  element_id = element_id.split("-");
2369
  element_id = element_id[3];
2370
- jQuery("#elementor-tab-content-"+element_id).children("div").addClass("awwww");
2371
  var pano_id = jQuery(".awwww").attr("id");
2372
- jQuery("#elementor-tab-content-"+element_id).children("div").removeClass("awwww");
2373
  if (pano_id != undefined) {
2374
  pano_id = pano_id.split("o");
2375
  pano_id = pano_id[1];
329
 
330
  $custom_control = isset($_POST['customcontrol']) ? $_POST['customcontrol'] : null;
331
 
332
+ $vrgallery = $this->format->set_checkbox_value(@$_POST['vrgallery']);
333
+ $vrgallery_title = $this->format->set_checkbox_value(@$_POST['vrgallery_title']);
334
+ $vrgallery_display = $this->format->set_checkbox_value(@$_POST['vrgallery_display']);
335
+ $vrgallery_icon_size = $this->format->set_checkbox_value(@$_POST['vrgallery_icon_size']);
336
 
337
  $mouseZoom = $this->format->set_pro_checkbox_value(@$_POST['mouseZoom']);
338
  $draggable = $this->format->set_pro_checkbox_value(@$_POST['draggable']);
415
  'vrgallery' => $vrgallery,
416
  'vrgallery_title' => $vrgallery_title,
417
  'vrgallery_display' => $vrgallery_display,
418
+ 'vrgallery_icon_size' => $vrgallery_icon_size,
419
+ 'bg_music' => $bg_music,
420
  'bg_music_url' => $bg_music_url,
421
  'autoplay_bg_music' => $autoplay_bg_music,
422
  'loop_bg_music' => $loop_bg_music,
581
  if (isset($postdata['vrgallery_display'])) {
582
  $vrgallery_display = $postdata['vrgallery_display'];
583
  }
584
+ $vrgallery_icon_size = false;
585
+ if (isset($postdata['vrgallery_icon_size'])) {
586
+ $vrgallery_icon_size = $postdata['vrgallery_icon_size'];
587
+ }
588
  $gyro = false;
589
  $gyro_orientation = false;
590
  if (isset($postdata['gyro'])) {
625
 
626
  $explainer_right = "10px";
627
  if ((isset($postdata['compass']) && $postdata['compass'] == 'on') && (isset($postdata['bg_music']) && $postdata['bg_music'] == 'on') && ( $floor_plan_enable == 'on' && !empty($floor_plan_image) ) ) {
628
+ $explainer_right = "130px";
629
  } elseif (isset($postdata['compass']) && $postdata['compass'] == 'on' && ($floor_plan_enable == 'on' && !empty($floor_plan_image) )) {
630
+ $explainer_right = "100px";
631
  } elseif (isset($postdata['bg_music']) && $postdata['bg_music'] == "on" && ($floor_plan_enable == 'on' && !empty($floor_plan_image) )) {
632
  $explainer_right = "60px";
633
  } elseif((isset($postdata['compass']) && $postdata['compass'] == 'on') && (isset($postdata['bg_music']) && $postdata['bg_music'] == 'on') ) {
1457
 
1458
  if ($vrgallery) {
1459
  //===Carousal setup===//
1460
+ $size = '';
1461
+ if($vrgallery_icon_size){
1462
+ $size = 'vrg-icon-size-large';
1463
+ }
1464
  $html .= '<div id="vrgcontrols' . $id . '" class="vrgcontrols">';
1465
 
1466
+ $html .= '<div class="vrgctrl' . $id . ' vrbounce '.$size.'">';
1467
  $html .= '</div>';
1468
  $html .= '</div>';
1469
 
1832
  var compassBlock = "";
1833
  var infoBlock = "";
1834
  jQuery(document).on("click",".vr_mode_change' . $id . '",function (){
1835
+ jQuery("#pano2' . $id . ' .pnlm-load-button").trigger("click");
1836
+ jQuery("#pano' . $id . ' .pnlm-load-button").trigger("click");
1837
  var getValue = jQuery(this).val();
1838
  var getParent = jQuery(this).parent().parent();
1839
  var compass = getParent.find("#pano2' . $id . ' .pnlm-compass.pnlm-controls.pnlm-control").css("display");
2341
  jQuery("#controls' . $id . '").hide();
2342
  jQuery("#zoom-in-out-controls' . $id . '").hide();
2343
  jQuery("#adcontrol' . $id . '").hide();
2344
+ jQuery("#explainer_button_' . $id . '").hide();
2345
+ jQuery("#floor_map_button_' . $id . '").hide();
2346
+ jQuery("#vrgcontrols' . $id . '").hide();
2347
  jQuery("#pano' . $id . '").find(".pnlm-panorama-info").hide();
2348
  });
2349
 
2363
  jQuery("#controls' . $id . '").show();
2364
  jQuery("#zoom-in-out-controls' . $id . '").show();
2365
  jQuery("#adcontrol' . $id . '").show();
2366
+ jQuery("#explainer_button_' . $id . '").show();
2367
+ jQuery("#floor_map_button_' . $id . '").show();
2368
+ jQuery("#vrgcontrols' . $id . '").show();
2369
  jQuery("#pano' . $id . '").find(".pnlm-panorama-info").show();
2370
  });';
2371
  }
2383
  var element_id = this.id;
2384
  element_id = element_id.split("-");
2385
  element_id = element_id[3];
2386
+ jQuery("#elementor-tab-content-"+element_id).find("#master-container").children("div").eq(1).addClass("awwww");
2387
  var pano_id = jQuery(".awwww").attr("id");
2388
+ jQuery("#elementor-tab-content-"+element_id).find("#master-container").children("div").eq(1).removeClass("awwww");;
2389
  if (pano_id != undefined) {
2390
  pano_id = pano_id.split("o");
2391
  pano_id = pano_id[1];
admin/css/wpvr-admin.css CHANGED
@@ -2,7 +2,16 @@
2
  * All of the CSS for your admin-specific functionality should be
3
  * included in this file.
4
  */
 
 
 
 
 
5
 
 
 
 
 
6
  .wpvr_gt_settings_ruler {
7
  content: "";
8
  display: block;
@@ -167,6 +176,23 @@
167
  }
168
  }
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  .pnlm-load-button p {
171
  color: #fff;
172
  }
@@ -795,6 +821,11 @@ div.custom-tooltip:hover span:after {
795
  color: #fff;
796
  background: #004efa;
797
  }
 
 
 
 
 
798
 
799
  .rex-pano-tabs .rex-pano-tab-nav li:hover span img.hover,
800
  .rex-pano-tabs .rex-pano-tab-nav li.active span img.hover {
@@ -896,7 +927,28 @@ div.custom-tooltip:hover span:after {
896
  right: -8px;
897
  top: -11px;
898
  }
 
 
 
 
 
899
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
900
 
901
  /* ----general inner tab style----- */
902
 
@@ -3806,7 +3858,12 @@ button.delete-scene {
3806
  opacity: 1;
3807
  visibility: visible;
3808
  }
3809
-
 
 
 
 
 
3810
 
3811
  /*-----------setup wizard style-----------*/
3812
 
2
  * All of the CSS for your admin-specific functionality should be
3
  * included in this file.
4
  */
5
+ .notice.notice-success.wpvr-halloween-notice {
6
+ display: flex;
7
+ align-items: center;
8
+ justify-content: space-between;
9
+ }
10
 
11
+ .wpvr_halloween_dismiss{
12
+ cursor: pointer;
13
+ border: 1px solid red;
14
+ }
15
  .wpvr_gt_settings_ruler {
16
  content: "";
17
  display: block;
176
  }
177
  }
178
 
179
+ .vrgallery-gallery-icon-size .wpvr-switcher label:before {
180
+ content: "S";
181
+ display: block;
182
+ color: #201cfe;
183
+ font-size: 14px;
184
+ font-weight: 600;
185
+ position: absolute;
186
+ top: 1px;
187
+ left: 26px;
188
+ }
189
+
190
+ .vrgallery-gallery-icon-size .wpvr-switcher input[type="checkbox"]:checked + label:before {
191
+ content: "L";
192
+ color: #fff;
193
+ left: 8px;
194
+ }
195
+
196
  .pnlm-load-button p {
197
  color: #fff;
198
  }
821
  color: #fff;
822
  background: #004efa;
823
  }
824
+ .rex-pano-tabs .rex-pano-tab-nav li:hover>.navigator-pro-tag,
825
+ .rex-pano-tabs .rex-pano-tab-nav li.active>.navigator-pro-tag {
826
+ color: #004efa;
827
+ background: #fff;
828
+ }
829
 
830
  .rex-pano-tabs .rex-pano-tab-nav li:hover span img.hover,
831
  .rex-pano-tabs .rex-pano-tab-nav li.active span img.hover {
927
  right: -8px;
928
  top: -11px;
929
  }
930
+ li.floor-plan.floor-plan-pro-tag,
931
+ li.background-tour.background-tour-pro-tag,
932
+ li.streetview.streetview-pro-tag{
933
+ position: relative;
934
+ }
935
 
936
+ .navigator-pro-tag{
937
+ display: block;
938
+ height: 19px;
939
+ /*border-radius: 3px;*/
940
+ filter: drop-shadow(0px 5px 4px rgba(105, 115, 137, 0.2));
941
+ background-color: #004efa;
942
+ font-size: 13px;
943
+ color: #ffffff;
944
+ font-weight: 400;
945
+ padding: 0 6px;
946
+ text-transform: capitalize;
947
+ position: absolute;
948
+ right: 0;
949
+ top: 0;
950
+ z-index: 1
951
+ }
952
 
953
  /* ----general inner tab style----- */
954
 
3858
  opacity: 1;
3859
  visibility: visible;
3860
  }
3861
+ #et-boc .et-l div.pnlm-tooltip span, div.pnlm-tooltip span{
3862
+ display: none;
3863
+ }
3864
+ .note-group-select-from-files {
3865
+ display: none;
3866
+ }
3867
 
3868
  /*-----------setup wizard style-----------*/
3869
 
admin/js/wpvr-admin.js CHANGED
@@ -1967,8 +1967,6 @@
1967
  ['view', ['codeview', 'help']],
1968
  ],
1969
  });
1970
-
1971
  });
1972
 
1973
-
1974
  })(jQuery);
1967
  ['view', ['codeview', 'help']],
1968
  ],
1969
  });
 
1970
  });
1971
 
 
1972
  })(jQuery);
admin/js/wpvr-global.js CHANGED
@@ -107,7 +107,15 @@
107
  $('iframe',this)[0].src += "?autoplay=1";
108
  $(this).addClass('open');
109
  });
110
-
111
-
 
 
 
 
 
 
 
 
112
 
113
  })( jQuery );
107
  $('iframe',this)[0].src += "?autoplay=1";
108
  $(this).addClass('open');
109
  });
110
+ $(document).on('click','.wpvr-halloween-notice .notice-dismiss',function (){
111
+ var ajaxurl = wpvr_global_obj.ajaxurl;
112
+ jQuery.ajax({
113
+ type: "POST",
114
+ url: ajaxurl,
115
+ data: {
116
+ action: "wpvr_notice",
117
+ },
118
+ });
119
+ })
120
 
121
  })( jQuery );
admin/partials/wpvr_documentation.php CHANGED
@@ -1076,7 +1076,7 @@ $rollback_versions = function_exists( 'rex_wpvr_get_roll_back_versions' ) ?
1076
  <!-- WPVR front-end notice -->
1077
  <?php if (is_plugin_active('wpvr-pro/wpvr-pro.php')) { ?>
1078
  <li>
1079
- <h6><?php echo __("VR GLass Support (Beta):", "wpvr"); ?></h6>
1080
 
1081
  <span class="wpvr-switcher">
1082
  <?php
1076
  <!-- WPVR front-end notice -->
1077
  <?php if (is_plugin_active('wpvr-pro/wpvr-pro.php')) { ?>
1078
  <li>
1079
+ <h6><?php echo __("VR GLass Support:", "wpvr"); ?></h6>
1080
 
1081
  <span class="wpvr-switcher">
1082
  <?php
build/index.build.js CHANGED
@@ -93,7 +93,7 @@
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
- eval("function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nvar __ = wp.i18n.__; // Import __() from wp.i18n\n\nvar Component = wp.element.Component;\nvar el = wp.element.createElement,\n registerBlockType = wp.blocks.registerBlockType,\n TextControl = wp.components.TextControl,\n SelectControl = wp.components.SelectControl,\n InspectorControls = wp.editor.InspectorControls,\n blockStyle = {\n fontFamily: 'Roboto',\n backgroundColor: '#900',\n color: '#fff',\n padding: '20px'\n};\nvar iconEl = el('svg', {\n width: 20,\n height: 20\n}, el('path', {\n d: \"M16.1,16.6h-2.5c-1,0-1.9-0.6-2.4-1.5L11,14.5c-0.2-0.4-0.5-0.6-0.9-0.6c-0.4,0-0.8,0.2-0.9,0.6l-0.3,0.6 c-0.4,0.9-1.3,1.5-2.4,1.5H3.9c-2.2,0-3.9-1.8-3.9-3.9V7.3c0-2.2,1.8-3.9,3.9-3.9h12.2c2.2,0,3.9,1.8,3.9,3.9v1.5 c0,0.4-0.3,0.8-0.8,0.8c-0.4,0-0.8-0.3-0.8-0.8V7.3c0-1.3-1.1-2.3-2.3-2.3H3.9C2.6,4.9,1.6,6,1.6,7.3v5.4c0,1.3,1.1,2.3,2.3,2.3 h2.6c0.4,0,0.8-0.2,0.9-0.6l0.3-0.6c0.4-0.9,1.3-1.5,2.4-1.5c1,0,1.9,0.6,2.4,1.5l0.3,0.6c0.2,0.4,0.5,0.6,0.9,0.6h2.5 c1.3,0,2.3-1.1,2.3-2.3c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.3,0.8,0.8C20,14.9,18.2,16.6,16.1,16.6L16.1,16.6z M16.7,9.4 c0-1.3-1.1-2.3-2.3-2.3C13,7.1,12,8.1,12,9.4s1.1,2.3,2.3,2.3C15.6,11.7,16.7,10.7,16.7,9.4L16.7,9.4z M15.1,9.4 c0,0.4-0.4,0.8-0.8,0.8c-0.4,0-0.8-0.4-0.8-0.8s0.4-0.8,0.8-0.8C14.8,8.6,15.1,9,15.1,9.4L15.1,9.4z M8,9.4C8,8.1,7,7.1,5.7,7.1 S3.3,8.1,3.3,9.4s1.1,2.3,2.3,2.3S8,10.7,8,9.4L8,9.4z M6.4,9.4c0,0.4-0.4,0.8-0.8,0.8c-0.4,0-0.8-0.4-0.8-0.8s0.4-0.8,0.8-0.8 C6.1,8.6,6.4,9,6.4,9.4L6.4,9.4z M6.4,9.4\"\n}));\n\nvar wpvredit = /*#__PURE__*/function (_Component) {\n _inherits(wpvredit, _Component);\n\n var _super = _createSuper(wpvredit);\n\n function wpvredit() {\n var _this;\n\n _classCallCheck(this, wpvredit);\n\n _this = _super.apply(this, arguments);\n _this.state = {\n data: [{\n value: \"0\",\n label: \"None\"\n }]\n };\n return _this;\n }\n\n _createClass(wpvredit, [{\n key: \"componentDidMount\",\n value: function componentDidMount() {\n var _this2 = this;\n\n wp.apiFetch({\n path: 'wpvr/v1/panodata'\n }).then(function (data) {\n _this2.setState({\n data: data\n });\n });\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this3 = this;\n\n return [el(InspectorControls, {}, el(SelectControl, {\n className: 'wpvr-base-control',\n label: 'Id',\n value: this.props.attributes.id,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n id: value\n });\n },\n options: this.state.data\n })), el(InspectorControls, {}, el(TextControl, {\n className: 'wpvr-base-control',\n label: 'Width',\n value: this.props.attributes.width,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n width: value\n });\n }\n })), el(InspectorControls, {}, el(TextControl, {\n className: 'wpvr-base-control',\n label: 'Height',\n value: this.props.attributes.height,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n height: value\n });\n }\n })), el(InspectorControls, {}, el(TextControl, {\n className: 'wpvr-base-control',\n label: 'Mobile Height',\n value: this.props.attributes.mobile_height,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n mobile_height: value\n });\n }\n })), el(InspectorControls, {}, el(TextControl, {\n className: 'wpvr-base-control',\n label: 'Radius',\n value: this.props.attributes.radius,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n radius: value\n });\n }\n })), /*#__PURE__*/React.createElement(\"p\", {\n className: \"wpvr-block-content\"\n }, \"WPVR id=\", this.props.attributes.id, \", Width=\", this.props.attributes.width, \"px, Height=\", this.props.attributes.height, \"px, Mobile Height=\", this.props.attributes.mobile_height, \"px, Radius=\", this.props.attributes.radius, \"px\")];\n }\n }]);\n\n return wpvredit;\n}(Component);\n\nregisterBlockType('wpvr/wpvr-block', {\n title: 'WPVR',\n icon: iconEl,\n category: 'common',\n edit: wpvredit,\n save: function save(props) {\n return null;\n }\n});\n\n//# sourceURL=webpack:///./src/index.js?");
97
 
98
  /***/ })
99
 
93
  /*! no static exports found */
94
  /***/ (function(module, exports) {
95
 
96
+ eval("function _typeof(obj) { \"@babel/helpers - typeof\"; return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }, _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, \"prototype\", { writable: false }); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, \"prototype\", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } else if (call !== void 0) { throw new TypeError(\"Derived constructors may only return object or undefined\"); } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\nvar __ = wp.i18n.__; // Import __() from wp.i18n\n\nvar Component = wp.element.Component;\nvar el = wp.element.createElement,\n registerBlockType = wp.blocks.registerBlockType,\n TextControl = wp.components.TextControl,\n SelectControl = wp.components.SelectControl,\n ColorPalette = wp.components.ColorPalette,\n NumberControl = wp.components.__experimentalNumberControl,\n InspectorControls = wp.editor.InspectorControls,\n blockStyle = {\n fontFamily: 'Roboto',\n backgroundColor: '#900',\n color: '#fff',\n padding: '20px'\n};\nvar iconEl = el('svg', {\n width: 20,\n height: 20\n}, el('path', {\n d: \"M16.1,16.6h-2.5c-1,0-1.9-0.6-2.4-1.5L11,14.5c-0.2-0.4-0.5-0.6-0.9-0.6c-0.4,0-0.8,0.2-0.9,0.6l-0.3,0.6 c-0.4,0.9-1.3,1.5-2.4,1.5H3.9c-2.2,0-3.9-1.8-3.9-3.9V7.3c0-2.2,1.8-3.9,3.9-3.9h12.2c2.2,0,3.9,1.8,3.9,3.9v1.5 c0,0.4-0.3,0.8-0.8,0.8c-0.4,0-0.8-0.3-0.8-0.8V7.3c0-1.3-1.1-2.3-2.3-2.3H3.9C2.6,4.9,1.6,6,1.6,7.3v5.4c0,1.3,1.1,2.3,2.3,2.3 h2.6c0.4,0,0.8-0.2,0.9-0.6l0.3-0.6c0.4-0.9,1.3-1.5,2.4-1.5c1,0,1.9,0.6,2.4,1.5l0.3,0.6c0.2,0.4,0.5,0.6,0.9,0.6h2.5 c1.3,0,2.3-1.1,2.3-2.3c0-0.4,0.3-0.8,0.8-0.8c0.4,0,0.8,0.3,0.8,0.8C20,14.9,18.2,16.6,16.1,16.6L16.1,16.6z M16.7,9.4 c0-1.3-1.1-2.3-2.3-2.3C13,7.1,12,8.1,12,9.4s1.1,2.3,2.3,2.3C15.6,11.7,16.7,10.7,16.7,9.4L16.7,9.4z M15.1,9.4 c0,0.4-0.4,0.8-0.8,0.8c-0.4,0-0.8-0.4-0.8-0.8s0.4-0.8,0.8-0.8C14.8,8.6,15.1,9,15.1,9.4L15.1,9.4z M8,9.4C8,8.1,7,7.1,5.7,7.1 S3.3,8.1,3.3,9.4s1.1,2.3,2.3,2.3S8,10.7,8,9.4L8,9.4z M6.4,9.4c0,0.4-0.4,0.8-0.8,0.8c-0.4,0-0.8-0.4-0.8-0.8s0.4-0.8,0.8-0.8 C6.1,8.6,6.4,9,6.4,9.4L6.4,9.4z M6.4,9.4\"\n}));\n\nvar wpvredit = /*#__PURE__*/function (_Component) {\n _inherits(wpvredit, _Component);\n\n var _super = _createSuper(wpvredit);\n\n function wpvredit() {\n var _this;\n\n _classCallCheck(this, wpvredit);\n\n _this = _super.apply(this, arguments);\n _this.state = {\n fullwidth: '',\n data: [{\n value: \"0\",\n label: \"None\"\n }],\n border_style_option: [{\n value: \"none\",\n label: \"none\"\n }, {\n value: \"solid\",\n label: \"Solid\"\n }, {\n value: \"dotted\",\n label: \"Dotted\"\n }, {\n value: \"dashed\",\n label: \"Dashed\"\n }, {\n value: \"double\",\n label: \"Double\"\n }],\n colors: [{\n name: 'red',\n color: '#f00'\n }, {\n name: 'white',\n color: '#fff'\n }, {\n name: 'blue',\n color: '#00f'\n }],\n width_unit: [{\n value: \"px\",\n label: \"px\"\n }, {\n value: \"%\",\n label: \"%\"\n }, {\n value: \"vw\",\n label: \"vw\"\n }, {\n value: \"fullwidth\",\n label: \"Fullwidth\"\n }],\n height_unit_option: [{\n value: \"px\",\n label: \"px\"\n }, {\n value: \"vh\",\n label: \"vh\"\n }],\n radius_unit_option: [{\n value: \"px\",\n label: \"px\"\n }],\n mobile_height_unit_option: [{\n value: \"px\",\n label: \"px\"\n }]\n };\n return _this;\n }\n\n _createClass(wpvredit, [{\n key: \"componentDidMount\",\n value: function componentDidMount() {\n var _this2 = this;\n\n wp.apiFetch({\n path: 'wpvr/v1/panodata'\n }).then(function (data) {\n _this2.setState({\n data: data\n });\n });\n }\n }, {\n key: \"render\",\n value: function render() {\n var _this3 = this;\n\n return [el(InspectorControls, {}, el(SelectControl, {\n className: 'wpvr-base-control',\n label: 'Id',\n value: this.props.attributes.id,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n id: value\n });\n },\n options: this.state.data\n })), el(InspectorControls, {}, el(TextControl, {\n className: 'wpvr-base-control wpvr-width-base-control',\n label: 'Width',\n value: this.props.attributes.width,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n width: value\n });\n }\n })), el(InspectorControls, {}, el(SelectControl, {\n className: 'wpvr-base-control wpvr-width-unit-control',\n label: ' ',\n value: this.props.attributes.width_unit,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n width_unit: value\n });\n\n if (value == 'fullwidth') {\n _this3.props.setAttributes({\n width: value\n });\n\n _this3.props.setAttributes({\n width_unit: ''\n });\n }\n },\n options: this.state.width_unit\n })), el(InspectorControls, {}, el(NumberControl, {\n className: 'wpvr-base-control wpvr-height-base-control',\n label: 'Height',\n value: this.props.attributes.height,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n height: value\n });\n }\n })), el(InspectorControls, {}, el(SelectControl, {\n className: 'wpvr-base-control wpvr-height-unit-control',\n label: ' ',\n value: this.props.attributes.height_unit_option,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n height_unit: value\n });\n },\n options: this.state.height_unit_option\n })), el(InspectorControls, {}, el(NumberControl, {\n className: 'wpvr-base-control wpvr-radius-base-control',\n label: 'Radius',\n value: this.props.attributes.radius,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n radius: value\n });\n }\n })), el(InspectorControls, {}, el(SelectControl, {\n className: 'wpvr-base-control wpvr-radius-unit-control',\n label: ' ',\n value: this.props.attributes.radius_unit,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n radius_unit: value\n });\n },\n options: this.state.radius_unit_option\n })), el(InspectorControls, {}, el(NumberControl, {\n className: 'wpvr-base-control wpvr-mobile-height-base-control',\n label: 'Mobile Height',\n value: this.props.attributes.mobile_height,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n mobile_height: value\n });\n }\n })), el(InspectorControls, {}, el(SelectControl, {\n className: 'wpvr-base-control wpvr-mobile-height-unit-control',\n label: ' ',\n value: this.props.attributes.mobile_height_unit,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n mobile_height_unit: value\n });\n },\n options: this.state.mobile_height_unit_option\n })), el(InspectorControls, {}, el(TextControl, {\n className: 'wpvr-base-control wpvr-border-width-base-control',\n label: 'Border Width',\n value: this.props.attributes.border_width,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n border_width: value\n });\n }\n })), el(InspectorControls, {}, el(SelectControl, {\n className: 'wpvr-base-control wpvr-border-style-base-control',\n label: 'Border Style',\n value: this.props.attributes.border_style,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n border_style: value\n });\n },\n options: this.state.border_style_option\n })), el(InspectorControls, {}, el(ColorPalette, {\n className: 'wpvr-base-control wpvr-border-color-base-control',\n label: 'Border Color',\n colors: this.state.colors,\n value: this.props.attributes.border_color,\n onChange: function onChange(value) {\n _this3.props.setAttributes({\n border_color: value\n });\n }\n })), /*#__PURE__*/React.createElement(\"p\", {\n className: \"wpvr-block-content\"\n }, \"WPVR id=\", this.props.attributes.id, \", Width=\", this.props.attributes.width, this.props.attributes.width_unit, \", Height=\", this.props.attributes.height, this.props.attributes.height_unit, \", Mobile Height=\", this.props.attributes.mobile_height, this.props.attributes.mobile_height_unit, \", Radius=\", this.props.attributes.radius, this.props.attributes.radius_unit)];\n }\n }]);\n\n return wpvredit;\n}(Component);\n\nregisterBlockType('wpvr/wpvr-block', {\n title: 'WPVR',\n icon: iconEl,\n category: 'common',\n edit: wpvredit,\n save: function save(props) {\n return null;\n }\n});\n\n//# sourceURL=webpack:///./src/index.js?");
97
 
98
  /***/ })
99
 
elementor/elements/Wpvr-widget.php CHANGED
@@ -109,79 +109,19 @@ class Wpvr_Widget extends Widget_Base {
109
  }
110
 
111
  protected function _register_controls() {
112
-
113
-
114
- /**
115
- * Nasim
116
- * get all tour info and store in $wpvr_post
117
- */
118
- $the_posts = get_posts(array('post_type' => 'wpvr_item',
119
- 'posts_per_page' => -1));
120
-
121
- $wpvr_post = array();
122
-
123
- foreach($the_posts as $post){
124
- if($post->post_title){
125
- $wpvr_post[$post->ID] = $post->post_title.' : '.$post->ID;
126
- }else{
127
- $wpvr_post[$post->ID] = 'No title' .' : '.$post->ID;
128
- }
129
- }
130
-
131
- $this->start_controls_section(
132
- 'section_content',
133
- [
134
- 'label' => __( 'WPVR Setup', 'wpvr' ),
135
- ]
136
- );
137
-
138
- /**
139
- * Nasim
140
- * add a select type field instead of text field
141
- */
142
- $this->add_control(
143
- 'vr_id',
144
- [
145
- 'label' => __( 'ID:', 'wpvr' ),
146
- 'type' => \Elementor\Controls_Manager::SELECT,
147
- 'options' => $wpvr_post
148
- ]
149
- );
150
- $this->add_control(
151
- 'vr_width',
152
- [
153
- 'label' => __( 'Width:', 'wpvr' ),
154
- 'type' => Controls_Manager::TEXT,
155
- 'input_type' => 'text',
156
- 'placeholder' => __( '', 'wpvr' ),
157
- ]
158
- );
159
-
160
- $this->add_control(
161
- 'vr_height',
162
- [
163
- 'label' => __( 'Height:', 'wpvr' ),
164
- 'type' => Controls_Manager::TEXT,
165
- 'input_type' => 'text',
166
- 'placeholder' => __( 'Put value in (px)', 'wpvr' ),
167
- ]
168
- );
169
-
170
- $this->add_control(
171
- 'vr_radius',
172
- [
173
- 'label' => __( 'Radius:', 'wpvr' ),
174
- 'type' => Controls_Manager::TEXT,
175
- 'input_type' => 'text',
176
- 'placeholder' => __( '', 'wpvr' ),
177
- ]
178
- );
179
-
180
- $this->end_controls_section();
181
-
182
  }
 
183
  protected function register_controls() {
 
 
184
 
 
 
 
 
 
 
185
 
186
  /**
187
  * Nasim
109
  }
110
 
111
  protected function _register_controls() {
112
+ $this->wpvr_shortcode_controls();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  }
114
+
115
  protected function register_controls() {
116
+ $this->wpvr_shortcode_controls();
117
+ }
118
 
119
+ /**
120
+ * Register shortcode Controls.
121
+ *
122
+ * @access protected
123
+ */
124
+ protected function wpvr_shortcode_controls(){
125
 
126
  /**
127
  * Nasim
includes/class-wpvr.php CHANGED
@@ -193,6 +193,11 @@ class Wpvr {
193
  add_filter( 'big_image_size_threshold', '__return_false' );
194
  }
195
  $this->loader->add_action( 'admin_init', $this->plugin_admin, 'trigger_rollback' );
 
 
 
 
 
196
 
197
  }
198
 
193
  add_filter( 'big_image_size_threshold', '__return_false' );
194
  }
195
  $this->loader->add_action( 'admin_init', $this->plugin_admin, 'trigger_rollback' );
196
+ // $this->loader->add_action( 'include_floor_plan_meta_content', $this->plugin_admin, 'floor_plan_image_show_for_free_user' );
197
+ // $this->loader->add_action( 'include_background_tour_meta_content', $this->plugin_admin, 'background_tour_image_show_for_free_user' );
198
+ // $this->loader->add_action( 'include_street_view_meta_content', $this->plugin_admin, 'street_view_image_show_for_free_user' );
199
+ // $this->loader->add_action( 'wpvr_pro_scene_right_fields', $this->plugin_admin, 'scene_pro_image_show_for_free_user',10,1 );
200
+ // $this->loader->add_action( 'wpvr_pro_scene_empty_right_fields', $this->plugin_admin, 'empty_scene_pro_image_show_for_free_user');
201
 
202
  }
203
 
includes/wpvr-divi-modules/includes/modules/wpvr_modules/WpvrTour.php CHANGED
@@ -24,7 +24,7 @@ class WPVR_Tour extends ET_Builder_Module {
24
  $this->settings_modal_toggles = array(
25
  'general' => array(
26
  'toggles' => array(
27
- 'main_content' => __( 'WPVR', 'wpfnl' ),
28
  ),
29
  ),
30
  );
@@ -62,8 +62,14 @@ class WPVR_Tour extends ET_Builder_Module {
62
  */
63
  public function get_all_tour()
64
  {
65
- $the_posts = get_posts(array('post_type' => 'wpvr_item',
66
- 'posts_per_page' => -1));
 
 
 
 
 
 
67
 
68
  $wpvr_post = array(
69
  '0' => 'none'
@@ -83,7 +89,7 @@ class WPVR_Tour extends ET_Builder_Module {
83
  return array(
84
  'vr_id' => array(
85
  'label' => esc_html__( 'ID', 'wpvr' ),
86
- 'description' => esc_html__( 'WPVR Tour ID', 'wpfnl' ),
87
  'type' => 'select',
88
  'options' => $this->get_all_tour(),
89
  'priority' => 80,
@@ -94,37 +100,115 @@ class WPVR_Tour extends ET_Builder_Module {
94
  'mobile_options' => true,
95
  ),
96
  'vr_width' => array(
97
- 'label' => __( 'Width', 'wpfnl' ),
98
- 'description' => __( 'WPVR Width', 'wpfnl' ),
99
  'type' => 'text',
100
  'default' => '600',
101
  'default_on_front' => '600',
102
  'toggle_slug' => 'main_content',
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  ),
 
104
  'vr_height' => array(
105
- 'label' => __( 'Height', 'wpfnl' ),
106
- 'description' => __( 'WPVR Height', 'wpfnl' ),
107
  'type' => 'text',
108
  'default' => '400',
109
  'default_on_front' => '400',
110
  'toggle_slug' => 'main_content',
111
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  'vr_radius' => array(
113
- 'label' => __( 'Radius', 'wpfnl' ),
114
- 'description' => __( 'WPVR Radius', 'wpfnl' ),
115
  'type' => 'text',
116
  'default' => '0',
117
  'default_on_front' => '0',
118
  'toggle_slug' => 'main_content',
119
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  'vr_mobile_height' => array(
121
- 'label' => __( 'Mobile Height', 'wpfnl' ),
122
- 'description' => __( 'WPVR Mobile Height', 'wpfnl' ),
123
  'type' => 'text',
124
  'default' => '300',
125
  'default_on_front' => '300',
126
  'toggle_slug' => 'main_content',
127
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
128
  );
129
  }
130
 
@@ -142,13 +226,16 @@ class WPVR_Tour extends ET_Builder_Module {
142
  $height = "400px";
143
  $radius = "0px";
144
  $id = $props['vr_id'];
145
- $width = $props['vr_width']."px";
146
- $height = $props['vr_height']."px";
147
- $radius = $props['vr_radius']."px";
148
- $vr_mobile_height = $props['vr_mobile_height']."px";
149
  if (empty($width)) {
150
  $width = "600px";
151
  }
 
 
 
152
  if (empty($height)) {
153
  $height = "400px";
154
  }
@@ -156,11 +243,11 @@ class WPVR_Tour extends ET_Builder_Module {
156
  $radius = "0px";
157
  }
158
  if (empty($vr_mobile_height)) {
159
- $vr_mobile_height = "0px";
160
  }
161
  if ($id) {
162
  ob_start();
163
- echo do_shortcode( '[wpvr id="'.$id.'" width="'.$width.'" height="'.$height.'" radius="'.$radius.'"]' );
164
 
165
  return ob_get_clean();
166
  }
24
  $this->settings_modal_toggles = array(
25
  'general' => array(
26
  'toggles' => array(
27
+ 'main_content' => __( 'WPVR', 'wpvr' ),
28
  ),
29
  ),
30
  );
62
  */
63
  public function get_all_tour()
64
  {
65
+ $the_posts = get_posts(
66
+ array(
67
+ 'post_type' => 'wpvr_item',
68
+ 'posts_per_page' => -1,
69
+ 'orderby' => 'DESC',
70
+
71
+ )
72
+ );
73
 
74
  $wpvr_post = array(
75
  '0' => 'none'
89
  return array(
90
  'vr_id' => array(
91
  'label' => esc_html__( 'ID', 'wpvr' ),
92
+ 'description' => esc_html__( 'WPVR Tour ID', 'wpvr' ),
93
  'type' => 'select',
94
  'options' => $this->get_all_tour(),
95
  'priority' => 80,
100
  'mobile_options' => true,
101
  ),
102
  'vr_width' => array(
103
+ 'label' => __( 'Width', 'wpvr' ),
104
+ 'description' => __( 'WPVR Width', 'wpvr' ),
105
  'type' => 'text',
106
  'default' => '600',
107
  'default_on_front' => '600',
108
  'toggle_slug' => 'main_content',
109
+ 'show_if' => array(
110
+ 'vr_fullwidth' => 'no',
111
+ ),
112
+ ),
113
+ 'vr_width_unit' => array(
114
+ 'label' => esc_html__( 'Width Unit', 'wpvr' ),
115
+ 'description' => esc_html__( 'Width Unit', 'wpvr' ),
116
+ 'type' => 'select',
117
+ 'options' => array(
118
+ 'px' => __( 'px' ,'wpvr'),
119
+ '%' => __( '%' ,'wpvr'),
120
+ 'vw' => __( 'vw','wpvr' ),
121
+ ),
122
+ 'default' => 'px',
123
+ 'default_on_front' => 'px',
124
+ 'toggle_slug' => 'main_content',
125
+ 'sub_toggle' => 'ul',
126
+ 'mobile_options' => true,
127
+ 'show_if' => array(
128
+ 'vr_fullwidth' => 'no',
129
+ ),
130
+ ),
131
+ 'vr_fullwidth' => array(
132
+ 'label' => esc_html__( 'Fullwidth', 'wpvr' ),
133
+ 'description' => esc_html__( 'Fullwidth', 'wpvr' ),
134
+ 'type' => 'select',
135
+ 'options' => array(
136
+ 'yes' => __( 'Yes' ,'wpvr'),
137
+ 'no' => __( 'No' ,'wpvr'),
138
+ ),
139
+ 'default' => 'no',
140
+ 'default_on_front' => 'no',
141
+ 'toggle_slug' => 'main_content',
142
+ 'sub_toggle' => 'ul',
143
+ 'mobile_options' => true,
144
  ),
145
+
146
  'vr_height' => array(
147
+ 'label' => __( 'Height', 'wpvr' ),
148
+ 'description' => __( 'WPVR Height', 'wpvr' ),
149
  'type' => 'text',
150
  'default' => '400',
151
  'default_on_front' => '400',
152
  'toggle_slug' => 'main_content',
153
  ),
154
+ 'vr_height_unit' => array(
155
+ 'label' => esc_html__( 'Height Unit', 'wpvr' ),
156
+ 'description' => esc_html__( 'Height Unit', 'wpvr' ),
157
+ 'type' => 'select',
158
+ 'options' => array(
159
+ 'px' => __( 'px' ,'wpvr'),
160
+ 'vh' => __( 'vh','wpvr' ),
161
+ ),
162
+ 'default' => 'px',
163
+ 'default_on_front' => 'px',
164
+ 'toggle_slug' => 'main_content',
165
+ 'sub_toggle' => 'ul',
166
+ 'mobile_options' => true,
167
+ ),
168
+
169
  'vr_radius' => array(
170
+ 'label' => __( 'Radius', 'wpvr' ),
171
+ 'description' => __( 'WPVR Radius', 'wpvr' ),
172
  'type' => 'text',
173
  'default' => '0',
174
  'default_on_front' => '0',
175
  'toggle_slug' => 'main_content',
176
  ),
177
+ 'vr_radius_unit' => array(
178
+ 'label' => esc_html__( 'Radius Unit', 'wpvr' ),
179
+ 'description' => esc_html__( 'Radius Unit', 'wpvr' ),
180
+ 'type' => 'select',
181
+ 'options' => array(
182
+ 'px' => __( 'px' ,'wpvr'),
183
+ ),
184
+ 'default' => 'px',
185
+ 'default_on_front' => 'px',
186
+ 'toggle_slug' => 'main_content',
187
+ 'sub_toggle' => 'ul',
188
+ 'mobile_options' => true,
189
+ ),
190
+
191
  'vr_mobile_height' => array(
192
+ 'label' => __( 'Mobile Height', 'wpvr' ),
193
+ 'description' => __( 'WPVR Mobile Height', 'wpvr' ),
194
  'type' => 'text',
195
  'default' => '300',
196
  'default_on_front' => '300',
197
  'toggle_slug' => 'main_content',
198
  ),
199
+ 'vr_mobile_height_unit' => array(
200
+ 'label' => esc_html__( 'Mobile Height Unit', 'wpvr' ),
201
+ 'description' => esc_html__( 'Mobile Height Unit', 'wpvr' ),
202
+ 'type' => 'select',
203
+ 'options' => array(
204
+ 'px' => __( 'px' ,'wpvr'),
205
+ ),
206
+ 'default' => 'px',
207
+ 'default_on_front' => 'px',
208
+ 'toggle_slug' => 'main_content',
209
+ 'sub_toggle' => 'ul',
210
+ 'mobile_options' => true,
211
+ ),
212
  );
213
  }
214
 
226
  $height = "400px";
227
  $radius = "0px";
228
  $id = $props['vr_id'];
229
+ $width = $props['vr_width'].$props['vr_width_unit'];
230
+ $height = $props['vr_height'].$props['vr_height_unit'];
231
+ $radius = $props['vr_radius'].$props['vr_radius_unit'];
232
+ $vr_mobile_height = $props['vr_mobile_height'].$props['vr_mobile_height_unit'];
233
  if (empty($width)) {
234
  $width = "600px";
235
  }
236
+ if($props['vr_fullwidth'] == 'yes'){
237
+ $width = 'fullwidth';
238
+ }
239
  if (empty($height)) {
240
  $height = "400px";
241
  }
243
  $radius = "0px";
244
  }
245
  if (empty($vr_mobile_height)) {
246
+ $vr_mobile_height = "300px";
247
  }
248
  if ($id) {
249
  ob_start();
250
+ echo do_shortcode( '[wpvr id="'.$id.'" width="'.$width.'" height="'.$height.'" radius="'.$radius.'" mobile_height="'.$vr_mobile_height.'"]' );
251
 
252
  return ob_get_clean();
253
  }
includes/wpvr-divi-modules/includes/modules/wpvr_modules/wpvr_tour.jsx CHANGED
@@ -14,7 +14,7 @@ class WpvrDivi extends Component {
14
  <Fragment>
15
  <div>
16
  <p className="wpvr-block-content">
17
- WPVR id={this.props.vr_id}, Width={this.props.vr_width}px, Height={this.props.vr_height}px, Mobile Height={this.props.vr_mobile_height}px, Radius={this.props.vr_radius}px
18
  </p>
19
  </div>
20
 
14
  <Fragment>
15
  <div>
16
  <p className="wpvr-block-content">
17
+ WPVR id={this.props.vr_id}, Width={this.props.vr_width}{this.props.vr_width_unit}, Height={this.props.vr_height}{this.props.vr_height_unit}, Mobile Height={this.props.vr_mobile_height}{this.props.vr_mobile_height_unit}, Radius={this.props.vr_radius}{this.props.vr_radius_unit}
18
  </p>
19
  </div>
20
 
includes/wpvr-divi-modules/package.json DELETED
@@ -1,33 +0,0 @@
1
- {
2
- "name": "divi-custom-modules",
3
- "version": "0.1.0",
4
- "private": true,
5
- "dependencies": {
6
- "divi-scripts": "1.0.0",
7
- "react": "^16.3.2",
8
- "react-dom": "^16.3.2"
9
- },
10
- "scripts": {
11
- "start": "divi-scripts start",
12
- "build": "divi-scripts build",
13
- "zip": "divi-scripts build && divi-scripts zip",
14
- "eject": "divi-scripts eject"
15
- },
16
- "browserslist": {
17
- "development": [
18
- "last 2 chrome versions",
19
- "last 2 firefox versions",
20
- "last 2 edge versions"
21
- ],
22
- "production": [
23
- ">1%",
24
- "last 4 versions",
25
- "Firefox ESR",
26
- "not ie < 11"
27
- ]
28
- },
29
- "cde": {
30
- "gettext": "dicm-divi-custom-modules",
31
- "prefix": "dicm"
32
- }
33
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/wpvr-divi-modules/scripts/builder-bundle.min.js CHANGED
@@ -1 +1 @@
1
- !function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="/",r(r.s=0)}([function(e,t,r){r(1),e.exports=r(2)},function(e,t,r){"use strict"},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=r(3),o=r.n(n),i=r(4);o()(window).on("et_builder_api_ready",function(e,t){t.registerModules(i.a)})},function(e,t){e.exports=jQuery},function(e,t,r){"use strict";var n=r(5);t.a=[n.a]},function(e,t,r){"use strict";var n=r(6),o=r.n(n);function i(e){return(i="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function c(e,t){return!t||"object"!==i(t)&&"function"!==typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}var a=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,i,a;return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n["Component"]),r=t,(i=[{key:"render",value:function(){return o.a.createElement(n.Fragment,null,o.a.createElement("div",null,o.a.createElement("p",{className:"wpvr-block-content"},"WPVR id=",this.props.vr_id,", Width=",this.props.vr_width,"px, Height=",this.props.vr_height,"px, Mobile Height=",this.props.vr_mobile_height,"px, Radius=",this.props.vr_radius,"px")))}}])&&u(r.prototype,i),a&&u(r,a),t}();Object.defineProperty(a,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"wpvr_divi"}),t.a=a},function(e,t){e.exports=React}]);
1
+ !function(t){var e={};function r(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=t,r.c=e,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:n})},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="/",r(r.s=0)}([function(t,e,r){r(1),t.exports=r(2)},function(t,e,r){"use strict"},function(t,e,r){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var n=r(3),o=r.n(n),i=r(4);o()(window).on("et_builder_api_ready",function(t,e){e.registerModules(i.a)})},function(t,e){t.exports=jQuery},function(t,e,r){"use strict";var n=r(5);e.a=[n.a]},function(t,e,r){"use strict";var n=r(6),o=r.n(n);function i(t){return(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})(t)}function u(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,n.key,n)}}function c(t,e){return!e||"object"!==i(e)&&"function"!==typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}var s=function(t){function e(){return function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,e),c(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}var r,i,s;return function(t,e){if("function"!==typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");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,n["Component"]),r=e,(i=[{key:"render",value:function(){return o.a.createElement(n.Fragment,null,o.a.createElement("div",null,o.a.createElement("p",{className:"wpvr-block-content"},"WPVR id=",this.props.vr_id,", Width=",this.props.vr_width,this.props.vr_width_unit,", Height=",this.props.vr_height,this.props.vr_height_unit,", Mobile Height=",this.props.vr_mobile_height,this.props.vr_mobile_height_unit,", Radius=",this.props.vr_radius,this.props.vr_radius_unit)))}}])&&u(r.prototype,i),s&&u(r,s),e}();Object.defineProperty(s,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"wpvr_divi"}),e.a=s},function(t,e){t.exports=React}]);
includes/wpvr-divi-modules/yarn.lock DELETED
@@ -1,8385 +0,0 @@
1
- # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2
- # yarn lockfile v1
3
-
4
-
5
- "@babel/code-frame@7.0.0-beta.42", "@babel/code-frame@^7.0.0-beta.35", "@babel/code-frame@^7.0.0-beta.40":
6
- version "7.0.0-beta.42"
7
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.42.tgz#a9c83233fa7cd06b39dc77adbb908616ff4f1962"
8
- dependencies:
9
- "@babel/highlight" "7.0.0-beta.42"
10
-
11
- "@babel/core@7.0.0-beta.42", "@babel/core@^7.0.0-beta.39":
12
- version "7.0.0-beta.42"
13
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.0.0-beta.42.tgz#b3a838fddbd19663369a0b4892189fd8d3f82001"
14
- dependencies:
15
- "@babel/code-frame" "7.0.0-beta.42"
16
- "@babel/generator" "7.0.0-beta.42"
17
- "@babel/helpers" "7.0.0-beta.42"
18
- "@babel/template" "7.0.0-beta.42"
19
- "@babel/traverse" "7.0.0-beta.42"
20
- "@babel/types" "7.0.0-beta.42"
21
- babylon "7.0.0-beta.42"
22
- convert-source-map "^1.1.0"
23
- debug "^3.1.0"
24
- json5 "^0.5.0"
25
- lodash "^4.2.0"
26
- micromatch "^2.3.11"
27
- resolve "^1.3.2"
28
- semver "^5.4.1"
29
- source-map "^0.5.0"
30
-
31
- "@babel/generator@7.0.0-beta.42":
32
- version "7.0.0-beta.42"
33
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.0.0-beta.42.tgz#777bb50f39c94a7e57f73202d833141f8159af33"
34
- dependencies:
35
- "@babel/types" "7.0.0-beta.42"
36
- jsesc "^2.5.1"
37
- lodash "^4.2.0"
38
- source-map "^0.5.0"
39
- trim-right "^1.0.1"
40
-
41
- "@babel/helper-annotate-as-pure@7.0.0-beta.42":
42
- version "7.0.0-beta.42"
43
- resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0-beta.42.tgz#f2b0a3be684018b55fc308eb5408326f78479085"
44
- dependencies:
45
- "@babel/types" "7.0.0-beta.42"
46
-
47
- "@babel/helper-builder-binary-assignment-operator-visitor@7.0.0-beta.42":
48
- version "7.0.0-beta.42"
49
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.0.0-beta.42.tgz#7305281eb996954c47f87ec7710e2a9a8edd8077"
50
- dependencies:
51
- "@babel/helper-explode-assignable-expression" "7.0.0-beta.42"
52
- "@babel/types" "7.0.0-beta.42"
53
-
54
- "@babel/helper-builder-react-jsx@7.0.0-beta.42":
55
- version "7.0.0-beta.42"
56
- resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.0.0-beta.42.tgz#719510a0aa45e9b02909f2e252420e62900c406a"
57
- dependencies:
58
- "@babel/types" "7.0.0-beta.42"
59
- esutils "^2.0.0"
60
-
61
- "@babel/helper-call-delegate@7.0.0-beta.42":
62
- version "7.0.0-beta.42"
63
- resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.0.0-beta.42.tgz#53294eb8c5e6e53af3efda4293ff3c1237772d37"
64
- dependencies:
65
- "@babel/helper-hoist-variables" "7.0.0-beta.42"
66
- "@babel/traverse" "7.0.0-beta.42"
67
- "@babel/types" "7.0.0-beta.42"
68
-
69
- "@babel/helper-define-map@7.0.0-beta.42":
70
- version "7.0.0-beta.42"
71
- resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.0.0-beta.42.tgz#e5aa10bd7eed2c23cc2873e5d15fbb4b40a30620"
72
- dependencies:
73
- "@babel/helper-function-name" "7.0.0-beta.42"
74
- "@babel/types" "7.0.0-beta.42"
75
- lodash "^4.2.0"
76
-
77
- "@babel/helper-explode-assignable-expression@7.0.0-beta.42":
78
- version "7.0.0-beta.42"
79
- resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.0.0-beta.42.tgz#ae05c9e7ef9a085b0080b9e4f7a076851a2b17b5"
80
- dependencies:
81
- "@babel/traverse" "7.0.0-beta.42"
82
- "@babel/types" "7.0.0-beta.42"
83
-
84
- "@babel/helper-function-name@7.0.0-beta.42":
85
- version "7.0.0-beta.42"
86
- resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.42.tgz#b38b8f4f85168d1812c543dd700b5d549b0c4658"
87
- dependencies:
88
- "@babel/helper-get-function-arity" "7.0.0-beta.42"
89
- "@babel/template" "7.0.0-beta.42"
90
- "@babel/types" "7.0.0-beta.42"
91
-
92
- "@babel/helper-get-function-arity@7.0.0-beta.42":
93
- version "7.0.0-beta.42"
94
- resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.42.tgz#ad072e32f912c033053fc80478169aeadc22191e"
95
- dependencies:
96
- "@babel/types" "7.0.0-beta.42"
97
-
98
- "@babel/helper-hoist-variables@7.0.0-beta.42":
99
- version "7.0.0-beta.42"
100
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.0.0-beta.42.tgz#6e51d75192923d96972a24c223b81126a7fabca1"
101
- dependencies:
102
- "@babel/types" "7.0.0-beta.42"
103
-
104
- "@babel/helper-module-imports@7.0.0-beta.42":
105
- version "7.0.0-beta.42"
106
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0-beta.42.tgz#4de334b42fa889d560f15122f66c3bfe1f30cb77"
107
- dependencies:
108
- "@babel/types" "7.0.0-beta.42"
109
- lodash "^4.2.0"
110
-
111
- "@babel/helper-module-transforms@7.0.0-beta.42":
112
- version "7.0.0-beta.42"
113
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.0.0-beta.42.tgz#4d260cc786e712e8440bef58dae28040b77a6183"
114
- dependencies:
115
- "@babel/helper-module-imports" "7.0.0-beta.42"
116
- "@babel/helper-simple-access" "7.0.0-beta.42"
117
- "@babel/helper-split-export-declaration" "7.0.0-beta.42"
118
- "@babel/template" "7.0.0-beta.42"
119
- "@babel/types" "7.0.0-beta.42"
120
- lodash "^4.2.0"
121
-
122
- "@babel/helper-optimise-call-expression@7.0.0-beta.42":
123
- version "7.0.0-beta.42"
124
- resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0-beta.42.tgz#9ba770079001672a578fe833190cf03f973568b1"
125
- dependencies:
126
- "@babel/types" "7.0.0-beta.42"
127
-
128
- "@babel/helper-plugin-utils@7.0.0-beta.42":
129
- version "7.0.0-beta.42"
130
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0-beta.42.tgz#9aa8b3e5dc72abea6b4f686712a7363cb29ea057"
131
-
132
- "@babel/helper-regex@7.0.0-beta.42":
133
- version "7.0.0-beta.42"
134
- resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0-beta.42.tgz#ba01d0cd94786561e2afeb8c8b0e544aa034a1e1"
135
- dependencies:
136
- lodash "^4.2.0"
137
-
138
- "@babel/helper-remap-async-to-generator@7.0.0-beta.42":
139
- version "7.0.0-beta.42"
140
- resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.0.0-beta.42.tgz#c27dd7789f3a9973493a67a7914ac9253e879071"
141
- dependencies:
142
- "@babel/helper-annotate-as-pure" "7.0.0-beta.42"
143
- "@babel/helper-wrap-function" "7.0.0-beta.42"
144
- "@babel/template" "7.0.0-beta.42"
145
- "@babel/traverse" "7.0.0-beta.42"
146
- "@babel/types" "7.0.0-beta.42"
147
-
148
- "@babel/helper-replace-supers@7.0.0-beta.42":
149
- version "7.0.0-beta.42"
150
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.0.0-beta.42.tgz#fd984b6022982b71a1237d82d932ab69ff988aa4"
151
- dependencies:
152
- "@babel/helper-optimise-call-expression" "7.0.0-beta.42"
153
- "@babel/template" "7.0.0-beta.42"
154
- "@babel/traverse" "7.0.0-beta.42"
155
- "@babel/types" "7.0.0-beta.42"
156
-
157
- "@babel/helper-simple-access@7.0.0-beta.42":
158
- version "7.0.0-beta.42"
159
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.0.0-beta.42.tgz#9d32bed186b0bc365115c600817e791c22d72c74"
160
- dependencies:
161
- "@babel/template" "7.0.0-beta.42"
162
- "@babel/types" "7.0.0-beta.42"
163
- lodash "^4.2.0"
164
-
165
- "@babel/helper-split-export-declaration@7.0.0-beta.42":
166
- version "7.0.0-beta.42"
167
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0-beta.42.tgz#0d0d5254220a9cc4e7e226240306b939dc210ee7"
168
- dependencies:
169
- "@babel/types" "7.0.0-beta.42"
170
-
171
- "@babel/helper-wrap-function@7.0.0-beta.42":
172
- version "7.0.0-beta.42"
173
- resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.0.0-beta.42.tgz#5ffc6576902aa2a10fe6666e063bd45029c36db3"
174
- dependencies:
175
- "@babel/helper-function-name" "7.0.0-beta.42"
176
- "@babel/template" "7.0.0-beta.42"
177
- "@babel/traverse" "7.0.0-beta.42"
178
- "@babel/types" "7.0.0-beta.42"
179
-
180
- "@babel/helpers@7.0.0-beta.42":
181
- version "7.0.0-beta.42"
182
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.0.0-beta.42.tgz#151c1c4e9da1b6ce83d54c1be5fb8c9c57aa5044"
183
- dependencies:
184
- "@babel/template" "7.0.0-beta.42"
185
- "@babel/traverse" "7.0.0-beta.42"
186
- "@babel/types" "7.0.0-beta.42"
187
-
188
- "@babel/highlight@7.0.0-beta.42":
189
- version "7.0.0-beta.42"
190
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0-beta.42.tgz#a502a1c0d6f99b2b0e81d468a1b0c0e81e3f3623"
191
- dependencies:
192
- chalk "^2.0.0"
193
- esutils "^2.0.2"
194
- js-tokens "^3.0.0"
195
-
196
- "@babel/plugin-proposal-async-generator-functions@7.0.0-beta.42":
197
- version "7.0.0-beta.42"
198
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.0.0-beta.42.tgz#81465d19b6f5559092d9be4d11d6351131d08696"
199
- dependencies:
200
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
201
- "@babel/helper-remap-async-to-generator" "7.0.0-beta.42"
202
- "@babel/plugin-syntax-async-generators" "7.0.0-beta.42"
203
-
204
- "@babel/plugin-proposal-class-properties@7.0.0-beta.42":
205
- version "7.0.0-beta.42"
206
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.0.0-beta.42.tgz#2cd29050ab997567071b65896f92afc08a620748"
207
- dependencies:
208
- "@babel/helper-function-name" "7.0.0-beta.42"
209
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
210
- "@babel/plugin-syntax-class-properties" "7.0.0-beta.42"
211
-
212
- "@babel/plugin-proposal-object-rest-spread@7.0.0-beta.42", "@babel/plugin-proposal-object-rest-spread@^7.0.0-beta.39":
213
- version "7.0.0-beta.42"
214
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.0.0-beta.42.tgz#56ebd55a8268165cb7cb43a5a232b60f5435a822"
215
- dependencies:
216
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
217
- "@babel/plugin-syntax-object-rest-spread" "7.0.0-beta.42"
218
-
219
- "@babel/plugin-proposal-optional-catch-binding@7.0.0-beta.42":
220
- version "7.0.0-beta.42"
221
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.0.0-beta.42.tgz#d885ba187d2ce6bbae0c227a67a38389c6f930f8"
222
- dependencies:
223
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
224
- "@babel/plugin-syntax-optional-catch-binding" "7.0.0-beta.42"
225
-
226
- "@babel/plugin-proposal-unicode-property-regex@7.0.0-beta.42":
227
- version "7.0.0-beta.42"
228
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.0.0-beta.42.tgz#84f209398368c194c217edd8131420e0ddb79661"
229
- dependencies:
230
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
231
- "@babel/helper-regex" "7.0.0-beta.42"
232
- regexpu-core "^4.1.3"
233
-
234
- "@babel/plugin-syntax-async-generators@7.0.0-beta.42":
235
- version "7.0.0-beta.42"
236
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.0.0-beta.42.tgz#deccff2f01c2ed280493b0ba256b14df232ca299"
237
- dependencies:
238
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
239
-
240
- "@babel/plugin-syntax-class-properties@7.0.0-beta.42":
241
- version "7.0.0-beta.42"
242
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.0.0-beta.42.tgz#80ccce27907f22d0ffb49721e9d2cde311b41459"
243
- dependencies:
244
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
245
-
246
- "@babel/plugin-syntax-dynamic-import@7.0.0-beta.34":
247
- version "7.0.0-beta.34"
248
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.0.0-beta.34.tgz#05b1e58e4c3f412edb28aa0346c14c5f13c41b46"
249
-
250
- "@babel/plugin-syntax-dynamic-import@7.0.0-beta.42":
251
- version "7.0.0-beta.42"
252
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.0.0-beta.42.tgz#90257d90098e2c9c2f49054269039eccd8bddd34"
253
- dependencies:
254
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
255
-
256
- "@babel/plugin-syntax-flow@7.0.0-beta.42":
257
- version "7.0.0-beta.42"
258
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.0.0-beta.42.tgz#cc210adacb65c6c155578e7ccee30a53d1003a23"
259
- dependencies:
260
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
261
-
262
- "@babel/plugin-syntax-jsx@7.0.0-beta.42":
263
- version "7.0.0-beta.42"
264
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.0.0-beta.42.tgz#92ef7807bbec0e12a49815a409822262cbaa7ddd"
265
- dependencies:
266
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
267
-
268
- "@babel/plugin-syntax-object-rest-spread@7.0.0-beta.42":
269
- version "7.0.0-beta.42"
270
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.0.0-beta.42.tgz#aa789865abe78a4895d4a0be9de4d34b1a1d5063"
271
- dependencies:
272
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
273
-
274
- "@babel/plugin-syntax-optional-catch-binding@7.0.0-beta.42":
275
- version "7.0.0-beta.42"
276
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.0.0-beta.42.tgz#d3ebfaa463f42f5a35be5cbd2f27c1fc3bf96c1b"
277
- dependencies:
278
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
279
-
280
- "@babel/plugin-transform-arrow-functions@7.0.0-beta.42":
281
- version "7.0.0-beta.42"
282
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.0.0-beta.42.tgz#b918eb8760c38d6503a1a9858fa073786b60ab2b"
283
- dependencies:
284
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
285
-
286
- "@babel/plugin-transform-async-to-generator@7.0.0-beta.42":
287
- version "7.0.0-beta.42"
288
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.0.0-beta.42.tgz#c74e278b9722efeb7f2c7da5fbff7540c4a7f353"
289
- dependencies:
290
- "@babel/helper-module-imports" "7.0.0-beta.42"
291
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
292
- "@babel/helper-remap-async-to-generator" "7.0.0-beta.42"
293
-
294
- "@babel/plugin-transform-block-scoped-functions@7.0.0-beta.42":
295
- version "7.0.0-beta.42"
296
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.0.0-beta.42.tgz#34742dcf409106038e413e0d64b90e98df15f9eb"
297
- dependencies:
298
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
299
-
300
- "@babel/plugin-transform-block-scoping@7.0.0-beta.42":
301
- version "7.0.0-beta.42"
302
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.0.0-beta.42.tgz#272c5cc2b46613ebcd2e19491b19263c36d2c3f4"
303
- dependencies:
304
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
305
- lodash "^4.2.0"
306
-
307
- "@babel/plugin-transform-classes@7.0.0-beta.42":
308
- version "7.0.0-beta.42"
309
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.0.0-beta.42.tgz#3b9fdb2e36f9f16b011a2ddc4ebb610e3dc9edfb"
310
- dependencies:
311
- "@babel/helper-annotate-as-pure" "7.0.0-beta.42"
312
- "@babel/helper-define-map" "7.0.0-beta.42"
313
- "@babel/helper-function-name" "7.0.0-beta.42"
314
- "@babel/helper-optimise-call-expression" "7.0.0-beta.42"
315
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
316
- "@babel/helper-replace-supers" "7.0.0-beta.42"
317
- "@babel/helper-split-export-declaration" "7.0.0-beta.42"
318
- globals "^11.1.0"
319
-
320
- "@babel/plugin-transform-computed-properties@7.0.0-beta.42":
321
- version "7.0.0-beta.42"
322
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.0.0-beta.42.tgz#153662309475099c6948827fc86edbd7fb26f09d"
323
- dependencies:
324
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
325
-
326
- "@babel/plugin-transform-destructuring@7.0.0-beta.42":
327
- version "7.0.0-beta.42"
328
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.0.0-beta.42.tgz#1aaca42a00d9ef2b0307557c748f32e83ac44899"
329
- dependencies:
330
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
331
-
332
- "@babel/plugin-transform-dotall-regex@7.0.0-beta.42":
333
- version "7.0.0-beta.42"
334
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.0.0-beta.42.tgz#af7ead30c1b6c3ea8a53973cfcfdbda9edc3c967"
335
- dependencies:
336
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
337
- "@babel/helper-regex" "7.0.0-beta.42"
338
- regexpu-core "^4.1.3"
339
-
340
- "@babel/plugin-transform-duplicate-keys@7.0.0-beta.42":
341
- version "7.0.0-beta.42"
342
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.0.0-beta.42.tgz#9678ab9480c6120e9b08014371c010bed481485a"
343
- dependencies:
344
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
345
-
346
- "@babel/plugin-transform-exponentiation-operator@7.0.0-beta.42":
347
- version "7.0.0-beta.42"
348
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.0.0-beta.42.tgz#fe637583e8d00ff6d63461e274a63dd2f373baf5"
349
- dependencies:
350
- "@babel/helper-builder-binary-assignment-operator-visitor" "7.0.0-beta.42"
351
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
352
-
353
- "@babel/plugin-transform-flow-strip-types@7.0.0-beta.42":
354
- version "7.0.0-beta.42"
355
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.0.0-beta.42.tgz#0902538b641e1a6fe5d7dc49389560112bfd4071"
356
- dependencies:
357
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
358
- "@babel/plugin-syntax-flow" "7.0.0-beta.42"
359
-
360
- "@babel/plugin-transform-for-of@7.0.0-beta.42":
361
- version "7.0.0-beta.42"
362
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.0.0-beta.42.tgz#acf51c5986050e1aff054c8d2a95ef3f6bec153e"
363
- dependencies:
364
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
365
-
366
- "@babel/plugin-transform-function-name@7.0.0-beta.42":
367
- version "7.0.0-beta.42"
368
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.0.0-beta.42.tgz#1eb004a9abde01010d47ec7629d46b1e4e2c6228"
369
- dependencies:
370
- "@babel/helper-function-name" "7.0.0-beta.42"
371
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
372
-
373
- "@babel/plugin-transform-literals@7.0.0-beta.42":
374
- version "7.0.0-beta.42"
375
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.0.0-beta.42.tgz#61a34a82d757be4ddf937eda4b2d6c36b63b9c4e"
376
- dependencies:
377
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
378
-
379
- "@babel/plugin-transform-modules-amd@7.0.0-beta.42":
380
- version "7.0.0-beta.42"
381
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.0.0-beta.42.tgz#f4c634f49b5051abf6cefcbae100b41ba1369eb6"
382
- dependencies:
383
- "@babel/helper-module-transforms" "7.0.0-beta.42"
384
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
385
-
386
- "@babel/plugin-transform-modules-commonjs@7.0.0-beta.42":
387
- version "7.0.0-beta.42"
388
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.0.0-beta.42.tgz#bdfb30e194c8841ec3ddd8a011974102d0d74afc"
389
- dependencies:
390
- "@babel/helper-module-transforms" "7.0.0-beta.42"
391
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
392
- "@babel/helper-simple-access" "7.0.0-beta.42"
393
-
394
- "@babel/plugin-transform-modules-systemjs@7.0.0-beta.42":
395
- version "7.0.0-beta.42"
396
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.0.0-beta.42.tgz#424e25542b4d6ea6ea5f933df6ec9c345358b070"
397
- dependencies:
398
- "@babel/helper-hoist-variables" "7.0.0-beta.42"
399
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
400
-
401
- "@babel/plugin-transform-modules-umd@7.0.0-beta.42":
402
- version "7.0.0-beta.42"
403
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.0.0-beta.42.tgz#2fbad368c83471c76f8dcace98492e4e3fdddc76"
404
- dependencies:
405
- "@babel/helper-module-transforms" "7.0.0-beta.42"
406
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
407
-
408
- "@babel/plugin-transform-new-target@7.0.0-beta.42":
409
- version "7.0.0-beta.42"
410
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.0.0-beta.42.tgz#8b309b67b6a92fd1ab6cb93bea0fa12359795c20"
411
- dependencies:
412
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
413
-
414
- "@babel/plugin-transform-object-super@7.0.0-beta.42":
415
- version "7.0.0-beta.42"
416
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.0.0-beta.42.tgz#f19ae6007ff675ea0f52499d09f73ae9f96db1a0"
417
- dependencies:
418
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
419
- "@babel/helper-replace-supers" "7.0.0-beta.42"
420
-
421
- "@babel/plugin-transform-parameters@7.0.0-beta.42":
422
- version "7.0.0-beta.42"
423
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.0.0-beta.42.tgz#58434afb01afb0a3aa82402142807fb70eb3fb56"
424
- dependencies:
425
- "@babel/helper-call-delegate" "7.0.0-beta.42"
426
- "@babel/helper-get-function-arity" "7.0.0-beta.42"
427
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
428
-
429
- "@babel/plugin-transform-react-constant-elements@7.0.0-beta.42", "@babel/plugin-transform-react-constant-elements@^7.0.0-beta.39":
430
- version "7.0.0-beta.42"
431
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.0.0-beta.42.tgz#d6fba3670fd57cafc4d07db831c5097528147bdc"
432
- dependencies:
433
- "@babel/helper-annotate-as-pure" "7.0.0-beta.42"
434
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
435
-
436
- "@babel/plugin-transform-react-display-name@7.0.0-beta.42":
437
- version "7.0.0-beta.42"
438
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.0.0-beta.42.tgz#48766efd74d65fb9116ede6354f73299d73e66b9"
439
- dependencies:
440
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
441
-
442
- "@babel/plugin-transform-react-jsx-self@7.0.0-beta.42":
443
- version "7.0.0-beta.42"
444
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.0.0-beta.42.tgz#f471407f6d87f5456db716ed7ed24dff6864c3de"
445
- dependencies:
446
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
447
- "@babel/plugin-syntax-jsx" "7.0.0-beta.42"
448
-
449
- "@babel/plugin-transform-react-jsx-source@7.0.0-beta.42":
450
- version "7.0.0-beta.42"
451
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.0.0-beta.42.tgz#2c41adf060e76b9f0652591cfcdaddd192a21898"
452
- dependencies:
453
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
454
- "@babel/plugin-syntax-jsx" "7.0.0-beta.42"
455
-
456
- "@babel/plugin-transform-react-jsx@7.0.0-beta.42":
457
- version "7.0.0-beta.42"
458
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.0.0-beta.42.tgz#a25731396ca87b07f10362a950deab4526345fac"
459
- dependencies:
460
- "@babel/helper-builder-react-jsx" "7.0.0-beta.42"
461
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
462
- "@babel/plugin-syntax-jsx" "7.0.0-beta.42"
463
-
464
- "@babel/plugin-transform-regenerator@7.0.0-beta.42":
465
- version "7.0.0-beta.42"
466
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0-beta.42.tgz#af164751340a7e513c53e614c6f1f90279e459ef"
467
- dependencies:
468
- regenerator-transform "^0.12.3"
469
-
470
- "@babel/plugin-transform-runtime@7.0.0-beta.42":
471
- version "7.0.0-beta.42"
472
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.0.0-beta.42.tgz#0142fa2937dd87fea10f5c7c4da9c8b8896bb740"
473
- dependencies:
474
- "@babel/helper-module-imports" "7.0.0-beta.42"
475
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
476
-
477
- "@babel/plugin-transform-shorthand-properties@7.0.0-beta.42":
478
- version "7.0.0-beta.42"
479
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.0.0-beta.42.tgz#fb0b66f4afd4a5a67d9d84a85cbf6f7fef0a7b4f"
480
- dependencies:
481
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
482
-
483
- "@babel/plugin-transform-spread@7.0.0-beta.42":
484
- version "7.0.0-beta.42"
485
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.0.0-beta.42.tgz#4d7dde45c95e55d418477e1ea95dd6d9b71f15e4"
486
- dependencies:
487
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
488
-
489
- "@babel/plugin-transform-sticky-regex@7.0.0-beta.42":
490
- version "7.0.0-beta.42"
491
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.0.0-beta.42.tgz#b0a5585ec24013dd6f0b1b8cc7a73423c4bc082f"
492
- dependencies:
493
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
494
- "@babel/helper-regex" "7.0.0-beta.42"
495
-
496
- "@babel/plugin-transform-template-literals@7.0.0-beta.42":
497
- version "7.0.0-beta.42"
498
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.0.0-beta.42.tgz#7f05c5c003da8e485462cfc36f9d482b0a9a75df"
499
- dependencies:
500
- "@babel/helper-annotate-as-pure" "7.0.0-beta.42"
501
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
502
-
503
- "@babel/plugin-transform-typeof-symbol@7.0.0-beta.42":
504
- version "7.0.0-beta.42"
505
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.0.0-beta.42.tgz#7d93fcd194db78b839488cddddefbaa46032e327"
506
- dependencies:
507
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
508
-
509
- "@babel/plugin-transform-unicode-regex@7.0.0-beta.42":
510
- version "7.0.0-beta.42"
511
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.0.0-beta.42.tgz#1e7bdcf678d9a9066d06e6d334ab41ca11ca00ad"
512
- dependencies:
513
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
514
- "@babel/helper-regex" "7.0.0-beta.42"
515
- regexpu-core "^4.1.3"
516
-
517
- "@babel/preset-env@7.0.0-beta.42", "@babel/preset-env@^7.0.0-beta.39":
518
- version "7.0.0-beta.42"
519
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.0.0-beta.42.tgz#671e688057c010b22a7811b965f7da5d79c472d3"
520
- dependencies:
521
- "@babel/helper-module-imports" "7.0.0-beta.42"
522
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
523
- "@babel/plugin-proposal-async-generator-functions" "7.0.0-beta.42"
524
- "@babel/plugin-proposal-object-rest-spread" "7.0.0-beta.42"
525
- "@babel/plugin-proposal-optional-catch-binding" "7.0.0-beta.42"
526
- "@babel/plugin-proposal-unicode-property-regex" "7.0.0-beta.42"
527
- "@babel/plugin-syntax-async-generators" "7.0.0-beta.42"
528
- "@babel/plugin-syntax-object-rest-spread" "7.0.0-beta.42"
529
- "@babel/plugin-syntax-optional-catch-binding" "7.0.0-beta.42"
530
- "@babel/plugin-transform-arrow-functions" "7.0.0-beta.42"
531
- "@babel/plugin-transform-async-to-generator" "7.0.0-beta.42"
532
- "@babel/plugin-transform-block-scoped-functions" "7.0.0-beta.42"
533
- "@babel/plugin-transform-block-scoping" "7.0.0-beta.42"
534
- "@babel/plugin-transform-classes" "7.0.0-beta.42"
535
- "@babel/plugin-transform-computed-properties" "7.0.0-beta.42"
536
- "@babel/plugin-transform-destructuring" "7.0.0-beta.42"
537
- "@babel/plugin-transform-dotall-regex" "7.0.0-beta.42"
538
- "@babel/plugin-transform-duplicate-keys" "7.0.0-beta.42"
539
- "@babel/plugin-transform-exponentiation-operator" "7.0.0-beta.42"
540
- "@babel/plugin-transform-for-of" "7.0.0-beta.42"
541
- "@babel/plugin-transform-function-name" "7.0.0-beta.42"
542
- "@babel/plugin-transform-literals" "7.0.0-beta.42"
543
- "@babel/plugin-transform-modules-amd" "7.0.0-beta.42"
544
- "@babel/plugin-transform-modules-commonjs" "7.0.0-beta.42"
545
- "@babel/plugin-transform-modules-systemjs" "7.0.0-beta.42"
546
- "@babel/plugin-transform-modules-umd" "7.0.0-beta.42"
547
- "@babel/plugin-transform-new-target" "7.0.0-beta.42"
548
- "@babel/plugin-transform-object-super" "7.0.0-beta.42"
549
- "@babel/plugin-transform-parameters" "7.0.0-beta.42"
550
- "@babel/plugin-transform-regenerator" "7.0.0-beta.42"
551
- "@babel/plugin-transform-shorthand-properties" "7.0.0-beta.42"
552
- "@babel/plugin-transform-spread" "7.0.0-beta.42"
553
- "@babel/plugin-transform-sticky-regex" "7.0.0-beta.42"
554
- "@babel/plugin-transform-template-literals" "7.0.0-beta.42"
555
- "@babel/plugin-transform-typeof-symbol" "7.0.0-beta.42"
556
- "@babel/plugin-transform-unicode-regex" "7.0.0-beta.42"
557
- browserslist "^3.0.0"
558
- invariant "^2.2.2"
559
- semver "^5.3.0"
560
-
561
- "@babel/preset-flow@7.0.0-beta.42":
562
- version "7.0.0-beta.42"
563
- resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.0.0-beta.42.tgz#580d8d1e418ac1bd0032436a02639267ebdbe1c7"
564
- dependencies:
565
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
566
- "@babel/plugin-transform-flow-strip-types" "7.0.0-beta.42"
567
-
568
- "@babel/preset-react@7.0.0-beta.42", "@babel/preset-react@^7.0.0-beta.39":
569
- version "7.0.0-beta.42"
570
- resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0-beta.42.tgz#e7a15ee1ab5305d5f8efd43cce01123e2bfdcc9d"
571
- dependencies:
572
- "@babel/helper-plugin-utils" "7.0.0-beta.42"
573
- "@babel/plugin-syntax-jsx" "7.0.0-beta.42"
574
- "@babel/plugin-transform-react-display-name" "7.0.0-beta.42"
575
- "@babel/plugin-transform-react-jsx" "7.0.0-beta.42"
576
- "@babel/plugin-transform-react-jsx-self" "7.0.0-beta.42"
577
- "@babel/plugin-transform-react-jsx-source" "7.0.0-beta.42"
578
-
579
- "@babel/runtime@7.0.0-beta.42":
580
- version "7.0.0-beta.42"
581
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.0.0-beta.42.tgz#352e40c92e0460d3e82f49bd7e79f6cda76f919f"
582
- dependencies:
583
- core-js "^2.5.3"
584
- regenerator-runtime "^0.11.1"
585
-
586
- "@babel/template@7.0.0-beta.42":
587
- version "7.0.0-beta.42"
588
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.42.tgz#7186d4e70d44cdec975049ba0a73bdaf5cdee052"
589
- dependencies:
590
- "@babel/code-frame" "7.0.0-beta.42"
591
- "@babel/types" "7.0.0-beta.42"
592
- babylon "7.0.0-beta.42"
593
- lodash "^4.2.0"
594
-
595
- "@babel/traverse@7.0.0-beta.42", "@babel/traverse@^7.0.0-beta.40":
596
- version "7.0.0-beta.42"
597
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.42.tgz#f4bf4d1e33d41baf45205e2d0463591d57326285"
598
- dependencies:
599
- "@babel/code-frame" "7.0.0-beta.42"
600
- "@babel/generator" "7.0.0-beta.42"
601
- "@babel/helper-function-name" "7.0.0-beta.42"
602
- "@babel/helper-split-export-declaration" "7.0.0-beta.42"
603
- "@babel/types" "7.0.0-beta.42"
604
- babylon "7.0.0-beta.42"
605
- debug "^3.1.0"
606
- globals "^11.1.0"
607
- invariant "^2.2.0"
608
- lodash "^4.2.0"
609
-
610
- "@babel/types@7.0.0-beta.42", "@babel/types@^7.0.0-beta.40":
611
- version "7.0.0-beta.42"
612
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.42.tgz#1e2118767684880f6963801b272fd2b3348efacc"
613
- dependencies:
614
- esutils "^2.0.2"
615
- lodash "^4.2.0"
616
- to-fast-properties "^2.0.0"
617
-
618
- "@types/node@*":
619
- version "9.6.0"
620
- resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.0.tgz#d3480ee666df9784b1001a1872a2f6ccefb6c2d7"
621
-
622
- abab@^1.0.3, abab@^1.0.4:
623
- version "1.0.4"
624
- resolved "https://registry.yarnpkg.com/abab/-/abab-1.0.4.tgz#5faad9c2c07f60dd76770f71cf025b62a63cfd4e"
625
-
626
- abbrev@1:
627
- version "1.1.1"
628
- resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
629
-
630
- accepts@~1.3.4, accepts@~1.3.5:
631
- version "1.3.5"
632
- resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.5.tgz#eb777df6011723a3b14e8a72c0805c8e86746bd2"
633
- dependencies:
634
- mime-types "~2.1.18"
635
- negotiator "0.6.1"
636
-
637
- acorn-dynamic-import@^2.0.0:
638
- version "2.0.2"
639
- resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz#c752bd210bef679501b6c6cb7fc84f8f47158cc4"
640
- dependencies:
641
- acorn "^4.0.3"
642
-
643
- acorn-globals@^3.1.0:
644
- version "3.1.0"
645
- resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-3.1.0.tgz#fd8270f71fbb4996b004fa880ee5d46573a731bf"
646
- dependencies:
647
- acorn "^4.0.4"
648
-
649
- acorn-globals@^4.1.0:
650
- version "4.1.0"
651
- resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.1.0.tgz#ab716025dbe17c54d3ef81d32ece2b2d99fe2538"
652
- dependencies:
653
- acorn "^5.0.0"
654
-
655
- acorn-jsx@^3.0.0:
656
- version "3.0.1"
657
- resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b"
658
- dependencies:
659
- acorn "^3.0.4"
660
-
661
- acorn@^3.0.4:
662
- version "3.3.0"
663
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
664
-
665
- acorn@^4.0.3, acorn@^4.0.4:
666
- version "4.0.13"
667
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-4.0.13.tgz#105495ae5361d697bd195c825192e1ad7f253787"
668
-
669
- acorn@^5.0.0, acorn@^5.3.0, acorn@^5.5.0:
670
- version "5.5.3"
671
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.3.tgz#f473dd47e0277a08e28e9bec5aeeb04751f0b8c9"
672
-
673
- address@1.0.3, address@^1.0.1:
674
- version "1.0.3"
675
- resolved "https://registry.yarnpkg.com/address/-/address-1.0.3.tgz#b5f50631f8d6cec8bd20c963963afb55e06cbce9"
676
-
677
- ajv-keywords@^2.0.0:
678
- version "2.1.1"
679
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762"
680
-
681
- ajv-keywords@^3.0.0, ajv-keywords@^3.1.0:
682
- version "3.1.0"
683
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.1.0.tgz#ac2b27939c543e95d2c06e7f7f5c27be4aa543be"
684
-
685
- ajv@^4.9.1:
686
- version "4.11.8"
687
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536"
688
- dependencies:
689
- co "^4.6.0"
690
- json-stable-stringify "^1.0.1"
691
-
692
- ajv@^5.0.0, ajv@^5.1.0, ajv@^5.1.5, ajv@^5.3.0:
693
- version "5.5.2"
694
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965"
695
- dependencies:
696
- co "^4.6.0"
697
- fast-deep-equal "^1.0.0"
698
- fast-json-stable-stringify "^2.0.0"
699
- json-schema-traverse "^0.3.0"
700
-
701
- ajv@^6.0.1, ajv@^6.1.0:
702
- version "6.3.0"
703
- resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.3.0.tgz#1650a41114ef00574cac10b8032d8f4c14812da7"
704
- dependencies:
705
- fast-deep-equal "^1.0.0"
706
- fast-json-stable-stringify "^2.0.0"
707
- json-schema-traverse "^0.3.0"
708
-
709
- align-text@^0.1.1, align-text@^0.1.3:
710
- version "0.1.4"
711
- resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117"
712
- dependencies:
713
- kind-of "^3.0.2"
714
- longest "^1.0.1"
715
- repeat-string "^1.5.2"
716
-
717
- alphanum-sort@^1.0.1, alphanum-sort@^1.0.2:
718
- version "1.0.2"
719
- resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
720
-
721
- amdefine@>=0.0.4:
722
- version "1.0.1"
723
- resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5"
724
-
725
- ansi-escapes@^3.0.0:
726
- version "3.0.0"
727
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92"
728
-
729
- ansi-html@0.0.7:
730
- version "0.0.7"
731
- resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
732
-
733
- ansi-regex@^2.0.0:
734
- version "2.1.1"
735
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
736
-
737
- ansi-regex@^3.0.0:
738
- version "3.0.0"
739
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
740
-
741
- ansi-styles@^2.2.1:
742
- version "2.2.1"
743
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
744
-
745
- ansi-styles@^3.1.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1:
746
- version "3.2.1"
747
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
748
- dependencies:
749
- color-convert "^1.9.0"
750
-
751
- any-promise@^1.0.0:
752
- version "1.3.0"
753
- resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
754
-
755
- anymatch@^2.0.0:
756
- version "2.0.0"
757
- resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
758
- dependencies:
759
- micromatch "^3.1.4"
760
- normalize-path "^2.1.1"
761
-
762
- append-transform@^0.4.0:
763
- version "0.4.0"
764
- resolved "https://registry.yarnpkg.com/append-transform/-/append-transform-0.4.0.tgz#d76ebf8ca94d276e247a36bad44a4b74ab611991"
765
- dependencies:
766
- default-require-extensions "^1.0.0"
767
-
768
- aproba@^1.0.3, aproba@^1.1.1:
769
- version "1.2.0"
770
- resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
771
-
772
- archiver-utils@^1.3.0:
773
- version "1.3.0"
774
- resolved "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-1.3.0.tgz#e50b4c09c70bf3d680e32ff1b7994e9f9d895174"
775
- dependencies:
776
- glob "^7.0.0"
777
- graceful-fs "^4.1.0"
778
- lazystream "^1.0.0"
779
- lodash "^4.8.0"
780
- normalize-path "^2.0.0"
781
- readable-stream "^2.0.0"
782
-
783
- archiver@^1.3.0:
784
- version "1.3.0"
785
- resolved "https://registry.yarnpkg.com/archiver/-/archiver-1.3.0.tgz#4f2194d6d8f99df3f531e6881f14f15d55faaf22"
786
- dependencies:
787
- archiver-utils "^1.3.0"
788
- async "^2.0.0"
789
- buffer-crc32 "^0.2.1"
790
- glob "^7.0.0"
791
- lodash "^4.8.0"
792
- readable-stream "^2.0.0"
793
- tar-stream "^1.5.0"
794
- walkdir "^0.0.11"
795
- zip-stream "^1.1.0"
796
-
797
- are-we-there-yet@~1.1.2:
798
- version "1.1.4"
799
- resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d"
800
- dependencies:
801
- delegates "^1.0.0"
802
- readable-stream "^2.0.6"
803
-
804
- argparse@^1.0.2, argparse@^1.0.7:
805
- version "1.0.10"
806
- resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
807
- dependencies:
808
- sprintf-js "~1.0.2"
809
-
810
- aria-query@^0.7.0:
811
- version "0.7.1"
812
- resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.7.1.tgz#26cbb5aff64144b0a825be1846e0b16cfa00b11e"
813
- dependencies:
814
- ast-types-flow "0.0.7"
815
- commander "^2.11.0"
816
-
817
- arr-diff@^2.0.0:
818
- version "2.0.0"
819
- resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf"
820
- dependencies:
821
- arr-flatten "^1.0.1"
822
-
823
- arr-diff@^4.0.0:
824
- version "4.0.0"
825
- resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
826
-
827
- arr-flatten@^1.0.1, arr-flatten@^1.1.0:
828
- version "1.1.0"
829
- resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
830
-
831
- arr-union@^3.1.0:
832
- version "3.1.0"
833
- resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
834
-
835
- array-equal@^1.0.0:
836
- version "1.0.0"
837
- resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
838
-
839
- array-filter@~0.0.0:
840
- version "0.0.1"
841
- resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-0.0.1.tgz#7da8cf2e26628ed732803581fd21f67cacd2eeec"
842
-
843
- array-find-index@^1.0.1:
844
- version "1.0.2"
845
- resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
846
-
847
- array-flatten@1.1.1:
848
- version "1.1.1"
849
- resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
850
-
851
- array-flatten@^2.1.0:
852
- version "2.1.1"
853
- resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.1.tgz#426bb9da84090c1838d812c8150af20a8331e296"
854
-
855
- array-includes@^3.0.3:
856
- version "3.0.3"
857
- resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d"
858
- dependencies:
859
- define-properties "^1.1.2"
860
- es-abstract "^1.7.0"
861
-
862
- array-map@~0.0.0:
863
- version "0.0.0"
864
- resolved "https://registry.yarnpkg.com/array-map/-/array-map-0.0.0.tgz#88a2bab73d1cf7bcd5c1b118a003f66f665fa662"
865
-
866
- array-reduce@~0.0.0:
867
- version "0.0.0"
868
- resolved "https://registry.yarnpkg.com/array-reduce/-/array-reduce-0.0.0.tgz#173899d3ffd1c7d9383e4479525dbe278cab5f2b"
869
-
870
- array-union@^1.0.1:
871
- version "1.0.2"
872
- resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
873
- dependencies:
874
- array-uniq "^1.0.1"
875
-
876
- array-uniq@^1.0.1:
877
- version "1.0.3"
878
- resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
879
-
880
- array-unique@^0.2.1:
881
- version "0.2.1"
882
- resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53"
883
-
884
- array-unique@^0.3.2:
885
- version "0.3.2"
886
- resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
887
-
888
- arrify@^1.0.0, arrify@^1.0.1:
889
- version "1.0.1"
890
- resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
891
-
892
- asap@~2.0.3:
893
- version "2.0.6"
894
- resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46"
895
-
896
- asn1.js@^4.0.0:
897
- version "4.10.1"
898
- resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"
899
- dependencies:
900
- bn.js "^4.0.0"
901
- inherits "^2.0.1"
902
- minimalistic-assert "^1.0.0"
903
-
904
- asn1@~0.2.3:
905
- version "0.2.3"
906
- resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86"
907
-
908
- assert-plus@1.0.0, assert-plus@^1.0.0:
909
- version "1.0.0"
910
- resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
911
-
912
- assert-plus@^0.2.0:
913
- version "0.2.0"
914
- resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.2.0.tgz#d74e1b87e7affc0db8aadb7021f3fe48101ab234"
915
-
916
- assert@^1.1.1:
917
- version "1.4.1"
918
- resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
919
- dependencies:
920
- util "0.10.3"
921
-
922
- assign-symbols@^1.0.0:
923
- version "1.0.0"
924
- resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
925
-
926
- ast-types-flow@0.0.7:
927
- version "0.0.7"
928
- resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
929
-
930
- astral-regex@^1.0.0:
931
- version "1.0.0"
932
- resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
933
-
934
- async-each@^1.0.0:
935
- version "1.0.1"
936
- resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d"
937
-
938
- async-limiter@~1.0.0:
939
- version "1.0.0"
940
- resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
941
-
942
- async@^1.4.0, async@^1.5.2, async@~1.5.2:
943
- version "1.5.2"
944
- resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
945
-
946
- async@^2.0.0, async@^2.1.2, async@^2.1.4, async@^2.3.0, async@^2.4.1:
947
- version "2.6.0"
948
- resolved "https://registry.yarnpkg.com/async/-/async-2.6.0.tgz#61a29abb6fcc026fea77e56d1c6ec53a795951f4"
949
- dependencies:
950
- lodash "^4.14.0"
951
-
952
- asynckit@^0.4.0:
953
- version "0.4.0"
954
- resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
955
-
956
- atob@^2.0.0:
957
- version "2.0.3"
958
- resolved "https://registry.yarnpkg.com/atob/-/atob-2.0.3.tgz#19c7a760473774468f20b2d2d03372ad7d4cbf5d"
959
-
960
- autoprefixer@7.2.5:
961
- version "7.2.5"
962
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-7.2.5.tgz#04ccbd0c6a61131b6d13f53d371926092952d192"
963
- dependencies:
964
- browserslist "^2.11.1"
965
- caniuse-lite "^1.0.30000791"
966
- normalize-range "^0.1.2"
967
- num2fraction "^1.2.2"
968
- postcss "^6.0.16"
969
- postcss-value-parser "^3.2.3"
970
-
971
- autoprefixer@^6.3.1:
972
- version "6.7.7"
973
- resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014"
974
- dependencies:
975
- browserslist "^1.7.6"
976
- caniuse-db "^1.0.30000634"
977
- normalize-range "^0.1.2"
978
- num2fraction "^1.2.2"
979
- postcss "^5.2.16"
980
- postcss-value-parser "^3.2.3"
981
-
982
- aws-sign2@~0.6.0:
983
- version "0.6.0"
984
- resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
985
-
986
- aws-sign2@~0.7.0:
987
- version "0.7.0"
988
- resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
989
-
990
- aws4@^1.2.1, aws4@^1.6.0:
991
- version "1.6.0"
992
- resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e"
993
-
994
- axobject-query@^0.1.0:
995
- version "0.1.0"
996
- resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-0.1.0.tgz#62f59dbc59c9f9242759ca349960e7a2fe3c36c0"
997
- dependencies:
998
- ast-types-flow "0.0.7"
999
-
1000
- babel-code-frame@^6.22.0, babel-code-frame@^6.26.0:
1001
- version "6.26.0"
1002
- resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
1003
- dependencies:
1004
- chalk "^1.1.3"
1005
- esutils "^2.0.2"
1006
- js-tokens "^3.0.2"
1007
-
1008
- babel-core@7.0.0-bridge.0:
1009
- version "7.0.0-bridge.0"
1010
- resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-7.0.0-bridge.0.tgz#95a492ddd90f9b4e9a4a1da14eb335b87b634ece"
1011
-
1012
- babel-core@^6.0.0, babel-core@^6.26.0:
1013
- version "6.26.0"
1014
- resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.0.tgz#af32f78b31a6fcef119c87b0fd8d9753f03a0bb8"
1015
- dependencies:
1016
- babel-code-frame "^6.26.0"
1017
- babel-generator "^6.26.0"
1018
- babel-helpers "^6.24.1"
1019
- babel-messages "^6.23.0"
1020
- babel-register "^6.26.0"
1021
- babel-runtime "^6.26.0"
1022
- babel-template "^6.26.0"
1023
- babel-traverse "^6.26.0"
1024
- babel-types "^6.26.0"
1025
- babylon "^6.18.0"
1026
- convert-source-map "^1.5.0"
1027
- debug "^2.6.8"
1028
- json5 "^0.5.1"
1029
- lodash "^4.17.4"
1030
- minimatch "^3.0.4"
1031
- path-is-absolute "^1.0.1"
1032
- private "^0.1.7"
1033
- slash "^1.0.0"
1034
- source-map "^0.5.6"
1035
-
1036
- babel-eslint@8.2.2:
1037
- version "8.2.2"
1038
- resolved "http://registry.npmjs.org/babel-eslint/-/babel-eslint-8.2.2.tgz#1102273354c6f0b29b4ea28a65f97d122296b68b"
1039
- dependencies:
1040
- "@babel/code-frame" "^7.0.0-beta.40"
1041
- "@babel/traverse" "^7.0.0-beta.40"
1042
- "@babel/types" "^7.0.0-beta.40"
1043
- babylon "^7.0.0-beta.40"
1044
- eslint-scope "~3.7.1"
1045
- eslint-visitor-keys "^1.0.0"
1046
-
1047
- babel-generator@^6.18.0, babel-generator@^6.26.0:
1048
- version "6.26.1"
1049
- resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90"
1050
- dependencies:
1051
- babel-messages "^6.23.0"
1052
- babel-runtime "^6.26.0"
1053
- babel-types "^6.26.0"
1054
- detect-indent "^4.0.0"
1055
- jsesc "^1.3.0"
1056
- lodash "^4.17.4"
1057
- source-map "^0.5.7"
1058
- trim-right "^1.0.1"
1059
-
1060
- babel-helpers@^6.24.1:
1061
- version "6.24.1"
1062
- resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2"
1063
- dependencies:
1064
- babel-runtime "^6.22.0"
1065
- babel-template "^6.24.1"
1066
-
1067
- babel-jest@22.1.0:
1068
- version "22.1.0"
1069
- resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.1.0.tgz#7fae6f655fffe77e818a8c2868c754a42463fdfd"
1070
- dependencies:
1071
- babel-plugin-istanbul "^4.1.5"
1072
- babel-preset-jest "^22.1.0"
1073
-
1074
- babel-jest@^22.4.3:
1075
- version "22.4.3"
1076
- resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.4.3.tgz#4b7a0b6041691bbd422ab49b3b73654a49a6627a"
1077
- dependencies:
1078
- babel-plugin-istanbul "^4.1.5"
1079
- babel-preset-jest "^22.4.3"
1080
-
1081
- babel-loader@8.0.0-beta.0:
1082
- version "8.0.0-beta.0"
1083
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.0-beta.0.tgz#b85c3b52d1095949125c72c7ec1fa0fbb47a11ff"
1084
- dependencies:
1085
- find-cache-dir "^1.0.0"
1086
- loader-utils "^1.0.2"
1087
- mkdirp "^0.5.1"
1088
-
1089
- babel-messages@^6.23.0:
1090
- version "6.23.0"
1091
- resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
1092
- dependencies:
1093
- babel-runtime "^6.22.0"
1094
-
1095
- babel-plugin-istanbul@^4.1.5:
1096
- version "4.1.5"
1097
- resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz#6760cdd977f411d3e175bb064f2bc327d99b2b6e"
1098
- dependencies:
1099
- find-up "^2.1.0"
1100
- istanbul-lib-instrument "^1.7.5"
1101
- test-exclude "^4.1.1"
1102
-
1103
- babel-plugin-jest-hoist@^22.4.3:
1104
- version "22.4.3"
1105
- resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-22.4.3.tgz#7d8bcccadc2667f96a0dcc6afe1891875ee6c14a"
1106
-
1107
- babel-plugin-macros@2.0.0:
1108
- version "2.0.0"
1109
- resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.0.0.tgz#fd3aee135f7dec0b82898b7c8f1aed6fa75f9af9"
1110
- dependencies:
1111
- cosmiconfig "3.1.0"
1112
-
1113
- babel-plugin-named-asset-import@^1.0.0-alpha.0:
1114
- version "1.0.0-next.b2fd8db8"
1115
- resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-1.0.0-next.b2fd8db8.tgz#bd32f356288cbab326196b5f75547bc0dedf540a"
1116
-
1117
- babel-plugin-syntax-object-rest-spread@^6.13.0:
1118
- version "6.13.0"
1119
- resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
1120
-
1121
- babel-plugin-transform-dynamic-import@2.0.0:
1122
- version "2.0.0"
1123
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-dynamic-import/-/babel-plugin-transform-dynamic-import-2.0.0.tgz#b647ad73e5050964bdf74297587120f0e9e57703"
1124
- dependencies:
1125
- "@babel/plugin-syntax-dynamic-import" "7.0.0-beta.34"
1126
-
1127
- babel-plugin-transform-react-remove-prop-types@0.4.12:
1128
- version "0.4.12"
1129
- resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.12.tgz#a382c27c42d6580748c80caf8c3d5091edbb60b8"
1130
-
1131
- babel-preset-divi-extension@^1.0.0:
1132
- version "1.0.0"
1133
- resolved "https://registry.yarnpkg.com/babel-preset-divi-extension/-/babel-preset-divi-extension-1.0.0.tgz#33378c4bf077bdfc875080c56fc042763d7f6705"
1134
- dependencies:
1135
- "@babel/core" "7.0.0-beta.42"
1136
- "@babel/plugin-proposal-class-properties" "7.0.0-beta.42"
1137
- "@babel/plugin-syntax-dynamic-import" "7.0.0-beta.42"
1138
- "@babel/plugin-transform-classes" "7.0.0-beta.42"
1139
- "@babel/plugin-transform-destructuring" "7.0.0-beta.42"
1140
- "@babel/plugin-transform-react-constant-elements" "7.0.0-beta.42"
1141
- "@babel/plugin-transform-react-display-name" "7.0.0-beta.42"
1142
- "@babel/plugin-transform-react-jsx" "7.0.0-beta.42"
1143
- "@babel/plugin-transform-regenerator" "7.0.0-beta.42"
1144
- "@babel/plugin-transform-runtime" "7.0.0-beta.42"
1145
- "@babel/preset-env" "7.0.0-beta.42"
1146
- "@babel/preset-flow" "7.0.0-beta.42"
1147
- "@babel/preset-react" "7.0.0-beta.42"
1148
- babel-plugin-macros "2.0.0"
1149
- babel-plugin-transform-dynamic-import "2.0.0"
1150
- babel-plugin-transform-react-remove-prop-types "0.4.12"
1151
-
1152
- babel-preset-jest@^22.1.0, babel-preset-jest@^22.4.3:
1153
- version "22.4.3"
1154
- resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-22.4.3.tgz#e92eef9813b7026ab4ca675799f37419b5a44156"
1155
- dependencies:
1156
- babel-plugin-jest-hoist "^22.4.3"
1157
- babel-plugin-syntax-object-rest-spread "^6.13.0"
1158
-
1159
- babel-register@^6.26.0:
1160
- version "6.26.0"
1161
- resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071"
1162
- dependencies:
1163
- babel-core "^6.26.0"
1164
- babel-runtime "^6.26.0"
1165
- core-js "^2.5.0"
1166
- home-or-tmp "^2.0.0"
1167
- lodash "^4.17.4"
1168
- mkdirp "^0.5.1"
1169
- source-map-support "^0.4.15"
1170
-
1171
- babel-runtime@^6.22.0, babel-runtime@^6.26.0:
1172
- version "6.26.0"
1173
- resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
1174
- dependencies:
1175
- core-js "^2.4.0"
1176
- regenerator-runtime "^0.11.0"
1177
-
1178
- babel-template@^6.16.0, babel-template@^6.24.1, babel-template@^6.26.0:
1179
- version "6.26.0"
1180
- resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02"
1181
- dependencies:
1182
- babel-runtime "^6.26.0"
1183
- babel-traverse "^6.26.0"
1184
- babel-types "^6.26.0"
1185
- babylon "^6.18.0"
1186
- lodash "^4.17.4"
1187
-
1188
- babel-traverse@^6.18.0, babel-traverse@^6.26.0:
1189
- version "6.26.0"
1190
- resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"
1191
- dependencies:
1192
- babel-code-frame "^6.26.0"
1193
- babel-messages "^6.23.0"
1194
- babel-runtime "^6.26.0"
1195
- babel-types "^6.26.0"
1196
- babylon "^6.18.0"
1197
- debug "^2.6.8"
1198
- globals "^9.18.0"
1199
- invariant "^2.2.2"
1200
- lodash "^4.17.4"
1201
-
1202
- babel-types@^6.18.0, babel-types@^6.26.0:
1203
- version "6.26.0"
1204
- resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497"
1205
- dependencies:
1206
- babel-runtime "^6.26.0"
1207
- esutils "^2.0.2"
1208
- lodash "^4.17.4"
1209
- to-fast-properties "^1.0.3"
1210
-
1211
- babylon@7.0.0-beta.42, babylon@^7.0.0-beta.40:
1212
- version "7.0.0-beta.42"
1213
- resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.42.tgz#67cfabcd4f3ec82999d29031ccdea89d0ba99657"
1214
-
1215
- babylon@^6.18.0:
1216
- version "6.18.0"
1217
- resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
1218
-
1219
- balanced-match@^0.4.2:
1220
- version "0.4.2"
1221
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838"
1222
-
1223
- balanced-match@^1.0.0:
1224
- version "1.0.0"
1225
- resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
1226
-
1227
- base64-js@^1.0.2:
1228
- version "1.2.3"
1229
- resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.2.3.tgz#fb13668233d9614cf5fb4bce95a9ba4096cdf801"
1230
-
1231
- base@^0.11.1:
1232
- version "0.11.2"
1233
- resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
1234
- dependencies:
1235
- cache-base "^1.0.1"
1236
- class-utils "^0.3.5"
1237
- component-emitter "^1.2.1"
1238
- define-property "^1.0.0"
1239
- isobject "^3.0.1"
1240
- mixin-deep "^1.2.0"
1241
- pascalcase "^0.1.1"
1242
-
1243
- batch@0.6.1:
1244
- version "0.6.1"
1245
- resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
1246
-
1247
- bcrypt-pbkdf@^1.0.0:
1248
- version "1.0.1"
1249
- resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d"
1250
- dependencies:
1251
- tweetnacl "^0.14.3"
1252
-
1253
- big.js@^3.1.3:
1254
- version "3.2.0"
1255
- resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e"
1256
-
1257
- binary-extensions@^1.0.0:
1258
- version "1.11.0"
1259
- resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.11.0.tgz#46aa1751fb6a2f93ee5e689bb1087d4b14c6c205"
1260
-
1261
- bl@^1.0.0:
1262
- version "1.2.2"
1263
- resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c"
1264
- dependencies:
1265
- readable-stream "^2.3.5"
1266
- safe-buffer "^5.1.1"
1267
-
1268
- block-stream@*:
1269
- version "0.0.9"
1270
- resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a"
1271
- dependencies:
1272
- inherits "~2.0.0"
1273
-
1274
- bluebird@^3.4.1, bluebird@^3.4.7, bluebird@^3.5.1:
1275
- version "3.5.1"
1276
- resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9"
1277
-
1278
- bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
1279
- version "4.11.8"
1280
- resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
1281
-
1282
- body-parser@1.18.2:
1283
- version "1.18.2"
1284
- resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.18.2.tgz#87678a19d84b47d859b83199bd59bce222b10454"
1285
- dependencies:
1286
- bytes "3.0.0"
1287
- content-type "~1.0.4"
1288
- debug "2.6.9"
1289
- depd "~1.1.1"
1290
- http-errors "~1.6.2"
1291
- iconv-lite "0.4.19"
1292
- on-finished "~2.3.0"
1293
- qs "6.5.1"
1294
- raw-body "2.3.2"
1295
- type-is "~1.6.15"
1296
-
1297
- bonjour@^3.5.0:
1298
- version "3.5.0"
1299
- resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"
1300
- dependencies:
1301
- array-flatten "^2.1.0"
1302
- deep-equal "^1.0.1"
1303
- dns-equal "^1.0.0"
1304
- dns-txt "^2.0.2"
1305
- multicast-dns "^6.0.1"
1306
- multicast-dns-service-types "^1.1.0"
1307
-
1308
- boolbase@^1.0.0, boolbase@~1.0.0:
1309
- version "1.0.0"
1310
- resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
1311
-
1312
- boom@2.x.x:
1313
- version "2.10.1"
1314
- resolved "https://registry.yarnpkg.com/boom/-/boom-2.10.1.tgz#39c8918ceff5799f83f9492a848f625add0c766f"
1315
- dependencies:
1316
- hoek "2.x.x"
1317
-
1318
- boom@4.x.x:
1319
- version "4.3.1"
1320
- resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31"
1321
- dependencies:
1322
- hoek "4.x.x"
1323
-
1324
- boom@5.x.x:
1325
- version "5.2.0"
1326
- resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02"
1327
- dependencies:
1328
- hoek "4.x.x"
1329
-
1330
- brace-expansion@^1.0.0, brace-expansion@^1.1.7:
1331
- version "1.1.11"
1332
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
1333
- dependencies:
1334
- balanced-match "^1.0.0"
1335
- concat-map "0.0.1"
1336
-
1337
- braces@^1.8.2:
1338
- version "1.8.5"
1339
- resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7"
1340
- dependencies:
1341
- expand-range "^1.8.1"
1342
- preserve "^0.2.0"
1343
- repeat-element "^1.1.2"
1344
-
1345
- braces@^2.3.0, braces@^2.3.1:
1346
- version "2.3.1"
1347
- resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.1.tgz#7086c913b4e5a08dbe37ac0ee6a2500c4ba691bb"
1348
- dependencies:
1349
- arr-flatten "^1.1.0"
1350
- array-unique "^0.3.2"
1351
- define-property "^1.0.0"
1352
- extend-shallow "^2.0.1"
1353
- fill-range "^4.0.0"
1354