station 0.0.102 → 0.0.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 731c9ae04b6db8aabd750d8a19a35f6c7a561fa1ef1dfebeaa4038b182c288f2
4
- data.tar.gz: 80ebc07b60b8757bbcca9469fe64d5fdc7c123cf84e20fc9ffedd912570d07de
3
+ metadata.gz: 83274e9df9e58a2f14ad94ec74c5de0e94d0742d4d4766c816b16d380c2004fd
4
+ data.tar.gz: c190e452b0a4d33f4398233e970c1c014831683e973883ad16e4cc6454a7d74e
5
5
  SHA512:
6
- metadata.gz: 41c85d4da7b9c1546150b05dcd717a8ce2b5bfc52d92cef4741858d07b58f79995a782aea88e904109b0c5978f390d0962d5789becca2a9cf216e8297f3ead86
7
- data.tar.gz: ac8d0143cc76403a1138663d7a3120d0a3b292a7ecfff5aca371d7aef01dc99750961a2786a23deb47f02922c81772cbb53803703d55e5bb868065b6312b7e1f
6
+ metadata.gz: 6595905dc9ef4194076d6e83e53bd6eb61ca1ed6d9dda1631c83681cc76803c2b85753a4612974995da1fb33cc3b6d9051567aefddd90381f7f7c8b9cbc0467b
7
+ data.tar.gz: 65bc330edcbd32286fcc85ab8614ced827418852380aa21a44b0286f8b565db310ca9feb72f1b525297f56e38c731f56ee3f12a3e65f581a73e9749f49d5194d
@@ -44,50 +44,7 @@ end.parse!
44
44
  $LOAD_PATH.unshift(File.expand_path('../lib/nexmo_developer', __dir__))
45
45
  APP_PATH = File.expand_path('../lib/nexmo_developer/config/application', __dir__)
46
46
 
47
- require 'rails/all'
48
- require 'activeadmin'
49
- require 'bootsnap'
50
- require 'bugsnag'
51
- require 'devise'
52
- require 'geocoder'
53
- require 'gravatar_image_tag'
54
- require 'greenhouse_io'
55
- require 'recaptcha'
56
- require 'split/dashboard'
57
- require 'listen'
58
- require 'inherited_resources'
59
- require 'msgpack'
60
- require 'pg'
61
- require 'coffee-rails'
62
- require 'octokit'
63
- require 'webpacker'
64
- require 'clipboard/rails'
65
- require 'gmaps4rails'
66
- require 'nexmo_markdown_renderer'
67
- require 'truncato'
68
- require 'puma'
69
- require 'barnes'
70
- require 'woothee'
71
- require 'algoliasearch'
72
- require 'rest-client'
73
- require 'chartkick'
74
- require 'groupdate'
75
- require 'terminal-table'
76
- require 'lograge'
77
- require 'jbuilder'
78
- require 'nokogiri'
79
- require 'colorize'
80
- require 'neatjson'
81
- require 'slack-notifier'
82
- require 'autoprefixer-rails'
83
- require 'titleize'
84
- require 'countries'
85
- require 'country_select'
86
- require 'smartling'
87
- require 'newrelic_rpm'
88
- require 'redis'
89
- require 'rake'
90
-
47
+ require_relative '../lib/nexmo_developer/nexmo_developer'
91
48
  require 'config/application'
92
49
  require 'rails/command'
93
50
 
@@ -93,7 +93,7 @@ GEM
93
93
  activesupport (>= 3.0.0, < 6.1)
94
94
  ruby2_keywords (>= 0.0.2, < 1.0)
95
95
  ast (2.4.1)
96
- autoprefixer-rails (10.0.2.0)
96
+ autoprefixer-rails (10.0.3.0)
97
97
  execjs
98
98
  awesome_print (1.8.0)
99
99
  banzai (0.1.3)
@@ -114,7 +114,7 @@ GEM
114
114
  concurrent-ruby (~> 1.0)
115
115
  builder (3.2.4)
116
116
  byebug (11.1.3)
117
- capybara (3.33.0)
117
+ capybara (3.34.0)
118
118
  addressable
119
119
  mini_mime (>= 0.1.3)
120
120
  nokogiri (~> 1.8)
@@ -38,8 +38,8 @@ class SidenavItem
38
38
 
39
39
  def css_classes
40
40
  classes = ['Nxd-sidenav-badge Vlt-badge Vlt-badge--margin-left Vlt-badge--small']
41
- classes << 'Vlt-bg-green-lighter Vlt-green' if label.casecmp('beta').zero?
42
- classes << 'Vlt-bg-blue-lighter Vlt-blue' if label.casecmp('dev preview').zero?
41
+ classes << 'Vlt-badge--transparent Vlt-badge--green' if label.casecmp('beta').zero?
42
+ classes << 'Vlt-badge--transparent Vlt-badge--blue' if label.casecmp('dev preview').zero?
43
43
 
44
44
  classes.join(' ')
45
45
  end
@@ -38,7 +38,7 @@
38
38
 
39
39
  <p><%= tutorial.description %></p>
40
40
 
41
- <a href="<%= tutorial.url %>/<%= params[:code_language] %>" class="Vlt-<%= Card::COLOUR.fetch(tutorial.subtitle, 'blue') %>-dark Nxd-card__cta">
41
+ <a href="<%= tutorial.url %>/<%= params[:code_language] %>" class="Vlt-<%= Card::COLOUR.fetch(tutorial.subtitle, 'blue') %>-darker Nxd-card__cta">
42
42
  <%= t('read_more') %>
43
43
  <svg class="Vlt-icon Vlt-icon--smaller">
44
44
  <use xlink:href="/symbol/volta-icons.svg#Vlt-icon-arrow-thin-right" />
@@ -27,7 +27,7 @@
27
27
 
28
28
  <p><%= use_case.description %></p>
29
29
 
30
- <a href="<%= url_for(controller: 'use_case', action: :show, document: use_case.relative_path, only_path: true) %>" class="Vlt-<%= Card::COLOUR.fetch(use_case.subtitle, 'blue') %>-dark">
30
+ <a href="<%= url_for(controller: 'use_case', action: :show, document: use_case.relative_path, only_path: true) %>" class="Vlt-<%= Card::COLOUR.fetch(use_case.subtitle, 'blue') %>-darker">
31
31
  <%= t('read_more') %>
32
32
  <svg class="Vlt-icon Vlt-icon--smaller">
33
33
  <use xlink:href="/symbol/volta-icons.svg#Vlt-icon-arrow-thin-right" />
@@ -1,6 +1,6 @@
1
1
  import Tooltip from './tooltip.min.js';
2
2
 
3
- /**
3
+ /* @preserve
4
4
  * Copyright (c) 2001-present, Vonage.
5
5
  *
6
6
  * Core of volta
@@ -310,6 +310,11 @@ Volta.accordion = function () {
310
310
  this.trigger.addEventListener('click', function(){
311
311
  self.toggle();
312
312
  });
313
+ this.trigger.addEventListener('keydown', function(event) {
314
+ if (event.code === 'Space' || event.code === 'Enter') {
315
+ this.trigger.click();
316
+ }
317
+ });
313
318
  }
314
319
  },
315
320
  close: function(trigger) {
@@ -319,6 +324,7 @@ Volta.accordion = function () {
319
324
 
320
325
  trigger.classList.remove(classes.triggerActive);
321
326
  panel.classList.add(classes.contentClosing);
327
+ trigger.setAttribute("aria-expanded", "false");
322
328
 
323
329
  panel.style.height = window.getComputedStyle(panel).height;
324
330
  panel.offsetHeight; // force repaint
@@ -361,6 +367,7 @@ Volta.accordion = function () {
361
367
 
362
368
  trig.classList.add(classes.triggerActive);
363
369
  panel.classList.add(classes.contentOpening);
370
+ trig.setAttribute("aria-expanded", "true");
364
371
 
365
372
  var startHeight = panel.style.height;
366
373
  panel.style.height = 'auto';
@@ -640,6 +647,7 @@ Volta.dropdown = function () {
640
647
  noCloseBlock: 'Vlt-dropdown__block--noclose',
641
648
  panel: 'Vlt-dropdown__panel',
642
649
  panelContent: 'Vlt-dropdown__panel__content',
650
+ selected: 'Vlt-dropdown__link--selected',
643
651
  selection: 'Vlt-dropdown__selection',
644
652
  switch: 'Vlt-switch',
645
653
  switchSlider: 'Vlt-switch__slider'
@@ -653,21 +661,32 @@ Volta.dropdown = function () {
653
661
  this.selection = this.dropdown.querySelector('.' + _class.selection);
654
662
  this.isSelectionVisible = !!this.selection;
655
663
  this.btn = this.dropdown.querySelector('.' + _class.btn) || this.dropdown.querySelector('.' + _class.btnLegacy);
664
+ this._links = this.dropdown.querySelectorAll('.' + _class.link);
656
665
  this._suppress = supressClickHandler;
657
666
 
658
667
  if(!this._suppress) {
659
668
  this._addEventListener();
660
669
  }
661
670
  },
671
+ _openEventHandler: undefined,
672
+ _keyboardEventHandler: undefined,
662
673
  _addEventListener: function(){
663
- var openHandler = this.open.bind(this);
664
- this.dropdown.addEventListener('click', openHandler, { once: true })
674
+ this._openEventHandler = this.open.bind(this);
675
+ this._keyboardEventHandler = this.keyboardNavigation.bind(this);
676
+
677
+ this.dropdown.addEventListener('click', this._openEventHandler, { once: true });
678
+ this.dropdown.addEventListener('keydown', this._keyboardEventHandler, { once: true });
679
+
680
+ this._links.forEach(function(link) {
681
+ link.addEventListener('keydown', this._keyboardEventHandler);
682
+ }.bind(this));
665
683
  },
666
684
  close: function(text) {
667
685
  if(text) {
668
686
  this._setDropdownSelectionText(text);
669
687
  }
670
688
  this.dropdown.classList.remove(_class.expanded);
689
+ this.dropdown.setAttribute("aria-expanded", "false");
671
690
 
672
691
  if(!this._suppress){
673
692
  this._addEventListener();
@@ -696,31 +715,95 @@ Volta.dropdown = function () {
696
715
  }
697
716
 
698
717
  var text;
699
- if(parentIsPanel && Volta._hasClass(e.target, _class.label)) {
718
+ if (parentIsPanel && Volta._hasClass(e.target, _class.label)) {
700
719
  text = e.target.innerHTML;
701
- } else if (parentIsPanel) {
720
+ } else if (parentIsPanel && e.keyCode !== 27) { // esc
702
721
  var label = e.target.querySelector('.' + _class.label);
703
- if(label) {
722
+ if (label) {
704
723
  text = label.innerHTML;
705
724
  }
706
725
  }
707
726
 
727
+ document.querySelector('body').removeEventListener('click', this._closeEventHandler);
728
+ this.dropdown.removeEventListener('keydown', this._keyboardEventHandler, { once: true });
729
+ this.dropdown.removeEventListener('click', this._openEventHandler, { once: true });
730
+
731
+ this._links.forEach(function(link) {
732
+ link.removeEventListener('keydown', this._keyboardEventHandler);
733
+ }.bind(this));
734
+
708
735
  this.close(text);
736
+ },
737
+ keyboardNavigation: function(e) {
738
+ e.preventDefault();
739
+ e.stopPropagation();
740
+
741
+ if (e.keyCode === 27) { // esc
742
+ this._closeEvent(e);
743
+ }
709
744
 
710
- document.querySelector('body').removeEventListener('click', this._closeEventHandler );
745
+ if (e.code === 'ArrowDown' || e.code === 'ArrowUp' || e.code === 'Enter' || e.keyCode === 32) { // 32 = spacebar
746
+ this._links.forEach(function(link) {
747
+ link.setAttribute('tabIndex', '-1');
748
+ });
749
+
750
+ if (e.currentTarget.classList.contains(_class.wrapper)) {
751
+ this.dropdown.classList.add(_class.expanded);
752
+ this.dropdown.removeEventListener('click', this._openEventHandler, { once: true });
753
+
754
+ var selectedLink = this.dropdown.querySelector('.' + _class.selected) || this._links[0];
755
+
756
+ if (selectedLink) {
757
+ selectedLink.setAttribute('tabIndex', '0');
758
+ selectedLink.focus();
759
+ }
760
+ }
761
+
762
+ if (e.code === 'ArrowUp') {
763
+ var nextItem = e.currentTarget.previousElementSibling;
764
+ }
765
+
766
+ if (e.code === 'ArrowDown') {
767
+ var nextItem = e.currentTarget.nextElementSibling;
768
+ }
769
+
770
+ if (nextItem && nextItem.classList.contains(_class.link)) {
771
+ nextItem.setAttribute('tabIndex', '0');
772
+ nextItem.focus();
773
+ }
774
+
775
+ if (!this._suppress && e.currentTarget.classList.contains(_class.wrapper)) {
776
+ this.closeEventHandler();
777
+ }
778
+ }
779
+
780
+ if (e.code === 'Enter' && !e.currentTarget.classList.contains(_class.wrapper)) {
781
+ e.currentTarget.click();
782
+ }
711
783
  },
712
784
  open: function(event) {
713
- if(event) {
785
+ if (event) {
714
786
  event.preventDefault();
715
787
  event.stopPropagation();
716
788
  }
717
789
 
718
790
  this.dropdown.classList.add(_class.expanded);
791
+ this.dropdown.setAttribute("aria-expanded", "true");
719
792
 
720
- if(!this._suppress){
721
- this._closeEventHandler = this._closeEvent.bind(this);
722
- document.querySelector('body').addEventListener('click', this._closeEventHandler );
793
+ var selectedLink = this.dropdown.querySelector('.' + _class.selected) || this._links[0];
794
+
795
+ if (selectedLink) {
796
+ selectedLink.setAttribute('tabIndex', '0');
797
+ selectedLink.focus();
723
798
  }
799
+
800
+ if (!this._suppress) {
801
+ this.closeEventHandler();
802
+ }
803
+ },
804
+ closeEventHandler: function() {
805
+ this._closeEventHandler = this._closeEvent.bind(this);
806
+ document.querySelector('body').addEventListener('click', this._closeEventHandler);
724
807
  },
725
808
  _setDropdownSelectionText: function(text) {
726
809
  if(this.isSelectionVisible) {
@@ -1308,9 +1391,6 @@ Volta.tab = function () {
1308
1391
 
1309
1392
  link.index = index;
1310
1393
  link.addEventListener('keyup', _this._keyUpEventListener.bind(_this));
1311
- link.addEventListener('toggle', function () {
1312
- _this.toggle(link);
1313
- });
1314
1394
  link.addEventListener('click', function () {
1315
1395
  _this.toggle(link);
1316
1396
  });
@@ -1375,6 +1455,7 @@ Volta.tab = function () {
1375
1455
 
1376
1456
  this._activeLink.setAttribute('tabindex', '0');
1377
1457
  this._activeLink.setAttribute('aria-selected', 'true');
1458
+ this._activeLink.focus();
1378
1459
  if (this._activePanel) {
1379
1460
  this._activePanel.removeAttribute('hidden');
1380
1461
  }
@@ -1538,12 +1619,10 @@ Volta.tooltip = function () {
1538
1619
  left: 'Vlt-tooltip--left',
1539
1620
  tooltip: 'Vlt-tooltip',
1540
1621
  top: 'Vlt-tooltip--top',
1541
- right: 'Vlt-tooltip--right'
1622
+ right: 'Vlt-tooltip--right',
1623
+ large: 'Vlt-tooltip--large'
1542
1624
  }
1543
1625
 
1544
- var currentTooltip = undefined,
1545
- currentTooltipContent = undefined;
1546
-
1547
1626
  return {
1548
1627
  create: create,
1549
1628
  init: attachTooltipHandlers
@@ -1567,6 +1646,7 @@ Volta.tooltip = function () {
1567
1646
  */
1568
1647
  function create(tooltip) {
1569
1648
  var placement;
1649
+ var size;
1570
1650
 
1571
1651
  if (Volta._hasClass(tooltip, _class.bottom)) {
1572
1652
  placement = 'bottom';
@@ -1578,10 +1658,16 @@ Volta.tooltip = function () {
1578
1658
  placement = 'right';
1579
1659
  }
1580
1660
 
1661
+ if (Volta._hasClass(tooltip, _class.large)) {
1662
+ size = ' Vlt-tooltip--large';
1663
+ } else {
1664
+ size='';
1665
+ }
1666
+
1581
1667
  var template =
1582
- '<div class="Vlt-tooltip--js" role="tooltip">' +
1583
- '<div class="tooltip-arrow Vlt-tooltip__arrow"></div>' +
1584
- '<div class="tooltip-inner Vlt-tooltip__content"></div>' +
1668
+ '<div class="Vlt-tooltip--js' + size + '" role="tooltip">' +
1669
+ '<div class="tooltip-arrow Vlt-tooltip__arrow"></div>' +
1670
+ '<div class="tooltip-inner Vlt-tooltip__content"></div>' +
1585
1671
  '</div>';
1586
1672
 
1587
1673
  var title = tooltip.title;
@@ -2142,4 +2228,5 @@ Volta.menu = function () {
2142
2228
  }
2143
2229
  }();
2144
2230
 
2231
+
2145
2232
  export default Volta;
@@ -8,8 +8,8 @@
8
8
  @import "~@vonagevolta/volta2/scss/components/side-navigation/side-nav--structure";
9
9
  @import "~@vonagevolta/volta2/scss/components/side-navigation/side-nav--light";
10
10
  @import "~@vonagevolta/volta2/scss/components/card";
11
- @import "~@vonagevolta/volta2/scss/components/badge";
12
11
  @import "~@vonagevolta/volta2/scss/components/color-classes";
12
+ @import "~@vonagevolta/volta2/scss/components/badge";
13
13
  @import "~@vonagevolta/volta2/scss/components/boxes";
14
14
  @import "~@vonagevolta/volta2/scss/components/form-elements";
15
15
  @import "~@vonagevolta/volta2/scss/components/spinner";
@@ -16,8 +16,8 @@
16
16
 
17
17
  .Nxd-use-cases {
18
18
  .Vlt-card {
19
- border: 1px solid #efefef;
20
19
  box-shadow: none;
20
+ border: 1px solid #e6e6e6;
21
21
  transition: box-shadow ease-in 0.25s;
22
22
 
23
23
  &:hover {
@@ -1 +1,45 @@
1
1
  require_relative 'version'
2
+
3
+ require 'rails/all'
4
+ require 'activeadmin'
5
+ require 'bootsnap'
6
+ require 'bugsnag'
7
+ require 'devise'
8
+ require 'geocoder'
9
+ require 'gravatar_image_tag'
10
+ require 'greenhouse_io'
11
+ require 'recaptcha'
12
+ require 'split/dashboard'
13
+ require 'listen'
14
+ require 'inherited_resources'
15
+ require 'msgpack'
16
+ require 'pg'
17
+ require 'coffee-rails'
18
+ require 'octokit'
19
+ require 'webpacker'
20
+ require 'clipboard/rails'
21
+ require 'gmaps4rails'
22
+ require 'nexmo_markdown_renderer'
23
+ require 'truncato'
24
+ require 'puma'
25
+ require 'barnes'
26
+ require 'woothee'
27
+ require 'algoliasearch'
28
+ require 'rest-client'
29
+ require 'chartkick'
30
+ require 'groupdate'
31
+ require 'terminal-table'
32
+ require 'lograge'
33
+ require 'jbuilder'
34
+ require 'nokogiri'
35
+ require 'colorize'
36
+ require 'neatjson'
37
+ require 'slack-notifier'
38
+ require 'autoprefixer-rails'
39
+ require 'titleize'
40
+ require 'countries'
41
+ require 'country_select'
42
+ require 'smartling'
43
+ require 'newrelic_rpm'
44
+ require 'redis'
45
+ require 'rake'
@@ -1,3 +1,3 @@
1
1
  module NexmoDeveloper
2
- VERSION = '0.0.102'.freeze
2
+ VERSION = '0.0.103'.freeze
3
3
  end
@@ -14,10 +14,10 @@
14
14
  "@babel/preset-env": "^7.12.7",
15
15
  "@rails/ujs": "^6.0.3-4",
16
16
  "@rails/webpacker": "^5.2.1",
17
- "@vonagevolta/volta2": "^0.0.56",
18
- "algoliasearch": "^4.8.1",
17
+ "algoliasearch": "^4.8.2",
18
+ "@vonagevolta/volta2": "^0.1.4",
19
19
  "autoprefixer": "^9.8.6",
20
- "babel-loader": "^8.2.1",
20
+ "babel-loader": "^8.2.2",
21
21
  "babel-preset-babili": "^0.1.4",
22
22
  "coffee-loader": "^1.0.1",
23
23
  "coffee-script": "^1.12.7",
@@ -80,7 +80,7 @@ Gem::Specification.new do |spec|
80
80
  spec.add_runtime_dependency('colorize', '0.8.1')
81
81
  spec.add_runtime_dependency('neatjson', '0.9')
82
82
  spec.add_runtime_dependency('slack-notifier', '2.3.2')
83
- spec.add_runtime_dependency('autoprefixer-rails', '10.0.2.0')
83
+ spec.add_runtime_dependency('autoprefixer-rails', '10.0.3.0')
84
84
  spec.add_runtime_dependency('titleize', '1.4.1')
85
85
  spec.add_runtime_dependency('countries', '3.0.1')
86
86
  spec.add_runtime_dependency('country_select', '4.0.0')
data/yarn.lock CHANGED
@@ -2,109 +2,109 @@
2
2
  # yarn lockfile v1
3
3
 
4
4
 
5
- "@algolia/cache-browser-local-storage@4.8.1":
6
- version "4.8.1"
7
- resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.8.1.tgz#1c0230f6f174a37bb22549ec502cad2dc6973c35"
8
- integrity sha512-qqudBJE2BzpiO11CbWDbxLual75qiP6lEjHW1zlG2P6jO/NkCnVMsOhPgu2eiJx7lTJ3vhkn981g87qZre8KSg==
9
- dependencies:
10
- "@algolia/cache-common" "4.8.1"
11
-
12
- "@algolia/cache-common@4.8.1":
13
- version "4.8.1"
14
- resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.8.1.tgz#19c76300d0e75550c4dd88fa1d12b06a75cc290f"
15
- integrity sha512-5bJ3KX0trQfNXFzEgDx7IHUcLdrjIvs/6g5fxGMRr0eWJj6x1tSmbIJBff4pdQw7oWZvO1kueWrWD1v0dV9b/Q==
16
-
17
- "@algolia/cache-in-memory@4.8.1":
18
- version "4.8.1"
19
- resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.8.1.tgz#c84a72e75cf614dc75c2ccf0a993c382d3153862"
20
- integrity sha512-4EEUi+DHsMKfZ38AYovXVS09oLTLSQlssw1PTswJEx7wuKCAzctWSBfB116+b1eAw8mp6EmiTJw8D2qFhr70oQ==
21
- dependencies:
22
- "@algolia/cache-common" "4.8.1"
23
-
24
- "@algolia/client-account@4.8.1":
25
- version "4.8.1"
26
- resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.8.1.tgz#7c75a5151860a592abfe720610babd0652b5d822"
27
- integrity sha512-zfQSb9EYzZrOsUqsekKJYuizpQVLiq1D0B81KC8V0PjhjtQc13UrAJx68XP3fkNBe7V9K6H3dIRPOaK5XVHYOg==
28
- dependencies:
29
- "@algolia/client-common" "4.8.1"
30
- "@algolia/client-search" "4.8.1"
31
- "@algolia/transporter" "4.8.1"
32
-
33
- "@algolia/client-analytics@4.8.1":
34
- version "4.8.1"
35
- resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.8.1.tgz#330c2e001f758fe750820366092ea6f407d6ca9f"
36
- integrity sha512-QF6I7MCV9jI8dawi8W/tA/R5EyE+4uKc74tqLTrm6WoUdlwExaTuKgSjsqZtSjRileIDw5TuuJhSGCpgBktDOg==
37
- dependencies:
38
- "@algolia/client-common" "4.8.1"
39
- "@algolia/client-search" "4.8.1"
40
- "@algolia/requester-common" "4.8.1"
41
- "@algolia/transporter" "4.8.1"
42
-
43
- "@algolia/client-common@4.8.1":
44
- version "4.8.1"
45
- resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.8.1.tgz#a0527d8ac76b41605f3fd6370d9cf1390ea98e10"
46
- integrity sha512-iAVBzNUFyUYqX6yyWN3AsxB+sF2g+lWguXmdMaSDAym4XMRAT6cvd3xUKBloHafzm2zWR69XHm/qxUuqJbFnxQ==
47
- dependencies:
48
- "@algolia/requester-common" "4.8.1"
49
- "@algolia/transporter" "4.8.1"
50
-
51
- "@algolia/client-recommendation@4.8.1":
52
- version "4.8.1"
53
- resolved "https://registry.yarnpkg.com/@algolia/client-recommendation/-/client-recommendation-4.8.1.tgz#ce0577f53eaa0877a40e4f14789714a32d199a50"
54
- integrity sha512-WiI86PtQKjU+pmIqlzyJ5skOqfZy6PTc7s6XPgPmVd+XfQxRweXxiejbBG0aQlVcZbN2eetNMmI2vawf1cTDWg==
55
- dependencies:
56
- "@algolia/client-common" "4.8.1"
57
- "@algolia/requester-common" "4.8.1"
58
- "@algolia/transporter" "4.8.1"
59
-
60
- "@algolia/client-search@4.8.1":
61
- version "4.8.1"
62
- resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.8.1.tgz#62326038d9d128f8bc87857c514ce7dea91f73b1"
63
- integrity sha512-EAeTq5iqpoEPQmi25La1zM5hxvE04hnZzutlUq+5flhrmjwV75z6xNjqNBlDVhPwH545Xg2jcccXQjjNzLHj7A==
64
- dependencies:
65
- "@algolia/client-common" "4.8.1"
66
- "@algolia/requester-common" "4.8.1"
67
- "@algolia/transporter" "4.8.1"
68
-
69
- "@algolia/logger-common@4.8.1":
70
- version "4.8.1"
71
- resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.8.1.tgz#46accd128bc5179385c437085a02e0d9c5e721ae"
72
- integrity sha512-ENX/9LuroGxLCjPbvuO6yKPoFNkSXFO0LhWHeR/JQY0gdTHhHgj2A2nXT4Qt0PxFGE9XNhXlJ3YYVxtWEG8rww==
73
-
74
- "@algolia/logger-console@4.8.1":
75
- version "4.8.1"
76
- resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.8.1.tgz#a0b42f0cab7a33e5cd09ff8a0e6da1d197c2a7aa"
77
- integrity sha512-pFxNb9aOvUsyS+RxHJgMvnTCzt6ewqi0nsICDCCXQ/Lz1VrRFbrfmXcfxD46nQ0W8o8/7esXzaVdjGUKmEmq0Q==
78
- dependencies:
79
- "@algolia/logger-common" "4.8.1"
80
-
81
- "@algolia/requester-browser-xhr@4.8.1":
82
- version "4.8.1"
83
- resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.8.1.tgz#02ceb6548957d347c73a6eb8c8292750136bb88a"
84
- integrity sha512-N0+0UONv1FYMTaZR/a6wl43MUrGFYpAvsqlVgCN8/CFhuG4LFBUXhZQudL8wq9GfMoUENJ6P9spCUk2EcE5mKQ==
85
- dependencies:
86
- "@algolia/requester-common" "4.8.1"
87
-
88
- "@algolia/requester-common@4.8.1":
89
- version "4.8.1"
90
- resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.8.1.tgz#8d0990aed68d785433e40cd389c8a87701543f43"
91
- integrity sha512-ZtG4g4pxPbN2qI8E7ChOthuntZGIauQegzXyqYfRAAlIZ+lkTTc8KPmUDREFhkT9znCKoPD43w0j8YogSVo/4A==
92
-
93
- "@algolia/requester-node-http@4.8.1":
94
- version "4.8.1"
95
- resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.8.1.tgz#23702832093e769a7837107bf96200fba9d77be3"
96
- integrity sha512-OyryP9UBcIqD9B9C6TfkjeNbd8G/MCxuaBaK3QfbjP/J7EUVeMBFPs0jo52jTKlm8l4cgRIHCDxa1ctgfhE1Xg==
97
- dependencies:
98
- "@algolia/requester-common" "4.8.1"
99
-
100
- "@algolia/transporter@4.8.1":
101
- version "4.8.1"
102
- resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.8.1.tgz#a80d41ae4f4b0e9f2606f4c20cef9aa4183cb59b"
103
- integrity sha512-JNO0Bs9vmQmrM54daORAFdmA05QFV7IQNoLS7ucbtEKexJAwmxb/mOB+sAH6Ju3V8vGPPvvn9jcgu9fwIkyX3Q==
104
- dependencies:
105
- "@algolia/cache-common" "4.8.1"
106
- "@algolia/logger-common" "4.8.1"
107
- "@algolia/requester-common" "4.8.1"
5
+ "@algolia/cache-browser-local-storage@4.8.2":
6
+ version "4.8.2"
7
+ resolved "https://registry.yarnpkg.com/@algolia/cache-browser-local-storage/-/cache-browser-local-storage-4.8.2.tgz#e94c50d360c53fc48d107484de2012f3a0bbed9a"
8
+ integrity sha512-X2528jVZk+iPmsA4gF2AxH7RnREF10O98yV8QWwXcXcEYD7qjCsidPUGXcRsZCWOkCdZPA2IMJBiPDxZqfrQqA==
9
+ dependencies:
10
+ "@algolia/cache-common" "4.8.2"
11
+
12
+ "@algolia/cache-common@4.8.2":
13
+ version "4.8.2"
14
+ resolved "https://registry.yarnpkg.com/@algolia/cache-common/-/cache-common-4.8.2.tgz#e992e29ffeec75e2bc77eef5280efca71ac27d56"
15
+ integrity sha512-ER3QxHH2vmatfO4rRv504ByAiqqoj6kg0RcoBEetQflxRcRznmX7uFBXI3Zo42OoPKM3NMzFted50YO0Um5VLA==
16
+
17
+ "@algolia/cache-in-memory@4.8.2":
18
+ version "4.8.2"
19
+ resolved "https://registry.yarnpkg.com/@algolia/cache-in-memory/-/cache-in-memory-4.8.2.tgz#12d66469d5ff7142d092272e01e02abfb6a1315d"
20
+ integrity sha512-CYse8/ZNPr/pMo6inQ0Uu+HWFFN9OcfJw67YCvU+1yz8NaS3rQ2HxU+zu1M/BCKMA89/dYF0jjBMT5rm6E4cdw==
21
+ dependencies:
22
+ "@algolia/cache-common" "4.8.2"
23
+
24
+ "@algolia/client-account@4.8.2":
25
+ version "4.8.2"
26
+ resolved "https://registry.yarnpkg.com/@algolia/client-account/-/client-account-4.8.2.tgz#ad4066085d871fb5ea10dcf6a40a423480d3bbdc"
27
+ integrity sha512-cRtZ2xiLUfsanrpjYkxyNwE+4SbyUvbe8CL9HwpTJPsP0Jsv69H4H71lL7v0pQY5OWkFxKMsqVxCMH7Px3740w==
28
+ dependencies:
29
+ "@algolia/client-common" "4.8.2"
30
+ "@algolia/client-search" "4.8.2"
31
+ "@algolia/transporter" "4.8.2"
32
+
33
+ "@algolia/client-analytics@4.8.2":
34
+ version "4.8.2"
35
+ resolved "https://registry.yarnpkg.com/@algolia/client-analytics/-/client-analytics-4.8.2.tgz#29592bc9a2d39a50c17ede959bdc14812edd0fba"
36
+ integrity sha512-+vnFokDGxi0vAaumbAgvDuvXWs0VvLk3gDkjkegXD8MMUTs3ByTZApCM4NPnIdbcUroFAJxbyzZQT9/CRZHgcA==
37
+ dependencies:
38
+ "@algolia/client-common" "4.8.2"
39
+ "@algolia/client-search" "4.8.2"
40
+ "@algolia/requester-common" "4.8.2"
41
+ "@algolia/transporter" "4.8.2"
42
+
43
+ "@algolia/client-common@4.8.2":
44
+ version "4.8.2"
45
+ resolved "https://registry.yarnpkg.com/@algolia/client-common/-/client-common-4.8.2.tgz#989ca2a396938db833578a65c63bce1b1785bde9"
46
+ integrity sha512-jO9RvC0FPxxhe/nynGxVEYmNltE5xgYV1Y6zviwl/80PwsrGfWp/rVDh4CVZaBOntmsOp+y0aqQwNYjLMVWXBg==
47
+ dependencies:
48
+ "@algolia/requester-common" "4.8.2"
49
+ "@algolia/transporter" "4.8.2"
50
+
51
+ "@algolia/client-recommendation@4.8.2":
52
+ version "4.8.2"
53
+ resolved "https://registry.yarnpkg.com/@algolia/client-recommendation/-/client-recommendation-4.8.2.tgz#f8483adca6ce829414d8e8c5b58420b22d160d49"
54
+ integrity sha512-evngF6Odrw93gXkXrOYPXxTWwDQ2K01sadB3Xpa1hQb+vjiBwcA/54w6nKyE4aiII1loT5q+Uj+G1f8HwBuksw==
55
+ dependencies:
56
+ "@algolia/client-common" "4.8.2"
57
+ "@algolia/requester-common" "4.8.2"
58
+ "@algolia/transporter" "4.8.2"
59
+
60
+ "@algolia/client-search@4.8.2":
61
+ version "4.8.2"
62
+ resolved "https://registry.yarnpkg.com/@algolia/client-search/-/client-search-4.8.2.tgz#714d1604bfdf5b8ba33247ee571c6f3c2abc6c31"
63
+ integrity sha512-JtmhdBKsA3Ll9ITvBfvMjsfuOY5oOPlaS9ahBGeb2OFfC1Myb6kbjXl73VtSVh4Bh0MpTsT4SdBdYCJFctRsQg==
64
+ dependencies:
65
+ "@algolia/client-common" "4.8.2"
66
+ "@algolia/requester-common" "4.8.2"
67
+ "@algolia/transporter" "4.8.2"
68
+
69
+ "@algolia/logger-common@4.8.2":
70
+ version "4.8.2"
71
+ resolved "https://registry.yarnpkg.com/@algolia/logger-common/-/logger-common-4.8.2.tgz#7cecc05b2725f3d68babdc26aed24f2fb60bc4bf"
72
+ integrity sha512-Sse29WFBZH4CSCnbMTh8t6uAFaJtNyRRcpDjFfvkSNdPAN/pxLAY9GYUzJmP4J+ILdJn6ZWMNpvwhNQ8p2I+mg==
73
+
74
+ "@algolia/logger-console@4.8.2":
75
+ version "4.8.2"
76
+ resolved "https://registry.yarnpkg.com/@algolia/logger-console/-/logger-console-4.8.2.tgz#65aca402330f20a23551e63014dc3ff5586ce39b"
77
+ integrity sha512-hpZvy708iOeX6tcgy9qXVzlH8Avd3UA7AMwd1wAK5dG8PwAcrhO9wRQuE1AemvuVIEhshbWGQl9pDGXsejO+4g==
78
+ dependencies:
79
+ "@algolia/logger-common" "4.8.2"
80
+
81
+ "@algolia/requester-browser-xhr@4.8.2":
82
+ version "4.8.2"
83
+ resolved "https://registry.yarnpkg.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-4.8.2.tgz#4f3396aa842e30a8c76916640086a96135b245a9"
84
+ integrity sha512-Vdv38BtgwAeVPThwOVRVrR8mDiRLADwqXt1c87dnHHL1Rs3/FMRQ9ogKMKnaJMAH+OeXf+yzNxh+QCISPKaMkQ==
85
+ dependencies:
86
+ "@algolia/requester-common" "4.8.2"
87
+
88
+ "@algolia/requester-common@4.8.2":
89
+ version "4.8.2"
90
+ resolved "https://registry.yarnpkg.com/@algolia/requester-common/-/requester-common-4.8.2.tgz#42bb83c4d90f9a19ad4728524a763264723cbed4"
91
+ integrity sha512-dN6MuKQQTp7+IBZNIRC9KUCrWVQRM3LaSLLB9lM7evjt++2jJTlhUu2Vncd78VbSy2kviojelxZ/mXTITRRxoA==
92
+
93
+ "@algolia/requester-node-http@4.8.2":
94
+ version "4.8.2"
95
+ resolved "https://registry.yarnpkg.com/@algolia/requester-node-http/-/requester-node-http-4.8.2.tgz#29e7a8404193dcf686b16909f1fce9f96f0ba150"
96
+ integrity sha512-pnpDRzIfibJ67rPQvq1me+bqhfflS2w9MlbVMhKdPsSuO8GKAZQ4GJgvIphvpSmhVnB7drdbZZ3J0KVP/y7jeg==
97
+ dependencies:
98
+ "@algolia/requester-common" "4.8.2"
99
+
100
+ "@algolia/transporter@4.8.2":
101
+ version "4.8.2"
102
+ resolved "https://registry.yarnpkg.com/@algolia/transporter/-/transporter-4.8.2.tgz#1c401e209d54a20296249158c64ad263891ee057"
103
+ integrity sha512-r3ecEn+4GWW8ntydDmGGlZ5Iqds080bt2RtAUVNbPPwyuXAs9HUqwkYQiTIHSmeYtAlQ6YOYVnX3W6W8FhbhaA==
104
+ dependencies:
105
+ "@algolia/cache-common" "4.8.2"
106
+ "@algolia/logger-common" "4.8.2"
107
+ "@algolia/requester-common" "4.8.2"
108
108
 
109
109
  "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4":
110
110
  version "7.10.4"
@@ -1766,12 +1766,12 @@
1766
1766
  dependencies:
1767
1767
  "@types/node" "*"
1768
1768
 
1769
- "@vonagevolta/volta2@^0.0.56":
1770
- version "0.0.56"
1771
- resolved "https://registry.yarnpkg.com/@vonagevolta/volta2/-/volta2-0.0.56.tgz#a9929581bf0aaeb8f2e9d766df2483635ccf64c8"
1772
- integrity sha512-hNWjiCD+AupTOnH/LEUTBB/V/AHxe3jq2ZY8NC9W0u3aEacRGqk86pwpOOARF2cY9LsA7C0SFME8nbqZWXLX3Q==
1769
+ "@vonagevolta/volta2@^0.1.4":
1770
+ version "0.1.4"
1771
+ resolved "https://registry.yarnpkg.com/@vonagevolta/volta2/-/volta2-0.1.4.tgz#00a0360e61fe8faf6016906851d3d2441bf976e7"
1772
+ integrity sha512-BYBsebS5NK9gAP4DdXg5hJYs/wLTk3wTiDZPJFLrEhTuGz46pWrkf8IbeBFJMqgTdW4ZMpeXtio9mme8mAPNJQ==
1773
1773
  dependencies:
1774
- marked "^0.7.0"
1774
+ marked "^1.1.0"
1775
1775
  marked-sanitizer-github "^1.0.0"
1776
1776
  prismjs "^1.15.0"
1777
1777
  tooltip.js "^1.2.0"
@@ -2060,25 +2060,25 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5:
2060
2060
  json-schema-traverse "^0.4.1"
2061
2061
  uri-js "^4.2.2"
2062
2062
 
2063
- algoliasearch@^4.8.1:
2064
- version "4.8.1"
2065
- resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.8.1.tgz#ccaa1674459f2266cdc565a041bc59bd41218638"
2066
- integrity sha512-rK0VQiOC/9DFD6cwAZIl1dq8SrmtSLVmrz9rk2IQ0/jpTKVAE7xstOaml3nvxjBZWcFQsS4+P2qtzsg6NaLaWw==
2067
- dependencies:
2068
- "@algolia/cache-browser-local-storage" "4.8.1"
2069
- "@algolia/cache-common" "4.8.1"
2070
- "@algolia/cache-in-memory" "4.8.1"
2071
- "@algolia/client-account" "4.8.1"
2072
- "@algolia/client-analytics" "4.8.1"
2073
- "@algolia/client-common" "4.8.1"
2074
- "@algolia/client-recommendation" "4.8.1"
2075
- "@algolia/client-search" "4.8.1"
2076
- "@algolia/logger-common" "4.8.1"
2077
- "@algolia/logger-console" "4.8.1"
2078
- "@algolia/requester-browser-xhr" "4.8.1"
2079
- "@algolia/requester-common" "4.8.1"
2080
- "@algolia/requester-node-http" "4.8.1"
2081
- "@algolia/transporter" "4.8.1"
2063
+ algoliasearch@^4.8.2:
2064
+ version "4.8.2"
2065
+ resolved "https://registry.yarnpkg.com/algoliasearch/-/algoliasearch-4.8.2.tgz#499d187afe2169bc66c921cf7d5271c3fe0b3598"
2066
+ integrity sha512-wQg1UpiXO6iXMXXyrmhKopjd3K4GGq5N/0qEjPB5OYzdvj4ju9rDIW8bYL9ghv9jD5IDrcyFsqCzlSKqn/RVXw==
2067
+ dependencies:
2068
+ "@algolia/cache-browser-local-storage" "4.8.2"
2069
+ "@algolia/cache-common" "4.8.2"
2070
+ "@algolia/cache-in-memory" "4.8.2"
2071
+ "@algolia/client-account" "4.8.2"
2072
+ "@algolia/client-analytics" "4.8.2"
2073
+ "@algolia/client-common" "4.8.2"
2074
+ "@algolia/client-recommendation" "4.8.2"
2075
+ "@algolia/client-search" "4.8.2"
2076
+ "@algolia/logger-common" "4.8.2"
2077
+ "@algolia/logger-console" "4.8.2"
2078
+ "@algolia/requester-browser-xhr" "4.8.2"
2079
+ "@algolia/requester-common" "4.8.2"
2080
+ "@algolia/requester-node-http" "4.8.2"
2081
+ "@algolia/transporter" "4.8.2"
2082
2082
 
2083
2083
  alphanum-sort@^1.0.0:
2084
2084
  version "1.0.2"
@@ -2471,15 +2471,14 @@ babel-jest@^26.6.3:
2471
2471
  graceful-fs "^4.2.4"
2472
2472
  slash "^3.0.0"
2473
2473
 
2474
- babel-loader@^8.0.5, babel-loader@^8.1.0, babel-loader@^8.2.1:
2475
- version "8.2.1"
2476
- resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.1.tgz#e53313254677e86f27536f5071d807e01d24ec00"
2477
- integrity sha512-dMF8sb2KQ8kJl21GUjkW1HWmcsL39GOV5vnzjqrCzEPNY0S0UfMLnumidiwIajDSBmKhYf5iRW+HXaM4cvCKBw==
2474
+ babel-loader@^8.0.5, babel-loader@^8.1.0, babel-loader@^8.2.2:
2475
+ version "8.2.2"
2476
+ resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.2.tgz#9363ce84c10c9a40e6c753748e1441b60c8a0b81"
2477
+ integrity sha512-JvTd0/D889PQBtUXJ2PXaKU/pjZDMtHA9V2ecm+eNRmmBCMR09a+fmpGTNwnJtFmFl5Ei7Vy47LjBb+L0wQ99g==
2478
2478
  dependencies:
2479
- find-cache-dir "^2.1.0"
2479
+ find-cache-dir "^3.3.1"
2480
2480
  loader-utils "^1.4.0"
2481
- make-dir "^2.1.0"
2482
- pify "^4.0.1"
2481
+ make-dir "^3.1.0"
2483
2482
  schema-utils "^2.6.5"
2484
2483
 
2485
2484
  babel-messages@^6.23.0:
@@ -4679,7 +4678,7 @@ dom-event-types@^1.0.0:
4679
4678
  resolved "https://registry.yarnpkg.com/dom-event-types/-/dom-event-types-1.0.0.tgz#5830a0a29e1bf837fe50a70cd80a597232813cae"
4680
4679
  integrity sha512-2G2Vwi2zXTHBGqXHsJ4+ak/iP0N8Ar+G8a7LiD2oup5o4sQWytwqqrZu/O6hIMV0KMID2PL69OhpshLO0n7UJQ==
4681
4680
 
4682
- dom-serializer@0, dom-serializer@^0.2.1:
4681
+ dom-serializer@0:
4683
4682
  version "0.2.2"
4684
4683
  resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
4685
4684
  integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==
@@ -4687,6 +4686,15 @@ dom-serializer@0, dom-serializer@^0.2.1:
4687
4686
  domelementtype "^2.0.1"
4688
4687
  entities "^2.0.0"
4689
4688
 
4689
+ dom-serializer@^1.0.1:
4690
+ version "1.1.0"
4691
+ resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.1.0.tgz#5f7c828f1bfc44887dc2a315ab5c45691d544b58"
4692
+ integrity sha512-ox7bvGXt2n+uLWtCRLybYx60IrOlWL/aCebWJk1T0d4m3y2tzf4U3ij9wBMUb6YJZpz06HCCYuyCDveE2xXmzQ==
4693
+ dependencies:
4694
+ domelementtype "^2.0.1"
4695
+ domhandler "^3.0.0"
4696
+ entities "^2.0.0"
4697
+
4690
4698
  dom-walk@^0.1.0:
4691
4699
  version "0.1.2"
4692
4700
  resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84"
@@ -4721,10 +4729,10 @@ domhandler@^2.3.0:
4721
4729
  dependencies:
4722
4730
  domelementtype "1"
4723
4731
 
4724
- domhandler@^3.0.0:
4725
- version "3.0.0"
4726
- resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.0.0.tgz#51cd13efca31da95bbb0c5bee3a48300e333b3e9"
4727
- integrity sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw==
4732
+ domhandler@^3.0.0, domhandler@^3.3.0:
4733
+ version "3.3.0"
4734
+ resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.3.0.tgz#6db7ea46e4617eb15cf875df68b2b8524ce0037a"
4735
+ integrity sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==
4728
4736
  dependencies:
4729
4737
  domelementtype "^2.0.1"
4730
4738
 
@@ -4745,13 +4753,13 @@ domutils@^1.5.1, domutils@^1.7.0:
4745
4753
  domelementtype "1"
4746
4754
 
4747
4755
  domutils@^2.0.0:
4748
- version "2.1.0"
4749
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.1.0.tgz#7ade3201af43703fde154952e3a868eb4b635f16"
4750
- integrity sha512-CD9M0Dm1iaHfQ1R/TI+z3/JWp/pgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg==
4756
+ version "2.4.2"
4757
+ resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.4.2.tgz#7ee5be261944e1ad487d9aa0616720010123922b"
4758
+ integrity sha512-NKbgaM8ZJOecTZsIzW5gSuplsX2IWW2mIK7xVr8hTQF2v1CJWTmLZ1HOCh5sH+IzVPAGE5IucooOkvwBRAdowA==
4751
4759
  dependencies:
4752
- dom-serializer "^0.2.1"
4760
+ dom-serializer "^1.0.1"
4753
4761
  domelementtype "^2.0.1"
4754
- domhandler "^3.0.0"
4762
+ domhandler "^3.3.0"
4755
4763
 
4756
4764
  dot-prop@^5.2.0:
4757
4765
  version "5.2.0"
@@ -8129,7 +8137,7 @@ make-dir@^1.0.0:
8129
8137
  dependencies:
8130
8138
  pify "^3.0.0"
8131
8139
 
8132
- make-dir@^2.0.0, make-dir@^2.1.0:
8140
+ make-dir@^2.0.0:
8133
8141
  version "2.1.0"
8134
8142
  resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
8135
8143
  integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==
@@ -8137,7 +8145,7 @@ make-dir@^2.0.0, make-dir@^2.1.0:
8137
8145
  pify "^4.0.1"
8138
8146
  semver "^5.6.0"
8139
8147
 
8140
- make-dir@^3.0.0, make-dir@^3.0.2:
8148
+ make-dir@^3.0.0, make-dir@^3.0.2, make-dir@^3.1.0:
8141
8149
  version "3.1.0"
8142
8150
  resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
8143
8151
  integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
@@ -8199,7 +8207,7 @@ marked-sanitizer-github@^1.0.0:
8199
8207
  html-void-elements "^1.0.5"
8200
8208
  htmlparser2 "^4.1.0"
8201
8209
 
8202
- marked@^0.3.5, marked@^0.7.0:
8210
+ marked@^0.3.5, marked@^0.7.0, marked@^1.1.0:
8203
8211
  version "0.7.0"
8204
8212
  resolved "https://registry.yarnpkg.com/marked/-/marked-0.7.0.tgz#b64201f051d271b1edc10a04d1ae9b74bb8e5c0e"
8205
8213
  integrity sha512-c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg==
@@ -10804,9 +10812,9 @@ pretty@^2.0.0:
10804
10812
  js-beautify "^1.6.12"
10805
10813
 
10806
10814
  prismjs@^1.15.0:
10807
- version "1.21.0"
10808
- resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.21.0.tgz#36c086ec36b45319ec4218ee164c110f9fc015a3"
10809
- integrity sha512-uGdSIu1nk3kej2iZsLyDoJ7e9bnPzIgY0naW/HdknGj61zScaprVEVGHrPoXqI+M9sP0NDnTK2jpkvmldpuqDw==
10815
+ version "1.22.0"
10816
+ resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.22.0.tgz#73c3400afc58a823dd7eed023f8e1ce9fd8977fa"
10817
+ integrity sha512-lLJ/Wt9yy0AiSYBf212kK3mM5L8ycwlyTlSxHBAneXLR0nzFMlZ5y7riFPF3E33zXOF2IH95xdY5jIyZbM9z/w==
10810
10818
  optionalDependencies:
10811
10819
  clipboard "^2.0.0"
10812
10820
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: station
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.102
4
+ version: 0.0.103
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vonage DevRel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-26 00:00:00.000000000 Z
11
+ date: 2020-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeadmin
@@ -638,14 +638,14 @@ dependencies:
638
638
  requirements:
639
639
  - - '='
640
640
  - !ruby/object:Gem::Version
641
- version: 10.0.2.0
641
+ version: 10.0.3.0
642
642
  type: :runtime
643
643
  prerelease: false
644
644
  version_requirements: !ruby/object:Gem::Requirement
645
645
  requirements:
646
646
  - - '='
647
647
  - !ruby/object:Gem::Version
648
- version: 10.0.2.0
648
+ version: 10.0.3.0
649
649
  - !ruby/object:Gem::Dependency
650
650
  name: titleize
651
651
  requirement: !ruby/object:Gem::Requirement
@@ -773,7 +773,7 @@ files:
773
773
  - "./lib/nexmo_developer/public/android-chrome-512x512.png"
774
774
  - "./lib/nexmo_developer/public/apple-touch-icon-precomposed.png"
775
775
  - "./lib/nexmo_developer/public/apple-touch-icon.png"
776
- - "./lib/nexmo_developer/public/assets/.sprockets-manifest-a1157ac284c85fb4881fb292a62668f8.json"
776
+ - "./lib/nexmo_developer/public/assets/.sprockets-manifest-3ba2fa95541df7e7380bd7c4957df117.json"
777
777
  - "./lib/nexmo_developer/public/assets/active_admin-53c26e5835e5681ba87c5a1593ec718b9e96afe3347ff17066bbe79bea62a7d6.css"
778
778
  - "./lib/nexmo_developer/public/assets/active_admin-53c26e5835e5681ba87c5a1593ec718b9e96afe3347ff17066bbe79bea62a7d6.css.gz"
779
779
  - "./lib/nexmo_developer/public/assets/active_admin-9565b1736f29aa1460496db7d732a6af656d6b680f42629ca551b3d57219baf1.js"
@@ -913,28 +913,28 @@ files:
913
913
  - "./lib/nexmo_developer/public/mstile-150x150.png"
914
914
  - "./lib/nexmo_developer/public/nexmo-developer-logo.svg"
915
915
  - "./lib/nexmo_developer/public/nexmo-vonage-white.svg"
916
- - "./lib/nexmo_developer/public/packs/css/application-600e57fd.chunk.css"
917
- - "./lib/nexmo_developer/public/packs/css/application-600e57fd.chunk.css.br"
918
- - "./lib/nexmo_developer/public/packs/css/application-600e57fd.chunk.css.gz"
919
- - "./lib/nexmo_developer/public/packs/js/application-8a21aa9984b6dcb13220.chunk.js"
920
- - "./lib/nexmo_developer/public/packs/js/application-8a21aa9984b6dcb13220.chunk.js.br"
921
- - "./lib/nexmo_developer/public/packs/js/application-8a21aa9984b6dcb13220.chunk.js.gz"
922
- - "./lib/nexmo_developer/public/packs/js/application-8a21aa9984b6dcb13220.chunk.js.map"
923
- - "./lib/nexmo_developer/public/packs/js/application-8a21aa9984b6dcb13220.chunk.js.map.br"
924
- - "./lib/nexmo_developer/public/packs/js/application-8a21aa9984b6dcb13220.chunk.js.map.gz"
916
+ - "./lib/nexmo_developer/public/packs/css/application-5ebc3a5e.chunk.css"
917
+ - "./lib/nexmo_developer/public/packs/css/application-5ebc3a5e.chunk.css.br"
918
+ - "./lib/nexmo_developer/public/packs/css/application-5ebc3a5e.chunk.css.gz"
919
+ - "./lib/nexmo_developer/public/packs/js/application-416b27af707ff35304c5.chunk.js"
920
+ - "./lib/nexmo_developer/public/packs/js/application-416b27af707ff35304c5.chunk.js.br"
921
+ - "./lib/nexmo_developer/public/packs/js/application-416b27af707ff35304c5.chunk.js.gz"
922
+ - "./lib/nexmo_developer/public/packs/js/application-416b27af707ff35304c5.chunk.js.map"
923
+ - "./lib/nexmo_developer/public/packs/js/application-416b27af707ff35304c5.chunk.js.map.br"
924
+ - "./lib/nexmo_developer/public/packs/js/application-416b27af707ff35304c5.chunk.js.map.gz"
925
925
  - "./lib/nexmo_developer/public/packs/js/runtime~application-6a014284b1b5bfd5675d.js"
926
926
  - "./lib/nexmo_developer/public/packs/js/runtime~application-6a014284b1b5bfd5675d.js.br"
927
927
  - "./lib/nexmo_developer/public/packs/js/runtime~application-6a014284b1b5bfd5675d.js.gz"
928
928
  - "./lib/nexmo_developer/public/packs/js/runtime~application-6a014284b1b5bfd5675d.js.map"
929
929
  - "./lib/nexmo_developer/public/packs/js/runtime~application-6a014284b1b5bfd5675d.js.map.br"
930
930
  - "./lib/nexmo_developer/public/packs/js/runtime~application-6a014284b1b5bfd5675d.js.map.gz"
931
- - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js"
932
- - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.LICENSE.txt"
933
- - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.br"
934
- - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.gz"
935
- - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.map"
936
- - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.map.br"
937
- - "./lib/nexmo_developer/public/packs/js/vendors~application-073fcd950df090400f09.chunk.js.map.gz"
931
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-4e65f66662f734fef024.chunk.js"
932
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-4e65f66662f734fef024.chunk.js.LICENSE.txt"
933
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-4e65f66662f734fef024.chunk.js.br"
934
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-4e65f66662f734fef024.chunk.js.gz"
935
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-4e65f66662f734fef024.chunk.js.map"
936
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-4e65f66662f734fef024.chunk.js.map.br"
937
+ - "./lib/nexmo_developer/public/packs/js/vendors~application-4e65f66662f734fef024.chunk.js.map.gz"
938
938
  - "./lib/nexmo_developer/public/packs/manifest.json"
939
939
  - "./lib/nexmo_developer/public/packs/manifest.json.br"
940
940
  - "./lib/nexmo_developer/public/packs/manifest.json.gz"
@@ -1078,15 +1078,15 @@ files:
1078
1078
  - "./lib/nexmo_developer/public/packs/media/logos/vonage-logo-collapsed--white-6cd2aa45.svg"
1079
1079
  - "./lib/nexmo_developer/public/packs/media/logos/vonage-logo-collapsed--white-6cd2aa45.svg.br"
1080
1080
  - "./lib/nexmo_developer/public/packs/media/logos/vonage-logo-collapsed--white-6cd2aa45.svg.gz"
1081
- - "./lib/nexmo_developer/public/packs/media/symbol/volta-brand-icons-b0758c05.svg"
1082
- - "./lib/nexmo_developer/public/packs/media/symbol/volta-brand-icons-b0758c05.svg.br"
1083
- - "./lib/nexmo_developer/public/packs/media/symbol/volta-brand-icons-b0758c05.svg.gz"
1084
- - "./lib/nexmo_developer/public/packs/media/symbol/volta-flag-icons-49881052.svg"
1085
- - "./lib/nexmo_developer/public/packs/media/symbol/volta-flag-icons-49881052.svg.br"
1086
- - "./lib/nexmo_developer/public/packs/media/symbol/volta-flag-icons-49881052.svg.gz"
1087
- - "./lib/nexmo_developer/public/packs/media/symbol/volta-icons-f9923579.svg"
1088
- - "./lib/nexmo_developer/public/packs/media/symbol/volta-icons-f9923579.svg.br"
1089
- - "./lib/nexmo_developer/public/packs/media/symbol/volta-icons-f9923579.svg.gz"
1081
+ - "./lib/nexmo_developer/public/packs/media/symbol/volta-brand-icons-3670f3c6.svg"
1082
+ - "./lib/nexmo_developer/public/packs/media/symbol/volta-brand-icons-3670f3c6.svg.br"
1083
+ - "./lib/nexmo_developer/public/packs/media/symbol/volta-brand-icons-3670f3c6.svg.gz"
1084
+ - "./lib/nexmo_developer/public/packs/media/symbol/volta-flag-icons-d7178fe4.svg"
1085
+ - "./lib/nexmo_developer/public/packs/media/symbol/volta-flag-icons-d7178fe4.svg.br"
1086
+ - "./lib/nexmo_developer/public/packs/media/symbol/volta-flag-icons-d7178fe4.svg.gz"
1087
+ - "./lib/nexmo_developer/public/packs/media/symbol/volta-icons-398d9c47.svg"
1088
+ - "./lib/nexmo_developer/public/packs/media/symbol/volta-icons-398d9c47.svg.br"
1089
+ - "./lib/nexmo_developer/public/packs/media/symbol/volta-icons-398d9c47.svg.gz"
1090
1090
  - "./lib/nexmo_developer/public/safari-pinned-tab.svg"
1091
1091
  - "./lib/nexmo_developer/public/symbol/volta-brand-icons.svg"
1092
1092
  - "./lib/nexmo_developer/public/symbol/volta-icons.svg"