Version Description
[ Add new block ][ Border Box ] [ bug fix ][ Outer (pro) ] BG fix error on iPhone
Download this release
Release Info
Developer | vektor-inc |
Plugin | VK Blocks |
Version | 0.31.0 |
Comparing to | |
See all releases |
Code changes from version 0.26.7 to 0.31.0
- README.md +23 -2
- editor-css/editor-block-build-marge.scss +385 -51
- inc/template-tags/package/template-tags-veu.php +0 -24
- inc/template-tags/package/template-tags.php +0 -22
- inc/vk-blocks/build/block-build-editor.css +1 -1
- inc/vk-blocks/build/block-build.css +5 -3
- inc/vk-blocks/build/block-build.js +4 -4
- inc/vk-blocks/build/languages/vk-blocks-ja-vk-blocks-build-js.json +1 -1
- inc/vk-blocks/build/languages/vk-blocks-ja.mo +0 -0
- inc/vk-blocks/build/languages/vk-blocks-ja.po +470 -333
- inc/vk-blocks/build/languages/vk-blocks.pot +266 -185
- inc/vk-blocks/view/post-list.php +4 -1
- inc/vk-blocks/vk-blocks-functions.php +201 -188
- inc/vk-components/package/_scss/_vk-post.scss +15 -0
- inc/vk-components/package/class-vk-component-posts.php +13 -9
- inc/vk-components/package/css/vk-components.css +1 -1
- package-lock.json +5017 -1089
README.md
CHANGED
@@ -5,17 +5,35 @@ This is a plugin that extends Gutenberg's blocks.
|
|
5 |
## How to Build
|
6 |
|
7 |
```
|
8 |
-
npm install
|
9 |
npm run build
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
npm run watch
|
11 |
```
|
12 |
|
|
|
|
|
|
|
13 |
## Translate Only
|
14 |
|
15 |
```
|
16 |
npm run build
|
17 |
```
|
18 |
|
|
|
|
|
|
|
19 |
## CSS name rule
|
20 |
|
21 |
```
|
@@ -24,7 +42,10 @@ npm run build
|
|
24 |
[ prefix ]_[ block name ]-[Attribute name]-[Attribute property]
|
25 |
```
|
26 |
|
27 |
-
##
|
|
|
|
|
|
|
28 |
```
|
29 |
bin/dist_kuru.sh
|
30 |
```
|
5 |
## How to Build
|
6 |
|
7 |
```
|
8 |
+
npm install --save-dev
|
9 |
npm run build
|
10 |
+
```
|
11 |
+
## Work
|
12 |
+
|
13 |
+
通常作業時は
|
14 |
+
|
15 |
+
```
|
16 |
+
gulp watch
|
17 |
+
```
|
18 |
+
|
19 |
+
か
|
20 |
+
|
21 |
+
```
|
22 |
npm run watch
|
23 |
```
|
24 |
|
25 |
+
で動かす。
|
26 |
+
ただし、翻訳作業をする時は事前に `npm run build` をした方が無難
|
27 |
+
|
28 |
## Translate Only
|
29 |
|
30 |
```
|
31 |
npm run build
|
32 |
```
|
33 |
|
34 |
+
翻訳は PoEdit などを使って po ファイルを開いて編集するが、
|
35 |
+
新たに翻訳箇所が追加された場合はメニューから「potファイルから更新」を選んで更新する
|
36 |
+
|
37 |
## CSS name rule
|
38 |
|
39 |
```
|
42 |
[ prefix ]_[ block name ]-[Attribute name]-[Attribute property]
|
43 |
```
|
44 |
|
45 |
+
## リリースビルド(石川専用)
|
46 |
+
|
47 |
+
gulp dist して zip に圧縮してそのzipファイルをvwsのパッケージディレクトリに移動している
|
48 |
+
|
49 |
```
|
50 |
bin/dist_kuru.sh
|
51 |
```
|
editor-css/editor-block-build-marge.scss
CHANGED
@@ -323,7 +323,7 @@ $stylePalette: (
|
|
323 |
is-style-vk-handpoint-mark: "\f0a4",
|
324 |
is-style-vk-pencil-mark: "\f303",
|
325 |
is-style-vk-smile-mark: "\f118",
|
326 |
-
is-style-vk-frown-mark: "\f119"
|
327 |
);
|
328 |
|
329 |
$colorPalette: (
|
@@ -338,7 +338,7 @@ $colorPalette: (
|
|
338 |
vk-has-vivid-purple-color: #9b51e0,
|
339 |
vk-has-very-light-gray-color: #eee,
|
340 |
vk-has-cyan-bluish-gray-color: #abb8c3,
|
341 |
-
vk-has-very-dark-gray-color: #313131
|
342 |
);
|
343 |
|
344 |
ul,
|
@@ -376,10 +376,10 @@ ol {
|
|
376 |
|
377 |
&:before {
|
378 |
position: absolute;
|
379 |
-
left:
|
380 |
counter-increment: number;
|
381 |
content: counter(number);
|
382 |
-
margin-left: -
|
383 |
background: #222;
|
384 |
color: #fff;
|
385 |
text-indent: 0;
|
@@ -387,8 +387,9 @@ ol {
|
|
387 |
font-weight: bold;
|
388 |
border-radius: 50%;
|
389 |
font-size: 1em;
|
390 |
-
line-height:
|
391 |
-
|
|
|
392 |
text-align: center;
|
393 |
}
|
394 |
}
|
@@ -414,8 +415,9 @@ ol {
|
|
414 |
display: inline-block;
|
415 |
font-weight: bold;
|
416 |
font-size: 1em;
|
417 |
-
line-height:
|
418 |
-
|
|
|
419 |
text-align: center;
|
420 |
border-radius: 2px;
|
421 |
}
|
@@ -587,6 +589,38 @@ ol {
|
|
587 |
@include pad-mag;
|
588 |
@include inner-item-pad-mag;
|
589 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
590 |
}
|
591 |
}
|
592 |
h3:first-child,
|
@@ -935,6 +969,306 @@ ol {
|
|
935 |
}
|
936 |
} // @media only screen and (max-width: 480px) {
|
937 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
.vk_button {
|
939 |
margin: 5px 0;
|
940 |
text-align: center; /* テキストのみの時のセンター揃え */
|
@@ -1922,6 +2256,7 @@ $xl-min: 1200px;
|
|
1922 |
}
|
1923 |
.components-button.image-button {
|
1924 |
margin: 0;
|
|
|
1925 |
}
|
1926 |
}
|
1927 |
} // .vk_prContent {
|
@@ -2012,72 +2347,74 @@ $xl-min: 1200px;
|
|
2012 |
/* CSS
|
2013 |
/*-------------------------------------------*/
|
2014 |
|
2015 |
-
@mixin switchVisibility($pc
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
|
2021 |
-
|
2022 |
-
|
2023 |
-
|
2024 |
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
}
|
2030 |
|
2031 |
// Small devices (landscape phones, 576px以下)
|
2032 |
@media (max-width: 576px) {
|
2033 |
-
|
2034 |
}
|
2035 |
|
2036 |
// Medium devices (tablets, 577pxから768px)
|
2037 |
@media (min-width: 577px) and (max-width: 768px) {
|
2038 |
-
|
2039 |
}
|
2040 |
|
2041 |
// Large devices (desktops, 769px以上)
|
2042 |
@media (min-width: 769px) {
|
2043 |
-
|
2044 |
}
|
|
|
2045 |
/*-------------------------------------------*/
|
2046 |
/* CSS
|
2047 |
/*-------------------------------------------*/
|
2048 |
-
$font_serif:"MS P明朝", "MS PMincho","ヒラギノ明朝 Pro W3",
|
|
|
2049 |
|
2050 |
// Layout
|
2051 |
-
.vk_staff{
|
2052 |
-
&_text{
|
2053 |
-
float:left;
|
2054 |
width: 61.6%;
|
2055 |
}
|
2056 |
&_photo {
|
2057 |
-
float:right;
|
2058 |
width: 32%;
|
2059 |
}
|
2060 |
&-layout-imageLeft {
|
2061 |
-
.vk_staff_text{
|
2062 |
-
float:right;
|
2063 |
}
|
2064 |
-
.vk_staff_photo{
|
2065 |
-
float:left;
|
2066 |
}
|
2067 |
}
|
2068 |
}
|
2069 |
|
2070 |
//
|
2071 |
.vk_staff {
|
2072 |
-
display:block;
|
2073 |
-
overflow:hidden;
|
2074 |
-
&_text{
|
2075 |
&_name {
|
2076 |
text-align: left;
|
2077 |
box-shadow: none;
|
2078 |
-
font-size:
|
2079 |
font-family: $font_serif;
|
2080 |
-
line-height: 1
|
2081 |
margin-bottom: 0.5rem;
|
2082 |
border: none;
|
2083 |
padding: 0;
|
@@ -2100,7 +2437,7 @@ $font_serif:"MS P明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hirag
|
|
2100 |
line-height: 1.6em;
|
2101 |
font-family: $font_serif;
|
2102 |
}
|
2103 |
-
&_profileTitle{
|
2104 |
font-size: 18px;
|
2105 |
font-family: $font_serif;
|
2106 |
padding-top: 0;
|
@@ -2124,12 +2461,13 @@ $font_serif:"MS P明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hirag
|
|
2124 |
vertical-align: top;
|
2125 |
text-align: center;
|
2126 |
button {
|
2127 |
-
width:100%;
|
2128 |
}
|
2129 |
-
.image-button{
|
2130 |
padding: 0;
|
2131 |
-
margin:0;
|
2132 |
display: block;
|
|
|
2133 |
}
|
2134 |
&-border-default {
|
2135 |
border: 4px solid #efefef;
|
@@ -2146,20 +2484,16 @@ $font_serif:"MS P明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hirag
|
|
2146 |
}
|
2147 |
}
|
2148 |
|
2149 |
-
|
2150 |
// Lightning で幅広の1カラムテンプレート時補正
|
2151 |
.page-template-page-onecolumn,
|
2152 |
.page-template-page-lp,
|
2153 |
.page-template-page-lp-builder {
|
2154 |
-
.vk_staff{
|
2155 |
-
@media (
|
2156 |
-
&_text{
|
2157 |
width: 74%;
|
2158 |
-
&_name {
|
2159 |
-
font-size: 4rem;
|
2160 |
-
}
|
2161 |
&_caption {
|
2162 |
-
font-size:
|
2163 |
letter-spacing: 0.5rem;
|
2164 |
}
|
2165 |
&_role {
|
@@ -2170,8 +2504,8 @@ $font_serif:"MS P明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hirag
|
|
2170 |
width: 22%;
|
2171 |
}
|
2172 |
}
|
2173 |
-
@media (
|
2174 |
-
&_text{
|
2175 |
width: 75%;
|
2176 |
}
|
2177 |
&_photo {
|
323 |
is-style-vk-handpoint-mark: "\f0a4",
|
324 |
is-style-vk-pencil-mark: "\f303",
|
325 |
is-style-vk-smile-mark: "\f118",
|
326 |
+
is-style-vk-frown-mark: "\f119",
|
327 |
);
|
328 |
|
329 |
$colorPalette: (
|
338 |
vk-has-vivid-purple-color: #9b51e0,
|
339 |
vk-has-very-light-gray-color: #eee,
|
340 |
vk-has-cyan-bluish-gray-color: #abb8c3,
|
341 |
+
vk-has-very-dark-gray-color: #313131,
|
342 |
);
|
343 |
|
344 |
ul,
|
376 |
|
377 |
&:before {
|
378 |
position: absolute;
|
379 |
+
left: 0;
|
380 |
counter-increment: number;
|
381 |
content: counter(number);
|
382 |
+
margin-left: -2.4em;
|
383 |
background: #222;
|
384 |
color: #fff;
|
385 |
text-indent: 0;
|
387 |
font-weight: bold;
|
388 |
border-radius: 50%;
|
389 |
font-size: 1em;
|
390 |
+
line-height: 1.8em;
|
391 |
+
width: 26px;
|
392 |
+
height: 26px;
|
393 |
text-align: center;
|
394 |
}
|
395 |
}
|
415 |
display: inline-block;
|
416 |
font-weight: bold;
|
417 |
font-size: 1em;
|
418 |
+
line-height: 1.8em;
|
419 |
+
width: 26px;
|
420 |
+
height: 26px;
|
421 |
text-align: center;
|
422 |
border-radius: 2px;
|
423 |
}
|
589 |
@include pad-mag;
|
590 |
@include inner-item-pad-mag;
|
591 |
}
|
592 |
+
&-alert-info {
|
593 |
+
background-color: #d9edf7;
|
594 |
+
color: #31708f;
|
595 |
+
border-radius: 3px;
|
596 |
+
border: 1px solid #bce8f1;
|
597 |
+
@include pad-mag;
|
598 |
+
@include inner-item-pad-mag;
|
599 |
+
}
|
600 |
+
&-alert-success {
|
601 |
+
background-color: #dff0d8;
|
602 |
+
color: #3c763d;
|
603 |
+
border-radius: 3px;
|
604 |
+
border: 1px solid #d6e9c6;
|
605 |
+
@include pad-mag;
|
606 |
+
@include inner-item-pad-mag;
|
607 |
+
}
|
608 |
+
&-alert-warning {
|
609 |
+
background-color: #fcf8e3;
|
610 |
+
color: #8a6d3b;
|
611 |
+
border-radius: 3px;
|
612 |
+
border: 1px solid #faebcc;
|
613 |
+
@include pad-mag;
|
614 |
+
@include inner-item-pad-mag;
|
615 |
+
}
|
616 |
+
&-alert-danger {
|
617 |
+
background-color: #f2dede;
|
618 |
+
color: #a94442;
|
619 |
+
border-radius: 3px;
|
620 |
+
border: 1px solid #ebccd1;
|
621 |
+
@include pad-mag;
|
622 |
+
@include inner-item-pad-mag;
|
623 |
+
}
|
624 |
}
|
625 |
}
|
626 |
h3:first-child,
|
969 |
}
|
970 |
} // @media only screen and (max-width: 480px) {
|
971 |
|
972 |
+
:root {
|
973 |
+
--vk-color-border-red: #dc3545;
|
974 |
+
--vk-color-background-red: #dc3545;
|
975 |
+
--vk-color-border-orange: #ffa536;
|
976 |
+
--vk-color-background-orange: #ffa536;
|
977 |
+
--vk-color-border-blue: #4267b2;
|
978 |
+
--vk-color-background-blue: #4267b2;
|
979 |
+
--vk-color-border-green: #28a745;
|
980 |
+
--vk-color-background-green: #28a745;
|
981 |
+
--vk-color-border-black: #222;
|
982 |
+
--vk-color-background-black: #222;
|
983 |
+
}
|
984 |
+
|
985 |
+
/*
|
986 |
+
線色指定
|
987 |
+
--------------------------------------------*/
|
988 |
+
.vk_borderBox-color {
|
989 |
+
&-red {
|
990 |
+
border-color: var(--vk-color-border-red);
|
991 |
+
background-color: var(--vk-color-background-red);
|
992 |
+
}
|
993 |
+
&-orange {
|
994 |
+
border-color: var(--vk-color-border-orange);
|
995 |
+
background-color: var(--vk-color-background-orange);
|
996 |
+
}
|
997 |
+
&-blue {
|
998 |
+
border-color: var(--vk-color-border-blue);
|
999 |
+
background-color: var(--vk-color-background-blue);
|
1000 |
+
}
|
1001 |
+
&-green {
|
1002 |
+
border-color: var(--vk-color-border-green);
|
1003 |
+
background-color: var(--vk-color-background-green);
|
1004 |
+
}
|
1005 |
+
&-black {
|
1006 |
+
border-color: var(--vk-color-border-black);
|
1007 |
+
background-color: var(--vk-color-background-black);
|
1008 |
+
}
|
1009 |
+
}
|
1010 |
+
|
1011 |
+
/*
|
1012 |
+
共通指定
|
1013 |
+
--------------------------------------------*/
|
1014 |
+
.vk_borderBox {
|
1015 |
+
margin: 0 0 2em;
|
1016 |
+
position: relative;
|
1017 |
+
.vk_borderBox_title_container {
|
1018 |
+
margin: 0;
|
1019 |
+
font-size: 1em;
|
1020 |
+
line-height: 1.4;
|
1021 |
+
padding: 0.5em 1.5em 0.4em;
|
1022 |
+
font-weight: bold;
|
1023 |
+
.svg-inline--fa,
|
1024 |
+
.fas {
|
1025 |
+
margin-right: 5px;
|
1026 |
+
}
|
1027 |
+
.vk_borderBox_title {
|
1028 |
+
display: inline;
|
1029 |
+
font-weight: bold;
|
1030 |
+
font-size: 1em;
|
1031 |
+
}
|
1032 |
+
}
|
1033 |
+
.vk_borderBox_body {
|
1034 |
+
padding: 1.5em;
|
1035 |
+
background-color: #fff;
|
1036 |
+
border-width: 2px;
|
1037 |
+
border-style: solid;
|
1038 |
+
p {
|
1039 |
+
margin-bottom: 0;
|
1040 |
+
}
|
1041 |
+
}
|
1042 |
+
}
|
1043 |
+
|
1044 |
+
/*
|
1045 |
+
装飾指定
|
1046 |
+
--------------------------------------------*/
|
1047 |
+
.vk_borderBox {
|
1048 |
+
&.is-style-vk_borderBox-style-solid-kado-tit-tab,
|
1049 |
+
&.is-style-vk_borderBox-style-solid-round-tit-tab {
|
1050 |
+
.vk_borderBox_title_container {
|
1051 |
+
display: inline-block;
|
1052 |
+
}
|
1053 |
+
}
|
1054 |
+
&.is-style-vk_borderBox-style-solid-round-tit-tab {
|
1055 |
+
.vk_borderBox_title_container {
|
1056 |
+
border-radius: 8px 8px 0 0;
|
1057 |
+
}
|
1058 |
+
.vk_borderBox_body {
|
1059 |
+
border-radius: 0 8px 8px 8px;
|
1060 |
+
}
|
1061 |
+
}
|
1062 |
+
&.is-style-vk_borderBox-style-solid-kado-tit-inner,
|
1063 |
+
&.is-style-vk_borderBox-style-solid-kado-tit-onborder,
|
1064 |
+
&.is-style-vk_borderBox-style-solid-kado-iconFeature {
|
1065 |
+
background-color: transparent;
|
1066 |
+
border-width: 2px;
|
1067 |
+
border-style: solid;
|
1068 |
+
.vk_borderBox_title_container {
|
1069 |
+
padding: 1.5em 1.5em 1em;
|
1070 |
+
}
|
1071 |
+
.vk_borderBox_body {
|
1072 |
+
background-color: transparent;
|
1073 |
+
border: none;
|
1074 |
+
padding-top: 0;
|
1075 |
+
}
|
1076 |
+
}
|
1077 |
+
&.is-style-vk_borderBox-style-solid-kado-iconFeature {
|
1078 |
+
.vk_borderBox_title_container {
|
1079 |
+
position: relative;
|
1080 |
+
padding-top: 2.2em;
|
1081 |
+
&::after {
|
1082 |
+
content: "";
|
1083 |
+
position: absolute;
|
1084 |
+
top: -32%;
|
1085 |
+
left: 1.5em;
|
1086 |
+
padding: 1.4em;
|
1087 |
+
border-radius: 50%;
|
1088 |
+
border: solid 2px #fff;
|
1089 |
+
}
|
1090 |
+
}
|
1091 |
+
.svg-inline--fa,
|
1092 |
+
.fa,
|
1093 |
+
.fab,
|
1094 |
+
.fas,
|
1095 |
+
.far,
|
1096 |
+
.fal,
|
1097 |
+
.fad {
|
1098 |
+
position: absolute;
|
1099 |
+
font-size: 1.3em;
|
1100 |
+
margin-right: 0;
|
1101 |
+
z-index: 100;
|
1102 |
+
top: 0%;
|
1103 |
+
left: 2.3em;
|
1104 |
+
transform: translate(-50%, -50%);
|
1105 |
+
-webkit-transform: translate(-50%, -50%);
|
1106 |
+
-ms-transform: translate(-50%, -50%);
|
1107 |
+
}
|
1108 |
+
}
|
1109 |
+
&.is-style-vk_borderBox-style-solid-kado-tit-onborder {
|
1110 |
+
.vk_borderBox_title_container {
|
1111 |
+
position: relative;
|
1112 |
+
top: -1.2em;
|
1113 |
+
left: 1em;
|
1114 |
+
z-index: 1;
|
1115 |
+
display: inline-block;
|
1116 |
+
padding: 0.5em 0.5em;
|
1117 |
+
background: #fff;
|
1118 |
+
}
|
1119 |
+
}
|
1120 |
+
}
|
1121 |
+
|
1122 |
+
/*
|
1123 |
+
タイトル部分色指定
|
1124 |
+
--------------------------------------------*/
|
1125 |
+
/* タブ風タイトル 背景色がないパターン */
|
1126 |
+
.vk_borderBox {
|
1127 |
+
&.is-style-vk_borderBox-style-solid-kado-tit-tab,
|
1128 |
+
&.is-style-vk_borderBox-style-solid-round-tit-tab {
|
1129 |
+
border: none;
|
1130 |
+
background-color: transparent;
|
1131 |
+
}
|
1132 |
+
}
|
1133 |
+
|
1134 |
+
/* タイトル背景塗り 白文字パターン */
|
1135 |
+
.is-style-vk_borderBox-style-solid-kado-tit-tab,
|
1136 |
+
.is-style-vk_borderBox-style-solid-kado-tit-banner,
|
1137 |
+
.is-style-vk_borderBox-style-solid-round-tit-tab {
|
1138 |
+
.vk_borderBox_title_container {
|
1139 |
+
color: #fff;
|
1140 |
+
}
|
1141 |
+
&.vk_borderBox-color-red {
|
1142 |
+
.vk_borderBox_title_container {
|
1143 |
+
background-color: var(--vk-color-background-red);
|
1144 |
+
}
|
1145 |
+
.vk_borderBox_body {
|
1146 |
+
border-color: var(--vk-color-border-red);
|
1147 |
+
}
|
1148 |
+
}
|
1149 |
+
|
1150 |
+
&.vk_borderBox-color-orange {
|
1151 |
+
.vk_borderBox_title_container {
|
1152 |
+
background-color: var(--vk-color-background-orange);
|
1153 |
+
}
|
1154 |
+
.vk_borderBox_body {
|
1155 |
+
border-color: var(--vk-color-border-orange);
|
1156 |
+
}
|
1157 |
+
}
|
1158 |
+
&.vk_borderBox-color-blue {
|
1159 |
+
.vk_borderBox_title_container {
|
1160 |
+
background-color: var(--vk-color-background-blue);
|
1161 |
+
}
|
1162 |
+
.vk_borderBox_body {
|
1163 |
+
border-color: var(--vk-color-border-blue);
|
1164 |
+
}
|
1165 |
+
}
|
1166 |
+
&.vk_borderBox-color-green {
|
1167 |
+
.vk_borderBox_title_container {
|
1168 |
+
background-color: var(--vk-color-background-green);
|
1169 |
+
}
|
1170 |
+
.vk_borderBox_body {
|
1171 |
+
border-color: var(--vk-color-border-green);
|
1172 |
+
}
|
1173 |
+
}
|
1174 |
+
&.vk_borderBox-color-black {
|
1175 |
+
.vk_borderBox_title_container {
|
1176 |
+
background-color: var(--vk-color-background-black);
|
1177 |
+
}
|
1178 |
+
.vk_borderBox_body {
|
1179 |
+
border-color: var(--vk-color-border-black);
|
1180 |
+
}
|
1181 |
+
}
|
1182 |
+
}
|
1183 |
+
|
1184 |
+
/* タイトル文字色のみパターン */
|
1185 |
+
.is-style-vk_borderBox-style-solid-kado-tit-inner,
|
1186 |
+
.is-style-vk_borderBox-style-solid-kado-tit-onborder,
|
1187 |
+
.is-style-vk_borderBox-style-solid-kado-iconFeature {
|
1188 |
+
&.vk_borderBox-color-red .vk_borderBox_title_container {
|
1189 |
+
color: var(--vk-color-background-red);
|
1190 |
+
}
|
1191 |
+
&.vk_borderBox-color-orange .vk_borderBox_title_container {
|
1192 |
+
color: var(--vk-color-background-orange);
|
1193 |
+
}
|
1194 |
+
&.vk_borderBox-color-blue .vk_borderBox_title_container {
|
1195 |
+
color: var(--vk-color-background-blue);
|
1196 |
+
}
|
1197 |
+
&.vk_borderBox-color-green .vk_borderBox_title_container {
|
1198 |
+
color: var(--vk-color-background-green);
|
1199 |
+
}
|
1200 |
+
&.vk_borderBox-color-black .vk_borderBox_title_container {
|
1201 |
+
color: var(--vk-color-background-black);
|
1202 |
+
}
|
1203 |
+
}
|
1204 |
+
/* iconFeatureパターン */
|
1205 |
+
.is-style-vk_borderBox-style-solid-kado-iconFeature {
|
1206 |
+
&.vk_borderBox-color-red {
|
1207 |
+
.vk_borderBox_title_container {
|
1208 |
+
.svg-inline--fa,
|
1209 |
+
.fas {
|
1210 |
+
//iconfont
|
1211 |
+
color: #fff;
|
1212 |
+
}
|
1213 |
+
&::after {
|
1214 |
+
background-color: var(--vk-color-background-red);
|
1215 |
+
}
|
1216 |
+
}
|
1217 |
+
}
|
1218 |
+
&.vk_borderBox-color-orange {
|
1219 |
+
.vk_borderBox_title_container {
|
1220 |
+
.svg-inline--fa,
|
1221 |
+
.fas {
|
1222 |
+
//iconfont
|
1223 |
+
background-color: var(--vk-color-background-orange);
|
1224 |
+
color: #fff;
|
1225 |
+
}
|
1226 |
+
&::after {
|
1227 |
+
background-color: var(--vk-color-background-orange);
|
1228 |
+
}
|
1229 |
+
}
|
1230 |
+
}
|
1231 |
+
&.vk_borderBox-color-blue {
|
1232 |
+
.vk_borderBox_title_container {
|
1233 |
+
.svg-inline--fa,
|
1234 |
+
.fas {
|
1235 |
+
//iconfont
|
1236 |
+
background-color: var(--vk-color-background-blue);
|
1237 |
+
color: #fff;
|
1238 |
+
}
|
1239 |
+
&::after {
|
1240 |
+
background-color: var(--vk-color-background-blue);
|
1241 |
+
}
|
1242 |
+
}
|
1243 |
+
}
|
1244 |
+
&.vk_borderBox-color-green {
|
1245 |
+
.vk_borderBox_title_container {
|
1246 |
+
.svg-inline--fa,
|
1247 |
+
.fas {
|
1248 |
+
//iconfont
|
1249 |
+
background-color: var(--vk-color-background-green);
|
1250 |
+
color: #fff;
|
1251 |
+
}
|
1252 |
+
&::after {
|
1253 |
+
background-color: var(--vk-color-background-green);
|
1254 |
+
}
|
1255 |
+
}
|
1256 |
+
}
|
1257 |
+
&.vk_borderBox-color-black {
|
1258 |
+
.vk_borderBox_title_container {
|
1259 |
+
.svg-inline--fa,
|
1260 |
+
.fas {
|
1261 |
+
//iconfont
|
1262 |
+
background-color: var(--vk-color-background-black);
|
1263 |
+
color: #fff;
|
1264 |
+
}
|
1265 |
+
&::after {
|
1266 |
+
background-color: var(--vk-color-background-black);
|
1267 |
+
}
|
1268 |
+
}
|
1269 |
+
}
|
1270 |
+
}
|
1271 |
+
|
1272 |
.vk_button {
|
1273 |
margin: 5px 0;
|
1274 |
text-align: center; /* テキストのみの時のセンター揃え */
|
2256 |
}
|
2257 |
.components-button.image-button {
|
2258 |
margin: 0;
|
2259 |
+
height: auto; //これがないとfirefoxの管理画面上でbutton内のimage画像が上にはみ出す
|
2260 |
}
|
2261 |
}
|
2262 |
} // .vk_prContent {
|
2347 |
/* CSS
|
2348 |
/*-------------------------------------------*/
|
2349 |
|
2350 |
+
@mixin switchVisibility($pc, $tablet, $mobile) {
|
2351 |
+
.vk_spacer {
|
2352 |
+
.vk_spacer-display-pc {
|
2353 |
+
display: $pc;
|
2354 |
+
}
|
2355 |
|
2356 |
+
.vk_spacer-display-tablet {
|
2357 |
+
display: $tablet;
|
2358 |
+
}
|
2359 |
|
2360 |
+
.vk_spacer-display-mobile {
|
2361 |
+
display: $mobile;
|
2362 |
+
}
|
2363 |
+
}
|
2364 |
}
|
2365 |
|
2366 |
// Small devices (landscape phones, 576px以下)
|
2367 |
@media (max-width: 576px) {
|
2368 |
+
@include switchVisibility(none, none, block);
|
2369 |
}
|
2370 |
|
2371 |
// Medium devices (tablets, 577pxから768px)
|
2372 |
@media (min-width: 577px) and (max-width: 768px) {
|
2373 |
+
@include switchVisibility(none, block, none);
|
2374 |
}
|
2375 |
|
2376 |
// Large devices (desktops, 769px以上)
|
2377 |
@media (min-width: 769px) {
|
2378 |
+
@include switchVisibility(block, none, none);
|
2379 |
}
|
2380 |
+
|
2381 |
/*-------------------------------------------*/
|
2382 |
/* CSS
|
2383 |
/*-------------------------------------------*/
|
2384 |
+
$font_serif: "MS P明朝", "MS PMincho", "ヒラギノ明朝 Pro W3",
|
2385 |
+
"Hiragino Mincho Pro", "serif";
|
2386 |
|
2387 |
// Layout
|
2388 |
+
.vk_staff {
|
2389 |
+
&_text {
|
2390 |
+
float: left;
|
2391 |
width: 61.6%;
|
2392 |
}
|
2393 |
&_photo {
|
2394 |
+
float: right;
|
2395 |
width: 32%;
|
2396 |
}
|
2397 |
&-layout-imageLeft {
|
2398 |
+
.vk_staff_text {
|
2399 |
+
float: right;
|
2400 |
}
|
2401 |
+
.vk_staff_photo {
|
2402 |
+
float: left;
|
2403 |
}
|
2404 |
}
|
2405 |
}
|
2406 |
|
2407 |
//
|
2408 |
.vk_staff {
|
2409 |
+
display: block;
|
2410 |
+
overflow: hidden;
|
2411 |
+
&_text {
|
2412 |
&_name {
|
2413 |
text-align: left;
|
2414 |
box-shadow: none;
|
2415 |
+
font-size: 2.5rem;
|
2416 |
font-family: $font_serif;
|
2417 |
+
line-height: 1;
|
2418 |
margin-bottom: 0.5rem;
|
2419 |
border: none;
|
2420 |
padding: 0;
|
2437 |
line-height: 1.6em;
|
2438 |
font-family: $font_serif;
|
2439 |
}
|
2440 |
+
&_profileTitle {
|
2441 |
font-size: 18px;
|
2442 |
font-family: $font_serif;
|
2443 |
padding-top: 0;
|
2461 |
vertical-align: top;
|
2462 |
text-align: center;
|
2463 |
button {
|
2464 |
+
width: 100%;
|
2465 |
}
|
2466 |
+
.image-button {
|
2467 |
padding: 0;
|
2468 |
+
margin: 0;
|
2469 |
display: block;
|
2470 |
+
height: 100%; // これがないと画像の枠が潰れる
|
2471 |
}
|
2472 |
&-border-default {
|
2473 |
border: 4px solid #efefef;
|
2484 |
}
|
2485 |
}
|
2486 |
|
|
|
2487 |
// Lightning で幅広の1カラムテンプレート時補正
|
2488 |
.page-template-page-onecolumn,
|
2489 |
.page-template-page-lp,
|
2490 |
.page-template-page-lp-builder {
|
2491 |
+
.vk_staff {
|
2492 |
+
@media (min-width: 992px) {
|
2493 |
+
&_text {
|
2494 |
width: 74%;
|
|
|
|
|
|
|
2495 |
&_caption {
|
2496 |
+
font-size: 1rem;
|
2497 |
letter-spacing: 0.5rem;
|
2498 |
}
|
2499 |
&_role {
|
2504 |
width: 22%;
|
2505 |
}
|
2506 |
}
|
2507 |
+
@media (min-width: 1200px) {
|
2508 |
+
&_text {
|
2509 |
width: 75%;
|
2510 |
}
|
2511 |
&_photo {
|
inc/template-tags/package/template-tags-veu.php
CHANGED
@@ -10,30 +10,6 @@ https://github.com/vektor-inc/vektor-wp-libraries
|
|
10 |
* ExUnit固有の関数だが、ExUnitの機能を複製している他のプラグインにも使用されるものもある
|
11 |
*/
|
12 |
|
13 |
-
/**
|
14 |
-
* VK Blocks Widget カテゴリーを登録
|
15 |
-
* ExUnit 内から VK Blocks Widget にブロック
|
16 |
-
* ブロック登録元に下記の行を追加して登録する
|
17 |
-
* add_filter( 'block_categories', 'vew_add_block_category', 10, 2 );
|
18 |
-
*/
|
19 |
-
|
20 |
-
function vew_add_block_category( $categories, $post ) {
|
21 |
-
|
22 |
-
if ( ! vk_is_block_category_exist( $categories, 'vk-blocks-cat' ) ) {
|
23 |
-
$categories = array_merge(
|
24 |
-
$categories,
|
25 |
-
array(
|
26 |
-
array(
|
27 |
-
'slug' => 'vk-blocks-cat',
|
28 |
-
'title' => veu_get_prefix() . __( 'Blocks', 'vk-all-in-one-expansion-unit' ),
|
29 |
-
'icon' => '',
|
30 |
-
),
|
31 |
-
)
|
32 |
-
);
|
33 |
-
}
|
34 |
-
return $categories;
|
35 |
-
}
|
36 |
-
|
37 |
function veu_get_common_options() {
|
38 |
$dafault = veu_get_common_options_default();
|
39 |
$options = get_option( 'vkExUnit_common_options' );
|
10 |
* ExUnit固有の関数だが、ExUnitの機能を複製している他のプラグインにも使用されるものもある
|
11 |
*/
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
function veu_get_common_options() {
|
14 |
$dafault = veu_get_common_options_default();
|
15 |
$options = get_option( 'vkExUnit_common_options' );
|
inc/template-tags/package/template-tags.php
CHANGED
@@ -14,7 +14,6 @@ https://github.com/vektor-inc/vektor-wp-libraries
|
|
14 |
vk_is_plugin_active
|
15 |
Sanitize
|
16 |
Post Type Check Box
|
17 |
-
vk_is_checked
|
18 |
*/
|
19 |
|
20 |
if ( ! function_exists( 'vk_is_template_tags_exist' ) ) {
|
@@ -430,24 +429,3 @@ if ( ! function_exists( 'vk_is_checked' ) ) {
|
|
430 |
echo $checked;
|
431 |
}
|
432 |
}
|
433 |
-
|
434 |
-
/**
|
435 |
-
* Chack block category exist
|
436 |
-
*
|
437 |
-
* @param array $categories
|
438 |
-
* @param string $slug
|
439 |
-
* @return boolian
|
440 |
-
*/
|
441 |
-
if ( ! function_exists( 'vk_is_block_category_exist' ) ) {
|
442 |
-
function vk_is_block_category_exist( $categories, $slug ) {
|
443 |
-
$keys = array();
|
444 |
-
foreach ( $categories as $key => $value ) {
|
445 |
-
$keys[] = $value['slug'];
|
446 |
-
}
|
447 |
-
if ( in_array( $slug, $keys ) ) {
|
448 |
-
return true;
|
449 |
-
} else {
|
450 |
-
return false;
|
451 |
-
}
|
452 |
-
}
|
453 |
-
}
|
14 |
vk_is_plugin_active
|
15 |
Sanitize
|
16 |
Post Type Check Box
|
|
|
17 |
*/
|
18 |
|
19 |
if ( ! function_exists( 'vk_is_template_tags_exist' ) ) {
|
429 |
echo $checked;
|
430 |
}
|
431 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/vk-blocks/build/block-build-editor.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@charset "UTF-8";.vk_block_icon_pro{fill:#c00}.editor-block-list-item-vk-blocks-card:after,.editor-block-list-item-vk-blocks-child-page:after,.editor-block-list-item-vk-blocks-outer:after,.editor-block-list-item-vk-blocks-post-list:after,.editor-block-list-item-vk-blocks-simple-table:after,.editor-block-list-item-vk-blocks-step:after,.editor-block-list-item-vk-blocks-table-of-contents:after,.editor-block-list-item-vk-blocks-timeline:after{position:absolute;top:0;right:0;content:"Pro";display:inline-block;font-size:10px;line-height:1;color:#fff;background-color:#cd3034;border-radius:2px;padding:3px 4px}.components-button.block-editor-block-switcher__toggle{overflow:hidden}input[type=range]{margin:1px}.components-base-control__label{font-weight:700}.components-base-control .components-base-control__help{margin-top:0}.components-radio-control__option label{margin-bottom:0}.components-checkbox-control__label{margin-bottom:0}.components-color-palette{display:block;overflow:hidden}.editor-url-input input[type=text]{width:100%}.vk_outer_sidebar_bgImage{position:relative}.vk_outer_sidebar_bgImage .components-button{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);transition:all 1s}.vk_outer_sidebar_bgImage .button-delete{opacity:0;border:1px solid #d33;color:#d33;transition:all 1s}.vk_outer_sidebar_bgImage .button-delete:hover{background-color:#d33;border:1px solid #b72a2a;color:#fff}.vk_outer_sidebar_bgImage:hover .button-delete{transition:all 1s;opacity:1}.edit-post-visual-editor.editor-styles-wrapper h1:first-child.vk_prBlocks_item_title{margin-top:.9em}.edit-post-visual-editor.editor-styles-wrapper .postList_itemCard_button-option{margin-bottom:5px}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter{position:relative}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter .components-button{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);transition:all 1s}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter .button-delete{opacity:0;border:1px solid #b52727;color:#b52727;transition:all 1s}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter .button-delete:hover{background-color:#b52727;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter:hover .button-delete{transition:all 1s;opacity:1}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit{width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-editor-block-list__layout,.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__layout{display:flex;flex-wrap:wrap;padding:0;width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-editor-block-list__block,.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block{margin:0 15px 30px;padding:0}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-editor-block-list__block .block-editor-block-list__block-edit,.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block .block-editor-block-list__block-edit{margin:0;height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-editor-block-list__block div[data-block],.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block div[data-block]{margin:0;height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-editor-block-list__block .vk_post,.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block .vk_post{width:100%;height:100%;margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-list-appender{clear:both;width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-3 .editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-4 .editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-6 .editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-12 .editor-block-list__block{width:calc(100% - 30px)}@media (min-width:576px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-3 .editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-4 .editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-6 .editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:768px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-3 .editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-4 .block-editor-block-list__block,.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-4 .editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-6 .editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:992px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-3>.editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-4>.editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-6>.editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-12>.editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:1200px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-3>.editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-4>.editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-6>.editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-12>.editor-block-list__block{width:calc(100% - 30px)}}.edit-post-visual-editor.editor-styles-wrapper .vk_edit_hidden_warning{opacity:.4}.edit-post-visual-editor.editor-styles-wrapper .vk_edit_hidden_all{opacity:.2}.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden{display:block!important;color:var(--blue)}.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden.vk_posts{display:flex!important}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden-xs{display:block!important}}@media (min-width:576px) and (max-width:767.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden-sm{display:block!important}}@media (min-width:768px) and (max-width:991.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden-md{display:block!important}}@media (min-width:992px) and (max-width:1199.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden-lg{display:block!important}}@media (min-width:1200px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden-xl{display:block!important}}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark{padding-inline-start:2em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark li{list-style:none;position:relative;margin-bottom:.8em;line-height:1.65em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark{counter-reset:number;list-style-type:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li{position:relative;list-style:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li:before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li:before{position:absolute;left:-.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:700;border-radius:50%;font-size:1em;line-height:1em;padding:.3em .37em .2em;text-align:center}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark{counter-reset:number;list-style-type:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li{position:relative;list-style:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li:before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li:before{position:absolute;left:-.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:700;font-size:1em;line-height:1em;padding:.3em .37em .2em;text-align:center;border-radius:2px}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-lg li::before{left:-.8em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-2x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-2x li::before{left:-1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-3x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-3x li::before{left:-1.4em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-4x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-4x li::before{left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-5x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-5x li::before{left:-1.6em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"•";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-pale-pink-color li::before{color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before{color:#fff;background-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-red-color li::before{color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before{color:#fff;background-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-luminous-vivid-orange-color li::before{color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before{color:#fff;background-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-luminous-vivid-amber-color li::before{color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before{color:#fff;background-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-light-green-cyan-color li::before{color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before{color:#fff;background-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-green-cyan-color li::before{color:#00d084}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before{color:#fff;background-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-pale-cyan-blue-color li::before{color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before{color:#fff;background-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-cyan-blue-color li::before{color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before{color:#fff;background-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-purple-color li::before{color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before{color:#fff;background-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-very-light-gray-color li::before{color:#eee}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before{color:#fff;background-color:#eee}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-cyan-bluish-gray-color li::before{color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before{color:#fff;background-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-very-dark-gray-color li::before{color:#313131}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before{color:#fff;background-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid{border:solid 3px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner{border:solid 3px;border-radius:8px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted{border:dotted 1px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed{border:dashed 2px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double{border:double 5px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch{margin:1em 0;padding:.5em;border-radius:8px}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch .wp-block-group__inner-container{border:dashed 2px;border-radius:8px;padding:1.8em}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border{border-top:solid 1px;border-bottom:solid 1px;padding:1.8em;margin:1.2em 0;padding-left:0;padding-right:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow{box-shadow:0 0 5px rgba(0,0,0,.2);padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group h3:first-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group h4:first-child{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group .wp-block-columns:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group dl:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group ol:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group p:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group table:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group ul:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-pink-color{border-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-pink-color .wp-block-group__inner-container{border-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-red-color{border-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-red-color .wp-block-group__inner-container{border-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-orange-color{border-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-orange-color .wp-block-group__inner-container{border-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-amber-color{border-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-amber-color .wp-block-group__inner-container{border-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-light-green-cyan-color{border-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-light-green-cyan-color .wp-block-group__inner-container{border-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-green-cyan-color{border-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-green-cyan-color .wp-block-group__inner-container{border-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-cyan-blue-color{border-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-cyan-blue-color .wp-block-group__inner-container{border-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-cyan-blue-color{border-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-cyan-blue-color .wp-block-group__inner-container{border-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-purple-color{border-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-purple-color .wp-block-group__inner-container{border-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-light-gray-color{border-color:#eee}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-light-gray-color .wp-block-group__inner-container{border-color:#eee}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-cyan-bluish-gray-color{border-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-cyan-bluish-gray-color .wp-block-group__inner-container{border-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-dark-gray-color{border-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-dark-gray-color .wp-block-group__inner-container{border-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .wp-block-embed-youtube iframe{width:100%}.edit-post-visual-editor.editor-styles-wrapper .alert{padding:1em;margin:1em 0;border-radius:3px}.edit-post-visual-editor.editor-styles-wrapper .alert p{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .alert+.edit-post-visual-editor.editor-styles-wrapper .alert{margin-top:2em}.edit-post-visual-editor.editor-styles-wrapper .alert a{transition:color .3s linear,opacity .3s linear}.edit-post-visual-editor.editor-styles-wrapper .alert a:link,.edit-post-visual-editor.editor-styles-wrapper .alert a:visited{opacity:.8;text-decoration:underline}.edit-post-visual-editor.editor-styles-wrapper .alert a:hover,.edit-post-visual-editor.editor-styles-wrapper .alert a:visited{opacity:1;text-decoration:none}.edit-post-visual-editor.editor-styles-wrapper .alert-success{background-color:#dff0d8;color:#3c763d;border-color:#d6e9c6}.edit-post-visual-editor.editor-styles-wrapper .alert-info{background-color:#d9edf7;color:#31708f;border-color:#bce8f1}.edit-post-visual-editor.editor-styles-wrapper .alert-warning{background-color:#fcf8e3;color:#8a6d3b;border-color:#faebcc}.edit-post-visual-editor.editor-styles-wrapper .alert-danger{background-color:#f2dede;color:#a94442;border-color:#ebccd1}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon{display:flex;align-items:center;margin-bottom:1em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon figure{margin:0}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon p{word-break:break-all;background:#f5f5f5;padding:1.1rem 1.4rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon{flex-basis:96px;flex-shrink:0;text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon_image{vertical-align:bottom;max-width:64px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon_name{display:block;text-align:center;font-size:.7rem;margin-top:.2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content{position:relative;text-align:left}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content.editor-rich-text__tinymce[data-is-placeholder-visible=true]{position:absolute}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content{border-color:#f5f5f5;border-radius:.4em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content::after{content:'';position:absolute;width:0;height:0;border:20px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content{border-radius:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after,.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::before{position:absolute;content:'';border-radius:50%;background:inherit}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::before{width:20px;height:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after{width:10px;height:10px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{margin-right:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{left:0;top:50%;border-right-color:inherit;border-left:0;margin-top:-20px;margin-left:-20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{left:-22px;top:7px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::after{left:-35px;top:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right{flex-direction:row-reverse}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{right:0;top:50%;border-left-color:inherit;border-right:0;margin-top:-20px;margin-right:-20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::before{right:-22px;top:7px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::after{right:-35px;top:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.animation-vibration .vk_balloon_content{display:inline-block;animation:vibration .1s infinite}@keyframes vibration{0%{transform:translate(0,0) rotateZ(0)}25%{transform:translate(2px,2px) rotateZ(1deg)}50%{transform:translate(0,2px) rotateZ(0)}75%{transform:translate(2px,0) rotateZ(-1deg)}100%{transform:translate(0,0) rotateZ(0)}}@media only screen and (max-width:480px){.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content{font-size:.9em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content::after{border:15px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after{border:5px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon{align-items:normal}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{max-width:86px;margin-right:1.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-left:-15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2rem;max-width:86px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{width:15px;height:15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right{text-align:right}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:auto;margin-right:0}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-right:-15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2rem;margin-right:0;max-width:86px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon{max-width:96px}}.edit-post-visual-editor.editor-styles-wrapper .vk_button{margin:5px 0;text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_button-color-custom a:hover{opacity:.8;box-shadow:0 0 0 .2rem rgba(171,184,195,.25)}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-left{text-align:left}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-center{text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-right{text-align:right}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-block{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-wide{display:block;margin-left:auto;margin-right:auto;max-width:70%}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-wide .btn{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link{min-width:100px;min-height:30px}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link-type-text{box-shadow:none;padding:0}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link-type-text:hover{background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link.btn{padding-top:.7em;padding-bottom:.6em;user-select:text}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_before{margin-right:.7rem}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_after{margin-left:.7rem}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_subCaption{display:block;overflow:hidden;margin:0;font-size:80%}.edit-post-visual-editor.editor-styles-wrapper .vk_button .editor-rich-text{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_button-color-custom .vk_button_link-type-text:hover{box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-primary{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-secondary{color:#fff;background-color:#6c757d}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-success{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-info{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-warning{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-danger{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-light{background-color:#f8f9fa}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-dark{color:#fff;background-color:#343a40}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-dark:hover,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-secondary:hover{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary{color:#007bff;border:1px solid #007bff;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary{color:#6c757d;border:1px solid #6c757d;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success{color:#28a745;border:1px solid #28a745;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info{color:#17a2b8;border:1px solid #17a2b8;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning{color:#ffc107;border:1px solid #ffc107;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger{color:#dc3545;border:1px solid #dc3545;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light{border:1px solid #f8f9fa;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark{color:#343a40;border:1px solid #343a40;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary:hover{background:#007bff;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary:hover{background:#6c757d;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success:hover{background:#28a745;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info:hover{background:#17a2b8;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning:hover{background:#ffc107;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger:hover{background:#dc3545;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light:hover{background:#f8f9fa;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark:hover{background:#343a40;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_faq{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content,.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title{border:none;padding-left:35px}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content:before,.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title:before{position:absolute;left:0;font-size:24px;line-height:105%}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title{margin-bottom:15px;font-size:18px;font-weight:700}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title:before{font-family:areal;content:"Q ";color:#e50000}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content{margin:0}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content:before{content:"A ";color:#337ab7;font-family:""}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-on:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-off{padding-bottom:0;margin-bottom:30px}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-off:after{content:"";font-size:0;background-image:none}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame{display:flex;padding:20px 25px;border:3px solid #e5e5e5;margin:0;justify-content:space-between}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text{display:block;overflow:hidden;margin:0;width:100%;box-sizing:border-box}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_content,.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_title{padding-left:0;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_title{border-bottom:1px dotted #ccc;margin:0 0 10px;padding:0 0 5px;font-size:1.2em}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_content{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_image{max-width:150px;margin-left:15px;box-sizing:border-box}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title{background:0 0;border:none;border-radius:0;padding:0;font-weight:400;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after{content:none;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after{background:0 0;border:none;border-radius:0;padding:0;font-weight:400;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after:after{content:none;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after:before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading_subtext{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after{border-bottom:none!important}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;border:none;background-color:#efefef;padding:.6em .7em .5em;margin-bottom:1.2em;border-radius:4px}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-top:double 3px #333;border-bottom:double 3px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:double 3px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-top:solid 1px #333;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:1px dotted #111}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;display:flex;align-items:center;text-align:center;margin-bottom:1.2em;padding:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before{content:"";flex-grow:1;border-bottom:1px solid #333;position:unset;width:unset;border-top:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before{margin-right:1em;top:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after{margin-left:1em;bottom:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;border:none;background-color:transparent!important;padding:.7em;margin-bottom:1.2em;text-align:center;border-bottom:unset!important}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before{content:"";position:absolute;top:0;width:12px;height:100%;display:inline-block;margin-left:0;border-top:solid 1px #333;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before{border-left:solid 1px #333;left:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after{border-right:solid 1px #333!important;right:0;left:auto}.edit-post-visual-editor.editor-styles-wrapper .vk_hidden{display:none!important;color:var(--blue)}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden-xs{display:none!important}}@media (min-width:576px) and (max-width:767.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden-sm{display:none!important}}@media (min-width:768px) and (max-width:991.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden-md{display:none!important}}@media (min-width:992px) and (max-width:1199.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden-lg{display:none!important}}@media (min-width:1200px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden-xl{display:none!important}}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-border img{border:1px solid #e5e5e5}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-photoFrame{background-color:#fff;padding:10px;box-shadow:1px 1px 4px rgba(0,0,0,.2)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-photoFrame figcaption{margin:8px 0 0}@media screen and (max-width:992px){.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item{margin-bottom:1.5em}}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_link{color:#333}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_link:hover{color:#333;text-decoration:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);font-size:36px;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title{background-color:transparent;margin-top:.9em;margin-bottom:.6em;text-align:center;font-size:21px;line-height:1.4em;border:none;padding:0}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title::after{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_summary{margin-bottom:.5em;text-align:center;line-height:1.8em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent{margin-left:-15px;margin-right:-15px}@media (min-width:576px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent{display:flex}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent .col-sm-6{width:50%}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageLeft{flex-direction:row}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageRight{flex-direction:row-reverse}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageLeft .vk_prContent_colImg{padding-right:2em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageRight .vk_prContent_colImg{padding-left:2em}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt{vertical-align:top}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title{background-color:transparent;font-weight:700;padding:0;box-shadow:none;border:none;margin-bottom:.8em}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title:first-child{margin-top:30px}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title:after{content:"";line-height:0;display:block;overflow:hidden;position:absolute;bottom:-1px;width:0;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_text{line-height:2em;margin-bottom:1.7em}@media (min-width:992px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_btn.btn{font-size:16px}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg_image{max-width:100%;height:auto}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg .components-button.button{margin:1em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg .components-button.image-button{margin:0}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 td,.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 th{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 th{background-color:rgba(0,0,0,.05)}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1.table-striped tbody tr:nth-of-type(odd){background:inherit}}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__layout,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-rich-text__editable{padding:0;margin:0;width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit>.editor-inner-blocks{margin-top:-1px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit{height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .block-editor-block-list__insertion-point{top:-5px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit:before{right:0;left:0;top:0;bottom:0}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks tr{width:100%;display:block;border-bottom:1px solid #e5e5e5}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks tr .editor-block-list__layout{display:flex}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks td,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks th{padding:0;display:block;width:100%;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks td .editor-rich-text__editable,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks th .editor-rich-text__editable{padding:14px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit.table-striped>tbody>.editor-inner-blocks>.editor-block-list__layout>div:nth-of-type(odd){background-color:rgba(0,0,0,.05)}@media (max-width:576px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:block}}@media (min-width:577px) and (max-width:768px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:none}}@media (min-width:769px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:none}}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text{float:left;width:61.6%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo{float:right;width:32%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff-layout-imageLeft .vk_staff_text{float:right}.edit-post-visual-editor.editor-styles-wrapper .vk_staff-layout-imageLeft .vk_staff_photo{float:left}.edit-post-visual-editor.editor-styles-wrapper .vk_staff{display:block;overflow:hidden}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name{text-align:left;box-shadow:none;font-size:3.5rem;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;line-height:1;margin-bottom:.5rem;border:none;padding:0;background-color:transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name:after,.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name:before{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_caption{font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;font-size:14px;display:block;margin:0 0 .5rem 4px;letter-spacing:5px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_role{font-size:14px;line-height:1.6em;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle{font-size:18px;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;padding-top:0;padding-left:0;padding-bottom:2px;margin-bottom:1.2rem;border-top:none;border-bottom:1px solid #ccc;background:0 0}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle:after,.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle:before{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileText{font-size:14px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo{display:block;vertical-align:top;text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo button{width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo .image-button{padding:0;margin:0;display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo-border-default{border:4px solid #efefef;padding:1px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo-border-none{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo_image{width:100%;margin:0;display:block}@media (min-width:992px){.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text{width:74%}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text_name,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text_name,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text_name{font-size:4rem}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text_caption,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text_caption,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text_caption{font-size:16px;letter-spacing:.5rem}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text_role,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text_role,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text_role{letter-spacing:.5rem}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_photo{width:22%}}@media (min-width:1200px){.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text{width:75%}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_photo{width:20%}}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-overflow{white-space:nowrap!important}
|
1 |
+
@charset "UTF-8";.vk_block_icon_pro{fill:#c00}.editor-block-list-item-vk-blocks-card:after,.editor-block-list-item-vk-blocks-child-page:after,.editor-block-list-item-vk-blocks-outer:after,.editor-block-list-item-vk-blocks-post-list:after,.editor-block-list-item-vk-blocks-simple-table:after,.editor-block-list-item-vk-blocks-step:after,.editor-block-list-item-vk-blocks-table-of-contents:after,.editor-block-list-item-vk-blocks-timeline:after{position:absolute;top:0;right:0;content:"Pro";display:inline-block;font-size:10px;line-height:1;color:#fff;background-color:#cd3034;border-radius:2px;padding:3px 4px}.components-button.block-editor-block-switcher__toggle{overflow:hidden}input[type=range]{margin:1px}.components-base-control__label{font-weight:700}.components-base-control .components-base-control__help{margin-top:0}.components-radio-control__option label{margin-bottom:0}.components-checkbox-control__label{margin-bottom:0}.components-color-palette{display:block;overflow:hidden}.editor-url-input input[type=text]{width:100%}.vk_outer_sidebar_bgImage{position:relative}.vk_outer_sidebar_bgImage .components-button{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);transition:all 1s}.vk_outer_sidebar_bgImage .button-delete{opacity:0;border:1px solid #d33;color:#d33;transition:all 1s}.vk_outer_sidebar_bgImage .button-delete:hover{background-color:#d33;border:1px solid #b72a2a;color:#fff}.vk_outer_sidebar_bgImage:hover .button-delete{transition:all 1s;opacity:1}.edit-post-visual-editor.editor-styles-wrapper h1:first-child.vk_prBlocks_item_title{margin-top:.9em}.edit-post-visual-editor.editor-styles-wrapper .postList_itemCard_button-option{margin-bottom:5px}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter{position:relative}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter .components-button{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);transition:all 1s}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter .button-delete{opacity:0;border:1px solid #b52727;color:#b52727;transition:all 1s}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter .button-delete:hover{background-color:#b52727;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_post_imgOuter:hover .button-delete{transition:all 1s;opacity:1}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit{width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-editor-block-list__layout,.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__layout{display:flex;flex-wrap:wrap;padding:0;width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-editor-block-list__block,.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block{margin:0 15px 30px;padding:0}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-editor-block-list__block .block-editor-block-list__block-edit,.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block .block-editor-block-list__block-edit{margin:0;height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-editor-block-list__block div[data-block],.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block div[data-block]{margin:0;height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-editor-block-list__block .vk_post,.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block .vk_post{width:100%;height:100%;margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .block-list-appender{clear:both;width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-3 .editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-4 .editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-6 .editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xs-12 .editor-block-list__block{width:calc(100% - 30px)}@media (min-width:576px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-3 .editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-4 .editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-6 .editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-sm-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:768px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-3 .editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-4 .block-editor-block-list__block,.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-4 .editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-6 .editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-md-12 .editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:992px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-3>.editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-4>.editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-6>.editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-lg-12>.editor-block-list__block{width:calc(100% - 30px)}}@media (min-width:1200px){.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-3>.editor-block-list__block{width:calc(25% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-4>.editor-block-list__block{width:calc(33.3% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-6>.editor-block-list__block{width:calc(50% - 30px)}.edit-post-visual-editor.editor-styles-wrapper .vk_posts .vk_posts-edit-col-xl-12>.editor-block-list__block{width:calc(100% - 30px)}}.edit-post-visual-editor.editor-styles-wrapper .vk_edit_hidden_warning{opacity:.4}.edit-post-visual-editor.editor-styles-wrapper .vk_edit_hidden_all{opacity:.2}.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden{display:block!important;color:var(--blue)}.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden.vk_posts{display:flex!important}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden-xs{display:block!important}}@media (min-width:576px) and (max-width:767.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden-sm{display:block!important}}@media (min-width:768px) and (max-width:991.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden-md{display:block!important}}@media (min-width:992px) and (max-width:1199.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden-lg{display:block!important}}@media (min-width:1200px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden.vk_hidden-xl{display:block!important}}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark{padding-inline-start:2em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark li{list-style:none;position:relative;margin-bottom:.8em;line-height:1.65em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark{counter-reset:number;list-style-type:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li{position:relative;list-style:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark li:before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark li:before{position:absolute;left:0;counter-increment:number;content:counter(number);margin-left:-2.4em;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:700;border-radius:50%;font-size:1em;line-height:1.8em;width:26px;height:26px;text-align:center}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark{counter-reset:number;list-style-type:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li{position:relative;list-style:none}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark li:before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark li:before{position:absolute;left:-.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:700;font-size:1em;line-height:1.8em;width:26px;height:26px;text-align:center;border-radius:2px}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-lg li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-lg li::before{left:-.8em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-2x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-2x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-2x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-2x li::before{left:-1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-3x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-3x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-3x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-3x li::before{left:-1.4em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-4x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-4x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-4x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-4x li::before{left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-5x li,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-5x li{line-height:1.25em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.fa-5x li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.fa-5x li::before{left:-1.6em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"•";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-arrow-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-arrow-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-triangle-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-triangle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-circle-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-circle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-check-square-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-check-square-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-handpoint-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-handpoint-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-pencil-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-pencil-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-smile-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-smile-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-frown-mark li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-frown-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-default li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-pale-pink-color li::before{color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before{color:#fff;background-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-red-color li::before{color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before{color:#fff;background-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-luminous-vivid-orange-color li::before{color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before{color:#fff;background-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-luminous-vivid-amber-color li::before{color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before{color:#fff;background-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-light-green-cyan-color li::before{color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before{color:#fff;background-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-green-cyan-color li::before{color:#00d084}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before{color:#fff;background-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-pale-cyan-blue-color li::before{color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before{color:#fff;background-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-cyan-blue-color li::before{color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before{color:#fff;background-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-vivid-purple-color li::before{color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before{color:#fff;background-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-very-light-gray-color li::before{color:#eee}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before{color:#fff;background-color:#eee}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-cyan-bluish-gray-color li::before{color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before{color:#fff;background-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper ol.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.vk-has-very-dark-gray-color li::before{color:#313131}.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ol.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,.edit-post-visual-editor.editor-styles-wrapper ul.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before{color:#fff;background-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid{border:solid 3px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner{border:solid 3px;border-radius:8px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-solid-roundcorner ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted{border:dotted 1px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dotted ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed{border:dashed 2px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-dashed ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double{border:double 5px;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-double ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch{margin:1em 0;padding:.5em;border-radius:8px}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-stitch .wp-block-group__inner-container{border:dashed 2px;border-radius:8px;padding:1.8em}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border{border-top:solid 1px;border-bottom:solid 1px;padding:1.8em;margin:1.2em 0;padding-left:0;padding-right:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-top-bottom-border ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow{box-shadow:0 0 5px rgba(0,0,0,.2);padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-shadow ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-info{background-color:#d9edf7;color:#31708f;border-radius:3px;border:1px solid #bce8f1;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-info h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-info h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-info h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-info h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-info h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-info ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-info ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-info ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-info ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-success{background-color:#dff0d8;color:#3c763d;border-radius:3px;border:1px solid #d6e9c6;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-success h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-success h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-success h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-success h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-success h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-success ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-success ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-success ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-success ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-warning{background-color:#fcf8e3;color:#8a6d3b;border-radius:3px;border:1px solid #faebcc;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-warning h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-warning h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-warning h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-warning h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-warning h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-warning ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-warning ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-warning ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-warning ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-danger{background-color:#f2dede;color:#a94442;border-radius:3px;border:1px solid #ebccd1;padding:1.8em;margin:1.2em 0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-danger h2,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-danger h3,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-danger h4,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-danger h5,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-danger h6{margin-bottom:1rem}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-danger ol,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-danger ul{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-danger ol li:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.is-style-vk-group-alert-danger ul li:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group h3:first-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group h4:first-child{margin-top:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group .wp-block-columns:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group dl:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group ol:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group p:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group table:last-child,.edit-post-visual-editor.editor-styles-wrapper .wp-block-group ul:last-child{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-pink-color{border-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-pink-color .wp-block-group__inner-container{border-color:#f78da7}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-red-color{border-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-red-color .wp-block-group__inner-container{border-color:#cf2e2e}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-orange-color{border-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-orange-color .wp-block-group__inner-container{border-color:#ff6900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-amber-color{border-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-luminous-vivid-amber-color .wp-block-group__inner-container{border-color:#fcb900}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-light-green-cyan-color{border-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-light-green-cyan-color .wp-block-group__inner-container{border-color:#7bdcb5}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-green-cyan-color{border-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-green-cyan-color .wp-block-group__inner-container{border-color:#00d084}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-cyan-blue-color{border-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-pale-cyan-blue-color .wp-block-group__inner-container{border-color:#8ed1fc}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-cyan-blue-color{border-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-cyan-blue-color .wp-block-group__inner-container{border-color:#0693e3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-purple-color{border-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-vivid-purple-color .wp-block-group__inner-container{border-color:#9b51e0}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-light-gray-color{border-color:#eee}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-light-gray-color .wp-block-group__inner-container{border-color:#eee}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-cyan-bluish-gray-color{border-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-cyan-bluish-gray-color .wp-block-group__inner-container{border-color:#abb8c3}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-dark-gray-color{border-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .wp-block-group.vk-has-very-dark-gray-color .wp-block-group__inner-container{border-color:#313131}.edit-post-visual-editor.editor-styles-wrapper .wp-block-embed-youtube iframe{width:100%}.edit-post-visual-editor.editor-styles-wrapper .alert{padding:1em;margin:1em 0;border-radius:3px}.edit-post-visual-editor.editor-styles-wrapper .alert p{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .alert+.edit-post-visual-editor.editor-styles-wrapper .alert{margin-top:2em}.edit-post-visual-editor.editor-styles-wrapper .alert a{transition:color .3s linear,opacity .3s linear}.edit-post-visual-editor.editor-styles-wrapper .alert a:link,.edit-post-visual-editor.editor-styles-wrapper .alert a:visited{opacity:.8;text-decoration:underline}.edit-post-visual-editor.editor-styles-wrapper .alert a:hover,.edit-post-visual-editor.editor-styles-wrapper .alert a:visited{opacity:1;text-decoration:none}.edit-post-visual-editor.editor-styles-wrapper .alert-success{background-color:#dff0d8;color:#3c763d;border-color:#d6e9c6}.edit-post-visual-editor.editor-styles-wrapper .alert-info{background-color:#d9edf7;color:#31708f;border-color:#bce8f1}.edit-post-visual-editor.editor-styles-wrapper .alert-warning{background-color:#fcf8e3;color:#8a6d3b;border-color:#faebcc}.edit-post-visual-editor.editor-styles-wrapper .alert-danger{background-color:#f2dede;color:#a94442;border-color:#ebccd1}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon{display:flex;align-items:center;margin-bottom:1em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon figure{margin:0}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon p{word-break:break-all;background:#f5f5f5;padding:1.1rem 1.4rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon{flex-basis:96px;flex-shrink:0;text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon_image{vertical-align:bottom;max-width:64px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon_name{display:block;text-align:center;font-size:.7rem;margin-top:.2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content{position:relative;text-align:left}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content.editor-rich-text__tinymce[data-is-placeholder-visible=true]{position:absolute}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content{border-color:#f5f5f5;border-radius:.4em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content::after{content:'';position:absolute;width:0;height:0;border:20px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content{border-radius:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after,.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::before{position:absolute;content:'';border-radius:50%;background:inherit}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::before{width:20px;height:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after{width:10px;height:10px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{margin-right:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{left:0;top:50%;border-right-color:inherit;border-left:0;margin-top:-20px;margin-left:-20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{left:-22px;top:7px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::after{left:-35px;top:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right{flex-direction:row-reverse}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:2rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{right:0;top:50%;border-left-color:inherit;border-right:0;margin-top:-20px;margin-right:-20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::before{right:-22px;top:7px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::after{right:-35px;top:20px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.animation-vibration .vk_balloon_content{display:inline-block;animation:vibration .1s infinite}@keyframes vibration{0%{transform:translate(0,0) rotateZ(0)}25%{transform:translate(2px,2px) rotateZ(1deg)}50%{transform:translate(0,2px) rotateZ(0)}75%{transform:translate(2px,0) rotateZ(-1deg)}100%{transform:translate(0,0) rotateZ(0)}}@media only screen and (max-width:480px){.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_content{font-size:.9em}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-serif .vk_balloon_content::after{border:15px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon-type-think .vk_balloon_content::after{border:5px solid transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon{align-items:normal}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{max-width:86px;margin-right:1.5rem}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-left:-15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2rem;max-width:86px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{width:15px;height:15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right{text-align:right}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:auto;margin-right:0}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-right:-15px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2rem;margin-right:0;max-width:86px}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_balloon_icon{max-width:96px}}.edit-post-visual-editor.editor-styles-wrapper :root{--vk-color-border-red:#dc3545;--vk-color-background-red:#dc3545;--vk-color-border-orange:#ffa536;--vk-color-background-orange:#ffa536;--vk-color-border-blue:#4267b2;--vk-color-background-blue:#4267b2;--vk-color-border-green:#28a745;--vk-color-background-green:#28a745;--vk-color-border-black:#222;--vk-color-background-black:#222}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox-color-red{border-color:var(--vk-color-border-red);background-color:var(--vk-color-background-red)}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox-color-orange{border-color:var(--vk-color-border-orange);background-color:var(--vk-color-background-orange)}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox-color-blue{border-color:var(--vk-color-border-blue);background-color:var(--vk-color-background-blue)}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox-color-green{border-color:var(--vk-color-border-green);background-color:var(--vk-color-background-green)}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox-color-black{border-color:var(--vk-color-border-black);background-color:var(--vk-color-background-black)}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox{margin:0 0 2em;position:relative}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox .vk_borderBox_title_container{margin:0;font-size:1em;line-height:1.4;padding:.5em 1.5em .4em;font-weight:700}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox .vk_borderBox_title_container .fas,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox .vk_borderBox_title_container .svg-inline--fa{margin-right:5px}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox .vk_borderBox_title_container .vk_borderBox_title{display:inline;font-weight:700;font-size:1em}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox .vk_borderBox_body{padding:1.5em;background-color:#fff;border-width:2px;border-style:solid}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox .vk_borderBox_body p{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-tab .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{border-radius:8px 8px 0 0}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_body{border-radius:0 8px 8px 8px}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder{background-color:transparent;border-width:2px;border-style:solid}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container{padding:1.5em 1.5em 1em}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_body{background-color:transparent;border:none;padding-top:0}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container{position:relative;padding-top:2.2em}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container::after{content:"";position:absolute;top:-32%;left:1.5em;padding:1.4em;border-radius:50%;border:solid 2px #fff}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .fa,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .fab,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .fad,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .fal,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .far,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .fas,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .svg-inline--fa{position:absolute;font-size:1.3em;margin-right:0;z-index:100;top:0;left:2.3em;transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%)}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container{position:relative;top:-1.2em;left:1em;z-index:1;display:inline-block;padding:.5em .5em;background:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-tab,.edit-post-visual-editor.editor-styles-wrapper .vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab{border:none;background-color:transparent}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-banner .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-tab .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-red .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-red .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-red .vk_borderBox_title_container{background-color:var(--vk-color-background-red)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-red .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-red .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-red .vk_borderBox_body{border-color:var(--vk-color-border-red)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-orange .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-orange .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-orange .vk_borderBox_title_container{background-color:var(--vk-color-background-orange)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-orange .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-orange .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-orange .vk_borderBox_body{border-color:var(--vk-color-border-orange)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-blue .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-blue .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-blue .vk_borderBox_title_container{background-color:var(--vk-color-background-blue)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-blue .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-blue .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-blue .vk_borderBox_body{border-color:var(--vk-color-border-blue)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-green .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-green .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-green .vk_borderBox_title_container{background-color:var(--vk-color-background-green)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-green .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-green .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-green .vk_borderBox_body{border-color:var(--vk-color-border-green)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-black .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-black .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-black .vk_borderBox_title_container{background-color:var(--vk-color-background-black)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-black .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-black .vk_borderBox_body,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-black .vk_borderBox_body{border-color:var(--vk-color-border-black)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-red .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-red .vk_borderBox_title_container{color:var(--vk-color-background-red)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-orange .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-orange .vk_borderBox_title_container{color:var(--vk-color-background-orange)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-blue .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-blue .vk_borderBox_title_container{color:var(--vk-color-background-blue)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-green .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-green .vk_borderBox_title_container{color:var(--vk-color-background-green)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-black .vk_borderBox_title_container,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-black .vk_borderBox_title_container{color:var(--vk-color-background-black)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container .fas,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container .svg-inline--fa{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container::after{background-color:var(--vk-color-background-red)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container .fas,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container .svg-inline--fa{background-color:var(--vk-color-background-orange);color:#fff}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container::after{background-color:var(--vk-color-background-orange)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container .fas,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container .svg-inline--fa{background-color:var(--vk-color-background-blue);color:#fff}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container::after{background-color:var(--vk-color-background-blue)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container .fas,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container .svg-inline--fa{background-color:var(--vk-color-background-green);color:#fff}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container::after{background-color:var(--vk-color-background-green)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container .fas,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container .svg-inline--fa{background-color:var(--vk-color-background-black);color:#fff}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container::after{background-color:var(--vk-color-background-black)}.edit-post-visual-editor.editor-styles-wrapper .vk_button{margin:5px 0;text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_button-color-custom a:hover{opacity:.8;box-shadow:0 0 0 .2rem rgba(171,184,195,.25)}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-left{text-align:left}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-center{text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-right{text-align:right}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-block{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-wide{display:block;margin-left:auto;margin-right:auto;max-width:70%}.edit-post-visual-editor.editor-styles-wrapper .vk_button-align-wide .btn{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link{min-width:100px;min-height:30px}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link-type-text{box-shadow:none;padding:0}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link-type-text:hover{background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link.btn{padding-top:.7em;padding-bottom:.6em;user-select:text}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_before{margin-right:.7rem}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_after{margin-left:.7rem}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link_subCaption{display:block;overflow:hidden;margin:0;font-size:80%}.edit-post-visual-editor.editor-styles-wrapper .vk_button .editor-rich-text{display:inline-block}.edit-post-visual-editor.editor-styles-wrapper .vk_button-color-custom .vk_button_link-type-text:hover{box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-primary{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-secondary{color:#fff;background-color:#6c757d}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-success{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-info{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-warning{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-danger{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-light{background-color:#f8f9fa}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-dark{color:#fff;background-color:#343a40}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-dark:hover,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-secondary:hover{color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary{color:#007bff;border:1px solid #007bff;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary{color:#6c757d;border:1px solid #6c757d;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success{color:#28a745;border:1px solid #28a745;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info{color:#17a2b8;border:1px solid #17a2b8;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning{color:#ffc107;border:1px solid #ffc107;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger{color:#dc3545;border:1px solid #dc3545;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light{border:1px solid #f8f9fa;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark{color:#343a40;border:1px solid #343a40;background:0 0;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-primary:hover{background:#007bff;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary:hover{background:#6c757d;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success:hover{background:#28a745;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info:hover{background:#17a2b8;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning:hover{background:#ffc107;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger:hover{background:#dc3545;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light:hover{background:#f8f9fa;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark:focus,.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark:hover{background:#343a40;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_faq{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content,.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title{border:none;padding-left:35px}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content:before,.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title:before{position:absolute;left:0;font-size:24px;line-height:105%}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title{margin-bottom:15px;font-size:18px;font-weight:700}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_title:before{font-family:areal;content:"Q ";color:#e50000}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content{margin:0}.edit-post-visual-editor.editor-styles-wrapper .vk_faq_content:before{content:"A ";color:#337ab7;font-family:""}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-on:after{content:"";background:url(../images/arrow_bottom.svg) center 50% no-repeat;background-size:50px 50px;display:block;overflow:hidden;height:50px;width:50px;margin:0 auto}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-off{padding-bottom:0;margin-bottom:30px}.edit-post-visual-editor.editor-styles-wrapper .vk_flow-arrow-off:after{content:"";font-size:0;background-image:none}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame{display:flex;padding:20px 25px;border:3px solid #e5e5e5;margin:0;justify-content:space-between}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text{display:block;overflow:hidden;margin:0;width:100%;box-sizing:border-box}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_content,.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_title{padding-left:0;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_title{border-bottom:1px dotted #ccc;margin:0 0 10px;padding:0 0 5px;font-size:1.2em}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text_content{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_image{max-width:150px;margin-left:15px;box-sizing:border-box}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title{background:0 0;border:none;border-radius:0;padding:0;font-weight:400;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after{content:none;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after{background:0 0;border:none;border-radius:0;padding:0;font-weight:400;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after:after{content:none;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading.vk_heading-style-plain .vk_heading_title:after:before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_heading_subtext{margin-bottom:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after{border-bottom:none!important}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-plain::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;border:none;background-color:#efefef;padding:.6em .7em .5em;margin-bottom:1.2em;border-radius:4px}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-top:double 3px #333;border-bottom:double 3px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:double 3px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-top:solid 1px #333;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:.6em 0 .5em;margin-bottom:1.2em;border-bottom:1px dotted #111}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;display:flex;align-items:center;text-align:center;margin-bottom:1.2em;padding:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before{content:"";flex-grow:1;border-bottom:1px solid #333;position:unset;width:unset;border-top:none}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::before{margin-right:1em;top:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-both_ends::after{margin-left:1em;bottom:unset}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;box-shadow:unset;border-radius:unset;overflow:unset;border:none;background-color:transparent!important;padding:.7em;margin-bottom:1.2em;text-align:center;border-bottom:unset!important}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before{content:"";position:absolute;top:0;width:12px;height:100%;display:inline-block;margin-left:0;border-top:solid 1px #333;border-bottom:solid 1px #333}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::before{border-left:solid 1px #333;left:0}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.editor-styles-wrapper .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.entry-body .edit-post-visual-editor.editor-styles-wrapper .is-style-vk-heading-brackets_black::after{border-right:solid 1px #333!important;right:0;left:auto}.edit-post-visual-editor.editor-styles-wrapper .vk_hidden{display:none!important;color:var(--blue)}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden-xs{display:none!important}}@media (min-width:576px) and (max-width:767.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden-sm{display:none!important}}@media (min-width:768px) and (max-width:991.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden-md{display:none!important}}@media (min-width:992px) and (max-width:1199.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden-lg{display:none!important}}@media (min-width:1200px){.edit-post-visual-editor.editor-styles-wrapper .vk_hidden-xl{display:none!important}}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-border img{border:1px solid #e5e5e5}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-photoFrame{background-color:#fff;padding:10px;box-shadow:1px 1px 4px rgba(0,0,0,.2)}.edit-post-visual-editor.editor-styles-wrapper .is-style-vk-image-photoFrame figcaption{margin:8px 0 0}@media screen and (max-width:992px){.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item{margin-bottom:1.5em}}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_link{color:#333}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_link:hover{color:#333;text-decoration:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_icon{position:absolute;top:50%;left:50%;transform:translateY(-50%) translateX(-50%);font-size:36px;color:#fff}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title{background-color:transparent;margin-top:.9em;margin-bottom:.6em;text-align:center;font-size:21px;line-height:1.4em;border:none;padding:0}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title::before{content:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_title::after{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.edit-post-visual-editor.editor-styles-wrapper .vk_prBlocks_item_summary{margin-bottom:.5em;text-align:center;line-height:1.8em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent{margin-left:-15px;margin-right:-15px}@media (min-width:576px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent{display:flex}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent .col-sm-6{width:50%}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageLeft{flex-direction:row}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageRight{flex-direction:row-reverse}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageLeft .vk_prContent_colImg{padding-right:2em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageRight .vk_prContent_colImg{padding-left:2em}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt{vertical-align:top}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title{background-color:transparent;font-weight:700;padding:0;box-shadow:none;border:none;margin-bottom:.8em}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title:first-child{margin-top:30px}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_title:after{content:"";line-height:0;display:block;overflow:hidden;position:absolute;bottom:-1px;width:0;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_text{line-height:2em;margin-bottom:1.7em}@media (min-width:992px){.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colTxt_btn.btn{font-size:16px}}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg_image{max-width:100%;height:auto}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg .components-button.button{margin:1em}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent_colImg .components-button.image-button{margin:0;height:auto}@media (max-width:575.98px){.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 td,.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 th{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1 th{background-color:rgba(0,0,0,.05)}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-mobile1.table-striped tbody tr:nth-of-type(odd){background:inherit}}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__layout,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-rich-text__editable{padding:0;margin:0;width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit>.editor-inner-blocks{margin-top:-1px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit{height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .block-editor-block-list__insertion-point{top:-5px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-block-list__block-edit:before{right:0;left:0;top:0;bottom:0}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks tr{width:100%;display:block;border-bottom:1px solid #e5e5e5}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks tr .editor-block-list__layout{display:flex}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks td,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks th{padding:0;display:block;width:100%;border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks td .editor-rich-text__editable,.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit .editor-inner-blocks th .editor-rich-text__editable{padding:14px}.edit-post-visual-editor.editor-styles-wrapper .vk_simpleTable-edit.table-striped>tbody>.editor-inner-blocks>.editor-block-list__layout>div:nth-of-type(odd){background-color:rgba(0,0,0,.05)}@media (max-width:576px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:block}}@media (min-width:577px) and (max-width:768px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:none}}@media (min-width:769px){.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-pc{display:block}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-tablet{display:none}.edit-post-visual-editor.editor-styles-wrapper .vk_spacer .vk_spacer-display-mobile{display:none}}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text{float:left;width:61.6%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo{float:right;width:32%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff-layout-imageLeft .vk_staff_text{float:right}.edit-post-visual-editor.editor-styles-wrapper .vk_staff-layout-imageLeft .vk_staff_photo{float:left}.edit-post-visual-editor.editor-styles-wrapper .vk_staff{display:block;overflow:hidden}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name{text-align:left;box-shadow:none;font-size:2.5rem;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;line-height:1;margin-bottom:.5rem;border:none;padding:0;background-color:transparent}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name:after,.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_name:before{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_caption{font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;font-size:14px;display:block;margin:0 0 .5rem 4px;letter-spacing:5px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_role{font-size:14px;line-height:1.6em;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle{font-size:18px;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",serif;padding-top:0;padding-left:0;padding-bottom:2px;margin-bottom:1.2rem;border-top:none;border-bottom:1px solid #ccc;background:0 0}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle:after,.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileTitle:before{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_text_profileText{font-size:14px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo{display:block;vertical-align:top;text-align:center}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo button{width:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo .image-button{padding:0;margin:0;display:block;height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo-border-default{border:4px solid #efefef;padding:1px}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo-border-none{border:none}.edit-post-visual-editor.editor-styles-wrapper .vk_staff_photo_image{width:100%;margin:0;display:block}@media (min-width:992px){.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text{width:74%}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text_caption,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text_caption,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text_caption{font-size:1rem;letter-spacing:.5rem}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text_role,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text_role,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text_role{letter-spacing:.5rem}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_photo{width:22%}}@media (min-width:1200px){.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_text,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_text{width:75%}.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-lp-builder .vk_staff_photo,.edit-post-visual-editor.editor-styles-wrapper .page-template-page-onecolumn .vk_staff_photo{width:20%}}.edit-post-visual-editor.editor-styles-wrapper .vk_table-col-overflow{white-space:nowrap!important}
|
inc/vk-blocks/build/block-build.css
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
-
ul.is-style-vk-default,ul.is-style-vk-arrow-mark,ul.is-style-vk-triangle-mark,ul.is-style-vk-check-mark,ul.is-style-vk-check-circle-mark,ul.is-style-vk-check-square-mark,ul.is-style-vk-handpoint-mark,ul.is-style-vk-pencil-mark,ul.is-style-vk-smile-mark,ul.is-style-vk-frown-mark,ul.is-style-vk-numbered-circle-mark,ul.is-style-vk-numbered-square-mark,ol.is-style-vk-default,ol.is-style-vk-arrow-mark,ol.is-style-vk-triangle-mark,ol.is-style-vk-check-mark,ol.is-style-vk-check-circle-mark,ol.is-style-vk-check-square-mark,ol.is-style-vk-handpoint-mark,ol.is-style-vk-pencil-mark,ol.is-style-vk-smile-mark,ol.is-style-vk-frown-mark,ol.is-style-vk-numbered-circle-mark,ol.is-style-vk-numbered-square-mark{-webkit-padding-start:2em;padding-inline-start:2em}ul.is-style-vk-default li,ul.is-style-vk-arrow-mark li,ul.is-style-vk-triangle-mark li,ul.is-style-vk-check-mark li,ul.is-style-vk-check-circle-mark li,ul.is-style-vk-check-square-mark li,ul.is-style-vk-handpoint-mark li,ul.is-style-vk-pencil-mark li,ul.is-style-vk-smile-mark li,ul.is-style-vk-frown-mark li,ul.is-style-vk-numbered-circle-mark li,ul.is-style-vk-numbered-square-mark li,ol.is-style-vk-default li,ol.is-style-vk-arrow-mark li,ol.is-style-vk-triangle-mark li,ol.is-style-vk-check-mark li,ol.is-style-vk-check-circle-mark li,ol.is-style-vk-check-square-mark li,ol.is-style-vk-handpoint-mark li,ol.is-style-vk-pencil-mark li,ol.is-style-vk-smile-mark li,ol.is-style-vk-frown-mark li,ol.is-style-vk-numbered-circle-mark li,ol.is-style-vk-numbered-square-mark li{list-style:none;position:relative;margin-bottom:0.8em;line-height:1.65em}ul.is-style-vk-numbered-circle-mark,ol.is-style-vk-numbered-circle-mark{counter-reset:number;list-style-type:none}ul.is-style-vk-numbered-circle-mark li,ol.is-style-vk-numbered-circle-mark li{position:relative;list-style:none}ul.is-style-vk-numbered-circle-mark li:before,ol.is-style-vk-numbered-circle-mark li:before{position:absolute;left:-0.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:bold;border-radius:50%;font-size:1em;line-height:1em;padding:0.3em 0.37em 0.2em;text-align:center}ul.is-style-vk-numbered-square-mark,ol.is-style-vk-numbered-square-mark{counter-reset:number;list-style-type:none}ul.is-style-vk-numbered-square-mark li,ol.is-style-vk-numbered-square-mark li{position:relative;list-style:none}ul.is-style-vk-numbered-square-mark li:before,ol.is-style-vk-numbered-square-mark li:before{position:absolute;left:-0.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:bold;font-size:1em;line-height:1em;padding:0.3em 0.37em 0.2em;text-align:center;border-radius:2px}ul.is-style-vk-numbered-circle-mark.fa-lg li::before,ul.is-style-vk-numbered-square-mark.fa-lg li::before,ol.is-style-vk-numbered-circle-mark.fa-lg li::before,ol.is-style-vk-numbered-square-mark.fa-lg li::before{left:-0.8em}ul.is-style-vk-numbered-circle-mark.fa-2x li,ul.is-style-vk-numbered-square-mark.fa-2x li,ol.is-style-vk-numbered-circle-mark.fa-2x li,ol.is-style-vk-numbered-square-mark.fa-2x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-2x li::before,ul.is-style-vk-numbered-square-mark.fa-2x li::before,ol.is-style-vk-numbered-circle-mark.fa-2x li::before,ol.is-style-vk-numbered-square-mark.fa-2x li::before{left:-1.1em}ul.is-style-vk-numbered-circle-mark.fa-3x li,ul.is-style-vk-numbered-square-mark.fa-3x li,ol.is-style-vk-numbered-circle-mark.fa-3x li,ol.is-style-vk-numbered-square-mark.fa-3x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-3x li::before,ul.is-style-vk-numbered-square-mark.fa-3x li::before,ol.is-style-vk-numbered-circle-mark.fa-3x li::before,ol.is-style-vk-numbered-square-mark.fa-3x li::before{left:-1.4em}ul.is-style-vk-numbered-circle-mark.fa-4x li,ul.is-style-vk-numbered-square-mark.fa-4x li,ol.is-style-vk-numbered-circle-mark.fa-4x li,ol.is-style-vk-numbered-square-mark.fa-4x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-4x li::before,ul.is-style-vk-numbered-square-mark.fa-4x li::before,ol.is-style-vk-numbered-circle-mark.fa-4x li::before,ol.is-style-vk-numbered-square-mark.fa-4x li::before{left:-1.5em}ul.is-style-vk-numbered-circle-mark.fa-5x li,ul.is-style-vk-numbered-square-mark.fa-5x li,ol.is-style-vk-numbered-circle-mark.fa-5x li,ol.is-style-vk-numbered-square-mark.fa-5x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-5x li::before,ul.is-style-vk-numbered-square-mark.fa-5x li::before,ol.is-style-vk-numbered-circle-mark.fa-5x li::before,ol.is-style-vk-numbered-square-mark.fa-5x li::before{left:-1.6em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"•";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-arrow-mark li::before,ol.is-style-vk-arrow-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-triangle-mark li::before,ol.is-style-vk-triangle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-mark li::before,ol.is-style-vk-check-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-circle-mark li::before,ol.is-style-vk-check-circle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-square-mark li::before,ol.is-style-vk-check-square-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-handpoint-mark li::before,ol.is-style-vk-handpoint-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-pencil-mark li::before,ol.is-style-vk-pencil-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-smile-mark li::before,ol.is-style-vk-smile-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-frown-mark li::before,ol.is-style-vk-frown-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.vk-has-pale-pink-color li::before,ol.vk-has-pale-pink-color li::before{color:#f78da7}ul.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before{color:#ffffff;background-color:#f78da7}ul.vk-has-vivid-red-color li::before,ol.vk-has-vivid-red-color li::before{color:#cf2e2e}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before{color:#ffffff;background-color:#cf2e2e}ul.vk-has-luminous-vivid-orange-color li::before,ol.vk-has-luminous-vivid-orange-color li::before{color:#ff6900}ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before{color:#ffffff;background-color:#ff6900}ul.vk-has-luminous-vivid-amber-color li::before,ol.vk-has-luminous-vivid-amber-color li::before{color:#fcb900}ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before{color:#ffffff;background-color:#fcb900}ul.vk-has-light-green-cyan-color li::before,ol.vk-has-light-green-cyan-color li::before{color:#7bdcb5}ul.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before{color:#ffffff;background-color:#7bdcb5}ul.vk-has-vivid-green-cyan-color li::before,ol.vk-has-vivid-green-cyan-color li::before{color:#00d084}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before{color:#ffffff;background-color:#00d084}ul.vk-has-pale-cyan-blue-color li::before,ol.vk-has-pale-cyan-blue-color li::before{color:#8ed1fc}ul.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before{color:#ffffff;background-color:#8ed1fc}ul.vk-has-vivid-cyan-blue-color li::before,ol.vk-has-vivid-cyan-blue-color li::before{color:#0693e3}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before{color:#ffffff;background-color:#0693e3}ul.vk-has-vivid-purple-color li::before,ol.vk-has-vivid-purple-color li::before{color:#9b51e0}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before{color:#ffffff;background-color:#9b51e0}ul.vk-has-very-light-gray-color li::before,ol.vk-has-very-light-gray-color li::before{color:#eee}ul.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before{color:#ffffff;background-color:#eee}ul.vk-has-cyan-bluish-gray-color li::before,ol.vk-has-cyan-bluish-gray-color li::before{color:#abb8c3}ul.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before{color:#ffffff;background-color:#abb8c3}ul.vk-has-very-dark-gray-color li::before,ol.vk-has-very-dark-gray-color li::before{color:#313131}ul.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before{color:#ffffff;background-color:#313131}.wp-block-group.is-style-vk-group-solid{border:solid 3px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-solid h2,.wp-block-group.is-style-vk-group-solid h3,.wp-block-group.is-style-vk-group-solid h4,.wp-block-group.is-style-vk-group-solid h5,.wp-block-group.is-style-vk-group-solid h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-solid ul,.wp-block-group.is-style-vk-group-solid ol{margin-top:0}.wp-block-group.is-style-vk-group-solid ul li:last-child,.wp-block-group.is-style-vk-group-solid ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-solid-roundcorner{border:solid 3px;border-radius:8px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-solid-roundcorner h2,.wp-block-group.is-style-vk-group-solid-roundcorner h3,.wp-block-group.is-style-vk-group-solid-roundcorner h4,.wp-block-group.is-style-vk-group-solid-roundcorner h5,.wp-block-group.is-style-vk-group-solid-roundcorner h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-solid-roundcorner ul,.wp-block-group.is-style-vk-group-solid-roundcorner ol{margin-top:0}.wp-block-group.is-style-vk-group-solid-roundcorner ul li:last-child,.wp-block-group.is-style-vk-group-solid-roundcorner ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-dotted{border:dotted 1px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-dotted h2,.wp-block-group.is-style-vk-group-dotted h3,.wp-block-group.is-style-vk-group-dotted h4,.wp-block-group.is-style-vk-group-dotted h5,.wp-block-group.is-style-vk-group-dotted h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-dotted ul,.wp-block-group.is-style-vk-group-dotted ol{margin-top:0}.wp-block-group.is-style-vk-group-dotted ul li:last-child,.wp-block-group.is-style-vk-group-dotted ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-dashed{border:dashed 2px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-dashed h2,.wp-block-group.is-style-vk-group-dashed h3,.wp-block-group.is-style-vk-group-dashed h4,.wp-block-group.is-style-vk-group-dashed h5,.wp-block-group.is-style-vk-group-dashed h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-dashed ul,.wp-block-group.is-style-vk-group-dashed ol{margin-top:0}.wp-block-group.is-style-vk-group-dashed ul li:last-child,.wp-block-group.is-style-vk-group-dashed ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-double{border:double 5px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-double h2,.wp-block-group.is-style-vk-group-double h3,.wp-block-group.is-style-vk-group-double h4,.wp-block-group.is-style-vk-group-double h5,.wp-block-group.is-style-vk-group-double h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-double ul,.wp-block-group.is-style-vk-group-double ol{margin-top:0}.wp-block-group.is-style-vk-group-double ul li:last-child,.wp-block-group.is-style-vk-group-double ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-stitch{margin:1em 0;padding:0.5em;border-radius:8px}.wp-block-group.is-style-vk-group-stitch h2,.wp-block-group.is-style-vk-group-stitch h3,.wp-block-group.is-style-vk-group-stitch h4,.wp-block-group.is-style-vk-group-stitch h5,.wp-block-group.is-style-vk-group-stitch h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-stitch ul,.wp-block-group.is-style-vk-group-stitch ol{margin-top:0}.wp-block-group.is-style-vk-group-stitch ul li:last-child,.wp-block-group.is-style-vk-group-stitch ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-stitch .wp-block-group__inner-container{border:dashed 2px;border-radius:8px;padding:1.8em}.wp-block-group.is-style-vk-group-top-bottom-border{border-top:solid 1px;border-bottom:solid 1px;padding:1.8em;margin:1.2em 0;padding-left:0;padding-right:0}.wp-block-group.is-style-vk-group-top-bottom-border h2,.wp-block-group.is-style-vk-group-top-bottom-border h3,.wp-block-group.is-style-vk-group-top-bottom-border h4,.wp-block-group.is-style-vk-group-top-bottom-border h5,.wp-block-group.is-style-vk-group-top-bottom-border h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-top-bottom-border ul,.wp-block-group.is-style-vk-group-top-bottom-border ol{margin-top:0}.wp-block-group.is-style-vk-group-top-bottom-border ul li:last-child,.wp-block-group.is-style-vk-group-top-bottom-border ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-shadow{-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.2);box-shadow:0px 0px 5px rgba(0,0,0,0.2);padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-shadow h2,.wp-block-group.is-style-vk-group-shadow h3,.wp-block-group.is-style-vk-group-shadow h4,.wp-block-group.is-style-vk-group-shadow h5,.wp-block-group.is-style-vk-group-shadow h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-shadow ul,.wp-block-group.is-style-vk-group-shadow ol{margin-top:0}.wp-block-group.is-style-vk-group-shadow ul li:last-child,.wp-block-group.is-style-vk-group-shadow ol li:last-child{margin-bottom:0}.wp-block-group h3:first-child,.wp-block-group h4:first-child{margin-top:0}.wp-block-group p:last-child,.wp-block-group ul:last-child,.wp-block-group ol:last-child,.wp-block-group dl:last-child,.wp-block-group table:last-child,.wp-block-group .wp-block-columns:last-child{margin-bottom:0}.wp-block-group.vk-has-pale-pink-color{border-color:#f78da7}.wp-block-group.vk-has-pale-pink-color .wp-block-group__inner-container{border-color:#f78da7}.wp-block-group.vk-has-vivid-red-color{border-color:#cf2e2e}.wp-block-group.vk-has-vivid-red-color .wp-block-group__inner-container{border-color:#cf2e2e}.wp-block-group.vk-has-luminous-vivid-orange-color{border-color:#ff6900}.wp-block-group.vk-has-luminous-vivid-orange-color .wp-block-group__inner-container{border-color:#ff6900}.wp-block-group.vk-has-luminous-vivid-amber-color{border-color:#fcb900}.wp-block-group.vk-has-luminous-vivid-amber-color .wp-block-group__inner-container{border-color:#fcb900}.wp-block-group.vk-has-light-green-cyan-color{border-color:#7bdcb5}.wp-block-group.vk-has-light-green-cyan-color .wp-block-group__inner-container{border-color:#7bdcb5}.wp-block-group.vk-has-vivid-green-cyan-color{border-color:#00d084}.wp-block-group.vk-has-vivid-green-cyan-color .wp-block-group__inner-container{border-color:#00d084}.wp-block-group.vk-has-pale-cyan-blue-color{border-color:#8ed1fc}.wp-block-group.vk-has-pale-cyan-blue-color .wp-block-group__inner-container{border-color:#8ed1fc}.wp-block-group.vk-has-vivid-cyan-blue-color{border-color:#0693e3}.wp-block-group.vk-has-vivid-cyan-blue-color .wp-block-group__inner-container{border-color:#0693e3}.wp-block-group.vk-has-vivid-purple-color{border-color:#9b51e0}.wp-block-group.vk-has-vivid-purple-color .wp-block-group__inner-container{border-color:#9b51e0}.wp-block-group.vk-has-very-light-gray-color{border-color:#eee}.wp-block-group.vk-has-very-light-gray-color .wp-block-group__inner-container{border-color:#eee}.wp-block-group.vk-has-cyan-bluish-gray-color{border-color:#abb8c3}.wp-block-group.vk-has-cyan-bluish-gray-color .wp-block-group__inner-container{border-color:#abb8c3}.wp-block-group.vk-has-very-dark-gray-color{border-color:#313131}.wp-block-group.vk-has-very-dark-gray-color .wp-block-group__inner-container{border-color:#313131}.wp-block-embed-youtube iframe{width:100%}
|
2 |
|
3 |
.alert{padding:1em;margin:1em 0;border-radius:3px}.alert p{margin-bottom:0}.alert+.alert{margin-top:2em}.alert a{-webkit-transition:color .3s linear, opacity .3s linear;transition:color .3s linear, opacity .3s linear}.alert a:link,.alert a:visited{opacity:.8;text-decoration:underline}.alert a:hover,.alert a:visited{opacity:1;text-decoration:none}.alert-success{background-color:#dff0d8;color:#3c763d;border-color:#d6e9c6}.alert-info{background-color:#d9edf7;color:#31708f;border-color:#bce8f1}.alert-warning{background-color:#fcf8e3;color:#8a6d3b;border-color:#faebcc}.alert-danger{background-color:#f2dede;color:#a94442;border-color:#ebccd1}
|
4 |
|
5 |
.vk_balloon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:1em}.vk_balloon figure{margin:0}.vk_balloon p{word-break:break-all;background:#f5f5f5;padding:1.1rem 1.4rem}.vk_balloon_icon{-ms-flex-preferred-size:96px;flex-basis:96px;-ms-flex-negative:0;flex-shrink:0;text-align:center}.vk_balloon_icon_image{vertical-align:bottom;max-width:64px}.vk_balloon_icon_name{display:block;text-align:center;font-size:0.7rem;margin-top:0.2rem}.vk_balloon_content{position:relative;text-align:left}.vk_balloon_content.editor-rich-text__tinymce[data-is-placeholder-visible=true]{position:absolute}.vk_balloon-type-serif .vk_balloon_content{border-color:#f5f5f5;border-radius:.4em}.vk_balloon-type-serif .vk_balloon_content::after{content:'';position:absolute;width:0;height:0;border:20px solid transparent}.vk_balloon-type-think .vk_balloon_content{border-radius:2rem}.vk_balloon-type-think .vk_balloon_content::before,.vk_balloon-type-think .vk_balloon_content::after{position:absolute;content:'';border-radius:50%;background:inherit}.vk_balloon-type-think .vk_balloon_content::before{width:20px;height:20px}.vk_balloon-type-think .vk_balloon_content::after{width:10px;height:10px}.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{margin-right:2rem}.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{left:0;top:50%;border-right-color:inherit;border-left:0;margin-top:-20px;margin-left:-20px}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2.5rem}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{left:-22px;top:7px}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::after{left:-35px;top:20px}.vk_balloon-position-right{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:2rem}.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{right:0;top:50%;border-left-color:inherit;border-right:0;margin-top:-20px;margin-right:-20px}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2.5rem}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::before{right:-22px;top:7px}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::after{right:-35px;top:20px}.vk_balloon.animation-vibration .vk_balloon_content{display:inline-block;-webkit-animation:vibration .1s infinite;animation:vibration .1s infinite}@-webkit-keyframes vibration{0%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}25%{-webkit-transform:translate(2px, 2px) rotateZ(1deg);transform:translate(2px, 2px) rotateZ(1deg)}50%{-webkit-transform:translate(0px, 2px) rotateZ(0deg);transform:translate(0px, 2px) rotateZ(0deg)}75%{-webkit-transform:translate(2px, 0px) rotateZ(-1deg);transform:translate(2px, 0px) rotateZ(-1deg)}100%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}}@keyframes vibration{0%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}25%{-webkit-transform:translate(2px, 2px) rotateZ(1deg);transform:translate(2px, 2px) rotateZ(1deg)}50%{-webkit-transform:translate(0px, 2px) rotateZ(0deg);transform:translate(0px, 2px) rotateZ(0deg)}75%{-webkit-transform:translate(2px, 0px) rotateZ(-1deg);transform:translate(2px, 0px) rotateZ(-1deg)}100%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}}@media only screen and (max-width: 480px){.vk_balloon_content{font-size:.9em}.vk_balloon-type-serif .vk_balloon_content::after{border:15px solid transparent}.vk_balloon-type-think .vk_balloon_content::after{border:5px solid transparent}.vk_balloon{-webkit-box-align:normal;-ms-flex-align:normal;align-items:normal}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{max-width:86px;margin-right:1.5rem}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-left:-15px}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2rem;max-width:86px}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{width:15px;height:15px}.vk_balloon.vk_balloon-position-right{text-align:right}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:auto;margin-right:0}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-right:-15px}.vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2rem;margin-right:0;max-width:86px}.vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content{display:inline-block}.vk_balloon_icon{max-width:96px}}
|
6 |
|
|
|
|
|
7 |
.vk_button{margin:5px 0;text-align:center}.vk_button-color-custom a:hover{opacity:0.8;-webkit-box-shadow:0 0 0 0.2rem rgba(171,184,195,0.25);box-shadow:0 0 0 0.2rem rgba(171,184,195,0.25)}.vk_button-align-left{text-align:left}.vk_button-align-center{text-align:center}.vk_button-align-right{text-align:right}.vk_button-align-block{display:block}.vk_button-align-wide{display:block;margin-left:auto;margin-right:auto;max-width:70%}.vk_button-align-wide .btn{display:block}.vk_button_link{min-width:100px;min-height:30px}.vk_button_link-type-text{-webkit-box-shadow:none;box-shadow:none;padding:0}.vk_button_link-type-text:hover{background:none;-webkit-box-shadow:none;box-shadow:none}.vk_button_link.btn{padding-top:0.7em;padding-bottom:0.6em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.vk_button_link_before{margin-right:0.7rem}.vk_button_link_after{margin-left:0.7rem}.vk_button_link_subCaption{display:block;overflow:hidden;margin:0;font-size:80%}.vk_button .editor-rich-text{display:inline-block}.vk_button-color-custom .vk_button_link-type-text:hover{-webkit-box-shadow:none;box-shadow:none}.btn.btn-primary{color:#fff}.btn.btn-secondary{color:#fff;background-color:#6c757d}.btn.btn-success{color:#fff}.btn.btn-info{color:#fff}.btn.btn-warning{color:#fff}.btn.btn-danger{color:#fff}.btn.btn-light{background-color:#f8f9fa}.btn.btn-dark{color:#fff;background-color:#343a40}.btn.btn-secondary:hover,.btn.btn-dark:hover{color:#fff}.btn.btn-outline-primary{color:#007bff;border:1px solid #007bff;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-secondary{color:#6c757d;border:1px solid #6c757d;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-success{color:#28a745;border:1px solid #28a745;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-info{color:#17a2b8;border:1px solid #17a2b8;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-warning{color:#ffc107;border:1px solid #ffc107;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-danger{color:#dc3545;border:1px solid #dc3545;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-light{border:1px solid #f8f9fa;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-dark{color:#343a40;border:1px solid #343a40;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-primary:hover,.btn.btn-outline-primary:focus{background:#007bff;color:#fff}.btn.btn-outline-secondary:hover,.btn.btn-outline-secondary:focus{background:#6c757d;color:#fff}.btn.btn-outline-success:hover,.btn.btn-outline-success:focus{background:#28a745;color:#fff}.btn.btn-outline-info:hover,.btn.btn-outline-info:focus{background:#17a2b8;color:#fff}.btn.btn-outline-warning:hover,.btn.btn-outline-warning:focus{background:#ffc107;color:#fff}.btn.btn-outline-danger:hover,.btn.btn-outline-danger:focus{background:#dc3545;color:#fff}.btn.btn-outline-light:hover,.btn.btn-outline-light:focus{background:#f8f9fa;color:#fff}.btn.btn-outline-dark:hover,.btn.btn-outline-dark:focus{background:#343a40;color:#fff}
|
8 |
|
9 |
.vk_faq{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 25px;margin:25px 0px;width:100%;position:relative}.vk_faq_title,.vk_faq_content{border:none;padding-left:35px}.vk_faq_title:before,.vk_faq_content:before{position:absolute;left:0;font-size:24px;line-height:105%}.vk_faq_title{margin-bottom:15px;font-size:18px;font-weight:700}.vk_faq_title:before{font-family:"areal";content:"Q ";color:#e50000}.vk_faq_content{margin:0px}.vk_faq_content:before{content:"A ";color:#337ab7;font-family:""}
|
@@ -20,13 +22,13 @@ ul.is-style-vk-default,ul.is-style-vk-arrow-mark,ul.is-style-vk-triangle-mark,ul
|
|
20 |
|
21 |
@media screen and (max-width: 992px){.vk_prBlocks_item{margin-bottom:1.5em}}.vk_prBlocks_item_link{color:#333}.vk_prBlocks_item_link:hover{color:#333;text-decoration:none}.vk_prBlocks_item_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.vk_prBlocks_item_icon{position:absolute;top:50%;left:50%;-webkit-transform:translateY(-50%) translateX(-50%);transform:translateY(-50%) translateX(-50%);font-size:36px;color:#fff}.vk_prBlocks_item_title{background-color:transparent;margin-top:0.9em;margin-bottom:0.6em;text-align:center;font-size:21px;line-height:1.4em;border:none;padding:0}.vk_prBlocks_item_title::before{content:none}.vk_prBlocks_item_title::after{border:none}.vk_prBlocks_item_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.vk_prBlocks_item_summary{margin-bottom:0.5em;text-align:center;line-height:1.8em}
|
22 |
|
23 |
-
.vk_prContent{margin-left:-15px;margin-right:-15px}@media (min-width: 576px){.vk_prContent{display:-webkit-box;display:-ms-flexbox;display:flex}.vk_prContent .col-sm-6{width:50%}.vk_prContent-layout-imageLeft{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.vk_prContent-layout-imageRight{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.vk_prContent-layout-imageLeft .vk_prContent_colImg{padding-right:2em}.vk_prContent-layout-imageRight .vk_prContent_colImg{padding-left:2em}}.vk_prContent_colTxt{vertical-align:top}.vk_prContent_colTxt_title{background-color:transparent;font-weight:bold;padding:0;-webkit-box-shadow:none;box-shadow:none;border:none;margin-bottom:0.8em}@media (max-width: 575.98px){.vk_prContent_colTxt_title:first-child{margin-top:30px}}.vk_prContent_colTxt_title:after{content:"";line-height:0;display:block;overflow:hidden;position:absolute;bottom:-1px;width:0;border:none}.vk_prContent_colTxt_text{line-height:2em;margin-bottom:1.7em}@media (min-width: 992px){.vk_prContent_colTxt_btn.btn{font-size:16px}}.vk_prContent_colImg_image{max-width:100%;height:auto}.vk_prContent_colImg .components-button.button{margin:1em}.vk_prContent_colImg .components-button.image-button{margin:0}
|
24 |
|
25 |
@media (max-width: 575.98px){.vk_table-col-mobile1 th,.vk_table-col-mobile1 td{display:block}.vk_table-col-mobile1 th{background-color:rgba(0,0,0,0.05)}.vk_table-col-mobile1.table-striped tbody tr:nth-of-type(odd){background:inherit}}.vk_simpleTable-edit .editor-inner-blocks,.vk_simpleTable-edit .editor-block-list__layout,.vk_simpleTable-edit .editor-block-list__block,.vk_simpleTable-edit .editor-rich-text__editable,.vk_simpleTable-edit .editor-block-list__block-edit{padding:0;margin:0;width:100%}.vk_simpleTable-edit>.editor-inner-blocks{margin-top:-1px}.vk_simpleTable-edit .editor-block-list__block-edit{height:100%}.vk_simpleTable-edit .block-editor-block-list__insertion-point{top:-5px}.vk_simpleTable-edit .editor-block-list__block-edit:before{right:-0px;left:-0px;top:-0px;bottom:-0px}.vk_simpleTable-edit .editor-inner-blocks tr{width:100%;display:block;border-bottom:1px solid #e5e5e5}.vk_simpleTable-edit .editor-inner-blocks tr .editor-block-list__layout{display:-webkit-box;display:-ms-flexbox;display:flex}.vk_simpleTable-edit .editor-inner-blocks th,.vk_simpleTable-edit .editor-inner-blocks td{padding:0;display:block;width:100%;border:none}.vk_simpleTable-edit .editor-inner-blocks th .editor-rich-text__editable,.vk_simpleTable-edit .editor-inner-blocks td .editor-rich-text__editable{padding:14px}.vk_simpleTable-edit.table-striped>tbody>.editor-inner-blocks>.editor-block-list__layout>div:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}
|
26 |
|
27 |
@media (max-width: 576px){.vk_spacer .vk_spacer-display-pc{display:none}.vk_spacer .vk_spacer-display-tablet{display:none}.vk_spacer .vk_spacer-display-mobile{display:block}}@media (min-width: 577px) and (max-width: 768px){.vk_spacer .vk_spacer-display-pc{display:none}.vk_spacer .vk_spacer-display-tablet{display:block}.vk_spacer .vk_spacer-display-mobile{display:none}}@media (min-width: 769px){.vk_spacer .vk_spacer-display-pc{display:block}.vk_spacer .vk_spacer-display-tablet{display:none}.vk_spacer .vk_spacer-display-mobile{display:none}}
|
28 |
|
|
|
29 |
|
30 |
.vk_table-col-overflow{white-space:nowrap !important}
|
31 |
|
32 |
-
.vk_staff_text{float:left;width:61.6%}.vk_staff_photo{float:right;width:32%}.vk_staff-layout-imageLeft .vk_staff_text{float:right}.vk_staff-layout-imageLeft .vk_staff_photo{float:left}.vk_staff{display:block;overflow:hidden}.vk_staff_text_name{text-align:left;-webkit-box-shadow:none;box-shadow:none;font-size:3.5rem;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","serif";line-height:1.0;margin-bottom:0.5rem;border:none;padding:0;background-color:transparent}.vk_staff_text_name:before,.vk_staff_text_name:after{border:none}.vk_staff_text_caption{font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","serif";font-size:14px;display:block;margin:0 0 0.5rem 4px;letter-spacing:5px}.vk_staff_text_role{font-size:14px;line-height:1.6em;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","serif"}.vk_staff_text_profileTitle{font-size:18px;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","serif";padding-top:0;padding-left:0;padding-bottom:2px;margin-bottom:1.2rem;border-top:none;border-bottom:1px solid #ccc;background:none}.vk_staff_text_profileTitle:before,.vk_staff_text_profileTitle:after{border:none}.vk_staff_text_profileText{font-size:14px}.vk_staff_photo{display:block;vertical-align:top;text-align:center}.vk_staff_photo button{width:100%}.vk_staff_photo .image-button{padding:0;margin:0;display:block}.vk_staff_photo-border-default{border:4px solid #efefef;padding:1px}.vk_staff_photo-border-none{border:none}.vk_staff_photo_image{width:100%;margin:0;display:block}@media (min-width: 992px){.page-template-page-onecolumn .vk_staff_text,.page-template-page-lp .vk_staff_text,.page-template-page-lp-builder .vk_staff_text{width:74%}.page-template-page-onecolumn .vk_staff_text_name,.page-template-page-lp .vk_staff_text_name,.page-template-page-lp-builder .vk_staff_text_name{font-size:4rem}.page-template-page-onecolumn .vk_staff_text_caption,.page-template-page-lp .vk_staff_text_caption,.page-template-page-lp-builder .vk_staff_text_caption{font-size:16px;letter-spacing:0.5rem}.page-template-page-onecolumn .vk_staff_text_role,.page-template-page-lp .vk_staff_text_role,.page-template-page-lp-builder .vk_staff_text_role{letter-spacing:0.5rem}.page-template-page-onecolumn .vk_staff_photo,.page-template-page-lp .vk_staff_photo,.page-template-page-lp-builder .vk_staff_photo{width:22%}}@media (min-width: 1200px){.page-template-page-onecolumn .vk_staff_text,.page-template-page-lp .vk_staff_text,.page-template-page-lp-builder .vk_staff_text{width:75%}.page-template-page-onecolumn .vk_staff_photo,.page-template-page-lp .vk_staff_photo,.page-template-page-lp-builder .vk_staff_photo{width:20%}}
|
1 |
+
ul.is-style-vk-default,ul.is-style-vk-arrow-mark,ul.is-style-vk-triangle-mark,ul.is-style-vk-check-mark,ul.is-style-vk-check-circle-mark,ul.is-style-vk-check-square-mark,ul.is-style-vk-handpoint-mark,ul.is-style-vk-pencil-mark,ul.is-style-vk-smile-mark,ul.is-style-vk-frown-mark,ul.is-style-vk-numbered-circle-mark,ul.is-style-vk-numbered-square-mark,ol.is-style-vk-default,ol.is-style-vk-arrow-mark,ol.is-style-vk-triangle-mark,ol.is-style-vk-check-mark,ol.is-style-vk-check-circle-mark,ol.is-style-vk-check-square-mark,ol.is-style-vk-handpoint-mark,ol.is-style-vk-pencil-mark,ol.is-style-vk-smile-mark,ol.is-style-vk-frown-mark,ol.is-style-vk-numbered-circle-mark,ol.is-style-vk-numbered-square-mark{-webkit-padding-start:2em;padding-inline-start:2em}ul.is-style-vk-default li,ul.is-style-vk-arrow-mark li,ul.is-style-vk-triangle-mark li,ul.is-style-vk-check-mark li,ul.is-style-vk-check-circle-mark li,ul.is-style-vk-check-square-mark li,ul.is-style-vk-handpoint-mark li,ul.is-style-vk-pencil-mark li,ul.is-style-vk-smile-mark li,ul.is-style-vk-frown-mark li,ul.is-style-vk-numbered-circle-mark li,ul.is-style-vk-numbered-square-mark li,ol.is-style-vk-default li,ol.is-style-vk-arrow-mark li,ol.is-style-vk-triangle-mark li,ol.is-style-vk-check-mark li,ol.is-style-vk-check-circle-mark li,ol.is-style-vk-check-square-mark li,ol.is-style-vk-handpoint-mark li,ol.is-style-vk-pencil-mark li,ol.is-style-vk-smile-mark li,ol.is-style-vk-frown-mark li,ol.is-style-vk-numbered-circle-mark li,ol.is-style-vk-numbered-square-mark li{list-style:none;position:relative;margin-bottom:0.8em;line-height:1.65em}ul.is-style-vk-numbered-circle-mark,ol.is-style-vk-numbered-circle-mark{counter-reset:number;list-style-type:none}ul.is-style-vk-numbered-circle-mark li,ol.is-style-vk-numbered-circle-mark li{position:relative;list-style:none}ul.is-style-vk-numbered-circle-mark li:before,ol.is-style-vk-numbered-circle-mark li:before{position:absolute;left:0;counter-increment:number;content:counter(number);margin-left:-2.4em;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:bold;border-radius:50%;font-size:1em;line-height:1.8em;width:26px;height:26px;text-align:center}ul.is-style-vk-numbered-square-mark,ol.is-style-vk-numbered-square-mark{counter-reset:number;list-style-type:none}ul.is-style-vk-numbered-square-mark li,ol.is-style-vk-numbered-square-mark li{position:relative;list-style:none}ul.is-style-vk-numbered-square-mark li:before,ol.is-style-vk-numbered-square-mark li:before{position:absolute;left:-0.3em;counter-increment:number;content:counter(number);margin-left:-25px;background:#222;color:#fff;text-indent:0;display:inline-block;font-weight:bold;font-size:1em;line-height:1.8em;width:26px;height:26px;text-align:center;border-radius:2px}ul.is-style-vk-numbered-circle-mark.fa-lg li::before,ul.is-style-vk-numbered-square-mark.fa-lg li::before,ol.is-style-vk-numbered-circle-mark.fa-lg li::before,ol.is-style-vk-numbered-square-mark.fa-lg li::before{left:-0.8em}ul.is-style-vk-numbered-circle-mark.fa-2x li,ul.is-style-vk-numbered-square-mark.fa-2x li,ol.is-style-vk-numbered-circle-mark.fa-2x li,ol.is-style-vk-numbered-square-mark.fa-2x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-2x li::before,ul.is-style-vk-numbered-square-mark.fa-2x li::before,ol.is-style-vk-numbered-circle-mark.fa-2x li::before,ol.is-style-vk-numbered-square-mark.fa-2x li::before{left:-1.1em}ul.is-style-vk-numbered-circle-mark.fa-3x li,ul.is-style-vk-numbered-square-mark.fa-3x li,ol.is-style-vk-numbered-circle-mark.fa-3x li,ol.is-style-vk-numbered-square-mark.fa-3x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-3x li::before,ul.is-style-vk-numbered-square-mark.fa-3x li::before,ol.is-style-vk-numbered-circle-mark.fa-3x li::before,ol.is-style-vk-numbered-square-mark.fa-3x li::before{left:-1.4em}ul.is-style-vk-numbered-circle-mark.fa-4x li,ul.is-style-vk-numbered-square-mark.fa-4x li,ol.is-style-vk-numbered-circle-mark.fa-4x li,ol.is-style-vk-numbered-square-mark.fa-4x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-4x li::before,ul.is-style-vk-numbered-square-mark.fa-4x li::before,ol.is-style-vk-numbered-circle-mark.fa-4x li::before,ol.is-style-vk-numbered-square-mark.fa-4x li::before{left:-1.5em}ul.is-style-vk-numbered-circle-mark.fa-5x li,ul.is-style-vk-numbered-square-mark.fa-5x li,ol.is-style-vk-numbered-circle-mark.fa-5x li,ol.is-style-vk-numbered-square-mark.fa-5x li{line-height:1.25em}ul.is-style-vk-numbered-circle-mark.fa-5x li::before,ul.is-style-vk-numbered-square-mark.fa-5x li::before,ol.is-style-vk-numbered-circle-mark.fa-5x li::before,ol.is-style-vk-numbered-square-mark.fa-5x li::before{left:-1.6em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"•";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-arrow-mark li::before,ol.is-style-vk-arrow-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-triangle-mark li::before,ol.is-style-vk-triangle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-mark li::before,ol.is-style-vk-check-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-circle-mark li::before,ol.is-style-vk-check-circle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-check-square-mark li::before,ol.is-style-vk-check-square-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-handpoint-mark li::before,ol.is-style-vk-handpoint-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-pencil-mark li::before,ol.is-style-vk-pencil-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-smile-mark li::before,ol.is-style-vk-smile-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.is-style-vk-frown-mark li::before,ol.is-style-vk-frown-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ul.is-style-vk-default li::before,ol.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ul.vk-has-pale-pink-color li::before,ol.vk-has-pale-pink-color li::before{color:#f78da7}ul.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-pale-pink-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-pale-pink-color li::before{color:#ffffff;background-color:#f78da7}ul.vk-has-vivid-red-color li::before,ol.vk-has-vivid-red-color li::before{color:#cf2e2e}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-red-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-red-color li::before{color:#ffffff;background-color:#cf2e2e}ul.vk-has-luminous-vivid-orange-color li::before,ol.vk-has-luminous-vivid-orange-color li::before{color:#ff6900}ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-orange-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-orange-color li::before{color:#ffffff;background-color:#ff6900}ul.vk-has-luminous-vivid-amber-color li::before,ol.vk-has-luminous-vivid-amber-color li::before{color:#fcb900}ul.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-luminous-vivid-amber-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-luminous-vivid-amber-color li::before{color:#ffffff;background-color:#fcb900}ul.vk-has-light-green-cyan-color li::before,ol.vk-has-light-green-cyan-color li::before{color:#7bdcb5}ul.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-light-green-cyan-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-light-green-cyan-color li::before{color:#ffffff;background-color:#7bdcb5}ul.vk-has-vivid-green-cyan-color li::before,ol.vk-has-vivid-green-cyan-color li::before{color:#00d084}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-green-cyan-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-green-cyan-color li::before{color:#ffffff;background-color:#00d084}ul.vk-has-pale-cyan-blue-color li::before,ol.vk-has-pale-cyan-blue-color li::before{color:#8ed1fc}ul.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-pale-cyan-blue-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-pale-cyan-blue-color li::before{color:#ffffff;background-color:#8ed1fc}ul.vk-has-vivid-cyan-blue-color li::before,ol.vk-has-vivid-cyan-blue-color li::before{color:#0693e3}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-cyan-blue-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-cyan-blue-color li::before{color:#ffffff;background-color:#0693e3}ul.vk-has-vivid-purple-color li::before,ol.vk-has-vivid-purple-color li::before{color:#9b51e0}ul.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-vivid-purple-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-vivid-purple-color li::before{color:#ffffff;background-color:#9b51e0}ul.vk-has-very-light-gray-color li::before,ol.vk-has-very-light-gray-color li::before{color:#eee}ul.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-very-light-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-very-light-gray-color li::before{color:#ffffff;background-color:#eee}ul.vk-has-cyan-bluish-gray-color li::before,ol.vk-has-cyan-bluish-gray-color li::before{color:#abb8c3}ul.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-cyan-bluish-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-cyan-bluish-gray-color li::before{color:#ffffff;background-color:#abb8c3}ul.vk-has-very-dark-gray-color li::before,ol.vk-has-very-dark-gray-color li::before{color:#313131}ul.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,ul.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before,ol.is-style-vk-numbered-circle-mark.vk-has-very-dark-gray-color li::before,ol.is-style-vk-numbered-square-mark.vk-has-very-dark-gray-color li::before{color:#ffffff;background-color:#313131}.wp-block-group.is-style-vk-group-solid{border:solid 3px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-solid h2,.wp-block-group.is-style-vk-group-solid h3,.wp-block-group.is-style-vk-group-solid h4,.wp-block-group.is-style-vk-group-solid h5,.wp-block-group.is-style-vk-group-solid h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-solid ul,.wp-block-group.is-style-vk-group-solid ol{margin-top:0}.wp-block-group.is-style-vk-group-solid ul li:last-child,.wp-block-group.is-style-vk-group-solid ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-solid-roundcorner{border:solid 3px;border-radius:8px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-solid-roundcorner h2,.wp-block-group.is-style-vk-group-solid-roundcorner h3,.wp-block-group.is-style-vk-group-solid-roundcorner h4,.wp-block-group.is-style-vk-group-solid-roundcorner h5,.wp-block-group.is-style-vk-group-solid-roundcorner h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-solid-roundcorner ul,.wp-block-group.is-style-vk-group-solid-roundcorner ol{margin-top:0}.wp-block-group.is-style-vk-group-solid-roundcorner ul li:last-child,.wp-block-group.is-style-vk-group-solid-roundcorner ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-dotted{border:dotted 1px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-dotted h2,.wp-block-group.is-style-vk-group-dotted h3,.wp-block-group.is-style-vk-group-dotted h4,.wp-block-group.is-style-vk-group-dotted h5,.wp-block-group.is-style-vk-group-dotted h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-dotted ul,.wp-block-group.is-style-vk-group-dotted ol{margin-top:0}.wp-block-group.is-style-vk-group-dotted ul li:last-child,.wp-block-group.is-style-vk-group-dotted ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-dashed{border:dashed 2px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-dashed h2,.wp-block-group.is-style-vk-group-dashed h3,.wp-block-group.is-style-vk-group-dashed h4,.wp-block-group.is-style-vk-group-dashed h5,.wp-block-group.is-style-vk-group-dashed h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-dashed ul,.wp-block-group.is-style-vk-group-dashed ol{margin-top:0}.wp-block-group.is-style-vk-group-dashed ul li:last-child,.wp-block-group.is-style-vk-group-dashed ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-double{border:double 5px;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-double h2,.wp-block-group.is-style-vk-group-double h3,.wp-block-group.is-style-vk-group-double h4,.wp-block-group.is-style-vk-group-double h5,.wp-block-group.is-style-vk-group-double h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-double ul,.wp-block-group.is-style-vk-group-double ol{margin-top:0}.wp-block-group.is-style-vk-group-double ul li:last-child,.wp-block-group.is-style-vk-group-double ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-stitch{margin:1em 0;padding:0.5em;border-radius:8px}.wp-block-group.is-style-vk-group-stitch h2,.wp-block-group.is-style-vk-group-stitch h3,.wp-block-group.is-style-vk-group-stitch h4,.wp-block-group.is-style-vk-group-stitch h5,.wp-block-group.is-style-vk-group-stitch h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-stitch ul,.wp-block-group.is-style-vk-group-stitch ol{margin-top:0}.wp-block-group.is-style-vk-group-stitch ul li:last-child,.wp-block-group.is-style-vk-group-stitch ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-stitch .wp-block-group__inner-container{border:dashed 2px;border-radius:8px;padding:1.8em}.wp-block-group.is-style-vk-group-top-bottom-border{border-top:solid 1px;border-bottom:solid 1px;padding:1.8em;margin:1.2em 0;padding-left:0;padding-right:0}.wp-block-group.is-style-vk-group-top-bottom-border h2,.wp-block-group.is-style-vk-group-top-bottom-border h3,.wp-block-group.is-style-vk-group-top-bottom-border h4,.wp-block-group.is-style-vk-group-top-bottom-border h5,.wp-block-group.is-style-vk-group-top-bottom-border h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-top-bottom-border ul,.wp-block-group.is-style-vk-group-top-bottom-border ol{margin-top:0}.wp-block-group.is-style-vk-group-top-bottom-border ul li:last-child,.wp-block-group.is-style-vk-group-top-bottom-border ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-shadow{-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.2);box-shadow:0px 0px 5px rgba(0,0,0,0.2);padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-shadow h2,.wp-block-group.is-style-vk-group-shadow h3,.wp-block-group.is-style-vk-group-shadow h4,.wp-block-group.is-style-vk-group-shadow h5,.wp-block-group.is-style-vk-group-shadow h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-shadow ul,.wp-block-group.is-style-vk-group-shadow ol{margin-top:0}.wp-block-group.is-style-vk-group-shadow ul li:last-child,.wp-block-group.is-style-vk-group-shadow ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-alert-info{background-color:#d9edf7;color:#31708f;border-radius:3px;border:1px solid #bce8f1;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-alert-info h2,.wp-block-group.is-style-vk-group-alert-info h3,.wp-block-group.is-style-vk-group-alert-info h4,.wp-block-group.is-style-vk-group-alert-info h5,.wp-block-group.is-style-vk-group-alert-info h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-alert-info ul,.wp-block-group.is-style-vk-group-alert-info ol{margin-top:0}.wp-block-group.is-style-vk-group-alert-info ul li:last-child,.wp-block-group.is-style-vk-group-alert-info ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-alert-success{background-color:#dff0d8;color:#3c763d;border-radius:3px;border:1px solid #d6e9c6;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-alert-success h2,.wp-block-group.is-style-vk-group-alert-success h3,.wp-block-group.is-style-vk-group-alert-success h4,.wp-block-group.is-style-vk-group-alert-success h5,.wp-block-group.is-style-vk-group-alert-success h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-alert-success ul,.wp-block-group.is-style-vk-group-alert-success ol{margin-top:0}.wp-block-group.is-style-vk-group-alert-success ul li:last-child,.wp-block-group.is-style-vk-group-alert-success ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-alert-warning{background-color:#fcf8e3;color:#8a6d3b;border-radius:3px;border:1px solid #faebcc;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-alert-warning h2,.wp-block-group.is-style-vk-group-alert-warning h3,.wp-block-group.is-style-vk-group-alert-warning h4,.wp-block-group.is-style-vk-group-alert-warning h5,.wp-block-group.is-style-vk-group-alert-warning h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-alert-warning ul,.wp-block-group.is-style-vk-group-alert-warning ol{margin-top:0}.wp-block-group.is-style-vk-group-alert-warning ul li:last-child,.wp-block-group.is-style-vk-group-alert-warning ol li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-alert-danger{background-color:#f2dede;color:#a94442;border-radius:3px;border:1px solid #ebccd1;padding:1.8em;margin:1.2em 0}.wp-block-group.is-style-vk-group-alert-danger h2,.wp-block-group.is-style-vk-group-alert-danger h3,.wp-block-group.is-style-vk-group-alert-danger h4,.wp-block-group.is-style-vk-group-alert-danger h5,.wp-block-group.is-style-vk-group-alert-danger h6{margin-bottom:1rem}.wp-block-group.is-style-vk-group-alert-danger ul,.wp-block-group.is-style-vk-group-alert-danger ol{margin-top:0}.wp-block-group.is-style-vk-group-alert-danger ul li:last-child,.wp-block-group.is-style-vk-group-alert-danger ol li:last-child{margin-bottom:0}.wp-block-group h3:first-child,.wp-block-group h4:first-child{margin-top:0}.wp-block-group p:last-child,.wp-block-group ul:last-child,.wp-block-group ol:last-child,.wp-block-group dl:last-child,.wp-block-group table:last-child,.wp-block-group .wp-block-columns:last-child{margin-bottom:0}.wp-block-group.vk-has-pale-pink-color{border-color:#f78da7}.wp-block-group.vk-has-pale-pink-color .wp-block-group__inner-container{border-color:#f78da7}.wp-block-group.vk-has-vivid-red-color{border-color:#cf2e2e}.wp-block-group.vk-has-vivid-red-color .wp-block-group__inner-container{border-color:#cf2e2e}.wp-block-group.vk-has-luminous-vivid-orange-color{border-color:#ff6900}.wp-block-group.vk-has-luminous-vivid-orange-color .wp-block-group__inner-container{border-color:#ff6900}.wp-block-group.vk-has-luminous-vivid-amber-color{border-color:#fcb900}.wp-block-group.vk-has-luminous-vivid-amber-color .wp-block-group__inner-container{border-color:#fcb900}.wp-block-group.vk-has-light-green-cyan-color{border-color:#7bdcb5}.wp-block-group.vk-has-light-green-cyan-color .wp-block-group__inner-container{border-color:#7bdcb5}.wp-block-group.vk-has-vivid-green-cyan-color{border-color:#00d084}.wp-block-group.vk-has-vivid-green-cyan-color .wp-block-group__inner-container{border-color:#00d084}.wp-block-group.vk-has-pale-cyan-blue-color{border-color:#8ed1fc}.wp-block-group.vk-has-pale-cyan-blue-color .wp-block-group__inner-container{border-color:#8ed1fc}.wp-block-group.vk-has-vivid-cyan-blue-color{border-color:#0693e3}.wp-block-group.vk-has-vivid-cyan-blue-color .wp-block-group__inner-container{border-color:#0693e3}.wp-block-group.vk-has-vivid-purple-color{border-color:#9b51e0}.wp-block-group.vk-has-vivid-purple-color .wp-block-group__inner-container{border-color:#9b51e0}.wp-block-group.vk-has-very-light-gray-color{border-color:#eee}.wp-block-group.vk-has-very-light-gray-color .wp-block-group__inner-container{border-color:#eee}.wp-block-group.vk-has-cyan-bluish-gray-color{border-color:#abb8c3}.wp-block-group.vk-has-cyan-bluish-gray-color .wp-block-group__inner-container{border-color:#abb8c3}.wp-block-group.vk-has-very-dark-gray-color{border-color:#313131}.wp-block-group.vk-has-very-dark-gray-color .wp-block-group__inner-container{border-color:#313131}.wp-block-embed-youtube iframe{width:100%}
|
2 |
|
3 |
.alert{padding:1em;margin:1em 0;border-radius:3px}.alert p{margin-bottom:0}.alert+.alert{margin-top:2em}.alert a{-webkit-transition:color .3s linear, opacity .3s linear;transition:color .3s linear, opacity .3s linear}.alert a:link,.alert a:visited{opacity:.8;text-decoration:underline}.alert a:hover,.alert a:visited{opacity:1;text-decoration:none}.alert-success{background-color:#dff0d8;color:#3c763d;border-color:#d6e9c6}.alert-info{background-color:#d9edf7;color:#31708f;border-color:#bce8f1}.alert-warning{background-color:#fcf8e3;color:#8a6d3b;border-color:#faebcc}.alert-danger{background-color:#f2dede;color:#a94442;border-color:#ebccd1}
|
4 |
|
5 |
.vk_balloon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:1em}.vk_balloon figure{margin:0}.vk_balloon p{word-break:break-all;background:#f5f5f5;padding:1.1rem 1.4rem}.vk_balloon_icon{-ms-flex-preferred-size:96px;flex-basis:96px;-ms-flex-negative:0;flex-shrink:0;text-align:center}.vk_balloon_icon_image{vertical-align:bottom;max-width:64px}.vk_balloon_icon_name{display:block;text-align:center;font-size:0.7rem;margin-top:0.2rem}.vk_balloon_content{position:relative;text-align:left}.vk_balloon_content.editor-rich-text__tinymce[data-is-placeholder-visible=true]{position:absolute}.vk_balloon-type-serif .vk_balloon_content{border-color:#f5f5f5;border-radius:.4em}.vk_balloon-type-serif .vk_balloon_content::after{content:'';position:absolute;width:0;height:0;border:20px solid transparent}.vk_balloon-type-think .vk_balloon_content{border-radius:2rem}.vk_balloon-type-think .vk_balloon_content::before,.vk_balloon-type-think .vk_balloon_content::after{position:absolute;content:'';border-radius:50%;background:inherit}.vk_balloon-type-think .vk_balloon_content::before{width:20px;height:20px}.vk_balloon-type-think .vk_balloon_content::after{width:10px;height:10px}.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{margin-right:2rem}.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{left:0;top:50%;border-right-color:inherit;border-left:0;margin-top:-20px;margin-left:-20px}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2.5rem}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{left:-22px;top:7px}.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::after{left:-35px;top:20px}.vk_balloon-position-right{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:2rem}.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{right:0;top:50%;border-left-color:inherit;border-right:0;margin-top:-20px;margin-right:-20px}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2.5rem}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::before{right:-22px;top:7px}.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content::after{right:-35px;top:20px}.vk_balloon.animation-vibration .vk_balloon_content{display:inline-block;-webkit-animation:vibration .1s infinite;animation:vibration .1s infinite}@-webkit-keyframes vibration{0%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}25%{-webkit-transform:translate(2px, 2px) rotateZ(1deg);transform:translate(2px, 2px) rotateZ(1deg)}50%{-webkit-transform:translate(0px, 2px) rotateZ(0deg);transform:translate(0px, 2px) rotateZ(0deg)}75%{-webkit-transform:translate(2px, 0px) rotateZ(-1deg);transform:translate(2px, 0px) rotateZ(-1deg)}100%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}}@keyframes vibration{0%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}25%{-webkit-transform:translate(2px, 2px) rotateZ(1deg);transform:translate(2px, 2px) rotateZ(1deg)}50%{-webkit-transform:translate(0px, 2px) rotateZ(0deg);transform:translate(0px, 2px) rotateZ(0deg)}75%{-webkit-transform:translate(2px, 0px) rotateZ(-1deg);transform:translate(2px, 0px) rotateZ(-1deg)}100%{-webkit-transform:translate(0px, 0px) rotateZ(0deg);transform:translate(0px, 0px) rotateZ(0deg)}}@media only screen and (max-width: 480px){.vk_balloon_content{font-size:.9em}.vk_balloon-type-serif .vk_balloon_content::after{border:15px solid transparent}.vk_balloon-type-think .vk_balloon_content::after{border:5px solid transparent}.vk_balloon{-webkit-box-align:normal;-ms-flex-align:normal;align-items:normal}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_icon{max-width:86px;margin-right:1.5rem}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-left.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-left:-15px}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_icon{margin-right:2rem;max-width:86px}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-left.vk_balloon-type-think .vk_balloon_content::before{width:15px;height:15px}.vk_balloon.vk_balloon-position-right{text-align:right}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_icon{margin-left:auto;margin-right:0}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content{display:inline-block}.vk_balloon.vk_balloon-position-right.vk_balloon-type-serif .vk_balloon_content::after{top:35px;margin-right:-15px}.vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_icon{margin-left:2rem;margin-right:0;max-width:86px}.vk_balloon.vk_balloon-position-right.vk_balloon-type-think .vk_balloon_content{display:inline-block}.vk_balloon_icon{max-width:96px}}
|
6 |
|
7 |
+
:root{--vk-color-border-red: #dc3545;--vk-color-background-red: #dc3545;--vk-color-border-orange: #ffa536;--vk-color-background-orange: #ffa536;--vk-color-border-blue: #4267b2;--vk-color-background-blue: #4267b2;--vk-color-border-green: #28a745;--vk-color-background-green: #28a745;--vk-color-border-black: #222;--vk-color-background-black: #222}.vk_borderBox-color-red{border-color:var(--vk-color-border-red);background-color:var(--vk-color-background-red)}.vk_borderBox-color-orange{border-color:var(--vk-color-border-orange);background-color:var(--vk-color-background-orange)}.vk_borderBox-color-blue{border-color:var(--vk-color-border-blue);background-color:var(--vk-color-background-blue)}.vk_borderBox-color-green{border-color:var(--vk-color-border-green);background-color:var(--vk-color-background-green)}.vk_borderBox-color-black{border-color:var(--vk-color-border-black);background-color:var(--vk-color-background-black)}.vk_borderBox{margin:0 0 2em;position:relative}.vk_borderBox .vk_borderBox_title_container{margin:0;font-size:1em;line-height:1.4;padding:0.5em 1.5em 0.4em;font-weight:bold}.vk_borderBox .vk_borderBox_title_container .svg-inline--fa,.vk_borderBox .vk_borderBox_title_container .fas{margin-right:5px}.vk_borderBox .vk_borderBox_title_container .vk_borderBox_title{display:inline;font-weight:bold;font-size:1em}.vk_borderBox .vk_borderBox_body{padding:1.5em;background-color:#fff;border-width:2px;border-style:solid}.vk_borderBox .vk_borderBox_body p{margin-bottom:0}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-tab .vk_borderBox_title_container,.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{display:inline-block}.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{border-radius:8px 8px 0 0}.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_body{border-radius:0 8px 8px 8px}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature{background-color:transparent;border-width:2px;border-style:solid}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_title_container,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container{padding:1.5em 1.5em 1em}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-inner .vk_borderBox_body,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_body,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_body{background-color:transparent;border:none;padding-top:0}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container{position:relative;padding-top:2.2em}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .vk_borderBox_title_container::after{content:"";position:absolute;top:-32%;left:1.5em;padding:1.4em;border-radius:50%;border:solid 2px #fff}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .svg-inline--fa,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .fa,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .fab,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .fas,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .far,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .fal,.vk_borderBox.is-style-vk_borderBox-style-solid-kado-iconFeature .fad{position:absolute;font-size:1.3em;margin-right:0;z-index:100;top:0%;left:2.3em;transform:translate(-50%, -50%);-webkit-transform:translate(-50%, -50%);-ms-transform:translate(-50%, -50%)}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-onborder .vk_borderBox_title_container{position:relative;top:-1.2em;left:1em;z-index:1;display:inline-block;padding:0.5em 0.5em;background:#fff}.vk_borderBox.is-style-vk_borderBox-style-solid-kado-tit-tab,.vk_borderBox.is-style-vk_borderBox-style-solid-round-tit-tab{border:none;background-color:transparent}.is-style-vk_borderBox-style-solid-kado-tit-tab .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab .vk_borderBox_title_container{color:#fff}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-red .vk_borderBox_title_container{background-color:var(--vk-color-background-red)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-red .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-red .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-red .vk_borderBox_body{border-color:var(--vk-color-border-red)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-orange .vk_borderBox_title_container{background-color:var(--vk-color-background-orange)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-orange .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-orange .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-orange .vk_borderBox_body{border-color:var(--vk-color-border-orange)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-blue .vk_borderBox_title_container{background-color:var(--vk-color-background-blue)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-blue .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-blue .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-blue .vk_borderBox_body{border-color:var(--vk-color-border-blue)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-green .vk_borderBox_title_container{background-color:var(--vk-color-background-green)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-green .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-green .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-green .vk_borderBox_body{border-color:var(--vk-color-border-green)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-black .vk_borderBox_title_container{background-color:var(--vk-color-background-black)}.is-style-vk_borderBox-style-solid-kado-tit-tab.vk_borderBox-color-black .vk_borderBox_body,.is-style-vk_borderBox-style-solid-kado-tit-banner.vk_borderBox-color-black .vk_borderBox_body,.is-style-vk_borderBox-style-solid-round-tit-tab.vk_borderBox-color-black .vk_borderBox_body{border-color:var(--vk-color-border-black)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-red .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container{color:var(--vk-color-background-red)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-orange .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container{color:var(--vk-color-background-orange)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-blue .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container{color:var(--vk-color-background-blue)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-green .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container{color:var(--vk-color-background-green)}.is-style-vk_borderBox-style-solid-kado-tit-inner.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-tit-onborder.vk_borderBox-color-black .vk_borderBox_title_container,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container{color:var(--vk-color-background-black)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container .fas{color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-red .vk_borderBox_title_container::after{background-color:var(--vk-color-background-red)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-orange);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-orange .vk_borderBox_title_container::after{background-color:var(--vk-color-background-orange)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-blue);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-blue .vk_borderBox_title_container::after{background-color:var(--vk-color-background-blue)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-green);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-green .vk_borderBox_title_container::after{background-color:var(--vk-color-background-green)}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container .svg-inline--fa,.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container .fas{background-color:var(--vk-color-background-black);color:#fff}.is-style-vk_borderBox-style-solid-kado-iconFeature.vk_borderBox-color-black .vk_borderBox_title_container::after{background-color:var(--vk-color-background-black)}
|
8 |
+
|
9 |
.vk_button{margin:5px 0;text-align:center}.vk_button-color-custom a:hover{opacity:0.8;-webkit-box-shadow:0 0 0 0.2rem rgba(171,184,195,0.25);box-shadow:0 0 0 0.2rem rgba(171,184,195,0.25)}.vk_button-align-left{text-align:left}.vk_button-align-center{text-align:center}.vk_button-align-right{text-align:right}.vk_button-align-block{display:block}.vk_button-align-wide{display:block;margin-left:auto;margin-right:auto;max-width:70%}.vk_button-align-wide .btn{display:block}.vk_button_link{min-width:100px;min-height:30px}.vk_button_link-type-text{-webkit-box-shadow:none;box-shadow:none;padding:0}.vk_button_link-type-text:hover{background:none;-webkit-box-shadow:none;box-shadow:none}.vk_button_link.btn{padding-top:0.7em;padding-bottom:0.6em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.vk_button_link_before{margin-right:0.7rem}.vk_button_link_after{margin-left:0.7rem}.vk_button_link_subCaption{display:block;overflow:hidden;margin:0;font-size:80%}.vk_button .editor-rich-text{display:inline-block}.vk_button-color-custom .vk_button_link-type-text:hover{-webkit-box-shadow:none;box-shadow:none}.btn.btn-primary{color:#fff}.btn.btn-secondary{color:#fff;background-color:#6c757d}.btn.btn-success{color:#fff}.btn.btn-info{color:#fff}.btn.btn-warning{color:#fff}.btn.btn-danger{color:#fff}.btn.btn-light{background-color:#f8f9fa}.btn.btn-dark{color:#fff;background-color:#343a40}.btn.btn-secondary:hover,.btn.btn-dark:hover{color:#fff}.btn.btn-outline-primary{color:#007bff;border:1px solid #007bff;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-secondary{color:#6c757d;border:1px solid #6c757d;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-success{color:#28a745;border:1px solid #28a745;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-info{color:#17a2b8;border:1px solid #17a2b8;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-warning{color:#ffc107;border:1px solid #ffc107;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-danger{color:#dc3545;border:1px solid #dc3545;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-light{border:1px solid #f8f9fa;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-dark{color:#343a40;border:1px solid #343a40;background:none;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-primary:hover,.btn.btn-outline-primary:focus{background:#007bff;color:#fff}.btn.btn-outline-secondary:hover,.btn.btn-outline-secondary:focus{background:#6c757d;color:#fff}.btn.btn-outline-success:hover,.btn.btn-outline-success:focus{background:#28a745;color:#fff}.btn.btn-outline-info:hover,.btn.btn-outline-info:focus{background:#17a2b8;color:#fff}.btn.btn-outline-warning:hover,.btn.btn-outline-warning:focus{background:#ffc107;color:#fff}.btn.btn-outline-danger:hover,.btn.btn-outline-danger:focus{background:#dc3545;color:#fff}.btn.btn-outline-light:hover,.btn.btn-outline-light:focus{background:#f8f9fa;color:#fff}.btn.btn-outline-dark:hover,.btn.btn-outline-dark:focus{background:#343a40;color:#fff}
|
10 |
|
11 |
.vk_faq{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0px 0px 25px;margin:25px 0px;width:100%;position:relative}.vk_faq_title,.vk_faq_content{border:none;padding-left:35px}.vk_faq_title:before,.vk_faq_content:before{position:absolute;left:0;font-size:24px;line-height:105%}.vk_faq_title{margin-bottom:15px;font-size:18px;font-weight:700}.vk_faq_title:before{font-family:"areal";content:"Q ";color:#e50000}.vk_faq_content{margin:0px}.vk_faq_content:before{content:"A ";color:#337ab7;font-family:""}
|
22 |
|
23 |
@media screen and (max-width: 992px){.vk_prBlocks_item{margin-bottom:1.5em}}.vk_prBlocks_item_link{color:#333}.vk_prBlocks_item_link:hover{color:#333;text-decoration:none}.vk_prBlocks_item_icon_outer{display:block;position:relative;margin:0 auto;width:80px;height:80px;border-radius:50%}.vk_prBlocks_item_icon{position:absolute;top:50%;left:50%;-webkit-transform:translateY(-50%) translateX(-50%);transform:translateY(-50%) translateX(-50%);font-size:36px;color:#fff}.vk_prBlocks_item_title{background-color:transparent;margin-top:0.9em;margin-bottom:0.6em;text-align:center;font-size:21px;line-height:1.4em;border:none;padding:0}.vk_prBlocks_item_title::before{content:none}.vk_prBlocks_item_title::after{border:none}.vk_prBlocks_item_image{position:relative;display:block;width:120px;height:120px;margin:0 auto;overflow:hidden;border-radius:50%;text-indent:-9999px}.vk_prBlocks_item_summary{margin-bottom:0.5em;text-align:center;line-height:1.8em}
|
24 |
|
25 |
+
.vk_prContent{margin-left:-15px;margin-right:-15px}@media (min-width: 576px){.vk_prContent{display:-webkit-box;display:-ms-flexbox;display:flex}.vk_prContent .col-sm-6{width:50%}.vk_prContent-layout-imageLeft{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.vk_prContent-layout-imageRight{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.vk_prContent-layout-imageLeft .vk_prContent_colImg{padding-right:2em}.vk_prContent-layout-imageRight .vk_prContent_colImg{padding-left:2em}}.vk_prContent_colTxt{vertical-align:top}.vk_prContent_colTxt_title{background-color:transparent;font-weight:bold;padding:0;-webkit-box-shadow:none;box-shadow:none;border:none;margin-bottom:0.8em}@media (max-width: 575.98px){.vk_prContent_colTxt_title:first-child{margin-top:30px}}.vk_prContent_colTxt_title:after{content:"";line-height:0;display:block;overflow:hidden;position:absolute;bottom:-1px;width:0;border:none}.vk_prContent_colTxt_text{line-height:2em;margin-bottom:1.7em}@media (min-width: 992px){.vk_prContent_colTxt_btn.btn{font-size:16px}}.vk_prContent_colImg_image{max-width:100%;height:auto}.vk_prContent_colImg .components-button.button{margin:1em}.vk_prContent_colImg .components-button.image-button{margin:0;height:auto}
|
26 |
|
27 |
@media (max-width: 575.98px){.vk_table-col-mobile1 th,.vk_table-col-mobile1 td{display:block}.vk_table-col-mobile1 th{background-color:rgba(0,0,0,0.05)}.vk_table-col-mobile1.table-striped tbody tr:nth-of-type(odd){background:inherit}}.vk_simpleTable-edit .editor-inner-blocks,.vk_simpleTable-edit .editor-block-list__layout,.vk_simpleTable-edit .editor-block-list__block,.vk_simpleTable-edit .editor-rich-text__editable,.vk_simpleTable-edit .editor-block-list__block-edit{padding:0;margin:0;width:100%}.vk_simpleTable-edit>.editor-inner-blocks{margin-top:-1px}.vk_simpleTable-edit .editor-block-list__block-edit{height:100%}.vk_simpleTable-edit .block-editor-block-list__insertion-point{top:-5px}.vk_simpleTable-edit .editor-block-list__block-edit:before{right:-0px;left:-0px;top:-0px;bottom:-0px}.vk_simpleTable-edit .editor-inner-blocks tr{width:100%;display:block;border-bottom:1px solid #e5e5e5}.vk_simpleTable-edit .editor-inner-blocks tr .editor-block-list__layout{display:-webkit-box;display:-ms-flexbox;display:flex}.vk_simpleTable-edit .editor-inner-blocks th,.vk_simpleTable-edit .editor-inner-blocks td{padding:0;display:block;width:100%;border:none}.vk_simpleTable-edit .editor-inner-blocks th .editor-rich-text__editable,.vk_simpleTable-edit .editor-inner-blocks td .editor-rich-text__editable{padding:14px}.vk_simpleTable-edit.table-striped>tbody>.editor-inner-blocks>.editor-block-list__layout>div:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}
|
28 |
|
29 |
@media (max-width: 576px){.vk_spacer .vk_spacer-display-pc{display:none}.vk_spacer .vk_spacer-display-tablet{display:none}.vk_spacer .vk_spacer-display-mobile{display:block}}@media (min-width: 577px) and (max-width: 768px){.vk_spacer .vk_spacer-display-pc{display:none}.vk_spacer .vk_spacer-display-tablet{display:block}.vk_spacer .vk_spacer-display-mobile{display:none}}@media (min-width: 769px){.vk_spacer .vk_spacer-display-pc{display:block}.vk_spacer .vk_spacer-display-tablet{display:none}.vk_spacer .vk_spacer-display-mobile{display:none}}
|
30 |
|
31 |
+
.vk_staff_text{float:left;width:61.6%}.vk_staff_photo{float:right;width:32%}.vk_staff-layout-imageLeft .vk_staff_text{float:right}.vk_staff-layout-imageLeft .vk_staff_photo{float:left}.vk_staff{display:block;overflow:hidden}.vk_staff_text_name{text-align:left;-webkit-box-shadow:none;box-shadow:none;font-size:2.5rem;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","serif";line-height:1;margin-bottom:0.5rem;border:none;padding:0;background-color:transparent}.vk_staff_text_name:before,.vk_staff_text_name:after{border:none}.vk_staff_text_caption{font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","serif";font-size:14px;display:block;margin:0 0 0.5rem 4px;letter-spacing:5px}.vk_staff_text_role{font-size:14px;line-height:1.6em;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","serif"}.vk_staff_text_profileTitle{font-size:18px;font-family:"MS P明朝","MS PMincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","serif";padding-top:0;padding-left:0;padding-bottom:2px;margin-bottom:1.2rem;border-top:none;border-bottom:1px solid #ccc;background:none}.vk_staff_text_profileTitle:before,.vk_staff_text_profileTitle:after{border:none}.vk_staff_text_profileText{font-size:14px}.vk_staff_photo{display:block;vertical-align:top;text-align:center}.vk_staff_photo button{width:100%}.vk_staff_photo .image-button{padding:0;margin:0;display:block;height:100%}.vk_staff_photo-border-default{border:4px solid #efefef;padding:1px}.vk_staff_photo-border-none{border:none}.vk_staff_photo_image{width:100%;margin:0;display:block}@media (min-width: 992px){.page-template-page-onecolumn .vk_staff_text,.page-template-page-lp .vk_staff_text,.page-template-page-lp-builder .vk_staff_text{width:74%}.page-template-page-onecolumn .vk_staff_text_caption,.page-template-page-lp .vk_staff_text_caption,.page-template-page-lp-builder .vk_staff_text_caption{font-size:1rem;letter-spacing:0.5rem}.page-template-page-onecolumn .vk_staff_text_role,.page-template-page-lp .vk_staff_text_role,.page-template-page-lp-builder .vk_staff_text_role{letter-spacing:0.5rem}.page-template-page-onecolumn .vk_staff_photo,.page-template-page-lp .vk_staff_photo,.page-template-page-lp-builder .vk_staff_photo{width:22%}}@media (min-width: 1200px){.page-template-page-onecolumn .vk_staff_text,.page-template-page-lp .vk_staff_text,.page-template-page-lp-builder .vk_staff_text{width:75%}.page-template-page-onecolumn .vk_staff_photo,.page-template-page-lp .vk_staff_photo,.page-template-page-lp-builder .vk_staff_photo{width:20%}}
|
32 |
|
33 |
.vk_table-col-overflow{white-space:nowrap !important}
|
34 |
|
|
inc/vk-blocks/build/block-build.js
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=7)}([function(e,t,n){"use strict";e.exports=n(
|
2 |
/*!
|
3 |
Copyright (c) 2017 Jed Watson.
|
4 |
Licensed under the MIT License (MIT), see
|
5 |
http://jedwatson.github.io/classnames
|
6 |
-
*/!function(){"use strict";var n={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var o=arguments[t];if(o){var
|
7 |
/** @license React v16.12.0
|
8 |
* react.production.min.js
|
9 |
*
|
@@ -11,9 +11,9 @@
|
|
11 |
*
|
12 |
* This source code is licensed under the MIT license found in the
|
13 |
* LICENSE file in the root directory of this source tree.
|
14 |
-
*/var o=n(
|
15 |
/*
|
16 |
object-assign
|
17 |
(c) Sindre Sorhus
|
18 |
@license MIT
|
19 |
-
*/var o=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;function l(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,c,i=l(e),s=1;s<arguments.length;s++){for(var u in n=Object(arguments[s]))r.call(n,u)&&(i[u]=n[u]);if(o){c=o(n);for(var m=0;m<c.length;m++)a.call(n,c[m])&&(i[c[m]]=n[c[m]])}}return i}},function(e,t){var n=wp.i18n.__,o=wp.blocks.registerBlockType,r=wp.components,a=(r.RangeControl,r.RadioControl),l=r.PanelBody,c=r.Button,i=wp.element.Fragment,s=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,u=s.RichText,m=s.InspectorControls,p=s.MediaUpload,b=s.ColorPalette,f=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M544 450.583c0 22.75 13.014 42.454 32 52.092v7.969c-5.313 0.727-10.736 1.112-16.25 1.112-34.004 0-64.674-14.264-86.361-37.132-13.111 3.491-27.001 5.376-41.389 5.376-79.529 0-144-57.308-144-128s64.471-128 144-128c79.529 0 144 57.308 144 128 0 27.674-9.882 53.296-26.678 74.233-3.412 7.412-5.322 15.656-5.322 24.35zM115.339 110.593c-33.107 26.899-51.339 61.492-51.339 97.407 0 20.149 5.594 39.689 16.626 58.075 11.376 18.96 28.491 36.293 49.494 50.126 15.178 9.996 25.39 25.974 28.088 43.947 0.9 5.992 1.464 12.044 1.685 18.062 3.735-3.097 7.375-6.423 10.94-9.988 12.077-12.076 28.39-18.745 45.251-18.745 2.684 0 5.381 0.168 8.078 0.512 10.474 1.331 21.172 2.008 31.797 2.010v64c-13.564-0.001-26.877-0.869-39.871-2.521-54.989 54.989-120.625 64.85-184.088 66.298v-13.458c34.268-16.789 64-47.37 64-82.318 0-4.877-0.379-9.665-1.082-14.348-57.898-38.132-94.918-96.377-94.918-161.652 0-114.875 114.615-208 256-208 139.229 0 252.496 90.307 255.918 202.76-20.548-9.158-42.92-14.711-66.131-16.289-5.765-28.034-22.701-54.408-49.126-75.878-17.661-14.349-38.458-25.695-61.814-33.722-24.853-8.54-51.38-12.871-78.847-12.871s-53.994 4.331-78.847 12.871c-23.356 8.027-44.153 19.372-61.814 33.722z"}));o("vk-blocks/balloon",{title:n("Ballon","vk-blocks"),icon:f,category:"vk-blocks-cat",attributes:{content:{source:"html",selector:"p"},balloonName:{source:"html",selector:"figcaption"},balloonType:{type:"string",default:"type-serif"},balloonBgColor:{type:"string"},balloonAlign:{type:"string",default:"position-left"},IconImage:{type:"string",default:null}},edit:function(e){var t=e.attributes,o=e.className,r=e.setAttributes,s=t.content,f=t.balloonName,k=t.balloonType,v=t.balloonBgColor,d=t.balloonAlign,y=t.IconImage;return React.createElement(i,null,React.createElement(m,null,React.createElement(l,{title:n("Balloon setting","vk-blocks")},React.createElement(a,{label:n("Position","vk-blocks"),help:n("Please specify the layout of the balloon.","vk-blocks"),selected:d,options:[{label:n("Left","vk-blocks"),value:"position-left"},{label:n("Right","vk-blocks"),value:"position-right"}],onChange:function(e){return r({balloonAlign:e})}}),React.createElement(a,{label:n("Type","vk-blocks"),help:n("Please select the type of balloon.","vk-blocks"),selected:k,options:[{label:n("Serif","vk-blocks"),value:"type-serif"},{label:n("Thinking","vk-blocks"),value:"type-think"}],onChange:function(e){return r({balloonType:e})}}),React.createElement(b,{value:v,onChange:function(e){return r({balloonBgColor:e})}}))),React.createElement("div",{className:"".concat(o," vk_balloon vk_balloon-").concat(d," vk_balloon-").concat(k)},React.createElement("div",{className:"vk_balloon_icon"},React.createElement(p,{onSelect:function(e){return r({IconImage:e.sizes.full.url})},type:"image",className:"vk_balloon_icon_image",value:y,render:function(e){var t=e.open;return React.createElement(c,{onClick:t,className:y?"image-button":"button button-large"},y?React.createElement("img",{className:"vk_balloon_icon_image",src:y,alt:n("Upload image","vk-blocks")}):n("Select image","vk-blocks"))}}),React.createElement(u,{tagName:"figcaption",className:"vk_balloon_icon_name",onChange:function(e){return r({balloonName:e})},value:f,placeholder:n("Icon Name","vk-blocks")})),React.createElement(u,{style:{background:v,border:v},tagName:"p",className:"vk_balloon_content",onChange:function(e){return r({content:e})},value:s,placeholder:n("Input text","vk-blocks")})))},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.balloonName,r=t.balloonType,a=t.balloonBgColor,l=t.balloonAlign,c=t.IconImage;return React.createElement("div",{className:"vk_balloon vk_balloon-".concat(l," vk_balloon-").concat(r)},React.createElement("div",{className:"vk_balloon_icon"},c?React.createElement("figure",null,React.createElement("img",{className:"vk_balloon_icon_image",src:c,alt:""}),React.createElement(u.Content,{tagName:"figcaption",className:"vk_balloon_icon_name",value:o})):""),React.createElement(u.Content,{className:"vk_balloon_content",style:{background:a,border:a},tagName:"p",value:n}))}})},function(e,t){var n=wp.i18n.__;wp.blocks.registerBlockStyle("core/image",[{name:"vk-image-border",label:n("Border","vk-blocks")},{name:"vk-image-photoFrame",label:n("Photo frame","vk-blocks")}])},function(e,t){},function(e,t,n){"use strict";n.r(t);var o=function(e){switch(e){case"#f78da7":return"vk-has-pale-pink-color";case"#cf2e2e":return"vk-has-vivid-red-color";case"#ff6900":return"vk-has-luminous-vivid-orange-color";case"#fcb900":return"vk-has-luminous-vivid-amber-color";case"#7bdcb5":return"vk-has-light-green-cyan-color";case"#00d084":return"vk-has-vivid-green-cyan-color";case"#8ed1fc":return"vk-has-pale-cyan-blue-color";case"#0693e3":return"vk-has-vivid-cyan-blue-color";case"#9b51e0":return"vk-has-vivid-purple-color";case"#eee":return"vk-has-very-light-gray-color";case"#abb8c3":return"vk-has-cyan-bluish-gray-color";case"#313131":return"vk-has-very-dark-gray-color"}},r=lodash.assign,a=wp.i18n.__,l=wp.element.Fragment,c=wp.hooks.addFilter,i=wp.components.PanelBody,s=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,u=s.InspectorControls,m=s.ColorPalette,p=wp.compose.createHigherOrderComponent,b=function(e){return["core/group"].includes(e)};c("blocks.registerBlockType","vk-blocks/group-style",(function(e){return b(e.name)&&(e.attributes=r(e.attributes,{color:{type:"string"}})),e})),c("editor.BlockEdit","vk-blocks/group-style",p((function(e){var t="";return function(n){return b(n.name)&&n.isSelected?(t=n.attributes.color?n.attributes.color:"#fffd6b",React.createElement(l,null,React.createElement(e,n),React.createElement(u,null,React.createElement(i,{title:a("Border Color","vk-blocks"),initialOpen:!1,className:"group-border-color-controle"},React.createElement(m,{value:t,disableCustomColors:!0,onChange:function(e){var r=o(e);if(n.attributes.className){var a=n.attributes.className,l=(a=a.split(" ")).filter((function(e){return-1===e.indexOf("vk-has-")}));l.push(r),r=l.join(" ")}t=e,n.setAttributes({className:r,color:e})}}))))):React.createElement(e,n)}}),"addMyCustomBlockControls")),wp.blocks.registerBlockStyle("core/group",[{name:"vk-group-solid",label:a("Solid","vk-blocks")},{name:"vk-group-solid-roundcorner",label:a("Solid Roundcorner","vk-blocks")},{name:"vk-group-dotted",label:a("Dotted","vk-blocks")},{name:"vk-group-dashed",label:a("Dashed","vk-blocks")},{name:"vk-group-double",label:a("Double","vk-blocks")},{name:"vk-group-stitch",label:a("Stitch","vk-blocks")},{name:"vk-group-top-bottom-border",label:a("Border Top Bottom","vk-blocks")},{name:"vk-group-shadow",label:a("Shadow","vk-blocks")}]);var f=lodash.assign,k=wp.i18n.__,v=wp.element.Fragment,d=wp.hooks.addFilter,y=wp.components.PanelBody,_=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,g=_.InspectorControls,h=_.ColorPalette,E=wp.compose.createHigherOrderComponent,C=function(e){return["core/list"].includes(e)};function w(e,t){var n=e.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i),o=null;return n&&(o=n.slice(1,4).map((function(e){return parseInt(e,16)}))),(n=e.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(o=n.slice(1,4).map((function(e){return 17*parseInt(e,16)}))),o?"rgba(".concat(o[0],", ").concat(o[1],", ").concat(o[2],", ").concat(t,")"):null}d("blocks.registerBlockType","vk-blocks/list-style",(function(e){return C(e.name)&&(e.attributes=f(e.attributes,{color:{type:"string"}})),e})),d("editor.BlockEdit","vk-blocks/list-style",E((function(e){var t="";return function(n){return C(n.name)&&n.isSelected?(t=n.attributes.color?n.attributes.color:"#fffd6b",React.createElement(v,null,React.createElement(e,n),React.createElement(g,null,React.createElement(y,{title:k("List Icon Color","vk-blocks"),initialOpen:!1,className:"list-color-controle"},React.createElement(h,{value:t,disableCustomColors:!0,onChange:function(e){var r=o(e);if(n.attributes.className){var a=n.attributes.className,l=(a=a.split(" ")).filter((function(e){return-1===e.indexOf("vk-has-")}));l.push(r),r=l.join(" ")}t=e,n.setAttributes({className:r,color:e})}}))))):React.createElement(e,n)}}),"addMyCustomBlockControls")),wp.blocks.registerBlockStyle("core/list",[{name:"vk-default",label:k("Default","vk-blocks"),isDefault:!0},{name:"vk-arrow-mark",label:k("Arrow","vk-blocks")},{name:"vk-triangle-mark",label:k("Triangle","vk-blocks")},{name:"vk-check-mark",label:k("Check","vk-blocks")},{name:"vk-check-square-mark",label:k("Check Square","vk-blocks")},{name:"vk-check-circle-mark",label:k("Check Circle","vk-blocks")},{name:"vk-handpoint-mark",label:k("Handpoint","vk-blocks")},{name:"vk-pencil-mark",label:k("Pencil","vk-blocks")},{name:"vk-smile-mark",label:k("Smile","vk-blocks")},{name:"vk-frown-mark",label:k("Frown","vk-blocks")},{name:"vk-numbered-circle-mark",label:k("Numbered Circle","vk-blocks")},{name:"vk-numbered-square-mark",label:k("Numbered Square","vk-blocks")}]);var N=wp.i18n.__,x=window.wp.richText,S=x.registerFormatType,T=x.toggleFormat,B=x.applyFormat,O=x.removeFormat,A=x.getActiveFormat,I=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,R=I.RichTextToolbarButton,P=I.RichTextShortcut,j=I.InspectorControls,z=I.PanelColorSettings,F=(I.getColorObjectByColorValue,wp.element.Fragment),M="vk-blocks/highlighter",L=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M26.9,462.2l104.7,39.6l34-34l-73.2-73.2L26.9,462.2z M146.5,231.8c-10.3,9.1-14.4,23.4-10.4,36.6l12.5,41.1l-48.9,48.9 L201,459.6l48.8-48.8l41,12.6c13.2,4,27.5,0,36.6-10.3l27.3-29.1L175.5,204.6L146.5,231.8L146.5,231.8z M533.7,122.3L437,25.7 C417.4,6,385.8,5,364.9,23.4L201,186.6l171.8,171.8l163.1-163.9C554.3,173.6,553.3,142,533.7,122.3L533.7,122.3z"}));S(M,{title:N("Highlighter","vk-blocks"),tagName:"span",className:"vk_highlighter",attributes:{data:"data-color",style:"style"},edit:function(e){var t,n=e.value,o=e.isActive,r=e.onChange;if(o){var a=A(n,M);t=a.attributes.data}var l=function(e){e=function(e){return void 0===e&&(e="#fffd6b"),e}(e),r(T(n,{type:M,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(w(e,.7)," 0);")}}))};return React.createElement(F,null,React.createElement(j,null,React.createElement(z,{title:N("Highlighter","vk-blocks"),initialOpen:!1,colorSettings:[{value:t,onChange:function(e){r(e?B(n,{type:M,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(w(e,.7)," 0);")}}):O(n,M))},label:N("Highlight Color","vk-blocks")}]})),React.createElement(P,{type:"primary",character:"h",onUse:function(){return l(t)}}),React.createElement(R,{icon:L,title:N("Highlighter","vk-blocks"),onClick:function(){return l(t)},isActive:o,shortcutType:"primary",shortcutCharacter:"h"}))}});var U=n(0),H=n.n(U);function D(e){return(D="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 V(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function q(e,t){return!t||"object"!==D(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}function J(e){return(J=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function W(e,t){return(W=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Y=wp.i18n.__,G=wp.editor,Q=G.RichText,K=G.MediaUpload,X=wp.components.Button,Z=function(e){function t(){return V(this,t),q(this,J(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&W(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.vk_staff_text_name,n=e.vk_staff_text_caption,o=e.vk_staff_text_role,r=e.vk_staff_text_profileTitle,a=e.vk_staff_text_profileText,l=e.vk_staff_photo_image,c=e.vk_staff_photo_image_alt,i=e.vk_staff_layout,s=e.vk_staff_nameColor,u=e.vk_staff_captionColor,m=e.vk_staff_positionColor,p=e.vk_staff_profileTitleColor,b=e.vk_staff_profileTextColor,f=e.vk_staff_photoBorder,k=this.props.setAttributes,v=this.props.className,d=this.props.for_,y="";return"edit"===d?y=H.a.createElement("div",{className:"".concat(v," vk_staff vk_staff-layout-").concat(i)},H.a.createElement("div",{className:"vk_staff_text"},H.a.createElement(Q,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},onChange:function(e){return k({vk_staff_text_name:e})},value:t,placeholder:Y("Your Name","vk-blocks")}),H.a.createElement(Q,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},onChange:function(e){return k({vk_staff_text_caption:e})},value:n,placeholder:Y("Caption","vk-blocks")}),H.a.createElement(Q,{tagName:"p",className:"vk_staff_text_role",style:{color:m},onChange:function(e){return k({vk_staff_text_role:e})},value:o,placeholder:Y("Role position","vk-blocks")}),H.a.createElement(Q,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:p},onChange:function(e){return k({vk_staff_text_profileTitle:e})},value:r,placeholder:Y("Profile title","vk-blocks")}),H.a.createElement(Q,{tagName:"p",className:"vk_staff_text_profileText",style:{color:b},onChange:function(e){return k({vk_staff_text_profileText:e})},value:a,placeholder:Y("Profile text","vk-blocks")})),H.a.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(f)},H.a.createElement(K,{onSelect:function(e){return k({vk_staff_photo_image:e.sizes.full.url})},type:"image",className:"vk_staff_photo_image",value:l,render:function(e){var t=e.open;return H.a.createElement(X,{onClick:t,className:l?"image-button":"button button-large"},l?H.a.createElement("img",{className:"vk_staff_photo_image",src:l,alt:Y(c,"vk-blocks")}):Y("Select image","vk-blocks"))}}))):"save"===d&&(y=H.a.createElement("div",{className:"".concat(v," vk_staff vk_staff-layout-").concat(i)},H.a.createElement("div",{className:"vk_staff_text"},H.a.createElement(Q.Content,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},value:t}),H.a.createElement(Q.Content,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},value:n}),H.a.createElement(Q.Content,{tagName:"p",className:"vk_staff_text_role",style:{color:m},value:o}),H.a.createElement(Q.Content,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:p},value:r}),H.a.createElement(Q.Content,{tagName:"p",className:"vk_staff_text_profileText",style:{color:b},value:a})),l?H.a.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(f)},H.a.createElement("img",{className:"vk_staff_photo_image",src:l,alt:c?Y(c,"vk-blocks"):""})):"")),y}}])&&$(n.prototype,o),r&&$(n,r),t}(H.a.Component),ee=wp.i18n.__,te=wp.blocks.registerBlockType,ne=wp.components,oe=ne.TextControl,re=ne.PanelBody,ae=ne.BaseControl,le=ne.SelectControl,ce=wp.element.Fragment,ie=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,se=ie.InspectorControls,ue=ie.ColorPalette,me=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("path",{d:"M528,34H48C21.5,34,0,55.5,0,82v352c0,26.5,21.5,48,48,48h480c26.5,0,48-21.5,48-48V82C576,55.5,554.5,34,528,34z M528,434 H48V82h480V434z"}),H.a.createElement("path",{d:"M407.6,241.9c30.9,0,55.9-25.1,55.9-55.9S438.5,130,407.6,130s-55.9,25.1-55.9,55.9S376.8,241.9,407.6,241.9z"}),H.a.createElement("path",{d:"M329.3,353.8h156.6c10.8,0,19.6-7.5,19.6-16.8v-16.8c0-27.8-26.3-50.3-58.7-50.3c-9.4,0-16.3,7-39.2,7 c-23.5,0-29.2-7-39.2-7c-32.4,0-58.7,22.6-58.7,50.3V337C309.7,346.2,318.5,353.8,329.3,353.8z"}),H.a.createElement("path",{d:"M96.2,395h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2v14.4C89,391.7,92.3,395,96.2,395 z"}),H.a.createElement("path",{d:"M96.2,339.2h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2V332 C89,336,92.3,339.2,96.2,339.2z"}),H.a.createElement("path",{d:"M96.2,283.4h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2v14.4 C89,280.2,92.3,283.4,96.2,283.4z"}),H.a.createElement("path",{d:"M92.9,219.1h166.3c2.1,0,3.9-1.8,3.9-3.9v-7.8c0-2.1-1.8-3.9-3.9-3.9H92.9c-2.1,0-3.9,1.8-3.9,3.9v7.8 C89,217.4,90.8,219.1,92.9,219.1z"}),H.a.createElement("path",{d:"M99.7,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7H99.7c-5.9,0-10.7,4.8-10.7,10.7v21.4 C89,172.8,93.8,177.6,99.7,177.6z"}),H.a.createElement("path",{d:"M157,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7H157c-5.9,0-10.7,4.8-10.7,10.7v21.4 C146.3,172.8,151.1,177.6,157,177.6z"}),H.a.createElement("path",{d:"M214.2,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7h-22.4c-5.9,0-10.7,4.8-10.7,10.7v21.4 C203.5,172.8,208.4,177.6,214.2,177.6z"}),H.a.createElement("path",{d:"M271.5,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7h-22.4c-5.9,0-10.7,4.8-10.7,10.7v21.4 C260.8,172.8,265.6,177.6,271.5,177.6z"}));te("vk-blocks/staff",{title:ee("Staff","vk-blocks"),icon:me,category:"vk-blocks-cat",attributes:{vk_staff_text_name:{type:"string",source:"html",selector:"h3"},vk_staff_text_caption:{type:"string",source:"html",selector:"p.vk_staff_text_caption"},vk_staff_text_role:{type:"string",source:"html",selector:"p.vk_staff_text_role"},vk_staff_text_profileTitle:{type:"string",source:"html",selector:"h4"},vk_staff_text_profileText:{type:"string",source:"html",selector:"p.vk_staff_text_profileText"},vk_staff_photo_image:{type:"string",default:""},vk_staff_photo_image_alt:{type:"string",default:"Profile Picture"},vk_staff_layout:{type:"string",default:"default"},vk_staff_nameColor:{type:"string",default:"inherit"},vk_staff_captionColor:{type:"string",default:"inherit"},vk_staff_positionColor:{type:"string",default:"inherit"},vk_staff_profileTitleColor:{type:"string",default:"inherit"},vk_staff_profileTextColor:{type:"string",default:"inherit"},vk_staff_photoBorder:{type:"string",default:"default"}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.vk_staff_photo_image_alt,a=t.vk_staff_layout,l=t.vk_staff_nameColor,c=t.vk_staff_captionColor,i=t.vk_staff_positionColor,s=t.vk_staff_profileTitleColor,u=t.vk_staff_profileTextColor,m=t.vk_staff_photoBorder;return H.a.createElement(ce,null,H.a.createElement(se,null,H.a.createElement(re,{title:ee("Layout","vk-blocks")},H.a.createElement(le,{value:a,onChange:function(e){return n({vk_staff_layout:e})},options:[{value:"default",label:ee("Default","vk-blocks")},{value:"imageLeft",label:ee("Image left","vk-blocks")}]})),H.a.createElement(re,{title:ee("Image border","vk-blocks")},H.a.createElement(le,{value:m,onChange:function(e){return n({vk_staff_photoBorder:e})},options:[{value:"default",label:ee("Default","vk-blocks")},{value:"none",label:ee("None","vk-blocks")}]})),H.a.createElement(re,{title:ee("Alt text","vk-blocks")},H.a.createElement(ae,{help:ee("Set the alt text for profile image","vk-blocks")},H.a.createElement(oe,{value:r,onChange:function(e){return n({vk_staff_photo_image_alt:e})}}))),H.a.createElement(re,{title:ee("Color","vk-blocks")},H.a.createElement(ae,{label:ee("Staff name","vk-blocks")},H.a.createElement(ue,{value:l,onChange:function(e){return n({vk_staff_nameColor:e})}})),H.a.createElement(ae,{label:ee("Name caption","vk-blocks")},H.a.createElement(ue,{value:c,onChange:function(e){return n({vk_staff_captionColor:e})}})),H.a.createElement(ae,{label:ee("Role position","vk-blocks")},H.a.createElement(ue,{value:i,onChange:function(e){return n({vk_staff_positionColor:e})}})),H.a.createElement(ae,{label:ee("Profile title","vk-blocks")},H.a.createElement(ue,{value:s,onChange:function(e){return n({vk_staff_profileTitleColor:e})}})),H.a.createElement(ae,{label:ee("Profile text","vk-blocks")},H.a.createElement(ue,{value:u,onChange:function(e){return n({vk_staff_profileTextColor:e})}})))),H.a.createElement(Z,{attributes:t,setAttributes:n,className:o,for_:"edit"}))},save:function(e){var t=e.attributes;return H.a.createElement(Z,{attributes:t,setAttributes:"",className:"",for_:"save"})}});var pe=n(1),be=n.n(pe);function fe(e){return(fe="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 ke(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ve(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function de(e,t){return!t||"object"!==fe(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}function ye(e){return(ye=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function _e(e,t){return(_e=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var ge=function(e){function t(){return ke(this,t),de(this,ye(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&_e(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.anchor,n=e.unit,o=e.pc,r=e.tablet,a=e.mobile,l=this.props.className;return H.a.createElement("div",{id:t,className:be()("vk_spacer",l)},H.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:o+n}}),H.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:r+n}}),H.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:a+n}}))}}])&&ve(n.prototype,o),r&&ve(n,r),t}(H.a.Component);function he(e){return(he="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 Ee(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ce(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function we(e,t,n){return t&&Ce(e.prototype,t),n&&Ce(e,n),e}function Ne(e,t){return!t||"object"!==he(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}function xe(e){return(xe=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Se(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,writable:!0,configurable:!0}}),t&&Te(e,t)}function Te(e,t){return(Te=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Be=function(e){function t(){return Ee(this,t),Ne(this,xe(t).apply(this,arguments))}return Se(t,e),we(t,[{key:"render",value:function(){var e=this.props.attributes,t=e.unit,n=e.pc,o=e.tablet,r=e.mobile;return H.a.createElement("div",{className:"vk_spacer"},H.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:n+t}}),H.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:o+t}}),H.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:r+t}}))}}]),t}(H.a.Component),Oe=function(e){function t(){return Ee(this,t),Ne(this,xe(t).apply(this,arguments))}return Se(t,e),we(t,[{key:"render",value:function(){var e=this.props.attributes,t=e.unit,n=e.pc,o=e.tablet,r=e.mobile,a=this.props.className;return H.a.createElement("div",{className:"".concat(a," vk_spacer")},H.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:n+t}}),H.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:o+t}}),H.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:r+t}}))}}]),t}(H.a.Component),Ae={unit:{type:"string",default:"px"},pc:{type:"number",default:50},tablet:{type:"number",default:10},mobile:{type:"number",default:10}},Ie=(wp.editor.RichText,[{attributes:Ae,save:function(e){var t=e.attributes;return H.a.createElement(Oe,{attributes:t})}},{attributes:Ae,save:function(e){var t=e.attributes;return H.a.createElement(Be,{attributes:t})}}]),Re=wp.i18n.__,Pe=wp.blocks.registerBlockType,je=wp.components,ze=je.RangeControl,Fe=je.PanelBody,Me=je.BaseControl,Le=je.SelectControl,Ue=wp.element.Fragment,He=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).InspectorControls,De=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("rect",{x:"108.8",y:"18.7",width:"358.5",height:"40"}),H.a.createElement("rect",{x:"108.8",y:"453.3",width:"358.5",height:"40"}),H.a.createElement("polygon",{points:"171.4,253.2 131.4,253.2 131.4,412.6 290.8,412.6 290.8,372.6 199.7,372.6 404.6,167.7 404.6,258.8 444.6,258.8 444.6,99.4 285.2,99.4 285.2,139.4 376.3,139.4 171.4,344.3 \t"})));Pe("vk-blocks/spacer",{title:Re("Responsive Spacer","vk-blocks"),icon:De,category:"vk-blocks-cat-layout",attributes:{anchor:{type:"string",default:null},unit:{type:"string",default:"px"},pc:{type:"number",default:40},tablet:{type:"number",default:30},mobile:{type:"number",default:20}},supports:{className:!1,anchor:!0},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=(t.anchor,t.unit),a=t.pc,l=t.tablet,c=t.mobile;return H.a.createElement(Ue,null,H.a.createElement(He,null,H.a.createElement(Fe,null,H.a.createElement(Le,{label:Re("Unit Type","vk-blocks"),value:r,onChange:function(e){return n({unit:e})},options:[{value:"px",label:Re("px","vk-blocks")},{value:"em",label:Re("em","vk-blocks")},{value:"rem",label:Re("rem","vk-blocks")},{value:"vw",label:Re("vw","vk-blocks")}]}),H.a.createElement(Me,{label:Re("Height for each device.","vk-blocks")},H.a.createElement(ze,{label:Re("PC","vk-blocks"),value:a,onChange:function(e){return n({pc:e})},step:.1}),H.a.createElement(ze,{label:Re("Tablet","vk-blocks"),value:l,onChange:function(e){return n({tablet:e})},step:.1}),H.a.createElement(ze,{label:Re("Mobile","vk-blocks"),value:c,onChange:function(e){return n({mobile:e})},step:.1})))),H.a.createElement(ge,{attributes:t,className:o}))},save:function(e){var t=e.attributes;return H.a.createElement(ge,{attributes:t})},deprecated:Ie});function Ve(e){return(Ve="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 $e(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function qe(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Je(e,t){return!t||"object"!==Ve(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}function We(e){return(We=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ye(e,t){return(Ye=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Ge=window.lodash.range,Qe=wp.i18n,Ke=Qe.__,Xe=Qe.sprintf,Ze=wp.element.Component,et=wp.components.Toolbar,tt=function(e){function t(){return $e(this,t),Je(this,We(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Ye(e,t)}(t,e),n=t,(o=[{key:"createLevelControl",value:function(e,t,n){return{icon:"heading",title:Xe(Ke("Heading %d"),e),isActive:e===t,onClick:function(){return n(e)},subscript:String(e)}}},{key:"render",value:function(){var e=this,t=this.props,n=t.minLevel,o=t.maxLevel,r=t.selectedLevel,a=t.onChange;return H.a.createElement(et,{controls:Ge(n,o).map((function(t){return e.createLevelControl(t,r,a)}))})}}])&&qe(n.prototype,o),r&&qe(n,r),t}(Ze);function nt(e){return(nt="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 ot(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function rt(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function at(e,t){return!t||"object"!==nt(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}function lt(e){return(lt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ct(e,t){return(ct=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var it=wp.editor.RichText,st=wp.i18n.__,ut=function(e){function t(){return ot(this,t),at(this,lt(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&ct(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e,t,n=this.props.attributes,o=n.level,r=n.align,a=n.title,l=n.titleColor,c=n.titleSize,i=n.subText,s=n.subTextFlag,u=n.subTextColor,m=n.subTextSize,p=n.titleStyle,b=n.titleMarginBottom,f=n.outerMarginBottom,k=this.props.setAttributes,v=this.props.for_,d="vk_heading vk_heading-style-".concat(p),y="h"+o;return null!=f&&(e={marginBottom:f+"rem"}),t=null!=b?{color:l,fontSize:c+"rem",marginBottom:b+"rem",textAlign:r}:{color:l,fontSize:c+"rem",textAlign:r},"edit"===v?H.a.createElement("div",{className:d,style:e},H.a.createElement(it,{tagName:y,value:a,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(p),placeholder:st("Input title…","vk-blocks")}),function(){if("on"===s)return H.a.createElement(it,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:m+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p),placeholder:st("Input sub text…","vk-blocks")})}()):"save"===v?H.a.createElement("div",{className:d,style:e},H.a.createElement(it.Content,{tagName:y,value:a,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(p),placeholder:st("Input title…","vk-blocks")}),function(){if("on"===s)return H.a.createElement(it.Content,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:m+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p),placeholder:st("Input sub text…","vk-blocks")})}()):void 0}}])&&rt(n.prototype,o),r&&rt(n,r),t}(H.a.Component);function mt(e){return(mt="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 pt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function bt(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function ft(e,t){return!t||"object"!==mt(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}function kt(e){return(kt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function vt(e,t){return(vt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function dt(e){throw new Error('"'+e+'" is read-only')}var yt=wp.element.Fragment,_t=wp.editor.RichText,gt=wp.i18n.__;var ht=[{attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number",default:null},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2},titleMarginBottom:{type:"number",default:1},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.2}},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(Et,{attributes:t,className:n,for_:"save"})}},{attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number"},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2.6},titleMarginBottom:{type:"number"},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.8}},supports:{className:!1,anchor:!0},save:function(e){var t=e.attributes,n=t.level,o=t.align,r=t.title,a=t.titleColor,l=t.titleSize,c=t.subText,i=t.subTextFlag,s=t.subTextColor,u=t.subTextSize,m=t.titleStyle,p=t.titleMarginBottom,b=t.outerMarginBottom,f="h"+n;return H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(m),style:{marginBottom:b+"rem"}},H.a.createElement(_t.Content,{tagName:f,value:r,style:{color:a,fontSize:l+"rem",textAlign:o,marginBottom:p+"rem"},className:"vk_heading_title vk_heading_title-style-".concat(m)}),function(){if("on"===i)return H.a.createElement(_t.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m)})}())}},{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h1.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,b=t.urlOpenType3,f=t.icon1,k=t.icon2,v=t.icon3,d=t.color1,y=t.color2,_=t.color3,g=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3;return H.a.createElement("article",{className:"vk_prBlocks row"},H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:i,target:m?"_blank":"_self",className:"vk_prBlocks_item_link"},C?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+C+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:C,alt:""})):(d||(dt("color1"),d="#0693e3"),"0"===g?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:d,border:"1px solid ".concat(d)}},H.a.createElement("i",{className:"".concat(f," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+d}},H.a.createElement("i",{className:"".concat(f," vk_prBlocks_item_icon"),style:{color:d}}))),H.a.createElement(_t.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),H.a.createElement(_t.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",value:a}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:s,target:p?"_blank":"_self",className:"vk_prBlocks_item_link"},w?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+w+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:w,alt:""})):(y||(dt("color2"),y="#0693e3"),"0"===h?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:y,border:"1px solid ".concat(y)}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+y}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:y}}))),H.a.createElement(_t.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),H.a.createElement(_t.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",value:l}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:u,target:b?"_blank":"_self",className:"vk_prBlocks_item_link"},N?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+N+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:N,alt:""})):(_||(dt("color3"),_="#0693e3"),"0"===E?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+_}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:_}}))),H.a.createElement(_t.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),H.a.createElement(_t.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",value:c}))))}},{attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number",default:null},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2.6},titleMarginBottom:{type:"number",default:null},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.8}},supports:{className:!1,anchor:!0},save:function(e){var t=e.attributes,n=t.level,o=t.align,r=t.title,a=t.titleColor,l=t.titleSize,c=t.subText,i=t.subTextFlag,s=t.subTextColor,u=t.subTextSize,m=t.titleStyle,p=t.titleMarginBottom,b=t.outerMarginBottom,f="h"+n;return H.a.createElement(yt,null,null==b?H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(m)},H.a.createElement(_t.Content,{tagName:f,value:r,style:{color:a,fontSize:l+"rem",textAlign:o},className:"vk_heading_title vk_heading_title-style-".concat(m)}),function(){if("on"===i)return H.a.createElement(_t.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m)})}()):H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(m),style:{marginBottom:b+"rem"}},H.a.createElement(_t.Content,{tagName:f,value:r,style:{color:a,fontSize:l+"rem",textAlign:o,marginBottom:p+"rem"},className:"vk_heading_title vk_heading_title-style-".concat(m)}),function(){if("on"===i)return H.a.createElement(_t.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m)})}()))}}],Et=function(e){function t(){return pt(this,t),ft(this,kt(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&vt(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e,t,n=this.props.attributes,o=n.level,r=n.align,a=n.title,l=n.titleColor,c=n.titleSize,i=n.subText,s=n.subTextFlag,u=n.subTextColor,m=n.subTextSize,p=n.titleStyle,b=n.titleMarginBottom,f=n.outerMarginBottom,k=this.props.setAttributes,v=this.props.className,d=(this.props.for_,be()(v,"vk_heading vk_heading-style-".concat(p))),y="h"+o;return null!=f&&(e={marginBottom:f+"rem"}),t=null!=b?{color:l,fontSize:c+"rem",marginBottom:b+"rem",textAlign:r}:{color:l,fontSize:c+"rem",textAlign:r},H.a.createElement("div",{className:d,style:e},H.a.createElement(_t.Content,{tagName:y,value:a,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(p),placeholder:gt("Input title…","vk-blocks")}),function(){if("on"===s)return H.a.createElement(_t.Content,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:m+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p),placeholder:gt("Input sub text…","vk-blocks")})}())}}])&&bt(n.prototype,o),r&&bt(n,r),t}(H.a.Component),Ct=wp.i18n.__,wt=wp.blocks.registerBlockType,Nt=wp.components,xt=Nt.RangeControl,St=Nt.PanelBody,Tt=Nt.RadioControl,Bt=Nt.SelectControl,Ot=wp.element.Fragment,At=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,It=At.InspectorControls,Rt=At.ColorPalette,Pt=At.BlockControls,jt=At.AlignmentToolbar,zt=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("g",null,H.a.createElement("path",{d:"M242.1,366.7l0-281.4l-212.6,0l0-77.1l516.6,0v77.1l-213.2,0l0,281.4H242.1z"})),H.a.createElement("g",null,H.a.createElement("path",{d:"M33,467.3l30.8-1.9c0.7,5,2,8.8,4.1,11.4c3.3,4.2,8.1,6.4,14.3,6.4c4.6,0,8.2-1.1,10.7-3.3c2.5-2.2,3.8-4.7,3.8-7.5 c0-2.7-1.2-5.1-3.6-7.3c-2.4-2.1-7.9-4.2-16.6-6.1c-14.2-3.2-24.3-7.4-30.4-12.7c-6.1-5.3-9.1-12-9.1-20.2 c0-5.4,1.6-10.5,4.7-15.3c3.1-4.8,7.8-8.6,14.1-11.3c6.3-2.7,14.8-4.1,25.8-4.1c13.4,0,23.6,2.5,30.6,7.5c7,5,11.2,12.9,12.5,23.8 l-30.5,1.8c-0.8-4.7-2.5-8.1-5.1-10.3c-2.6-2.1-6.2-3.2-10.8-3.2c-3.8,0-6.6,0.8-8.5,2.4c-1.9,1.6-2.9,3.5-2.9,5.8 c0,1.7,0.8,3.2,2.4,4.5c1.5,1.4,5.1,2.7,10.9,3.9c14.1,3,24.3,6.1,30.4,9.3c6.1,3.1,10.6,7,13.4,11.6c2.8,4.6,4.2,9.8,4.2,15.5 c0,6.7-1.9,12.9-5.6,18.6c-3.7,5.7-8.9,10-15.6,12.9c-6.7,2.9-15.1,4.4-25.2,4.4c-17.8,0-30.2-3.4-37-10.3 C37.8,486.6,33.9,477.8,33,467.3z"}),H.a.createElement("path",{d:"M215,501.9h-27.2v-12.3c-4,5-8.1,8.6-12.3,10.8c-4.1,2.1-9.2,3.2-15.2,3.2c-8,0-14.3-2.4-18.8-7.2 c-4.5-4.8-6.8-12.2-6.8-22.1V426H164v41.7c0,4.8,0.9,8.1,2.6,10.1c1.8,2,4.2,3,7.4,3c3.5,0,6.3-1.3,8.5-4 c2.2-2.7,3.3-7.5,3.3-14.4V426H215V501.9z"}),H.a.createElement("path",{d:"M225.5,397.2h29.4v36.3c2.9-3,6.2-5.3,9.9-6.9c3.7-1.5,7.8-2.3,12.3-2.3c9.2,0,16.9,3.3,22.9,10 c6.1,6.6,9.1,16.2,9.1,28.6c0,8.3-1.4,15.6-4.1,21.9c-2.8,6.3-6.6,11-11.5,14.1c-4.9,3.1-10.3,4.7-16.3,4.7c-5.1,0-9.8-1.1-14-3.3 c-3.2-1.7-6.7-4.9-10.4-9.6v11.2h-27.2V397.2z M254.6,463.8c0,6.5,1.2,11.3,3.7,14.2c2.5,2.9,5.6,4.4,9.3,4.4 c3.5,0,6.4-1.4,8.8-4.3c2.4-2.9,3.5-7.7,3.5-14.5c0-6-1.2-10.4-3.5-13.2c-2.3-2.8-5.1-4.2-8.4-4.2c-4,0-7.2,1.5-9.7,4.4 C255.9,453.4,254.6,457.8,254.6,463.8z"}),H.a.createElement("path",{d:"M304.4,397.2h98.4V423h-33v78.9h-32.4V423h-33V397.2z"}),H.a.createElement("path",{d:"M395.8,426h34.5l12,21.2l14-21.2h32.1l-25.9,36.2l27.7,39.7h-33.9l-14-24.4l-16.5,24.4h-31.5l27.6-39.7L395.8,426z"}),H.a.createElement("path",{d:"M530.6,397.2V426h16v21.3h-16v26.9c0,3.2,0.3,5.4,0.9,6.4c1,1.6,2.6,2.4,5,2.4c2.1,0,5.1-0.6,9-1.9l2.1,20.1 c-7.2,1.6-13.9,2.4-20.1,2.4c-7.2,0-12.6-0.9-16-2.8c-3.4-1.9-6-4.7-7.6-8.5s-2.5-9.9-2.5-18.4v-26.7h-10.7V426h10.7v-13.9 L530.6,397.2z"}))));wt("vk-blocks/heading",{title:Ct("Heading","vk-blocks"),icon:zt,category:"vk-blocks-cat",attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number",default:null},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2},titleMarginBottom:{type:"number",default:1},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.2}},supports:{className:!0,customClassName:!0,anchor:!0},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.level,a=t.align,l=(t.title,t.titleColor),c=t.titleSize,i=(t.subText,t.subTextFlag),s=t.subTextColor,u=t.subTextSize,m=t.titleStyle,p=t.titleMarginBottom,b=t.outerMarginBottom,f=function(e){switch(n({level:e}),e){case 1:n({titleSize:3.6});break;case 2:n({titleSize:2.8});break;case 3:n({titleSize:2.2});break;case 4:n({titleSize:2});break;case 5:n({titleSize:1.8});break;case 6:n({titleSize:1.6})}};return H.a.createElement(Ot,null,H.a.createElement(Pt,null,H.a.createElement(tt,{minLevel:2,maxLevel:5,selectedLevel:r,onChange:f})),H.a.createElement(It,null,H.a.createElement(St,{title:Ct("Style Settings","vk-blocks")},H.a.createElement(Bt,{label:Ct("Heading style","vk-blocks"),value:m,onChange:function(e){return n({titleStyle:e})},options:[{label:Ct("Default","vk-blocks"),value:"default"},{label:Ct("Plain","vk-blocks"),value:"plain"}]}),H.a.createElement("label",null,Ct("Margin bottom size (rem)","vk-blocks")),H.a.createElement(xt,{value:b,onChange:function(e){n({outerMarginBottom:e})},min:-1,max:8,step:.1})),H.a.createElement(St,{title:Ct("Heading Settings","vk-blocks")},H.a.createElement("label",null,Ct("Level","vk-blocks")),H.a.createElement(tt,{minLevel:1,maxLevel:7,selectedLevel:r,onChange:f}),H.a.createElement("p",null,Ct("Text Alignment")),H.a.createElement(jt,{value:a,onChange:function(e){n({align:e})}}),H.a.createElement("label",null,Ct("Text size (rem)","vk-blocks")),H.a.createElement(xt,{value:c,onChange:function(e){n({titleSize:e})},min:.5,max:4,step:.1}),H.a.createElement("label",null,Ct("Heading margin bottom size (rem)","vk-blocks")),H.a.createElement(xt,{value:p,onChange:function(e){n({titleMarginBottom:e})},min:-1,max:3,step:.1}),H.a.createElement(Rt,{value:l,onChange:function(e){return n({titleColor:e})}})),H.a.createElement(St,{title:Ct("Sub Text Settings","vk-blocks")},H.a.createElement(Tt,{label:Ct("Position","vk-blocks"),selected:i,options:[{label:Ct("Display","vk-blocks"),value:"on"},{label:Ct("Hide","vk-blocks"),value:"off"}],onChange:function(e){return n({subTextFlag:e})}}),H.a.createElement("label",null,Ct("Text size (rem)","vk-blocks")),H.a.createElement(xt,{value:u,onChange:function(e){n({subTextSize:e})},min:.5,max:3,step:.1}),H.a.createElement(Rt,{value:s,onChange:function(e){return n({subTextColor:e})}}))),H.a.createElement("div",{className:o},H.a.createElement(ut,{attributes:t,setAttributes:n,for_:"edit"})))},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement("div",{className:n},H.a.createElement(ut,{attributes:t,for_:"save"}))},deprecated:ht});var Ft=wp.editor.RichText,Mt=[{attributes:{style:{type:"string",default:"info"},content:{type:"string",source:"html",selector:"p"}},save:function(e){var t=e.attributes,n=t.style,o=t.content;return H.a.createElement("div",{className:"alert alert-".concat(n)},H.a.createElement(Ft.Content,{tagName:"p",value:o}))}}],Lt=wp.i18n.__,Ut=wp.blocks.registerBlockType,Ht=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).RichText;Ut("vk-blocks/alert",{title:Lt("Alert","vk-blocks"),icon:"info",category:"vk-blocks-cat",attributes:{style:{type:"string",default:"info"},content:{type:"string",source:"html",selector:"p"}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.style,a=t.content;return React.createElement("div",{className:"".concat(o," alert alert-").concat(r)},React.createElement("select",{onChange:function(e){n({style:e.target.value})}},React.createElement("option",{value:"success",selected:"success"===r},"Success"),React.createElement("option",{value:"info",selected:"info"===r},"Info"),React.createElement("option",{value:"warning",selected:"warning"===r},"Warning"),React.createElement("option",{value:"danger",selected:"danger"===r},"Danger")),React.createElement(Ht,{tagName:"p",onChange:function(e){n({content:e})},value:a}))},save:function(e){var t=e.attributes,n=e.className,o=t.style,r=t.content;return React.createElement("div",{className:"".concat(n," alert alert-").concat(o)},React.createElement(Ht.Content,{tagName:"p",value:r}))},deprecated:Mt});n(4);function Dt(e){return(Dt="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 Vt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $t(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function qt(e,t){return!t||"object"!==Dt(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}function Jt(e){return(Jt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Wt(e,t){return(Wt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Yt=function(e){function t(){return Vt(this,t),qt(this,Jt(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Wt(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,m="",p={},b="",f="";return p=null,m="".concat(m="vk_button_link","0"==n||null==n||"1"==n?" btn":" vk_button_link-type-text"),"0"==n||null===n?"undefined"==e||null==e||null===e?(m="".concat(m," btn-").concat(t),p=null):p={backgroundColor:e,border:"1px solid ".concat(e),color:"#fff"}:"1"===n?"undefined"==e||null==e||null===e?(m="".concat(m," btn-outline-").concat(t),p=null):p={backgroundColor:"transparent",border:"1px solid "+e,color:e}:"2"===n&&("undefined"==e||null==e||null===e?(m="".concat(m," btn-outline-").concat(t),p=null):p={color:e}),m="".concat(m," btn-").concat(r),"block"===o&&(m="".concat(m," btn-block")),c&&(b=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(f=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",style:p,className:m,role:"button","aria-pressed":!0,target:l?"_blank":null,rel:"noopener noreferrer"},b,s,f,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&$t(n.prototype,o),r&&$t(n,r),t}(H.a.Component);function Gt(e){return(Gt="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 Qt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Kt(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Xt(e,t){return!t||"object"!==Gt(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}function Zt(e){return(Zt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function en(e,t){return(en=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var tn=function(e){function t(){return Qt(this,t),Xt(this,Zt(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&en(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=(this.props.lbsubCaption,""),m={},p="",b="";return u="btn vk_button_link",e?(u="".concat(u," btn-primary btn-").concat(r),"0"===n?m={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(m={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(u="".concat(u," btn-").concat(r," btn-").concat(t),m=null):"1"===n&&(u="".concat(u," btn-").concat(r," btn-outline-").concat(t),m=null)),"block"===o&&(u="".concat(u," btn-block")),c&&(p=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(b=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,className:u,role:"button","aria-pressed":!0,style:m,target:l?"_blank":null},p,s,b)}}])&&Kt(n.prototype,o),r&&Kt(n,r),t}(H.a.Component);function nn(e){return(nn="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 on(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function rn(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function an(e,t){return!t||"object"!==nn(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}function ln(e){return(ln=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function cn(e,t){return(cn=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var sn=function(e){function t(){return on(this,t),an(this,ln(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&cn(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=(this.props.lbsubCaption,""),m={},p="",b="";return u="btn vk_button_link",e?(u="".concat(u," btn-primary btn-").concat(r),"0"===n?m={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(m={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(u="".concat(u," btn-").concat(r," btn-").concat(t),m=null):"1"===n&&(u="".concat(u," btn-").concat(r," btn-outline-").concat(t),m=null)),"block"===o&&(u="".concat(u," btn-block")),c&&(p=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(b=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",className:u,role:"button","aria-pressed":!0,style:m,target:l?"_blank":null},p,s,b)}}])&&rn(n.prototype,o),r&&rn(n,r),t}(H.a.Component);function un(e){return(un="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 mn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function pn(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function bn(e,t){return!t||"object"!==un(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}function fn(e){return(fn=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function kn(e,t){return(kn=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var vn=function(e){function t(){return mn(this,t),bn(this,fn(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&kn(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,m="",p={},b="",f="";return m="btn vk_button_link",e?(m="".concat(m," btn-primary btn-").concat(r),"0"===n?p={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(p={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(m="".concat(m," btn-").concat(r," btn-").concat(t),p=null):"1"===n&&(m="".concat(m," btn-").concat(r," btn-outline-").concat(t),p=null)),"block"===o&&(m="".concat(m," btn-block")),c&&(b=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(f=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",className:m,role:"button","aria-pressed":!0,style:p,target:l?"_blank":null,rel:"noopener noreferrer"},b,s,f,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&pn(n.prototype,o),r&&pn(n,r),t}(H.a.Component);function dn(e){return(dn="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 yn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _n(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function gn(e,t){return!t||"object"!==dn(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}function hn(e){return(hn=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function En(e,t){return(En=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Cn=function(e){function t(){return yn(this,t),gn(this,hn(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&En(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,m="",p={},b="",f="";return m="btn vk_button_link",e?(m="".concat(m," btn-primary btn-").concat(r),"0"===n?p={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(p={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(m="".concat(m," btn-").concat(r," btn-").concat(t),p=null):"1"===n&&(m="".concat(m," btn-").concat(r," btn-outline-").concat(t),p=null)),"block"===o&&(m="".concat(m," btn-block")),c&&(b=H.a.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(f=H.a.createElement("i",{className:"".concat(i," vk_button_link_after")})),H.a.createElement("a",{href:a,id:"vk_button_link",className:m,role:"button","aria-pressed":!0,style:p,target:l?"_blank":null},b,s,f,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&_n(n.prototype,o),r&&_n(n,r),t}(H.a.Component),wn=wp.editor.RichText,Nn=[{attributes:{content:{source:"html",selector:"span"},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.content,o=t.buttonUrl,r=t.buttonTarget,a=t.buttonSize,l=t.buttonType,c=t.buttonColor,i=t.buttonColorCustom,s=t.buttonAlign,u=t.fontAwesomeIconBefore,m=t.fontAwesomeIconAfter,p="";return i?p="vk_button vk_button-color-custom vk_button-align-".concat(s):i||(p="vk_button vk_button-align-".concat(s)),H.a.createElement("div",{className:p},H.a.createElement(tn,{lbColorCustom:i,lbColor:c,lbType:l,lbAlign:s,lbSize:a,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:m,lbRichtext:H.a.createElement(wn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.content,o=t.buttonUrl,r=t.buttonTarget,a=t.buttonSize,l=t.buttonType,c=t.buttonColor,i=t.buttonColorCustom,s=t.buttonAlign,u=t.fontAwesomeIconBefore,m=t.fontAwesomeIconAfter,p="";return i?p="vk_button vk_button-color-custom vk_button-align-".concat(s):i||(p="vk_button vk_button-align-".concat(s)),H.a.createElement("div",{className:p},H.a.createElement(sn,{lbColorCustom:i,lbColor:c,lbType:l,lbAlign:s,lbSize:a,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:m,lbRichtext:H.a.createElement(wn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.subCaption,r=t.buttonUrl,a=t.buttonTarget,l=t.buttonSize,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonAlign,m=t.fontAwesomeIconBefore,p=t.fontAwesomeIconAfter,b="";return s?b="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(b="vk_button vk_button-align-".concat(u)),H.a.createElement("div",{className:b},H.a.createElement(vn,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:l,lbUrl:r,lbTarget:a,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:p,lbsubCaption:o,lbRichtext:H.a.createElement(wn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.subCaption,r=t.buttonUrl,a=t.buttonTarget,l=t.buttonSize,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonAlign,m=t.fontAwesomeIconBefore,p=t.fontAwesomeIconAfter,b="";return s?b="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(b="vk_button vk_button-align-".concat(u)),H.a.createElement("div",{className:b},H.a.createElement(Cn,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:l,lbUrl:r,lbTarget:a,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:p,lbsubCaption:o,lbRichtext:H.a.createElement(wn.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=e.className,o=t.content,r=t.subCaption,a=t.buttonUrl,l=t.buttonTarget,c=t.buttonSize,i=t.buttonType,s=t.buttonColor,u=t.buttonColorCustom,m=t.buttonAlign,p=t.fontAwesomeIconBefore,b=t.fontAwesomeIconAfter,f="";return u?f="vk_button vk_button-color-custom vk_button-align-".concat(m):u||(f="vk_button vk_button-align-".concat(m)),n&&(f=n+" "+f),H.a.createElement("div",{className:f},H.a.createElement(Yt,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:m,lbSize:c,lbUrl:a,lbTarget:l,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:b,lbsubCaption:r,lbRichtext:H.a.createElement(wn.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))}}],xn=wp.i18n.__,Sn=wp.blocks.registerBlockType,Tn=wp.components,Bn=Tn.RadioControl,On=Tn.PanelBody,An=Tn.BaseControl,In=Tn.CheckboxControl,Rn=Tn.TextControl,Pn=Tn.Dashicon,jn=Tn.IconButton,zn=Tn.ButtonGroup,Fn=Tn.Button,Mn=wp.element.Fragment,Ln=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Un=Ln.RichText,Hn=Ln.InspectorControls,Dn=Ln.ColorPalette,Vn=Ln.URLInput,$n=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("path",{d:"M506,185v142H70V185H506 M526.4,137H49.6C34.4,137,22,149.4,22,164.6v182.8c0,15.2,12.4,27.6,27.6,27.6h476.8 c15.2,0,27.6-12.4,27.6-27.6V164.6C554,149.4,541.6,137,526.4,137L526.4,137z"})),H.a.createElement("g",null,H.a.createElement("path",{d:"M83.8,206.9h55.9c9.3,0,16.5,2.3,21.5,6.9c5,4.6,7.5,10.3,7.5,17.1c0,5.7-1.8,10.6-5.3,14.7c-2.4,2.7-5.8,4.9-10.4,6.5 c6.9,1.7,12.1,4.5,15.3,8.6c3.3,4.1,4.9,9.2,4.9,15.3c0,5-1.2,9.5-3.5,13.5c-2.3,4-5.5,7.2-9.6,9.5c-2.5,1.5-6.3,2.5-11.3,3.2 c-6.7,0.9-11.2,1.3-13.4,1.3H83.8V206.9z M113.9,244.8h13c4.7,0,7.9-0.8,9.7-2.4c1.8-1.6,2.7-3.9,2.7-7c0-2.8-0.9-5-2.7-6.6 c-1.8-1.6-5-2.4-9.5-2.4h-13.2V244.8z M113.9,282.8h15.2c5.1,0,8.8-0.9,10.9-2.7s3.2-4.3,3.2-7.4c0-2.9-1-5.2-3.1-6.9 c-2.1-1.7-5.7-2.6-11-2.6h-15.2V282.8z"}),H.a.createElement("path",{d:"M245.9,303.5h-25.1v-11.3c-3.7,4.7-7.5,8-11.3,10c-3.8,2-8.5,3-14,3c-7.4,0-13.2-2.2-17.4-6.6c-4.2-4.4-6.3-11.2-6.3-20.4 v-44.6h27V272c0,4.4,0.8,7.5,2.4,9.4c1.6,1.8,3.9,2.8,6.9,2.8c3.2,0,5.8-1.2,7.9-3.7s3.1-6.9,3.1-13.3v-33.7h26.8V303.5z"}),H.a.createElement("path",{d:"M282.4,206.9v26.6h14.8v19.7h-14.8V278c0,3,0.3,5,0.9,5.9c0.9,1.5,2.4,2.2,4.6,2.2c2,0,4.7-0.6,8.3-1.7l2,18.5 c-6.6,1.5-12.8,2.2-18.6,2.2c-6.7,0-11.6-0.9-14.8-2.6c-3.2-1.7-5.5-4.3-7-7.8c-1.5-3.5-2.3-9.1-2.3-17v-24.6h-9.9v-19.7h9.9v-12.9 L282.4,206.9z"}),H.a.createElement("path",{d:"M330.2,206.9v26.6H345v19.7h-14.8V278c0,3,0.3,5,0.9,5.9c0.9,1.5,2.4,2.2,4.6,2.2c2,0,4.7-0.6,8.3-1.7l2,18.5 c-6.6,1.5-12.8,2.2-18.6,2.2c-6.7,0-11.6-0.9-14.8-2.6c-3.2-1.7-5.5-4.3-7-7.8c-1.5-3.5-2.3-9.1-2.3-17v-24.6h-9.9v-19.7h9.9v-12.9 L330.2,206.9z"}),H.a.createElement("path",{d:"M339.6,268.7c0-10.7,3.6-19.5,10.8-26.4s16.9-10.4,29.2-10.4c14,0,24.6,4.1,31.8,12.2c5.8,6.6,8.6,14.6,8.6,24.2 c0,10.8-3.6,19.6-10.7,26.5c-7.1,6.9-17,10.3-29.6,10.3c-11.3,0-20.4-2.9-27.3-8.6C343.9,289.5,339.6,280.2,339.6,268.7z M366.5,268.7c0,6.2,1.3,10.9,3.8,13.8c2.5,3,5.7,4.5,9.5,4.5c3.9,0,7-1.5,9.5-4.4c2.5-2.9,3.7-7.7,3.7-14.2 c0-6.1-1.3-10.6-3.8-13.6s-5.6-4.5-9.3-4.5c-3.9,0-7.1,1.5-9.7,4.5C367.8,257.9,366.5,262.5,366.5,268.7z"}),H.a.createElement("path",{d:"M418.2,233.5h25v11.4c3.7-4.7,7.5-8,11.3-10c3.8-2,8.5-3,14-3c7.4,0,13.2,2.2,17.4,6.6c4.2,4.4,6.3,11.2,6.3,20.5v44.5h-27 V265c0-4.4-0.8-7.5-2.4-9.3c-1.6-1.8-3.9-2.7-6.9-2.7c-3.3,0-5.9,1.2-7.9,3.7c-2,2.5-3,6.9-3,13.3v33.6h-26.8V233.5z"})));Sn("vk-blocks/button",{title:xn("Button","vk-blocks"),icon:$n,category:"vk-blocks-cat",attributes:{content:{type:"string",source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:"undefined"},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},edit:function(e){var t,n=e.attributes,o=e.className,r=e.setAttributes,a=e.isSelected,l=n.content,c=n.subCaption,i=n.buttonUrl,s=n.buttonTarget,u=n.buttonSize,m=n.buttonType,p=n.buttonColor,b=n.buttonColorCustom,f=n.buttonAlign,k=n.fontAwesomeIconBefore,v=n.fontAwesomeIconAfter;return t=b?"vk_button vk_button-align-".concat(f," vk_button-color-custom"):"vk_button vk_button-align-".concat(f),t=o?"".concat(o," vk_button vk_button-align-").concat(f," vk_button-color-custom"):"".concat(o," vk_button vk_button-align-").concat(f),H.a.createElement(Mn,null,H.a.createElement(Hn,null,H.a.createElement(On,{title:xn("Button setting","vk-blocks")},H.a.createElement(Rn,{label:xn("Sub Caption","vk-blocks"),value:c,onChange:function(e){return r({subCaption:e})},placeholder:"Sub Caption"}),H.a.createElement(In,{label:xn("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return r({buttonTarget:e})}}),H.a.createElement("h4",{className:"mt-0 mb-2"},xn("Button Size:","vk-blocks")),H.a.createElement(zn,{className:"mb-3"},H.a.createElement(Fn,{isSmall:!0,isPrimary:"lg"===u,isSecondary:"lg"!==u,onClick:function(){return r({buttonSize:"lg"})}},xn("Large","vk-blocks")),H.a.createElement(Fn,{isSmall:!0,isPrimary:"md"===u,isSecondary:"md"!==u,onClick:function(){return r({buttonSize:"md"})}},xn("Normal","vk-blocks")),H.a.createElement(Fn,{isSmall:!0,isPrimary:"sm"===u,isSecondary:"sm"!==u,onClick:function(){return r({buttonSize:"sm"})}},xn("Small","vk-blocks"))),H.a.createElement("h4",{className:"mt-0 mb-2"},xn("Button Position:","vk-blocks")),H.a.createElement(zn,{className:"mb-3"},H.a.createElement(Fn,{isSmall:!0,isPrimary:"left"===f,isSecondary:"left"!==f,onClick:function(){return r({buttonAlign:"left"})}},xn("Left","vk-blocks")),H.a.createElement(Fn,{isSmall:!0,isPrimary:"center"===f,isSecondary:"center"!==f,onClick:function(){return r({buttonAlign:"center"})}},xn("Center","vk-blocks")),H.a.createElement(Fn,{isSmall:!0,isPrimary:"right"===f,isSecondary:"right"!==f,onClick:function(){return r({buttonAlign:"right"})}},xn("Right","vk-blocks")),H.a.createElement(Fn,{isSmall:!0,isPrimary:"wide"===f,isSecondary:"wide"!==f,onClick:function(){return r({buttonAlign:"wide"})}},xn("Wide","vk-blocks")),H.a.createElement(Fn,{isSmall:!0,isPrimary:"block"===f,isSecondary:"block"!==f,onClick:function(){return r({buttonAlign:"block"})}},xn("Block","vk-blocks"))),H.a.createElement("h4",{className:"mt-0 mb-2"},xn("Button Style:","vk-blocks")),H.a.createElement(zn,{className:"mb-2"},H.a.createElement(Fn,{isSmall:!0,isPrimary:"0"===m,isSecondary:"0"!==m,onClick:function(){return r({buttonType:"0"})}},xn("Solid color","vk-blocks")),H.a.createElement(Fn,{isSmall:!0,isPrimary:"1"===m,isSecondary:"1"!==m,onClick:function(){return r({buttonType:"1"})}},xn("No background","vk-blocks")),H.a.createElement(Fn,{isSmall:!0,isPrimary:"2"===m,isSecondary:"2"!==m,onClick:function(){return r({buttonType:"2"})}},xn("Text only","vk-blocks"))),H.a.createElement("p",{className:"mb-3"},xn('If you select "No background", that you need to select a Custom Color.',"vk-blocks")),H.a.createElement(Bn,{label:xn("Default Color:","vk-blocks"),selected:p,options:[{label:xn("Primary","vk-blocks"),value:"primary"},{label:xn("Secondary","vk-blocks"),value:"secondary"},{label:xn("Success","vk-blocks"),value:"success"},{label:xn("Info","vk-blocks"),value:"info"},{label:xn("Warning","vk-blocks"),value:"warning"},{label:xn("Danger","vk-blocks"),value:"danger"},{label:xn("Light","vk-blocks"),value:"light"},{label:xn("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return r({buttonColor:e})}}),H.a.createElement(An,{label:xn("Custom Color","vk-blocks"),help:xn("This custom color overrides the default color. If you want to use the default color, click the clear button.","vk-blocks")},H.a.createElement(Dn,{value:b,onChange:function(e){return r({buttonColorCustom:e})}})),H.a.createElement(An,{label:xn("Font Awesome:","vk-blocks"),help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},xn("Font Awesome icon list","vk-blocks"))},H.a.createElement(Rn,{label:xn("Before text","vk-blocks"),help:xn("Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right","vk-blocks"),value:k,onChange:function(e){return r({fontAwesomeIconBefore:e})},placeholder:"fas fa-arrow-circle-right"}),H.a.createElement(Rn,{label:xn("After text","vk-blocks"),help:xn("Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-external-link-alt","vk-blocks"),value:v,onChange:function(e){return r({fontAwesomeIconAfter:e})},placeholder:"fas fa-external-link-alt"})))),H.a.createElement("div",{className:t},H.a.createElement(Yt,{lbColorCustom:b,lbColor:p,lbType:m,lbAlign:f,lbSize:u,lbFontAwesomeIconBefore:k,lbFontAwesomeIconAfter:v,lbsubCaption:c,lbRichtext:H.a.createElement(Un,{tagName:"span",className:"vk_button_link_txt",onChange:function(e){return r({content:e})},value:l,placeholder:xn("Input text","vk-blocks"),formattingControls:["bold","italic","strikethrough"],isSelected:!0})}),a&&H.a.createElement("form",{className:"block-library-button__inline-link",onSubmit:function(e){return e.preventDefault()}},H.a.createElement(Pn,{icon:"admin-links"}),H.a.createElement(Vn,{value:i,onChange:function(e){return r({buttonUrl:e})}}),H.a.createElement(jn,{icon:"editor-break",label:xn("Apply","vk-blocks"),type:"submit"}))))},save:function(e){var t=e.attributes,n=e.className,o=t.content,r=t.subCaption,a=t.buttonUrl,l=t.buttonTarget,c=t.buttonSize,i=t.buttonType,s=t.buttonColor,u=t.buttonColorCustom,m=t.buttonAlign,p=t.fontAwesomeIconBefore,b=t.fontAwesomeIconAfter,f="";return u?f="vk_button vk_button-color-custom vk_button-align-".concat(m):u||(f="vk_button vk_button-align-".concat(m)),n&&(f=n+" "+f),H.a.createElement("div",{className:f},H.a.createElement(Yt,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:m,lbSize:c,lbUrl:a,lbTarget:l,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:b,lbsubCaption:r,lbRichtext:H.a.createElement(Un.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))},deprecated:Nn});var qn=wp.editor.RichText,Jn=[{attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"}},save:function(e){var t=e.attributes,n=t.heading,o=t.content;return H.a.createElement("dl",{className:"vk_faq"},H.a.createElement(qn.Content,{tagName:"dt",className:"vk_faq_title",value:n}),H.a.createElement(qn.Content,{tagName:"dd",className:"vk_faq_content",value:o}))}}],Wn=wp.i18n.__,Yn=wp.blocks.registerBlockType,Gn=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).RichText,Qn=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M178.9,191.6c7.2,5,12,8.2,14.2,9.4c3.3,1.9,7.8,4,13.4,6.5l-16.1,32.4c-8.1-3.9-16.1-8.6-24-14 c-7.9-5.4-13.4-9.5-16.6-12.2c-12.8,5.5-28.8,8.3-48,8.3c-28.4,0-50.9-7.4-67.3-22.2c-19.4-17.5-29.1-42.2-29.1-73.9 c0-30.8,8.5-54.7,25.5-71.8c17-17.1,40.7-25.6,71.2-25.6c31.1,0,55,8.3,71.9,25c16.9,16.7,25.3,40.6,25.3,71.6 C199.3,152.8,192.5,175,178.9,191.6z M134.6,161.9c4.6-8.3,6.9-20.6,6.9-37c0-18.9-3.5-32.4-10.5-40.5c-7-8.1-16.7-12.1-29-12.1 c-11.5,0-20.8,4.1-28,12.4c-7.1,8.3-10.7,21.2-10.7,38.7c0,20.4,3.5,34.8,10.5,43c7,8.3,16.6,12.4,28.7,12.4 c3.9,0,7.6-0.4,11.1-1.1c-4.9-4.7-12.5-9.1-23-13.3l9.1-20.8c5.1,0.9,9.1,2.1,11.9,3.4c2.9,1.4,8.4,4.9,16.7,10.7 C130.1,159.1,132.3,160.5,134.6,161.9z"}),React.createElement("path",{d:"M137.9,452.6H72.2l-9.1,30.9l-59,0l70.3-187.2h63.1l70.3,187.2h-60.6L137.9,452.6z M125.9,412.1l-20.7-67.3l-20.4,67.3 H125.9z"}),React.createElement("path",{d:"M553.9,239.9h-303c-10,0-18.1-8.1-18.1-18.1c0-10,8.1-18.1,18.1-18.1h303c10,0,18.1,8.1,18.1,18.1 C572,231.8,563.9,239.9,553.9,239.9z"}),React.createElement("path",{d:"M553.9,483.5h-303c-10,0-18.1-8.1-18.1-18.1c0-10,8.1-18.1,18.1-18.1h303c10,0,18.1,8.1,18.1,18.1 C572,475.4,563.9,483.5,553.9,483.5z"}));Yn("vk-blocks/faq",{title:Wn("FAQ","vk-blocks"),icon:Qn,category:"vk-blocks-cat",attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"}},supports:{anchor:!0},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.heading,a=t.content;return React.createElement("dl",{className:"".concat(o," vk_faq")},React.createElement(Gn,{tagName:"dt",className:"vk_faq_title",onChange:function(e){return n({heading:e})},value:r,placeholder:Wn("Please enter a question.","vk-blocks")}),React.createElement(Gn,{tagName:"dd",className:"vk_faq_content",onChange:function(e){return n({content:e})},value:a,placeholder:Wn("Please enter a answer.","vk-blocks")}))},save:function(e){var t=e.attributes,n=e.className,o=t.heading,r=t.content;return React.createElement("dl",{className:"".concat(n," vk_faq")},React.createElement(Gn.Content,{tagName:"dt",className:"vk_faq_title",value:o}),React.createElement(Gn.Content,{tagName:"dd",className:"vk_faq_content",value:r}))},deprecated:Jn});var Kn=wp.editor.RichText,Xn=[{attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"},arrowFlag:{type:"string",default:"vk_flow-arrow-on"},insertImage:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.heading,o=t.content,r=t.insertImage,a=t.arrowFlag;return H.a.createElement("div",{className:"".concat(a," vk_flow")},H.a.createElement("div",{className:"vk_flow_frame"},H.a.createElement("dl",{className:"vk_flow_frame_text"},H.a.createElement(Kn.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:n}),H.a.createElement(Kn.Content,{tagName:"dd",className:"vk_flow_frame_text_content",value:o})),r?H.a.createElement("div",{className:"vk_flow_frame_image"},H.a.createElement("img",{src:r,alt:""})):""))}}],Zn=wp.i18n.__,eo=wp.blocks.registerBlockType,to=wp.components,no=to.RadioControl,oo=to.PanelBody,ro=to.Button,ao=wp.element.Fragment,lo=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,co=lo.RichText,io=lo.InspectorControls,so=lo.MediaUpload;function uo(e){return(uo="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 mo(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function po(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function bo(e,t){return!t||"object"!==uo(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}function fo(e){return(fo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ko(e,t){return(ko=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}eo("vk-blocks/flow",{title:Zn("Flow","vk-blocks"),icon:"arrow-down",category:"vk-blocks-cat",attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"},arrowFlag:{type:"string",default:"vk_flow-arrow-on"},insertImage:{type:"string",default:null}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.heading,a=t.content,l=t.insertImage,c=t.arrowFlag;return[React.createElement(ao,null,React.createElement(io,null,React.createElement(oo,{title:Zn("Display of arrow","vk-blocks")},React.createElement(no,{selected:c,options:[{label:Zn("Arrow display","vk-blocks"),value:"vk_flow-arrow-on"},{label:Zn("Arrow hidden","vk-blocks"),value:"vk_flow-arrow-off"}],onChange:function(e){return n({arrowFlag:e})}}))),React.createElement("div",{className:"".concat(o," ").concat(c," vk_flow")},React.createElement("div",{className:"vk_flow_frame"},React.createElement("dl",{className:"vk_flow_frame_text"},React.createElement(co,{tagName:"dt",className:"vk_flow_frame_text_title",onChange:function(e){return n({heading:e})},value:r,placeholder:Zn("Input title","vk-blocks")}),React.createElement(co,{tagName:"dd",className:"vk_flow_frame_text_content",onChange:function(e){return n({content:e})},value:a,placeholder:Zn("Input content","vk-blocks")})),React.createElement("div",{className:"vk_flow_frame_image"},React.createElement(so,{onSelect:function(e){return n({insertImage:e.url})},type:"image",className:"vk_flow_frame_image",value:l,render:function(e){var t=e.open;return React.createElement(ro,{onClick:t,className:l?"image-button":"button button-large"},l?React.createElement("img",{className:"icon-image",src:l,alt:Zn("Upload image","vk-blocks")}):Zn("Select image","vk-blocks"))}})))))]},save:function(e){var t=e.attributes,n=e.className,o=t.heading,r=t.content,a=t.insertImage,l=t.arrowFlag;return React.createElement("div",{className:"".concat(n," ").concat(l," vk_flow")},React.createElement("div",{className:"vk_flow_frame"},React.createElement("dl",{className:"vk_flow_frame_text"},React.createElement(co.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:o}),React.createElement(co.Content,{tagName:"dd",className:"vk_flow_frame_text_content",value:r})),a?React.createElement("div",{className:"vk_flow_frame_image"},React.createElement("img",{src:a,alt:""})):""))},deprecated:Xn});var vo=wp.i18n.__,yo=wp.editor.RichText,_o=function(e){function t(){return mo(this,t),bo(this,fo(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&ko(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.setAttributes,t=this.props.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,b=t.urlOpenType3,f=t.icon1,k=t.icon2,v=t.icon3,d=t.color1,y=t.color2,_=t.color3,g=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3,x=this.props.for_,S=this.props.blockNum,T=this.props.blockNum-1,B=[n,o,r],O=[a,l,c],A=[i,s,u],I=[m,p,b],R=[f,k,v],P=[d,y,_],j=[g,h,E],z=[C,w,N],F="",M="",L=z[T]?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url(".concat(z[T],")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:z[T],alt:""})):(P[T]||(P[T]="#0693e3"),"0"===j[T]?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:P[T],border:"1px solid ".concat(P[T])}},H.a.createElement("i",{className:"".concat(R[T]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+P[T]}},H.a.createElement("i",{className:"".concat(R[T]," vk_prBlocks_item_icon"),style:{color:P[T]}})));return"edit"===x?1===S?(F=H.a.createElement(yo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",onChange:function(t){return e({heading1:t})},value:n,placeholder:vo("Input Title","vk-blocks")}),M=H.a.createElement(yo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:a,placeholder:vo("Input Content","vk-blocks")})):2===S?(F=H.a.createElement(yo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",onChange:function(t){return e({heading2:t})},value:o,placeholder:vo("Input Title","vk-blocks")}),M=H.a.createElement(yo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:l,placeholder:vo("Input Content","vk-blocks")})):3===S&&(F=H.a.createElement(yo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",onChange:function(t){return e({heading3:t})},value:r,placeholder:vo("Input Title","vk-blocks")}),M=H.a.createElement(yo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:vo("Input Content","vk-blocks")})):"save"===x&&(F=H.a.createElement(yo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(S),tagName:"h1",value:B[T]}),M=H.a.createElement(yo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(S),tagName:"p",value:O[T]})),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:A[T],target:I[T]?"_blank":"_self",className:"vk_prBlocks_item_link",rel:"noopener noreferrer"},L,F,M))}}])&&po(n.prototype,o),r&&po(n,r),t}(H.a.Component);function go(e){throw new Error('"'+e+'" is read-only')}wp.i18n.__;var ho=wp.components,Eo=(ho.RadioControl,ho.PanelBody,ho.Button,ho.BaseControl,ho.CheckboxControl,ho.TextControl,wp.element.Fragment,wp.editor),Co=Eo.RichText;Eo.InspectorControls,Eo.MediaUpload,Eo.ColorPalette;var wo=[{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h3.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,b=t.urlOpenType3,f=t.icon1,k=t.icon2,v=t.icon3,d=t.color1,y=t.color2,_=t.color3,g=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3;return H.a.createElement("div",{className:"vk_prBlocks row"},H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:i,target:m?"_blank":"_self",className:"vk_prBlocks_item_link"},C?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+C+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:C,alt:""})):(d||(go("color1"),d="#0693e3"),"0"===g?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:d,border:"1px solid ".concat(d)}},H.a.createElement("i",{className:"".concat(f," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+d}},H.a.createElement("i",{className:"".concat(f," vk_prBlocks_item_icon"),style:{color:d}}))),H.a.createElement(Co.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),H.a.createElement(Co.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",value:a}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:s,target:p?"_blank":"_self",className:"vk_prBlocks_item_link"},w?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+w+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:w,alt:""})):(y||(go("color2"),y="#0693e3"),"0"===h?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:y,border:"1px solid ".concat(y)}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+y}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:y}}))),H.a.createElement(Co.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),H.a.createElement(Co.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",value:l}))),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:u,target:b?"_blank":"_self",className:"vk_prBlocks_item_link"},N?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+N+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:N,alt:""})):(_||(go("color3"),_="#0693e3"),"0"===E?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+_}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:_}}))),H.a.createElement(Co.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),H.a.createElement(Co.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",value:c}))))}},{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h1.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes;return H.a.createElement("div",{className:"vk_prBlocks row"},H.a.createElement(_o,{attributes:t,blockNum:1,for_:"save"}),H.a.createElement(_o,{attributes:t,blockNum:2,for_:"save"}),H.a.createElement(_o,{attributes:t,blockNum:3,for_:"save"}))}}];function No(e){return(No="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)}var xo=function(e){if("string"==typeof e){try{JSON.parse(e)}catch(e){return!0}return!1}return"object"!==No(e)||Array.isArray(e)};function So(e){return(So="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 To(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Bo(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Oo(e,t){return!t||"object"!==So(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}function Ao(e){return(Ao=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Io(e,t){return(Io=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Ro=wp.i18n.__,Po=wp.editor.RichText,jo=function(e){function t(){return To(this,t),Oo(this,Ao(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Io(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.setAttributes,t=this.props.attributes,n=t.heading1,o=t.heading2,r=t.heading3,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,m=t.urlOpenType1,p=t.urlOpenType2,b=t.urlOpenType3,f=t.icon1,k=t.icon2,v=t.icon3,d=t.color1,y=t.color2,_=t.color3,g=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3,x=this.props.for_,S=this.props.blockNum,T=this.props.blockNum-1,B=[n,o,r],O=[a,l,c],A=[i,s,u],I=[m,p,b],R=[f,k,v],P=[d,y,_],j=[g,h,E],z=[C,w,N],F="",M="",L=function(e){var t=e[T];if(xo(t))return{backgroundImage:"url(".concat(t,")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"};var n=JSON.parse(t);return{backgroundImage:"url(".concat(n.sizes.full.url,")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},U=z[T]?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:L(z)},function(e){if(xo(e))return H.a.createElement("img",{src:e,alt:""});var t=JSON.parse(e);return H.a.createElement("img",{src:t.sizes.full.url,alt:t.alt})}(z[T])):(P[T]||(P[T]="#0693e3"),"0"===j[T]?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:P[T],border:"1px solid ".concat(P[T])}},H.a.createElement("i",{className:"".concat(R[T]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+P[T]}},H.a.createElement("i",{className:"".concat(R[T]," vk_prBlocks_item_icon"),style:{color:P[T]}})));return"edit"===x?1===S?(F=H.a.createElement(Po,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h3",onChange:function(t){return e({heading1:t})},value:n,placeholder:Ro("Input Title","vk-blocks")}),M=H.a.createElement(Po,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:a,placeholder:Ro("Input Content","vk-blocks")})):2===S?(F=H.a.createElement(Po,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h3",onChange:function(t){return e({heading2:t})},value:o,placeholder:Ro("Input Title","vk-blocks")}),M=H.a.createElement(Po,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:l,placeholder:Ro("Input Content","vk-blocks")})):3===S&&(F=H.a.createElement(Po,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h3",onChange:function(t){return e({heading3:t})},value:r,placeholder:Ro("Input Title","vk-blocks")}),M=H.a.createElement(Po,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:Ro("Input Content","vk-blocks")})):"save"===x&&(F=H.a.createElement(Po.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(S),tagName:"h3",value:B[T]}),M=H.a.createElement(Po.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(S),tagName:"p",value:O[T]})),A[T]&&"save"===x?H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:A[T],className:"vk_prBlocks_item_link",target:I[T]?"_blank":"_self",rel:"noopener noreferrer"},U,F,M)):H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},U,F,M)}}])&&Bo(n.prototype,o),r&&Bo(n,r),t}(H.a.Component),zo=wp.i18n.__,Fo=wp.blocks.registerBlockType,Mo=wp.components,Lo=Mo.RadioControl,Uo=Mo.PanelBody,Ho=Mo.Button,Do=Mo.BaseControl,Vo=Mo.CheckboxControl,$o=Mo.TextControl,qo=wp.element.Fragment,Jo=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Wo=Jo.InspectorControls,Yo=Jo.MediaUpload,Go=Jo.ColorPalette,Qo=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("g",null,H.a.createElement("circle",{cx:"288",cy:"186.2",r:"60"}),H.a.createElement("rect",{x:"213.5",y:"278.8",width:"149",height:"107"})),H.a.createElement("g",null,H.a.createElement("circle",{cx:"74.5",cy:"186.2",r:"60"}),H.a.createElement("rect",{y:"278.8",width:"149",height:"107"})),H.a.createElement("g",null,H.a.createElement("circle",{cx:"501.5",cy:"186.2",r:"60"}),H.a.createElement("rect",{x:"427",y:"278.8",width:"149",height:"107"}))));Fo("vk-blocks/pr-blocks",{title:zo("PR Blocks","vk-blocks"),icon:Qo,category:"vk-blocks-cat",attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:".vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),edit:function(e){var t,n=e.attributes,o=e.setAttributes,r=e.className,a=(n.heading1,n.heading2,n.heading3,n.content1,n.content2,n.content3,n.url1),l=n.url2,c=n.url3,i=n.urlOpenType1,s=n.urlOpenType2,u=n.urlOpenType3,m=n.icon1,p=n.icon2,b=n.icon3,f=n.color1,k=n.color2,v=n.color3,d=n.bgType1,y=n.bgType2,_=n.bgType3,g=n.insertImage1,h=n.insertImage2,E=n.insertImage3;t=r?"".concat(r," vk_prBlocks row"):"vk_prBlocks row";var C=function(e){if(xo(e))return e?H.a.createElement("img",{className:"icon-image",src:e,alt:zo("Upload image","vk-blocks")}):zo("Select image","vk-blocks");var t=JSON.parse(e);return e?H.a.createElement("img",{className:"icon-image",src:t.sizes.full.url,alt:t.alt}):zo("Select image","vk-blocks")};return[H.a.createElement(qo,null,H.a.createElement(Wo,null,H.a.createElement(Uo,{title:zo("PR Block1 Setting","vk-blocks")},H.a.createElement(Do,{label:zo("Link URL:","vk-blocks")},H.a.createElement($o,{value:a,onChange:function(e){return o({url1:e})}}),H.a.createElement(Vo,{label:zo("Open link new tab.","vk-blocks"),checked:i,onChange:function(e){return o({urlOpenType1:e})}})),H.a.createElement(Do,{label:zo("Icon 1","vk-blocks")},H.a.createElement($o,{label:zo("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:m,onChange:function(e){return o({icon1:e})},placeholder:"fas fa-file",help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},zo("Font Awesome icon list","vk-blocks"))}),H.a.createElement(Go,{value:f,onChange:function(e){e?o({color1:e}):(o({color1:"#0693e3"}),o({bgType1:"0"}))}}),H.a.createElement(Lo,{label:zo("Icon Background:","vk-blocks"),selected:d,options:[{label:zo("Solid color","vk-blocks"),value:"0"},{label:zo("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType1:e})}})),H.a.createElement(Do,{label:zo("PR Image 1","vk-blocks"),help:zo("When you have an image. Image is displayed with priority","vk-blocks")},H.a.createElement(Yo,{onSelect:function(e){xo(e)?o({insertImage1:e.url}):o({insertImage1:JSON.stringify(e)})},type:"image",value:g,render:function(e){var t=e.open;return H.a.createElement(Ho,{onClick:t,className:g?"image-button":"button button-large"},C(g))}}))),H.a.createElement(Uo,{title:zo("PR Block2 Setting","vk-blocks")},H.a.createElement(Do,{label:zo("Link URL:","vk-blocks")},H.a.createElement($o,{value:l,onChange:function(e){return o({url2:e})}}),H.a.createElement(Vo,{label:zo("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return o({urlOpenType2:e})}})),H.a.createElement(Do,{label:zo("Icon 2","vk-blocks")},H.a.createElement($o,{label:zo("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:p,onChange:function(e){return o({icon2:e})},placeholder:"fas fa-file",help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},zo("Font Awesome icon list","vk-blocks"))}),H.a.createElement(Go,{value:k,onChange:function(e){e?o({color2:e}):(o({color2:"#0693e3"}),o({bgType2:"0"}))}}),H.a.createElement(Lo,{label:zo("Icon Background:","vk-blocks"),selected:y,options:[{label:zo("Solid color","vk-blocks"),value:"0"},{label:zo("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType2:e})}})),H.a.createElement(Do,{label:zo("PR Image 2","vk-blocks"),help:zo("When you have an image. Image is displayed with priority.","vk-blocks")},H.a.createElement(Yo,{onSelect:function(e){xo(e)?o({insertImage2:e.url}):o({insertImage2:JSON.stringify(e)})},type:"image",value:h,render:function(e){var t=e.open;return H.a.createElement(Ho,{onClick:t,className:h?"image-button":"button button-large"},C(h))}}))),H.a.createElement(Uo,{title:zo("PR Block3 Setting","vk-blocks")},H.a.createElement(Do,{label:zo("Link URL:","vk-blocks")},H.a.createElement($o,{value:c,onChange:function(e){return o({url3:e})}}),H.a.createElement(Vo,{label:zo("Open link new tab.","vk-blocks"),checked:u,onChange:function(e){return o({urlOpenType3:e})}})),H.a.createElement(Do,{label:zo("Icon 3","vk-blocks")},H.a.createElement($o,{label:zo("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:b,onChange:function(e){return o({icon3:e})},placeholder:"fas fa-file",help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},zo("Font Awesome icon list","vk-blocks"))}),H.a.createElement(Go,{value:v,onChange:function(e){e?o({color3:e}):(o({color3:"#0693e3"}),o({bgType3:"0"}))}}),H.a.createElement(Lo,{label:zo("Icon Background:","vk-blocks"),selected:_,options:[{label:zo("Solid color","vk-blocks"),value:"0"},{label:zo("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType3:e})}})),H.a.createElement(Do,{label:zo("PR Image 3","vk-blocks"),help:zo("When you have an image. Image is displayed with priority.","vk-blocks")},H.a.createElement(Yo,{onSelect:function(e){xo(e)?o({insertImage3:e.url}):o({insertImage3:JSON.stringify(e)})},type:"image",value:E,render:function(e){var t=e.open;return H.a.createElement(Ho,{onClick:t,className:E?"image-button":"button button-large"},C(E))}})))),H.a.createElement("div",{className:t},H.a.createElement(jo,{attributes:n,setAttributes:o,blockNum:1,for_:"edit"}),H.a.createElement(jo,{attributes:n,setAttributes:o,blockNum:2,for_:"edit"}),H.a.createElement(jo,{attributes:n,setAttributes:o,blockNum:3,for_:"edit"})))]},save:function(e){var t,n=e.attributes,o=e.className;return t=o?"".concat(o," vk_prBlocks row"):"vk_prBlocks row",H.a.createElement("div",{className:t},H.a.createElement(jo,{attributes:n,blockNum:1,for_:"save"}),H.a.createElement(jo,{attributes:n,blockNum:2,for_:"save"}),H.a.createElement(jo,{attributes:n,blockNum:3,for_:"save"}))},deprecated:wo});function Ko(e){return(Ko="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 Xo(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Zo(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function er(e,t){return!t||"object"!==Ko(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}function tr(e){return(tr=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function nr(e,t){return(nr=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var or=function(e){function t(){return Xo(this,t),er(this,tr(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&nr(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.buttonText,n=e.fontAwesomeIconBefore,o=e.fontAwesomeIconAfter,r="",a="";return n&&(r=H.a.createElement("i",{className:"".concat(n," vk_button_link_before")})),o&&(a=H.a.createElement("i",{className:"".concat(o," vk_button_link_after")})),H.a.createElement(H.a.Fragment,null,r,H.a.createElement("span",{className:"vk_button_link_txt"},t),a)}}])&&Zo(n.prototype,o),r&&Zo(n,r),t}(H.a.Component);function rr(e){return(rr="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 ar(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function lr(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function cr(e,t){return!t||"object"!==rr(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}function ir(e){return(ir=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function sr(e,t){return(sr=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var ur=wp.i18n.__,mr=wp.components.Button,pr=wp.editor.MediaUpload,br=wp.editor.RichText,fr=function(e){function t(){return ar(this,t),cr(this,ir(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&sr(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,a=e.url,l=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,m=e.Image,p=e.ImageBorderColor,b=e.layout,f=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,v=this.props.for_,d="vk_prContent",y="vk_button",_="btn btn-block vk_button_link vk_prContent_colTxt_btn",g={},h="none";d="right"===b?be()(k,d,"vk_prContent-layout-imageRight"):be()(k,d,"vk_prContent-layout-imageLeft"),i?(y="".concat(y," vk_button-color-custom"),_="".concat(_," btn-primary"),"0"===l?g={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(g={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(_="".concat(_," btn-").concat(c),g=null):"1"===l&&(_="".concat(_," btn-outline-").concat(c),g=null)),h=p?"1px solid ".concat(p):"none";var E=function(e){e&&f({Image:JSON.stringify(e)})};return console.log(m),H.a.createElement("div",{className:d},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},function(e){if("edit"===e){if(m&&-1===m.indexOf("{"))return H.a.createElement(pr,{onSelect:function(e){return f({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(mr,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:ur("Upload image","vk-blocks"),style:{border:h}}):ur("Select image","vk-blocks"))}});var t=JSON.parse(m);return H.a.createElement(pr,{onSelect:E,type:" image",value:t,render:function(e){var n=e.open;return H.a.createElement(mr,{onClick:n,className:t?"image-button":"button button-large"},null===m||void 0===t.sizes?ur("Select image","vk-blocks"):H.a.createElement("img",{className:"vk_prContent_colImg_image",src:t.sizes.full.url,alt:t.alt,style:{border:h}}))}})}if("save"===e){if(m){if(m&&-1===m.indexOf("{"))return H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:ur("Upload image","vk-blocks"),style:{border:h}});var n=JSON.parse(m);return n&&void 0!==n.sizes?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:n.sizes.full.url,alt:n.alt,style:{border:h}}):""}return ur("Select image","vk-blocks")}}(v)),H.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===v?H.a.createElement(H.a.Fragment,null,H.a.createElement(br,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return f({title:e})},value:t,placeholder:ur("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(br,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return f({content:e})},value:o,placeholder:ur("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(br.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(br.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return H.a.createElement("div",{className:y},H.a.createElement("a",{href:a,className:_,target:u?"_blank":null,style:g,rel:"noopener noreferrer"},H.a.createElement(or,{attributes:e})))}()))}}])&&lr(n.prototype,o),r&&lr(n,r),t}(H.a.Component);function kr(e){return(kr="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 vr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function dr(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function yr(e,t){return!t||"object"!==kr(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}function _r(e){return(_r=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function gr(e,t){return(gr=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var hr=function(e){function t(){return vr(this,t),yr(this,_r(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&gr(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.buttonText,n=e.fontAwesomeIconBefore,o=e.fontAwesomeIconAfter,r="",a="";return n&&(r=H.a.createElement("i",{className:"".concat(n," vk_button_link_before")})),o&&(a=H.a.createElement("i",{className:"".concat(o," vk_button_link_after")})),H.a.createElement(H.a.Fragment,null,r,H.a.createElement("span",{className:"vk_button_link_txt"},t),a)}}])&&dr(n.prototype,o),r&&dr(n,r),t}(H.a.Component);function Er(e){return(Er="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 Cr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function wr(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Nr(e,t){return!t||"object"!==Er(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}function xr(e){return(xr=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Sr(e,t){return(Sr=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Tr=wp.i18n.__,Br=wp.components.Button,Or=wp.editor.MediaUpload,Ar=wp.editor.RichText,Ir=function(e){function t(){return Cr(this,t),Nr(this,xr(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Sr(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,a=e.url,l=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,m=e.Image,p=e.ImageBorderColor,b=e.layout,f=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.for_,v="vk_prContent",d="vk_button",y="btn btn-block vk_button_link vk_prContent_colTxt_btn",_={};return v="".concat(v,"right"===b?" vk_prContent-layout-imageRight":" vk_prContent-layout-imageLeft"),i?(d="".concat(d," vk_button-color-custom"),y="".concat(y," btn-primary"),"0"===l?_={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(_={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(y="".concat(y," btn-").concat(c),_=null):"1"===l&&(y="".concat(y," btn-outline-").concat(c),_=null)),H.a.createElement("div",{className:v},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===k?H.a.createElement(Or,{onSelect:function(e){return f({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(Br,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:Tr("Upload image","vk-blocks"),style:{border:"1px solid ".concat(p)}}):Tr("Select image","vk-blocks"))}}):m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:Tr("Upload image","vk-blocks"),style:{border:"1px solid ".concat(p)}}):Tr("Select image","vk-blocks")),H.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===k?H.a.createElement(H.a.Fragment,null,H.a.createElement(Ar,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return f({title:e})},value:t,placeholder:Tr("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(Ar,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return f({content:e})},value:o,placeholder:Tr("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(Ar.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(Ar.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return H.a.createElement("div",{className:d},H.a.createElement("a",{href:a,className:y,target:u?"_blank":null,style:_,rel:"noopener noreferrer"},H.a.createElement(hr,{attributes:e})))}()))}}])&&wr(n.prototype,o),r&&wr(n,r),t}(H.a.Component);function Rr(e){return(Rr="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 Pr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function jr(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function zr(e,t){return!t||"object"!==Rr(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}function Fr(e){return(Fr=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Mr(e,t){return(Mr=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Lr=wp.i18n.__,Ur=wp.components.Button,Hr=wp.editor.MediaUpload,Dr=wp.editor.RichText,Vr=function(e){function t(){return Pr(this,t),zr(this,Fr(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Mr(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,a=e.url,l=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,m=e.Image,p=e.ImageBorderColor,b=e.layout,f=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,v=this.props.for_,d="vk_prContent",y="vk_button",_="btn btn-block vk_button_link vk_prContent_colTxt_btn",g={},h="";return d="right"===b?be()(k,d,"vk_prContent-layout-imageRight"):be()(k,d,"vk_prContent-layout-imageLeft"),i?(y="".concat(y," vk_button-color-custom"),_="".concat(_," btn-primary"),"0"===l?g={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(g={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(_="".concat(_," btn-").concat(c),g=null):"1"===l&&(_="".concat(_," btn-outline-").concat(c),g=null)),h=null==p?"none":"1px solid ".concat(p),H.a.createElement("div",{className:d},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===v?H.a.createElement(Hr,{onSelect:function(e){return f({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(Ur,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:Lr("Upload image","vk-blocks"),style:{border:h}}):Lr("Select image","vk-blocks"))}}):m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:Lr("Upload image","vk-blocks"),style:{border:h}}):Lr("Select image","vk-blocks")),H.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===v?H.a.createElement(H.a.Fragment,null,H.a.createElement(Dr,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return f({title:e})},value:t,placeholder:Lr("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(Dr,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return f({content:e})},value:o,placeholder:Lr("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(Dr.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(Dr.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return H.a.createElement("div",{className:y},H.a.createElement("a",{href:a,className:_,target:u?"_blank":null,style:g,rel:"noopener noreferrer"},H.a.createElement(hr,{attributes:e})))}()))}}])&&jr(n.prototype,o),r&&jr(n,r),t}(H.a.Component),$r=[{attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string"},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string"},url:{type:"string",default:null},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:null},ImageBorderColor:{type:"string",default:null},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string"},fontAwesomeIconAfter:{type:"string"}},save:function(e){var t=e.attributes;e.className;return H.a.createElement(Ir,{attributes:t,for_:"save"})}},{attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string"},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string"},url:{type:"string",default:null},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:null},ImageBorderColor:{type:"string",default:null},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string"},fontAwesomeIconAfter:{type:"string"}},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(Vr,{attributes:t,className:n,for_:"save"})}}],qr=wp.i18n.__,Jr=wp.blocks.registerBlockType,Wr=wp.components,Yr=Wr.RadioControl,Gr=Wr.PanelBody,Qr=Wr.BaseControl,Kr=Wr.CheckboxControl,Xr=Wr.TextControl,Zr=wp.element.Fragment,ea=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,ta=ea.InspectorControls,na=ea.ColorPalette,oa=H.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},H.a.createElement("g",null,H.a.createElement("path",{d:"M291.7,133.3l0,245.3l-273.1,0l0-245.3L291.7,133.3 M307.2,117.8l-304.2,0l0,276.4l304.2,0L307.2,117.8L307.2,117.8z"}),H.a.createElement("path",{d:"M560.7,218.8l-213.1,0c-6.1,0-11.1-5-11.1-11.1s5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,213.8,566.8,218.8,560.7,218.8z"}),H.a.createElement("path",{d:"M560.7,265.4l-213.1,0c-6.1,0-11.1-5-11.1-11.1c0-6.1,5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,260.5,566.8,265.4,560.7,265.4z"}),H.a.createElement("path",{d:"M560.7,312.1l-213.1,0c-6.1,0-11.1-5-11.1-11.1c0-6.1,5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,307.1,566.8,312.1,560.7,312.1z"}),H.a.createElement("polygon",{points:"278.4,365.4 31.9,365.4 31.9,287.4 113,182.2 184.4,264.4 229.9,226.5 278.4,290.6 \t"}),H.a.createElement("path",{d:"M360.6,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C351.9,137.2,355.8,133.3,360.6,133.3 M360.6,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C384.9,128.7,374,117.8,360.6,117.8L360.6,117.8z"}),H.a.createElement("path",{d:"M423.3,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C414.6,137.2,418.5,133.3,423.3,133.3 M423.3,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2s24.2-10.9,24.2-24.2C447.6,128.7,436.7,117.8,423.3,117.8 L423.3,117.8z"}),H.a.createElement("path",{d:"M486,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C477.3,137.2,481.2,133.3,486,133.3 M486,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C510.2,128.7,499.4,117.8,486,117.8L486,117.8z"}),H.a.createElement("path",{d:"M548.7,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7s-8.7-3.9-8.7-8.7C540,137.2,543.9,133.3,548.7,133.3 M548.7,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C572.9,128.7,562.1,117.8,548.7,117.8L548.7,117.8z"}),H.a.createElement("path",{d:"M566.3,347.6l-224.3,0c-3.1,0-5.6,2.5-5.6,5.6l0,35.5c0,3.1,2.5,5.6,5.6,5.6l224.3,0c3.1,0,5.6-2.5,5.6-5.6v-35.5 C571.8,350.1,569.3,347.6,566.3,347.6z M547.1,379.2v-16.6l9.8,8.3L547.1,379.2z"})));Jr("vk-blocks/pr-content",{title:qr("PR Content","vk-blocks"),icon:oa,category:"vk-blocks-cat",attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string"},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string"},url:{type:"string",default:null},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:null},ImageBorderColor:{type:"string",default:null},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string"},fontAwesomeIconAfter:{type:"string"}},edit:function(e){var t=e.attributes,n=e.className,o=e.setAttributes,r=t.titleColor,a=t.contentColor,l=t.url,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonText,m=t.buttonTarget,p=t.ImageBorderColor,b=t.layout,f=t.fontAwesomeIconBefore,k=t.fontAwesomeIconAfter;return H.a.createElement(Zr,null,H.a.createElement(ta,null,H.a.createElement(Gr,{title:qr("Color Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Qr,{label:qr("Title Color","vk-blocks")},H.a.createElement(na,{value:r,onChange:function(e){return o({titleColor:e})}})),H.a.createElement(Qr,{label:qr("Content Color","vk-blocks")},H.a.createElement(na,{value:a,onChange:function(e){return o({contentColor:e})}})),H.a.createElement(Qr,{label:qr("Image Border Color","vk-blocks")},H.a.createElement(na,{value:p,onChange:function(e){return o({ImageBorderColor:e})}}))),H.a.createElement(Gr,{title:qr("Button Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Qr,{label:qr("Button Text","vk-blocks")},H.a.createElement(Xr,{value:u,onChange:function(e){return o({buttonText:e})},placeholder:"Input button text."})),H.a.createElement(Qr,{label:qr("Link URL","vk-blocks")},H.a.createElement(Xr,{value:l,onChange:function(e){return o({url:e})},placeholder:"https://vektor-inc.co.jp/"})),H.a.createElement(Kr,{label:qr("Open link new tab.","vk-blocks"),checked:m,onChange:function(e){return o({buttonTarget:e})}}),H.a.createElement(Qr,{label:qr("Button Type","vk-blocks")},H.a.createElement(Yr,{selected:c,options:[{label:qr("Solid","vk-blocks"),value:"0"},{label:qr("Ghost","vk-blocks"),value:"1"}],onChange:function(e){return o({buttonType:e})}})),H.a.createElement(Yr,{label:qr("Default Color:","vk-blocks"),selected:i,options:[{label:qr("Primary","vk-blocks"),value:"primary"},{label:qr("Secondary","vk-blocks"),value:"secondary"},{label:qr("Success","vk-blocks"),value:"success"},{label:qr("Info","vk-blocks"),value:"info"},{label:qr("Warning","vk-blocks"),value:"warning"},{label:qr("Danger","vk-blocks"),value:"danger"},{label:qr("Light","vk-blocks"),value:"light"},{label:qr("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return o({buttonColor:e})}}),H.a.createElement(Qr,{label:qr("Button Color","vk-blocks")},H.a.createElement(na,{value:s,onChange:function(e){return o({buttonColorCustom:e})}})),H.a.createElement(Qr,{label:qr("Font Awesome:","vk-blocks"),help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},qr("Font Awesome icon list","vk-blocks"))},H.a.createElement(Xr,{label:qr("Before text","vk-blocks"),help:qr("Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right","vk-blocks"),value:f,onChange:function(e){return o({fontAwesomeIconBefore:e})},placeholder:"fas fa-arrow-circle-right"}),H.a.createElement(Xr,{label:qr("After text","vk-blocks"),help:qr("Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-external-link-alt","vk-blocks"),value:k,onChange:function(e){return o({fontAwesomeIconAfter:e})},placeholder:"fas fa-external-link-alt"}))),H.a.createElement(Gr,{title:qr("Layout Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Yr,{label:qr("Layout Type","vk-blocks"),selected:b,options:[{label:qr("Right","vk-blocks"),value:"right"},{label:qr("Left","vk-blocks"),value:"left"}],onChange:function(e){return o({layout:e})}}))),H.a.createElement(fr,{attributes:t,setAttributes:o,className:n,for_:"edit"}))},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(fr,{attributes:t,className:n,for_:"save"})},deprecated:$r});var ra=lodash.assign,aa=wp.i18n.__,la=wp.hooks.addFilter;la("blocks.registerBlockType","vk-blocks/heading-style",(function(e){var t;return t=e.name,["core/heading"].includes(t)&&(e.attributes=ra(e.attributes,{color:{type:"string"}})),e})),wp.blocks.registerBlockStyle("core/heading",[{name:"vk-heading-default",label:aa("Default","vk-blocks"),isDefault:!0},{name:"vk-heading-plain",label:aa("Plain","vk-blocks")},{name:"vk-heading-background_fill_lightgray",label:aa("Background fill lightgray","vk-blocks")},{name:"vk-heading-double_black",label:aa("Double border top and bottom black","vk-blocks")},{name:"vk-heading-double_bottomborder_black",label:aa("Double border bottom black","vk-blocks")},{name:"vk-heading-solid_black",label:aa("Solid border top and bottom black","vk-blocks")},{name:"vk-heading-solid_bottomborder_black",label:aa("Solid border bottom black","vk-blocks")},{name:"vk-heading-dotted_bottomborder_black",label:aa("Dotted border bottom black","vk-blocks")},{name:"vk-heading-both_ends",label:aa("Both ends","vk-blocks")},{name:"vk-heading-brackets_black",label:aa("Brackets black","vk-blocks")}]);n(5);function ca(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if(!(Symbol.iterator in Object(e))&&"[object Arguments]"!==Object.prototype.toString.call(e))return;var n=[],o=!0,r=!1,a=void 0;try{for(var l,c=e[Symbol.iterator]();!(o=(l=c.next()).done)&&(n.push(l.value),!t||n.length!==t);o=!0);}catch(e){r=!0,a=e}finally{try{o||null==c.return||c.return()}finally{if(r)throw a}}return n}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}var ia=wp.components.ToggleControl,sa=wp.element.useState,ua=function(e){var t=e.initialFixedTable,n=e.label,o=e.helpYes,r=e.helpNo,a=e.schema,l=e.setAttributes,c=ca(sa(t),2),i=c[0],s=c[1];return React.createElement(ia,{label:n,help:i?o:r,checked:i,onChange:function(){var e,t,n;s(!i),l((n=!i,(t=a)in(e={})?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e))}})};function ma(){return(ma=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e}).apply(this,arguments)}function pa(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,o)}return n}function ba(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?pa(Object(n),!0).forEach((function(t){fa(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):pa(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function fa(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ka=wp.i18n.__,va=wp.element.Fragment,da=wp.hooks.addFilter,ya=wp.components,_a=ya.PanelBody,ga=ya.BaseControl,ha=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).InspectorControls,Ea=wp.compose.createHigherOrderComponent,Ca=function(e,t){return-1!==e.indexOf(t)},wa=function(e){var t=void 0!==["core","vk-blocks"].find((function(t){return Ca(e,t)}));return void 0!==["core/block","vk-blocks/card-item"].find((function(t){return Ca(e,t)}))&&(t=!1),t};da("blocks.registerBlockType","vk-blocks/hidden-extension",(function(e){return wa(e.name)&&(e.attributes=ba({},e.attributes,{},{vkb_hidden:{type:"boolean",default:!1},vkb_hidden_xl:{type:"boolean",default:!1},vkb_hidden_lg:{type:"boolean",default:!1},vkb_hidden_md:{type:"boolean",default:!1},vkb_hidden_sm:{type:"boolean",default:!1},vkb_hidden_xs:{type:"boolean",default:!1}})),e})),wp.hooks.addFilter("editor.BlockEdit","vk-blocks/hidden-extension",Ea((function(e){return function(t){return wa(t.name)?React.createElement(va,null,React.createElement(e,t),React.createElement(ha,null,React.createElement(_a,{title:ka("Hidden Settings","vk-blocks"),initialOpen:!1},React.createElement(ga,{label:ka("Hidden at screel size","vk-blocks")},React.createElement("p",null,ka("Note : This function is display hidden only. Actually Block is output to HTML.Pleade don't use you must not bisible item.Don't use it for blocks you really don't want to display.","vk-blocks")),React.createElement(ua,ma({label:ka("Hidden ( Screen size : all )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden,schema:"vkb_hidden"},t)),React.createElement(ua,ma({label:ka("Hidden ( Screen size : xs )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden_xs,schema:"vkb_hidden_xs"},t)),React.createElement(ua,ma({label:ka("Hidden ( Screen size : sm )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden_sm,schema:"vkb_hidden_sm"},t)),React.createElement(ua,ma({label:ka("Hidden ( Screen size : md )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden_md,schema:"vkb_hidden_md"},t)),React.createElement(ua,ma({label:ka("Hidden ( Screen size : lg )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden_lg,schema:"vkb_hidden_lg"},t)),React.createElement(ua,ma({label:ka("Hidden ( Screen size : xl )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden_xl,schema:"vkb_hidden_xl"},t)),React.createElement("p",null,ka("If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.","vk-blocks")))))):React.createElement(e,t)}}),"addHiddenSection")),wp.hooks.addFilter("blocks.getSaveElement","vk-blocks/hidden-extension",(function(e,t,n){var o=n.vkb_hidden,r=n.vkb_hidden_xl,a=n.vkb_hidden_lg,l=n.vkb_hidden_md,c=n.vkb_hidden_sm,i=n.vkb_hidden_xs;if(o||r||a||l||c||i){var s=o&&"vk_hidden",u=r&&"vk_hidden-xl",m=a&&"vk_hidden-lg",p=l&&"vk_hidden-md",b=c&&"vk_hidden-sm",f=i&&"vk_hidden-xs";e&&(e=ba({},e,{},{props:ba({},e.props,{},{className:be()(e.props.className,s,u,m,p,b,f)})}))}return e})),wp.hooks.addFilter("editor.BlockListBlock","vk-blocks/hidden-extension",Ea((function(e){return function(t){var n=t.attributes.vkb_hidden_xl||t.attributes.vkb_hidden_lg||t.attributes.vkb_hidden_md||t.attributes.vkb_hidden_sm||t.attributes.vkb_hidden_xs||t.attributes.vkb_hidden?"vk_edit_hidden_warning":"",o=t.attributes.vkb_hidden?n+" vk_edit_hidden_all":n;return React.createElement(e,ma({},t,{className:o}))}}),"addHiddenWarning"));n(6)}]);
|
1 |
+
!function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s=7)}([function(e,t,n){"use strict";e.exports=n(3)},function(e,t,n){var o;
|
2 |
/*!
|
3 |
Copyright (c) 2017 Jed Watson.
|
4 |
Licensed under the MIT License (MIT), see
|
5 |
http://jedwatson.github.io/classnames
|
6 |
+
*/!function(){"use strict";var n={}.hasOwnProperty;function r(){for(var e=[],t=0;t<arguments.length;t++){var o=arguments[t];if(o){var l=typeof o;if("string"===l||"number"===l)e.push(o);else if(Array.isArray(o)&&o.length){var a=r.apply(null,o);a&&e.push(a)}else if("object"===l)for(var c in o)n.call(o,c)&&o[c]&&e.push(c)}}return e.join(" ")}e.exports?(r.default=r,e.exports=r):void 0===(o=function(){return r}.apply(t,[]))||(e.exports=o)}()},function(e,t,n){e.exports=function(e,t){var n,o,r,l=0;function a(){var t,a,c=o,i=arguments.length;e:for(;c;){if(c.args.length===arguments.length){for(a=0;a<i;a++)if(c.args[a]!==arguments[a]){c=c.next;continue e}return c!==o&&(c===r&&(r=c.prev),c.prev.next=c.next,c.next&&(c.next.prev=c.prev),c.next=o,c.prev=null,o.prev=c,o=c),c.val}c=c.next}for(t=new Array(i),a=0;a<i;a++)t[a]=arguments[a];return c={args:t,val:e.apply(null,t)},o?(o.prev=c,c.next=o):r=c,l===n?(r=r.prev).next=null:l++,o=c,c.val}return t&&t.maxSize&&(n=t.maxSize),a.clear=function(){o=null,r=null,l=0},a}},function(e,t,n){"use strict";
|
7 |
/** @license React v16.12.0
|
8 |
* react.production.min.js
|
9 |
*
|
11 |
*
|
12 |
* This source code is licensed under the MIT license found in the
|
13 |
* LICENSE file in the root directory of this source tree.
|
14 |
+
*/var o=n(4),r="function"==typeof Symbol&&Symbol.for,l=r?Symbol.for("react.element"):60103,a=r?Symbol.for("react.portal"):60106,c=r?Symbol.for("react.fragment"):60107,i=r?Symbol.for("react.strict_mode"):60108,s=r?Symbol.for("react.profiler"):60114,u=r?Symbol.for("react.provider"):60109,p=r?Symbol.for("react.context"):60110,m=r?Symbol.for("react.forward_ref"):60112,b=r?Symbol.for("react.suspense"):60113;r&&Symbol.for("react.suspense_list");var v=r?Symbol.for("react.memo"):60115,k=r?Symbol.for("react.lazy"):60116;r&&Symbol.for("react.fundamental"),r&&Symbol.for("react.responder"),r&&Symbol.for("react.scope");var f="function"==typeof Symbol&&Symbol.iterator;function d(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var _={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},g={};function y(e,t,n){this.props=e,this.context=t,this.refs=g,this.updater=n||_}function h(){}function w(e,t,n){this.props=e,this.context=t,this.refs=g,this.updater=n||_}y.prototype.isReactComponent={},y.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(d(85));this.updater.enqueueSetState(this,e,t,"setState")},y.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},h.prototype=y.prototype;var x=w.prototype=new h;x.constructor=w,o(x,y.prototype),x.isPureReactComponent=!0;var E={current:null},C={current:null},R=Object.prototype.hasOwnProperty,N={key:!0,ref:!0,__self:!0,__source:!0};function S(e,t,n){var o,r={},a=null,c=null;if(null!=t)for(o in void 0!==t.ref&&(c=t.ref),void 0!==t.key&&(a=""+t.key),t)R.call(t,o)&&!N.hasOwnProperty(o)&&(r[o]=t[o]);var i=arguments.length-2;if(1===i)r.children=n;else if(1<i){for(var s=Array(i),u=0;u<i;u++)s[u]=arguments[u+2];r.children=s}if(e&&e.defaultProps)for(o in i=e.defaultProps)void 0===r[o]&&(r[o]=i[o]);return{$$typeof:l,type:e,key:a,ref:c,props:r,_owner:C.current}}function B(e){return"object"==typeof e&&null!==e&&e.$$typeof===l}var T=/\/+/g,O=[];function I(e,t,n,o){if(O.length){var r=O.pop();return r.result=e,r.keyPrefix=t,r.func=n,r.context=o,r.count=0,r}return{result:e,keyPrefix:t,func:n,context:o,count:0}}function A(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>O.length&&O.push(e)}function j(e,t,n){return null==e?0:function e(t,n,o,r){var c=typeof t;"undefined"!==c&&"boolean"!==c||(t=null);var i=!1;if(null===t)i=!0;else switch(c){case"string":case"number":i=!0;break;case"object":switch(t.$$typeof){case l:case a:i=!0}}if(i)return o(r,t,""===n?"."+P(t,0):n),1;if(i=0,n=""===n?".":n+":",Array.isArray(t))for(var s=0;s<t.length;s++){var u=n+P(c=t[s],s);i+=e(c,u,o,r)}else if(null===t||"object"!=typeof t?u=null:u="function"==typeof(u=f&&t[f]||t["@@iterator"])?u:null,"function"==typeof u)for(t=u.call(t),s=0;!(c=t.next()).done;)i+=e(c=c.value,u=n+P(c,s++),o,r);else if("object"===c)throw o=""+t,Error(d(31,"[object Object]"===o?"object with keys {"+Object.keys(t).join(", ")+"}":o,""));return i}(e,"",t,n)}function P(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+(""+e).replace(/[=:]/g,(function(e){return t[e]}))}(e.key):t.toString(36)}function z(e,t){e.func.call(e.context,t,e.count++)}function M(e,t,n){var o=e.result,r=e.keyPrefix;e=e.func.call(e.context,t,e.count++),Array.isArray(e)?F(e,o,n,(function(e){return e})):null!=e&&(B(e)&&(e=function(e,t){return{$$typeof:l,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(e,r+(!e.key||t&&t.key===e.key?"":(""+e.key).replace(T,"$&/")+"/")+n)),o.push(e))}function F(e,t,n,o,r){var l="";null!=n&&(l=(""+n).replace(T,"$&/")+"/"),j(e,M,t=I(t,l,o,r)),A(t)}function L(){var e=E.current;if(null===e)throw Error(d(321));return e}var U={Children:{map:function(e,t,n){if(null==e)return e;var o=[];return F(e,o,null,t,n),o},forEach:function(e,t,n){if(null==e)return e;j(e,z,t=I(null,null,t,n)),A(t)},count:function(e){return j(e,(function(){return null}),null)},toArray:function(e){var t=[];return F(e,t,null,(function(e){return e})),t},only:function(e){if(!B(e))throw Error(d(143));return e}},createRef:function(){return{current:null}},Component:y,PureComponent:w,createContext:function(e,t){return void 0===t&&(t=null),(e={$$typeof:p,_calculateChangedBits:t,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null}).Provider={$$typeof:u,_context:e},e.Consumer=e},forwardRef:function(e){return{$$typeof:m,render:e}},lazy:function(e){return{$$typeof:k,_ctor:e,_status:-1,_result:null}},memo:function(e,t){return{$$typeof:v,type:e,compare:void 0===t?null:t}},useCallback:function(e,t){return L().useCallback(e,t)},useContext:function(e,t){return L().useContext(e,t)},useEffect:function(e,t){return L().useEffect(e,t)},useImperativeHandle:function(e,t,n){return L().useImperativeHandle(e,t,n)},useDebugValue:function(){},useLayoutEffect:function(e,t){return L().useLayoutEffect(e,t)},useMemo:function(e,t){return L().useMemo(e,t)},useReducer:function(e,t,n){return L().useReducer(e,t,n)},useRef:function(e){return L().useRef(e)},useState:function(e){return L().useState(e)},Fragment:c,Profiler:s,StrictMode:i,Suspense:b,createElement:S,cloneElement:function(e,t,n){if(null==e)throw Error(d(267,e));var r=o({},e.props),a=e.key,c=e.ref,i=e._owner;if(null!=t){if(void 0!==t.ref&&(c=t.ref,i=C.current),void 0!==t.key&&(a=""+t.key),e.type&&e.type.defaultProps)var s=e.type.defaultProps;for(u in t)R.call(t,u)&&!N.hasOwnProperty(u)&&(r[u]=void 0===t[u]&&void 0!==s?s[u]:t[u])}var u=arguments.length-2;if(1===u)r.children=n;else if(1<u){s=Array(u);for(var p=0;p<u;p++)s[p]=arguments[p+2];r.children=s}return{$$typeof:l,type:e.type,key:a,ref:c,props:r,_owner:i}},createFactory:function(e){var t=S.bind(null,e);return t.type=e,t},isValidElement:B,version:"16.12.0",__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{ReactCurrentDispatcher:E,ReactCurrentBatchConfig:{suspense:null},ReactCurrentOwner:C,IsSomeRendererActing:{current:!1},assign:o}},H={default:U},V=H&&U||H;e.exports=V.default||V},function(e,t,n){"use strict";
|
15 |
/*
|
16 |
object-assign
|
17 |
(c) Sindre Sorhus
|
18 |
@license MIT
|
19 |
+
*/var o=Object.getOwnPropertySymbols,r=Object.prototype.hasOwnProperty,l=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var n,c,i=a(e),s=1;s<arguments.length;s++){for(var u in n=Object(arguments[s]))r.call(n,u)&&(i[u]=n[u]);if(o){c=o(n);for(var p=0;p<c.length;p++)l.call(n,c[p])&&(i[c[p]]=n[c[p]])}}return i}},function(e,t){var n=wp.i18n.__;wp.blocks.registerBlockStyle("core/image",[{name:"vk-image-border",label:n("Border","vk-blocks")},{name:"vk-image-photoFrame",label:n("Photo frame","vk-blocks")}])},function(e,t){},function(e,t,n){"use strict";n.r(t);var o={};n.r(o),n.d(o,"name",(function(){return ac})),n.d(o,"settings",(function(){return cc}));var r=function(e){switch(e){case"#f78da7":return"vk-has-pale-pink-color";case"#cf2e2e":return"vk-has-vivid-red-color";case"#ff6900":return"vk-has-luminous-vivid-orange-color";case"#fcb900":return"vk-has-luminous-vivid-amber-color";case"#7bdcb5":return"vk-has-light-green-cyan-color";case"#00d084":return"vk-has-vivid-green-cyan-color";case"#8ed1fc":return"vk-has-pale-cyan-blue-color";case"#0693e3":return"vk-has-vivid-cyan-blue-color";case"#9b51e0":return"vk-has-vivid-purple-color";case"#eee":return"vk-has-very-light-gray-color";case"#abb8c3":return"vk-has-cyan-bluish-gray-color";case"#313131":return"vk-has-very-dark-gray-color"}},l=wp.data,a=l.select,c=l.dispatch,i=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,s=(a("core/block-editor")?a("core/block-editor"):a("core/editor"),c("core/block-editor")?c("core/block-editor"):c("core/editor"),lodash.assign),u=wp.i18n.__,p=wp.element.Fragment,m=wp.hooks.addFilter,b=wp.components.PanelBody,v=i.InspectorControls,k=i.ColorPalette,f=wp.compose.createHigherOrderComponent,d=function(e){return["core/group"].includes(e)};m("blocks.registerBlockType","vk-blocks/group-style",(function(e){return d(e.name)&&(e.attributes=s(e.attributes,{color:{type:"string"}})),e})),m("editor.BlockEdit","vk-blocks/group-style",f((function(e){var t="";return function(n){return d(n.name)&&n.isSelected?(t=n.attributes.color?n.attributes.color:"#fffd6b",React.createElement(p,null,React.createElement(e,n),React.createElement(v,null,React.createElement(b,{title:u("Border Color","vk-blocks"),initialOpen:!1,className:"group-border-color-controle"},React.createElement(k,{value:t,disableCustomColors:!0,onChange:function(e){var o=r(e);if(n.attributes.className){var l=n.attributes.className,a=(l=l.split(" ")).filter((function(e){return-1===e.indexOf("vk-has-")}));a.push(o),o=a.join(" ")}t=e,n.setAttributes({className:o,color:e})}}))))):React.createElement(e,n)}}),"addMyCustomBlockControls")),wp.blocks.registerBlockStyle("core/group",[{name:"vk-group-solid",label:u("Solid","vk-blocks")},{name:"vk-group-solid-roundcorner",label:u("Solid Roundcorner","vk-blocks")},{name:"vk-group-dotted",label:u("Dotted","vk-blocks")},{name:"vk-group-dashed",label:u("Dashed","vk-blocks")},{name:"vk-group-double",label:u("Double","vk-blocks")},{name:"vk-group-stitch",label:u("Stitch","vk-blocks")},{name:"vk-group-top-bottom-border",label:u("Border Top Bottom","vk-blocks")},{name:"vk-group-shadow",label:u("Shadow","vk-blocks")}]);var _=lodash.assign,g=wp.i18n.__,y=wp.element.Fragment,h=wp.hooks.addFilter,w=wp.components.PanelBody,x=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,E=x.InspectorControls,C=x.ColorPalette,R=wp.compose.createHigherOrderComponent,N=function(e){return["core/list"].includes(e)};function S(e,t){var n=e.match(/^#([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i),o=null;return n&&(o=n.slice(1,4).map((function(e){return parseInt(e,16)}))),(n=e.match(/^#([0-9a-f])([0-9a-f])([0-9a-f])$/i))&&(o=n.slice(1,4).map((function(e){return 17*parseInt(e,16)}))),o?"rgba(".concat(o[0],", ").concat(o[1],", ").concat(o[2],", ").concat(t,")"):null}h("blocks.registerBlockType","vk-blocks/list-style",(function(e){return N(e.name)&&(e.attributes=_(e.attributes,{color:{type:"string"}})),e})),h("editor.BlockEdit","vk-blocks/list-style",R((function(e){var t="";return function(n){return N(n.name)&&n.isSelected?(t=n.attributes.color?n.attributes.color:"#fffd6b",React.createElement(y,null,React.createElement(e,n),React.createElement(E,null,React.createElement(w,{title:g("List Icon Color","vk-blocks"),initialOpen:!1,className:"list-color-controle"},React.createElement(C,{value:t,disableCustomColors:!0,onChange:function(e){var o=r(e);if(n.attributes.className){var l=n.attributes.className,a=(l=l.split(" ")).filter((function(e){return-1===e.indexOf("vk-has-")}));a.push(o),o=a.join(" ")}t=e,n.setAttributes({className:o,color:e})}}))))):React.createElement(e,n)}}),"addMyCustomBlockControls")),wp.blocks.registerBlockStyle("core/list",[{name:"vk-default",label:g("Default","vk-blocks"),isDefault:!0},{name:"vk-arrow-mark",label:g("Arrow","vk-blocks")},{name:"vk-triangle-mark",label:g("Triangle","vk-blocks")},{name:"vk-check-mark",label:g("Check","vk-blocks")},{name:"vk-check-square-mark",label:g("Check Square","vk-blocks")},{name:"vk-check-circle-mark",label:g("Check Circle","vk-blocks")},{name:"vk-handpoint-mark",label:g("Handpoint","vk-blocks")},{name:"vk-pencil-mark",label:g("Pencil","vk-blocks")},{name:"vk-smile-mark",label:g("Smile","vk-blocks")},{name:"vk-frown-mark",label:g("Frown","vk-blocks")},{name:"vk-numbered-circle-mark",label:g("Numbered Circle","vk-blocks")},{name:"vk-numbered-square-mark",label:g("Numbered Square","vk-blocks")}]);var B=wp.i18n.__,T=window.wp.richText,O=T.registerFormatType,I=T.toggleFormat,A=T.applyFormat,j=T.removeFormat,P=T.getActiveFormat,z=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,M=z.RichTextToolbarButton,F=z.RichTextShortcut,L=z.InspectorControls,U=z.PanelColorSettings,H=(z.getColorObjectByColorValue,wp.element.Fragment),V="vk-blocks/highlighter",D=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M26.9,462.2l104.7,39.6l34-34l-73.2-73.2L26.9,462.2z M146.5,231.8c-10.3,9.1-14.4,23.4-10.4,36.6l12.5,41.1l-48.9,48.9 L201,459.6l48.8-48.8l41,12.6c13.2,4,27.5,0,36.6-10.3l27.3-29.1L175.5,204.6L146.5,231.8L146.5,231.8z M533.7,122.3L437,25.7 C417.4,6,385.8,5,364.9,23.4L201,186.6l171.8,171.8l163.1-163.9C554.3,173.6,553.3,142,533.7,122.3L533.7,122.3z"}));function $(e){return($="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 q(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function W(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function J(e,t){return!t||"object"!==$(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}function G(e){return(G=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Y(e,t){return(Y=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}O(V,{title:B("Highlighter","vk-blocks"),tagName:"span",className:"vk_highlighter",attributes:{data:"data-color",style:"style"},edit:function(e){var t,n=e.value,o=e.isActive,r=e.onChange;if(o){var l=P(n,V);t=l.attributes.data}var a=function(e){e=function(e){return void 0===e&&(e="#fffd6b"),e}(e),r(I(n,{type:V,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(S(e,.7)," 0);")}}))};return React.createElement(H,null,React.createElement(L,null,React.createElement(U,{title:B("Highlighter","vk-blocks"),initialOpen:!1,colorSettings:[{value:t,onChange:function(e){r(e?A(n,{type:V,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(S(e,.7)," 0);")}}):j(n,V))},label:B("Highlight Color","vk-blocks")}]})),React.createElement(F,{type:"primary",character:"h",onUse:function(){return a(t)}}),React.createElement(M,{icon:D,title:B("Highlighter","vk-blocks"),onClick:function(){return a(t)},isActive:o,shortcutType:"primary",shortcutCharacter:"h"}))}});var K=wp.i18n.__,Z=i.RichText,Q=i.MediaUpload,X=wp.components.Button,ee=function(e){function t(){return q(this,t),J(this,G(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Y(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.vk_staff_text_name,n=e.vk_staff_text_caption,o=e.vk_staff_text_role,r=e.vk_staff_text_profileTitle,l=e.vk_staff_text_profileText,a=e.vk_staff_photo_image,c=e.vk_staff_photo_image_alt,i=e.vk_staff_layout,s=e.vk_staff_nameColor,u=e.vk_staff_captionColor,p=e.vk_staff_positionColor,m=e.vk_staff_profileTitleColor,b=e.vk_staff_profileTextColor,v=e.vk_staff_photoBorder,k=this.props.setAttributes,f=this.props.className,d=this.props.for_,_="";return"edit"===d?_=React.createElement("div",{className:"".concat(f," vk_staff vk_staff-layout-").concat(i)},React.createElement("div",{className:"vk_staff_text"},React.createElement(Z,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},onChange:function(e){return k({vk_staff_text_name:e})},value:t,placeholder:K("Your Name","vk-blocks")}),React.createElement(Z,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},onChange:function(e){return k({vk_staff_text_caption:e})},value:n,placeholder:K("Caption","vk-blocks")}),React.createElement(Z,{tagName:"p",className:"vk_staff_text_role",style:{color:p},onChange:function(e){return k({vk_staff_text_role:e})},value:o,placeholder:K("Role position","vk-blocks")}),React.createElement(Z,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:m},onChange:function(e){return k({vk_staff_text_profileTitle:e})},value:r,placeholder:K("Profile title","vk-blocks")}),React.createElement(Z,{tagName:"p",className:"vk_staff_text_profileText",style:{color:b},onChange:function(e){return k({vk_staff_text_profileText:e})},value:l,placeholder:K("Profile text","vk-blocks")})),React.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(v)},React.createElement(Q,{onSelect:function(e){return k({vk_staff_photo_image:e.sizes.full.url})},type:"image",className:"vk_staff_photo_image",value:a,render:function(e){var t=e.open;return React.createElement(X,{onClick:t,className:a?"image-button":"button button-large"},a?React.createElement("img",{className:"vk_staff_photo_image",src:a,alt:K(c,"vk-blocks")}):K("Select image","vk-blocks"))}}))):"save"===d&&(_=React.createElement("div",{className:"".concat(f," vk_staff vk_staff-layout-").concat(i)},React.createElement("div",{className:"vk_staff_text"},React.createElement(Z.Content,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},value:t}),React.createElement(Z.Content,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},value:n}),React.createElement(Z.Content,{tagName:"p",className:"vk_staff_text_role",style:{color:p},value:o}),React.createElement(Z.Content,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:m},value:r}),React.createElement(Z.Content,{tagName:"p",className:"vk_staff_text_profileText",style:{color:b},value:l})),a?React.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(v)},React.createElement("img",{className:"vk_staff_photo_image",src:a,alt:c?K(c,"vk-blocks"):""})):"")),_}}])&&W(n.prototype,o),r&&W(n,r),t}(wp.element.Component),te=wp.i18n.__,ne=wp.blocks.registerBlockType,oe=wp.components,re=oe.TextControl,le=oe.PanelBody,ae=oe.BaseControl,ce=oe.SelectControl,ie=wp.element.Fragment,se=i.InspectorControls,ue=i.ColorPalette,pe=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M528,34H48C21.5,34,0,55.5,0,82v352c0,26.5,21.5,48,48,48h480c26.5,0,48-21.5,48-48V82C576,55.5,554.5,34,528,34z M528,434 H48V82h480V434z"}),React.createElement("path",{d:"M407.6,241.9c30.9,0,55.9-25.1,55.9-55.9S438.5,130,407.6,130s-55.9,25.1-55.9,55.9S376.8,241.9,407.6,241.9z"}),React.createElement("path",{d:"M329.3,353.8h156.6c10.8,0,19.6-7.5,19.6-16.8v-16.8c0-27.8-26.3-50.3-58.7-50.3c-9.4,0-16.3,7-39.2,7 c-23.5,0-29.2-7-39.2-7c-32.4,0-58.7,22.6-58.7,50.3V337C309.7,346.2,318.5,353.8,329.3,353.8z"}),React.createElement("path",{d:"M96.2,395h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2v14.4C89,391.7,92.3,395,96.2,395 z"}),React.createElement("path",{d:"M96.2,339.2h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2V332 C89,336,92.3,339.2,96.2,339.2z"}),React.createElement("path",{d:"M96.2,283.4h161.1c4,0,7.2-3.3,7.2-7.2v-14.4c0-4-3.3-7.2-7.2-7.2H96.2c-4,0-7.2,3.3-7.2,7.2v14.4 C89,280.2,92.3,283.4,96.2,283.4z"}),React.createElement("path",{d:"M92.9,219.1h166.3c2.1,0,3.9-1.8,3.9-3.9v-7.8c0-2.1-1.8-3.9-3.9-3.9H92.9c-2.1,0-3.9,1.8-3.9,3.9v7.8 C89,217.4,90.8,219.1,92.9,219.1z"}),React.createElement("path",{d:"M99.7,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7H99.7c-5.9,0-10.7,4.8-10.7,10.7v21.4 C89,172.8,93.8,177.6,99.7,177.6z"}),React.createElement("path",{d:"M157,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7H157c-5.9,0-10.7,4.8-10.7,10.7v21.4 C146.3,172.8,151.1,177.6,157,177.6z"}),React.createElement("path",{d:"M214.2,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7h-22.4c-5.9,0-10.7,4.8-10.7,10.7v21.4 C203.5,172.8,208.4,177.6,214.2,177.6z"}),React.createElement("path",{d:"M271.5,177.6h22.4c5.9,0,10.7-4.8,10.7-10.7v-21.4c0-5.9-4.8-10.7-10.7-10.7h-22.4c-5.9,0-10.7,4.8-10.7,10.7v21.4 C260.8,172.8,265.6,177.6,271.5,177.6z"}));ne("vk-blocks/staff",{title:te("Staff","vk-blocks"),icon:pe,category:"vk-blocks-cat",attributes:{vk_staff_text_name:{type:"string",source:"html",selector:"h3"},vk_staff_text_caption:{type:"string",source:"html",selector:"p.vk_staff_text_caption"},vk_staff_text_role:{type:"string",source:"html",selector:"p.vk_staff_text_role"},vk_staff_text_profileTitle:{type:"string",source:"html",selector:"h4"},vk_staff_text_profileText:{type:"string",source:"html",selector:"p.vk_staff_text_profileText"},vk_staff_photo_image:{type:"string",default:""},vk_staff_photo_image_alt:{type:"string",default:"Profile Picture"},vk_staff_layout:{type:"string",default:"default"},vk_staff_nameColor:{type:"string",default:"inherit"},vk_staff_captionColor:{type:"string",default:"inherit"},vk_staff_positionColor:{type:"string",default:"inherit"},vk_staff_profileTitleColor:{type:"string",default:"inherit"},vk_staff_profileTextColor:{type:"string",default:"inherit"},vk_staff_photoBorder:{type:"string",default:"default"}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.vk_staff_photo_image_alt,l=t.vk_staff_layout,a=t.vk_staff_nameColor,c=t.vk_staff_captionColor,i=t.vk_staff_positionColor,s=t.vk_staff_profileTitleColor,u=t.vk_staff_profileTextColor,p=t.vk_staff_photoBorder;return React.createElement(ie,null,React.createElement(se,null,React.createElement(le,{title:te("Layout","vk-blocks")},React.createElement(ce,{value:l,onChange:function(e){return n({vk_staff_layout:e})},options:[{value:"default",label:te("Default","vk-blocks")},{value:"imageLeft",label:te("Image left","vk-blocks")}]})),React.createElement(le,{title:te("Image border","vk-blocks")},React.createElement(ce,{value:p,onChange:function(e){return n({vk_staff_photoBorder:e})},options:[{value:"default",label:te("Default","vk-blocks")},{value:"none",label:te("None","vk-blocks")}]})),React.createElement(le,{title:te("Alt text","vk-blocks")},React.createElement(ae,{help:te("Set the alt text for profile image","vk-blocks")},React.createElement(re,{value:r,onChange:function(e){return n({vk_staff_photo_image_alt:e})}}))),React.createElement(le,{title:te("Color","vk-blocks")},React.createElement(ae,{label:te("Staff name","vk-blocks")},React.createElement(ue,{value:a,onChange:function(e){return n({vk_staff_nameColor:e})}})),React.createElement(ae,{label:te("Name caption","vk-blocks")},React.createElement(ue,{value:c,onChange:function(e){return n({vk_staff_captionColor:e})}})),React.createElement(ae,{label:te("Role position","vk-blocks")},React.createElement(ue,{value:i,onChange:function(e){return n({vk_staff_positionColor:e})}})),React.createElement(ae,{label:te("Profile title","vk-blocks")},React.createElement(ue,{value:s,onChange:function(e){return n({vk_staff_profileTitleColor:e})}})),React.createElement(ae,{label:te("Profile text","vk-blocks")},React.createElement(ue,{value:u,onChange:function(e){return n({vk_staff_profileTextColor:e})}})))),React.createElement(ee,{attributes:t,setAttributes:n,className:o,for_:"edit"}))},save:function(e){var t=e.attributes;return React.createElement(ee,{attributes:t,setAttributes:"",className:"",for_:"save"})}});var me=n(0),be=n.n(me),ve=n(1),ke=n.n(ve);function fe(e){return(fe="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 de(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _e(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function ge(e,t){return!t||"object"!==fe(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}function ye(e){return(ye=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function he(e,t){return(he=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var we=function(e){function t(){return de(this,t),ge(this,ye(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&he(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.anchor,n=e.unit,o=e.pc,r=e.tablet,l=e.mobile,a=this.props.className;return be.a.createElement("div",{id:t,className:ke()("vk_spacer",a)},be.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:o+n}}),be.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:r+n}}),be.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:l+n}}))}}])&&_e(n.prototype,o),r&&_e(n,r),t}(be.a.Component);function xe(e){return(xe="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 Ee(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ce(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Re(e,t,n){return t&&Ce(e.prototype,t),n&&Ce(e,n),e}function Ne(e,t){return!t||"object"!==xe(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}function Se(e){return(Se=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Be(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,writable:!0,configurable:!0}}),t&&Te(e,t)}function Te(e,t){return(Te=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Oe=function(e){function t(){return Ee(this,t),Ne(this,Se(t).apply(this,arguments))}return Be(t,e),Re(t,[{key:"render",value:function(){var e=this.props.attributes,t=e.unit,n=e.pc,o=e.tablet,r=e.mobile;return be.a.createElement("div",{className:"vk_spacer"},be.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:n+t}}),be.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:o+t}}),be.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:r+t}}))}}]),t}(be.a.Component),Ie=function(e){function t(){return Ee(this,t),Ne(this,Se(t).apply(this,arguments))}return Be(t,e),Re(t,[{key:"render",value:function(){var e=this.props.attributes,t=e.unit,n=e.pc,o=e.tablet,r=e.mobile,l=this.props.className;return be.a.createElement("div",{className:"".concat(l," vk_spacer")},be.a.createElement("div",{className:"vk_spacer-display-pc",style:{height:n+t}}),be.a.createElement("div",{className:"vk_spacer-display-tablet",style:{height:o+t}}),be.a.createElement("div",{className:"vk_spacer-display-mobile",style:{height:r+t}}))}}]),t}(be.a.Component),Ae={unit:{type:"string",default:"px"},pc:{type:"number",default:50},tablet:{type:"number",default:10},mobile:{type:"number",default:10}},je=[{attributes:Ae,save:function(e){var t=e.attributes;return be.a.createElement(Ie,{attributes:t})}},{attributes:Ae,save:function(e){var t=e.attributes;return be.a.createElement(Oe,{attributes:t})}}],Pe=function(e,t){return e||0==e?e:t},ze=wp.i18n.__,Me=wp.blocks.registerBlockType,Fe=wp.components,Le=Fe.RangeControl,Ue=Fe.PanelBody,He=Fe.BaseControl,Ve=Fe.SelectControl,De=wp.element.Fragment,$e=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).InspectorControls,qe=be.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},be.a.createElement("g",null,be.a.createElement("rect",{x:"108.8",y:"18.7",width:"358.5",height:"40"}),be.a.createElement("rect",{x:"108.8",y:"453.3",width:"358.5",height:"40"}),be.a.createElement("polygon",{points:"171.4,253.2 131.4,253.2 131.4,412.6 290.8,412.6 290.8,372.6 199.7,372.6 404.6,167.7 404.6,258.8 444.6,258.8 444.6,99.4 285.2,99.4 285.2,139.4 376.3,139.4 171.4,344.3 \t"})));Me("vk-blocks/spacer",{title:ze("Responsive Spacer","vk-blocks"),icon:qe,category:"vk-blocks-cat-layout",attributes:{anchor:{type:"string",default:null},unit:{type:"string",default:"px"},pc:{type:"number",default:40},tablet:{type:"number",default:30},mobile:{type:"number",default:20}},supports:{className:!1,anchor:!0},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=(t.anchor,t.unit),l=t.pc,a=t.tablet,c=t.mobile;return be.a.createElement(De,null,be.a.createElement($e,null,be.a.createElement(Ue,null,be.a.createElement(Ve,{label:ze("Unit Type","vk-blocks"),value:r,onChange:function(e){return n({unit:e})},options:[{value:"px",label:ze("px","vk-blocks")},{value:"em",label:ze("em","vk-blocks")},{value:"rem",label:ze("rem","vk-blocks")},{value:"vw",label:ze("vw","vk-blocks")}]}),be.a.createElement(He,{label:ze("Height for each device.","vk-blocks")},be.a.createElement(Le,{label:ze("PC","vk-blocks"),value:l,onChange:function(e){return n({pc:Pe(e,l)})},step:.1}),be.a.createElement(Le,{label:ze("Tablet","vk-blocks"),value:a,onChange:function(e){return n({tablet:Pe(e,a)})},step:.1}),be.a.createElement(Le,{label:ze("Mobile","vk-blocks"),value:c,onChange:function(e){return n({mobile:Pe(e,c)})},step:.1})))),be.a.createElement(we,{attributes:t,className:o}))},save:function(e){var t=e.attributes;return be.a.createElement(we,{attributes:t})},deprecated:je});function We(e){return(We="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 Je(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Ge(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Ye(e,t){return!t||"object"!==We(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}function Ke(e){return(Ke=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ze(e,t){return(Ze=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Qe=window.lodash.range,Xe=wp.i18n,et=Xe.__,tt=Xe.sprintf,nt=wp.element.Component,ot=wp.components.Toolbar,rt=function(e){function t(){return Je(this,t),Ye(this,Ke(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Ze(e,t)}(t,e),n=t,(o=[{key:"createLevelControl",value:function(e,t,n){var o=e===t;return{icon:"heading",title:tt(et("Heading %d"),e),isActive:o,onClick:function(){return n(e)},subscript:String(e)}}},{key:"render",value:function(){var e=this,t=this.props,n=t.minLevel,o=t.maxLevel,r=t.selectedLevel,l=t.onChange;return React.createElement(ot,{controls:Qe(n,o).map((function(t){return e.createLevelControl(t,r,l)}))})}}])&&Ge(n.prototype,o),r&&Ge(n,r),t}(nt);function lt(e){return(lt="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 at(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ct(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function it(e,t){return!t||"object"!==lt(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}function st(e){return(st=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ut(e,t){return(ut=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var pt=wp.element.Component,mt=i.RichText,bt=wp.i18n.__,vt=function(e){function t(){return at(this,t),it(this,st(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&ut(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e,t,n=this.props.attributes,o=n.level,r=n.align,l=n.title,a=n.titleColor,c=n.titleSize,i=n.subText,s=n.subTextFlag,u=n.subTextColor,p=n.subTextSize,m=n.titleStyle,b=n.titleMarginBottom,v=n.outerMarginBottom,k=this.props.setAttributes,f=this.props.for_,d="vk_heading vk_heading-style-".concat(m),_="h"+o;return null!=v&&(e={marginBottom:v+"rem"}),t=null!=b?{color:a,fontSize:c+"rem",marginBottom:b+"rem",textAlign:r}:{color:a,fontSize:c+"rem",textAlign:r},"edit"===f?React.createElement("div",{className:d,style:e},React.createElement(mt,{tagName:_,value:l,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(m),placeholder:bt("Input title…","vk-blocks")}),function(){if("on"===s)return React.createElement(mt,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:p+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m),placeholder:bt("Input sub text…","vk-blocks")})}()):"save"===f?React.createElement("div",{className:d,style:e},React.createElement(mt.Content,{tagName:_,value:l,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(m),placeholder:bt("Input title…","vk-blocks")}),function(){if("on"===s)return React.createElement(mt.Content,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:p+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m),placeholder:bt("Input sub text…","vk-blocks")})}()):void 0}}])&&ct(n.prototype,o),r&&ct(n,r),t}(pt),kt={level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number"},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2.6},titleMarginBottom:{type:"number"},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.8}};function ft(e){return(ft="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 dt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function _t(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function gt(e,t){return!t||"object"!==ft(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}function yt(e){return(yt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ht(e,t){return(ht=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var wt=i.RichText,xt=wp.i18n.__,Et=function(e){function t(){return dt(this,t),gt(this,yt(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&ht(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e,t,n=this.props.attributes,o=n.level,r=n.align,l=n.title,a=n.titleColor,c=n.titleSize,i=n.subText,s=n.subTextFlag,u=n.subTextColor,p=n.subTextSize,m=n.titleStyle,b=n.titleMarginBottom,v=n.outerMarginBottom,k=this.props.setAttributes,f=this.props.for_,d="vk_heading vk_heading-style-".concat(m),_="h"+o;return null!=v&&(e={marginBottom:v+"rem"}),t=null!=b?{color:a,fontSize:c+"rem",marginBottom:b+"rem",textAlign:r}:{color:a,fontSize:c+"rem",textAlign:r},"edit"===f?React.createElement("div",{className:d,style:e},React.createElement(wt,{tagName:_,value:l,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(m),placeholder:xt("Input title…","vk-blocks")}),function(){if("on"===s)return React.createElement(wt,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:p+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m),placeholder:xt("Input sub text…","vk-blocks")})}()):"save"===f?React.createElement("div",{className:d,style:e},React.createElement(wt.Content,{tagName:_,value:l,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(m),placeholder:xt("Input title…","vk-blocks")}),function(){if("on"===s)return React.createElement(wt.Content,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:p+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m),placeholder:xt("Input sub text…","vk-blocks")})}()):void 0}}])&&_t(n.prototype,o),r&&_t(n,r),t}(wp.element.Component);function Ct(e){return(Ct="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 Rt(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Nt(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function St(e,t){return!t||"object"!==Ct(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}function Bt(e){return(Bt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Tt(e,t){return(Tt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function Ot(e){throw new Error('"'+e+'" is read-only')}var It=wp.element,At=It.Fragment,jt=It.Component,Pt=i.RichText,zt=wp.i18n.__;var Mt=[{attributes:kt,save:function(e){var t=e.attributes,n=e.className;return React.createElement("div",{className:n,id:"vk-htags-a181b726-7749-4bd8-9887-0306c0bc7bd5"},React.createElement(Et,{attributes:t,for_:"save"}))}},{attributes:kt,save:function(e){var t=e.attributes,n=e.className;return React.createElement("div",{className:n,id:"vk-htags--1"},React.createElement(Et,{attributes:t,for_:"save"}))}},{attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number",default:null},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2},titleMarginBottom:{type:"number",default:1},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.2}},save:function(e){var t=e.attributes,n=e.className;return React.createElement(Ft,{attributes:t,className:n,for_:"save"})}},{attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number"},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2.6},titleMarginBottom:{type:"number"},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.8}},supports:{className:!1,anchor:!0},save:function(e){var t=e.attributes,n=t.level,o=t.align,r=t.title,l=t.titleColor,a=t.titleSize,c=t.subText,i=t.subTextFlag,s=t.subTextColor,u=t.subTextSize,p=t.titleStyle,m=t.titleMarginBottom,b=t.outerMarginBottom,v="h"+n;return React.createElement("div",{className:"vk_heading vk_heading-style-".concat(p),style:{marginBottom:b+"rem"}},React.createElement(Pt.Content,{tagName:v,value:r,style:{color:l,fontSize:a+"rem",textAlign:o,marginBottom:m+"rem"},className:"vk_heading_title vk_heading_title-style-".concat(p)}),function(){if("on"===i)return React.createElement(Pt.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p)})}())}},{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h1.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes,n=t.heading1,o=t.heading2,r=t.heading3,l=t.content1,a=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,p=t.urlOpenType1,m=t.urlOpenType2,b=t.urlOpenType3,v=t.icon1,k=t.icon2,f=t.icon3,d=t.color1,_=t.color2,g=t.color3,y=t.bgType1,h=t.bgType2,w=t.bgType3,x=t.insertImage1,E=t.insertImage2,C=t.insertImage3;return React.createElement("article",{className:"vk_prBlocks row"},React.createElement("div",{className:"vk_prBlocks_item col-sm-4"},React.createElement("a",{href:i,target:p?"_blank":"_self",className:"vk_prBlocks_item_link"},x?React.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+x+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},React.createElement("img",{src:x,alt:""})):(d||(Ot("color1"),d="#0693e3"),"0"===y?React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:d,border:"1px solid ".concat(d)}},React.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:"#fff"}})):React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+d}},React.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:d}}))),React.createElement(Pt.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),React.createElement(Pt.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",value:l}))),React.createElement("div",{className:"vk_prBlocks_item col-sm-4"},React.createElement("a",{href:s,target:m?"_blank":"_self",className:"vk_prBlocks_item_link"},E?React.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+E+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},React.createElement("img",{src:E,alt:""})):(_||(Ot("color2"),_="#0693e3"),"0"===h?React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},React.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:"#fff"}})):React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+_}},React.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:_}}))),React.createElement(Pt.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),React.createElement(Pt.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",value:a}))),React.createElement("div",{className:"vk_prBlocks_item col-sm-4"},React.createElement("a",{href:u,target:b?"_blank":"_self",className:"vk_prBlocks_item_link"},C?React.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+C+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},React.createElement("img",{src:C,alt:""})):(g||(Ot("color3"),g="#0693e3"),"0"===w?React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:g,border:"1px solid ".concat(g)}},React.createElement("i",{className:"".concat(f," vk_prBlocks_item_icon"),style:{color:"#fff"}})):React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+g}},React.createElement("i",{className:"".concat(f," vk_prBlocks_item_icon"),style:{color:g}}))),React.createElement(Pt.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),React.createElement(Pt.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",value:c}))))}},{attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number",default:null},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2.6},titleMarginBottom:{type:"number",default:null},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.8}},supports:{className:!1,anchor:!0},save:function(e){var t=e.attributes,n=t.level,o=t.align,r=t.title,l=t.titleColor,a=t.titleSize,c=t.subText,i=t.subTextFlag,s=t.subTextColor,u=t.subTextSize,p=t.titleStyle,m=t.titleMarginBottom,b=t.outerMarginBottom,v="h"+n;return React.createElement(At,null,null==b?React.createElement("div",{className:"vk_heading vk_heading-style-".concat(p)},React.createElement(Pt.Content,{tagName:v,value:r,style:{color:l,fontSize:a+"rem",textAlign:o},className:"vk_heading_title vk_heading_title-style-".concat(p)}),function(){if("on"===i)return React.createElement(Pt.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p)})}()):React.createElement("div",{className:"vk_heading vk_heading-style-".concat(p),style:{marginBottom:b+"rem"}},React.createElement(Pt.Content,{tagName:v,value:r,style:{color:l,fontSize:a+"rem",textAlign:o,marginBottom:m+"rem"},className:"vk_heading_title vk_heading_title-style-".concat(p)}),function(){if("on"===i)return React.createElement(Pt.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p)})}()))}}],Ft=function(e){function t(){return Rt(this,t),St(this,Bt(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Tt(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e,t,n=this.props.attributes,o=n.level,r=n.align,l=n.title,a=n.titleColor,c=n.titleSize,i=n.subText,s=n.subTextFlag,u=n.subTextColor,p=n.subTextSize,m=n.titleStyle,b=n.titleMarginBottom,v=n.outerMarginBottom,k=this.props.setAttributes,f=this.props.className,d=(this.props.for_,ke()(f,"vk_heading vk_heading-style-".concat(m))),_="h"+o;return null!=v&&(e={marginBottom:v+"rem"}),t=null!=b?{color:a,fontSize:c+"rem",marginBottom:b+"rem",textAlign:r}:{color:a,fontSize:c+"rem",textAlign:r},React.createElement("div",{className:d,style:e},React.createElement(Pt.Content,{tagName:_,value:l,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(m),placeholder:zt("Input title…","vk-blocks")}),function(){if("on"===s)return React.createElement(Pt.Content,{tagName:"p",value:i,onChange:function(e){return k({subText:e})},style:{color:u,fontSize:p+"rem",textAlign:r},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m),placeholder:zt("Input sub text…","vk-blocks")})}())}}])&&Nt(n.prototype,o),r&&Nt(n,r),t}(jt),Lt=wp.i18n.__,Ut=wp.blocks.registerBlockType,Ht=wp.components,Vt=Ht.RangeControl,Dt=Ht.PanelBody,$t=Ht.RadioControl,qt=Ht.SelectControl,Wt=wp.element.Fragment,Jt=i.InspectorControls,Gt=i.ColorPalette,Yt=i.BlockControls,Kt=i.AlignmentToolbar,Zt=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("g",null,React.createElement("g",null,React.createElement("path",{d:"M242.1,366.7l0-281.4l-212.6,0l0-77.1l516.6,0v77.1l-213.2,0l0,281.4H242.1z"})),React.createElement("g",null,React.createElement("path",{d:"M33,467.3l30.8-1.9c0.7,5,2,8.8,4.1,11.4c3.3,4.2,8.1,6.4,14.3,6.4c4.6,0,8.2-1.1,10.7-3.3c2.5-2.2,3.8-4.7,3.8-7.5 c0-2.7-1.2-5.1-3.6-7.3c-2.4-2.1-7.9-4.2-16.6-6.1c-14.2-3.2-24.3-7.4-30.4-12.7c-6.1-5.3-9.1-12-9.1-20.2 c0-5.4,1.6-10.5,4.7-15.3c3.1-4.8,7.8-8.6,14.1-11.3c6.3-2.7,14.8-4.1,25.8-4.1c13.4,0,23.6,2.5,30.6,7.5c7,5,11.2,12.9,12.5,23.8 l-30.5,1.8c-0.8-4.7-2.5-8.1-5.1-10.3c-2.6-2.1-6.2-3.2-10.8-3.2c-3.8,0-6.6,0.8-8.5,2.4c-1.9,1.6-2.9,3.5-2.9,5.8 c0,1.7,0.8,3.2,2.4,4.5c1.5,1.4,5.1,2.7,10.9,3.9c14.1,3,24.3,6.1,30.4,9.3c6.1,3.1,10.6,7,13.4,11.6c2.8,4.6,4.2,9.8,4.2,15.5 c0,6.7-1.9,12.9-5.6,18.6c-3.7,5.7-8.9,10-15.6,12.9c-6.7,2.9-15.1,4.4-25.2,4.4c-17.8,0-30.2-3.4-37-10.3 C37.8,486.6,33.9,477.8,33,467.3z"}),React.createElement("path",{d:"M215,501.9h-27.2v-12.3c-4,5-8.1,8.6-12.3,10.8c-4.1,2.1-9.2,3.2-15.2,3.2c-8,0-14.3-2.4-18.8-7.2 c-4.5-4.8-6.8-12.2-6.8-22.1V426H164v41.7c0,4.8,0.9,8.1,2.6,10.1c1.8,2,4.2,3,7.4,3c3.5,0,6.3-1.3,8.5-4 c2.2-2.7,3.3-7.5,3.3-14.4V426H215V501.9z"}),React.createElement("path",{d:"M225.5,397.2h29.4v36.3c2.9-3,6.2-5.3,9.9-6.9c3.7-1.5,7.8-2.3,12.3-2.3c9.2,0,16.9,3.3,22.9,10 c6.1,6.6,9.1,16.2,9.1,28.6c0,8.3-1.4,15.6-4.1,21.9c-2.8,6.3-6.6,11-11.5,14.1c-4.9,3.1-10.3,4.7-16.3,4.7c-5.1,0-9.8-1.1-14-3.3 c-3.2-1.7-6.7-4.9-10.4-9.6v11.2h-27.2V397.2z M254.6,463.8c0,6.5,1.2,11.3,3.7,14.2c2.5,2.9,5.6,4.4,9.3,4.4 c3.5,0,6.4-1.4,8.8-4.3c2.4-2.9,3.5-7.7,3.5-14.5c0-6-1.2-10.4-3.5-13.2c-2.3-2.8-5.1-4.2-8.4-4.2c-4,0-7.2,1.5-9.7,4.4 C255.9,453.4,254.6,457.8,254.6,463.8z"}),React.createElement("path",{d:"M304.4,397.2h98.4V423h-33v78.9h-32.4V423h-33V397.2z"}),React.createElement("path",{d:"M395.8,426h34.5l12,21.2l14-21.2h32.1l-25.9,36.2l27.7,39.7h-33.9l-14-24.4l-16.5,24.4h-31.5l27.6-39.7L395.8,426z"}),React.createElement("path",{d:"M530.6,397.2V426h16v21.3h-16v26.9c0,3.2,0.3,5.4,0.9,6.4c1,1.6,2.6,2.4,5,2.4c2.1,0,5.1-0.6,9-1.9l2.1,20.1 c-7.2,1.6-13.9,2.4-20.1,2.4c-7.2,0-12.6-0.9-16-2.8c-3.4-1.9-6-4.7-7.6-8.5s-2.5-9.9-2.5-18.4v-26.7h-10.7V426h10.7v-13.9 L530.6,397.2z"}))));Ut("vk-blocks/heading",{title:Lt("Heading","vk-blocks"),icon:Zt,category:"vk-blocks-cat",attributes:{level:{type:"number",default:2},align:{type:"string"},titleStyle:{type:"string",default:"default"},outerMarginBottom:{type:"number",default:""},title:{type:"string",source:"html",selector:"h1,h2,h3,h4,h5,h6",default:""},titleColor:{type:"string",default:"#000000"},titleSize:{type:"number",default:2},titleMarginBottom:{type:"number",default:1},subText:{source:"html",selector:"p",default:""},subTextFlag:{type:"string",default:"on"},subTextColor:{type:"string",default:"#000000"},subTextSize:{type:"number",default:1.2}},supports:{className:!0,customClassName:!0,anchor:!0},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.level,l=t.align,a=(t.title,t.titleColor),c=t.titleSize,i=(t.subText,t.subTextFlag),s=t.subTextColor,u=t.subTextSize,p=t.titleStyle,m=t.titleMarginBottom,b=t.outerMarginBottom,v=function(e){switch(n({level:e}),e){case 1:n({titleSize:3.6});break;case 2:n({titleSize:2.8});break;case 3:n({titleSize:2.2});break;case 4:n({titleSize:2});break;case 5:n({titleSize:1.8});break;case 6:n({titleSize:1.6})}};return React.createElement(Wt,null,React.createElement(Yt,null,React.createElement(rt,{minLevel:2,maxLevel:5,selectedLevel:r,onChange:v})),React.createElement(Jt,null,React.createElement(Dt,{title:Lt("Style Settings","vk-blocks")},React.createElement(qt,{label:Lt("Heading style","vk-blocks"),value:p,onChange:function(e){return n({titleStyle:e})},options:[{label:Lt("Default","vk-blocks"),value:"default"},{label:Lt("Plain","vk-blocks"),value:"plain"}]}),React.createElement("label",null,Lt("Margin bottom size (rem)","vk-blocks")),React.createElement(Vt,{value:b,onChange:function(e){n({outerMarginBottom:Pe(e,b)})},min:-1,max:8,step:.1})),React.createElement(Dt,{title:Lt("Heading Settings","vk-blocks")},React.createElement("label",null,Lt("Level","vk-blocks")),React.createElement(rt,{minLevel:1,maxLevel:7,selectedLevel:r,onChange:v}),React.createElement("p",null,Lt("Text Alignment")),React.createElement(Kt,{value:l,onChange:function(e){n({align:e})}}),React.createElement("label",null,Lt("Text size (rem)","vk-blocks")),React.createElement(Vt,{value:c,onChange:function(e){n({titleSize:Pe(e,c)})},min:.5,max:4,step:.1}),React.createElement("label",null,Lt("Heading margin bottom size (rem)","vk-blocks")),React.createElement(Vt,{value:m,onChange:function(e){n({titleMarginBottom:Pe(e,m)})},min:-1,max:3,step:.1}),React.createElement(Gt,{value:a,onChange:function(e){return n({titleColor:e})}})),React.createElement(Dt,{title:Lt("Sub Text Settings","vk-blocks")},React.createElement($t,{label:Lt("Position","vk-blocks"),selected:i,options:[{label:Lt("Display","vk-blocks"),value:"on"},{label:Lt("Hide","vk-blocks"),value:"off"}],onChange:function(e){return n({subTextFlag:e})}}),React.createElement("label",null,Lt("Text size (rem)","vk-blocks")),React.createElement(Vt,{value:u,onChange:function(e){n({subTextSize:Pe(e,u)})},min:.5,max:3,step:.1}),React.createElement(Gt,{value:s,onChange:function(e){return n({subTextColor:e})}}))),React.createElement("div",{className:o},React.createElement(vt,{attributes:t,setAttributes:n,for_:"edit"})))},save:function(e){var t=e.attributes,n=e.className;return React.createElement("div",{className:n},React.createElement(vt,{attributes:t,for_:"save"}))},deprecated:Mt});var Qt=i.RichText,Xt=[{attributes:{style:{type:"string",default:"info"},content:{type:"string",source:"html",selector:"p"}},save:function(e){var t=e.attributes,n=t.style,o=t.content;return React.createElement("div",{className:"alert alert-".concat(n)},React.createElement(Qt.Content,{tagName:"p",value:o}))}}],en=wp.i18n.__,tn=wp.blocks.registerBlockType,nn=wp.components,on=nn.PanelBody,rn=nn.SelectControl,ln=i.InspectorControls,an=i.RichText,cn=wp.element.Fragment;tn("vk-blocks/alert",{title:en("Alert","vk-blocks"),icon:"info",category:"vk-blocks-cat",attributes:{style:{type:"string",default:"info"},content:{type:"string",source:"html",selector:"p"}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.style,l=t.content;return React.createElement(cn,null,React.createElement(ln,null,React.createElement(on,{title:en("Style Settings","vk-blocks")},React.createElement(rn,{value:r,onChange:function(e){return n({style:e})},options:[{label:en("Success","vk-blocks"),value:"success"},{label:en("Info","vk-blocks"),value:"info"},{label:en("Warning","vk-blocks"),value:"warning"},{label:en("Danger","vk-blocks"),value:"danger"}]}))),React.createElement("div",{className:"".concat(o," alert alert-").concat(r)},React.createElement(an,{tagName:"p",onChange:function(e){n({content:e})},value:l})))},save:function(e){var t=e.attributes,n=e.className,o=t.style,r=t.content;return React.createElement("div",{className:"".concat(n," alert alert-").concat(o)},React.createElement(an.Content,{tagName:"p",value:r}))},deprecated:Xt});var sn=wp.i18n.__,un=wp.blocks.registerBlockType,pn=wp.components,mn=(pn.RangeControl,pn.RadioControl),bn=pn.PanelBody,vn=pn.Button,kn=wp.element.Fragment,fn=i.RichText,dn=i.InspectorControls,_n=i.MediaUpload,gn=i.ColorPalette,yn=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M544 450.583c0 22.75 13.014 42.454 32 52.092v7.969c-5.313 0.727-10.736 1.112-16.25 1.112-34.004 0-64.674-14.264-86.361-37.132-13.111 3.491-27.001 5.376-41.389 5.376-79.529 0-144-57.308-144-128s64.471-128 144-128c79.529 0 144 57.308 144 128 0 27.674-9.882 53.296-26.678 74.233-3.412 7.412-5.322 15.656-5.322 24.35zM115.339 110.593c-33.107 26.899-51.339 61.492-51.339 97.407 0 20.149 5.594 39.689 16.626 58.075 11.376 18.96 28.491 36.293 49.494 50.126 15.178 9.996 25.39 25.974 28.088 43.947 0.9 5.992 1.464 12.044 1.685 18.062 3.735-3.097 7.375-6.423 10.94-9.988 12.077-12.076 28.39-18.745 45.251-18.745 2.684 0 5.381 0.168 8.078 0.512 10.474 1.331 21.172 2.008 31.797 2.010v64c-13.564-0.001-26.877-0.869-39.871-2.521-54.989 54.989-120.625 64.85-184.088 66.298v-13.458c34.268-16.789 64-47.37 64-82.318 0-4.877-0.379-9.665-1.082-14.348-57.898-38.132-94.918-96.377-94.918-161.652 0-114.875 114.615-208 256-208 139.229 0 252.496 90.307 255.918 202.76-20.548-9.158-42.92-14.711-66.131-16.289-5.765-28.034-22.701-54.408-49.126-75.878-17.661-14.349-38.458-25.695-61.814-33.722-24.853-8.54-51.38-12.871-78.847-12.871s-53.994 4.331-78.847 12.871c-23.356 8.027-44.153 19.372-61.814 33.722z"}));function hn(e){return(hn="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 wn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function xn(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function En(e,t){return!t||"object"!==hn(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}function Cn(e){return(Cn=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Rn(e,t){return(Rn=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}un("vk-blocks/balloon",{title:sn("Ballon","vk-blocks"),icon:yn,category:"vk-blocks-cat",attributes:{content:{source:"html",selector:"p"},balloonName:{source:"html",selector:"figcaption"},balloonType:{type:"string",default:"type-serif"},balloonBgColor:{type:"string"},balloonAlign:{type:"string",default:"position-left"},IconImage:{type:"string",default:null}},edit:function(e){var t=e.attributes,n=e.className,o=e.setAttributes,r=t.content,l=t.balloonName,a=t.balloonType,c=t.balloonBgColor,i=t.balloonAlign,s=t.IconImage;return React.createElement(kn,null,React.createElement(dn,null,React.createElement(bn,{title:sn("Balloon setting","vk-blocks")},React.createElement(mn,{label:sn("Position","vk-blocks"),help:sn("Please specify the layout of the balloon.","vk-blocks"),selected:i,options:[{label:sn("Left","vk-blocks"),value:"position-left"},{label:sn("Right","vk-blocks"),value:"position-right"}],onChange:function(e){return o({balloonAlign:e})}}),React.createElement(mn,{label:sn("Type","vk-blocks"),help:sn("Please select the type of balloon.","vk-blocks"),selected:a,options:[{label:sn("Serif","vk-blocks"),value:"type-serif"},{label:sn("Thinking","vk-blocks"),value:"type-think"}],onChange:function(e){return o({balloonType:e})}}),React.createElement(gn,{value:c,onChange:function(e){return o({balloonBgColor:e})}}))),React.createElement("div",{className:"".concat(n," vk_balloon vk_balloon-").concat(i," vk_balloon-").concat(a)},React.createElement("div",{className:"vk_balloon_icon"},React.createElement(_n,{onSelect:function(e){return o({IconImage:e.sizes.full.url})},type:"image",className:"vk_balloon_icon_image",value:s,render:function(e){var t=e.open;return React.createElement(vn,{onClick:t,className:s?"image-button":"button button-large"},s?React.createElement("img",{className:"vk_balloon_icon_image",src:s,alt:sn("Upload image","vk-blocks")}):sn("Select image","vk-blocks"))}}),React.createElement(fn,{tagName:"figcaption",className:"vk_balloon_icon_name",onChange:function(e){return o({balloonName:e})},value:l,placeholder:sn("Icon Name","vk-blocks")})),React.createElement(fn,{style:{background:c,border:c},tagName:"p",className:"vk_balloon_content",onChange:function(e){return o({content:e})},value:r,placeholder:sn("Input text","vk-blocks")})))},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.balloonName,r=t.balloonType,l=t.balloonBgColor,a=t.balloonAlign,c=t.IconImage;return React.createElement("div",{className:"vk_balloon vk_balloon-".concat(a," vk_balloon-").concat(r)},React.createElement("div",{className:"vk_balloon_icon"},c?React.createElement("figure",null,React.createElement("img",{className:"vk_balloon_icon_image",src:c,alt:""}),React.createElement(fn.Content,{tagName:"figcaption",className:"vk_balloon_icon_name",value:o})):""),React.createElement(fn.Content,{className:"vk_balloon_content",style:{background:l,border:l},tagName:"p",value:n}))}});var Nn=function(e){function t(){return wn(this,t),En(this,Cn(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Rn(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,l=this.props.lbUrl,a=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,p="",m={},b="",v="";return m=null,p="".concat(p="vk_button_link","0"==n||null==n||"1"==n?" btn":" vk_button_link-type-text"),"0"==n||null===n?"undefined"==e||null==e||null===e?(p="".concat(p," btn-").concat(t),m=null):m={backgroundColor:e,border:"1px solid ".concat(e),color:"#fff"}:"1"===n?"undefined"==e||null==e||null===e?(p="".concat(p," btn-outline-").concat(t),m=null):m={backgroundColor:"transparent",border:"1px solid "+e,color:e}:"2"===n&&("undefined"==e||null==e||null===e?(p="".concat(p," btn-outline-").concat(t),m=null):m={color:e}),p="".concat(p," btn-").concat(r),"block"===o&&(p="".concat(p," btn-block")),c&&(b=React.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(v=React.createElement("i",{className:"".concat(i," vk_button_link_after")})),React.createElement("a",{href:l,id:"vk_button_link",style:m,className:p,role:"button","aria-pressed":!0,target:a?"_blank":null,rel:"noopener noreferrer"},b,s,v,u&&React.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&xn(n.prototype,o),r&&xn(n,r),t}(wp.element.Component);function Sn(e){return(Sn="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 Bn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Tn(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function On(e,t){return!t||"object"!==Sn(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}function In(e){return(In=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function An(e,t){return(An=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var jn=function(e){function t(){return Bn(this,t),On(this,In(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&An(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,l=this.props.lbUrl,a=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=(this.props.lbsubCaption,""),p={},m="",b="";return u="btn vk_button_link",e?(u="".concat(u," btn-primary btn-").concat(r),"0"===n?p={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(p={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(u="".concat(u," btn-").concat(r," btn-").concat(t),p=null):"1"===n&&(u="".concat(u," btn-").concat(r," btn-outline-").concat(t),p=null)),"block"===o&&(u="".concat(u," btn-block")),c&&(m=React.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(b=React.createElement("i",{className:"".concat(i," vk_button_link_after")})),React.createElement("a",{href:l,className:u,role:"button","aria-pressed":!0,style:p,target:a?"_blank":null},m,s,b)}}])&&Tn(n.prototype,o),r&&Tn(n,r),t}(wp.element.Component);function Pn(e){return(Pn="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 zn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Mn(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Fn(e,t){return!t||"object"!==Pn(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}function Ln(e){return(Ln=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Un(e,t){return(Un=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Hn=function(e){function t(){return zn(this,t),Fn(this,Ln(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Un(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,l=this.props.lbUrl,a=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=(this.props.lbsubCaption,""),p={},m="",b="";return u="btn vk_button_link",e?(u="".concat(u," btn-primary btn-").concat(r),"0"===n?p={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(p={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(u="".concat(u," btn-").concat(r," btn-").concat(t),p=null):"1"===n&&(u="".concat(u," btn-").concat(r," btn-outline-").concat(t),p=null)),"block"===o&&(u="".concat(u," btn-block")),c&&(m=React.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(b=React.createElement("i",{className:"".concat(i," vk_button_link_after")})),React.createElement("a",{href:l,id:"vk_button_link",className:u,role:"button","aria-pressed":!0,style:p,target:a?"_blank":null},m,s,b)}}])&&Mn(n.prototype,o),r&&Mn(n,r),t}(wp.element.Component);function Vn(e){return(Vn="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 Dn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function $n(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function qn(e,t){return!t||"object"!==Vn(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}function Wn(e){return(Wn=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Jn(e,t){return(Jn=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Gn=function(e){function t(){return Dn(this,t),qn(this,Wn(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Jn(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,l=this.props.lbUrl,a=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,p="",m={},b="",v="";return p="btn vk_button_link",e?(p="".concat(p," btn-primary btn-").concat(r),"0"===n?m={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(m={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(p="".concat(p," btn-").concat(r," btn-").concat(t),m=null):"1"===n&&(p="".concat(p," btn-").concat(r," btn-outline-").concat(t),m=null)),"block"===o&&(p="".concat(p," btn-block")),c&&(b=React.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(v=React.createElement("i",{className:"".concat(i," vk_button_link_after")})),React.createElement("a",{href:l,id:"vk_button_link",className:p,role:"button","aria-pressed":!0,style:m,target:a?"_blank":null,rel:"noopener noreferrer"},b,s,v,u&&React.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&$n(n.prototype,o),r&&$n(n,r),t}(wp.element.Component);function Yn(e){return(Yn="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 Kn(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Zn(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Qn(e,t){return!t||"object"!==Yn(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}function Xn(e){return(Xn=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function eo(e,t){return(eo=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var to=function(e){function t(){return Kn(this,t),Qn(this,Xn(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&eo(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.lbColorCustom,t=this.props.lbColor,n=this.props.lbType,o=this.props.lbAlign,r=this.props.lbSize,l=this.props.lbUrl,a=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,p="",m={},b="",v="";return p="btn vk_button_link",e?(p="".concat(p," btn-primary btn-").concat(r),"0"===n?m={backgroundColor:e,border:"1px solid ".concat(e)}:"1"===n&&(m={backgroundColor:"transparent",border:"1px solid "+e,color:e})):e||("0"===n?(p="".concat(p," btn-").concat(r," btn-").concat(t),m=null):"1"===n&&(p="".concat(p," btn-").concat(r," btn-outline-").concat(t),m=null)),"block"===o&&(p="".concat(p," btn-block")),c&&(b=React.createElement("i",{className:"".concat(c," vk_button_link_before")})),i&&(v=React.createElement("i",{className:"".concat(i," vk_button_link_after")})),React.createElement("a",{href:l,id:"vk_button_link",className:p,role:"button","aria-pressed":!0,style:m,target:a?"_blank":null},b,s,v,u&&React.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&Zn(n.prototype,o),r&&Zn(n,r),t}(wp.element.Component),no=i.RichText,oo=[{attributes:{content:{source:"html",selector:"span"},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.content,o=t.buttonUrl,r=t.buttonTarget,l=t.buttonSize,a=t.buttonType,c=t.buttonColor,i=t.buttonColorCustom,s=t.buttonAlign,u=t.fontAwesomeIconBefore,p=t.fontAwesomeIconAfter,m="";return i?m="vk_button vk_button-color-custom vk_button-align-".concat(s):i||(m="vk_button vk_button-align-".concat(s)),React.createElement("div",{className:m},React.createElement(jn,{lbColorCustom:i,lbColor:c,lbType:a,lbAlign:s,lbSize:l,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:p,lbRichtext:React.createElement(no.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.content,o=t.buttonUrl,r=t.buttonTarget,l=t.buttonSize,a=t.buttonType,c=t.buttonColor,i=t.buttonColorCustom,s=t.buttonAlign,u=t.fontAwesomeIconBefore,p=t.fontAwesomeIconAfter,m="";return i?m="vk_button vk_button-color-custom vk_button-align-".concat(s):i||(m="vk_button vk_button-align-".concat(s)),React.createElement("div",{className:m},React.createElement(Hn,{lbColorCustom:i,lbColor:c,lbType:a,lbAlign:s,lbSize:l,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:p,lbRichtext:React.createElement(no.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.subCaption,r=t.buttonUrl,l=t.buttonTarget,a=t.buttonSize,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonAlign,p=t.fontAwesomeIconBefore,m=t.fontAwesomeIconAfter,b="";return s?b="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(b="vk_button vk_button-align-".concat(u)),React.createElement("div",{className:b},React.createElement(Gn,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:a,lbUrl:r,lbTarget:l,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:m,lbsubCaption:o,lbRichtext:React.createElement(no.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=(e.className,t.content),o=t.subCaption,r=t.buttonUrl,l=t.buttonTarget,a=t.buttonSize,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonAlign,p=t.fontAwesomeIconBefore,m=t.fontAwesomeIconAfter,b="";return s?b="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(b="vk_button vk_button-align-".concat(u)),React.createElement("div",{className:b},React.createElement(to,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:a,lbUrl:r,lbTarget:l,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:m,lbsubCaption:o,lbRichtext:React.createElement(no.Content,{tagName:"span",className:"vk_button_link_txt",value:n})}))}},{attributes:{content:{source:"html",selector:"span"},subCaption:{type:"string",default:null},buttonUrl:{type:"string",default:null},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:null},fontAwesomeIconAfter:{type:"string",default:null}},save:function(e){var t=e.attributes,n=e.className,o=t.content,r=t.subCaption,l=t.buttonUrl,a=t.buttonTarget,c=t.buttonSize,i=t.buttonType,s=t.buttonColor,u=t.buttonColorCustom,p=t.buttonAlign,m=t.fontAwesomeIconBefore,b=t.fontAwesomeIconAfter,v="";return u?v="vk_button vk_button-color-custom vk_button-align-".concat(p):u||(v="vk_button vk_button-align-".concat(p)),n&&(v=n+" "+v),React.createElement("div",{className:v},React.createElement(Nn,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:p,lbSize:c,lbUrl:l,lbTarget:a,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:b,lbsubCaption:r,lbRichtext:React.createElement(no.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))}}],ro=wp.i18n.__,lo=wp.blocks.registerBlockType,ao=wp.components,co=ao.RadioControl,io=ao.PanelBody,so=ao.BaseControl,uo=ao.CheckboxControl,po=ao.TextControl,mo=ao.Dashicon,bo=ao.ButtonGroup,vo=ao.Button,ko=wp.element.Fragment,fo=i.RichText,_o=i.InspectorControls,go=i.ColorPalette,yo=i.URLInput,ho=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("g",null,React.createElement("path",{d:"M506,185v142H70V185H506 M526.4,137H49.6C34.4,137,22,149.4,22,164.6v182.8c0,15.2,12.4,27.6,27.6,27.6h476.8 c15.2,0,27.6-12.4,27.6-27.6V164.6C554,149.4,541.6,137,526.4,137L526.4,137z"})),React.createElement("g",null,React.createElement("path",{d:"M83.8,206.9h55.9c9.3,0,16.5,2.3,21.5,6.9c5,4.6,7.5,10.3,7.5,17.1c0,5.7-1.8,10.6-5.3,14.7c-2.4,2.7-5.8,4.9-10.4,6.5 c6.9,1.7,12.1,4.5,15.3,8.6c3.3,4.1,4.9,9.2,4.9,15.3c0,5-1.2,9.5-3.5,13.5c-2.3,4-5.5,7.2-9.6,9.5c-2.5,1.5-6.3,2.5-11.3,3.2 c-6.7,0.9-11.2,1.3-13.4,1.3H83.8V206.9z M113.9,244.8h13c4.7,0,7.9-0.8,9.7-2.4c1.8-1.6,2.7-3.9,2.7-7c0-2.8-0.9-5-2.7-6.6 c-1.8-1.6-5-2.4-9.5-2.4h-13.2V244.8z M113.9,282.8h15.2c5.1,0,8.8-0.9,10.9-2.7s3.2-4.3,3.2-7.4c0-2.9-1-5.2-3.1-6.9 c-2.1-1.7-5.7-2.6-11-2.6h-15.2V282.8z"}),React.createElement("path",{d:"M245.9,303.5h-25.1v-11.3c-3.7,4.7-7.5,8-11.3,10c-3.8,2-8.5,3-14,3c-7.4,0-13.2-2.2-17.4-6.6c-4.2-4.4-6.3-11.2-6.3-20.4 v-44.6h27V272c0,4.4,0.8,7.5,2.4,9.4c1.6,1.8,3.9,2.8,6.9,2.8c3.2,0,5.8-1.2,7.9-3.7s3.1-6.9,3.1-13.3v-33.7h26.8V303.5z"}),React.createElement("path",{d:"M282.4,206.9v26.6h14.8v19.7h-14.8V278c0,3,0.3,5,0.9,5.9c0.9,1.5,2.4,2.2,4.6,2.2c2,0,4.7-0.6,8.3-1.7l2,18.5 c-6.6,1.5-12.8,2.2-18.6,2.2c-6.7,0-11.6-0.9-14.8-2.6c-3.2-1.7-5.5-4.3-7-7.8c-1.5-3.5-2.3-9.1-2.3-17v-24.6h-9.9v-19.7h9.9v-12.9 L282.4,206.9z"}),React.createElement("path",{d:"M330.2,206.9v26.6H345v19.7h-14.8V278c0,3,0.3,5,0.9,5.9c0.9,1.5,2.4,2.2,4.6,2.2c2,0,4.7-0.6,8.3-1.7l2,18.5 c-6.6,1.5-12.8,2.2-18.6,2.2c-6.7,0-11.6-0.9-14.8-2.6c-3.2-1.7-5.5-4.3-7-7.8c-1.5-3.5-2.3-9.1-2.3-17v-24.6h-9.9v-19.7h9.9v-12.9 L330.2,206.9z"}),React.createElement("path",{d:"M339.6,268.7c0-10.7,3.6-19.5,10.8-26.4s16.9-10.4,29.2-10.4c14,0,24.6,4.1,31.8,12.2c5.8,6.6,8.6,14.6,8.6,24.2 c0,10.8-3.6,19.6-10.7,26.5c-7.1,6.9-17,10.3-29.6,10.3c-11.3,0-20.4-2.9-27.3-8.6C343.9,289.5,339.6,280.2,339.6,268.7z M366.5,268.7c0,6.2,1.3,10.9,3.8,13.8c2.5,3,5.7,4.5,9.5,4.5c3.9,0,7-1.5,9.5-4.4c2.5-2.9,3.7-7.7,3.7-14.2 c0-6.1-1.3-10.6-3.8-13.6s-5.6-4.5-9.3-4.5c-3.9,0-7.1,1.5-9.7,4.5C367.8,257.9,366.5,262.5,366.5,268.7z"}),React.createElement("path",{d:"M418.2,233.5h25v11.4c3.7-4.7,7.5-8,11.3-10c3.8-2,8.5-3,14-3c7.4,0,13.2,2.2,17.4,6.6c4.2,4.4,6.3,11.2,6.3,20.5v44.5h-27 V265c0-4.4-0.8-7.5-2.4-9.3c-1.6-1.8-3.9-2.7-6.9-2.7c-3.3,0-5.9,1.2-7.9,3.7c-2,2.5-3,6.9-3,13.3v33.6h-26.8V233.5z"})));lo("vk-blocks/button",{title:ro("Button","vk-blocks"),icon:ho,category:"vk-blocks-cat",attributes:{content:{type:"string",source:"html",selector:"span"},subCaption:{type:"string",default:""},buttonUrl:{type:"string",default:""},buttonTarget:{type:"Boolean",default:!1},buttonSize:{type:"string",default:"md"},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:"undefined"},buttonAlign:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:""},fontAwesomeIconAfter:{type:"string",default:""}},edit:function(e){var t,n=e.attributes,o=e.className,r=e.setAttributes,l=e.isSelected,a=n.content,c=n.subCaption,i=n.buttonUrl,s=n.buttonTarget,u=n.buttonSize,p=n.buttonType,m=n.buttonColor,b=n.buttonColorCustom,v=n.buttonAlign,k=n.fontAwesomeIconBefore,f=n.fontAwesomeIconAfter;return t=b?"vk_button vk_button-align-".concat(v," vk_button-color-custom"):"vk_button vk_button-align-".concat(v),t=o?"".concat(o," vk_button vk_button-align-").concat(v," vk_button-color-custom"):"".concat(o," vk_button vk_button-align-").concat(v),React.createElement(ko,null,React.createElement(_o,null,React.createElement(io,{title:ro("Button setting","vk-blocks")},React.createElement(po,{label:ro("Sub Caption","vk-blocks"),value:c,onChange:function(e){return r({subCaption:e})},placeholder:"Sub Caption"}),React.createElement(uo,{label:ro("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return r({buttonTarget:e})}}),React.createElement("h4",{className:"mt-0 mb-2"},ro("Button Size:","vk-blocks")),React.createElement(bo,{className:"mb-3"},React.createElement(vo,{isSmall:!0,isPrimary:"lg"===u,isSecondary:"lg"!==u,onClick:function(){return r({buttonSize:"lg"})}},ro("Large","vk-blocks")),React.createElement(vo,{isSmall:!0,isPrimary:"md"===u,isSecondary:"md"!==u,onClick:function(){return r({buttonSize:"md"})}},ro("Normal","vk-blocks")),React.createElement(vo,{isSmall:!0,isPrimary:"sm"===u,isSecondary:"sm"!==u,onClick:function(){return r({buttonSize:"sm"})}},ro("Small","vk-blocks"))),React.createElement("h4",{className:"mt-0 mb-2"},ro("Button Position:","vk-blocks")),React.createElement(bo,{className:"mb-3"},React.createElement(vo,{isSmall:!0,isPrimary:"left"===v,isSecondary:"left"!==v,onClick:function(){return r({buttonAlign:"left"})}},ro("Left","vk-blocks")),React.createElement(vo,{isSmall:!0,isPrimary:"center"===v,isSecondary:"center"!==v,onClick:function(){return r({buttonAlign:"center"})}},ro("Center","vk-blocks")),React.createElement(vo,{isSmall:!0,isPrimary:"right"===v,isSecondary:"right"!==v,onClick:function(){return r({buttonAlign:"right"})}},ro("Right","vk-blocks")),React.createElement(vo,{isSmall:!0,isPrimary:"wide"===v,isSecondary:"wide"!==v,onClick:function(){return r({buttonAlign:"wide"})}},ro("Wide","vk-blocks")),React.createElement(vo,{isSmall:!0,isPrimary:"block"===v,isSecondary:"block"!==v,onClick:function(){return r({buttonAlign:"block"})}},ro("Block","vk-blocks"))),React.createElement("h4",{className:"mt-0 mb-2"},ro("Button Style:","vk-blocks")),React.createElement(bo,{className:"mb-2"},React.createElement(vo,{isSmall:!0,isPrimary:"0"===p,isSecondary:"0"!==p,onClick:function(){return r({buttonType:"0"})}},ro("Solid color","vk-blocks")),React.createElement(vo,{isSmall:!0,isPrimary:"1"===p,isSecondary:"1"!==p,onClick:function(){return r({buttonType:"1"})}},ro("No background","vk-blocks")),React.createElement(vo,{isSmall:!0,isPrimary:"2"===p,isSecondary:"2"!==p,onClick:function(){return r({buttonType:"2"})}},ro("Text only","vk-blocks"))),React.createElement("p",{className:"mb-3"},ro('If you select "No background", that you need to select a Custom Color.',"vk-blocks")),React.createElement(co,{label:ro("Default Color:","vk-blocks"),selected:m,options:[{label:ro("Primary","vk-blocks"),value:"primary"},{label:ro("Secondary","vk-blocks"),value:"secondary"},{label:ro("Success","vk-blocks"),value:"success"},{label:ro("Info","vk-blocks"),value:"info"},{label:ro("Warning","vk-blocks"),value:"warning"},{label:ro("Danger","vk-blocks"),value:"danger"},{label:ro("Light","vk-blocks"),value:"light"},{label:ro("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return r({buttonColor:e})}}),React.createElement(so,{label:ro("Custom Color","vk-blocks"),help:ro("This custom color overrides the default color. If you want to use the default color, click the clear button.","vk-blocks")},React.createElement(go,{value:b,onChange:function(e){return r({buttonColorCustom:e})}})),React.createElement(so,{label:ro("Font Awesome:","vk-blocks"),help:React.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},ro("Font Awesome icon list","vk-blocks"))},React.createElement(po,{label:ro("Before text","vk-blocks"),help:ro("Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right","vk-blocks"),value:k,onChange:function(e){return r({fontAwesomeIconBefore:e})},placeholder:"fas fa-arrow-circle-right"}),React.createElement(po,{label:ro("After text","vk-blocks"),help:ro("Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-external-link-alt","vk-blocks"),value:f,onChange:function(e){return r({fontAwesomeIconAfter:e})},placeholder:"fas fa-external-link-alt"})))),React.createElement("div",{className:t},React.createElement(Nn,{lbColorCustom:b,lbColor:m,lbType:p,lbAlign:v,lbSize:u,lbFontAwesomeIconBefore:k,lbFontAwesomeIconAfter:f,lbsubCaption:c,lbRichtext:React.createElement(fo,{tagName:"span",className:"vk_button_link_txt",onChange:function(e){return r({content:e})},value:a,placeholder:ro("Input text","vk-blocks"),allowedFormats:["bold","italic","strikethrough"],isSelected:!0})}),l&&React.createElement("form",{className:"block-library-button__inline-link",onSubmit:function(e){return e.preventDefault()}},React.createElement(mo,{icon:"admin-links"}),React.createElement(yo,{value:i,onChange:function(e){return r({buttonUrl:e})}}),React.createElement(vo,{icon:"editor-break",label:ro("Apply","vk-blocks"),type:"submit"}))))},save:function(e){var t=e.attributes,n=e.className,o=t.content,r=t.subCaption,l=t.buttonUrl,a=t.buttonTarget,c=t.buttonSize,i=t.buttonType,s=t.buttonColor,u=t.buttonColorCustom,p=t.buttonAlign,m=t.fontAwesomeIconBefore,b=t.fontAwesomeIconAfter,v="";return u?v="vk_button vk_button-color-custom vk_button-align-".concat(p):u||(v="vk_button vk_button-align-".concat(p)),n&&(v=n+" "+v),React.createElement("div",{className:v},React.createElement(Nn,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:p,lbSize:c,lbUrl:l,lbTarget:a,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:b,lbsubCaption:r,lbRichtext:React.createElement(fo.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))},deprecated:oo});var wo=i.RichText,xo=[{attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"}},save:function(e){var t=e.attributes,n=t.heading,o=t.content;return React.createElement("dl",{className:"vk_faq"},React.createElement(wo.Content,{tagName:"dt",className:"vk_faq_title",value:n}),React.createElement(wo.Content,{tagName:"dd",className:"vk_faq_content",value:o}))}}],Eo=wp.i18n.__,Co=wp.blocks.registerBlockType,Ro=i.RichText,No=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},React.createElement("path",{d:"M178.9,191.6c7.2,5,12,8.2,14.2,9.4c3.3,1.9,7.8,4,13.4,6.5l-16.1,32.4c-8.1-3.9-16.1-8.6-24-14 c-7.9-5.4-13.4-9.5-16.6-12.2c-12.8,5.5-28.8,8.3-48,8.3c-28.4,0-50.9-7.4-67.3-22.2c-19.4-17.5-29.1-42.2-29.1-73.9 c0-30.8,8.5-54.7,25.5-71.8c17-17.1,40.7-25.6,71.2-25.6c31.1,0,55,8.3,71.9,25c16.9,16.7,25.3,40.6,25.3,71.6 C199.3,152.8,192.5,175,178.9,191.6z M134.6,161.9c4.6-8.3,6.9-20.6,6.9-37c0-18.9-3.5-32.4-10.5-40.5c-7-8.1-16.7-12.1-29-12.1 c-11.5,0-20.8,4.1-28,12.4c-7.1,8.3-10.7,21.2-10.7,38.7c0,20.4,3.5,34.8,10.5,43c7,8.3,16.6,12.4,28.7,12.4 c3.9,0,7.6-0.4,11.1-1.1c-4.9-4.7-12.5-9.1-23-13.3l9.1-20.8c5.1,0.9,9.1,2.1,11.9,3.4c2.9,1.4,8.4,4.9,16.7,10.7 C130.1,159.1,132.3,160.5,134.6,161.9z"}),React.createElement("path",{d:"M137.9,452.6H72.2l-9.1,30.9l-59,0l70.3-187.2h63.1l70.3,187.2h-60.6L137.9,452.6z M125.9,412.1l-20.7-67.3l-20.4,67.3 H125.9z"}),React.createElement("path",{d:"M553.9,239.9h-303c-10,0-18.1-8.1-18.1-18.1c0-10,8.1-18.1,18.1-18.1h303c10,0,18.1,8.1,18.1,18.1 C572,231.8,563.9,239.9,553.9,239.9z"}),React.createElement("path",{d:"M553.9,483.5h-303c-10,0-18.1-8.1-18.1-18.1c0-10,8.1-18.1,18.1-18.1h303c10,0,18.1,8.1,18.1,18.1 C572,475.4,563.9,483.5,553.9,483.5z"}));Co("vk-blocks/faq",{title:Eo("FAQ","vk-blocks"),icon:No,category:"vk-blocks-cat",attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"}},supports:{anchor:!0},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=t.heading,l=t.content;return React.createElement("dl",{className:"".concat(o," vk_faq")},React.createElement(Ro,{tagName:"dt",className:"vk_faq_title",onChange:function(e){return n({heading:e})},value:r,placeholder:Eo("Please enter a question.","vk-blocks")}),React.createElement(Ro,{tagName:"dd",className:"vk_faq_content",onChange:function(e){return n({content:e})},value:l,placeholder:Eo("Please enter a answer.","vk-blocks")}))},save:function(e){var t=e.attributes,n=e.className,o=t.heading,r=t.content;return React.createElement("dl",{className:"".concat(n," vk_faq")},React.createElement(Ro.Content,{tagName:"dt",className:"vk_faq_title",value:o}),React.createElement(Ro.Content,{tagName:"dd",className:"vk_faq_content",value:r}))},deprecated:xo});var So=i.RichText,Bo=[{attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"},arrowFlag:{type:"string",default:"vk_flow-arrow-on"},insertImage:{type:"string",default:null}},save:function(e){var t=e.attributes,n=t.heading,o=t.content,r=t.insertImage,l=t.arrowFlag;return React.createElement("div",{className:"".concat(l," vk_flow")},React.createElement("div",{className:"vk_flow_frame"},React.createElement("dl",{className:"vk_flow_frame_text"},React.createElement(So.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:n}),React.createElement(So.Content,{tagName:"dd",className:"vk_flow_frame_text_content",value:o})),r?React.createElement("div",{className:"vk_flow_frame_image"},React.createElement("img",{src:r,alt:""})):""))}}],To=wp.i18n.__,Oo=wp.blocks.registerBlockType,Io=wp.components,Ao=Io.RadioControl,jo=Io.PanelBody,Po=Io.Button,zo=wp.element.Fragment,Mo=i.RichText,Fo=i.InspectorControls,Lo=i.MediaUpload;function Uo(e){return(Uo="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 Ho(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Vo(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Do(e,t){return!t||"object"!==Uo(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}function $o(e){return($o=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function qo(e,t){return(qo=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}Oo("vk-blocks/flow",{title:To("Flow","vk-blocks"),icon:"arrow-down",category:"vk-blocks-cat",attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"},arrowFlag:{type:"string",default:"vk_flow-arrow-on"},insertImage:{type:"string",default:null}},edit:function(e){var t=e.attributes,n=e.setAttributes,o=e.className,r=e.clientId,l=t.heading,a=t.content,c=t.insertImage,i=t.arrowFlag;return React.createElement(zo,null,React.createElement(Fo,null,React.createElement(jo,{title:To("Display of arrow","vk-blocks")},React.createElement(Ao,{selected:i,options:[{label:To("Arrow display","vk-blocks"),value:"vk_flow-arrow-on"},{label:To("Arrow hidden","vk-blocks"),value:"vk_flow-arrow-off"}],onChange:function(e){return n({arrowFlag:e})}}))),React.createElement("div",{className:"".concat(o," ").concat(i," vk_flow")},React.createElement("div",{className:"vk_flow_frame"},React.createElement("dl",{className:"vk_flow_frame_text"},React.createElement(Mo,{key:"".concat(r,"2"),tagName:"dt",className:"vk_flow_frame_text_title",onChange:function(e){return n({heading:e})},value:l,placeholder:To("Input title","vk-blocks")}),React.createElement(Mo,{key:"".concat(r,"3"),tagName:"dd",className:"vk_flow_frame_text_content",onChange:function(e){return n({content:e})},value:a,placeholder:To("Input content","vk-blocks")})),React.createElement("div",{className:"vk_flow_frame_image"},React.createElement(Lo,{onSelect:function(e){return n({insertImage:e.url})},type:"image",className:"vk_flow_frame_image",value:c,render:function(e){var t=e.open;return React.createElement(Po,{onClick:t,className:c?"image-button":"button button-large"},c?React.createElement("img",{className:"icon-image",src:c,alt:To("Upload image","vk-blocks")}):To("Select image","vk-blocks"))}})))))},save:function(e){var t=e.attributes,n=e.className,o=t.heading,r=t.content,l=t.insertImage,a=t.arrowFlag;return React.createElement("div",{className:"".concat(n," ").concat(a," vk_flow")},React.createElement("div",{className:"vk_flow_frame"},React.createElement("dl",{className:"vk_flow_frame_text"},React.createElement(Mo.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:o}),React.createElement(Mo.Content,{tagName:"dd",className:"vk_flow_frame_text_content",value:r})),l?React.createElement("div",{className:"vk_flow_frame_image"},React.createElement("img",{src:l,alt:""})):""))},deprecated:Bo});var Wo=wp.i18n.__,Jo=wp.element.Component,Go=i.RichText,Yo=function(e){function t(){return Ho(this,t),Do(this,$o(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&qo(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.setAttributes,t=this.props.attributes,n=t.heading1,o=t.heading2,r=t.heading3,l=t.content1,a=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,p=t.urlOpenType1,m=t.urlOpenType2,b=t.urlOpenType3,v=t.icon1,k=t.icon2,f=t.icon3,d=t.color1,_=t.color2,g=t.color3,y=t.bgType1,h=t.bgType2,w=t.bgType3,x=t.insertImage1,E=t.insertImage2,C=t.insertImage3,R=this.props.for_,N=this.props.blockNum,S=this.props.blockNum-1,B=[n,o,r],T=[l,a,c],O=[i,s,u],I=[p,m,b],A=[v,k,f],j=[d,_,g],P=[y,h,w],z=[x,E,C],M="",F="",L=z[S]?React.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url(".concat(z[S],")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},React.createElement("img",{src:z[S],alt:""})):(j[S]||(j[S]="#0693e3"),"0"===P[S]?React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:j[S],border:"1px solid ".concat(j[S])}},React.createElement("i",{className:"".concat(A[S]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+j[S]}},React.createElement("i",{className:"".concat(A[S]," vk_prBlocks_item_icon"),style:{color:j[S]}})));return"edit"===R?1===N?(M=React.createElement(Go,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",onChange:function(t){return e({heading1:t})},value:n,placeholder:Wo("Input Title","vk-blocks")}),F=React.createElement(Go,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:l,placeholder:Wo("Input Content","vk-blocks")})):2===N?(M=React.createElement(Go,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",onChange:function(t){return e({heading2:t})},value:o,placeholder:Wo("Input Title","vk-blocks")}),F=React.createElement(Go,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:a,placeholder:Wo("Input Content","vk-blocks")})):3===N&&(M=React.createElement(Go,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",onChange:function(t){return e({heading3:t})},value:r,placeholder:Wo("Input Title","vk-blocks")}),F=React.createElement(Go,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:Wo("Input Content","vk-blocks")})):"save"===R&&(M=React.createElement(Go.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(N),tagName:"h1",value:B[S]}),F=React.createElement(Go.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(N),tagName:"p",value:T[S]})),React.createElement("div",{className:"vk_prBlocks_item col-sm-4"},React.createElement("a",{href:O[S],target:I[S]?"_blank":"_self",className:"vk_prBlocks_item_link",rel:"noopener noreferrer"},L,M,F))}}])&&Vo(n.prototype,o),r&&Vo(n,r),t}(Jo);function Ko(e){throw new Error('"'+e+'" is read-only')}wp.i18n.__;var Zo=i.RichText;var Qo=[{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h3.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes,n=t.heading1,o=t.heading2,r=t.heading3,l=t.content1,a=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,p=t.urlOpenType1,m=t.urlOpenType2,b=t.urlOpenType3,v=t.icon1,k=t.icon2,f=t.icon3,d=t.color1,_=t.color2,g=t.color3,y=t.bgType1,h=t.bgType2,w=t.bgType3,x=t.insertImage1,E=t.insertImage2,C=t.insertImage3;return React.createElement("div",{className:"vk_prBlocks row"},React.createElement("div",{className:"vk_prBlocks_item col-sm-4"},React.createElement("a",{href:i,target:p?"_blank":"_self",className:"vk_prBlocks_item_link"},x?React.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+x+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},React.createElement("img",{src:x,alt:""})):(d||(Ko("color1"),d="#0693e3"),"0"===y?React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:d,border:"1px solid ".concat(d)}},React.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:"#fff"}})):React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+d}},React.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:d}}))),React.createElement(Zo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),React.createElement(Zo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",value:l}))),React.createElement("div",{className:"vk_prBlocks_item col-sm-4"},React.createElement("a",{href:s,target:m?"_blank":"_self",className:"vk_prBlocks_item_link"},E?React.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+E+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},React.createElement("img",{src:E,alt:""})):(_||(Ko("color2"),_="#0693e3"),"0"===h?React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},React.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:"#fff"}})):React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+_}},React.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:_}}))),React.createElement(Zo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),React.createElement(Zo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",value:a}))),React.createElement("div",{className:"vk_prBlocks_item col-sm-4"},React.createElement("a",{href:u,target:b?"_blank":"_self",className:"vk_prBlocks_item_link"},C?React.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url("+C+")",backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},React.createElement("img",{src:C,alt:""})):(g||(Ko("color3"),g="#0693e3"),"0"===w?React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:g,border:"1px solid ".concat(g)}},React.createElement("i",{className:"".concat(f," vk_prBlocks_item_icon"),style:{color:"#fff"}})):React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+g}},React.createElement("i",{className:"".concat(f," vk_prBlocks_item_icon"),style:{color:g}}))),React.createElement(Zo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),React.createElement(Zo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",value:c}))))}},{attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:"h1.vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:null},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:null};return t}(4),save:function(e){var t=e.attributes;return React.createElement("div",{className:"vk_prBlocks row"},React.createElement(Yo,{attributes:t,blockNum:1,for_:"save"}),React.createElement(Yo,{attributes:t,blockNum:2,for_:"save"}),React.createElement(Yo,{attributes:t,blockNum:3,for_:"save"}))}}];function Xo(e){return(Xo="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)}var er=function(e){if("string"==typeof e){try{JSON.parse(e)}catch(e){return!0}return!1}return"object"!==Xo(e)||Array.isArray(e)};function tr(e){return(tr="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 nr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function or(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function rr(e,t){return!t||"object"!==tr(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}function lr(e){return(lr=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ar(e,t){return(ar=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var cr=wp.i18n.__,ir=wp.element.Component,sr=i.RichText,ur=function(e){function t(){return nr(this,t),rr(this,lr(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&ar(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.setAttributes,t=this.props.attributes,n=t.heading1,o=t.heading2,r=t.heading3,l=t.content1,a=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,p=t.urlOpenType1,m=t.urlOpenType2,b=t.urlOpenType3,v=t.icon1,k=t.icon2,f=t.icon3,d=t.color1,_=t.color2,g=t.color3,y=t.bgType1,h=t.bgType2,w=t.bgType3,x=t.insertImage1,E=t.insertImage2,C=t.insertImage3,R=this.props.for_,N=this.props.blockNum,S=this.props.blockNum-1,B=[n,o,r],T=[l,a,c],O=[i,s,u],I=[p,m,b],A=[v,k,f],j=[d,_,g],P=[y,h,w],z=[x,E,C],M="",F="",L=function(e){var t=e[S];if(er(t))return{backgroundImage:"url(".concat(t,")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"};var n=JSON.parse(t);return{backgroundImage:"url(".concat(n.sizes.full.url,")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},U=z[S]?React.createElement("div",{className:"vk_prBlocks_item_image",style:L(z)},function(e){if(er(e))return React.createElement("img",{src:e,alt:""});var t=JSON.parse(e);return React.createElement("img",{src:t.sizes.full.url,alt:t.alt})}(z[S])):(j[S]||(j[S]="#0693e3"),"0"===P[S]?React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:j[S],border:"1px solid ".concat(j[S])}},React.createElement("i",{className:"".concat(A[S]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):React.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+j[S]}},React.createElement("i",{className:"".concat(A[S]," vk_prBlocks_item_icon"),style:{color:j[S]}})));return"edit"===R?1===N?(M=React.createElement(sr,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h3",onChange:function(t){return e({heading1:t})},value:n,placeholder:cr("Input Title","vk-blocks")}),F=React.createElement(sr,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:l,placeholder:cr("Input Content","vk-blocks")})):2===N?(M=React.createElement(sr,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h3",onChange:function(t){return e({heading2:t})},value:o,placeholder:cr("Input Title","vk-blocks")}),F=React.createElement(sr,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:a,placeholder:cr("Input Content","vk-blocks")})):3===N&&(M=React.createElement(sr,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h3",onChange:function(t){return e({heading3:t})},value:r,placeholder:cr("Input Title","vk-blocks")}),F=React.createElement(sr,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:cr("Input Content","vk-blocks")})):"save"===R&&(M=React.createElement(sr.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(N),tagName:"h3",value:B[S]}),F=React.createElement(sr.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(N),tagName:"p",value:T[S]})),O[S]&&"save"===R?React.createElement("div",{className:"vk_prBlocks_item col-sm-4"},React.createElement("a",{href:O[S],className:"vk_prBlocks_item_link",target:I[S]?"_blank":"_self",rel:"noopener noreferrer"},U,M,F)):React.createElement("div",{className:"vk_prBlocks_item col-sm-4"},U,M,F)}}])&&or(n.prototype,o),r&&or(n,r),t}(ir),pr=wp.i18n.__,mr=wp.blocks.registerBlockType,br=wp.components,vr=br.RadioControl,kr=br.PanelBody,fr=br.Button,dr=br.BaseControl,_r=br.CheckboxControl,gr=br.TextControl,yr=wp.element.Fragment,hr=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,wr=hr.InspectorControls,xr=hr.MediaUpload,Er=hr.ColorPalette,Cr=be.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},be.a.createElement("g",null,be.a.createElement("g",null,be.a.createElement("circle",{cx:"288",cy:"186.2",r:"60"}),be.a.createElement("rect",{x:"213.5",y:"278.8",width:"149",height:"107"})),be.a.createElement("g",null,be.a.createElement("circle",{cx:"74.5",cy:"186.2",r:"60"}),be.a.createElement("rect",{y:"278.8",width:"149",height:"107"})),be.a.createElement("g",null,be.a.createElement("circle",{cx:"501.5",cy:"186.2",r:"60"}),be.a.createElement("rect",{x:"427",y:"278.8",width:"149",height:"107"}))));mr("vk-blocks/pr-blocks",{title:pr("PR Blocks","vk-blocks"),icon:Cr,category:"vk-blocks-cat",attributes:function(e){for(var t={},n=1;n<=e;n++)t["heading"+n]={type:"string",source:"html",selector:".vk_prBlocks_item_title-"+n},t["content"+n]={type:"string",source:"html",selector:"p.vk_prBlocks_item_summary-"+n},t["url"+n]={type:"string",default:""},t["urlOpenType"+n]={type:"Boolean",default:!1},t["icon"+n]={type:"string",default:"fas fa-file"},t["color"+n]={type:"string",default:"#0693e3"},t["bgType"+n]={type:"string",default:"0"},t["insertImage"+n]={type:"string",default:""};return t}(4),edit:function(e){var t,n=e.attributes,o=e.setAttributes,r=e.className,l=(n.heading1,n.heading2,n.heading3,n.content1,n.content2,n.content3,n.url1),a=n.url2,c=n.url3,i=n.urlOpenType1,s=n.urlOpenType2,u=n.urlOpenType3,p=n.icon1,m=n.icon2,b=n.icon3,v=n.color1,k=n.color2,f=n.color3,d=n.bgType1,_=n.bgType2,g=n.bgType3,y=n.insertImage1,h=n.insertImage2,w=n.insertImage3;t=r?"".concat(r," vk_prBlocks row"):"vk_prBlocks row";var x=function(e){if(er(e))return e?be.a.createElement("img",{className:"icon-image",src:e,alt:pr("Upload image","vk-blocks")}):pr("Select image","vk-blocks");var t=JSON.parse(e);return e?be.a.createElement("img",{className:"icon-image",src:t.sizes.full.url,alt:t.alt}):pr("Select image","vk-blocks")};return be.a.createElement(yr,null,be.a.createElement(wr,null,be.a.createElement(kr,{title:pr("PR Block1 Setting","vk-blocks")},be.a.createElement(dr,{label:pr("Link URL:","vk-blocks")},be.a.createElement(gr,{value:l,onChange:function(e){return o({url1:e})}}),be.a.createElement(_r,{label:pr("Open link new tab.","vk-blocks"),checked:i,onChange:function(e){return o({urlOpenType1:e})}})),be.a.createElement(dr,{label:pr("Icon 1","vk-blocks")},be.a.createElement(gr,{label:pr("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:p,onChange:function(e){return o({icon1:e})},placeholder:"fas fa-file",help:be.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},pr("Font Awesome icon list","vk-blocks"))}),be.a.createElement(Er,{value:v,onChange:function(e){e?o({color1:e}):(o({color1:"#0693e3"}),o({bgType1:"0"}))}}),be.a.createElement(vr,{label:pr("Icon Background:","vk-blocks"),selected:d,options:[{label:pr("Solid color","vk-blocks"),value:"0"},{label:pr("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType1:e})}})),be.a.createElement(dr,{help:pr("When you have an image. Image is displayed with priority","vk-blocks")},be.a.createElement("h4",{className:"components-base-control__title"},pr("PR Image 1","vk-blocks")),be.a.createElement(xr,{onSelect:function(e){er(e)?o({insertImage1:e.url}):o({insertImage1:JSON.stringify(e)})},type:"image",value:y,render:function(e){var t=e.open;return be.a.createElement(fr,{onClick:t,className:y?"image-button":"button button-large"},x(y))}}))),be.a.createElement(kr,{title:pr("PR Block2 Setting","vk-blocks")},be.a.createElement(dr,{label:pr("Link URL:","vk-blocks")},be.a.createElement(gr,{value:a,onChange:function(e){return o({url2:e})}}),be.a.createElement(_r,{label:pr("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return o({urlOpenType2:e})}})),be.a.createElement(dr,{label:pr("Icon 2","vk-blocks")},be.a.createElement(gr,{label:pr("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:m,onChange:function(e){return o({icon2:e})},placeholder:"fas fa-file",help:be.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},pr("Font Awesome icon list","vk-blocks"))}),be.a.createElement(Er,{value:k,onChange:function(e){e?o({color2:e}):(o({color2:"#0693e3"}),o({bgType2:"0"}))}}),be.a.createElement(vr,{label:pr("Icon Background:","vk-blocks"),selected:_,options:[{label:pr("Solid color","vk-blocks"),value:"0"},{label:pr("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType2:e})}})),be.a.createElement(dr,{help:pr("When you have an image. Image is displayed with priority.","vk-blocks")},be.a.createElement("h4",{className:"components-base-control__title"},pr("PR Image 2","vk-blocks")),be.a.createElement(xr,{onSelect:function(e){er(e)?o({insertImage2:e.url}):o({insertImage2:JSON.stringify(e)})},type:"image",value:h,render:function(e){var t=e.open;return be.a.createElement(fr,{onClick:t,className:h?"image-button":"button button-large"},x(h))}}))),be.a.createElement(kr,{title:pr("PR Block3 Setting","vk-blocks")},be.a.createElement(dr,{label:pr("Link URL:","vk-blocks")},be.a.createElement(gr,{value:c,onChange:function(e){return o({url3:e})}}),be.a.createElement(_r,{label:pr("Open link new tab.","vk-blocks"),checked:u,onChange:function(e){return o({urlOpenType3:e})}})),be.a.createElement(dr,{label:pr("Icon 3","vk-blocks")},be.a.createElement(gr,{label:pr("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:b,onChange:function(e){return o({icon3:e})},placeholder:"fas fa-file",help:be.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},pr("Font Awesome icon list","vk-blocks"))}),be.a.createElement(Er,{value:f,onChange:function(e){e?o({color3:e}):(o({color3:"#0693e3"}),o({bgType3:"0"}))}}),be.a.createElement(vr,{label:pr("Icon Background:","vk-blocks"),selected:g,options:[{label:pr("Solid color","vk-blocks"),value:"0"},{label:pr("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType3:e})}})),be.a.createElement(dr,{help:pr("When you have an image. Image is displayed with priority.","vk-blocks")},be.a.createElement("h4",{className:"components-base-control__title"},pr("PR Image 3","vk-blocks")),be.a.createElement(xr,{onSelect:function(e){er(e)?o({insertImage3:e.url}):o({insertImage3:JSON.stringify(e)})},type:"image",value:w,render:function(e){var t=e.open;return be.a.createElement(fr,{onClick:t,className:w?"image-button":"button button-large"},x(w))}})))),be.a.createElement("div",{className:t},be.a.createElement(ur,{attributes:n,setAttributes:o,blockNum:1,for_:"edit"}),be.a.createElement(ur,{attributes:n,setAttributes:o,blockNum:2,for_:"edit"}),be.a.createElement(ur,{attributes:n,setAttributes:o,blockNum:3,for_:"edit"})))},save:function(e){var t,n=e.attributes,o=e.className;return t=o?"".concat(o," vk_prBlocks row"):"vk_prBlocks row",be.a.createElement("div",{className:t},be.a.createElement(ur,{attributes:n,blockNum:1,for_:"save"}),be.a.createElement(ur,{attributes:n,blockNum:2,for_:"save"}),be.a.createElement(ur,{attributes:n,blockNum:3,for_:"save"}))},deprecated:Qo});function Rr(e){return(Rr="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 Nr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Sr(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Br(e,t){return!t||"object"!==Rr(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}function Tr(e){return(Tr=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Or(e,t){return(Or=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Ir=function(e){function t(){return Nr(this,t),Br(this,Tr(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Or(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.buttonText,n=e.fontAwesomeIconBefore,o=e.fontAwesomeIconAfter,r="",l="";return n&&(r=be.a.createElement("i",{className:"".concat(n," vk_button_link_before")})),o&&(l=be.a.createElement("i",{className:"".concat(o," vk_button_link_after")})),be.a.createElement(be.a.Fragment,null,r,be.a.createElement("span",{className:"vk_button_link_txt"},t),l)}}])&&Sr(n.prototype,o),r&&Sr(n,r),t}(be.a.Component);function Ar(e){return(Ar="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 jr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Pr(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function zr(e,t){return!t||"object"!==Ar(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}function Mr(e){return(Mr=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Fr(e,t){return(Fr=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Lr=wp.i18n.__,Ur=wp.components.Button,Hr=i.MediaUpload,Vr=i.RichText,Dr=function(e){function t(){return jr(this,t),zr(this,Mr(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Fr(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,l=e.url,a=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,p=e.Image,m=e.ImageBorderColor,b=e.layout,v=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,f=this.props.for_,d="vk_prContent",_="vk_button",g="btn btn-block vk_button_link vk_prContent_colTxt_btn",y={},h="none";d="right"===b?ke()(k,d,"vk_prContent-layout-imageRight"):ke()(k,d,"vk_prContent-layout-imageLeft"),i?(_="".concat(_," vk_button-color-custom"),g="".concat(g," btn-primary"),"0"===a?y={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===a&&(y={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===a?(g="".concat(g," btn-").concat(c),y=null):"1"===a&&(g="".concat(g," btn-outline-").concat(c),y=null)),h=m?"1px solid ".concat(m):"none";var w=function(e){e&&v({Image:JSON.stringify(e)})};return be.a.createElement("div",{className:d},be.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},function(e){if("edit"===e){if(p&&-1===p.indexOf("{"))return be.a.createElement(Hr,{onSelect:function(e){return v({Image:e.sizes.full.url})},type:" image",value:p,render:function(e){var t=e.open;return be.a.createElement(Ur,{onClick:t,className:p?"image-button":"button button-large"},p?be.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:Lr("Upload image","vk-blocks"),style:{border:h}}):Lr("Select image","vk-blocks"))}});var t=JSON.parse(p);return be.a.createElement(Hr,{onSelect:w,type:" image",value:t,render:function(e){var n=e.open;return be.a.createElement(Ur,{onClick:n,className:t?"image-button":"button button-large"},null===p||void 0===t.sizes?Lr("Select image","vk-blocks"):be.a.createElement("img",{className:"vk_prContent_colImg_image",src:t.sizes.full.url,alt:t.alt,style:{border:h}}))}})}if("save"===e){if(p){if(p&&-1===p.indexOf("{"))return be.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:Lr("Upload image","vk-blocks"),style:{border:h}});var n=JSON.parse(p);return n&&void 0!==n.sizes?be.a.createElement("img",{className:"vk_prContent_colImg_image",src:n.sizes.full.url,alt:n.alt,style:{border:h}}):""}return Lr("Select image","vk-blocks")}}(f)),be.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===f?be.a.createElement(be.a.Fragment,null,be.a.createElement(Vr,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return v({title:e})},value:t,placeholder:Lr("Input title.","vk-blocks"),style:{color:n}}),be.a.createElement(Vr,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return v({content:e})},value:o,placeholder:Lr("Input content.","vk-blocks"),style:{color:r}})):be.a.createElement(be.a.Fragment,null,be.a.createElement(Vr.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),be.a.createElement(Vr.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return be.a.createElement("div",{className:_},be.a.createElement("a",{href:l,className:g,target:u?"_blank":null,style:y,rel:"noopener noreferrer"},be.a.createElement(Ir,{attributes:e})))}()))}}])&&Pr(n.prototype,o),r&&Pr(n,r),t}(be.a.Component);function $r(e){return($r="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 qr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Wr(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function Jr(e,t){return!t||"object"!==$r(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}function Gr(e){return(Gr=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Yr(e,t){return(Yr=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Kr=function(e){function t(){return qr(this,t),Jr(this,Gr(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&Yr(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.buttonText,n=e.fontAwesomeIconBefore,o=e.fontAwesomeIconAfter,r="",l="";return n&&(r=be.a.createElement("i",{className:"".concat(n," vk_button_link_before")})),o&&(l=be.a.createElement("i",{className:"".concat(o," vk_button_link_after")})),be.a.createElement(be.a.Fragment,null,r,be.a.createElement("span",{className:"vk_button_link_txt"},t),l)}}])&&Wr(n.prototype,o),r&&Wr(n,r),t}(be.a.Component);function Zr(e){return(Zr="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 Qr(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function Xr(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function el(e,t){return!t||"object"!==Zr(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}function tl(e){return(tl=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function nl(e,t){return(nl=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var ol=wp.i18n.__,rl=wp.components.Button,ll=i.MediaUpload,al=i.RichText,cl=function(e){function t(){return Qr(this,t),el(this,tl(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&nl(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,l=e.url,a=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,p=e.Image,m=e.ImageBorderColor,b=e.layout,v=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.for_,f="vk_prContent",d="vk_button",_="btn btn-block vk_button_link vk_prContent_colTxt_btn",g={};return f="".concat(f,"right"===b?" vk_prContent-layout-imageRight":" vk_prContent-layout-imageLeft"),i?(d="".concat(d," vk_button-color-custom"),_="".concat(_," btn-primary"),"0"===a?g={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===a&&(g={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===a?(_="".concat(_," btn-").concat(c),g=null):"1"===a&&(_="".concat(_," btn-outline-").concat(c),g=null)),be.a.createElement("div",{className:f},be.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===k?be.a.createElement(ll,{onSelect:function(e){return v({Image:e.sizes.full.url})},type:" image",value:p,render:function(e){var t=e.open;return be.a.createElement(rl,{onClick:t,className:p?"image-button":"button button-large"},p?be.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:ol("Upload image","vk-blocks"),style:{border:"1px solid ".concat(m)}}):ol("Select image","vk-blocks"))}}):p?be.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:ol("Upload image","vk-blocks"),style:{border:"1px solid ".concat(m)}}):ol("Select image","vk-blocks")),be.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===k?be.a.createElement(be.a.Fragment,null,be.a.createElement(al,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return v({title:e})},value:t,placeholder:ol("Input title.","vk-blocks"),style:{color:n}}),be.a.createElement(al,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return v({content:e})},value:o,placeholder:ol("Input content.","vk-blocks"),style:{color:r}})):be.a.createElement(be.a.Fragment,null,be.a.createElement(al.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),be.a.createElement(al.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return be.a.createElement("div",{className:d},be.a.createElement("a",{href:l,className:_,target:u?"_blank":null,style:g,rel:"noopener noreferrer"},be.a.createElement(Kr,{attributes:e})))}()))}}])&&Xr(n.prototype,o),r&&Xr(n,r),t}(be.a.Component);function il(e){return(il="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 sl(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function ul(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function pl(e,t){return!t||"object"!==il(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}function ml(e){return(ml=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function bl(e,t){return(bl=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var vl=wp.i18n.__,kl=wp.components.Button,fl=i.MediaUpload,dl=i.RichText,_l=function(e){function t(){return sl(this,t),pl(this,ml(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&bl(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes,t=e.title,n=e.titleColor,o=e.content,r=e.contentColor,l=e.url,a=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,p=e.Image,m=e.ImageBorderColor,b=e.layout,v=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,f=this.props.for_,d="vk_prContent",_="vk_button",g="btn btn-block vk_button_link vk_prContent_colTxt_btn",y={},h="";return d="right"===b?ke()(k,d,"vk_prContent-layout-imageRight"):ke()(k,d,"vk_prContent-layout-imageLeft"),i?(_="".concat(_," vk_button-color-custom"),g="".concat(g," btn-primary"),"0"===a?y={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===a&&(y={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===a?(g="".concat(g," btn-").concat(c),y=null):"1"===a&&(g="".concat(g," btn-outline-").concat(c),y=null)),h=null==m?"none":"1px solid ".concat(m),be.a.createElement("div",{className:d},be.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===f?be.a.createElement(fl,{onSelect:function(e){return v({Image:e.sizes.full.url})},type:" image",value:p,render:function(e){var t=e.open;return be.a.createElement(kl,{onClick:t,className:p?"image-button":"button button-large"},p?be.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:vl("Upload image","vk-blocks"),style:{border:h}}):vl("Select image","vk-blocks"))}}):p?be.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:vl("Upload image","vk-blocks"),style:{border:h}}):vl("Select image","vk-blocks")),be.a.createElement("div",{className:"col-sm-6 vk_prContent_colTxt"},"edit"===f?be.a.createElement(be.a.Fragment,null,be.a.createElement(dl,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return v({title:e})},value:t,placeholder:vl("Input title.","vk-blocks"),style:{color:n}}),be.a.createElement(dl,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return v({content:e})},value:o,placeholder:vl("Input content.","vk-blocks"),style:{color:r}})):be.a.createElement(be.a.Fragment,null,be.a.createElement(dl.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),be.a.createElement(dl.Content,{tagName:"p",className:"vk_prContent_colTxt_text",value:o,style:{color:r}})),function(){if(""!==s&&void 0!==s)return be.a.createElement("div",{className:_},be.a.createElement("a",{href:l,className:g,target:u?"_blank":null,style:y,rel:"noopener noreferrer"},be.a.createElement(Kr,{attributes:e})))}()))}}])&&ul(n.prototype,o),r&&ul(n,r),t}(be.a.Component),gl=[{attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string"},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string"},url:{type:"string",default:null},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:null},ImageBorderColor:{type:"string",default:null},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string"},fontAwesomeIconAfter:{type:"string"}},save:function(e){var t=e.attributes;e.className;return React.createElement(cl,{attributes:t,for_:"save"})}},{attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string"},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string"},url:{type:"string",default:null},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:null},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:null},ImageBorderColor:{type:"string",default:null},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string"},fontAwesomeIconAfter:{type:"string"}},save:function(e){var t=e.attributes,n=e.className;return React.createElement(_l,{attributes:t,className:n,for_:"save"})}}],yl=wp.i18n.__,hl=wp.blocks.registerBlockType,wl=wp.components,xl=wl.RadioControl,El=wl.PanelBody,Cl=wl.BaseControl,Rl=wl.CheckboxControl,Nl=wl.TextControl,Sl=wp.element.Fragment,Bl=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Tl=Bl.InspectorControls,Ol=Bl.ColorPalette,Il=be.a.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"576",height:"512",viewBox:"0 0 576 512"},be.a.createElement("g",null,be.a.createElement("path",{d:"M291.7,133.3l0,245.3l-273.1,0l0-245.3L291.7,133.3 M307.2,117.8l-304.2,0l0,276.4l304.2,0L307.2,117.8L307.2,117.8z"}),be.a.createElement("path",{d:"M560.7,218.8l-213.1,0c-6.1,0-11.1-5-11.1-11.1s5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,213.8,566.8,218.8,560.7,218.8z"}),be.a.createElement("path",{d:"M560.7,265.4l-213.1,0c-6.1,0-11.1-5-11.1-11.1c0-6.1,5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,260.5,566.8,265.4,560.7,265.4z"}),be.a.createElement("path",{d:"M560.7,312.1l-213.1,0c-6.1,0-11.1-5-11.1-11.1c0-6.1,5-11.1,11.1-11.1l213.1,0c6.1,0,11.1,5,11.1,11.1 C571.8,307.1,566.8,312.1,560.7,312.1z"}),be.a.createElement("polygon",{points:"278.4,365.4 31.9,365.4 31.9,287.4 113,182.2 184.4,264.4 229.9,226.5 278.4,290.6 \t"}),be.a.createElement("path",{d:"M360.6,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C351.9,137.2,355.8,133.3,360.6,133.3 M360.6,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C384.9,128.7,374,117.8,360.6,117.8L360.6,117.8z"}),be.a.createElement("path",{d:"M423.3,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C414.6,137.2,418.5,133.3,423.3,133.3 M423.3,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2s24.2-10.9,24.2-24.2C447.6,128.7,436.7,117.8,423.3,117.8 L423.3,117.8z"}),be.a.createElement("path",{d:"M486,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7c-4.8,0-8.7-3.9-8.7-8.7C477.3,137.2,481.2,133.3,486,133.3 M486,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C510.2,128.7,499.4,117.8,486,117.8L486,117.8z"}),be.a.createElement("path",{d:"M548.7,133.3c4.8,0,8.7,3.9,8.7,8.7c0,4.8-3.9,8.7-8.7,8.7s-8.7-3.9-8.7-8.7C540,137.2,543.9,133.3,548.7,133.3 M548.7,117.8c-13.4,0-24.2,10.9-24.2,24.2c0,13.4,10.9,24.2,24.2,24.2c13.4,0,24.2-10.9,24.2-24.2 C572.9,128.7,562.1,117.8,548.7,117.8L548.7,117.8z"}),be.a.createElement("path",{d:"M566.3,347.6l-224.3,0c-3.1,0-5.6,2.5-5.6,5.6l0,35.5c0,3.1,2.5,5.6,5.6,5.6l224.3,0c3.1,0,5.6-2.5,5.6-5.6v-35.5 C571.8,350.1,569.3,347.6,566.3,347.6z M547.1,379.2v-16.6l9.8,8.3L547.1,379.2z"})));hl("vk-blocks/pr-content",{title:yl("PR Content","vk-blocks"),icon:Il,category:"vk-blocks-cat",attributes:{title:{source:"html",selector:".vk_prContent_colTxt_title"},titleColor:{type:"string",default:""},content:{source:"html",selector:".vk_prContent_colTxt_text"},contentColor:{type:"string",default:""},url:{type:"string",default:""},buttonType:{type:"string",default:"0"},buttonColor:{type:"string",default:"primary"},buttonColorCustom:{type:"string",default:""},buttonText:{source:"html",selector:".vk_button_link_txt",default:""},buttonTarget:{type:"Boolean",default:!1},Image:{type:"string",default:"{}"},ImageBorderColor:{type:"string",default:""},layout:{type:"string",default:"left"},fontAwesomeIconBefore:{type:"string",default:""},fontAwesomeIconAfter:{type:"string",default:""}},edit:function(e){var t=e.attributes,n=e.className,o=e.setAttributes,r=t.titleColor,l=t.contentColor,a=t.url,c=t.buttonType,i=t.buttonColor,s=t.buttonColorCustom,u=t.buttonText,p=t.buttonTarget,m=t.ImageBorderColor,b=t.layout,v=t.fontAwesomeIconBefore,k=t.fontAwesomeIconAfter;return be.a.createElement(Sl,null,be.a.createElement(Tl,null,be.a.createElement(El,{title:yl("Color Setting","vk-blocks"),initialOpen:!1},be.a.createElement(Cl,{label:yl("Title Color","vk-blocks")},be.a.createElement(Ol,{value:r,onChange:function(e){return o({titleColor:e})}})),be.a.createElement(Cl,{label:yl("Content Color","vk-blocks")},be.a.createElement(Ol,{value:l,onChange:function(e){return o({contentColor:e})}})),be.a.createElement(Cl,{label:yl("Image Border Color","vk-blocks")},be.a.createElement(Ol,{value:m,onChange:function(e){return o({ImageBorderColor:e})}}))),be.a.createElement(El,{title:yl("Button Setting","vk-blocks"),initialOpen:!1},be.a.createElement(Cl,{label:yl("Button Text","vk-blocks")},be.a.createElement(Nl,{value:u,onChange:function(e){return o({buttonText:e})},placeholder:"Input button text."})),be.a.createElement(Cl,{label:yl("Link URL","vk-blocks")},be.a.createElement(Nl,{value:a,onChange:function(e){return o({url:e})},placeholder:"https://vektor-inc.co.jp/"})),be.a.createElement(Rl,{label:yl("Open link new tab.","vk-blocks"),checked:p,onChange:function(e){return o({buttonTarget:e})}}),be.a.createElement(Cl,{label:yl("Button Type","vk-blocks")},be.a.createElement(xl,{selected:c,options:[{label:yl("Solid","vk-blocks"),value:"0"},{label:yl("Ghost","vk-blocks"),value:"1"}],onChange:function(e){return o({buttonType:e})}})),be.a.createElement(xl,{label:yl("Default Color:","vk-blocks"),selected:i,options:[{label:yl("Primary","vk-blocks"),value:"primary"},{label:yl("Secondary","vk-blocks"),value:"secondary"},{label:yl("Success","vk-blocks"),value:"success"},{label:yl("Info","vk-blocks"),value:"info"},{label:yl("Warning","vk-blocks"),value:"warning"},{label:yl("Danger","vk-blocks"),value:"danger"},{label:yl("Light","vk-blocks"),value:"light"},{label:yl("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return o({buttonColor:e})}}),be.a.createElement(Cl,{label:yl("Button Color","vk-blocks")},be.a.createElement(Ol,{value:s,onChange:function(e){return o({buttonColorCustom:e})}})),be.a.createElement(Cl,{label:yl("Font Awesome:","vk-blocks"),help:be.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},yl("Font Awesome icon list","vk-blocks"))},be.a.createElement(Nl,{label:yl("Before text","vk-blocks"),help:yl("Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right","vk-blocks"),value:v,onChange:function(e){return o({fontAwesomeIconBefore:e})},placeholder:"fas fa-arrow-circle-right"}),be.a.createElement(Nl,{label:yl("After text","vk-blocks"),help:yl("Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-external-link-alt","vk-blocks"),value:k,onChange:function(e){return o({fontAwesomeIconAfter:e})},placeholder:"fas fa-external-link-alt"}))),be.a.createElement(El,{title:yl("Layout Setting","vk-blocks"),initialOpen:!1},be.a.createElement(xl,{label:yl("Layout Type","vk-blocks"),selected:b,options:[{label:yl("Right","vk-blocks"),value:"right"},{label:yl("Left","vk-blocks"),value:"left"}],onChange:function(e){return o({layout:e})}}))),be.a.createElement(Dr,{attributes:t,setAttributes:o,className:n,for_:"edit"}))},save:function(e){var t=e.attributes,n=e.className;return be.a.createElement(Dr,{attributes:t,className:n,for_:"save"})},deprecated:gl});var Al=lodash.assign,jl=wp.i18n.__,Pl=wp.hooks.addFilter;Pl("blocks.registerBlockType","vk-blocks/heading-style",(function(e){var t;return t=e.name,["core/heading"].includes(t)&&(e.attributes=Al(e.attributes,{color:{type:"string"}})),e})),wp.blocks.registerBlockStyle("core/heading",[{name:"vk-heading-default",label:jl("Default","vk-blocks"),isDefault:!0},{name:"vk-heading-plain",label:jl("Plain","vk-blocks")},{name:"vk-heading-background_fill_lightgray",label:jl("Background fill lightgray","vk-blocks")},{name:"vk-heading-double_black",label:jl("Double border top and bottom black","vk-blocks")},{name:"vk-heading-double_bottomborder_black",label:jl("Double border bottom black","vk-blocks")},{name:"vk-heading-solid_black",label:jl("Solid border top and bottom black","vk-blocks")},{name:"vk-heading-solid_bottomborder_black",label:jl("Solid border bottom black","vk-blocks")},{name:"vk-heading-dotted_bottomborder_black",label:jl("Dotted border bottom black","vk-blocks")},{name:"vk-heading-both_ends",label:jl("Both ends","vk-blocks")},{name:"vk-heading-brackets_black",label:jl("Brackets black","vk-blocks")}]);n(5),n(6);function zl(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if(!(Symbol.iterator in Object(e))&&"[object Arguments]"!==Object.prototype.toString.call(e))return;var n=[],o=!0,r=!1,l=void 0;try{for(var a,c=e[Symbol.iterator]();!(o=(a=c.next()).done)&&(n.push(a.value),!t||n.length!==t);o=!0);}catch(e){r=!0,l=e}finally{try{o||null==c.return||c.return()}finally{if(r)throw l}}return n}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}var Ml=wp.components.ToggleControl,Fl=wp.element.useState,Ll=function(e){var t=e.initialFixedTable,n=e.label,o=e.helpYes,r=e.helpNo,l=e.schema,a=e.setAttributes,c=zl(Fl(t),2),i=c[0],s=c[1];return React.createElement(Ml,{label:n,help:i?o:r,checked:i,onChange:function(){var e,t,n;s(!i),a((n=!i,(t=l)in(e={})?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e))}})};function Ul(){return(Ul=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e}).apply(this,arguments)}function Hl(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,o)}return n}function Vl(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Hl(Object(n),!0).forEach((function(t){Dl(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Hl(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Dl(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var $l=wp.i18n.__,ql=wp.element.Fragment,Wl=wp.hooks.addFilter,Jl=wp.components,Gl=Jl.PanelBody,Yl=Jl.BaseControl,Kl=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).InspectorControls,Zl=wp.compose.createHigherOrderComponent,Ql=function(e,t){return-1!==e.indexOf(t)},Xl=function(e){var t=void 0!==["core","vk-blocks"].find((function(t){return Ql(e,t)}));return void 0!==["core/block","vk-blocks/card-item"].find((function(t){return Ql(e,t)}))&&(t=!1),t};5.3<=parseFloat(wpVersion)&&(Wl("blocks.registerBlockType","vk-blocks/hidden-extension",(function(e){return Xl(e.name)&&(e.attributes=Vl({},e.attributes,{},{vkb_hidden:{type:"boolean",default:!1},vkb_hidden_xl:{type:"boolean",default:!1},vkb_hidden_lg:{type:"boolean",default:!1},vkb_hidden_md:{type:"boolean",default:!1},vkb_hidden_sm:{type:"boolean",default:!1},vkb_hidden_xs:{type:"boolean",default:!1}})),e})),wp.hooks.addFilter("editor.BlockEdit","vk-blocks/hidden-extension",Zl((function(e){return function(t){return Xl(t.name)?React.createElement(ql,null,React.createElement(e,t),React.createElement(Kl,null,React.createElement(Gl,{title:$l("Hidden Settings","vk-blocks"),initialOpen:!1},React.createElement(Yl,{label:$l("Hidden at screel size","vk-blocks")},React.createElement("p",null,$l("Note : This function is display hidden only. Actually Block is output to HTML.Pleade don't use you must not bisible item.Don't use it for blocks you really don't want to display.","vk-blocks")),React.createElement(Ll,Ul({label:$l("Hidden ( Screen size : all )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden,schema:"vkb_hidden"},t)),React.createElement(Ll,Ul({label:$l("Hidden ( Screen size : xs )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden_xs,schema:"vkb_hidden_xs"},t)),React.createElement(Ll,Ul({label:$l("Hidden ( Screen size : sm )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden_sm,schema:"vkb_hidden_sm"},t)),React.createElement(Ll,Ul({label:$l("Hidden ( Screen size : md )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden_md,schema:"vkb_hidden_md"},t)),React.createElement(Ll,Ul({label:$l("Hidden ( Screen size : lg )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden_lg,schema:"vkb_hidden_lg"},t)),React.createElement(Ll,Ul({label:$l("Hidden ( Screen size : xl )","vk-blocks"),initialFixedTable:t.attributes.vkb_hidden_xl,schema:"vkb_hidden_xl"},t)),React.createElement("p",null,$l("If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.","vk-blocks")))))):React.createElement(e,t)}}),"addHiddenSection")),wp.hooks.addFilter("blocks.getSaveElement","vk-blocks/hidden-extension",(function(e,t,n){var o=n.vkb_hidden,r=n.vkb_hidden_xl,l=n.vkb_hidden_lg,a=n.vkb_hidden_md,c=n.vkb_hidden_sm,i=n.vkb_hidden_xs;if(o||r||l||a||c||i){var s=o&&"vk_hidden",u=r&&"vk_hidden-xl",p=l&&"vk_hidden-lg",m=a&&"vk_hidden-md",b=c&&"vk_hidden-sm",v=i&&"vk_hidden-xs";e&&(e=Vl({},e,{},{props:Vl({},e.props,{},{className:ke()(e.props.className,s,u,p,m,b,v)})}))}return e})),wp.hooks.addFilter("editor.BlockListBlock","vk-blocks/hidden-extension",Zl((function(e){return function(t){var n=t.attributes.vkb_hidden_xl||t.attributes.vkb_hidden_lg||t.attributes.vkb_hidden_md||t.attributes.vkb_hidden_sm||t.attributes.vkb_hidden_xs||t.attributes.vkb_hidden?"vk_edit_hidden_warning":"",o=t.attributes.vkb_hidden?n+" vk_edit_hidden_all":n,r=ke()(o,t.className);return React.createElement(e,Ul({},t,{className:r}))}}),"addHiddenWarning")));var ea=i.InnerBlocks,ta=i.RichText,na=wp.i18n.__,oa=function(e){var t,n,o=e.setAttributes,r=e.attributes,l=e.for_,a=e.className,c=r.heading,i=r.color,s=r.faIcon;"edit"===l?(t=React.createElement(ea,null),n=React.createElement(ta,{tagName:"h4",className:"vk_borderBox_title",onChange:function(e){return o({heading:e})},value:c,placeholder:na("Please enter a title.","vk-blocks")})):(t=React.createElement(ea.Content,null),n=React.createElement(ta.Content,{tagName:"h4",className:"vk_borderBox_title",value:c}));var u=a;return-1===a.indexOf("is-style-")&&(u=ke()(a,"is-style-vk_borderBox-style-solid-kado-tit-tab")),React.createElement("div",{className:"vk_borderBox vk_borderBox-color-".concat(i," ").concat(u)},React.createElement("div",{className:"vk_borderBox_title_container"},React.createElement("i",{className:"".concat(s)}),n),React.createElement("div",{className:"vk_borderBox_body"},t))};function ra(e){return(ra="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 la(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function aa(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function ca(e,t){return!t||"object"!==ra(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}function ia(e){return(ia=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function sa(e,t){return(sa=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var ua=wp.components.TextControl,pa=wp.i18n.__,ma={faIcon:{type:"string",default:""}},ba=function(e){function t(){return la(this,t),ca(this,ia(t).apply(this,arguments))}var n,o,r;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,writable:!0,configurable:!0}}),t&&sa(e,t)}(t,e),n=t,(o=[{key:"render",value:function(){var e=this.props.attributes.faIcon,t=this.props.setAttributes;return be.a.createElement("fragment",null,be.a.createElement(ua,{label:pa("Font Awesome","vk-blocks"),value:e,onChange:function(e){return t({faIcon:e})},placeholder:"fas fa-arrow-circle-right",className:"mb-0"}),be.a.createElement("p",{className:"mt-1"},pa("Enter Font Awesome Class.","vk-blocks"),be.a.createElement("br",null),pa("Ex) fas fa-arrow-circle-right","vk-blocks"),be.a.createElement("br",null),be.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},pa("Font Awesome icon list","vk-blocks"))))}}])&&aa(n.prototype,o),r&&aa(n,r),t}(be.a.Component),va={heading:{type:"string",source:"html",selector:"h4"},color:{type:"string",default:"red"}},ka=Object.assign(va,ma);function fa(){return(fa=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e}).apply(this,arguments)}var da=wp.i18n.__,_a=wp.blocks.registerBlockType,ga=wp.components,ya=ga.PanelBody,ha=ga.BaseControl,wa=ga.SelectControl,xa=wp.element.Fragment,Ea=i.InspectorControls,Ca=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",viewBox:"0 0 576 576"},React.createElement("g",null,React.createElement("path",{d:"M121,142.6c0.1,1.4,1.2,2.5,2.7,2.5h10.7c1.4,0,2.6-1.1,2.7-2.5l1.6-30.1c0.1-1.5-1.1-2.8-2.7-2.8h-14 c-1.5,0-2.7,1.3-2.7,2.8L121,142.6z"}),React.createElement("path",{d:"M127.5,149.2c5.6-0.9,10.8,2.9,11.7,8.4c0.9,5.6-2.9,10.8-8.4,11.7s-10.8-2.9-11.7-8.4 C118.1,155.4,121.9,150.1,127.5,149.2z"}),React.createElement("path",{d:"M528,171.9H384.1V98.6c0-26.8-21.7-48.5-48.5-48.5H48.5C21.7,50.1,0,71.8,0,98.6v119.3h0.1c0,0.7-0.1,1.3-0.1,2v267 c0,26.5,21.5,48,48,48h480c26.5,0,48-21.5,48-48v-267C576,193.4,554.5,171.9,528,171.9z M129.1,83.2c30.3,0,54.9,24.6,54.9,54.9 c0,12.8-4.4,24.5-11.7,33.8c-10,12.8-25.6,21-43.2,21c-17.5,0-33.1-8.2-43.2-21c-7.3-9.3-11.7-21.1-11.7-33.8 C74.2,107.8,98.8,83.2,129.1,83.2z M528,486.9H48v-267h480V486.9z"}),React.createElement("path",{className:"st0",d:"M442.4,308.7H133.6c-7.9,0-14.5-6.5-14.5-14.5c0-7.9,6.5-14.5,14.5-14.5h308.9c7.9,0,14.5,6.5,14.5,14.5 C456.9,302.2,450.4,308.7,442.4,308.7z"}),React.createElement("path",{className:"st0",d:"M442.4,373.5H133.6c-7.9,0-14.5-6.5-14.5-14.5c0-7.9,6.5-14.5,14.5-14.5h308.9c7.9,0,14.5,6.5,14.5,14.5 C456.9,367.1,450.4,373.5,442.4,373.5z"}),React.createElement("path",{className:"st0",d:"M442.4,438.3H133.6c-7.9,0-14.5-6.5-14.5-14.5c0-7.9,6.5-14.5,14.5-14.5h308.9c7.9,0,14.5,6.5,14.5,14.5 C456.9,431.8,450.4,438.3,442.4,438.3z"})));_a("vk-blocks/border-box",{title:da("Border Box","vk-blocks"),icon:Ca,category:"vk-blocks-cat",attributes:ka,supports:{className:!0},styles:[{name:"vk_borderBox-style-solid-kado-tit-tab",label:da("Solid Angle Tab","vk-blocks"),isDefault:!0},{name:"vk_borderBox-style-solid-round-tit-tab",label:da("Solid Round Tab","vk-blocks")},{name:"vk_borderBox-style-solid-kado-tit-banner",label:da("Solid Angle Banner","vk-blocks")},{name:"vk_borderBox-style-solid-kado-tit-onborder",label:da("Solid Angle Onborder","vk-blocks")},{name:"vk_borderBox-style-solid-kado-tit-inner",label:da("Solid Angle Inner","vk-blocks")},{name:"vk_borderBox-style-solid-kado-iconFeature",label:da("Solid Angle iconFeature","vk-blocks")}],edit:function(e){var t=e.attributes,n=e.setAttributes,o=t.color;return React.createElement(xa,null,React.createElement(Ea,null,React.createElement(ya,{title:da("Color","vk-blocks")},React.createElement(wa,{value:o,onChange:function(e){return n({color:e})},options:[{value:"red",label:da("Red","vk-blocks")},{value:"orange",label:da("Orange","vk-blocks")},{value:"blue",label:da("Blue","vk-blocks")},{value:"green",label:da("Green","vk-blocks")},{value:"black",label:da("Black","vk-blocks")}]})),React.createElement(ya,{title:da("Icon","vk-blocks")},React.createElement(ha,{id:"dot-fa"},React.createElement(ba,{attributes:t,setAttributes:n})))),React.createElement(oa,fa({for_:"edit"},e)))},save:function(e){return React.createElement(oa,fa({for_:"save"},e))}});var Ra=wp.plugins.registerPlugin,Na=n(2),Sa=n.n(Na);function Ba(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);t&&(o=o.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,o)}return n}function Ta(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var Oa=wp.blocks.parse,Ia=[{name:"Cover",icon:"",content:'\n\t\t\x3c!-- wp:vk-blocks/outer {"bgColor":"#000000","bgImage":"https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/programming-942487_1920.jpg","outerWidth":"full","padding_top_and_bottom":"0","opacity":0.7} --\x3e\n\t\t<div class="wp-block-vk-blocks-outer vk_outer vk_outer-width-full vk_outer-paddingLR-none vk_outer-paddingVertical-none vk_outer-bgPosition-normal" style="background:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/programming-942487_1920.jpg);border:0px none #000;border-radius:0px"><div class="vk_outer_container">\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":4.5,"tablet":4.5,"mobile":4.5} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:4.5rem"></div><div class="vk_spacer-display-tablet" style="height:4.5rem"></div><div class="vk_spacer-display-mobile" style="height:4.5rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e\n\t\n\t\t\x3c!-- wp:vk-blocks/pr-content {"titleColor":"#eeeeee","contentColor":"#eeeeee","url":"https://example.com","buttonType":"1","buttonColorCustom":"#eeeeee","Image":"https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/device_01.png","layout":"right","fontAwesomeIconBefore":"fas fa-arrow-circle-right","fontAwesomeIconAfter":""} --\x3e\n\t\t<div class="wp-block-vk-blocks-pr-content vk_prContent vk_prContent-layout-imageRight"><div class="col-sm-6 vk_prContent_colImg"><img class="vk_prContent_colImg_image" src="https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/device_01.png" alt="画像をアップロード" style="border:none"/></div><div class="col-sm-6 vk_prContent_colTxt"><h3 class="vk_prContent_colTxt_title" style="color:#eeeeee">自社のコンセプトやキャッチコピーが入ります。</h3><p class="vk_prContent_colTxt_text" style="color:#eeeeee">この部分には、自社について説明が入ります。<br>自社のコンセプトや理念など、大切にしていることについて説明しましょう。お客様に一番伝えたいことを書くことをおススメします。</p><div class="vk_button vk_button-color-custom"><a href="https://example.com" class="btn btn-block vk_button_link vk_prContent_colTxt_btn btn-primary" style="background-color:transparent;border:1px solid #eeeeee;color:#eeeeee" rel="noopener noreferrer"><i class="fas fa-arrow-circle-right vk_button_link_before"></i><span class="vk_button_link_txt">さらに詳しく</span></a></div></div></div>\n\t\t\x3c!-- /wp:vk-blocks/pr-content --\x3e\n\t\t\n\t\t\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":2,"tablet":4,"mobile":4} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:2rem"></div><div class="vk_spacer-display-tablet" style="height:4rem"></div><div class="vk_spacer-display-mobile" style="height:4rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e</div></div>\n\t\t\x3c!-- /wp:vk-blocks/outer --\x3e\n\t\t'},{name:"Full Wide Title Set",icon:"",content:'\n\t\t\x3c!-- wp:vk-blocks/outer {"bgColor":"#0c7abb","outerWidth":"full","padding_top_and_bottom":"0","opacity":1} --\x3e\n\t\t<div class="wp-block-vk-blocks-outer vk_outer vk_outer-width-full vk_outer-paddingLR-none vk_outer-paddingVertical-none vk_outer-bgPosition-normal" style="background:linear-gradient(rgba(12, 122, 187, 1), rgba(12, 122, 187, 1));border:0px none #000;border-radius:0px"><div class="vk_outer_container">\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":3,"tablet":3,"mobile":3} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:3rem"></div><div class="vk_spacer-display-tablet" style="height:3rem"></div><div class="vk_spacer-display-mobile" style="height:3rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/heading {"align":"center","titleStyle":"plain","outerMarginBottom":0,"titleColor":"#ffffff","titleMarginBottom":0,"subTextColor":"#ffffff"} --\x3e\n\t\t<div class="wp-block-vk-blocks-heading vk_heading vk_heading-style-plain" style="margin-bottom:0rem"><h2 style="color:#ffffff;font-size:2rem;margin-bottom:0rem;text-align:center" class="vk_heading_title vk_heading_title-style-plain" placeholder="タイトルを入力">Title test</h2><p style="color:#ffffff;font-size:1.2rem;text-align:center" class="vk_heading_subtext vk_heading_subtext-style-plain" placeholder="サブテキストを入力">Sub title text</p></div>\n\t\t\x3c!-- /wp:vk-blocks/heading --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":3,"tablet":3,"mobile":3} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:3rem"></div><div class="vk_spacer-display-tablet" style="height:3rem"></div><div class="vk_spacer-display-mobile" style="height:3rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e</div></div>\n\t\t\x3c!-- /wp:vk-blocks/outer --\x3e\n\t\t'},{name:"Service",icon:"",content:'\x3c!-- wp:vk-blocks/outer {"bgColor":"#ffffff","outerWidth":"full","padding_top_and_bottom":"0"} --\x3e\n\t\t<div class="wp-block-vk-blocks-outer vk_outer vk_outer-width-full vk_outer-paddingLR-none vk_outer-paddingVertical-none vk_outer-bgPosition-normal" style="background:linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));border:0px none #000;border-radius:0px"><div class="vk_outer_container">\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":4,"tablet":4,"mobile":4} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:4rem"></div><div class="vk_spacer-display-tablet" style="height:4rem"></div><div class="vk_spacer-display-mobile" style="height:4rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/heading {"align":"center","titleStyle":"plain","outerMarginBottom":3,"titleMarginBottom":0} --\x3e\n\t\t<div class="wp-block-vk-blocks-heading"><div class="vk_heading vk_heading-style-plain" style="margin-bottom:3rem"><h2 style="color:#000000;font-size:2rem;margin-bottom:0rem;text-align:center" class="vk_heading_title vk_heading_title-style-plain" placeholder="タイトルを入力">サービスの特徴など</h2><p style="color:#000000;font-size:1.2rem;text-align:center" class="vk_heading_subtext vk_heading_subtext-style-plain" placeholder="サブテキストを入力">提供しているサービスの特徴などを画像つきで紹介します</p></div></div>\n\t\t\x3c!-- /wp:vk-blocks/heading --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/card {"name":"vk-blocks/card"} --\x3e\n\t\t<div class="vk_posts wp-block-vk-blocks-card">\x3c!-- wp:vk-blocks/card-item {"url":"/"} --\x3e\n\t\t<div class="vk_post card card-post vk_card_item vk_post-col-xs-12 vk_post-col-sm-6 vk_post-col-md-4 vk_post-col-lg-4 vk_post-col-xl-4 vk_post-btn-display"><div class="vk_post_imgOuter"><a href="/"><div class="card-img-overlay"></div></a></div><div class="vk_post_body card-body"><a href="/"><h5 class="vk_post_title card-title text-left">サービスの特徴</h5></a><p class="vk_post_excerpt card-text text-left">サービスの特徴についての紹介文などが入りますサービスの特徴についての紹介文などが入ります。</p><div class="vk_post_btnOuter text-right"><a class="btn btn-primary vk_post_btn" href="/">Read more</a></div></div></div>\n\t\t\x3c!-- /wp:vk-blocks/card-item --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/card-item {"url":"/"} --\x3e\n\t\t<div class="vk_post card card-post vk_card_item vk_post-col-xs-12 vk_post-col-sm-6 vk_post-col-md-4 vk_post-col-lg-4 vk_post-col-xl-4 vk_post-btn-display"><div class="vk_post_imgOuter"><a href="/"><div class="card-img-overlay"></div></a></div><div class="vk_post_body card-body"><a href="/"><h5 class="vk_post_title card-title text-left">サービスの特徴</h5></a><p class="vk_post_excerpt card-text text-left">サービスの特徴についての紹介文などが入りますサービスの特徴についての紹介文などが入ります。</p><div class="vk_post_btnOuter text-right"><a class="btn btn-primary vk_post_btn" href="/">Read more</a></div></div></div>\n\t\t\x3c!-- /wp:vk-blocks/card-item --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/card-item {"url":"/"} --\x3e\n\t\t<div class="vk_post card card-post vk_card_item vk_post-col-xs-12 vk_post-col-sm-6 vk_post-col-md-4 vk_post-col-lg-4 vk_post-col-xl-4 vk_post-btn-display"><div class="vk_post_imgOuter"><a href="/"><div class="card-img-overlay"></div></a></div><div class="vk_post_body card-body"><a href="/"><h5 class="vk_post_title card-title text-left">サービスの特徴</h5></a><p class="vk_post_excerpt card-text text-left">サービスの特徴についての紹介文などが入りますサービスの特徴についての紹介文などが入ります。</p><div class="vk_post_btnOuter text-right"><a class="btn btn-primary vk_post_btn" href="/">Read more</a></div></div></div>\n\t\t\x3c!-- /wp:vk-blocks/card-item --\x3e</div>\n\t\t\x3c!-- /wp:vk-blocks/card --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":2,"tablet":2,"mobile":2} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:2rem"></div><div class="vk_spacer-display-tablet" style="height:2rem"></div><div class="vk_spacer-display-mobile" style="height:2rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e</div></div>\n\t\t\x3c!-- /wp:vk-blocks/outer --\x3e'},{name:"About",icon:"",content:'\n\t\t\x3c!-- wp:vk-blocks/outer {"outerWidth":"full","padding_top_and_bottom":"0","upper_level":-60} --\x3e\n\t\t<div class="wp-block-vk-blocks-outer vk_outer vk_outer-width-full vk_outer-paddingLR-none vk_outer-paddingVertical-none vk_outer-bgPosition-normal" style="background:linear-gradient(rgba(243, 244, 245, 0.5), rgba(243, 244, 245, 0.5));border:none;border-radius:0px"><div class="vk_outer_separator vk_outer_separator-position-upper vk_outer_separator-type-tilt" style="padding-bottom:60px"><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 100 100" preserveaspectratio="none"><path d="m100,40 L0,100 L100,100 z" strokewidth="0" fill="#fff"></path></svg></div><div class="vk_outer_container">\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":4,"tablet":4,"mobile":4} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:4rem"></div><div class="vk_spacer-display-tablet" style="height:4rem"></div><div class="vk_spacer-display-mobile" style="height:4rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e\n\t\t\x3c!-- wp:vk-blocks/pr-content {"url":"https://example.com","buttonColorCustom":"#cf2e2e","Image":"https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/pr-img.png","layout":"right"} --\x3e\n\t\t<div class="wp-block-vk-blocks-pr-content vk_prContent vk_prContent-layout-imageRight"><div class="col-sm-6 vk_prContent_colImg"><img class="vk_prContent_colImg_image" src="https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/pr-img.png" alt="画像をアップロード" style="border:none"/></div><div class="col-sm-6 vk_prContent_colTxt"><h3 class="vk_prContent_colTxt_title">自社のコンセプトやキャッチコピーが入ります。</h3><p class="vk_prContent_colTxt_text">この部分には、自社について説明が入ります。<br>自社のコンセプトや理念など、大切にしていることについて説明しましょう。お客様に一番伝えたいことを書くことをおススメします。</p><div class="vk_button vk_button-color-custom"><a href="https://example.com" class="btn btn-block vk_button_link vk_prContent_colTxt_btn btn-primary" style="background-color:#cf2e2e;border:1px solid #cf2e2e" rel="noopener noreferrer"><span class="vk_button_link_txt">さらに詳しく</span></a></div></div></div>\n\t\t\x3c!-- /wp:vk-blocks/pr-content --\x3e\n\t\t\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":4,"tablet":4,"mobile":4} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:4rem"></div><div class="vk_spacer-display-tablet" style="height:4rem"></div><div class="vk_spacer-display-mobile" style="height:4rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e\n\n\t\t</div></div>\x3c!-- /wp:vk-blocks/outer --\x3e\n\t\t'},{name:"PR Blocks Set",icon:"",content:'\x3c!-- wp:vk-blocks/outer {"bgColor":"#ffffff","outerWidth":"full","opacity":1} --\x3e\n\t\t<div class="wp-block-vk-blocks-outer vk_outer vk_outer-width-full vk_outer-paddingLR-none vk_outer-paddingVertical-use vk_outer-bgPosition-normal" style="background:linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));border:0px none #000;border-radius:0px"><div class="vk_outer_container">\x3c!-- wp:vk-blocks/pr-blocks {"url1":"/service/","icon1":"far fa-file-alt","color1":"#337ab7","bgType1":"1","url2":"/company/","icon2":"far fa-building","color2":"#337ab7","bgType2":"1","url3":"/recruit/","icon3":"fas fa-users","color3":"#337ab7","bgType3":"1"} --\x3e\n\t\t<div class="wp-block-vk-blocks-pr-blocks vk_prBlocks row"><div class="vk_prBlocks_item col-sm-4"><a href="/service/" class="vk_prBlocks_item_link" target="_self" rel="noopener noreferrer"><div class="vk_prBlocks_item_icon_outer" style="background-color:transparent;border:1px solid #337ab7"><i class="far fa-file-alt vk_prBlocks_item_icon" style="color:#337ab7"></i></div><h3 class="vk_prBlocks_item_title vk_prBlocks_item_title-1"> サービス案内</h3><p class="vk_prBlocks_item_summary vk_prBlocks_item_summary-1">弊社が提供するサービス&ソリューションについてご紹介しています。経験豊富なスタッフがこだわりを持って取り組んでいます。</p></a></div><div class="vk_prBlocks_item col-sm-4"><a href="/company/" class="vk_prBlocks_item_link" target="_self" rel="noopener noreferrer"><div class="vk_prBlocks_item_icon_outer" style="background-color:transparent;border:1px solid #337ab7"><i class="far fa-building vk_prBlocks_item_icon" style="color:#337ab7"></i></div><h3 class="vk_prBlocks_item_title vk_prBlocks_item_title-2">会社案内</h3><p class="vk_prBlocks_item_summary vk_prBlocks_item_summary-2">弊社代表挨拶や会社の基本情報について記載しています。また、弊社の歴史なども紹介していますので是非ご覧ください。</p></a></div><div class="vk_prBlocks_item col-sm-4"><a href="/recruit/" class="vk_prBlocks_item_link" target="_self" rel="noopener noreferrer"><div class="vk_prBlocks_item_icon_outer" style="background-color:transparent;border:1px solid #337ab7"><i class="fas fa-users vk_prBlocks_item_icon" style="color:#337ab7"></i></div><h3 class="vk_prBlocks_item_title vk_prBlocks_item_title-3">採用情報</h3><p class="vk_prBlocks_item_summary vk_prBlocks_item_summary-3">株式会社サンプルでは一緒に働く仲間を募集しています。自分で考えていろいろな事にチャレンジできるやりがいのある仕事です。</p></a></div></div>\n\t\t\x3c!-- /wp:vk-blocks/pr-blocks --\x3e</div></div>\n\t\t\x3c!-- /wp:vk-blocks/outer --\x3e'},{name:"Information ( Text )",icon:"",content:'\n\t\t\x3c!-- wp:vk-blocks/outer {"outerWidth":"full"} --\x3e\n\t<div class="wp-block-vk-blocks-outer vk_outer vk_outer-width-full vk_outer-paddingLR-none vk_outer-paddingVertical-use vk_outer-bgPosition-normal" style="background:linear-gradient(rgba(243, 244, 245, 0.5), rgba(243, 244, 245, 0.5));border:0px none #000;border-radius:0px"><div class="vk_outer_container">\x3c!-- wp:vk-blocks/heading {"align":"center","titleStyle":"plain","outerMarginBottom":2,"titleMarginBottom":0} --\x3e\n\t<div class="wp-block-vk-blocks-heading"><div class="vk_heading vk_heading-style-plain" style="margin-bottom:2rem"><h2 style="color:#000000;font-size:2rem;margin-bottom:0rem;text-align:center" class="vk_heading_title vk_heading_title-style-plain" placeholder="タイトルを入力"><strong>お知らせ</strong></h2><p style="color:#000000;font-size:1.2rem;text-align:center" class="vk_heading_subtext vk_heading_subtext-style-plain" placeholder="サブテキストを入力">Information</p></div></div>\n\t\x3c!-- /wp:vk-blocks/heading --\x3e\n\n\t\x3c!-- wp:vk-blocks/post-list {"name":"vk-blocks/post-list","layout":"postListText"} /--\x3e\n\n\t\x3c!-- wp:vk-blocks/button {"buttonUrl":"/information/","buttonType":"2","buttonColorCustom":"#313131","buttonAlign":"right","fontAwesomeIconAfter":"fas fa-arrow-circle-right"} --\x3e\n\t<div class="wp-block-vk-blocks-button vk_button vk_button-color-custom vk_button-align-right"><a href="/information/" id="vk_button_link" style="color:#313131" class="vk_button_link vk_button_link-type-text btn-md" role="button" aria-pressed="true" rel="noopener noreferrer"><span class="vk_button_link_txt">お知らせ一覧</span><i class="fas fa-arrow-circle-right vk_button_link_after"></i></a></div>\n\t\x3c!-- /wp:vk-blocks/button --\x3e\n\n\t</div></div>\n\t\x3c!-- /wp:vk-blocks/outer --\x3e\n\t\t'},{name:"Information ( Card )",icon:"",content:'\n\t \t\x3c!-- wp:vk-blocks/outer {"bgColor":"#ffffff","outerWidth":"full","opacity":0.9} --\x3e\n\t \t<div class="wp-block-vk-blocks-outer vk_outer vk_outer-width-full vk_outer-paddingLR-none vk_outer-paddingVertical-use vk_outer-bgPosition-normal" style="background:linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));border:0px none #000;border-radius:0px"><div class="vk_outer_container">\x3c!-- wp:vk-blocks/heading {"align":"center","titleStyle":"plain","outerMarginBottom":3,"titleMarginBottom":0} --\x3e\n\t \t<div class="wp-block-vk-blocks-heading vk_heading vk_heading-style-plain" style="margin-bottom:3rem"><h2 style="color:#000000;font-size:2rem;margin-bottom:0rem;text-align:center" class="vk_heading_title vk_heading_title-style-plain" placeholder="タイトルを入力"><strong>お知らせ</strong></h2><p style="color:#000000;font-size:1.2rem;text-align:center" class="vk_heading_subtext vk_heading_subtext-style-plain" placeholder="サブテキストを入力">Information</p></div>\n\t \t\x3c!-- /wp:vk-blocks/heading --\x3e\n\n\t \t\x3c!-- wp:vk-blocks/post-list {"name":"vk-blocks/post-list"} /--\x3e\n\n\t \t\x3c!-- wp:vk-blocks/button {"buttonUrl":"https://example.com/","buttonSize":"sm","buttonAlign":"right","fontAwesomeIconBefore":"fas fa-arrow-circle-right"} --\x3e\n\t \t<div class="wp-block-vk-blocks-button vk_button vk_button-align-right"><a href="https://example.com/" id="vk_button_link" class="btn vk_button_link btn-sm btn-primary" role="button" aria-pressed="true" rel="noopener noreferrer"><i class="fas fa-arrow-circle-right vk_button_link_before"></i><span class="vk_button_link_txt">一覧を見る</span></a></div>\n\t \t\x3c!-- /wp:vk-blocks/button --\x3e</div></div>\n\t \t\x3c!-- /wp:vk-blocks/outer --\x3e\n\t \t'},{name:"Feature Posts",icon:"",content:'\n\t\t\x3c!-- wp:vk-blocks/outer {"bgColor":"#eeeeee","outerWidth":"full","padding_left_and_right":"1","padding_top_and_bottom":"0","clientId":"88b8ebeb-19b0-46cc-9690-90c26b4835c5"} --\x3e\n\t\t<div class="vkb-outer-88b8ebeb-19b0-46cc-9690-90c26b4835c5 wp-block-vk-blocks-outer vk_outer vk_outer-width-full vk_outer-paddingLR-use vk_outer-paddingVertical-none vk_outer-bgPosition-normal" style="border:0px none #000;border-radius:0px"><style>.vkb-outer-88b8ebeb-19b0-46cc-9690-90c26b4835c5{background: linear-gradient(rgba(238, 238, 238, 0.5), rgba(238, 238, 238, 0.5))}!important;</style><div><div class="vk_outer_container">\x3c!-- wp:vk-blocks/spacer {"pc":30} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:30px"></div><div class="vk_spacer-display-tablet" style="height:30px"></div><div class="vk_spacer-display-mobile" style="height:20px"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e\n\t\t\x3c!-- wp:vk-blocks/post-list {"name":"vk-blocks/post-list","col_xs":2,"col_sm":3,"col_xl":6,"display_date":false} /--\x3e</div></div></div>\n\t\t\x3c!-- /wp:vk-blocks/outer --\x3e\n\t\t'},{name:"Call To Action",icon:"",content:'\n\t\t\x3c!-- wp:vk-blocks/outer {"bgColor":"#000000","bgImage":"https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/programming-942487_1920.jpg","bgPosition":"fixed","padding_left_and_right":"1","padding_top_and_bottom":"0","opacity":0.7,"borderRadius":8} --\x3e\n\t\t<div class="wp-block-vk-blocks-outer vk_outer vk_outer-width-normal vk_outer-paddingLR-use vk_outer-paddingVertical-none vk_outer-bgPosition-fixed" style="background:linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/programming-942487_1920.jpg);border:0px none #000;border-radius:8px"><div class="vk_outer_container">\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":4,"tablet":4,"mobile":4} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:4rem"></div><div class="vk_spacer-display-tablet" style="height:4rem"></div><div class="vk_spacer-display-mobile" style="height:4rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/pr-content {"titleColor":"#eeeeee","contentColor":"#eeeeee","url":"https://example.com","buttonColorCustom":"#cf2e2e","Image":"https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/device_01.png","layout":"right","fontAwesomeIconBefore":"fas fa-arrow-circle-right","fontAwesomeIconAfter":""} --\x3e\n\t\t<div class="wp-block-vk-blocks-pr-content vk_prContent vk_prContent-layout-imageRight"><div class="col-sm-6 vk_prContent_colImg"><img class="vk_prContent_colImg_image" src="https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/device_01.png" alt="画像をアップロード" style="border:none"/></div><div class="col-sm-6 vk_prContent_colTxt"><h3 class="vk_prContent_colTxt_title" style="color:#eeeeee">Call To Action Title</h3><p class="vk_prContent_colTxt_text" style="color:#eeeeee">この部分には、自社について説明が入ります。<br>自社のコンセプトや理念など、大切にしていることについて説明しましょう。お客様に一番伝えたいことを書くことをおススメします。</p><div class="vk_button vk_button-color-custom"><a href="https://example.com" class="btn btn-block vk_button_link vk_prContent_colTxt_btn btn-primary" style="background-color:#cf2e2e;border:1px solid #cf2e2e" rel="noopener noreferrer"><i class="fas fa-arrow-circle-right vk_button_link_before"></i><span class="vk_button_link_txt">さらに詳しく</span></a></div></div></div>\n\t\t\x3c!-- /wp:vk-blocks/pr-content --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":4.5,"tablet":4,"mobile":4} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:4.5rem"></div><div class="vk_spacer-display-tablet" style="height:4rem"></div><div class="vk_spacer-display-mobile" style="height:4rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e</div></div>\n\t\t\x3c!-- /wp:vk-blocks/outer --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":4,"tablet":4,"mobile":4} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:4rem"></div><div class="vk_spacer-display-tablet" style="height:4rem"></div><div class="vk_spacer-display-mobile" style="height:4rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e\n\t\t'},{name:"Contact",icon:"",content:'\n\t \t\x3c!-- wp:vk-blocks/outer {"bgColor":"#313131","bgImage":"https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/home-office-336373_1920-e1513588377670.jpg","outerWidth":"full","bgPosition":"fixed","padding_top_and_bottom":"0","opacity":0.7} --\x3e\n\t <div class="wp-block-vk-blocks-outer vk_outer vk_outer-width-full vk_outer-paddingLR-none vk_outer-paddingVertical-none vk_outer-bgPosition-fixed" style="background:linear-gradient(rgba(49, 49, 49, 0.7), rgba(49, 49, 49, 0.7)), url(https://www.vektor-inc.co.jp/vk-blocks-tmpl-images/home-office-336373_1920-e1513588377670.jpg);border:0px none #000;border-radius:0px"><div class="vk_outer_container">\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":3,"tablet":3,"mobile":3} --\x3e\n\t <div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:3rem"></div><div class="vk_spacer-display-tablet" style="height:3rem"></div><div class="vk_spacer-display-mobile" style="height:3rem"></div></div>\n\t \x3c!-- /wp:vk-blocks/spacer --\x3e\n\n\t \x3c!-- wp:vk-blocks/heading {"align":"center","titleStyle":"plain","outerMarginBottom":0,"titleColor":"#eeeeee","titleMarginBottom":0,"subTextColor":"#eeeeee"} --\x3e\n\t <div class="wp-block-vk-blocks-heading vk_heading vk_heading-style-plain" style="margin-bottom:0rem"><h2 style="color:#eeeeee;font-size:2rem;margin-bottom:0rem;text-align:center" class="vk_heading_title vk_heading_title-style-plain" placeholder="タイトルを入力">無料体験実施中!</h2><p style="color:#eeeeee;font-size:1.2rem;text-align:center" class="vk_heading_subtext vk_heading_subtext-style-plain" placeholder="サブテキストを入力">体験入会大歓迎です。お気軽にご連絡ください。</p></div>\n\t \x3c!-- /wp:vk-blocks/heading --\x3e\n\n\t \x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":1.5,"tablet":1.5,"mobile":1.5} --\x3e\n\t <div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:1.5rem"></div><div class="vk_spacer-display-tablet" style="height:1.5rem"></div><div class="vk_spacer-display-mobile" style="height:1.5rem"></div></div>\n\t \x3c!-- /wp:vk-blocks/spacer --\x3e\n\n\t \x3c!-- wp:columns --\x3e\n\t <div class="wp-block-columns">\x3c!-- wp:column --\x3e\n\t <div class="wp-block-column">\x3c!-- wp:vk-blocks/button {"subCaption":"お気軽にお問い合わせください","buttonUrl":"/contact/","buttonColor":"success","buttonColorCustom":null,"buttonAlign":"block","fontAwesomeIconBefore":"far fa-envelope"} --\x3e\n\t <div class="wp-block-vk-blocks-button vk_button vk_button-align-block"><a href="/contact/" id="vk_button_link" class="btn vk_button_link btn-md btn-success btn-block" role="button" aria-pressed="true" rel="noopener noreferrer"><i class="far fa-envelope vk_button_link_before"></i><span class="vk_button_link_txt">メールでのお問い合わせ</span><p class="vk_button_link_subCaption">お気軽にお問い合わせください</p></a></div>\n\t \x3c!-- /wp:vk-blocks/button --\x3e\n\t </div>\n\t \x3c!-- /wp:column --\x3e\n\n\t \x3c!-- wp:column --\x3e\n\t <div class="wp-block-column">\x3c!-- wp:vk-blocks/button {"subCaption":"電話でのお問い合わせはこちら","buttonUrl":"tel:000-000-0000","buttonColor":"danger","buttonColorCustom":null,"buttonAlign":"block","fontAwesomeIconBefore":"fas fa-phone-square-alt"} --\x3e\n\t <div class="wp-block-vk-blocks-button vk_button vk_button-align-block"><a href="tel:000-000-0000" id="vk_button_link" class="btn vk_button_link btn-md btn-danger btn-block" role="button" aria-pressed="true" rel="noopener noreferrer"><i class="fas fa-phone-square-alt vk_button_link_before"></i><span class="vk_button_link_txt">000-000-0000</span><p class="vk_button_link_subCaption">電話でのお問い合わせはこちら</p></a></div>\n\t \x3c!-- /wp:vk-blocks/button --\x3e\n\t </div>\n\t \x3c!-- /wp:column --\x3e</div>\n\t \x3c!-- /wp:columns --\x3e\n\n\t \x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":1,"tablet":1,"mobile":1} --\x3e\n\t <div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:1rem"></div><div class="vk_spacer-display-tablet" style="height:1rem"></div><div class="vk_spacer-display-mobile" style="height:1rem"></div></div>\n\t \x3c!-- /wp:vk-blocks/spacer --\x3e</div></div>\n\t \x3c!-- /wp:vk-blocks/outer --\x3e'},{name:"Step set",icon:"",content:'\n\t\t\x3c!-- wp:group {"className":"is-style-default","color":"#eeeeee"} --\x3e\n\t\t<div class="wp-block-group is-style-default"><div class="wp-block-group__inner-container">\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":2,"tablet":32,"mobile":2} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:2rem"></div><div class="vk_spacer-display-tablet" style="height:32rem"></div><div class="vk_spacer-display-mobile" style="height:2rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/step --\x3e\n\t\t<div class="wp-block-vk-blocks-step vk_step">\x3c!-- wp:vk-blocks/step-item --\x3e\n\t\t<div class="wp-block-vk-blocks-step-item vk_step_item vk_step_item_lineStyle-default"><div class="vk_step_item_content">\x3c!-- wp:heading {"level":4} --\x3e\n\t\t<h4><strong>お問い合わせ</strong></h4>\n\t\t\x3c!-- /wp:heading --\x3e\n\n\t\t\x3c!-- wp:paragraph --\x3e\n\t\t<p>まずは<a>お問い合わせフォーム</a>または電話にてご連絡ください。</p>\n\t\t\x3c!-- /wp:paragraph --\x3e</div><div class="vk_step_item_dot vk_step_item_style-default" style="background-color:#337ab7;color:#ffffff"><div class="vk_step_item_dot_caption">STEP</div><div class="vk_step_item_dot_num">1</div></div></div>\n\t\t\x3c!-- /wp:vk-blocks/step-item --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/step-item {"dotNum":2} --\x3e\n\t\t<div class="wp-block-vk-blocks-step-item vk_step_item vk_step_item_lineStyle-default"><div class="vk_step_item_content">\x3c!-- wp:heading {"level":4} --\x3e\n\t\t<h4><strong>サービスのご提供</strong></h4>\n\t\t\x3c!-- /wp:heading --\x3e\n\n\t\t\x3c!-- wp:paragraph --\x3e\n\t\t<p>ご提案させていただいた内容にて業務を実施いたします。</p>\n\t\t\x3c!-- /wp:paragraph --\x3e</div><div class="vk_step_item_dot vk_step_item_style-default" style="background-color:#337ab7;color:#ffffff"><div class="vk_step_item_dot_caption">STEP</div><div class="vk_step_item_dot_num">2</div></div></div>\n\t\t\x3c!-- /wp:vk-blocks/step-item --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/step-item {"styleLine":"none","dotNum":3} --\x3e\n\t\t<div class="wp-block-vk-blocks-step-item vk_step_item vk_step_item_lineStyle-none"><div class="vk_step_item_content">\x3c!-- wp:heading {"level":4} --\x3e\n\t\t<h4><strong>ご入金</strong></h4>\n\t\t\x3c!-- /wp:heading --\x3e\n\n\t\t\x3c!-- wp:paragraph --\x3e\n\t\t<p>納品月の末締めで請求書を発行させていただきますので、翌月末にてご入金願います。</p>\n\t\t\x3c!-- /wp:paragraph --\x3e</div><div class="vk_step_item_dot vk_step_item_style-default" style="background-color:#337ab7;color:#ffffff"><div class="vk_step_item_dot_caption">STEP</div><div class="vk_step_item_dot_num">3</div></div></div>\n\t\t\x3c!-- /wp:vk-blocks/step-item --\x3e</div>\n\t\t\x3c!-- /wp:vk-blocks/step --\x3e\n\n\t\t\x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":4,"tablet":4,"mobile":4} --\x3e\n\t\t<div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:4rem"></div><div class="vk_spacer-display-tablet" style="height:4rem"></div><div class="vk_spacer-display-mobile" style="height:4rem"></div></div>\n\t\t\x3c!-- /wp:vk-blocks/spacer --\x3e</div></div>\n\t\t\x3c!-- /wp:group --\x3e\n\t\t'},{name:"List box",icon:"",content:'\n\t \x3c!-- wp:group {"customBackgroundColor":"#fffbee","className":"is-style-vk-group-solid-roundcorner vk-has-luminous-vivid-amber-color","color":"#fcb900"} --\x3e\n\t <div class="wp-block-group has-background is-style-vk-group-solid-roundcorner vk-has-luminous-vivid-amber-color" style="background-color:#fffbee"><div class="wp-block-group__inner-container">\x3c!-- wp:heading {"level":5,"className":"is-style-vk-heading-plain"} --\x3e\n\t <h5 class="is-style-vk-heading-plain">List Title Sample</h5>\n\t \x3c!-- /wp:heading --\x3e\n\n\t \x3c!-- wp:list {"className":"is-style-vk-check-mark vk-has-luminous-vivid-amber-color","color":"#fcb900"} --\x3e\n\t <ul class="is-style-vk-check-mark vk-has-luminous-vivid-amber-color"><li>There is list style sample there is list style sample.</li><li>There is list style sample there is list style sample.</li><li>There is list style sample there is list style sample.</li></ul>\n\t \x3c!-- /wp:list --\x3e</div></div>\n\t \x3c!-- /wp:group --\x3e\n\n\t \x3c!-- wp:vk-blocks/spacer {"unit":"rem","pc":2,"tablet":2,"mobile":2} --\x3e\n\t <div class="vk_spacer"><div class="vk_spacer-display-pc" style="height:2rem"></div><div class="vk_spacer-display-tablet" style="height:2rem"></div><div class="vk_spacer-display-mobile" style="height:2rem"></div></div>\n\t \x3c!-- /wp:vk-blocks/spacer --\x3e'}],Aa=Sa()((function(){return Ia.map((function(e){return function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ba(Object(n),!0).forEach((function(t){Ta(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ba(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}({},e,{blocks:Oa(e.content)})}))}));function ja(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if(!(Symbol.iterator in Object(e))&&"[object Arguments]"!==Object.prototype.toString.call(e))return;var n=[],o=!0,r=!1,l=void 0;try{for(var a,c=e[Symbol.iterator]();!(o=(a=c.next()).done)&&(n.push(a.value),!t||n.length!==t);o=!0);}catch(e){r=!0,l=e}finally{try{o||null==c.return||c.return()}finally{if(r)throw l}}return n}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}var Pa=window.lodash,za=Pa.first,Ma=Pa.last,Fa=wp.components.Spinner,La=(wp.blockEditor?wp.blockEditor:wp.editor).BlockPreview,Ua=wp.element.useState,Ha=wp.data,Va=Ha.dispatch,Da=Ha.select,$a=Va("core/editor"),qa=$a.insertBlocks,Wa=$a.replaceBlocks,Ja=$a.multiSelect,Ga=(wp.i18n.__,Da("core/block-editor")),Ya=Ga.getBlocks,Ka=Ga.getBlockCount,Za=Ga.getSelectedBlock,Qa=Ga.getBlockInsertionPoint,Xa=function(e){e.slug;if(!(5.3>parseFloat(wpVersion))){var t=ja(Ua(null),2),n=t[0],o=t[1],r=ja(Ua(null),2),l=r[0],a=r[1];return function(){if(!l&&(n||o(Aa),n)){var e=n.map((function(e,t){return React.createElement("li",{key:t},React.createElement("div",{className:"vkb-menu__template-part__button",onClick:function(){if(e.blocks.length){var t=Za();if(null===t){var n=Ma(Ya());void 0!==n&&null===n.rootClientId&&(!Ka(n.clientId)||"core/paragraph"===n.name&&""===n.attributes.content)?Wa(n.clientId,e.blocks):qa(e.blocks)}else{if("core/paragraph"===t.name&&""===t.attributes.content)Wa(t.clientId,e.blocks);else{var o=Qa();qa(e.blocks,o.index)}}Ja(za(e.blocks).clientId,Ma(e.blocks).clientId)}}},React.createElement("section",{className:"vkb-menu__template-part__card__container"},React.createElement("div",{id:"vkb-menu__template-part__card".concat(t),className:"card vkb-menu__template-part__card"},React.createElement("div",{className:"content"},React.createElement("h6",null,React.createElement("span",{className:"vkb-menu__template-part__header__icon"},e.icon),e.name),React.createElement("div",{className:"hover_content"},React.createElement("div",{className:"inner edit-post-visual-editor editor-styles-wrapper"},React.createElement(La,{viewportWidth:601,blocks:e.blocks}))))))))}));a(e.filter((function(e){return e})))}}(),l?React.createElement("ul",{className:"vkb-menu__template-part"},l):React.createElement("div",{className:"vkb-menu__template-part__loading"},React.createElement(Fa,null))}},ec=wp.element.Fragment,tc=wp.editPost,nc=tc.PluginSidebar,oc=tc.PluginSidebarMoreMenuItem,rc=wp.i18n.__,lc=React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"20",height:"19.31564",viewBox:"0 0 20 19.31564"},React.createElement("path",{d:"M19.801,3.465l-5.93675.01494a.19492.19492,0,0,0-.18428.12949l-.45323,1.26505a.19767.19767,0,0,0,.18428.264h2.311a.19794.19794,0,0,1,.14444.3337l-3.67562,3.83h.01494l1.8926,5.95668a.19867.19867,0,0,1-.18926.259H12.05132a.19722.19722,0,0,1-.18926-.13946l-.95626-3.058a.197.197,0,0,0-.37353-.01l-.777,2.14162a.19642.19642,0,0,0-.005.11953l.70225,2.6048a.19724.19724,0,0,0,.18926.14443h5.97162a.19866.19866,0,0,0,.18926-.259L14.41208,9.56607a.199.199,0,0,1,.0498-.19922l5.48354-5.5682A.19793.19793,0,0,0,19.801,3.465Z",transform:"translate(0 -0.34218)"}),React.createElement("path",{d:"M12.76851.34218l-3.61584.01a.18849.18849,0,0,0-.18428.12949L8.5052,1.74668a.19768.19768,0,0,0,.18428.264h1.51407a.19364.19364,0,0,1,.18428.264L6.0797,14.06845a.19878.19878,0,0,1-.37354,0L2.62323,5.56673a.19767.19767,0,0,1,.18428-.264H4.3664a.18849.18849,0,0,1,.18428.1295l1.11563,3.068a.19878.19878,0,0,0,.37354,0L7.77307,3.72892a.19767.19767,0,0,0-.18428-.264H.19772a.19364.19364,0,0,0-.18428.264L5.70118,19.52708a.19878.19878,0,0,0,.37354,0L12.94781.59619A.186.186,0,0,0,12.76851.34218Z",transform:"translate(0 -0.34218)"})),ac="vk-blocks",cc={icon:lc,render:function(){return React.createElement(ec,null,React.createElement(oc,{target:"vkbSidebar"},rc("VK Blocks Templates","vk-blocks")),React.createElement(nc,{name:"vkbSidebar",title:rc("VK Blocks Templates","vk-blocks")},React.createElement(Xa,null)))}};5.3<=parseFloat(wpVersion)&&function(e){if(e){var t=e.name,n=e.settings;Ra(t,n)}}(o)}]);
|
inc/vk-blocks/build/languages/vk-blocks-ja-vk-blocks-build-js.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja_JP"},"FontAwesome":["Font Awesome:"],"Enter Font Awesome Class. Ex) fas fa-arrow-circle-right ":["Font Awesome の class 名を入力してください。例) fas fa-arrow-circle-right"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"Card Item":["カードアイテム"],"URL":["URL"],"https://example.com":["https://example.com"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":[""],"Title":["タイトルを入力"],"Select image":["画像を選択"],"Display item":["表示要素"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Card":["カード"],"Exsist Already Page":[""],"Current Page":["現在のページ"],"Child page list":["子ページリスト"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, clear background color or set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、背景色をクリアするか、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image":["背景画像"],"Background image Position":["背景画像の位置"],"normal":["標準"],"Fixed":["固定"],"Parallax (It will not work in preview)":["パララックス(編集画面では反映されません)"],"Layout Setting":["レイアウト設定"],"Outer width":["アウターの幅"],"Normal":["標準"],"Full Wide":["全幅"],"Contents area padding (left and right)":["コンテンツエリアの余白 (左右)"],"Do not use padding":["余白なし"],"Use padding":["余白あり"],"Padding (top and bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding (Set it yourself using a spacer block etc.).":["標準の余白を使用しない(スペーサーブロックなどで独自に指定する)。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Outer":["Outer"],"Filter by PostTypes":["投稿タイプ"],"Filter by Taxonomy Terms":["分類"],"Number of Posts":["表示件数"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Ignore this post":["表示中の投稿をリストから除外する"],"Post list":["投稿リスト"],"Outlined":["アウトライン"],"Default":["標準"],"Step Item":["ステップ要素"],"Step Mark":["ステップマーク"],"If FontAwesome class entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"Ex,6:00AM":["例) 午前 6:00"],"Color":["色"],"Style":["スタイル"],"First Dot Number":["ステップの開始番号"],"Step":["ステップ"],"Table of Contents":["目次"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":[""],"CLOSE":[""],"Timeline Item":["タイムライン要素"],"label":["ラベル"],"Timeline":["タイムライン"],"Alert":["アラート"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Serif":["セリフ"],"Thinking":["吹き出し"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Input text":["文字を入力"],"Ballon":["フキダシ"],"Balloon setting":["フキダシ設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Open link new tab.":["リンクを別ウィンドウで開く"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["全幅"],"Button Style:":["ボタンスタイル:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Default Color:":["標準色:"],"Primary":["Primary"],"Secondary":["Secondary"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"This custom color overrides the default color. If you want to use the default color, click the clear button.":["このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Font Awesome:":["Font Awesome:"],"Before text":["文字の前"],"Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right":["Font Awesome の class 名を入力してください。このアイコンは文字の前に表示されます。 例) fas fa-arrow-circle-right"],"After text":["文字の後"],"Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-external-link-alt":["Font Awesome の class 名を入力してください。このアイコンは文字の後に表示されます。 例) fas fa-external-link-alt"],"Apply":[""],"Please enter a answer.":["回答を入力してください。"],"FAQ":["質問と解答"],"Please enter a question.":["質問を入力してください。"],"Flow":["フロー"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Stitch":["スティッチ"],"Border Top Bottom":["直線 上下"],"Shadow":["シャドウ"],"Border Color":["線の色"],"Solid Roundcorner":["直線 角丸"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Plain":["装飾無し"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Style Settings":["スタイル設定"],"Heading style":["見出しスタイル"],"Margin bottom size (rem)":["下部の余白"],"Heading Settings":["見出し設定"],"Level":["レベル"],"Text Alignment":["テキストの水平位置"],"Heading margin bottom size (rem)":["見出し下部の余白 (rem)"],"Sub Text Settings":["サブテキスト設定"],"Display":["表示"],"Hide":["非表示"],"Text size (rem)":["文字サイズ (rem)"],"Heading":["見出し"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading %d":["見出し %d"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Hidden Settings":["非表示設定"],"Hidden at screel size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML.Pleade don't use you must not bisible item.Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Highlight Color":["ハイライトカラー"],"Highlighter":["蛍光マーカー"],"Photo frame":["フォトフレーム"],"Border":["枠線"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック-四角"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"List Icon Color":["リストアイコンの色"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"PR Image 1":["PR 画像 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Link URL:":["リンクURL:"],"Icon 3":["アイコン 3"],"Class name of the Font Awesome icon font you want to use:":["アイコンを使う場合は Font Awesome のアイコンのclass名:"],"Icon Background:":["アイコン背景:"],"PR Image 3":["PR 画像 3"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Blocks":["PR Blocks"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Link URL":["リンクURL"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Button Color":["ボタンの色"],"Layout Type":["レイアウトタイプ"],"PR Content":["PR Content"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Responsive Spacer":["レスポンシブスペーサー"],"Unit Type":["単位"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Height for each device.":["デバイス毎の高さ"],"PC":["PC"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Staff":["スタッフ"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Your Name":["名前"],"Caption":["キャプション"],"Align":["表示位置"],"Card ( No border )":["カード(線なし)"],"Card Horizontal":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト1カラム"],"Display type and columns":["表示タイプとカラム"],"Display type":["表示タイプ"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Term name":["分類名"],"Excerpt":["抜粋"],"Date":["日付"],"New mark":["新着表示"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Button align":["ボタンの位置"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"VK Blocks Templates":[""],"Disabled Blocks module. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion UnitのBlock機能を停止しました。"],"Deactivated VK-Blocks Plugin. Because VK-Blocks Pro running.":["Pro版VK-Blocksが起動しているため、VK-Blocksを停止しました。"]}}}
|
1 |
+
{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja_JP"},"Font Awesome":["Font Awesome:"],"Enter Font Awesome Class.":["Font Awesome の class 名を入力してください。"],"Ex) fas fa-arrow-circle-right":["例) fas fa-arrow-circle-right"],"Font Awesome icon list":["Font Awesome アイコンリスト"],"Card Item":["カードアイテム"],"URL":["URL"],"https://example.com":["https://example.com"],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":[""],"Title":["タイトルを入力"],"Select image":["画像を選択"],"Display item":["表示要素"],"Image":["画像"],"Button":["ボタン"],"Button option":["ボタンオプション"],"Click each card block to set the target url. You can find the url form at it's sidebar.":["ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォームが表示されます。"],"Button text":["ボタンの文字"],"Card":["カード"],"Exsist Already Page":[""],"Current Page":["現在のページ"],"Child page list":["子ページリスト"],"Display conditions":["表示条件"],"Parent":["親ページ"],"Ignore this post":["表示中の投稿をリストから除外する"],"Grid Column Item":["グリッドカラムアイテム"],"Grid Column":["グリッドカラム"],"Layout Columns":["カラムレイアウト"],"Background Setting":["背景設定"],"Color Setting":["色設定"],"Color will overcome background image. If you want to display image, clear background color or set opacity 0.":["色を指定すると画像よりも優先されます。画像を表示したい場合は、背景色をクリアするか、不透明度を0に設定します。"],"Opacity Setting":["透過設定"],"Background Image PC":["背景画像 ( PC )"],"Background Image Tablet":["背景画像 ( タブレット )"],"Background Image Mobile":["背景画像背景画像 ( モバイル )"],"Background image Position":["背景画像の位置"],"normal":["標準"],"Fixed (Not fixed on iPhone)":["固定(iPhoneでは固定されません)"],"Parallax (Non-guaranteed)":["パララックス(非保証)"],"Layout Setting":["レイアウト設定"],"Width":["幅"],"Normal":["標準"],"Full Wide":["全幅"],"Padding (Left and Right)":["余白 (左右)"],"Fit to the Content area":["コンテンツエリアに合わせる"],"Add padding to the Outer area":["アウターエリア内に余白を追加する"],"Padding (Top and Bottom)":["余白 (上下)"],"Use default padding":["標準の余白を使用"],"Do not use default padding":["標準の余白を使用しない"],"* If you select \"Do not use\" that, please set yourself it such as a spacer block.":["*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してください。"],"Divider Setting":["区切りの設定"],"Type":["タイプ"],"Tilt":["傾斜"],"Curve":["カーブ"],"Wave":["波状"],"Triangle":["三角"],"Upper Divider Level":["上部区切りレベル"],"Lower Divider Level":["下部区切りレベル"],"Border Setting":["枠線の設定"],"Border will disappear when divider effect is applied.":["枠線は区切りレベルを適用すると表示されなくなります。"],"Border type":["枠線の種類"],"None":["なし"],"Solid":["直線"],"Dotted":["点線"],"Dashed":["Dashed"],"Double":["二重線"],"Groove":["Groove"],"Ridge":["Ridge"],"Inset":["Inset"],"Outset":["Outset"],"Border width":["枠線の幅"],"Border radius":["枠線のRの大きさ"],"Outer":["Outer"],"Filter by PostTypes":["投稿タイプ"],"Filter by Taxonomy Terms":["分類"],"Number of Posts":["表示件数"],"Order by":["表示順"],"Published Date":["公開日"],"Modefied Date":["更新日"],"Random":["ランダム"],"offset":["オフセット数"],"Post list":["投稿リスト"],"Step Item":["ステップ要素"],"Step Mark":["ステップマーク"],"If FontAwesome class entered, it will overrides the number.":["Font Awesome の class 名が入力されている場合は数字は上書きされます。"],"Ex,6:00AM":["例) 午前 6:00"],"Color":["色"],"Style":["スタイル"],"Outlined":["アウトライン"],"Default":["標準"],"Step":["ステップ"],"First Dot Number":["ステップの開始番号"],"Table of Contents":["目次"],"No frame":["枠無し"],"Default Display Status":["初期表示状態"],"OPEN":[""],"CLOSE":[""],"Timeline Item":["タイムライン要素"],"label":["ラベル"],"Timeline":["タイムライン"],"Alert":["アラート"],"Style Settings":["スタイル設定"],"Success":["Success"],"Info":["Info"],"Warning":["Warning"],"Danger":["Danger"],"Upload image":["画像をアップロード"],"Icon Name":["アイコンの名前"],"Input text":["文字を入力"],"Ballon":["フキダシ"],"Balloon setting":["フキダシ設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Left":["左"],"Right":["右"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Serif":["セリフ"],"Thinking":["吹き出し"],"Please enter a title.":["見出しを入力してください。"],"Blue":["青"],"Green":["緑"],"Black":["黒"],"Icon":["アイコン"],"Border Box":["枠線ボックス"],"Solid Angle Tab":["直線 ピン角 タブ"],"Solid Round Tab":["直線 角丸 タブ"],"Solid Angle Banner":["直線 ピン角 バナー"],"Solid Angle Onborder":["直線 ピンカド 線上"],"Solid Angle Inner":["直線 ピン角 内側"],"Solid Angle iconFeature":["直線 ピン角 アイコン"],"Red":["赤"],"Orange":["オレンジ"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Open link new tab.":["リンクを別ウィンドウで開く"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Center":["中央"],"Wide":["幅広"],"Block":["全幅"],"Button Style:":["ボタンスタイル:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"Text only":["テキストのみ"],"If you select \"No background\", that you need to select a Custom Color.":["もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"],"Default Color:":["標準色:"],"Primary":["Primary"],"Secondary":["Secondary"],"Light":["Light"],"Dark":["Dark"],"Custom Color":["カスタムカラー"],"This custom color overrides the default color. If you want to use the default color, click the clear button.":["このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用したい場合は、クリアボタンをクリックしてください。"],"Font Awesome:":["Font Awesome:"],"Before text":["文字の前"],"Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right":["Font Awesome の class 名を入力してください。このアイコンは文字の前に表示されます。 例) fas fa-arrow-circle-right"],"After text":["文字の後"],"Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-external-link-alt":["Font Awesome の class 名を入力してください。このアイコンは文字の後に表示されます。 例) fas fa-external-link-alt"],"Apply":[""],"Please enter a answer.":["回答を入力してください。"],"FAQ":["質問と解答"],"Please enter a question.":["質問を入力してください。"],"Flow":["フロー"],"Display of arrow":["矢印の表示"],"Arrow display":["矢印を表示する"],"Arrow hidden":["矢印を表示しない"],"Input title":["タイトルを入力"],"Input content":["説明を入力"],"Stitch":["スティッチ"],"Border Top Bottom":["直線 上下"],"Shadow":["シャドウ"],"Border Color":["線の色"],"Solid Roundcorner":["直線 角丸"],"Dotted border bottom black":["点線 下線 黒"],"Both ends":["左右線"],"Brackets black":["括弧 黒"],"Plain":["装飾無し"],"Background fill lightgray":["背景塗り 灰色"],"Double border top and bottom black":["二重線 上下線 黒"],"Double border bottom black":["二重線 下線 黒"],"Solid border top and bottom black":["直線 上下 黒"],"Solid border bottom black":["直線 下線 黒"],"Heading style":["見出しスタイル"],"Margin bottom size (rem)":["下部の余白"],"Heading Settings":["見出し設定"],"Level":["レベル"],"Text Alignment":["テキストの水平位置"],"Heading margin bottom size (rem)":["見出し下部の余白 (rem)"],"Sub Text Settings":["サブテキスト設定"],"Display":["表示"],"Hide":["非表示"],"Text size (rem)":["文字サイズ (rem)"],"Heading":["見出し"],"Input sub text…":["サブテキストを入力"],"Input title…":["タイトルを入力"],"Heading %d":["見出し %d"],"Hidden at screel size":["非表示にする画面サイズ"],"Note : This function is display hidden only. Actually Block is output to HTML.Pleade don't use you must not bisible item.Don't use it for blocks you really don't want to display.":["注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見せてはいけない要素には使わないでください。"],"Hidden ( Screen size : all )":["非表示 ( 画面サイズ : all )"],"Hidden ( Screen size : xs )":["非表示 ( 画面サイズ : xs )"],"Hidden ( Screen size : sm )":["非表示 ( 画面サイズ : sm )"],"Hidden ( Screen size : md )":["非表示 ( 画面サイズ : md )"],"Hidden ( Screen size : lg )":["非表示 ( 画面サイズ : lg )"],"Hidden ( Screen size : xl )":["非表示 ( 画面サイズ : xl )"],"If you want to hide multiple blocks, that first you set to group block and the next, hide for the that group block.":["複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグループブロックに対して非表示にします。"],"Hidden Settings":["非表示設定"],"Highlight Color":["ハイライトカラー"],"Highlighter":["蛍光マーカー"],"Photo frame":["フォトフレーム"],"Border":["枠線"],"Arrow":["矢印"],"Check":["チェック"],"Check Square":["チェック-四角"],"Check Circle":["チェック-丸"],"Handpoint":["指"],"Pencil":["鉛筆"],"Smile":["笑顔"],"Frown":["不満顔"],"Numbered Circle":["数字-丸"],"Numbered Square":["数字-四角"],"List Icon Color":["リストアイコンの色"],"PR Block1 Setting":["PR Block1 設定"],"Icon 1":["アイコン 1"],"When you have an image. Image is displayed with priority":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 1":["PR 画像 1"],"PR Block2 Setting":["PR Block2 設定"],"Icon 2":["アイコン 2"],"PR Image 2":["PR 画像 2"],"PR Block3 Setting":["PR Block3 設定"],"Link URL:":["リンクURL:"],"Icon 3":["アイコン 3"],"Class name of the Font Awesome icon font you want to use:":["アイコンを使う場合は Font Awesome のアイコンのclass名:"],"Icon Background:":["アイコン背景:"],"When you have an image. Image is displayed with priority.":["画像を設定した場合は画像が優先して表示されます。"],"PR Image 3":["PR 画像 3"],"PR Blocks":["PR Blocks"],"Input Title":["タイトルを入力"],"Input Content":["文章を入力してください"],"Title Color":["見出しの色"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Link URL":["リンクURL"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Button Color":["ボタンの色"],"Layout Type":["レイアウトタイプ"],"PR Content":["PR Content"],"Input title.":["タイトルを入力してください。"],"Input content.":["本文を入力してください。"],"Tablet":["タブレット"],"Mobile":["モバイル"],"Responsive Spacer":["レスポンシブスペーサー"],"Unit Type":["単位"],"px":["px"],"em":["em"],"rem":["rem"],"vw":["vw"],"Height for each device.":["デバイス毎の高さ"],"PC":["PC"],"Staff name":["名前"],"Name caption":["名前のキャプション"],"Role position":["役職"],"Profile title":["プロフィールタイトル"],"Profile text":["プロフィールテキスト"],"Staff":["スタッフ"],"Layout":["レイアウト"],"Image left":["画像 左"],"Image border":["画像の線"],"Alt text":["画像の代替テキスト"],"Set the alt text for profile image":["プロフィール画像の代替テキストを設定します"],"Your Name":["名前"],"Caption":["キャプション"],"Align":["表示位置"],"Card ( No border )":["カード(線なし)"],"Card Horizontal":["カード(水平)"],"Media":["メディア"],"Text 1 Column":["テキスト1カラム"],"Display type and columns":["表示タイプとカラム"],"Display type":["表示タイプ"],"Column ( Screen size : Extra small )":["カラム ( 画面サイズ : Extra small )"],"Column ( Screen size : Small )":["カラム ( 画面サイズ : Small )"],"Column ( Screen size : Medium )":["カラム ( 画面サイズ : Medium )"],"Column ( Screen size : Large )":["カラム ( 画面サイズ : Large )"],"Column ( Screen size : Extra large )":["カラム ( 画面サイズ : Extra large )"],"Term name":["分類名"],"Excerpt":["抜粋"],"Date":["日付"],"New mark":["新着表示"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Button align":["ボタンの位置"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"VK Blocks Templates":["VK Blocks テンプレート"],"Disabled Blocks module. Because VK-Blocks Plugin running.":["VK-Blocksと競合するため、VK All in One Expansion UnitのBlock機能を停止しました。"],"Deactivated VK-Blocks Plugin. Because VK-Blocks Pro running.":["Pro版VK-Blocksが起動しているため、VK-Blocksを停止しました。"]}}}
|
inc/vk-blocks/build/languages/vk-blocks-ja.mo
CHANGED
Binary file
|
inc/vk-blocks/build/languages/vk-blocks-ja.po
CHANGED
@@ -9,23 +9,26 @@ msgstr ""
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Generator: Poedit
|
13 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-KeywordsList: __\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
-
#: src/blocks/_helper/font-awesome.js:
|
19 |
-
msgid "
|
20 |
msgstr "Font Awesome:"
|
21 |
|
22 |
-
#: src/blocks/_helper/font-awesome.js:
|
23 |
-
msgid "Enter Font Awesome Class.
|
24 |
-
msgstr ""
|
25 |
-
|
|
|
|
|
|
|
26 |
|
27 |
-
#: src/blocks/_helper/font-awesome.js:
|
28 |
-
#: src/blocks/pr-blocks/block.js:
|
29 |
msgid "Font Awesome icon list"
|
30 |
msgstr "Font Awesome アイコンリスト"
|
31 |
|
@@ -33,16 +36,16 @@ msgstr "Font Awesome アイコンリスト"
|
|
33 |
msgid "Card Item"
|
34 |
msgstr "カードアイテム"
|
35 |
|
36 |
-
#: src/blocks/_pro/card-item/block.js:
|
37 |
msgid "URL"
|
38 |
msgstr "URL"
|
39 |
|
40 |
-
#: src/blocks/_pro/card-item/block.js:
|
41 |
msgid "https://example.com"
|
42 |
msgstr "https://example.com"
|
43 |
|
44 |
#: src/blocks/_pro/card-item/component.js:103
|
45 |
-
#: src/
|
46 |
msgid "Delete Image"
|
47 |
msgstr "画像を削除"
|
48 |
|
@@ -56,37 +59,38 @@ msgstr ""
|
|
56 |
msgid "Title"
|
57 |
msgstr "タイトルを入力"
|
58 |
|
59 |
-
#: src/blocks/_pro/card-item/component.js:90 src/blocks/
|
60 |
-
#: src/blocks/
|
61 |
-
#: src/blocks/pr-
|
62 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:102
|
63 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:116
|
64 |
#: src/blocks/staff/component.js:88
|
|
|
65 |
msgid "Select image"
|
66 |
msgstr "画像を選択"
|
67 |
|
68 |
-
#: src/blocks/_pro/card/block.js:
|
69 |
-
#: src/components/display-items-control/index.js:
|
70 |
msgid "Display item"
|
71 |
msgstr "表示要素"
|
72 |
|
73 |
-
#: src/blocks/_pro/card/block.js:
|
74 |
-
#: src/components/display-items-control/index.js:
|
75 |
msgid "Image"
|
76 |
msgstr "画像"
|
77 |
|
78 |
-
#: src/blocks/_pro/card/block.js:
|
79 |
-
#: src/components/display-items-control/index.js:
|
80 |
msgid "Button"
|
81 |
msgstr "ボタン"
|
82 |
|
83 |
-
#: src/blocks/_pro/card/block.js:
|
84 |
-
#: src/components/display-items-control/index.js:
|
85 |
msgid "Button option"
|
86 |
msgstr "ボタンオプション"
|
87 |
|
88 |
-
#: src/blocks/_pro/card/block.js:
|
89 |
-
#: src/components/display-items-control/index.js:
|
90 |
msgid ""
|
91 |
"Click each card block to set the target url. You can find the url form at "
|
92 |
"it's sidebar."
|
@@ -94,46 +98,63 @@ msgstr ""
|
|
94 |
"ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォー"
|
95 |
"ムが表示されます。"
|
96 |
|
97 |
-
#: src/blocks/_pro/card/block.js:
|
98 |
-
#: src/components/display-items-control/index.js:
|
99 |
msgid "Button text"
|
100 |
msgstr "ボタンの文字"
|
101 |
|
102 |
-
#: src/blocks/_pro/card/block.js:
|
103 |
-
#: src/components/column-layout-control/index.js:
|
104 |
msgid "Card"
|
105 |
msgstr "カード"
|
106 |
|
107 |
-
#: src/blocks/_pro/child-page/block.js:
|
108 |
msgid "Exsist Already Page"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: src/blocks/_pro/child-page/block.js:
|
112 |
msgid "Current Page"
|
113 |
msgstr "現在のページ"
|
114 |
|
115 |
-
#: src/blocks/_pro/child-page/block.js:
|
116 |
msgid "Child page list"
|
117 |
msgstr "子ページリスト"
|
118 |
|
119 |
-
#: src/blocks/_pro/child-page/block.js:
|
120 |
-
#: src/blocks/_pro/post-list/block.js:
|
121 |
msgid "Display conditions"
|
122 |
msgstr "表示条件"
|
123 |
|
124 |
-
#: src/blocks/_pro/child-page/block.js:
|
125 |
msgid "Parent"
|
126 |
msgstr "親ページ"
|
127 |
|
128 |
-
#: src/blocks/_pro/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
msgid "Background Setting"
|
130 |
msgstr "背景設定"
|
131 |
|
132 |
-
#: src/blocks/_pro/outer/block.js:
|
133 |
msgid "Color Setting"
|
134 |
msgstr "色設定"
|
135 |
|
136 |
-
#: src/blocks/_pro/outer/block.js:
|
137 |
msgid ""
|
138 |
"Color will overcome background image. If you want to display image, clear "
|
139 |
"background color or set opacity 0."
|
@@ -141,60 +162,68 @@ msgstr ""
|
|
141 |
"色を指定すると画像よりも優先されます。画像を表示したい場合は、背景色をクリア"
|
142 |
"するか、不透明度を0に設定します。"
|
143 |
|
144 |
-
#: src/blocks/_pro/outer/block.js:
|
145 |
msgid "Opacity Setting"
|
146 |
msgstr "透過設定"
|
147 |
|
148 |
-
#: src/blocks/_pro/outer/block.js:
|
149 |
-
msgid "Background Image"
|
150 |
-
msgstr "背景画像"
|
|
|
|
|
|
|
|
|
151 |
|
152 |
-
#: src/blocks/_pro/outer/block.js:
|
|
|
|
|
|
|
|
|
153 |
msgid "Background image Position"
|
154 |
msgstr "背景画像の位置"
|
155 |
|
156 |
-
#: src/blocks/_pro/outer/block.js:
|
157 |
msgid "normal"
|
158 |
msgstr "標準"
|
159 |
|
160 |
-
#: src/blocks/_pro/outer/block.js:
|
161 |
-
msgid "Fixed"
|
162 |
-
msgstr "
|
163 |
|
164 |
-
#: src/blocks/_pro/outer/block.js:
|
165 |
-
msgid "Parallax (
|
166 |
-
msgstr "
|
167 |
|
168 |
-
#: src/blocks/_pro/outer/block.js:
|
169 |
msgid "Layout Setting"
|
170 |
msgstr "レイアウト設定"
|
171 |
|
172 |
-
#: src/blocks/_pro/outer/block.js:
|
173 |
-
msgid "
|
174 |
-
msgstr "
|
175 |
|
176 |
-
#: src/blocks/_pro/outer/block.js:
|
177 |
msgid "Normal"
|
178 |
msgstr "標準"
|
179 |
|
180 |
-
#: src/blocks/_pro/outer/block.js:
|
181 |
msgid "Full Wide"
|
182 |
msgstr "全幅"
|
183 |
|
184 |
-
#: src/blocks/_pro/outer/block.js:
|
185 |
-
msgid "
|
186 |
-
msgstr "
|
187 |
|
188 |
-
#: src/blocks/_pro/outer/block.js:
|
189 |
-
msgid "
|
190 |
-
msgstr "
|
191 |
|
192 |
-
#: src/blocks/_pro/outer/block.js:
|
193 |
-
msgid "
|
194 |
-
msgstr "
|
195 |
|
196 |
-
#: src/blocks/_pro/outer/block.js:
|
197 |
-
msgid "Padding (
|
198 |
msgstr "余白 (上下)"
|
199 |
|
200 |
#: src/blocks/_pro/outer/block.js:219
|
@@ -202,211 +231,224 @@ msgid "Use default padding"
|
|
202 |
msgstr "標準の余白を使用"
|
203 |
|
204 |
#: src/blocks/_pro/outer/block.js:221
|
205 |
-
msgid "Do not use default padding
|
206 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
|
208 |
-
#: src/blocks/_pro/outer/block.js:
|
209 |
msgid "Divider Setting"
|
210 |
msgstr "区切りの設定"
|
211 |
|
212 |
-
#: src/blocks/_pro/outer/block.js:
|
213 |
msgid "Type"
|
214 |
msgstr "タイプ"
|
215 |
|
216 |
-
#: src/blocks/_pro/outer/block.js:
|
217 |
msgid "Tilt"
|
218 |
msgstr "傾斜"
|
219 |
|
220 |
-
#: src/blocks/_pro/outer/block.js:
|
221 |
msgid "Curve"
|
222 |
msgstr "カーブ"
|
223 |
|
224 |
-
#: src/blocks/_pro/outer/block.js:
|
225 |
msgid "Wave"
|
226 |
msgstr "波状"
|
227 |
|
228 |
-
#: src/blocks/_pro/outer/block.js:
|
229 |
msgid "Triangle"
|
230 |
msgstr "三角"
|
231 |
|
232 |
-
#: src/blocks/_pro/outer/block.js:
|
233 |
msgid "Upper Divider Level"
|
234 |
msgstr "上部区切りレベル"
|
235 |
|
236 |
-
#: src/blocks/_pro/outer/block.js:
|
237 |
msgid "Lower Divider Level"
|
238 |
msgstr "下部区切りレベル"
|
239 |
|
240 |
-
#: src/blocks/_pro/outer/block.js:
|
241 |
msgid "Border Setting"
|
242 |
msgstr "枠線の設定"
|
243 |
|
244 |
-
#: src/blocks/_pro/outer/block.js:
|
245 |
msgid "Border will disappear when divider effect is applied."
|
246 |
msgstr "枠線は区切りレベルを適用すると表示されなくなります。"
|
247 |
|
248 |
-
#: src/blocks/_pro/outer/block.js:
|
249 |
msgid "Border type"
|
250 |
msgstr "枠線の種類"
|
251 |
|
252 |
-
#: src/blocks/_pro/outer/block.js:
|
253 |
-
#: src/blocks/_pro/timeline-item/block.js:103 src/blocks/staff/block.js:
|
254 |
msgid "None"
|
255 |
msgstr "なし"
|
256 |
|
257 |
-
#: src/blocks/_pro/outer/block.js:
|
258 |
#: src/blocks/_pro/timeline-item/block.js:84 src/blocks/group-style/block.js:95
|
259 |
#: src/blocks/pr-content/block.js:168
|
260 |
msgid "Solid"
|
261 |
msgstr "直線"
|
262 |
|
263 |
-
#: src/blocks/_pro/outer/block.js:
|
264 |
msgid "Dotted"
|
265 |
msgstr "点線"
|
266 |
|
267 |
-
#: src/blocks/_pro/outer/block.js:
|
268 |
msgid "Dashed"
|
269 |
msgstr "Dashed"
|
270 |
|
271 |
-
#: src/blocks/_pro/outer/block.js:
|
272 |
msgid "Double"
|
273 |
msgstr "二重線"
|
274 |
|
275 |
-
#: src/blocks/_pro/outer/block.js:
|
276 |
msgid "Groove"
|
277 |
msgstr "Groove"
|
278 |
|
279 |
-
#: src/blocks/_pro/outer/block.js:
|
280 |
msgid "Ridge"
|
281 |
msgstr "Ridge"
|
282 |
|
283 |
-
#: src/blocks/_pro/outer/block.js:
|
284 |
msgid "Inset"
|
285 |
msgstr "Inset"
|
286 |
|
287 |
-
#: src/blocks/_pro/outer/block.js:
|
288 |
msgid "Outset"
|
289 |
msgstr "Outset"
|
290 |
|
291 |
-
#: src/blocks/_pro/outer/block.js:
|
292 |
msgid "Border width"
|
293 |
msgstr "枠線の幅"
|
294 |
|
295 |
-
#: src/blocks/_pro/outer/block.js:
|
296 |
msgid "Border radius"
|
297 |
msgstr "枠線のRの大きさ"
|
298 |
|
299 |
-
#: src/blocks/_pro/outer/block.js:
|
300 |
msgid "Outer"
|
301 |
msgstr "Outer"
|
302 |
|
303 |
-
#: src/blocks/_pro/post-list/block.js:
|
304 |
msgid "Filter by PostTypes"
|
305 |
msgstr "投稿タイプ"
|
306 |
|
307 |
-
#: src/blocks/_pro/post-list/block.js:
|
308 |
msgid "Filter by Taxonomy Terms"
|
309 |
msgstr "分類"
|
310 |
|
311 |
-
#: src/blocks/_pro/post-list/block.js:
|
312 |
msgid "Number of Posts"
|
313 |
msgstr "表示件数"
|
314 |
|
315 |
-
#: src/blocks/_pro/post-list/block.js:
|
316 |
msgid "Order by"
|
317 |
msgstr "表示順"
|
318 |
|
319 |
-
#: src/blocks/_pro/post-list/block.js:
|
320 |
msgid "Published Date"
|
321 |
msgstr "公開日"
|
322 |
|
323 |
-
#: src/blocks/_pro/post-list/block.js:
|
324 |
msgid "Modefied Date"
|
325 |
msgstr "更新日"
|
326 |
|
327 |
-
#: src/blocks/_pro/post-list/block.js:
|
328 |
msgid "Random"
|
329 |
msgstr "ランダム"
|
330 |
|
331 |
-
#: src/blocks/_pro/post-list/block.js:
|
332 |
msgid "offset"
|
333 |
msgstr "オフセット数"
|
334 |
|
335 |
-
#: src/blocks/_pro/post-list/block.js:
|
336 |
-
msgid "Ignore this post"
|
337 |
-
msgstr "表示中の投稿をリストから除外する"
|
338 |
-
|
339 |
-
#: src/blocks/_pro/post-list/block.js:66
|
340 |
msgid "Post list"
|
341 |
msgstr "投稿リスト"
|
342 |
|
343 |
-
#: src/blocks/_pro/step-item/block.js:
|
344 |
-
#: src/blocks/_pro/timeline-item/block.js:80
|
345 |
-
msgid "Outlined"
|
346 |
-
msgstr "アウトライン"
|
347 |
-
|
348 |
-
#: src/blocks/_pro/step-item/block.js:116
|
349 |
-
#: src/blocks/_pro/table-of-contents/block.js:50
|
350 |
-
#: src/blocks/_pro/timeline-item/block.js:99
|
351 |
-
#: src/blocks/heading-style/block.js:33 src/blocks/heading/block.js:153
|
352 |
-
#: src/blocks/list-style/block.js:104 src/blocks/staff/block.js:105
|
353 |
-
msgid "Default"
|
354 |
-
msgstr "標準"
|
355 |
-
|
356 |
-
#: src/blocks/_pro/step-item/block.js:33
|
357 |
msgid "Step Item"
|
358 |
msgstr "ステップ要素"
|
359 |
|
360 |
-
#: src/blocks/_pro/step-item/block.js:
|
361 |
msgid "Step Mark"
|
362 |
msgstr "ステップマーク"
|
363 |
|
364 |
-
#: src/blocks/_pro/step-item/block.js:
|
365 |
msgid "If FontAwesome class entered, it will overrides the number."
|
366 |
msgstr "Font Awesome の class 名が入力されている場合は数字は上書きされます。"
|
367 |
|
368 |
-
#: src/blocks/_pro/step-item/block.js:
|
369 |
#: src/blocks/_pro/timeline-item/block.js:60
|
370 |
msgid "Ex,6:00AM"
|
371 |
msgstr "例) 午前 6:00"
|
372 |
|
373 |
-
#: src/blocks/_pro/step-item/block.js:
|
374 |
-
#: src/blocks/_pro/timeline-item/block.js:63 src/blocks/
|
|
|
375 |
msgid "Color"
|
376 |
msgstr "色"
|
377 |
|
378 |
-
#: src/blocks/_pro/step-item/block.js:
|
379 |
-
#: src/blocks/_pro/table-of-contents/block.js:
|
|
|
380 |
#: src/blocks/_pro/timeline-item/block.js:69
|
381 |
msgid "Style"
|
382 |
msgstr "スタイル"
|
383 |
|
384 |
-
#: src/blocks/_pro/step/block.js:
|
385 |
-
|
386 |
-
|
|
|
387 |
|
388 |
-
#: src/blocks/_pro/step/block.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
389 |
msgid "Step"
|
390 |
msgstr "ステップ"
|
391 |
|
392 |
-
#: src/blocks/_pro/
|
393 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
394 |
msgid "Table of Contents"
|
395 |
msgstr "目次"
|
396 |
|
397 |
-
#: src/blocks/_pro/table-of-contents/block.js:
|
|
|
398 |
msgid "No frame"
|
399 |
msgstr "枠無し"
|
400 |
|
401 |
-
#: src/blocks/_pro/table-of-contents/block.js:
|
|
|
402 |
msgid "Default Display Status"
|
403 |
msgstr "初期表示状態"
|
404 |
|
405 |
-
#: src/blocks/_pro/table-of-contents/block.js:
|
|
|
406 |
msgid "OPEN"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: src/blocks/_pro/table-of-contents/block.js:
|
|
|
410 |
msgid "CLOSE"
|
411 |
msgstr ""
|
412 |
|
@@ -418,173 +460,237 @@ msgstr "タイムライン要素"
|
|
418 |
msgid "label"
|
419 |
msgstr "ラベル"
|
420 |
|
421 |
-
#: src/blocks/_pro/timeline/block.js:
|
422 |
msgid "Timeline"
|
423 |
msgstr "タイムライン"
|
424 |
|
425 |
-
#: src/blocks/alert/block.js:
|
426 |
msgid "Alert"
|
427 |
msgstr "アラート"
|
428 |
|
429 |
-
#: src/blocks/
|
430 |
-
msgid "
|
431 |
-
msgstr "
|
432 |
|
433 |
-
#: src/blocks/
|
434 |
-
|
435 |
-
|
|
|
436 |
|
437 |
-
#: src/blocks/
|
438 |
-
|
439 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
440 |
|
441 |
-
#: src/blocks/
|
442 |
-
#: src/blocks/pr-
|
|
|
|
|
|
|
|
|
|
|
443 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:106
|
444 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:120
|
445 |
msgid "Upload image"
|
446 |
msgstr "画像をアップロード"
|
447 |
|
448 |
-
#: src/blocks/balloon/block.js:
|
449 |
msgid "Icon Name"
|
450 |
msgstr "アイコンの名前"
|
451 |
|
452 |
-
#: src/blocks/balloon/block.js:
|
453 |
msgid "Input text"
|
454 |
msgstr "文字を入力"
|
455 |
|
456 |
-
#: src/blocks/balloon/block.js:
|
457 |
msgid "Ballon"
|
458 |
msgstr "フキダシ"
|
459 |
|
460 |
-
#: src/blocks/balloon/block.js:
|
461 |
msgid "Balloon setting"
|
462 |
msgstr "フキダシ設定"
|
463 |
|
464 |
-
#: src/blocks/balloon/block.js:
|
465 |
msgid "Position"
|
466 |
msgstr "位置"
|
467 |
|
468 |
-
#: src/blocks/balloon/block.js:
|
469 |
msgid "Please specify the layout of the balloon."
|
470 |
msgstr "吹き出しの配置を指定してください。"
|
471 |
|
472 |
-
#: src/blocks/balloon/block.js:
|
473 |
#: src/blocks/pr-content/block.js:241
|
474 |
-
#: src/components/display-items-control/index.js:
|
475 |
msgid "Left"
|
476 |
msgstr "左"
|
477 |
|
478 |
-
#: src/blocks/balloon/block.js:
|
479 |
#: src/blocks/pr-content/block.js:240
|
480 |
-
#: src/components/display-items-control/index.js:
|
481 |
msgid "Right"
|
482 |
msgstr "右"
|
483 |
|
484 |
-
#: src/blocks/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
485 |
msgid "Button setting"
|
486 |
msgstr "ボタン設定"
|
487 |
|
488 |
-
#: src/blocks/button/block.js:
|
489 |
msgid "Sub Caption"
|
490 |
msgstr "サブテキスト"
|
491 |
|
492 |
-
#: src/blocks/button/block.js:
|
493 |
#: src/blocks/pr-content/block.js:160
|
494 |
msgid "Open link new tab."
|
495 |
msgstr "リンクを別ウィンドウで開く"
|
496 |
|
497 |
-
#: src/blocks/button/block.js:
|
498 |
msgid "Button Size:"
|
499 |
msgstr "ボタンサイズ:"
|
500 |
|
501 |
-
#: src/blocks/button/block.js:
|
502 |
msgid "Large"
|
503 |
msgstr "大"
|
504 |
|
505 |
-
#: src/blocks/button/block.js:
|
506 |
msgid "Small"
|
507 |
msgstr "小"
|
508 |
|
509 |
-
#: src/blocks/button/block.js:
|
510 |
msgid "Button Position:"
|
511 |
msgstr "ボタンの位置:"
|
512 |
|
513 |
-
#: src/blocks/button/block.js:
|
514 |
-
#: src/components/display-items-control/index.js:
|
515 |
msgid "Center"
|
516 |
msgstr "中央"
|
517 |
|
518 |
-
#: src/blocks/button/block.js:
|
519 |
msgid "Wide"
|
520 |
msgstr "幅広"
|
521 |
|
522 |
-
#: src/blocks/button/block.js:
|
523 |
msgid "Block"
|
524 |
msgstr "全幅"
|
525 |
|
526 |
-
#: src/blocks/button/block.js:
|
527 |
msgid "Button Style:"
|
528 |
msgstr "ボタンスタイル:"
|
529 |
|
530 |
-
#: src/blocks/button/block.js:
|
531 |
msgid "Solid color"
|
532 |
msgstr "ベタ塗り"
|
533 |
|
534 |
-
#: src/blocks/button/block.js:
|
535 |
msgid "No background"
|
536 |
msgstr "背景なし"
|
537 |
|
538 |
-
#: src/blocks/button/block.js:
|
539 |
msgid "Text only"
|
540 |
msgstr "テキストのみ"
|
541 |
|
542 |
-
#: src/blocks/button/block.js:
|
543 |
msgid ""
|
544 |
"If you select \"No background\", that you need to select a Custom Color."
|
545 |
msgstr "もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"
|
546 |
|
547 |
-
#: src/blocks/button/block.js:
|
548 |
msgid "Default Color:"
|
549 |
msgstr "標準色:"
|
550 |
|
551 |
-
#: src/blocks/button/block.js:
|
552 |
msgid "Primary"
|
553 |
msgstr "Primary"
|
554 |
|
555 |
-
#: src/blocks/button/block.js:
|
556 |
msgid "Secondary"
|
557 |
msgstr "Secondary"
|
558 |
|
559 |
-
#: src/blocks/button/block.js:
|
560 |
-
msgid "Success"
|
561 |
-
msgstr "Success"
|
562 |
-
|
563 |
-
#: src/blocks/button/block.js:270 src/blocks/pr-content/block.js:181
|
564 |
-
msgid "Info"
|
565 |
-
msgstr "Info"
|
566 |
-
|
567 |
-
#: src/blocks/button/block.js:271 src/blocks/pr-content/block.js:182
|
568 |
-
msgid "Warning"
|
569 |
-
msgstr "Warning"
|
570 |
-
|
571 |
-
#: src/blocks/button/block.js:272 src/blocks/pr-content/block.js:183
|
572 |
-
msgid "Danger"
|
573 |
-
msgstr "Danger"
|
574 |
-
|
575 |
-
#: src/blocks/button/block.js:273 src/blocks/pr-content/block.js:184
|
576 |
msgid "Light"
|
577 |
msgstr "Light"
|
578 |
|
579 |
-
#: src/blocks/button/block.js:
|
580 |
msgid "Dark"
|
581 |
msgstr "Dark"
|
582 |
|
583 |
-
#: src/blocks/button/block.js:
|
584 |
msgid "Custom Color"
|
585 |
msgstr "カスタムカラー"
|
586 |
|
587 |
-
#: src/blocks/button/block.js:
|
588 |
msgid ""
|
589 |
"This custom color overrides the default color. If you want to use the "
|
590 |
"default color, click the clear button."
|
@@ -592,15 +698,15 @@ msgstr ""
|
|
592 |
"このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用し"
|
593 |
"たい場合は、クリアボタンをクリックしてください。"
|
594 |
|
595 |
-
#: src/blocks/button/block.js:
|
596 |
msgid "Font Awesome:"
|
597 |
msgstr "Font Awesome:"
|
598 |
|
599 |
-
#: src/blocks/button/block.js:
|
600 |
msgid "Before text"
|
601 |
msgstr "文字の前"
|
602 |
|
603 |
-
#: src/blocks/button/block.js:
|
604 |
msgid ""
|
605 |
"Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-"
|
606 |
"circle-right"
|
@@ -608,11 +714,11 @@ msgstr ""
|
|
608 |
"Font Awesome の class 名を入力してください。このアイコンは文字の前に表示され"
|
609 |
"ます。 例) fas fa-arrow-circle-right"
|
610 |
|
611 |
-
#: src/blocks/button/block.js:
|
612 |
msgid "After text"
|
613 |
msgstr "文字の後"
|
614 |
|
615 |
-
#: src/blocks/button/block.js:
|
616 |
msgid ""
|
617 |
"Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-"
|
618 |
"external-link-alt"
|
@@ -620,7 +726,7 @@ msgstr ""
|
|
620 |
"Font Awesome の class 名を入力してください。このアイコンは文字の後に表示され"
|
621 |
"ます。 例) fas fa-external-link-alt"
|
622 |
|
623 |
-
#: src/blocks/button/block.js:
|
624 |
msgid "Apply"
|
625 |
msgstr ""
|
626 |
|
@@ -636,27 +742,27 @@ msgstr "質問と解答"
|
|
636 |
msgid "Please enter a question."
|
637 |
msgstr "質問を入力してください。"
|
638 |
|
639 |
-
#: src/blocks/flow/block.js:
|
640 |
msgid "Flow"
|
641 |
msgstr "フロー"
|
642 |
|
643 |
-
#: src/blocks/flow/block.js:
|
644 |
msgid "Display of arrow"
|
645 |
msgstr "矢印の表示"
|
646 |
|
647 |
-
#: src/blocks/flow/block.js:
|
648 |
msgid "Arrow display"
|
649 |
msgstr "矢印を表示する"
|
650 |
|
651 |
-
#: src/blocks/flow/block.js:
|
652 |
msgid "Arrow hidden"
|
653 |
msgstr "矢印を表示しない"
|
654 |
|
655 |
-
#: src/blocks/flow/block.js:
|
656 |
msgid "Input title"
|
657 |
msgstr "タイトルを入力"
|
658 |
|
659 |
-
#: src/blocks/flow/block.js:
|
660 |
msgid "Input content"
|
661 |
msgstr "説明を入力"
|
662 |
|
@@ -692,7 +798,7 @@ msgstr "左右線"
|
|
692 |
msgid "Brackets black"
|
693 |
msgstr "括弧 黒"
|
694 |
|
695 |
-
#: src/blocks/heading-style/block.js:38 src/blocks/heading/block.js:
|
696 |
msgid "Plain"
|
697 |
msgstr "装飾無し"
|
698 |
|
@@ -716,95 +822,106 @@ msgstr "直線 上下 黒"
|
|
716 |
msgid "Solid border bottom black"
|
717 |
msgstr "直線 下線 黒"
|
718 |
|
719 |
-
#: src/blocks/heading/block.js:
|
720 |
-
msgid "Style Settings"
|
721 |
-
msgstr "スタイル設定"
|
722 |
-
|
723 |
-
#: src/blocks/heading/block.js:149
|
724 |
msgid "Heading style"
|
725 |
msgstr "見出しスタイル"
|
726 |
|
727 |
-
#: src/blocks/heading/block.js:
|
728 |
msgid "Margin bottom size (rem)"
|
729 |
msgstr "下部の余白"
|
730 |
|
731 |
-
#: src/blocks/heading/block.js:
|
732 |
msgid "Heading Settings"
|
733 |
msgstr "見出し設定"
|
734 |
|
735 |
-
#: src/blocks/heading/block.js:
|
736 |
msgid "Level"
|
737 |
msgstr "レベル"
|
738 |
|
739 |
-
#: src/blocks/heading/block.js:
|
740 |
msgid "Text Alignment"
|
741 |
msgstr "テキストの水平位置"
|
742 |
|
743 |
-
#: src/blocks/heading/block.js:
|
744 |
msgid "Heading margin bottom size (rem)"
|
745 |
msgstr "見出し下部の余白 (rem)"
|
746 |
|
747 |
-
#: src/blocks/heading/block.js:
|
748 |
msgid "Sub Text Settings"
|
749 |
msgstr "サブテキスト設定"
|
750 |
|
751 |
-
#: src/blocks/heading/block.js:
|
752 |
msgid "Display"
|
753 |
msgstr "表示"
|
754 |
|
755 |
-
#: src/blocks/heading/block.js:
|
756 |
msgid "Hide"
|
757 |
msgstr "非表示"
|
758 |
|
759 |
-
#: src/blocks/heading/block.js:
|
760 |
msgid "Text size (rem)"
|
761 |
msgstr "文字サイズ (rem)"
|
762 |
|
763 |
-
#: src/blocks/heading/block.js:
|
764 |
msgid "Heading"
|
765 |
msgstr "見出し"
|
766 |
|
767 |
-
#: src/blocks/heading/component.js:
|
768 |
-
#: src/blocks/heading/deprecated/block.js:
|
|
|
769 |
msgid "Input sub text…"
|
770 |
msgstr "サブテキストを入力"
|
771 |
|
772 |
-
#: src/blocks/heading/component.js:
|
773 |
-
#: src/blocks/heading/deprecated/block.js:
|
|
|
774 |
msgid "Input title…"
|
775 |
msgstr "タイトルを入力"
|
776 |
|
777 |
# %s: heading level e.g: "1", "2", "3"
|
778 |
#. %s: heading level e.g: "1", "2", "3"
|
779 |
-
#: src/blocks/heading/heading-toolbar.js:
|
780 |
msgid "Heading %d"
|
781 |
msgstr "見出し %d"
|
782 |
|
783 |
-
#: src/blocks/hidden-extension/index.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
784 |
msgid "Hidden ( Screen size : all )"
|
785 |
msgstr "非表示 ( 画面サイズ : all )"
|
786 |
|
787 |
-
#: src/blocks/hidden-extension/index.js:
|
788 |
msgid "Hidden ( Screen size : xs )"
|
789 |
msgstr "非表示 ( 画面サイズ : xs )"
|
790 |
|
791 |
-
#: src/blocks/hidden-extension/index.js:
|
792 |
msgid "Hidden ( Screen size : sm )"
|
793 |
msgstr "非表示 ( 画面サイズ : sm )"
|
794 |
|
795 |
-
#: src/blocks/hidden-extension/index.js:
|
796 |
msgid "Hidden ( Screen size : md )"
|
797 |
msgstr "非表示 ( 画面サイズ : md )"
|
798 |
|
799 |
-
#: src/blocks/hidden-extension/index.js:
|
800 |
msgid "Hidden ( Screen size : lg )"
|
801 |
msgstr "非表示 ( 画面サイズ : lg )"
|
802 |
|
803 |
-
#: src/blocks/hidden-extension/index.js:
|
804 |
msgid "Hidden ( Screen size : xl )"
|
805 |
msgstr "非表示 ( 画面サイズ : xl )"
|
806 |
|
807 |
-
#: src/blocks/hidden-extension/index.js:
|
808 |
msgid ""
|
809 |
"If you want to hide multiple blocks, that first you set to group block and "
|
810 |
"the next, hide for the that group block."
|
@@ -812,23 +929,10 @@ msgstr ""
|
|
812 |
"複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグ"
|
813 |
"ループブロックに対して非表示にします。"
|
814 |
|
815 |
-
#: src/blocks/hidden-extension/index.js:
|
816 |
msgid "Hidden Settings"
|
817 |
msgstr "非表示設定"
|
818 |
|
819 |
-
#: src/blocks/hidden-extension/index.js:96
|
820 |
-
msgid "Hidden at screel size"
|
821 |
-
msgstr "非表示にする画面サイズ"
|
822 |
-
|
823 |
-
#: src/blocks/hidden-extension/index.js:98
|
824 |
-
msgid ""
|
825 |
-
"Note : This function is display hidden only. Actually Block is output to "
|
826 |
-
"HTML.Pleade don't use you must not bisible item.Don't use it for blocks you "
|
827 |
-
"really don't want to display."
|
828 |
-
msgstr ""
|
829 |
-
"注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見"
|
830 |
-
"せてはいけない要素には使わないでください。"
|
831 |
-
|
832 |
#: src/blocks/highlighter/block.js:81
|
833 |
msgid "Highlight Color"
|
834 |
msgstr "ハイライトカラー"
|
@@ -889,63 +993,63 @@ msgstr "数字-四角"
|
|
889 |
msgid "List Icon Color"
|
890 |
msgstr "リストアイコンの色"
|
891 |
|
892 |
-
#: src/blocks/pr-blocks/block.js:
|
893 |
msgid "PR Block1 Setting"
|
894 |
msgstr "PR Block1 設定"
|
895 |
|
896 |
-
#: src/blocks/pr-blocks/block.js:
|
897 |
msgid "Icon 1"
|
898 |
msgstr "アイコン 1"
|
899 |
|
900 |
-
#: src/blocks/pr-blocks/block.js:
|
901 |
-
msgid "PR Image 1"
|
902 |
-
msgstr "PR 画像 1"
|
903 |
-
|
904 |
-
#: src/blocks/pr-blocks/block.js:239
|
905 |
msgid "When you have an image. Image is displayed with priority"
|
906 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
907 |
|
908 |
-
#: src/blocks/pr-blocks/block.js:
|
|
|
|
|
|
|
|
|
909 |
msgid "PR Block2 Setting"
|
910 |
msgstr "PR Block2 設定"
|
911 |
|
912 |
-
#: src/blocks/pr-blocks/block.js:
|
913 |
msgid "Icon 2"
|
914 |
msgstr "アイコン 2"
|
915 |
|
916 |
-
#: src/blocks/pr-blocks/block.js:
|
917 |
msgid "PR Image 2"
|
918 |
msgstr "PR 画像 2"
|
919 |
|
920 |
-
#: src/blocks/pr-blocks/block.js:
|
921 |
msgid "PR Block3 Setting"
|
922 |
msgstr "PR Block3 設定"
|
923 |
|
924 |
-
#: src/blocks/pr-blocks/block.js:
|
925 |
msgid "Link URL:"
|
926 |
msgstr "リンクURL:"
|
927 |
|
928 |
-
#: src/blocks/pr-blocks/block.js:
|
929 |
msgid "Icon 3"
|
930 |
msgstr "アイコン 3"
|
931 |
|
932 |
-
#: src/blocks/pr-blocks/block.js:
|
933 |
msgid "Class name of the Font Awesome icon font you want to use:"
|
934 |
msgstr "アイコンを使う場合は Font Awesome のアイコンのclass名:"
|
935 |
|
936 |
-
#: src/blocks/pr-blocks/block.js:
|
937 |
msgid "Icon Background:"
|
938 |
msgstr "アイコン背景:"
|
939 |
|
940 |
-
#: src/blocks/pr-blocks/block.js:
|
941 |
-
msgid "PR Image 3"
|
942 |
-
msgstr "PR 画像 3"
|
943 |
-
|
944 |
-
#: src/blocks/pr-blocks/block.js:369
|
945 |
msgid "When you have an image. Image is displayed with priority."
|
946 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
947 |
|
948 |
-
#: src/blocks/pr-blocks/block.js:
|
|
|
|
|
|
|
|
|
949 |
msgid "PR Blocks"
|
950 |
msgstr "PR Blocks"
|
951 |
|
@@ -1003,102 +1107,102 @@ msgstr "レイアウトタイプ"
|
|
1003 |
msgid "PR Content"
|
1004 |
msgstr "PR Content"
|
1005 |
|
1006 |
-
#: src/blocks/pr-content/component.js:
|
1007 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:122
|
1008 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:136
|
1009 |
msgid "Input title."
|
1010 |
msgstr "タイトルを入力してください。"
|
1011 |
|
1012 |
-
#: src/blocks/pr-content/component.js:
|
1013 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:130
|
1014 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:144
|
1015 |
msgid "Input content."
|
1016 |
msgstr "本文を入力してください。"
|
1017 |
|
1018 |
-
#: src/blocks/spacer/block.js:
|
1019 |
msgid "Tablet"
|
1020 |
msgstr "タブレット"
|
1021 |
|
1022 |
-
#: src/blocks/spacer/block.js:
|
1023 |
msgid "Mobile"
|
1024 |
msgstr "モバイル"
|
1025 |
|
1026 |
-
#: src/blocks/spacer/block.js:
|
1027 |
msgid "Responsive Spacer"
|
1028 |
msgstr "レスポンシブスペーサー"
|
1029 |
|
1030 |
-
#: src/blocks/spacer/block.js:
|
1031 |
msgid "Unit Type"
|
1032 |
msgstr "単位"
|
1033 |
|
1034 |
-
#: src/blocks/spacer/block.js:
|
1035 |
msgid "px"
|
1036 |
msgstr "px"
|
1037 |
|
1038 |
-
#: src/blocks/spacer/block.js:
|
1039 |
msgid "em"
|
1040 |
msgstr "em"
|
1041 |
|
1042 |
-
#: src/blocks/spacer/block.js:
|
1043 |
msgid "rem"
|
1044 |
msgstr "rem"
|
1045 |
|
1046 |
-
#: src/blocks/spacer/block.js:
|
1047 |
msgid "vw"
|
1048 |
msgstr "vw"
|
1049 |
|
1050 |
-
#: src/blocks/spacer/block.js:
|
1051 |
msgid "Height for each device."
|
1052 |
msgstr "デバイス毎の高さ"
|
1053 |
|
1054 |
-
#: src/blocks/spacer/block.js:
|
1055 |
msgid "PC"
|
1056 |
msgstr "PC"
|
1057 |
|
1058 |
-
#: src/blocks/staff/block.js:
|
1059 |
-
msgid "Alt text"
|
1060 |
-
msgstr "画像の代替テキスト"
|
1061 |
-
|
1062 |
-
#: src/blocks/staff/block.js:116
|
1063 |
-
msgid "Set the alt text for profile image"
|
1064 |
-
msgstr "プロフィール画像の代替テキストを設定します"
|
1065 |
-
|
1066 |
-
#: src/blocks/staff/block.js:126
|
1067 |
msgid "Staff name"
|
1068 |
msgstr "名前"
|
1069 |
|
1070 |
-
#: src/blocks/staff/block.js:
|
1071 |
msgid "Name caption"
|
1072 |
msgstr "名前のキャプション"
|
1073 |
|
1074 |
-
#: src/blocks/staff/block.js:
|
1075 |
msgid "Role position"
|
1076 |
msgstr "役職"
|
1077 |
|
1078 |
-
#: src/blocks/staff/block.js:
|
1079 |
msgid "Profile title"
|
1080 |
msgstr "プロフィールタイトル"
|
1081 |
|
1082 |
-
#: src/blocks/staff/block.js:
|
1083 |
msgid "Profile text"
|
1084 |
msgstr "プロフィールテキスト"
|
1085 |
|
1086 |
-
#: src/blocks/staff/block.js:
|
1087 |
msgid "Staff"
|
1088 |
msgstr "スタッフ"
|
1089 |
|
1090 |
-
#: src/blocks/staff/block.js:
|
1091 |
msgid "Layout"
|
1092 |
msgstr "レイアウト"
|
1093 |
|
1094 |
-
#: src/blocks/staff/block.js:
|
1095 |
msgid "Image left"
|
1096 |
msgstr "画像 左"
|
1097 |
|
1098 |
-
#: src/blocks/staff/block.js:
|
1099 |
msgid "Image border"
|
1100 |
msgstr "画像の線"
|
1101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1102 |
#: src/blocks/staff/component.js:42
|
1103 |
msgid "Your Name"
|
1104 |
msgstr "名前"
|
@@ -1111,19 +1215,19 @@ msgstr "キャプション"
|
|
1111 |
msgid "Align"
|
1112 |
msgstr "表示位置"
|
1113 |
|
1114 |
-
#: src/components/column-layout-control/index.js:
|
1115 |
msgid "Card ( No border )"
|
1116 |
msgstr "カード(線なし)"
|
1117 |
|
1118 |
-
#: src/components/column-layout-control/index.js:
|
1119 |
msgid "Card Horizontal"
|
1120 |
msgstr "カード(水平)"
|
1121 |
|
1122 |
-
#: src/components/column-layout-control/index.js:
|
1123 |
msgid "Media"
|
1124 |
msgstr "メディア"
|
1125 |
|
1126 |
-
#: src/components/column-layout-control/index.js:
|
1127 |
msgid "Text 1 Column"
|
1128 |
msgstr "テキスト1カラム"
|
1129 |
|
@@ -1135,55 +1239,55 @@ msgstr "表示タイプとカラム"
|
|
1135 |
msgid "Display type"
|
1136 |
msgstr "表示タイプ"
|
1137 |
|
1138 |
-
#: src/components/column-layout
|
1139 |
msgid "Column ( Screen size : Extra small )"
|
1140 |
msgstr "カラム ( 画面サイズ : Extra small )"
|
1141 |
|
1142 |
-
#: src/components/column-layout
|
1143 |
msgid "Column ( Screen size : Small )"
|
1144 |
msgstr "カラム ( 画面サイズ : Small )"
|
1145 |
|
1146 |
-
#: src/components/column-layout
|
1147 |
msgid "Column ( Screen size : Medium )"
|
1148 |
msgstr "カラム ( 画面サイズ : Medium )"
|
1149 |
|
1150 |
-
#: src/components/column-layout
|
1151 |
msgid "Column ( Screen size : Large )"
|
1152 |
msgstr "カラム ( 画面サイズ : Large )"
|
1153 |
|
1154 |
-
#: src/components/column-layout
|
1155 |
msgid "Column ( Screen size : Extra large )"
|
1156 |
msgstr "カラム ( 画面サイズ : Extra large )"
|
1157 |
|
1158 |
-
#: src/components/display-items-control/index.js:
|
1159 |
msgid "Term name"
|
1160 |
msgstr "分類名"
|
1161 |
|
1162 |
-
#: src/components/display-items-control/index.js:
|
1163 |
msgid "Excerpt"
|
1164 |
msgstr "抜粋"
|
1165 |
|
1166 |
-
#: src/components/display-items-control/index.js:
|
1167 |
msgid "Date"
|
1168 |
msgstr "日付"
|
1169 |
|
1170 |
-
#: src/components/display-items-control/index.js:
|
1171 |
msgid "New mark"
|
1172 |
msgstr "新着表示"
|
1173 |
|
1174 |
-
#: src/components/display-items-control/index.js:
|
1175 |
msgid "New mark option"
|
1176 |
msgstr "新着表示オプション"
|
1177 |
|
1178 |
-
#: src/components/display-items-control/index.js:
|
1179 |
msgid "Number of days to display the new post mark"
|
1180 |
msgstr "新着表示日数"
|
1181 |
|
1182 |
-
#: src/components/display-items-control/index.js:
|
1183 |
msgid "New post mark"
|
1184 |
msgstr "新着表示"
|
1185 |
|
1186 |
-
#: src/components/display-items-control/index.js:
|
1187 |
msgid "Button align"
|
1188 |
msgstr "ボタンの位置"
|
1189 |
|
@@ -1201,16 +1305,61 @@ msgstr "rel属性"
|
|
1201 |
|
1202 |
#: src/plugin/menu/sidebar.js:17
|
1203 |
msgid "VK Blocks Templates"
|
1204 |
-
msgstr ""
|
1205 |
|
|
|
1206 |
msgid "Disabled Blocks module. Because VK-Blocks Plugin running."
|
1207 |
msgstr ""
|
1208 |
"VK-Blocksと競合するため、VK All in One Expansion UnitのBlock機能を停止しまし"
|
1209 |
"た。"
|
1210 |
|
|
|
1211 |
msgid "Deactivated VK-Blocks Plugin. Because VK-Blocks Pro running."
|
1212 |
msgstr "Pro版VK-Blocksが起動しているため、VK-Blocksを停止しました。"
|
1213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1214 |
#, fuzzy
|
1215 |
#~| msgid "Icon setting"
|
1216 |
#~ msgid "Link settings"
|
@@ -1219,18 +1368,9 @@ msgstr "Pro版VK-Blocksが起動しているため、VK-Blocksを停止しまし
|
|
1219 |
#~ msgid "This block is only for users who bought Lightning Pro."
|
1220 |
#~ msgstr "このブロックは Lightning Pro 専用です。"
|
1221 |
|
1222 |
-
#~ msgid "top-bottom-border"
|
1223 |
-
#~ msgstr "上下線"
|
1224 |
-
|
1225 |
-
#~ msgid "Solid black"
|
1226 |
-
#~ msgstr "直線 黒"
|
1227 |
-
|
1228 |
#~ msgid "Double black"
|
1229 |
#~ msgstr "二重線 黒"
|
1230 |
|
1231 |
-
#~ msgid "Solid border-bottom"
|
1232 |
-
#~ msgstr "直線 下線"
|
1233 |
-
|
1234 |
#, fuzzy
|
1235 |
#~| msgid "top-bottom-border"
|
1236 |
#~ msgid "Solid border-bottom leftkeycolor"
|
@@ -1351,9 +1491,6 @@ msgstr "Pro版VK-Blocksが起動しているため、VK-Blocksを停止しまし
|
|
1351 |
#~ msgid "Name"
|
1352 |
#~ msgstr "アイコンの名前"
|
1353 |
|
1354 |
-
#~ msgid "Use contents area default padding"
|
1355 |
-
#~ msgstr "コンテンツエリアの左右に標準の余白を使用"
|
1356 |
-
|
1357 |
#~ msgid "Open url in new window"
|
1358 |
#~ msgstr "リンクを別ウィンドウで開く"
|
1359 |
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Generator: Poedit 2.3\n"
|
13 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
14 |
"X-Poedit-Basepath: .\n"
|
15 |
"X-Poedit-KeywordsList: __\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: src/blocks/_helper/font-awesome.js:22
|
19 |
+
msgid "Font Awesome"
|
20 |
msgstr "Font Awesome:"
|
21 |
|
22 |
+
#: src/blocks/_helper/font-awesome.js:28
|
23 |
+
msgid "Enter Font Awesome Class."
|
24 |
+
msgstr "Font Awesome の class 名を入力してください。"
|
25 |
+
|
26 |
+
#: src/blocks/_helper/font-awesome.js:29
|
27 |
+
msgid "Ex) fas fa-arrow-circle-right"
|
28 |
+
msgstr "例) fas fa-arrow-circle-right"
|
29 |
|
30 |
+
#: src/blocks/_helper/font-awesome.js:31 src/blocks/button/block.js:267
|
31 |
+
#: src/blocks/pr-blocks/block.js:325 src/blocks/pr-content/block.js:202
|
32 |
msgid "Font Awesome icon list"
|
33 |
msgstr "Font Awesome アイコンリスト"
|
34 |
|
36 |
msgid "Card Item"
|
37 |
msgstr "カードアイテム"
|
38 |
|
39 |
+
#: src/blocks/_pro/card-item/block.js:58
|
40 |
msgid "URL"
|
41 |
msgstr "URL"
|
42 |
|
43 |
+
#: src/blocks/_pro/card-item/block.js:63
|
44 |
msgid "https://example.com"
|
45 |
msgstr "https://example.com"
|
46 |
|
47 |
#: src/blocks/_pro/card-item/component.js:103
|
48 |
+
#: src/components/advanced-media-upload/index.js:32
|
49 |
msgid "Delete Image"
|
50 |
msgstr "画像を削除"
|
51 |
|
59 |
msgid "Title"
|
60 |
msgstr "タイトルを入力"
|
61 |
|
62 |
+
#: src/blocks/_pro/card-item/component.js:90 src/blocks/balloon/block.js:114
|
63 |
+
#: src/blocks/flow/block.js:96 src/blocks/pr-blocks/block.js:158
|
64 |
+
#: src/blocks/pr-content/component.js:157
|
65 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:102
|
66 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:116
|
67 |
#: src/blocks/staff/component.js:88
|
68 |
+
#: src/components/advanced-media-upload/index.js:42
|
69 |
msgid "Select image"
|
70 |
msgstr "画像を選択"
|
71 |
|
72 |
+
#: src/blocks/_pro/card/block.js:125
|
73 |
+
#: src/components/display-items-control/index.js:27
|
74 |
msgid "Display item"
|
75 |
msgstr "表示要素"
|
76 |
|
77 |
+
#: src/blocks/_pro/card/block.js:127
|
78 |
+
#: src/components/display-items-control/index.js:29
|
79 |
msgid "Image"
|
80 |
msgstr "画像"
|
81 |
|
82 |
+
#: src/blocks/_pro/card/block.js:132 src/blocks/button/block.js:45
|
83 |
+
#: src/components/display-items-control/index.js:58
|
84 |
msgid "Button"
|
85 |
msgstr "ボタン"
|
86 |
|
87 |
+
#: src/blocks/_pro/card/block.js:137
|
88 |
+
#: src/components/display-items-control/index.js:75
|
89 |
msgid "Button option"
|
90 |
msgstr "ボタンオプション"
|
91 |
|
92 |
+
#: src/blocks/_pro/card/block.js:140
|
93 |
+
#: src/components/display-items-control/index.js:78
|
94 |
msgid ""
|
95 |
"Click each card block to set the target url. You can find the url form at "
|
96 |
"it's sidebar."
|
98 |
"ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォー"
|
99 |
"ムが表示されます。"
|
100 |
|
101 |
+
#: src/blocks/_pro/card/block.js:146
|
102 |
+
#: src/components/display-items-control/index.js:84
|
103 |
msgid "Button text"
|
104 |
msgstr "ボタンの文字"
|
105 |
|
106 |
+
#: src/blocks/_pro/card/block.js:50
|
107 |
+
#: src/components/column-layout-control/index.js:22
|
108 |
msgid "Card"
|
109 |
msgstr "カード"
|
110 |
|
111 |
+
#: src/blocks/_pro/child-page/block.js:127
|
112 |
msgid "Exsist Already Page"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: src/blocks/_pro/child-page/block.js:144
|
116 |
msgid "Current Page"
|
117 |
msgstr "現在のページ"
|
118 |
|
119 |
+
#: src/blocks/_pro/child-page/block.js:45
|
120 |
msgid "Child page list"
|
121 |
msgstr "子ページリスト"
|
122 |
|
123 |
+
#: src/blocks/_pro/child-page/block.js:68
|
124 |
+
#: src/blocks/_pro/post-list/block.js:109
|
125 |
msgid "Display conditions"
|
126 |
msgstr "表示条件"
|
127 |
|
128 |
+
#: src/blocks/_pro/child-page/block.js:71
|
129 |
msgid "Parent"
|
130 |
msgstr "親ページ"
|
131 |
|
132 |
+
#: src/blocks/_pro/child-page/block.js:82
|
133 |
+
#: src/blocks/_pro/post-list/block.js:159
|
134 |
+
msgid "Ignore this post"
|
135 |
+
msgstr "表示中の投稿をリストから除外する"
|
136 |
+
|
137 |
+
#: src/blocks/_pro/grid-column-item/block.js:18
|
138 |
+
msgid "Grid Column Item"
|
139 |
+
msgstr "グリッドカラムアイテム"
|
140 |
+
|
141 |
+
#: src/blocks/_pro/grid-column/block.js:40
|
142 |
+
msgid "Grid Column"
|
143 |
+
msgstr "グリッドカラム"
|
144 |
+
|
145 |
+
#: src/blocks/_pro/grid-column/block.js:84
|
146 |
+
msgid "Layout Columns"
|
147 |
+
msgstr "カラムレイアウト"
|
148 |
+
|
149 |
+
#: src/blocks/_pro/outer/block.js:101
|
150 |
msgid "Background Setting"
|
151 |
msgstr "背景設定"
|
152 |
|
153 |
+
#: src/blocks/_pro/outer/block.js:105 src/blocks/pr-content/block.js:119
|
154 |
msgid "Color Setting"
|
155 |
msgstr "色設定"
|
156 |
|
157 |
+
#: src/blocks/_pro/outer/block.js:106
|
158 |
msgid ""
|
159 |
"Color will overcome background image. If you want to display image, clear "
|
160 |
"background color or set opacity 0."
|
162 |
"色を指定すると画像よりも優先されます。画像を表示したい場合は、背景色をクリア"
|
163 |
"するか、不透明度を0に設定します。"
|
164 |
|
165 |
+
#: src/blocks/_pro/outer/block.js:116
|
166 |
msgid "Opacity Setting"
|
167 |
msgstr "透過設定"
|
168 |
|
169 |
+
#: src/blocks/_pro/outer/block.js:128
|
170 |
+
msgid "Background Image PC"
|
171 |
+
msgstr "背景画像 ( PC )"
|
172 |
+
|
173 |
+
#: src/blocks/_pro/outer/block.js:136
|
174 |
+
msgid "Background Image Tablet"
|
175 |
+
msgstr "背景画像 ( タブレット )"
|
176 |
|
177 |
+
#: src/blocks/_pro/outer/block.js:142
|
178 |
+
msgid "Background Image Mobile"
|
179 |
+
msgstr "背景画像背景画像 ( モバイル )"
|
180 |
+
|
181 |
+
#: src/blocks/_pro/outer/block.js:148
|
182 |
msgid "Background image Position"
|
183 |
msgstr "背景画像の位置"
|
184 |
|
185 |
+
#: src/blocks/_pro/outer/block.js:154
|
186 |
msgid "normal"
|
187 |
msgstr "標準"
|
188 |
|
189 |
+
#: src/blocks/_pro/outer/block.js:155
|
190 |
+
msgid "Fixed (Not fixed on iPhone)"
|
191 |
+
msgstr "固定(iPhoneでは固定されません)"
|
192 |
|
193 |
+
#: src/blocks/_pro/outer/block.js:157
|
194 |
+
msgid "Parallax (Non-guaranteed)"
|
195 |
+
msgstr "パララックス(非保証)"
|
196 |
|
197 |
+
#: src/blocks/_pro/outer/block.js:170 src/blocks/pr-content/block.js:233
|
198 |
msgid "Layout Setting"
|
199 |
msgstr "レイアウト設定"
|
200 |
|
201 |
+
#: src/blocks/_pro/outer/block.js:173
|
202 |
+
msgid "Width"
|
203 |
+
msgstr "幅"
|
204 |
|
205 |
+
#: src/blocks/_pro/outer/block.js:182 src/blocks/button/block.js:156
|
206 |
msgid "Normal"
|
207 |
msgstr "標準"
|
208 |
|
209 |
+
#: src/blocks/_pro/outer/block.js:190
|
210 |
msgid "Full Wide"
|
211 |
msgstr "全幅"
|
212 |
|
213 |
+
#: src/blocks/_pro/outer/block.js:195
|
214 |
+
msgid "Padding (Left and Right)"
|
215 |
+
msgstr "余白 (左右)"
|
216 |
|
217 |
+
#: src/blocks/_pro/outer/block.js:202
|
218 |
+
msgid "Fit to the Content area"
|
219 |
+
msgstr "コンテンツエリアに合わせる"
|
220 |
|
221 |
+
#: src/blocks/_pro/outer/block.js:206
|
222 |
+
msgid "Add padding to the Outer area"
|
223 |
+
msgstr "アウターエリア内に余白を追加する"
|
224 |
|
225 |
+
#: src/blocks/_pro/outer/block.js:215
|
226 |
+
msgid "Padding (Top and Bottom)"
|
227 |
msgstr "余白 (上下)"
|
228 |
|
229 |
#: src/blocks/_pro/outer/block.js:219
|
231 |
msgstr "標準の余白を使用"
|
232 |
|
233 |
#: src/blocks/_pro/outer/block.js:221
|
234 |
+
msgid "Do not use default padding"
|
235 |
+
msgstr "標準の余白を使用しない"
|
236 |
+
|
237 |
+
#: src/blocks/_pro/outer/block.js:232
|
238 |
+
msgid ""
|
239 |
+
"* If you select \"Do not use\" that, please set yourself it such as a spacer "
|
240 |
+
"block."
|
241 |
+
msgstr ""
|
242 |
+
"*「使用しない」を選択した場合はスペーサーブロックなどで任意に設定してくださ"
|
243 |
+
"い。"
|
244 |
|
245 |
+
#: src/blocks/_pro/outer/block.js:236
|
246 |
msgid "Divider Setting"
|
247 |
msgstr "区切りの設定"
|
248 |
|
249 |
+
#: src/blocks/_pro/outer/block.js:241 src/blocks/balloon/block.js:81
|
250 |
msgid "Type"
|
251 |
msgstr "タイプ"
|
252 |
|
253 |
+
#: src/blocks/_pro/outer/block.js:247
|
254 |
msgid "Tilt"
|
255 |
msgstr "傾斜"
|
256 |
|
257 |
+
#: src/blocks/_pro/outer/block.js:251
|
258 |
msgid "Curve"
|
259 |
msgstr "カーブ"
|
260 |
|
261 |
+
#: src/blocks/_pro/outer/block.js:255
|
262 |
msgid "Wave"
|
263 |
msgstr "波状"
|
264 |
|
265 |
+
#: src/blocks/_pro/outer/block.js:259 src/blocks/list-style/block.js:113
|
266 |
msgid "Triangle"
|
267 |
msgstr "三角"
|
268 |
|
269 |
+
#: src/blocks/_pro/outer/block.js:264
|
270 |
msgid "Upper Divider Level"
|
271 |
msgstr "上部区切りレベル"
|
272 |
|
273 |
+
#: src/blocks/_pro/outer/block.js:282
|
274 |
msgid "Lower Divider Level"
|
275 |
msgstr "下部区切りレベル"
|
276 |
|
277 |
+
#: src/blocks/_pro/outer/block.js:302
|
278 |
msgid "Border Setting"
|
279 |
msgstr "枠線の設定"
|
280 |
|
281 |
+
#: src/blocks/_pro/outer/block.js:307
|
282 |
msgid "Border will disappear when divider effect is applied."
|
283 |
msgstr "枠線は区切りレベルを適用すると表示されなくなります。"
|
284 |
|
285 |
+
#: src/blocks/_pro/outer/block.js:313
|
286 |
msgid "Border type"
|
287 |
msgstr "枠線の種類"
|
288 |
|
289 |
+
#: src/blocks/_pro/outer/block.js:319 src/blocks/_pro/step-item/block.js:98
|
290 |
+
#: src/blocks/_pro/timeline-item/block.js:103 src/blocks/staff/block.js:88
|
291 |
msgid "None"
|
292 |
msgstr "なし"
|
293 |
|
294 |
+
#: src/blocks/_pro/outer/block.js:323 src/blocks/_pro/step-item/block.js:75
|
295 |
#: src/blocks/_pro/timeline-item/block.js:84 src/blocks/group-style/block.js:95
|
296 |
#: src/blocks/pr-content/block.js:168
|
297 |
msgid "Solid"
|
298 |
msgstr "直線"
|
299 |
|
300 |
+
#: src/blocks/_pro/outer/block.js:327 src/blocks/group-style/block.js:103
|
301 |
msgid "Dotted"
|
302 |
msgstr "点線"
|
303 |
|
304 |
+
#: src/blocks/_pro/outer/block.js:331 src/blocks/group-style/block.js:107
|
305 |
msgid "Dashed"
|
306 |
msgstr "Dashed"
|
307 |
|
308 |
+
#: src/blocks/_pro/outer/block.js:335 src/blocks/group-style/block.js:111
|
309 |
msgid "Double"
|
310 |
msgstr "二重線"
|
311 |
|
312 |
+
#: src/blocks/_pro/outer/block.js:339
|
313 |
msgid "Groove"
|
314 |
msgstr "Groove"
|
315 |
|
316 |
+
#: src/blocks/_pro/outer/block.js:343
|
317 |
msgid "Ridge"
|
318 |
msgstr "Ridge"
|
319 |
|
320 |
+
#: src/blocks/_pro/outer/block.js:347
|
321 |
msgid "Inset"
|
322 |
msgstr "Inset"
|
323 |
|
324 |
+
#: src/blocks/_pro/outer/block.js:351
|
325 |
msgid "Outset"
|
326 |
msgstr "Outset"
|
327 |
|
328 |
+
#: src/blocks/_pro/outer/block.js:362
|
329 |
msgid "Border width"
|
330 |
msgstr "枠線の幅"
|
331 |
|
332 |
+
#: src/blocks/_pro/outer/block.js:369
|
333 |
msgid "Border radius"
|
334 |
msgstr "枠線のRの大きさ"
|
335 |
|
336 |
+
#: src/blocks/_pro/outer/block.js:52
|
337 |
msgid "Outer"
|
338 |
msgstr "Outer"
|
339 |
|
340 |
+
#: src/blocks/_pro/post-list/block.js:112
|
341 |
msgid "Filter by PostTypes"
|
342 |
msgstr "投稿タイプ"
|
343 |
|
344 |
+
#: src/blocks/_pro/post-list/block.js:120
|
345 |
msgid "Filter by Taxonomy Terms"
|
346 |
msgstr "分類"
|
347 |
|
348 |
+
#: src/blocks/_pro/post-list/block.js:128
|
349 |
msgid "Number of Posts"
|
350 |
msgstr "表示件数"
|
351 |
|
352 |
+
#: src/blocks/_pro/post-list/block.js:136
|
353 |
msgid "Order by"
|
354 |
msgstr "表示順"
|
355 |
|
356 |
+
#: src/blocks/_pro/post-list/block.js:142
|
357 |
msgid "Published Date"
|
358 |
msgstr "公開日"
|
359 |
|
360 |
+
#: src/blocks/_pro/post-list/block.js:143
|
361 |
msgid "Modefied Date"
|
362 |
msgstr "更新日"
|
363 |
|
364 |
+
#: src/blocks/_pro/post-list/block.js:144
|
365 |
msgid "Random"
|
366 |
msgstr "ランダム"
|
367 |
|
368 |
+
#: src/blocks/_pro/post-list/block.js:149
|
369 |
msgid "offset"
|
370 |
msgstr "オフセット数"
|
371 |
|
372 |
+
#: src/blocks/_pro/post-list/block.js:71
|
|
|
|
|
|
|
|
|
373 |
msgid "Post list"
|
374 |
msgstr "投稿リスト"
|
375 |
|
376 |
+
#: src/blocks/_pro/step-item/block.js:19
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
msgid "Step Item"
|
378 |
msgstr "ステップ要素"
|
379 |
|
380 |
+
#: src/blocks/_pro/step-item/block.js:36
|
381 |
msgid "Step Mark"
|
382 |
msgstr "ステップマーク"
|
383 |
|
384 |
+
#: src/blocks/_pro/step-item/block.js:39
|
385 |
msgid "If FontAwesome class entered, it will overrides the number."
|
386 |
msgstr "Font Awesome の class 名が入力されている場合は数字は上書きされます。"
|
387 |
|
388 |
+
#: src/blocks/_pro/step-item/block.js:53
|
389 |
#: src/blocks/_pro/timeline-item/block.js:60
|
390 |
msgid "Ex,6:00AM"
|
391 |
msgstr "例) 午前 6:00"
|
392 |
|
393 |
+
#: src/blocks/_pro/step-item/block.js:58
|
394 |
+
#: src/blocks/_pro/timeline-item/block.js:63 src/blocks/border-box/block.js:85
|
395 |
+
#: src/blocks/staff/block.js:103
|
396 |
msgid "Color"
|
397 |
msgstr "色"
|
398 |
|
399 |
+
#: src/blocks/_pro/step-item/block.js:64
|
400 |
+
#: src/blocks/_pro/table-of-contents-new/block.js:49
|
401 |
+
#: src/blocks/_pro/table-of-contents/block.js:47
|
402 |
#: src/blocks/_pro/timeline-item/block.js:69
|
403 |
msgid "Style"
|
404 |
msgstr "スタイル"
|
405 |
|
406 |
+
#: src/blocks/_pro/step-item/block.js:79
|
407 |
+
#: src/blocks/_pro/timeline-item/block.js:80
|
408 |
+
msgid "Outlined"
|
409 |
+
msgstr "アウトライン"
|
410 |
|
411 |
+
#: src/blocks/_pro/step-item/block.js:94
|
412 |
+
#: src/blocks/_pro/table-of-contents-new/block.js:56
|
413 |
+
#: src/blocks/_pro/table-of-contents/block.js:54
|
414 |
+
#: src/blocks/_pro/timeline-item/block.js:99
|
415 |
+
#: src/blocks/heading-style/block.js:33 src/blocks/heading/block.js:131
|
416 |
+
#: src/blocks/list-style/block.js:104 src/blocks/staff/block.js:84
|
417 |
+
msgid "Default"
|
418 |
+
msgstr "標準"
|
419 |
+
|
420 |
+
#: src/blocks/_pro/step/block.js:54
|
421 |
msgid "Step"
|
422 |
msgstr "ステップ"
|
423 |
|
424 |
+
#: src/blocks/_pro/step/block.js:97
|
425 |
+
msgid "First Dot Number"
|
426 |
+
msgstr "ステップの開始番号"
|
427 |
+
|
428 |
+
#: src/blocks/_pro/table-of-contents-new/TocBody.js:12
|
429 |
+
#: src/blocks/_pro/table-of-contents-new/block.js:34
|
430 |
+
#: src/blocks/_pro/table-of-contents/block.js:33
|
431 |
+
#: src/blocks/_pro/table-of-contents/toc-utils.js:180
|
432 |
msgid "Table of Contents"
|
433 |
msgstr "目次"
|
434 |
|
435 |
+
#: src/blocks/_pro/table-of-contents-new/block.js:60
|
436 |
+
#: src/blocks/_pro/table-of-contents/block.js:58
|
437 |
msgid "No frame"
|
438 |
msgstr "枠無し"
|
439 |
|
440 |
+
#: src/blocks/_pro/table-of-contents-new/block.js:65
|
441 |
+
#: src/blocks/_pro/table-of-contents/block.js:63
|
442 |
msgid "Default Display Status"
|
443 |
msgstr "初期表示状態"
|
444 |
|
445 |
+
#: src/blocks/_pro/table-of-contents-new/block.js:72
|
446 |
+
#: src/blocks/_pro/table-of-contents/block.js:70
|
447 |
msgid "OPEN"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: src/blocks/_pro/table-of-contents-new/block.js:76
|
451 |
+
#: src/blocks/_pro/table-of-contents/block.js:74
|
452 |
msgid "CLOSE"
|
453 |
msgstr ""
|
454 |
|
460 |
msgid "label"
|
461 |
msgstr "ラベル"
|
462 |
|
463 |
+
#: src/blocks/_pro/timeline/block.js:56
|
464 |
msgid "Timeline"
|
465 |
msgstr "タイムライン"
|
466 |
|
467 |
+
#: src/blocks/alert/block.js:17
|
468 |
msgid "Alert"
|
469 |
msgstr "アラート"
|
470 |
|
471 |
+
#: src/blocks/alert/block.js:48 src/blocks/heading/block.js:125
|
472 |
+
msgid "Style Settings"
|
473 |
+
msgstr "スタイル設定"
|
474 |
|
475 |
+
#: src/blocks/alert/block.js:53 src/blocks/button/block.js:247
|
476 |
+
#: src/blocks/pr-content/block.js:180
|
477 |
+
msgid "Success"
|
478 |
+
msgstr "Success"
|
479 |
|
480 |
+
#: src/blocks/alert/block.js:54 src/blocks/button/block.js:248
|
481 |
+
#: src/blocks/pr-content/block.js:181
|
482 |
+
msgid "Info"
|
483 |
+
msgstr "Info"
|
484 |
+
|
485 |
+
#: src/blocks/alert/block.js:55 src/blocks/button/block.js:249
|
486 |
+
#: src/blocks/pr-content/block.js:182
|
487 |
+
msgid "Warning"
|
488 |
+
msgstr "Warning"
|
489 |
|
490 |
+
#: src/blocks/alert/block.js:56 src/blocks/button/block.js:250
|
491 |
+
#: src/blocks/pr-content/block.js:183
|
492 |
+
msgid "Danger"
|
493 |
+
msgstr "Danger"
|
494 |
+
|
495 |
+
#: src/blocks/balloon/block.js:119 src/blocks/flow/block.js:97
|
496 |
+
#: src/blocks/pr-blocks/block.js:154 src/blocks/pr-content/component.js:164
|
497 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:106
|
498 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:120
|
499 |
msgid "Upload image"
|
500 |
msgstr "画像をアップロード"
|
501 |
|
502 |
+
#: src/blocks/balloon/block.js:130
|
503 |
msgid "Icon Name"
|
504 |
msgstr "アイコンの名前"
|
505 |
|
506 |
+
#: src/blocks/balloon/block.js:139 src/blocks/button/block.js:299
|
507 |
msgid "Input text"
|
508 |
msgstr "文字を入力"
|
509 |
|
510 |
+
#: src/blocks/balloon/block.js:24
|
511 |
msgid "Ballon"
|
512 |
msgstr "フキダシ"
|
513 |
|
514 |
+
#: src/blocks/balloon/block.js:66
|
515 |
msgid "Balloon setting"
|
516 |
msgstr "フキダシ設定"
|
517 |
|
518 |
+
#: src/blocks/balloon/block.js:68 src/blocks/heading/block.js:188
|
519 |
msgid "Position"
|
520 |
msgstr "位置"
|
521 |
|
522 |
+
#: src/blocks/balloon/block.js:69
|
523 |
msgid "Please specify the layout of the balloon."
|
524 |
msgstr "吹き出しの配置を指定してください。"
|
525 |
|
526 |
+
#: src/blocks/balloon/block.js:75 src/blocks/button/block.js:176
|
527 |
#: src/blocks/pr-content/block.js:241
|
528 |
+
#: src/components/display-items-control/index.js:95
|
529 |
msgid "Left"
|
530 |
msgstr "左"
|
531 |
|
532 |
+
#: src/blocks/balloon/block.js:76 src/blocks/button/block.js:192
|
533 |
#: src/blocks/pr-content/block.js:240
|
534 |
+
#: src/components/display-items-control/index.js:103
|
535 |
msgid "Right"
|
536 |
msgstr "右"
|
537 |
|
538 |
+
#: src/blocks/balloon/block.js:82
|
539 |
+
msgid "Please select the type of balloon."
|
540 |
+
msgstr "吹き出しのタイプを指定してください。"
|
541 |
+
|
542 |
+
#: src/blocks/balloon/block.js:85
|
543 |
+
msgid "Serif"
|
544 |
+
msgstr "セリフ"
|
545 |
+
|
546 |
+
#: src/blocks/balloon/block.js:86
|
547 |
+
msgid "Thinking"
|
548 |
+
msgstr "吹き出し"
|
549 |
+
|
550 |
+
#: src/blocks/border-box/Body.js:20
|
551 |
+
msgid "Please enter a title."
|
552 |
+
msgstr "見出しを入力してください。"
|
553 |
+
|
554 |
+
#: src/blocks/border-box/block.js:100
|
555 |
+
msgid "Blue"
|
556 |
+
msgstr "青"
|
557 |
+
|
558 |
+
#: src/blocks/border-box/block.js:104
|
559 |
+
msgid "Green"
|
560 |
+
msgstr "緑"
|
561 |
+
|
562 |
+
#: src/blocks/border-box/block.js:108
|
563 |
+
msgid "Black"
|
564 |
+
msgstr "黒"
|
565 |
+
|
566 |
+
#: src/blocks/border-box/block.js:113
|
567 |
+
msgid "Icon"
|
568 |
+
msgstr "アイコン"
|
569 |
+
|
570 |
+
#: src/blocks/border-box/block.js:44
|
571 |
+
msgid "Border Box"
|
572 |
+
msgstr "枠線ボックス"
|
573 |
+
|
574 |
+
#: src/blocks/border-box/block.js:54
|
575 |
+
msgid "Solid Angle Tab"
|
576 |
+
msgstr "直線 ピン角 タブ"
|
577 |
+
|
578 |
+
#: src/blocks/border-box/block.js:59
|
579 |
+
msgid "Solid Round Tab"
|
580 |
+
msgstr "直線 角丸 タブ"
|
581 |
+
|
582 |
+
#: src/blocks/border-box/block.js:63
|
583 |
+
msgid "Solid Angle Banner"
|
584 |
+
msgstr "直線 ピン角 バナー"
|
585 |
+
|
586 |
+
#: src/blocks/border-box/block.js:67
|
587 |
+
msgid "Solid Angle Onborder"
|
588 |
+
msgstr "直線 ピンカド 線上"
|
589 |
+
|
590 |
+
#: src/blocks/border-box/block.js:71
|
591 |
+
msgid "Solid Angle Inner"
|
592 |
+
msgstr "直線 ピン角 内側"
|
593 |
+
|
594 |
+
#: src/blocks/border-box/block.js:75
|
595 |
+
msgid "Solid Angle iconFeature"
|
596 |
+
msgstr "直線 ピン角 アイコン"
|
597 |
+
|
598 |
+
#: src/blocks/border-box/block.js:92
|
599 |
+
msgid "Red"
|
600 |
+
msgstr "赤"
|
601 |
+
|
602 |
+
#: src/blocks/border-box/block.js:96
|
603 |
+
msgid "Orange"
|
604 |
+
msgstr "オレンジ"
|
605 |
+
|
606 |
+
#: src/blocks/button/block.js:127
|
607 |
msgid "Button setting"
|
608 |
msgstr "ボタン設定"
|
609 |
|
610 |
+
#: src/blocks/button/block.js:129
|
611 |
msgid "Sub Caption"
|
612 |
msgstr "サブテキスト"
|
613 |
|
614 |
+
#: src/blocks/button/block.js:135 src/blocks/pr-blocks/block.js:311
|
615 |
#: src/blocks/pr-content/block.js:160
|
616 |
msgid "Open link new tab."
|
617 |
msgstr "リンクを別ウィンドウで開く"
|
618 |
|
619 |
+
#: src/blocks/button/block.js:140
|
620 |
msgid "Button Size:"
|
621 |
msgstr "ボタンサイズ:"
|
622 |
|
623 |
+
#: src/blocks/button/block.js:148
|
624 |
msgid "Large"
|
625 |
msgstr "大"
|
626 |
|
627 |
+
#: src/blocks/button/block.js:164
|
628 |
msgid "Small"
|
629 |
msgstr "小"
|
630 |
|
631 |
+
#: src/blocks/button/block.js:168
|
632 |
msgid "Button Position:"
|
633 |
msgstr "ボタンの位置:"
|
634 |
|
635 |
+
#: src/blocks/button/block.js:184
|
636 |
+
#: src/components/display-items-control/index.js:99
|
637 |
msgid "Center"
|
638 |
msgstr "中央"
|
639 |
|
640 |
+
#: src/blocks/button/block.js:200
|
641 |
msgid "Wide"
|
642 |
msgstr "幅広"
|
643 |
|
644 |
+
#: src/blocks/button/block.js:208
|
645 |
msgid "Block"
|
646 |
msgstr "全幅"
|
647 |
|
648 |
+
#: src/blocks/button/block.js:212
|
649 |
msgid "Button Style:"
|
650 |
msgstr "ボタンスタイル:"
|
651 |
|
652 |
+
#: src/blocks/button/block.js:220 src/blocks/pr-blocks/block.js:342
|
653 |
msgid "Solid color"
|
654 |
msgstr "ベタ塗り"
|
655 |
|
656 |
+
#: src/blocks/button/block.js:228 src/blocks/pr-blocks/block.js:343
|
657 |
msgid "No background"
|
658 |
msgstr "背景なし"
|
659 |
|
660 |
+
#: src/blocks/button/block.js:236
|
661 |
msgid "Text only"
|
662 |
msgstr "テキストのみ"
|
663 |
|
664 |
+
#: src/blocks/button/block.js:239
|
665 |
msgid ""
|
666 |
"If you select \"No background\", that you need to select a Custom Color."
|
667 |
msgstr "もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"
|
668 |
|
669 |
+
#: src/blocks/button/block.js:242 src/blocks/pr-content/block.js:175
|
670 |
msgid "Default Color:"
|
671 |
msgstr "標準色:"
|
672 |
|
673 |
+
#: src/blocks/button/block.js:245 src/blocks/pr-content/block.js:178
|
674 |
msgid "Primary"
|
675 |
msgstr "Primary"
|
676 |
|
677 |
+
#: src/blocks/button/block.js:246 src/blocks/pr-content/block.js:179
|
678 |
msgid "Secondary"
|
679 |
msgstr "Secondary"
|
680 |
|
681 |
+
#: src/blocks/button/block.js:251 src/blocks/pr-content/block.js:184
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
msgid "Light"
|
683 |
msgstr "Light"
|
684 |
|
685 |
+
#: src/blocks/button/block.js:252 src/blocks/pr-content/block.js:185
|
686 |
msgid "Dark"
|
687 |
msgstr "Dark"
|
688 |
|
689 |
+
#: src/blocks/button/block.js:257
|
690 |
msgid "Custom Color"
|
691 |
msgstr "カスタムカラー"
|
692 |
|
693 |
+
#: src/blocks/button/block.js:258
|
694 |
msgid ""
|
695 |
"This custom color overrides the default color. If you want to use the "
|
696 |
"default color, click the clear button."
|
698 |
"このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用し"
|
699 |
"たい場合は、クリアボタンをクリックしてください。"
|
700 |
|
701 |
+
#: src/blocks/button/block.js:266 src/blocks/pr-content/block.js:196
|
702 |
msgid "Font Awesome:"
|
703 |
msgstr "Font Awesome:"
|
704 |
|
705 |
+
#: src/blocks/button/block.js:270 src/blocks/pr-content/block.js:207
|
706 |
msgid "Before text"
|
707 |
msgstr "文字の前"
|
708 |
|
709 |
+
#: src/blocks/button/block.js:271 src/blocks/pr-content/block.js:208
|
710 |
msgid ""
|
711 |
"Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-"
|
712 |
"circle-right"
|
714 |
"Font Awesome の class 名を入力してください。このアイコンは文字の前に表示され"
|
715 |
"ます。 例) fas fa-arrow-circle-right"
|
716 |
|
717 |
+
#: src/blocks/button/block.js:277 src/blocks/pr-content/block.js:219
|
718 |
msgid "After text"
|
719 |
msgstr "文字の後"
|
720 |
|
721 |
+
#: src/blocks/button/block.js:278 src/blocks/pr-content/block.js:220
|
722 |
msgid ""
|
723 |
"Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-"
|
724 |
"external-link-alt"
|
726 |
"Font Awesome の class 名を入力してください。このアイコンは文字の後に表示され"
|
727 |
"ます。 例) fas fa-external-link-alt"
|
728 |
|
729 |
+
#: src/blocks/button/block.js:313
|
730 |
msgid "Apply"
|
731 |
msgstr ""
|
732 |
|
742 |
msgid "Please enter a question."
|
743 |
msgstr "質問を入力してください。"
|
744 |
|
745 |
+
#: src/blocks/flow/block.js:16
|
746 |
msgid "Flow"
|
747 |
msgstr "フロー"
|
748 |
|
749 |
+
#: src/blocks/flow/block.js:51
|
750 |
msgid "Display of arrow"
|
751 |
msgstr "矢印の表示"
|
752 |
|
753 |
+
#: src/blocks/flow/block.js:55
|
754 |
msgid "Arrow display"
|
755 |
msgstr "矢印を表示する"
|
756 |
|
757 |
+
#: src/blocks/flow/block.js:56
|
758 |
msgid "Arrow hidden"
|
759 |
msgstr "矢印を表示しない"
|
760 |
|
761 |
+
#: src/blocks/flow/block.js:74
|
762 |
msgid "Input title"
|
763 |
msgstr "タイトルを入力"
|
764 |
|
765 |
+
#: src/blocks/flow/block.js:82
|
766 |
msgid "Input content"
|
767 |
msgstr "説明を入力"
|
768 |
|
798 |
msgid "Brackets black"
|
799 |
msgstr "括弧 黒"
|
800 |
|
801 |
+
#: src/blocks/heading-style/block.js:38 src/blocks/heading/block.js:132
|
802 |
msgid "Plain"
|
803 |
msgstr "装飾無し"
|
804 |
|
822 |
msgid "Solid border bottom black"
|
823 |
msgstr "直線 下線 黒"
|
824 |
|
825 |
+
#: src/blocks/heading/block.js:127
|
|
|
|
|
|
|
|
|
826 |
msgid "Heading style"
|
827 |
msgstr "見出しスタイル"
|
828 |
|
829 |
+
#: src/blocks/heading/block.js:135
|
830 |
msgid "Margin bottom size (rem)"
|
831 |
msgstr "下部の余白"
|
832 |
|
833 |
+
#: src/blocks/heading/block.js:146
|
834 |
msgid "Heading Settings"
|
835 |
msgstr "見出し設定"
|
836 |
|
837 |
+
#: src/blocks/heading/block.js:147
|
838 |
msgid "Level"
|
839 |
msgstr "レベル"
|
840 |
|
841 |
+
#: src/blocks/heading/block.js:154
|
842 |
msgid "Text Alignment"
|
843 |
msgstr "テキストの水平位置"
|
844 |
|
845 |
+
#: src/blocks/heading/block.js:171
|
846 |
msgid "Heading margin bottom size (rem)"
|
847 |
msgstr "見出し下部の余白 (rem)"
|
848 |
|
849 |
+
#: src/blocks/heading/block.js:186
|
850 |
msgid "Sub Text Settings"
|
851 |
msgstr "サブテキスト設定"
|
852 |
|
853 |
+
#: src/blocks/heading/block.js:191
|
854 |
msgid "Display"
|
855 |
msgstr "表示"
|
856 |
|
857 |
+
#: src/blocks/heading/block.js:192
|
858 |
msgid "Hide"
|
859 |
msgstr "非表示"
|
860 |
|
861 |
+
#: src/blocks/heading/block.js:196
|
862 |
msgid "Text size (rem)"
|
863 |
msgstr "文字サイズ (rem)"
|
864 |
|
865 |
+
#: src/blocks/heading/block.js:64
|
866 |
msgid "Heading"
|
867 |
msgstr "見出し"
|
868 |
|
869 |
+
#: src/blocks/heading/component.js:108
|
870 |
+
#: src/blocks/heading/deprecated/block.js:663
|
871 |
+
#: src/blocks/heading/deprecated/component.js:108
|
872 |
msgid "Input sub text…"
|
873 |
msgstr "サブテキストを入力"
|
874 |
|
875 |
+
#: src/blocks/heading/component.js:92
|
876 |
+
#: src/blocks/heading/deprecated/block.js:647
|
877 |
+
#: src/blocks/heading/deprecated/component.js:92
|
878 |
msgid "Input title…"
|
879 |
msgstr "タイトルを入力"
|
880 |
|
881 |
# %s: heading level e.g: "1", "2", "3"
|
882 |
#. %s: heading level e.g: "1", "2", "3"
|
883 |
+
#: src/blocks/heading/heading-toolbar.js:16
|
884 |
msgid "Heading %d"
|
885 |
msgstr "見出し %d"
|
886 |
|
887 |
+
#: src/blocks/hidden-extension/index.js:101
|
888 |
+
msgid "Hidden at screel size"
|
889 |
+
msgstr "非表示にする画面サイズ"
|
890 |
+
|
891 |
+
#: src/blocks/hidden-extension/index.js:103
|
892 |
+
msgid ""
|
893 |
+
"Note : This function is display hidden only. Actually Block is output to "
|
894 |
+
"HTML.Pleade don't use you must not bisible item.Don't use it for blocks you "
|
895 |
+
"really don't want to display."
|
896 |
+
msgstr ""
|
897 |
+
"注意 : この機能はあくまでHTMLに出力される要素を非表示にするだけです。本当に見"
|
898 |
+
"せてはいけない要素には使わないでください。"
|
899 |
+
|
900 |
+
#: src/blocks/hidden-extension/index.js:109
|
901 |
msgid "Hidden ( Screen size : all )"
|
902 |
msgstr "非表示 ( 画面サイズ : all )"
|
903 |
|
904 |
+
#: src/blocks/hidden-extension/index.js:115
|
905 |
msgid "Hidden ( Screen size : xs )"
|
906 |
msgstr "非表示 ( 画面サイズ : xs )"
|
907 |
|
908 |
+
#: src/blocks/hidden-extension/index.js:121
|
909 |
msgid "Hidden ( Screen size : sm )"
|
910 |
msgstr "非表示 ( 画面サイズ : sm )"
|
911 |
|
912 |
+
#: src/blocks/hidden-extension/index.js:127
|
913 |
msgid "Hidden ( Screen size : md )"
|
914 |
msgstr "非表示 ( 画面サイズ : md )"
|
915 |
|
916 |
+
#: src/blocks/hidden-extension/index.js:133
|
917 |
msgid "Hidden ( Screen size : lg )"
|
918 |
msgstr "非表示 ( 画面サイズ : lg )"
|
919 |
|
920 |
+
#: src/blocks/hidden-extension/index.js:139
|
921 |
msgid "Hidden ( Screen size : xl )"
|
922 |
msgstr "非表示 ( 画面サイズ : xl )"
|
923 |
|
924 |
+
#: src/blocks/hidden-extension/index.js:145
|
925 |
msgid ""
|
926 |
"If you want to hide multiple blocks, that first you set to group block and "
|
927 |
"the next, hide for the that group block."
|
929 |
"複数のブロックを非表示にする場合は、最初にグループブロックに設定し、そのグ"
|
930 |
"ループブロックに対して非表示にします。"
|
931 |
|
932 |
+
#: src/blocks/hidden-extension/index.js:98
|
933 |
msgid "Hidden Settings"
|
934 |
msgstr "非表示設定"
|
935 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
936 |
#: src/blocks/highlighter/block.js:81
|
937 |
msgid "Highlight Color"
|
938 |
msgstr "ハイライトカラー"
|
993 |
msgid "List Icon Color"
|
994 |
msgstr "リストアイコンの色"
|
995 |
|
996 |
+
#: src/blocks/pr-blocks/block.js:169
|
997 |
msgid "PR Block1 Setting"
|
998 |
msgstr "PR Block1 設定"
|
999 |
|
1000 |
+
#: src/blocks/pr-blocks/block.js:184
|
1001 |
msgid "Icon 1"
|
1002 |
msgstr "アイコン 1"
|
1003 |
|
1004 |
+
#: src/blocks/pr-blocks/block.js:218
|
|
|
|
|
|
|
|
|
1005 |
msgid "When you have an image. Image is displayed with priority"
|
1006 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
1007 |
|
1008 |
+
#: src/blocks/pr-blocks/block.js:220
|
1009 |
+
msgid "PR Image 1"
|
1010 |
+
msgstr "PR 画像 1"
|
1011 |
+
|
1012 |
+
#: src/blocks/pr-blocks/block.js:236
|
1013 |
msgid "PR Block2 Setting"
|
1014 |
msgstr "PR Block2 設定"
|
1015 |
|
1016 |
+
#: src/blocks/pr-blocks/block.js:251
|
1017 |
msgid "Icon 2"
|
1018 |
msgstr "アイコン 2"
|
1019 |
|
1020 |
+
#: src/blocks/pr-blocks/block.js:286
|
1021 |
msgid "PR Image 2"
|
1022 |
msgstr "PR 画像 2"
|
1023 |
|
1024 |
+
#: src/blocks/pr-blocks/block.js:302
|
1025 |
msgid "PR Block3 Setting"
|
1026 |
msgstr "PR Block3 設定"
|
1027 |
|
1028 |
+
#: src/blocks/pr-blocks/block.js:304
|
1029 |
msgid "Link URL:"
|
1030 |
msgstr "リンクURL:"
|
1031 |
|
1032 |
+
#: src/blocks/pr-blocks/block.js:317
|
1033 |
msgid "Icon 3"
|
1034 |
msgstr "アイコン 3"
|
1035 |
|
1036 |
+
#: src/blocks/pr-blocks/block.js:320
|
1037 |
msgid "Class name of the Font Awesome icon font you want to use:"
|
1038 |
msgstr "アイコンを使う場合は Font Awesome のアイコンのclass名:"
|
1039 |
|
1040 |
+
#: src/blocks/pr-blocks/block.js:339
|
1041 |
msgid "Icon Background:"
|
1042 |
msgstr "アイコン背景:"
|
1043 |
|
1044 |
+
#: src/blocks/pr-blocks/block.js:350
|
|
|
|
|
|
|
|
|
1045 |
msgid "When you have an image. Image is displayed with priority."
|
1046 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
1047 |
|
1048 |
+
#: src/blocks/pr-blocks/block.js:352
|
1049 |
+
msgid "PR Image 3"
|
1050 |
+
msgstr "PR 画像 3"
|
1051 |
+
|
1052 |
+
#: src/blocks/pr-blocks/block.js:82
|
1053 |
msgid "PR Blocks"
|
1054 |
msgstr "PR Blocks"
|
1055 |
|
1107 |
msgid "PR Content"
|
1108 |
msgstr "PR Content"
|
1109 |
|
1110 |
+
#: src/blocks/pr-content/component.js:200
|
1111 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:122
|
1112 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:136
|
1113 |
msgid "Input title."
|
1114 |
msgstr "タイトルを入力してください。"
|
1115 |
|
1116 |
+
#: src/blocks/pr-content/component.js:208
|
1117 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:130
|
1118 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:144
|
1119 |
msgid "Input content."
|
1120 |
msgstr "本文を入力してください。"
|
1121 |
|
1122 |
+
#: src/blocks/spacer/block.js:104
|
1123 |
msgid "Tablet"
|
1124 |
msgstr "タブレット"
|
1125 |
|
1126 |
+
#: src/blocks/spacer/block.js:110
|
1127 |
msgid "Mobile"
|
1128 |
msgstr "モバイル"
|
1129 |
|
1130 |
+
#: src/blocks/spacer/block.js:42
|
1131 |
msgid "Responsive Spacer"
|
1132 |
msgstr "レスポンシブスペーサー"
|
1133 |
|
1134 |
+
#: src/blocks/spacer/block.js:74
|
1135 |
msgid "Unit Type"
|
1136 |
msgstr "単位"
|
1137 |
|
1138 |
+
#: src/blocks/spacer/block.js:80
|
1139 |
msgid "px"
|
1140 |
msgstr "px"
|
1141 |
|
1142 |
+
#: src/blocks/spacer/block.js:84
|
1143 |
msgid "em"
|
1144 |
msgstr "em"
|
1145 |
|
1146 |
+
#: src/blocks/spacer/block.js:88
|
1147 |
msgid "rem"
|
1148 |
msgstr "rem"
|
1149 |
|
1150 |
+
#: src/blocks/spacer/block.js:92
|
1151 |
msgid "vw"
|
1152 |
msgstr "vw"
|
1153 |
|
1154 |
+
#: src/blocks/spacer/block.js:96
|
1155 |
msgid "Height for each device."
|
1156 |
msgstr "デバイス毎の高さ"
|
1157 |
|
1158 |
+
#: src/blocks/spacer/block.js:98
|
1159 |
msgid "PC"
|
1160 |
msgstr "PC"
|
1161 |
|
1162 |
+
#: src/blocks/staff/block.js:105
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1163 |
msgid "Staff name"
|
1164 |
msgstr "名前"
|
1165 |
|
1166 |
+
#: src/blocks/staff/block.js:113
|
1167 |
msgid "Name caption"
|
1168 |
msgstr "名前のキャプション"
|
1169 |
|
1170 |
+
#: src/blocks/staff/block.js:121 src/blocks/staff/component.js:58
|
1171 |
msgid "Role position"
|
1172 |
msgstr "役職"
|
1173 |
|
1174 |
+
#: src/blocks/staff/block.js:129 src/blocks/staff/component.js:66
|
1175 |
msgid "Profile title"
|
1176 |
msgstr "プロフィールタイトル"
|
1177 |
|
1178 |
+
#: src/blocks/staff/block.js:137 src/blocks/staff/component.js:74
|
1179 |
msgid "Profile text"
|
1180 |
msgstr "プロフィールテキスト"
|
1181 |
|
1182 |
+
#: src/blocks/staff/block.js:41
|
1183 |
msgid "Staff"
|
1184 |
msgstr "スタッフ"
|
1185 |
|
1186 |
+
#: src/blocks/staff/block.js:61
|
1187 |
msgid "Layout"
|
1188 |
msgstr "レイアウト"
|
1189 |
|
1190 |
+
#: src/blocks/staff/block.js:72
|
1191 |
msgid "Image left"
|
1192 |
msgstr "画像 左"
|
1193 |
|
1194 |
+
#: src/blocks/staff/block.js:77
|
1195 |
msgid "Image border"
|
1196 |
msgstr "画像の線"
|
1197 |
|
1198 |
+
#: src/blocks/staff/block.js:93
|
1199 |
+
msgid "Alt text"
|
1200 |
+
msgstr "画像の代替テキスト"
|
1201 |
+
|
1202 |
+
#: src/blocks/staff/block.js:95
|
1203 |
+
msgid "Set the alt text for profile image"
|
1204 |
+
msgstr "プロフィール画像の代替テキストを設定します"
|
1205 |
+
|
1206 |
#: src/blocks/staff/component.js:42
|
1207 |
msgid "Your Name"
|
1208 |
msgstr "名前"
|
1215 |
msgid "Align"
|
1216 |
msgstr "表示位置"
|
1217 |
|
1218 |
+
#: src/components/column-layout-control/index.js:16
|
1219 |
msgid "Card ( No border )"
|
1220 |
msgstr "カード(線なし)"
|
1221 |
|
1222 |
+
#: src/components/column-layout-control/index.js:26
|
1223 |
msgid "Card Horizontal"
|
1224 |
msgstr "カード(水平)"
|
1225 |
|
1226 |
+
#: src/components/column-layout-control/index.js:30
|
1227 |
msgid "Media"
|
1228 |
msgstr "メディア"
|
1229 |
|
1230 |
+
#: src/components/column-layout-control/index.js:34
|
1231 |
msgid "Text 1 Column"
|
1232 |
msgstr "テキスト1カラム"
|
1233 |
|
1239 |
msgid "Display type"
|
1240 |
msgstr "表示タイプ"
|
1241 |
|
1242 |
+
#: src/components/column-layout/index.js:19
|
1243 |
msgid "Column ( Screen size : Extra small )"
|
1244 |
msgstr "カラム ( 画面サイズ : Extra small )"
|
1245 |
|
1246 |
+
#: src/components/column-layout/index.js:28
|
1247 |
msgid "Column ( Screen size : Small )"
|
1248 |
msgstr "カラム ( 画面サイズ : Small )"
|
1249 |
|
1250 |
+
#: src/components/column-layout/index.js:36
|
1251 |
msgid "Column ( Screen size : Medium )"
|
1252 |
msgstr "カラム ( 画面サイズ : Medium )"
|
1253 |
|
1254 |
+
#: src/components/column-layout/index.js:44
|
1255 |
msgid "Column ( Screen size : Large )"
|
1256 |
msgstr "カラム ( 画面サイズ : Large )"
|
1257 |
|
1258 |
+
#: src/components/column-layout/index.js:53
|
1259 |
msgid "Column ( Screen size : Extra large )"
|
1260 |
msgstr "カラム ( 画面サイズ : Extra large )"
|
1261 |
|
1262 |
+
#: src/components/display-items-control/index.js:34
|
1263 |
msgid "Term name"
|
1264 |
msgstr "分類名"
|
1265 |
|
1266 |
+
#: src/components/display-items-control/index.js:41
|
1267 |
msgid "Excerpt"
|
1268 |
msgstr "抜粋"
|
1269 |
|
1270 |
+
#: src/components/display-items-control/index.js:46
|
1271 |
msgid "Date"
|
1272 |
msgstr "日付"
|
1273 |
|
1274 |
+
#: src/components/display-items-control/index.js:52
|
1275 |
msgid "New mark"
|
1276 |
msgstr "新着表示"
|
1277 |
|
1278 |
+
#: src/components/display-items-control/index.js:62
|
1279 |
msgid "New mark option"
|
1280 |
msgstr "新着表示オプション"
|
1281 |
|
1282 |
+
#: src/components/display-items-control/index.js:64
|
1283 |
msgid "Number of days to display the new post mark"
|
1284 |
msgstr "新着表示日数"
|
1285 |
|
1286 |
+
#: src/components/display-items-control/index.js:70
|
1287 |
msgid "New post mark"
|
1288 |
msgstr "新着表示"
|
1289 |
|
1290 |
+
#: src/components/display-items-control/index.js:88
|
1291 |
msgid "Button align"
|
1292 |
msgstr "ボタンの位置"
|
1293 |
|
1305 |
|
1306 |
#: src/plugin/menu/sidebar.js:17
|
1307 |
msgid "VK Blocks Templates"
|
1308 |
+
msgstr "VK Blocks テンプレート"
|
1309 |
|
1310 |
+
#: src/translation_dummy.js:2
|
1311 |
msgid "Disabled Blocks module. Because VK-Blocks Plugin running."
|
1312 |
msgstr ""
|
1313 |
"VK-Blocksと競合するため、VK All in One Expansion UnitのBlock機能を停止しまし"
|
1314 |
"た。"
|
1315 |
|
1316 |
+
#: src/translation_dummy.js:3
|
1317 |
msgid "Deactivated VK-Blocks Plugin. Because VK-Blocks Pro running."
|
1318 |
msgstr "Pro版VK-Blocksが起動しているため、VK-Blocksを停止しました。"
|
1319 |
|
1320 |
+
#~ msgid "Fixed"
|
1321 |
+
#~ msgstr "固定"
|
1322 |
+
|
1323 |
+
#~ msgid "Parallax (It will not work in preview)"
|
1324 |
+
#~ msgstr "パララックス(編集画面では反映されません)"
|
1325 |
+
|
1326 |
+
#~ msgid "FontAwesome"
|
1327 |
+
#~ msgstr "Font Awesome"
|
1328 |
+
|
1329 |
+
#, fuzzy
|
1330 |
+
#~| msgid "top-bottom-border"
|
1331 |
+
#~ msgid "solid-kado-tit-onborder"
|
1332 |
+
#~ msgstr "上下線"
|
1333 |
+
|
1334 |
+
#~ msgid "Padding (Horizontal)"
|
1335 |
+
#~ msgstr "余白(水平)"
|
1336 |
+
|
1337 |
+
#~ msgid "Padding (Vertical)"
|
1338 |
+
#~ msgstr "余白(上下)"
|
1339 |
+
|
1340 |
+
#~ msgid "Use padding"
|
1341 |
+
#~ msgstr "余白あり"
|
1342 |
+
|
1343 |
+
#~ msgid "Don't use padding"
|
1344 |
+
#~ msgstr "余白なし"
|
1345 |
+
|
1346 |
+
#~ msgid "Use"
|
1347 |
+
#~ msgstr "あり"
|
1348 |
+
|
1349 |
+
#~ msgid "Contents area width and padding"
|
1350 |
+
#~ msgstr "コンテンツエリアの左右に標準の余白を使用"
|
1351 |
+
|
1352 |
+
#~ msgid "Full wide width and padding"
|
1353 |
+
#~ msgstr "全幅に余白を使用"
|
1354 |
+
|
1355 |
+
#~ msgid "Outer width"
|
1356 |
+
#~ msgstr "アウターの幅"
|
1357 |
+
|
1358 |
+
#, fuzzy
|
1359 |
+
#~| msgid "Responsive Spacer"
|
1360 |
+
#~ msgid "Responsive Column"
|
1361 |
+
#~ msgstr "レスポンシブスペーサー"
|
1362 |
+
|
1363 |
#, fuzzy
|
1364 |
#~| msgid "Icon setting"
|
1365 |
#~ msgid "Link settings"
|
1368 |
#~ msgid "This block is only for users who bought Lightning Pro."
|
1369 |
#~ msgstr "このブロックは Lightning Pro 専用です。"
|
1370 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1371 |
#~ msgid "Double black"
|
1372 |
#~ msgstr "二重線 黒"
|
1373 |
|
|
|
|
|
|
|
1374 |
#, fuzzy
|
1375 |
#~| msgid "top-bottom-border"
|
1376 |
#~ msgid "Solid border-bottom leftkeycolor"
|
1491 |
#~ msgid "Name"
|
1492 |
#~ msgstr "アイコンの名前"
|
1493 |
|
|
|
|
|
|
|
1494 |
#~ msgid "Open url in new window"
|
1495 |
#~ msgstr "リンクを別ウィンドウで開く"
|
1496 |
|
inc/vk-blocks/build/languages/vk-blocks.pot
CHANGED
@@ -3,246 +3,329 @@ msgstr ""
|
|
3 |
"Content-Type: text/plain; charset=utf-8\n"
|
4 |
"X-Generator: babel-plugin-makepot\n"
|
5 |
|
6 |
-
#: src/blocks/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
msgid "Alert"
|
8 |
msgstr ""
|
9 |
|
10 |
-
#: src/blocks/
|
11 |
-
|
|
|
12 |
msgstr ""
|
13 |
|
14 |
-
#: src/blocks/
|
15 |
-
|
|
|
|
|
16 |
msgstr ""
|
17 |
|
18 |
-
#: src/blocks/
|
19 |
-
|
|
|
|
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: src/blocks/
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: src/blocks/balloon/block.js:
|
27 |
-
#: src/blocks/flow/block.js:
|
28 |
-
#: src/blocks/pr-blocks/block.js:
|
29 |
-
#: src/blocks/pr-content/component.js:
|
30 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:102
|
31 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:116
|
32 |
#: src/blocks/staff/component.js:88
|
33 |
msgid "Select image"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: src/blocks/balloon/block.js:
|
37 |
-
#: src/blocks/flow/block.js:
|
38 |
-
#: src/blocks/pr-blocks/block.js:
|
39 |
-
#: src/blocks/pr-content/component.js:
|
40 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:106
|
41 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:120
|
42 |
msgid "Upload image"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: src/blocks/balloon/block.js:
|
46 |
msgid "Icon Name"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: src/blocks/balloon/block.js:
|
50 |
-
#: src/blocks/button/block.js:
|
51 |
msgid "Input text"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: src/blocks/balloon/block.js:
|
55 |
msgid "Ballon"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: src/blocks/balloon/block.js:
|
59 |
msgid "Balloon setting"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: src/blocks/balloon/block.js:
|
63 |
-
#: src/blocks/heading/block.js:
|
64 |
msgid "Position"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: src/blocks/balloon/block.js:
|
68 |
msgid "Please specify the layout of the balloon."
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: src/blocks/balloon/block.js:
|
72 |
-
#: src/blocks/button/block.js:
|
73 |
#: src/blocks/pr-content/block.js:241
|
74 |
msgid "Left"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: src/blocks/balloon/block.js:
|
78 |
-
#: src/blocks/button/block.js:
|
79 |
#: src/blocks/pr-content/block.js:240
|
80 |
msgid "Right"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: src/blocks/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
msgid "Button setting"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: src/blocks/button/block.js:
|
88 |
msgid "Sub Caption"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: src/blocks/button/block.js:
|
92 |
-
#: src/blocks/pr-blocks/block.js:
|
93 |
#: src/blocks/pr-content/block.js:160
|
94 |
msgid "Open link new tab."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: src/blocks/button/block.js:
|
98 |
msgid "Button Size:"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: src/blocks/button/block.js:
|
102 |
msgid "Large"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: src/blocks/button/block.js:
|
106 |
msgid "Normal"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: src/blocks/button/block.js:
|
110 |
msgid "Small"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: src/blocks/button/block.js:
|
114 |
msgid "Button Position:"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: src/blocks/button/block.js:
|
118 |
msgid "Center"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: src/blocks/button/block.js:
|
122 |
msgid "Wide"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: src/blocks/button/block.js:
|
126 |
msgid "Block"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: src/blocks/button/block.js:
|
130 |
msgid "Button Style:"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: src/blocks/button/block.js:
|
134 |
-
#: src/blocks/pr-blocks/block.js:
|
135 |
msgid "Solid color"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: src/blocks/button/block.js:
|
139 |
-
#: src/blocks/pr-blocks/block.js:
|
140 |
msgid "No background"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: src/blocks/button/block.js:
|
144 |
msgid "Text only"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: src/blocks/button/block.js:
|
148 |
msgid "If you select \"No background\", that you need to select a Custom Color."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: src/blocks/button/block.js:
|
152 |
#: src/blocks/pr-content/block.js:175
|
153 |
msgid "Default Color:"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: src/blocks/button/block.js:
|
157 |
#: src/blocks/pr-content/block.js:178
|
158 |
msgid "Primary"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: src/blocks/button/block.js:
|
162 |
#: src/blocks/pr-content/block.js:179
|
163 |
msgid "Secondary"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: src/blocks/button/block.js:
|
167 |
-
#: src/blocks/pr-content/block.js:180
|
168 |
-
msgid "Success"
|
169 |
-
msgstr ""
|
170 |
-
|
171 |
-
#: src/blocks/button/block.js:270
|
172 |
-
#: src/blocks/pr-content/block.js:181
|
173 |
-
msgid "Info"
|
174 |
-
msgstr ""
|
175 |
-
|
176 |
-
#: src/blocks/button/block.js:271
|
177 |
-
#: src/blocks/pr-content/block.js:182
|
178 |
-
msgid "Warning"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: src/blocks/button/block.js:272
|
182 |
-
#: src/blocks/pr-content/block.js:183
|
183 |
-
msgid "Danger"
|
184 |
-
msgstr ""
|
185 |
-
|
186 |
-
#: src/blocks/button/block.js:273
|
187 |
#: src/blocks/pr-content/block.js:184
|
188 |
msgid "Light"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: src/blocks/button/block.js:
|
192 |
#: src/blocks/pr-content/block.js:185
|
193 |
msgid "Dark"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: src/blocks/button/block.js:
|
197 |
msgid "Custom Color"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: src/blocks/button/block.js:
|
201 |
msgid ""
|
202 |
"This custom color overrides the default color. If you want to use the "
|
203 |
"default color, click the clear button."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: src/blocks/button/block.js:
|
207 |
#: src/blocks/pr-content/block.js:196
|
208 |
msgid "Font Awesome:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: src/blocks/button/block.js:
|
212 |
-
#: src/blocks/pr-blocks/block.js:344
|
213 |
-
#: src/blocks/pr-content/block.js:202
|
214 |
-
msgid "Font Awesome icon list"
|
215 |
-
msgstr ""
|
216 |
-
|
217 |
-
#: src/blocks/button/block.js:292
|
218 |
#: src/blocks/pr-content/block.js:207
|
219 |
msgid "Before text"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: src/blocks/button/block.js:
|
223 |
#: src/blocks/pr-content/block.js:208
|
224 |
msgid ""
|
225 |
"Enter Font Awesome Class.This icon will appear before text. Ex) fas "
|
226 |
"fa-arrow-circle-right"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: src/blocks/button/block.js:
|
230 |
#: src/blocks/pr-content/block.js:219
|
231 |
msgid "After text"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: src/blocks/button/block.js:
|
235 |
#: src/blocks/pr-content/block.js:220
|
236 |
msgid ""
|
237 |
"Enter Font Awesome Class.This icon will appear after text. Ex) fas "
|
238 |
"fa-external-link-alt"
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: src/blocks/button/block.js:
|
242 |
msgid "Apply"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: src/blocks/button/block.js:
|
246 |
msgid "Button"
|
247 |
msgstr ""
|
248 |
|
@@ -258,27 +341,27 @@ msgstr ""
|
|
258 |
msgid "Please enter a question."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: src/blocks/flow/block.js:
|
262 |
msgid "Flow"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: src/blocks/flow/block.js:
|
266 |
msgid "Display of arrow"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: src/blocks/flow/block.js:
|
270 |
msgid "Arrow display"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: src/blocks/flow/block.js:
|
274 |
msgid "Arrow hidden"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: src/blocks/flow/block.js:
|
278 |
msgid "Input title"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: src/blocks/flow/block.js:
|
282 |
msgid "Input content"
|
283 |
msgstr ""
|
284 |
|
@@ -332,14 +415,14 @@ msgid "Brackets black"
|
|
332 |
msgstr ""
|
333 |
|
334 |
#: src/blocks/heading-style/block.js:33
|
335 |
-
#: src/blocks/heading/block.js:
|
336 |
#: src/blocks/list-style/block.js:104
|
337 |
-
#: src/blocks/staff/block.js:
|
338 |
msgid "Default"
|
339 |
msgstr ""
|
340 |
|
341 |
#: src/blocks/heading-style/block.js:38
|
342 |
-
#: src/blocks/heading/block.js:
|
343 |
msgid "Plain"
|
344 |
msgstr ""
|
345 |
|
@@ -363,114 +446,112 @@ msgstr ""
|
|
363 |
msgid "Solid border bottom black"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: src/blocks/heading/block.js:
|
367 |
-
msgid "Style Settings"
|
368 |
-
msgstr ""
|
369 |
-
|
370 |
-
#: src/blocks/heading/block.js:149
|
371 |
msgid "Heading style"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: src/blocks/heading/block.js:
|
375 |
msgid "Margin bottom size (rem)"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: src/blocks/heading/block.js:
|
379 |
msgid "Heading Settings"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: src/blocks/heading/block.js:
|
383 |
msgid "Level"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: src/blocks/heading/block.js:
|
387 |
msgid "Text Alignment"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: src/blocks/heading/block.js:
|
391 |
msgid "Heading margin bottom size (rem)"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: src/blocks/heading/block.js:
|
395 |
msgid "Sub Text Settings"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: src/blocks/heading/block.js:
|
399 |
msgid "Display"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: src/blocks/heading/block.js:
|
403 |
msgid "Hide"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: src/blocks/heading/block.js:
|
407 |
msgid "Text size (rem)"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: src/blocks/heading/block.js:
|
411 |
msgid "Heading"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: src/blocks/heading/component.js:
|
415 |
-
#: src/blocks/heading/deprecated/block.js:
|
|
|
416 |
msgid "Input sub text…"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: src/blocks/heading/component.js:
|
420 |
-
#: src/blocks/heading/deprecated/block.js:
|
|
|
421 |
msgid "Input title…"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: src/blocks/heading/heading-toolbar.js:
|
425 |
#. %s: heading level e.g: "1", "2", "3"
|
426 |
msgid "Heading %d"
|
427 |
msgstr ""
|
428 |
|
429 |
#: src/blocks/hidden-extension/index.js:101
|
|
|
|
|
|
|
|
|
430 |
msgid ""
|
431 |
"Note : This function is display hidden only. Actually Block is output to "
|
432 |
"HTML.Pleade don't use you must not bisible item.Don't use it for blocks you "
|
433 |
"really don't want to display."
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: src/blocks/hidden-extension/index.js:
|
437 |
msgid "Hidden ( Screen size : all )"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: src/blocks/hidden-extension/index.js:
|
441 |
msgid "Hidden ( Screen size : xs )"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: src/blocks/hidden-extension/index.js:
|
445 |
msgid "Hidden ( Screen size : sm )"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: src/blocks/hidden-extension/index.js:
|
449 |
msgid "Hidden ( Screen size : md )"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: src/blocks/hidden-extension/index.js:
|
453 |
msgid "Hidden ( Screen size : lg )"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: src/blocks/hidden-extension/index.js:
|
457 |
msgid "Hidden ( Screen size : xl )"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: src/blocks/hidden-extension/index.js:
|
461 |
msgid ""
|
462 |
"If you want to hide multiple blocks, that first you set to group block and "
|
463 |
"the next, hide for the that group block."
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: src/blocks/hidden-extension/index.js:
|
467 |
msgid "Hidden Settings"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: src/blocks/hidden-extension/index.js:99
|
471 |
-
msgid "Hidden at screel size"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
#: src/blocks/highlighter/block.js:81
|
475 |
msgid "Highlight Color"
|
476 |
msgstr ""
|
@@ -535,63 +616,63 @@ msgstr ""
|
|
535 |
msgid "List Icon Color"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: src/blocks/pr-blocks/block.js:
|
539 |
msgid "PR Block1 Setting"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: src/blocks/pr-blocks/block.js:
|
543 |
msgid "Icon 1"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: src/blocks/pr-blocks/block.js:
|
547 |
-
msgid "
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: src/blocks/pr-blocks/block.js:
|
551 |
-
msgid "
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: src/blocks/pr-blocks/block.js:
|
555 |
msgid "PR Block2 Setting"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: src/blocks/pr-blocks/block.js:
|
559 |
msgid "Icon 2"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: src/blocks/pr-blocks/block.js:
|
563 |
msgid "PR Image 2"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: src/blocks/pr-blocks/block.js:
|
567 |
msgid "PR Block3 Setting"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: src/blocks/pr-blocks/block.js:
|
571 |
msgid "Link URL:"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: src/blocks/pr-blocks/block.js:
|
575 |
msgid "Icon 3"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: src/blocks/pr-blocks/block.js:
|
579 |
msgid "Class name of the Font Awesome icon font you want to use:"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: src/blocks/pr-blocks/block.js:
|
583 |
msgid "Icon Background:"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: src/blocks/pr-blocks/block.js:
|
587 |
-
msgid "
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: src/blocks/pr-blocks/block.js:
|
591 |
-
msgid "
|
592 |
msgstr ""
|
593 |
|
594 |
-
#: src/blocks/pr-blocks/block.js:
|
595 |
msgid "PR Blocks"
|
596 |
msgstr ""
|
597 |
|
@@ -657,113 +738,109 @@ msgstr ""
|
|
657 |
msgid "PR Content"
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: src/blocks/pr-content/component.js:
|
661 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:122
|
662 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:136
|
663 |
msgid "Input title."
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: src/blocks/pr-content/component.js:
|
667 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:130
|
668 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:144
|
669 |
msgid "Input content."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: src/blocks/spacer/block.js:
|
673 |
msgid "Tablet"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: src/blocks/spacer/block.js:
|
677 |
msgid "Mobile"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: src/blocks/spacer/block.js:
|
681 |
msgid "Responsive Spacer"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: src/blocks/spacer/block.js:
|
685 |
msgid "Unit Type"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: src/blocks/spacer/block.js:
|
689 |
msgid "px"
|
690 |
msgstr ""
|
691 |
|
692 |
-
#: src/blocks/spacer/block.js:
|
693 |
msgid "em"
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: src/blocks/spacer/block.js:
|
697 |
msgid "rem"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: src/blocks/spacer/block.js:
|
701 |
msgid "vw"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: src/blocks/spacer/block.js:
|
705 |
msgid "Height for each device."
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: src/blocks/spacer/block.js:
|
709 |
msgid "PC"
|
710 |
msgstr ""
|
711 |
|
712 |
-
#: src/blocks/staff/block.js:
|
713 |
-
msgid "None"
|
714 |
-
msgstr ""
|
715 |
-
|
716 |
-
#: src/blocks/staff/block.js:114
|
717 |
-
msgid "Alt text"
|
718 |
-
msgstr ""
|
719 |
-
|
720 |
-
#: src/blocks/staff/block.js:116
|
721 |
-
msgid "Set the alt text for profile image"
|
722 |
-
msgstr ""
|
723 |
-
|
724 |
-
#: src/blocks/staff/block.js:124
|
725 |
-
msgid "Color"
|
726 |
-
msgstr ""
|
727 |
-
|
728 |
-
#: src/blocks/staff/block.js:126
|
729 |
msgid "Staff name"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: src/blocks/staff/block.js:
|
733 |
msgid "Name caption"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: src/blocks/staff/block.js:
|
737 |
#: src/blocks/staff/component.js:58
|
738 |
msgid "Role position"
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: src/blocks/staff/block.js:
|
742 |
#: src/blocks/staff/component.js:66
|
743 |
msgid "Profile title"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: src/blocks/staff/block.js:
|
747 |
#: src/blocks/staff/component.js:74
|
748 |
msgid "Profile text"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: src/blocks/staff/block.js:
|
752 |
msgid "Staff"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: src/blocks/staff/block.js:
|
756 |
msgid "Layout"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: src/blocks/staff/block.js:
|
760 |
msgid "Image left"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: src/blocks/staff/block.js:
|
764 |
msgid "Image border"
|
765 |
msgstr ""
|
766 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
767 |
#: src/blocks/staff/component.js:42
|
768 |
msgid "Your Name"
|
769 |
msgstr ""
|
@@ -772,6 +849,10 @@ msgstr ""
|
|
772 |
msgid "Caption"
|
773 |
msgstr ""
|
774 |
|
|
|
|
|
|
|
|
|
775 |
#: src/translation_dummy.js:2
|
776 |
msgid "Disabled Blocks module. Because VK-Blocks Plugin running."
|
777 |
msgstr ""
|
3 |
"Content-Type: text/plain; charset=utf-8\n"
|
4 |
"X-Generator: babel-plugin-makepot\n"
|
5 |
|
6 |
+
#: src/blocks/_helper/font-awesome.js:22
|
7 |
+
msgid "Font Awesome"
|
8 |
+
msgstr ""
|
9 |
+
|
10 |
+
#: src/blocks/_helper/font-awesome.js:28
|
11 |
+
msgid "Enter Font Awesome Class."
|
12 |
+
msgstr ""
|
13 |
+
|
14 |
+
#: src/blocks/_helper/font-awesome.js:29
|
15 |
+
msgid "Ex) fas fa-arrow-circle-right"
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/blocks/_helper/font-awesome.js:31
|
19 |
+
#: src/blocks/button/block.js:267
|
20 |
+
#: src/blocks/pr-blocks/block.js:325
|
21 |
+
#: src/blocks/pr-content/block.js:202
|
22 |
+
msgid "Font Awesome icon list"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: src/blocks/alert/block.js:17
|
26 |
msgid "Alert"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: src/blocks/alert/block.js:48
|
30 |
+
#: src/blocks/heading/block.js:125
|
31 |
+
msgid "Style Settings"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: src/blocks/alert/block.js:53
|
35 |
+
#: src/blocks/button/block.js:247
|
36 |
+
#: src/blocks/pr-content/block.js:180
|
37 |
+
msgid "Success"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: src/blocks/alert/block.js:54
|
41 |
+
#: src/blocks/button/block.js:248
|
42 |
+
#: src/blocks/pr-content/block.js:181
|
43 |
+
msgid "Info"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: src/blocks/alert/block.js:55
|
47 |
+
#: src/blocks/button/block.js:249
|
48 |
+
#: src/blocks/pr-content/block.js:182
|
49 |
+
msgid "Warning"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: src/blocks/alert/block.js:56
|
53 |
+
#: src/blocks/button/block.js:250
|
54 |
+
#: src/blocks/pr-content/block.js:183
|
55 |
+
msgid "Danger"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: src/blocks/balloon/block.js:114
|
59 |
+
#: src/blocks/flow/block.js:96
|
60 |
+
#: src/blocks/pr-blocks/block.js:158
|
61 |
+
#: src/blocks/pr-content/component.js:157
|
62 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:102
|
63 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:116
|
64 |
#: src/blocks/staff/component.js:88
|
65 |
msgid "Select image"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: src/blocks/balloon/block.js:119
|
69 |
+
#: src/blocks/flow/block.js:97
|
70 |
+
#: src/blocks/pr-blocks/block.js:154
|
71 |
+
#: src/blocks/pr-content/component.js:164
|
72 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:106
|
73 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:120
|
74 |
msgid "Upload image"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: src/blocks/balloon/block.js:130
|
78 |
msgid "Icon Name"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: src/blocks/balloon/block.js:139
|
82 |
+
#: src/blocks/button/block.js:299
|
83 |
msgid "Input text"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: src/blocks/balloon/block.js:24
|
87 |
msgid "Ballon"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: src/blocks/balloon/block.js:66
|
91 |
msgid "Balloon setting"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: src/blocks/balloon/block.js:68
|
95 |
+
#: src/blocks/heading/block.js:188
|
96 |
msgid "Position"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: src/blocks/balloon/block.js:69
|
100 |
msgid "Please specify the layout of the balloon."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: src/blocks/balloon/block.js:75
|
104 |
+
#: src/blocks/button/block.js:176
|
105 |
#: src/blocks/pr-content/block.js:241
|
106 |
msgid "Left"
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: src/blocks/balloon/block.js:76
|
110 |
+
#: src/blocks/button/block.js:192
|
111 |
#: src/blocks/pr-content/block.js:240
|
112 |
msgid "Right"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: src/blocks/balloon/block.js:81
|
116 |
+
msgid "Type"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: src/blocks/balloon/block.js:82
|
120 |
+
msgid "Please select the type of balloon."
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: src/blocks/balloon/block.js:85
|
124 |
+
msgid "Serif"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: src/blocks/balloon/block.js:86
|
128 |
+
msgid "Thinking"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: src/blocks/border-box/Body.js:20
|
132 |
+
msgid "Please enter a title."
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: src/blocks/border-box/block.js:100
|
136 |
+
msgid "Blue"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: src/blocks/border-box/block.js:104
|
140 |
+
msgid "Green"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: src/blocks/border-box/block.js:108
|
144 |
+
msgid "Black"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: src/blocks/border-box/block.js:113
|
148 |
+
msgid "Icon"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: src/blocks/border-box/block.js:44
|
152 |
+
msgid "Border Box"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: src/blocks/border-box/block.js:54
|
156 |
+
msgid "Solid Angle Tab"
|
157 |
+
msgstr ""
|
158 |
+
|
159 |
+
#: src/blocks/border-box/block.js:59
|
160 |
+
msgid "Solid Round Tab"
|
161 |
+
msgstr ""
|
162 |
+
|
163 |
+
#: src/blocks/border-box/block.js:63
|
164 |
+
msgid "Solid Angle Banner"
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: src/blocks/border-box/block.js:67
|
168 |
+
msgid "Solid Angle Onborder"
|
169 |
+
msgstr ""
|
170 |
+
|
171 |
+
#: src/blocks/border-box/block.js:71
|
172 |
+
msgid "Solid Angle Inner"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: src/blocks/border-box/block.js:75
|
176 |
+
msgid "Solid Angle iconFeature"
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: src/blocks/border-box/block.js:85
|
180 |
+
#: src/blocks/staff/block.js:103
|
181 |
+
msgid "Color"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: src/blocks/border-box/block.js:92
|
185 |
+
msgid "Red"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: src/blocks/border-box/block.js:96
|
189 |
+
msgid "Orange"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: src/blocks/button/block.js:127
|
193 |
msgid "Button setting"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: src/blocks/button/block.js:129
|
197 |
msgid "Sub Caption"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: src/blocks/button/block.js:135
|
201 |
+
#: src/blocks/pr-blocks/block.js:311
|
202 |
#: src/blocks/pr-content/block.js:160
|
203 |
msgid "Open link new tab."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: src/blocks/button/block.js:140
|
207 |
msgid "Button Size:"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: src/blocks/button/block.js:148
|
211 |
msgid "Large"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: src/blocks/button/block.js:156
|
215 |
msgid "Normal"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: src/blocks/button/block.js:164
|
219 |
msgid "Small"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: src/blocks/button/block.js:168
|
223 |
msgid "Button Position:"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: src/blocks/button/block.js:184
|
227 |
msgid "Center"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: src/blocks/button/block.js:200
|
231 |
msgid "Wide"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: src/blocks/button/block.js:208
|
235 |
msgid "Block"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: src/blocks/button/block.js:212
|
239 |
msgid "Button Style:"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: src/blocks/button/block.js:220
|
243 |
+
#: src/blocks/pr-blocks/block.js:342
|
244 |
msgid "Solid color"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: src/blocks/button/block.js:228
|
248 |
+
#: src/blocks/pr-blocks/block.js:343
|
249 |
msgid "No background"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: src/blocks/button/block.js:236
|
253 |
msgid "Text only"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: src/blocks/button/block.js:239
|
257 |
msgid "If you select \"No background\", that you need to select a Custom Color."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: src/blocks/button/block.js:242
|
261 |
#: src/blocks/pr-content/block.js:175
|
262 |
msgid "Default Color:"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: src/blocks/button/block.js:245
|
266 |
#: src/blocks/pr-content/block.js:178
|
267 |
msgid "Primary"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: src/blocks/button/block.js:246
|
271 |
#: src/blocks/pr-content/block.js:179
|
272 |
msgid "Secondary"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: src/blocks/button/block.js:251
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
276 |
#: src/blocks/pr-content/block.js:184
|
277 |
msgid "Light"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: src/blocks/button/block.js:252
|
281 |
#: src/blocks/pr-content/block.js:185
|
282 |
msgid "Dark"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: src/blocks/button/block.js:257
|
286 |
msgid "Custom Color"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: src/blocks/button/block.js:258
|
290 |
msgid ""
|
291 |
"This custom color overrides the default color. If you want to use the "
|
292 |
"default color, click the clear button."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: src/blocks/button/block.js:266
|
296 |
#: src/blocks/pr-content/block.js:196
|
297 |
msgid "Font Awesome:"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: src/blocks/button/block.js:270
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
#: src/blocks/pr-content/block.js:207
|
302 |
msgid "Before text"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: src/blocks/button/block.js:271
|
306 |
#: src/blocks/pr-content/block.js:208
|
307 |
msgid ""
|
308 |
"Enter Font Awesome Class.This icon will appear before text. Ex) fas "
|
309 |
"fa-arrow-circle-right"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: src/blocks/button/block.js:277
|
313 |
#: src/blocks/pr-content/block.js:219
|
314 |
msgid "After text"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: src/blocks/button/block.js:278
|
318 |
#: src/blocks/pr-content/block.js:220
|
319 |
msgid ""
|
320 |
"Enter Font Awesome Class.This icon will appear after text. Ex) fas "
|
321 |
"fa-external-link-alt"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: src/blocks/button/block.js:313
|
325 |
msgid "Apply"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: src/blocks/button/block.js:45
|
329 |
msgid "Button"
|
330 |
msgstr ""
|
331 |
|
341 |
msgid "Please enter a question."
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: src/blocks/flow/block.js:16
|
345 |
msgid "Flow"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: src/blocks/flow/block.js:51
|
349 |
msgid "Display of arrow"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: src/blocks/flow/block.js:55
|
353 |
msgid "Arrow display"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: src/blocks/flow/block.js:56
|
357 |
msgid "Arrow hidden"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: src/blocks/flow/block.js:74
|
361 |
msgid "Input title"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: src/blocks/flow/block.js:82
|
365 |
msgid "Input content"
|
366 |
msgstr ""
|
367 |
|
415 |
msgstr ""
|
416 |
|
417 |
#: src/blocks/heading-style/block.js:33
|
418 |
+
#: src/blocks/heading/block.js:131
|
419 |
#: src/blocks/list-style/block.js:104
|
420 |
+
#: src/blocks/staff/block.js:84
|
421 |
msgid "Default"
|
422 |
msgstr ""
|
423 |
|
424 |
#: src/blocks/heading-style/block.js:38
|
425 |
+
#: src/blocks/heading/block.js:132
|
426 |
msgid "Plain"
|
427 |
msgstr ""
|
428 |
|
446 |
msgid "Solid border bottom black"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: src/blocks/heading/block.js:127
|
|
|
|
|
|
|
|
|
450 |
msgid "Heading style"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: src/blocks/heading/block.js:135
|
454 |
msgid "Margin bottom size (rem)"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: src/blocks/heading/block.js:146
|
458 |
msgid "Heading Settings"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: src/blocks/heading/block.js:147
|
462 |
msgid "Level"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: src/blocks/heading/block.js:154
|
466 |
msgid "Text Alignment"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: src/blocks/heading/block.js:171
|
470 |
msgid "Heading margin bottom size (rem)"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: src/blocks/heading/block.js:186
|
474 |
msgid "Sub Text Settings"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: src/blocks/heading/block.js:191
|
478 |
msgid "Display"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: src/blocks/heading/block.js:192
|
482 |
msgid "Hide"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: src/blocks/heading/block.js:196
|
486 |
msgid "Text size (rem)"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: src/blocks/heading/block.js:64
|
490 |
msgid "Heading"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: src/blocks/heading/component.js:108
|
494 |
+
#: src/blocks/heading/deprecated/block.js:663
|
495 |
+
#: src/blocks/heading/deprecated/component.js:108
|
496 |
msgid "Input sub text…"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: src/blocks/heading/component.js:92
|
500 |
+
#: src/blocks/heading/deprecated/block.js:647
|
501 |
+
#: src/blocks/heading/deprecated/component.js:92
|
502 |
msgid "Input title…"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: src/blocks/heading/heading-toolbar.js:16
|
506 |
#. %s: heading level e.g: "1", "2", "3"
|
507 |
msgid "Heading %d"
|
508 |
msgstr ""
|
509 |
|
510 |
#: src/blocks/hidden-extension/index.js:101
|
511 |
+
msgid "Hidden at screel size"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: src/blocks/hidden-extension/index.js:103
|
515 |
msgid ""
|
516 |
"Note : This function is display hidden only. Actually Block is output to "
|
517 |
"HTML.Pleade don't use you must not bisible item.Don't use it for blocks you "
|
518 |
"really don't want to display."
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: src/blocks/hidden-extension/index.js:109
|
522 |
msgid "Hidden ( Screen size : all )"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: src/blocks/hidden-extension/index.js:115
|
526 |
msgid "Hidden ( Screen size : xs )"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: src/blocks/hidden-extension/index.js:121
|
530 |
msgid "Hidden ( Screen size : sm )"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: src/blocks/hidden-extension/index.js:127
|
534 |
msgid "Hidden ( Screen size : md )"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: src/blocks/hidden-extension/index.js:133
|
538 |
msgid "Hidden ( Screen size : lg )"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: src/blocks/hidden-extension/index.js:139
|
542 |
msgid "Hidden ( Screen size : xl )"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: src/blocks/hidden-extension/index.js:145
|
546 |
msgid ""
|
547 |
"If you want to hide multiple blocks, that first you set to group block and "
|
548 |
"the next, hide for the that group block."
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: src/blocks/hidden-extension/index.js:98
|
552 |
msgid "Hidden Settings"
|
553 |
msgstr ""
|
554 |
|
|
|
|
|
|
|
|
|
555 |
#: src/blocks/highlighter/block.js:81
|
556 |
msgid "Highlight Color"
|
557 |
msgstr ""
|
616 |
msgid "List Icon Color"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: src/blocks/pr-blocks/block.js:169
|
620 |
msgid "PR Block1 Setting"
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: src/blocks/pr-blocks/block.js:184
|
624 |
msgid "Icon 1"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: src/blocks/pr-blocks/block.js:218
|
628 |
+
msgid "When you have an image. Image is displayed with priority"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: src/blocks/pr-blocks/block.js:220
|
632 |
+
msgid "PR Image 1"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: src/blocks/pr-blocks/block.js:236
|
636 |
msgid "PR Block2 Setting"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: src/blocks/pr-blocks/block.js:251
|
640 |
msgid "Icon 2"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: src/blocks/pr-blocks/block.js:286
|
644 |
msgid "PR Image 2"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: src/blocks/pr-blocks/block.js:302
|
648 |
msgid "PR Block3 Setting"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: src/blocks/pr-blocks/block.js:304
|
652 |
msgid "Link URL:"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: src/blocks/pr-blocks/block.js:317
|
656 |
msgid "Icon 3"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: src/blocks/pr-blocks/block.js:320
|
660 |
msgid "Class name of the Font Awesome icon font you want to use:"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: src/blocks/pr-blocks/block.js:339
|
664 |
msgid "Icon Background:"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: src/blocks/pr-blocks/block.js:350
|
668 |
+
msgid "When you have an image. Image is displayed with priority."
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: src/blocks/pr-blocks/block.js:352
|
672 |
+
msgid "PR Image 3"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: src/blocks/pr-blocks/block.js:82
|
676 |
msgid "PR Blocks"
|
677 |
msgstr ""
|
678 |
|
738 |
msgid "PR Content"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: src/blocks/pr-content/component.js:200
|
742 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:122
|
743 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:136
|
744 |
msgid "Input title."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: src/blocks/pr-content/component.js:208
|
748 |
#: src/blocks/pr-content/deprecated/component-deprecated.js:130
|
749 |
#: src/blocks/pr-content/deprecated/component-no-boder-color.js:144
|
750 |
msgid "Input content."
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: src/blocks/spacer/block.js:104
|
754 |
msgid "Tablet"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: src/blocks/spacer/block.js:110
|
758 |
msgid "Mobile"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: src/blocks/spacer/block.js:42
|
762 |
msgid "Responsive Spacer"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: src/blocks/spacer/block.js:74
|
766 |
msgid "Unit Type"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: src/blocks/spacer/block.js:80
|
770 |
msgid "px"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: src/blocks/spacer/block.js:84
|
774 |
msgid "em"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: src/blocks/spacer/block.js:88
|
778 |
msgid "rem"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: src/blocks/spacer/block.js:92
|
782 |
msgid "vw"
|
783 |
msgstr ""
|
784 |
|
785 |
+
#: src/blocks/spacer/block.js:96
|
786 |
msgid "Height for each device."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: src/blocks/spacer/block.js:98
|
790 |
msgid "PC"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: src/blocks/staff/block.js:105
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
794 |
msgid "Staff name"
|
795 |
msgstr ""
|
796 |
|
797 |
+
#: src/blocks/staff/block.js:113
|
798 |
msgid "Name caption"
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: src/blocks/staff/block.js:121
|
802 |
#: src/blocks/staff/component.js:58
|
803 |
msgid "Role position"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: src/blocks/staff/block.js:129
|
807 |
#: src/blocks/staff/component.js:66
|
808 |
msgid "Profile title"
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: src/blocks/staff/block.js:137
|
812 |
#: src/blocks/staff/component.js:74
|
813 |
msgid "Profile text"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: src/blocks/staff/block.js:41
|
817 |
msgid "Staff"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: src/blocks/staff/block.js:61
|
821 |
msgid "Layout"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: src/blocks/staff/block.js:72
|
825 |
msgid "Image left"
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: src/blocks/staff/block.js:77
|
829 |
msgid "Image border"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: src/blocks/staff/block.js:88
|
833 |
+
msgid "None"
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: src/blocks/staff/block.js:93
|
837 |
+
msgid "Alt text"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: src/blocks/staff/block.js:95
|
841 |
+
msgid "Set the alt text for profile image"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
#: src/blocks/staff/component.js:42
|
845 |
msgid "Your Name"
|
846 |
msgstr ""
|
849 |
msgid "Caption"
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: src/plugin/menu/sidebar.js:17
|
853 |
+
msgid "VK Blocks Templates"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
#: src/translation_dummy.js:2
|
857 |
msgid "Disabled Blocks module. Because VK-Blocks Plugin running."
|
858 |
msgstr ""
|
inc/vk-blocks/view/post-list.php
CHANGED
@@ -28,6 +28,10 @@ class VkBlocksPostList {
|
|
28 |
$options_loop = array( 'class_loop_outer' => '' );
|
29 |
}
|
30 |
|
|
|
|
|
|
|
|
|
31 |
if ( ! isset( $wp_query ) || $wp_query === false || $wp_query === 'false' || $wp_query->posts === array() ) {
|
32 |
return $this->renderNoPost();
|
33 |
}
|
@@ -62,7 +66,6 @@ class VkBlocksPostList {
|
|
62 |
'vkb_hidden_md' => $attributes['vkb_hidden_md'],
|
63 |
'vkb_hidden_sm' => $attributes['vkb_hidden_sm'],
|
64 |
'vkb_hidden_xs' => $attributes['vkb_hidden_xs'],
|
65 |
-
'class_loop_outer' => array( $attributes['className'] ),
|
66 |
);
|
67 |
|
68 |
$elm = VK_Component_Posts::get_loop( $wp_query, $options, $options_loop );
|
28 |
$options_loop = array( 'class_loop_outer' => '' );
|
29 |
}
|
30 |
|
31 |
+
if ( ! empty($attributes['className'] ) ){
|
32 |
+
$options_loop['class_loop_outer'] .= ' '.$attributes['className'];
|
33 |
+
}
|
34 |
+
|
35 |
if ( ! isset( $wp_query ) || $wp_query === false || $wp_query === 'false' || $wp_query->posts === array() ) {
|
36 |
return $this->renderNoPost();
|
37 |
}
|
66 |
'vkb_hidden_md' => $attributes['vkb_hidden_md'],
|
67 |
'vkb_hidden_sm' => $attributes['vkb_hidden_sm'],
|
68 |
'vkb_hidden_xs' => $attributes['vkb_hidden_xs'],
|
|
|
69 |
);
|
70 |
|
71 |
$elm = VK_Component_Posts::get_loop( $wp_query, $options, $options_loop );
|
inc/vk-blocks/vk-blocks-functions.php
CHANGED
@@ -56,6 +56,7 @@ function vkblocks_blocks_assets() {
|
|
56 |
'wp-plugins',
|
57 |
'wp-hooks',
|
58 |
'wp-api-fetch',
|
|
|
59 |
);
|
60 |
} else {
|
61 |
$dependency = array(
|
@@ -71,6 +72,7 @@ function vkblocks_blocks_assets() {
|
|
71 |
'wp-plugins',
|
72 |
'wp-hooks',
|
73 |
'wp-api-fetch',
|
|
|
74 |
);
|
75 |
}
|
76 |
wp_register_script(
|
@@ -98,27 +100,34 @@ function vkblocks_blocks_assets() {
|
|
98 |
|
99 |
if ( defined( 'GUTENBERG_VERSION' ) || version_compare( $wp_version, '5.0', '>=' ) ) {
|
100 |
|
101 |
-
$arr = array( 'alert', 'balloon', 'button', 'faq', 'flow', 'pr-blocks', 'pr-content', 'spacer', 'heading', 'staff', 'highlighter', 'list-style', 'group-style' );// REPLACE-FLAG : このコメントは削除しないで下さい。wp-create-gurten-template.shで削除する基準として左の[//REPLACE-FLAG]を使っています。
|
|
|
102 |
$common_attributes = array(
|
103 |
-
'vkb_hidden'
|
104 |
'type' => 'boolean',
|
105 |
-
'default' => false
|
|
|
106 |
'vkb_hidden_xl' => array(
|
107 |
'type' => 'boolean',
|
108 |
-
'default' => false
|
|
|
109 |
'vkb_hidden_lg' => array(
|
110 |
'type' => 'boolean',
|
111 |
-
'default' => false
|
|
|
112 |
'vkb_hidden_md' => array(
|
113 |
'type' => 'boolean',
|
114 |
-
'default' => false
|
|
|
115 |
'vkb_hidden_sm' => array(
|
116 |
'type' => 'boolean',
|
117 |
-
'default' => false
|
|
|
118 |
'vkb_hidden_xs' => array(
|
119 |
'type' => 'boolean',
|
120 |
-
'default' => false
|
121 |
-
)
|
|
|
122 |
|
123 |
foreach ( $arr as $value ) {
|
124 |
|
@@ -132,27 +141,29 @@ function vkblocks_blocks_assets() {
|
|
132 |
'editor_script' => 'vk-blocks-build-js',
|
133 |
'attributes' => array_merge(
|
134 |
array(
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
|
|
150 |
),
|
151 |
-
|
|
|
152 |
'render_callback' => function ( $attributes ) {
|
153 |
if ( $attributes['renderHtml'] ) {
|
154 |
-
$custom_class = esc_attr($attributes['className']) . ' ';
|
155 |
-
return preg_replace('/class="/', 'class="' . $custom_class
|
156 |
} else {
|
157 |
return '<div><div class="vk_tableOfContents_title">' . __( 'Table of Contents', 'vk-blocks' ) . '</div></div>';
|
158 |
}
|
@@ -160,18 +171,136 @@ function vkblocks_blocks_assets() {
|
|
160 |
)
|
161 |
);
|
162 |
} elseif ( $value == 'post-list' ) {
|
163 |
-
|
164 |
register_block_type(
|
165 |
'vk-blocks/' . $value,
|
166 |
array(
|
167 |
'attributes' => array_merge(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
array(
|
|
|
|
|
|
|
169 |
'name' => array(
|
170 |
-
'type'
|
|
|
171 |
),
|
172 |
'layout' => array(
|
173 |
'type' => 'string',
|
174 |
-
'default' => 'card',
|
175 |
),
|
176 |
'col_xs' => array(
|
177 |
'type' => 'number',
|
@@ -183,15 +312,15 @@ function vkblocks_blocks_assets() {
|
|
183 |
),
|
184 |
'col_md' => array(
|
185 |
'type' => 'number',
|
186 |
-
'default' =>
|
187 |
),
|
188 |
'col_lg' => array(
|
189 |
'type' => 'number',
|
190 |
-
'default' =>
|
191 |
),
|
192 |
'col_xl' => array(
|
193 |
'type' => 'number',
|
194 |
-
'default' =>
|
195 |
),
|
196 |
'display_image' => array(
|
197 |
'type' => 'boolean',
|
@@ -203,19 +332,19 @@ function vkblocks_blocks_assets() {
|
|
203 |
),
|
204 |
'display_excerpt' => array(
|
205 |
'type' => 'boolean',
|
206 |
-
'default' =>
|
207 |
),
|
208 |
'display_date' => array(
|
209 |
'type' => 'boolean',
|
210 |
-
'default' =>
|
211 |
),
|
212 |
'display_new' => array(
|
213 |
'type' => 'boolean',
|
214 |
-
'default' =>
|
215 |
),
|
216 |
'display_btn' => array(
|
217 |
'type' => 'boolean',
|
218 |
-
'default' =>
|
219 |
),
|
220 |
'new_date' => array(
|
221 |
'type' => 'number',
|
@@ -249,129 +378,17 @@ function vkblocks_blocks_assets() {
|
|
249 |
'type' => 'string',
|
250 |
'default' => '[]',
|
251 |
),
|
252 |
-
'
|
253 |
'type' => 'string',
|
254 |
-
'default' => '
|
255 |
-
),
|
256 |
-
'offset' => array(
|
257 |
-
'type' => 'number',
|
258 |
-
'default' => 0,
|
259 |
),
|
260 |
'selfIgnore' => array(
|
261 |
'type' => 'boolean',
|
262 |
'default' => false,
|
263 |
),
|
264 |
-
'className' => array(
|
265 |
-
'type' => 'string',
|
266 |
-
'default' => '',
|
267 |
-
),
|
268 |
-
),$common_attributes),
|
269 |
-
// 'style' => 'vk-blocks-build-css',
|
270 |
-
'editor_style' => 'vk-blocks-build-editor-css',
|
271 |
-
'editor_script' => 'vk-blocks-build-js',
|
272 |
-
'render_callback' => 'vk_blocks_render_post_list',
|
273 |
-
)
|
274 |
-
); // register_block_type(
|
275 |
-
} elseif ( $value == 'child-page' ) {
|
276 |
-
|
277 |
-
register_block_type(
|
278 |
-
'vk-blocks/' . $value,
|
279 |
-
array(
|
280 |
-
'attributes' => array_merge(
|
281 |
-
array(
|
282 |
-
'selectId' => array(
|
283 |
-
'type' => 'number',
|
284 |
-
),
|
285 |
-
'name' => array(
|
286 |
-
'type' => 'string',
|
287 |
-
'default' => '',
|
288 |
-
),
|
289 |
-
'layout' => array(
|
290 |
-
'type' => 'string',
|
291 |
-
'default' => 'card-horizontal',
|
292 |
-
),
|
293 |
-
'col_xs' => array(
|
294 |
-
'type' => 'number',
|
295 |
-
'default' => 1,
|
296 |
-
),
|
297 |
-
'col_sm' => array(
|
298 |
-
'type' => 'number',
|
299 |
-
'default' => 2,
|
300 |
-
),
|
301 |
-
'col_md' => array(
|
302 |
-
'type' => 'number',
|
303 |
-
'default' => 2,
|
304 |
-
),
|
305 |
-
'col_lg' => array(
|
306 |
-
'type' => 'number',
|
307 |
-
'default' => 2,
|
308 |
-
),
|
309 |
-
'col_xl' => array(
|
310 |
-
'type' => 'number',
|
311 |
-
'default' => 2,
|
312 |
-
),
|
313 |
-
'display_image' => array(
|
314 |
-
'type' => 'boolean',
|
315 |
-
'default' => true,
|
316 |
-
),
|
317 |
-
'display_image_overlay_term' => array(
|
318 |
-
'type' => 'boolean',
|
319 |
-
'default' => true,
|
320 |
),
|
321 |
-
|
322 |
-
|
323 |
-
'default' => true,
|
324 |
-
),
|
325 |
-
'display_date' => array(
|
326 |
-
'type' => 'boolean',
|
327 |
-
'default' => false,
|
328 |
-
),
|
329 |
-
'display_new' => array(
|
330 |
-
'type' => 'boolean',
|
331 |
-
'default' => false,
|
332 |
-
),
|
333 |
-
'display_btn' => array(
|
334 |
-
'type' => 'boolean',
|
335 |
-
'default' => true,
|
336 |
-
),
|
337 |
-
'new_date' => array(
|
338 |
-
'type' => 'number',
|
339 |
-
'default' => 7,
|
340 |
-
),
|
341 |
-
'new_text' => array(
|
342 |
-
'type' => 'string',
|
343 |
-
'default' => 'New!!',
|
344 |
-
),
|
345 |
-
'btn_text' => array(
|
346 |
-
'type' => 'string',
|
347 |
-
'default' => 'Read more',
|
348 |
-
),
|
349 |
-
'btn_align' => array(
|
350 |
-
'type' => 'string',
|
351 |
-
'default' => 'text-right',
|
352 |
-
),
|
353 |
-
'numberPosts' => array(
|
354 |
-
'type' => 'number',
|
355 |
-
'default' => 6,
|
356 |
-
),
|
357 |
-
'isCheckedPostType' => array(
|
358 |
-
'type' => 'string',
|
359 |
-
'default' => '["post"]',
|
360 |
-
),
|
361 |
-
'coreTerms' => array(
|
362 |
-
'type' => 'string',
|
363 |
-
'default' => '{}',
|
364 |
-
),
|
365 |
-
'isCheckedTerms' => array(
|
366 |
-
'type' => 'string',
|
367 |
-
'default' => '[]',
|
368 |
-
),
|
369 |
-
'className' => array(
|
370 |
-
'type' => 'string',
|
371 |
-
'default' => '',
|
372 |
-
),
|
373 |
-
),$common_attributes),
|
374 |
-
// 'style' => 'vk-blocks-build-css',
|
375 |
'editor_style' => 'vk-blocks-build-editor-css',
|
376 |
'editor_script' => 'vk-blocks-build-js',
|
377 |
'render_callback' => 'vk_blocks_render_post_list',
|
@@ -381,7 +398,7 @@ function vkblocks_blocks_assets() {
|
|
381 |
|
382 |
register_block_type(
|
383 |
'vk-blocks/' . $value,
|
384 |
-
array(
|
385 |
// 'style' => 'vk-blocks-build-css',
|
386 |
'editor_style' => 'vk-blocks-build-editor-css',
|
387 |
'editor_script' => 'vk-blocks-build-js',
|
@@ -400,43 +417,39 @@ if ( ! function_exists( 'vkblocks_blocks_categories' ) ) {
|
|
400 |
function vkblocks_blocks_categories( $categories, $post ) {
|
401 |
global $vk_blocks_prefix;
|
402 |
|
403 |
-
|
404 |
-
$categories
|
405 |
-
|
406 |
array(
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
$categories = array_merge(
|
417 |
-
$categories,
|
418 |
array(
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
}
|
427 |
-
// if ( ! vk_is_block_category_exist( $categories, 'vk-blocks-cat-widget' ) ) {
|
428 |
-
// $categories = array_merge(
|
429 |
-
// $categories,
|
430 |
-
// array(
|
431 |
-
// array(
|
432 |
-
// 'slug' => 'vk-blocks-cat-widget',
|
433 |
-
// 'title' => $vk_blocks_prefix . __( 'Blocks Widget', 'vk-all-in-one-expansion-unit' ),
|
434 |
-
// 'icon' => '<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M0 0h24v24H0V0z" /><path d="M19 13H5v-2h14v2z" /></svg>',
|
435 |
-
// ),
|
436 |
-
// )
|
437 |
-
// );
|
438 |
-
// }
|
439 |
return $categories;
|
440 |
}
|
|
|
441 |
add_filter( 'block_categories', 'vkblocks_blocks_categories', 10, 2 );
|
442 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
'wp-plugins',
|
57 |
'wp-hooks',
|
58 |
'wp-api-fetch',
|
59 |
+
'wp-viewport',
|
60 |
);
|
61 |
} else {
|
62 |
$dependency = array(
|
72 |
'wp-plugins',
|
73 |
'wp-hooks',
|
74 |
'wp-api-fetch',
|
75 |
+
'wp-viewport',
|
76 |
);
|
77 |
}
|
78 |
wp_register_script(
|
100 |
|
101 |
if ( defined( 'GUTENBERG_VERSION' ) || version_compare( $wp_version, '5.0', '>=' ) ) {
|
102 |
|
103 |
+
$arr = array( 'alert', 'balloon', 'button', 'faq', 'flow', 'pr-blocks', 'pr-content', 'spacer', 'heading', 'staff', 'highlighter', 'list-style', 'group-style', 'border-box' );// REPLACE-FLAG : このコメントは削除しないで下さい。wp-create-gurten-template.shで削除する基準として左の[//REPLACE-FLAG]を使っています。
|
104 |
+
|
105 |
$common_attributes = array(
|
106 |
+
'vkb_hidden' => array(
|
107 |
'type' => 'boolean',
|
108 |
+
'default' => false,
|
109 |
+
),
|
110 |
'vkb_hidden_xl' => array(
|
111 |
'type' => 'boolean',
|
112 |
+
'default' => false,
|
113 |
+
),
|
114 |
'vkb_hidden_lg' => array(
|
115 |
'type' => 'boolean',
|
116 |
+
'default' => false,
|
117 |
+
),
|
118 |
'vkb_hidden_md' => array(
|
119 |
'type' => 'boolean',
|
120 |
+
'default' => false,
|
121 |
+
),
|
122 |
'vkb_hidden_sm' => array(
|
123 |
'type' => 'boolean',
|
124 |
+
'default' => false,
|
125 |
+
),
|
126 |
'vkb_hidden_xs' => array(
|
127 |
'type' => 'boolean',
|
128 |
+
'default' => false,
|
129 |
+
),
|
130 |
+
);
|
131 |
|
132 |
foreach ( $arr as $value ) {
|
133 |
|
141 |
'editor_script' => 'vk-blocks-build-js',
|
142 |
'attributes' => array_merge(
|
143 |
array(
|
144 |
+
'style' => array(
|
145 |
+
'type' => 'string',
|
146 |
+
'default' => '',
|
147 |
+
),
|
148 |
+
'renderHtml' => array(
|
149 |
+
'type' => 'string',
|
150 |
+
'default' => '',
|
151 |
+
),
|
152 |
+
'open' => array(
|
153 |
+
'type' => 'string',
|
154 |
+
'default' => 'open',
|
155 |
+
),
|
156 |
+
'className' => array(
|
157 |
+
'type' => 'string',
|
158 |
+
'default' => '',
|
159 |
+
),
|
160 |
),
|
161 |
+
$common_attributes
|
162 |
+
),
|
163 |
'render_callback' => function ( $attributes ) {
|
164 |
if ( $attributes['renderHtml'] ) {
|
165 |
+
$custom_class = esc_attr( $attributes['className'] ) . ' ';
|
166 |
+
return preg_replace( '/class="/', 'class="' . $custom_class, $attributes['renderHtml'], 1 );
|
167 |
} else {
|
168 |
return '<div><div class="vk_tableOfContents_title">' . __( 'Table of Contents', 'vk-blocks' ) . '</div></div>';
|
169 |
}
|
171 |
)
|
172 |
);
|
173 |
} elseif ( $value == 'post-list' ) {
|
|
|
174 |
register_block_type(
|
175 |
'vk-blocks/' . $value,
|
176 |
array(
|
177 |
'attributes' => array_merge(
|
178 |
+
array(
|
179 |
+
'name' => array(
|
180 |
+
'type' => 'string',
|
181 |
+
),
|
182 |
+
'layout' => array(
|
183 |
+
'type' => 'string',
|
184 |
+
'default' => 'card',
|
185 |
+
),
|
186 |
+
'col_xs' => array(
|
187 |
+
'type' => 'number',
|
188 |
+
'default' => 1,
|
189 |
+
),
|
190 |
+
'col_sm' => array(
|
191 |
+
'type' => 'number',
|
192 |
+
'default' => 2,
|
193 |
+
),
|
194 |
+
'col_md' => array(
|
195 |
+
'type' => 'number',
|
196 |
+
'default' => 3,
|
197 |
+
),
|
198 |
+
'col_lg' => array(
|
199 |
+
'type' => 'number',
|
200 |
+
'default' => 3,
|
201 |
+
),
|
202 |
+
'col_xl' => array(
|
203 |
+
'type' => 'number',
|
204 |
+
'default' => 3,
|
205 |
+
),
|
206 |
+
'display_image' => array(
|
207 |
+
'type' => 'boolean',
|
208 |
+
'default' => true,
|
209 |
+
),
|
210 |
+
'display_image_overlay_term' => array(
|
211 |
+
'type' => 'boolean',
|
212 |
+
'default' => true,
|
213 |
+
),
|
214 |
+
'display_excerpt' => array(
|
215 |
+
'type' => 'boolean',
|
216 |
+
'default' => false,
|
217 |
+
),
|
218 |
+
'display_date' => array(
|
219 |
+
'type' => 'boolean',
|
220 |
+
'default' => true,
|
221 |
+
),
|
222 |
+
'display_new' => array(
|
223 |
+
'type' => 'boolean',
|
224 |
+
'default' => true,
|
225 |
+
),
|
226 |
+
'display_btn' => array(
|
227 |
+
'type' => 'boolean',
|
228 |
+
'default' => false,
|
229 |
+
),
|
230 |
+
'new_date' => array(
|
231 |
+
'type' => 'number',
|
232 |
+
'default' => 7,
|
233 |
+
),
|
234 |
+
'new_text' => array(
|
235 |
+
'type' => 'string',
|
236 |
+
'default' => 'New!!',
|
237 |
+
),
|
238 |
+
'btn_text' => array(
|
239 |
+
'type' => 'string',
|
240 |
+
'default' => 'Read more',
|
241 |
+
),
|
242 |
+
'btn_align' => array(
|
243 |
+
'type' => 'string',
|
244 |
+
'default' => 'text-right',
|
245 |
+
),
|
246 |
+
'numberPosts' => array(
|
247 |
+
'type' => 'number',
|
248 |
+
'default' => 6,
|
249 |
+
),
|
250 |
+
'isCheckedPostType' => array(
|
251 |
+
'type' => 'string',
|
252 |
+
'default' => '["post"]',
|
253 |
+
),
|
254 |
+
'coreTerms' => array(
|
255 |
+
'type' => 'string',
|
256 |
+
'default' => '{}',
|
257 |
+
),
|
258 |
+
'isCheckedTerms' => array(
|
259 |
+
'type' => 'string',
|
260 |
+
'default' => '[]',
|
261 |
+
),
|
262 |
+
'orderby' => array(
|
263 |
+
'type' => 'string',
|
264 |
+
'default' => 'date',
|
265 |
+
),
|
266 |
+
'offset' => array(
|
267 |
+
'type' => 'number',
|
268 |
+
'default' => 0,
|
269 |
+
),
|
270 |
+
'selfIgnore' => array(
|
271 |
+
'type' => 'boolean',
|
272 |
+
'default' => false,
|
273 |
+
),
|
274 |
+
'className' => array(
|
275 |
+
'type' => 'string',
|
276 |
+
'default' => '',
|
277 |
+
),
|
278 |
+
),
|
279 |
+
$common_attributes
|
280 |
+
),
|
281 |
+
// 'style' => 'vk-blocks-build-css',
|
282 |
+
'editor_style' => 'vk-blocks-build-editor-css',
|
283 |
+
'editor_script' => 'vk-blocks-build-js',
|
284 |
+
'render_callback' => 'vk_blocks_render_post_list',
|
285 |
+
)
|
286 |
+
); // register_block_type(
|
287 |
+
} elseif ( $value == 'child-page' ) {
|
288 |
+
|
289 |
+
register_block_type(
|
290 |
+
'vk-blocks/' . $value,
|
291 |
+
array(
|
292 |
+
'attributes' => array_merge(
|
293 |
array(
|
294 |
+
'selectId' => array(
|
295 |
+
'type' => 'number',
|
296 |
+
),
|
297 |
'name' => array(
|
298 |
+
'type' => 'string',
|
299 |
+
'default' => '',
|
300 |
),
|
301 |
'layout' => array(
|
302 |
'type' => 'string',
|
303 |
+
'default' => 'card-horizontal',
|
304 |
),
|
305 |
'col_xs' => array(
|
306 |
'type' => 'number',
|
312 |
),
|
313 |
'col_md' => array(
|
314 |
'type' => 'number',
|
315 |
+
'default' => 2,
|
316 |
),
|
317 |
'col_lg' => array(
|
318 |
'type' => 'number',
|
319 |
+
'default' => 2,
|
320 |
),
|
321 |
'col_xl' => array(
|
322 |
'type' => 'number',
|
323 |
+
'default' => 2,
|
324 |
),
|
325 |
'display_image' => array(
|
326 |
'type' => 'boolean',
|
332 |
),
|
333 |
'display_excerpt' => array(
|
334 |
'type' => 'boolean',
|
335 |
+
'default' => true,
|
336 |
),
|
337 |
'display_date' => array(
|
338 |
'type' => 'boolean',
|
339 |
+
'default' => false,
|
340 |
),
|
341 |
'display_new' => array(
|
342 |
'type' => 'boolean',
|
343 |
+
'default' => false,
|
344 |
),
|
345 |
'display_btn' => array(
|
346 |
'type' => 'boolean',
|
347 |
+
'default' => true,
|
348 |
),
|
349 |
'new_date' => array(
|
350 |
'type' => 'number',
|
378 |
'type' => 'string',
|
379 |
'default' => '[]',
|
380 |
),
|
381 |
+
'className' => array(
|
382 |
'type' => 'string',
|
383 |
+
'default' => '',
|
|
|
|
|
|
|
|
|
384 |
),
|
385 |
'selfIgnore' => array(
|
386 |
'type' => 'boolean',
|
387 |
'default' => false,
|
388 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
389 |
),
|
390 |
+
$common_attributes
|
391 |
+
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
'editor_style' => 'vk-blocks-build-editor-css',
|
393 |
'editor_script' => 'vk-blocks-build-js',
|
394 |
'render_callback' => 'vk_blocks_render_post_list',
|
398 |
|
399 |
register_block_type(
|
400 |
'vk-blocks/' . $value,
|
401 |
+
array(
|
402 |
// 'style' => 'vk-blocks-build-css',
|
403 |
'editor_style' => 'vk-blocks-build-editor-css',
|
404 |
'editor_script' => 'vk-blocks-build-js',
|
417 |
function vkblocks_blocks_categories( $categories, $post ) {
|
418 |
global $vk_blocks_prefix;
|
419 |
|
420 |
+
$categories = array_merge(
|
421 |
+
$categories,
|
422 |
+
array(
|
423 |
array(
|
424 |
+
'slug' => 'vk-blocks-cat',
|
425 |
+
'title' => $vk_blocks_prefix . __( 'Blocks', 'vk-all-in-one-expansion-unit' ),
|
426 |
+
'icon' => '',
|
427 |
+
),
|
428 |
+
)
|
429 |
+
);
|
430 |
+
$categories = array_merge(
|
431 |
+
$categories,
|
432 |
+
array(
|
|
|
|
|
433 |
array(
|
434 |
+
'slug' => 'vk-blocks-cat-layout',
|
435 |
+
'title' => $vk_blocks_prefix . __( 'Blocks Layout', 'vk-all-in-one-expansion-unit' ),
|
436 |
+
'icon' => '<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="none" d="M0 0h24v24H0V0z" /><path d="M19 13H5v-2h14v2z" /></svg>',
|
437 |
+
),
|
438 |
+
)
|
439 |
+
);
|
440 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
return $categories;
|
442 |
}
|
443 |
+
|
444 |
add_filter( 'block_categories', 'vkblocks_blocks_categories', 10, 2 );
|
445 |
}
|
446 |
+
|
447 |
+
if ( ! function_exists( 'vkblocks_set_wp_version' ) ) {
|
448 |
+
function vkblocks_set_wp_version() {
|
449 |
+
global $wp_version;
|
450 |
+
echo '<script>',
|
451 |
+
'var wpVersion = "' . $wp_version . '";',
|
452 |
+
'</script>';
|
453 |
+
}
|
454 |
+
add_action( 'admin_head', 'vkblocks_set_wp_version', 10, 0 );
|
455 |
+
}
|
inc/vk-components/package/_scss/_vk-post.scss
CHANGED
@@ -33,6 +33,9 @@ $xl-min: 1200px;
|
|
33 |
/*-------------------------------------------*/
|
34 |
/* If exclude the .vk_posts that, when you select the .media don't work */
|
35 |
.vk_posts .vk_post-col {
|
|
|
|
|
|
|
36 |
&-xs-3 {
|
37 |
width: calc(25% - 30px);
|
38 |
}
|
@@ -46,6 +49,9 @@ $xl-min: 1200px;
|
|
46 |
width: calc(100% - 30px);
|
47 |
}
|
48 |
@media (min-width: $sm-min) {
|
|
|
|
|
|
|
49 |
&-sm-3 {
|
50 |
width: calc(25% - 30px);
|
51 |
}
|
@@ -60,6 +66,9 @@ $xl-min: 1200px;
|
|
60 |
}
|
61 |
}
|
62 |
@media (min-width: $md-min) {
|
|
|
|
|
|
|
63 |
&-md-3 {
|
64 |
width: calc(25% - 30px);
|
65 |
}
|
@@ -74,6 +83,9 @@ $xl-min: 1200px;
|
|
74 |
}
|
75 |
}
|
76 |
@media (min-width: $lg-min) {
|
|
|
|
|
|
|
77 |
&-lg-3 {
|
78 |
width: calc(25% - 30px);
|
79 |
}
|
@@ -88,6 +100,9 @@ $xl-min: 1200px;
|
|
88 |
}
|
89 |
}
|
90 |
@media (min-width: $xl-min) {
|
|
|
|
|
|
|
91 |
&-xl-3 {
|
92 |
width: calc(25% - 30px);
|
93 |
}
|
33 |
/*-------------------------------------------*/
|
34 |
/* If exclude the .vk_posts that, when you select the .media don't work */
|
35 |
.vk_posts .vk_post-col {
|
36 |
+
&-xs-2 {
|
37 |
+
width: calc(16.66% - 30px);
|
38 |
+
}
|
39 |
&-xs-3 {
|
40 |
width: calc(25% - 30px);
|
41 |
}
|
49 |
width: calc(100% - 30px);
|
50 |
}
|
51 |
@media (min-width: $sm-min) {
|
52 |
+
&-sm-2 {
|
53 |
+
width: calc(16.66% - 30px);
|
54 |
+
}
|
55 |
&-sm-3 {
|
56 |
width: calc(25% - 30px);
|
57 |
}
|
66 |
}
|
67 |
}
|
68 |
@media (min-width: $md-min) {
|
69 |
+
&-md-2 {
|
70 |
+
width: calc(16.66% - 30px);
|
71 |
+
}
|
72 |
&-md-3 {
|
73 |
width: calc(25% - 30px);
|
74 |
}
|
83 |
}
|
84 |
}
|
85 |
@media (min-width: $lg-min) {
|
86 |
+
&-lg-2 {
|
87 |
+
width: calc(16.66% - 30px);
|
88 |
+
}
|
89 |
&-lg-3 {
|
90 |
width: calc(25% - 30px);
|
91 |
}
|
100 |
}
|
101 |
}
|
102 |
@media (min-width: $xl-min) {
|
103 |
+
&-xl-2 {
|
104 |
+
width: calc(16.66% - 30px);
|
105 |
+
}
|
106 |
&-xl-3 {
|
107 |
width: calc(25% - 30px);
|
108 |
}
|
inc/vk-components/package/class-vk-component-posts.php
CHANGED
@@ -31,9 +31,9 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
31 |
'display_btn' => false,
|
32 |
'image_default_url' => false,
|
33 |
'overlay' => false,
|
34 |
-
'btn_text' => __( 'Read more',
|
35 |
'btn_align' => 'text-right',
|
36 |
-
'new_text' => __( 'New!!',
|
37 |
'new_date' => 7,
|
38 |
'textlink' => true,
|
39 |
'class_outer' => '',
|
@@ -251,7 +251,7 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
251 |
if ( $img ) {
|
252 |
$html .= $img;
|
253 |
} elseif ( $options['image_default_url'] ) {
|
254 |
-
$html .= '<img src="' . esc_url( $options['image_default_url'] ) . '" alt="" class="' . $image_class . '" />';
|
255 |
}
|
256 |
$html .= '</a>';
|
257 |
$html .= '</div><!-- [ /.vk_post_imgOuter ] -->';
|
@@ -357,22 +357,22 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
357 |
/*-------------------------------------------*/
|
358 |
|
359 |
public static function get_patterns() {
|
360 |
-
|
361 |
$patterns = array(
|
362 |
'card' => array(
|
363 |
-
'label' => __( 'Card', 'vk-
|
364 |
'class_posts_outer' => '',
|
365 |
),
|
366 |
'card-horizontal' => array(
|
367 |
-
'label' => __( 'Card Horizontal', 'vk-
|
368 |
'class_posts_outer' => '',
|
369 |
),
|
370 |
'media' => array(
|
371 |
-
'label' => __( 'Media', 'vk-
|
372 |
'class_posts_outer' => 'media-outer',
|
373 |
),
|
374 |
'postListText' => array(
|
375 |
-
'label' => _x( 'Text 1 Column', 'post list type', 'vk-
|
376 |
'class_posts_outer' => 'postListText-outer',
|
377 |
),
|
378 |
);
|
@@ -530,7 +530,11 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
530 |
$col = 4;
|
531 |
} elseif ( $input_col == 4 ) {
|
532 |
$col = 3;
|
533 |
-
}
|
|
|
|
|
|
|
|
|
534 |
return strval( $col );
|
535 |
}
|
536 |
|
31 |
'display_btn' => false,
|
32 |
'image_default_url' => false,
|
33 |
'overlay' => false,
|
34 |
+
'btn_text' => __( 'Read more', 'vk-block' ),
|
35 |
'btn_align' => 'text-right',
|
36 |
+
'new_text' => __( 'New!!', 'vk-block' ),
|
37 |
'new_date' => 7,
|
38 |
'textlink' => true,
|
39 |
'class_outer' => '',
|
251 |
if ( $img ) {
|
252 |
$html .= $img;
|
253 |
} elseif ( $options['image_default_url'] ) {
|
254 |
+
$html .= '<img src="' . esc_url( $options['image_default_url'] ) . '" alt="" class="' . $image_class . '" loading="lazy" />';
|
255 |
}
|
256 |
$html .= '</a>';
|
257 |
$html .= '</div><!-- [ /.vk_post_imgOuter ] -->';
|
357 |
/*-------------------------------------------*/
|
358 |
|
359 |
public static function get_patterns() {
|
360 |
+
global $vk_components_textdomain;
|
361 |
$patterns = array(
|
362 |
'card' => array(
|
363 |
+
'label' => __( 'Card', 'vk-block' ),
|
364 |
'class_posts_outer' => '',
|
365 |
),
|
366 |
'card-horizontal' => array(
|
367 |
+
'label' => __( 'Card Horizontal', 'vk-block' ),
|
368 |
'class_posts_outer' => '',
|
369 |
),
|
370 |
'media' => array(
|
371 |
+
'label' => __( 'Media', 'vk-block' ),
|
372 |
'class_posts_outer' => 'media-outer',
|
373 |
),
|
374 |
'postListText' => array(
|
375 |
+
'label' => _x( 'Text 1 Column', 'post list type', 'vk-block' ),
|
376 |
'class_posts_outer' => 'postListText-outer',
|
377 |
),
|
378 |
);
|
530 |
$col = 4;
|
531 |
} elseif ( $input_col == 4 ) {
|
532 |
$col = 3;
|
533 |
+
} elseif ( $input_col == 6 ) {
|
534 |
+
$col = 2;
|
535 |
+
} else {
|
536 |
+
$col = 4;
|
537 |
+
}
|
538 |
return strval( $col );
|
539 |
}
|
540 |
|
inc/vk-components/package/css/vk-components.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.vk_posts .vk_post-col-xs-3{width:calc(25% - 30px)}.vk_posts .vk_post-col-xs-4{width:calc(33.3% - 30px)}.vk_posts .vk_post-col-xs-6{width:calc(50% - 30px)}.vk_posts .vk_post-col-xs-12{width:calc(100% - 30px)}.vk_posts{margin-left:-15px;margin-right:-15px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;clear:both}.vk_post{margin-left:15px;margin-right:15px}.vk_post a:hover{text-decoration:none}.vk_post_imgOuter{position:relative}.vk_post_imgOuter a{display:block;overflow:hidden}.vk_post_imgOuter_singleTermLabel{font-size:10px;padding:.3em .8em;position:absolute;right:0;top:0;z-index:100}.vk_post .vk_post_title{font-size:14px;line-height:1.4;font-weight:700;margin-bottom:0}.vk_post .vk_post_title a{color:#333}.vk_post_title_new{margin-left:.4em;font-size:.8em;white-space:nowrap;color:red}.vk_post .vk_post_excerpt{margin-top:.8em;font-size:12px;line-height:1.6;opacity:.8}.vk_post .vk_post_date{font-size:11px;margin-top:.5em;color:#666}.vk_post .vk_post_btn{font-size:12px;text-decoration:none}.vk_post_imgOuter{position:relative;background-size:cover;background-position:center 50%;border-bottom:1px solid #e5e5e5}.vk_post_imgOuter ::after{content:"";position:absolute;top:0;left:0;height:100%;width:100%;background:rgba(0,0,0,0);-webkit-transition-duration:.3s;transition-duration:.3s}.vk_post_imgOuter a:hover .card-img-overlay::after{background:rgba(0,0,0,.5)}.vk_post_imgOuter a{height:100%}.vk_post_imgOuter_img{position:absolute;left:-9999px}.vk_post:not(.card-horizontal) .vk_post_imgOuter:before{content:"";display:block;padding-top:62%}.vk_post.card-horizontal .vk_post_imgOuter{height:100%;border-bottom:none}.vk_post-btn-display .vk_post_body{position:relative;height:100%}.vk_post-btn-display .vk_post_btnOuter{margin-top:1em;position:absolute;bottom:0}.vk_post-btn-display.media .vk_post_body{padding-bottom:45px}.vk_post-btn-display.media .vk_post_btnOuter{width:100%}.vk_post-btn-display.card .vk_post_body{padding-bottom:65px}.vk_post-btn-display.card .vk_post_btnOuter{width:calc(100% - 2.5rem);bottom:1.25rem}.vk_post-btn-display .card-text:nth-last-child(2){margin-bottom:0}.mainSection .wp-block-column .vk_post-col-lg-12 .vk_post_title,.mainSection .wp-block-column .vk_post-col-md-12 .vk_post_title,.mainSection .wp-block-column .vk_post-col-sm-12 .vk_post_title,.mainSection .wp-block-column .vk_post-col-xl-12 .vk_post_title{font-size:1rem}.mainSection .wp-block-column .vk_post-col-lg-12 .vk_post_excerpt,.mainSection .wp-block-column .vk_post-col-md-12 .vk_post_excerpt,.mainSection .wp-block-column .vk_post-col-sm-12 .vk_post_excerpt,.mainSection .wp-block-column .vk_post-col-xl-12 .vk_post_excerpt{font-size:12px}.vk_post.card{padding:0;margin-bottom:30px;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:100%}.vk_post.card .vk_post_btnOuter{width:calc(100% - 2.5rem)}.card{overflow:hidden;-webkit-box-shadow:none;box-shadow:none}.card-meta{font-size:12px}.card-img-use-bg{position:relative;left:-9999px}.card a{color:inherit}.card-noborder.card{border:none;background:0 0}.card-noborder .vk_post_imgOuter{border:none}.card-noborder .card-body{padding-left:0;padding-right:0}.card-noborder.vk_post-btn-display .card-body{padding-bottom:2.8rem}.card-noborder.vk_post-btn-display .vk_post_btnOuter{width:100%;bottom:0}.card-horizontal-inner{height:100%}.card-horizontal-inner::after{content:"";display:block;clear:both}.card-horizontal-inner-row{height:100%}.card-horizontal-img-right-row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.card-horizontal-reverse .row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.card-horizontal .card-body{height:100%}.card-sm .card-body{padding:1rem 1.2rem}.card-sm .card-title{font-size:.8rem}.card-sm .card-text{font-size:.8rem;line-height:1.4}.card-sm .card-meta{font-size:.7rem;line-height:1.1}.card-post .card-body{padding-bottom:1.5em}.vk_post.media{width:100%;padding:1em 0;margin:0 15px;border-bottom:1px solid #e5e5e5}.media:first-child{border-top:1px solid #e5e5e5}.media-img{border:1px solid #e5e5e5;padding:1px;margin-right:1rem}.vk_post .media-img{width:35%}.vk_post .media-body{width:65%}.media.vk_post-col-xs-6:first-child,.media.vk_post-col-xs-6:nth-child(2){border-top:1px solid #e5e5e5}.media{border-bottom:1px solid #e5e5e5;padding:1rem 0;margin-top:0}.media>div{width:100%}.media .postList_thumbnail{width:160px;margin-bottom:.5em;padding-right:30px;display:block;overflow:hidden;float:left}.media .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.media .postList_thumbnail img{width:100%;height:auto;border:1px solid #fff}.media .postList_thumbnail .postList_cateLabel{position:absolute;bottom:0;left:0}.media .media-body .media-heading{font-size:20px;line-height:1.4em;margin-top:0;margin-bottom:.4em;font-weight:400;background:0 0;-webkit-box-shadow:none;box-shadow:none;padding:0}.media .media-body .media-heading a{color:#464646}.media .media-body .media-heading a:hover{text-decoration:none}.media p{margin-bottom:0;font-size:14px;line-height:150%}.media .entry-meta_updated{display:none}.media .entry-meta_items_author{display:none}.media a.media-body_excerpt{color:#464646;display:block;overflow:hidden}.vk_posts-layout-postListText{margin-bottom:.8rem}.postListText{padding:.8rem 0 .7rem;border-bottom:1px dotted #ccc;display:block;overflow:hidden;width:100%}.postListText_date{font-size:1rem;white-space:nowrap;font-size:14px;display:block;float:left;min-width:115px;margin-right:1em}.postListText_singleTermLabel{padding:0;display:block;float:left;min-width:150px;margin-right:1em;margin-top:2px}.postListText_singleTermLabel_inner{display:block;overflow:hidden;font-size:12px;white-space:nowrap;padding:0 1rem;line-height:16px;border-radius:2px;text-align:center}.postListText_title{font-size:14px;line-height:1.6;display:block;overflow:hidden;margin:0;padding-top:.2rem}.postListText_title a{color:var(--text-color)}.postListText_title a:hover{text-decoration:underline}@media (min-width:576px){.vk_posts .vk_post-col-sm-3{width:calc(25% - 30px)}.vk_posts .vk_post-col-sm-4{width:calc(33.3% - 30px)}.vk_posts .vk_post-col-sm-6{width:calc(50% - 30px)}.vk_posts .vk_post-col-sm-12{width:calc(100% - 30px)}.mainSection .vk_post-col-sm-12 .vk_post_title{font-size:16px}.mainSection .vk_post-col-sm-12 .vk_post_excerpt{font-size:14px}.mainSection .vk_post-col-sm-12.media{padding:1.5rem 0}.mainSection .vk_post-col-sm-12.media:first-child{border-top:1px solid #e5e5e5}.mainSection .vk_post-col-sm-12.media .media-img{margin-right:1.4rem}.mainSection .postListText.vk_post-col-sm-12 .vk_post_title{font-size:16px;font-weight:400}}@media (min-width:576px) and (max-width:767.98px){.card.vk_post-col-sm-12{margin-bottom:15px}.media.vk_post-col-sm-3:nth-child(2),.media.vk_post-col-sm-3:nth-child(3),.media.vk_post-col-sm-3:nth-child(4),.media.vk_post-col-sm-4:nth-child(2),.media.vk_post-col-sm-4:nth-child(3),.media.vk_post-col-sm-6:nth-child(2){border-top:1px solid #e5e5e5}}@media (min-width:768px){.vk_posts .vk_post-col-md-3{width:calc(25% - 30px)}.vk_posts .vk_post-col-md-4{width:calc(33.3% - 30px)}.vk_posts .vk_post-col-md-6{width:calc(50% - 30px)}.vk_posts .vk_post-col-md-12{width:calc(100% - 30px)}.mainSection .vk_post-col-md-12 .vk_post_title{font-size:18px}.mainSection .vk_post-col-md-12 .vk_post_excerpt{font-size:14px}}@media (min-width:768px) and (max-width:991.98px){.card.vk_post-col-md-12{margin-bottom:15px}.media.vk_post-col-md-3:nth-child(2),.media.vk_post-col-md-3:nth-child(3),.media.vk_post-col-md-3:nth-child(4),.media.vk_post-col-md-4:nth-child(2),.media.vk_post-col-md-4:nth-child(3),.media.vk_post-col-md-6:nth-child(2){border-top:1px solid #e5e5e5}}@media (min-width:992px){.vk_posts .vk_post-col-lg-3{width:calc(25% - 30px)}.vk_posts .vk_post-col-lg-4{width:calc(33.3% - 30px)}.vk_posts .vk_post-col-lg-6{width:calc(50% - 30px)}.vk_posts .vk_post-col-lg-12{width:calc(100% - 30px)}.mainSection .vk_post-col-lg-12 .vk_post_title{font-size:18px}.mainSection .vk_post-col-lg-12 .vk_post_excerpt{font-size:14px}.mainSection .vk_post-col-lg-12.media{padding:1.8rem 0}.mainSection .vk_post-col-lg-12.media .media-img{margin-right:1.8rem}.postListText_title{padding-top:0;clear:none}}@media (min-width:992px) and (max-width:1199.98px){.card.vk_post-col-lg-12{margin-bottom:15px}.media.vk_post-col-lg-3:nth-child(2),.media.vk_post-col-lg-3:nth-child(3),.media.vk_post-col-lg-3:nth-child(4),.media.vk_post-col-lg-4:nth-child(2),.media.vk_post-col-lg-4:nth-child(3),.media.vk_post-col-lg-6:nth-child(2){border-top:1px solid #e5e5e5}}@media (min-width:1200px){.vk_posts .vk_post-col-xl-3{width:calc(25% - 30px)}.vk_posts .vk_post-col-xl-4{width:calc(33.3% - 30px)}.vk_posts .vk_post-col-xl-6{width:calc(50% - 30px)}.vk_posts .vk_post-col-xl-12{width:calc(100% - 30px)}.mainSection .vk_post-col-xl-12 .vk_post_title{font-size:21px}.mainSection .vk_post-col-xl-12 .vk_post_excerpt{font-size:14px}.card.vk_post-col-xl-12{margin-bottom:15px}.media.vk_post-col-xl-3:nth-child(2),.media.vk_post-col-xl-3:nth-child(3),.media.vk_post-col-xl-3:nth-child(4),.media.vk_post-col-xl-4:nth-child(2),.media.vk_post-col-xl-4:nth-child(3),.media.vk_post-col-xl-6:nth-child(2){border-top:1px solid #e5e5e5}}@media (max-width:767px){.media .postList_thumbnail{padding-right:20px}.media .media-body .media-heading{font-size:1.2em;line-height:1.3em;margin-bottom:.5em}}@media (max-width:575.98px){.card.vk_post-col-xs-12{margin-bottom:15px}}@media (max-width:500px){.media .postList_thumbnail{width:100px}}
|
1 |
+
.vk_posts .vk_post-col-xs-2{width:calc(16.66% - 30px)}.vk_posts .vk_post-col-xs-3{width:calc(25% - 30px)}.vk_posts .vk_post-col-xs-4{width:calc(33.3% - 30px)}.vk_posts .vk_post-col-xs-6{width:calc(50% - 30px)}.vk_posts .vk_post-col-xs-12{width:calc(100% - 30px)}.vk_posts{margin-left:-15px;margin-right:-15px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;clear:both}.vk_post{margin-left:15px;margin-right:15px}.vk_post a:hover{text-decoration:none}.vk_post_imgOuter{position:relative}.vk_post_imgOuter a{display:block;overflow:hidden}.vk_post_imgOuter_singleTermLabel{font-size:10px;padding:.3em .8em;position:absolute;right:0;top:0;z-index:100}.vk_post .vk_post_title{font-size:14px;line-height:1.4;font-weight:700;margin-bottom:0}.vk_post .vk_post_title a{color:#333}.vk_post_title_new{margin-left:.4em;font-size:.8em;white-space:nowrap;color:red}.vk_post .vk_post_excerpt{margin-top:.8em;font-size:12px;line-height:1.6;opacity:.8}.vk_post .vk_post_date{font-size:11px;margin-top:.5em;color:#666}.vk_post .vk_post_btn{font-size:12px;text-decoration:none}.vk_post_imgOuter{position:relative;background-size:cover;background-position:center 50%;border-bottom:1px solid #e5e5e5}.vk_post_imgOuter ::after{content:"";position:absolute;top:0;left:0;height:100%;width:100%;background:rgba(0,0,0,0);-webkit-transition-duration:.3s;transition-duration:.3s}.vk_post_imgOuter a:hover .card-img-overlay::after{background:rgba(0,0,0,.5)}.vk_post_imgOuter a{height:100%}.vk_post_imgOuter_img{position:absolute;left:-9999px}.vk_post:not(.card-horizontal) .vk_post_imgOuter:before{content:"";display:block;padding-top:62%}.vk_post.card-horizontal .vk_post_imgOuter{height:100%;border-bottom:none}.vk_post-btn-display .vk_post_body{position:relative;height:100%}.vk_post-btn-display .vk_post_btnOuter{margin-top:1em;position:absolute;bottom:0}.vk_post-btn-display.media .vk_post_body{padding-bottom:45px}.vk_post-btn-display.media .vk_post_btnOuter{width:100%}.vk_post-btn-display.card .vk_post_body{padding-bottom:65px}.vk_post-btn-display.card .vk_post_btnOuter{width:calc(100% - 2.5rem);bottom:1.25rem}.vk_post-btn-display .card-text:nth-last-child(2){margin-bottom:0}.mainSection .wp-block-column .vk_post-col-lg-12 .vk_post_title,.mainSection .wp-block-column .vk_post-col-md-12 .vk_post_title,.mainSection .wp-block-column .vk_post-col-sm-12 .vk_post_title,.mainSection .wp-block-column .vk_post-col-xl-12 .vk_post_title{font-size:1rem}.mainSection .wp-block-column .vk_post-col-lg-12 .vk_post_excerpt,.mainSection .wp-block-column .vk_post-col-md-12 .vk_post_excerpt,.mainSection .wp-block-column .vk_post-col-sm-12 .vk_post_excerpt,.mainSection .wp-block-column .vk_post-col-xl-12 .vk_post_excerpt{font-size:12px}.vk_post.card{padding:0;margin-bottom:30px;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:100%}.vk_post.card .vk_post_btnOuter{width:calc(100% - 2.5rem)}.card{overflow:hidden;-webkit-box-shadow:none;box-shadow:none}.card-meta{font-size:12px}.card-img-use-bg{position:relative;left:-9999px}.card a{color:inherit}.card-noborder.card{border:none;background:0 0}.card-noborder .vk_post_imgOuter{border:none}.card-noborder .card-body{padding-left:0;padding-right:0}.card-noborder.vk_post-btn-display .card-body{padding-bottom:2.8rem}.card-noborder.vk_post-btn-display .vk_post_btnOuter{width:100%;bottom:0}.card-horizontal-inner{height:100%}.card-horizontal-inner::after{content:"";display:block;clear:both}.card-horizontal-inner-row{height:100%}.card-horizontal-img-right-row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.card-horizontal-reverse .row{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.card-horizontal .card-body{height:100%}.card-sm .card-body{padding:1rem 1.2rem}.card-sm .card-title{font-size:.8rem}.card-sm .card-text{font-size:.8rem;line-height:1.4}.card-sm .card-meta{font-size:.7rem;line-height:1.1}.card-post .card-body{padding-bottom:1.5em}.vk_post.media{width:100%;padding:1em 0;margin:0 15px;border-bottom:1px solid #e5e5e5}.media:first-child{border-top:1px solid #e5e5e5}.media-img{border:1px solid #e5e5e5;padding:1px;margin-right:1rem}.vk_post .media-img{width:35%}.vk_post .media-body{width:65%}.media.vk_post-col-xs-6:first-child,.media.vk_post-col-xs-6:nth-child(2){border-top:1px solid #e5e5e5}.media{border-bottom:1px solid #e5e5e5;padding:1rem 0;margin-top:0}.media>div{width:100%}.media .postList_thumbnail{width:160px;margin-bottom:.5em;padding-right:30px;display:block;overflow:hidden;float:left}.media .postList_thumbnail a{position:relative;display:block;overflow:hidden;border:1px solid #e5e5e5}.media .postList_thumbnail img{width:100%;height:auto;border:1px solid #fff}.media .postList_thumbnail .postList_cateLabel{position:absolute;bottom:0;left:0}.media .media-body .media-heading{font-size:20px;line-height:1.4em;margin-top:0;margin-bottom:.4em;font-weight:400;background:0 0;-webkit-box-shadow:none;box-shadow:none;padding:0}.media .media-body .media-heading a{color:#464646}.media .media-body .media-heading a:hover{text-decoration:none}.media p{margin-bottom:0;font-size:14px;line-height:150%}.media .entry-meta_updated{display:none}.media .entry-meta_items_author{display:none}.media a.media-body_excerpt{color:#464646;display:block;overflow:hidden}.vk_posts-layout-postListText{margin-bottom:.8rem}.postListText{padding:.8rem 0 .7rem;border-bottom:1px dotted #ccc;display:block;overflow:hidden;width:100%}.postListText_date{font-size:1rem;white-space:nowrap;font-size:14px;display:block;float:left;min-width:115px;margin-right:1em}.postListText_singleTermLabel{padding:0;display:block;float:left;min-width:150px;margin-right:1em;margin-top:2px}.postListText_singleTermLabel_inner{display:block;overflow:hidden;font-size:12px;white-space:nowrap;padding:0 1rem;line-height:16px;border-radius:2px;text-align:center}.postListText_title{font-size:14px;line-height:1.6;display:block;overflow:hidden;margin:0;padding-top:.2rem}.postListText_title a{color:var(--text-color)}.postListText_title a:hover{text-decoration:underline}@media (min-width:576px){.vk_posts .vk_post-col-sm-2{width:calc(16.66% - 30px)}.vk_posts .vk_post-col-sm-3{width:calc(25% - 30px)}.vk_posts .vk_post-col-sm-4{width:calc(33.3% - 30px)}.vk_posts .vk_post-col-sm-6{width:calc(50% - 30px)}.vk_posts .vk_post-col-sm-12{width:calc(100% - 30px)}.mainSection .vk_post-col-sm-12 .vk_post_title{font-size:16px}.mainSection .vk_post-col-sm-12 .vk_post_excerpt{font-size:14px}.mainSection .vk_post-col-sm-12.media{padding:1.5rem 0}.mainSection .vk_post-col-sm-12.media:first-child{border-top:1px solid #e5e5e5}.mainSection .vk_post-col-sm-12.media .media-img{margin-right:1.4rem}.mainSection .postListText.vk_post-col-sm-12 .vk_post_title{font-size:16px;font-weight:400}}@media (min-width:576px) and (max-width:767.98px){.card.vk_post-col-sm-12{margin-bottom:15px}.media.vk_post-col-sm-3:nth-child(2),.media.vk_post-col-sm-3:nth-child(3),.media.vk_post-col-sm-3:nth-child(4),.media.vk_post-col-sm-4:nth-child(2),.media.vk_post-col-sm-4:nth-child(3),.media.vk_post-col-sm-6:nth-child(2){border-top:1px solid #e5e5e5}}@media (min-width:768px){.vk_posts .vk_post-col-md-2{width:calc(16.66% - 30px)}.vk_posts .vk_post-col-md-3{width:calc(25% - 30px)}.vk_posts .vk_post-col-md-4{width:calc(33.3% - 30px)}.vk_posts .vk_post-col-md-6{width:calc(50% - 30px)}.vk_posts .vk_post-col-md-12{width:calc(100% - 30px)}.mainSection .vk_post-col-md-12 .vk_post_title{font-size:18px}.mainSection .vk_post-col-md-12 .vk_post_excerpt{font-size:14px}}@media (min-width:768px) and (max-width:991.98px){.card.vk_post-col-md-12{margin-bottom:15px}.media.vk_post-col-md-3:nth-child(2),.media.vk_post-col-md-3:nth-child(3),.media.vk_post-col-md-3:nth-child(4),.media.vk_post-col-md-4:nth-child(2),.media.vk_post-col-md-4:nth-child(3),.media.vk_post-col-md-6:nth-child(2){border-top:1px solid #e5e5e5}}@media (min-width:992px){.vk_posts .vk_post-col-lg-2{width:calc(16.66% - 30px)}.vk_posts .vk_post-col-lg-3{width:calc(25% - 30px)}.vk_posts .vk_post-col-lg-4{width:calc(33.3% - 30px)}.vk_posts .vk_post-col-lg-6{width:calc(50% - 30px)}.vk_posts .vk_post-col-lg-12{width:calc(100% - 30px)}.mainSection .vk_post-col-lg-12 .vk_post_title{font-size:18px}.mainSection .vk_post-col-lg-12 .vk_post_excerpt{font-size:14px}.mainSection .vk_post-col-lg-12.media{padding:1.8rem 0}.mainSection .vk_post-col-lg-12.media .media-img{margin-right:1.8rem}.postListText_title{padding-top:0;clear:none}}@media (min-width:992px) and (max-width:1199.98px){.card.vk_post-col-lg-12{margin-bottom:15px}.media.vk_post-col-lg-3:nth-child(2),.media.vk_post-col-lg-3:nth-child(3),.media.vk_post-col-lg-3:nth-child(4),.media.vk_post-col-lg-4:nth-child(2),.media.vk_post-col-lg-4:nth-child(3),.media.vk_post-col-lg-6:nth-child(2){border-top:1px solid #e5e5e5}}@media (min-width:1200px){.vk_posts .vk_post-col-xl-2{width:calc(16.66% - 30px)}.vk_posts .vk_post-col-xl-3{width:calc(25% - 30px)}.vk_posts .vk_post-col-xl-4{width:calc(33.3% - 30px)}.vk_posts .vk_post-col-xl-6{width:calc(50% - 30px)}.vk_posts .vk_post-col-xl-12{width:calc(100% - 30px)}.mainSection .vk_post-col-xl-12 .vk_post_title{font-size:21px}.mainSection .vk_post-col-xl-12 .vk_post_excerpt{font-size:14px}.card.vk_post-col-xl-12{margin-bottom:15px}.media.vk_post-col-xl-3:nth-child(2),.media.vk_post-col-xl-3:nth-child(3),.media.vk_post-col-xl-3:nth-child(4),.media.vk_post-col-xl-4:nth-child(2),.media.vk_post-col-xl-4:nth-child(3),.media.vk_post-col-xl-6:nth-child(2){border-top:1px solid #e5e5e5}}@media (max-width:767px){.media .postList_thumbnail{padding-right:20px}.media .media-body .media-heading{font-size:1.2em;line-height:1.3em;margin-bottom:.5em}}@media (max-width:575.98px){.card.vk_post-col-xs-12{margin-bottom:15px}}@media (max-width:500px){.media .postList_thumbnail{width:100px}}
|
package-lock.json
CHANGED
@@ -8,11 +8,53 @@
|
|
8 |
"version": "7.5.5",
|
9 |
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz",
|
10 |
"integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==",
|
11 |
-
"dev": true,
|
12 |
"requires": {
|
13 |
"@babel/highlight": "^7.0.0"
|
14 |
}
|
15 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
"@babel/core": {
|
17 |
"version": "7.7.7",
|
18 |
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.7.7.tgz",
|
@@ -87,6 +129,48 @@
|
|
87 |
"esutils": "^2.0.0"
|
88 |
}
|
89 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
"@babel/helper-call-delegate": {
|
91 |
"version": "7.7.4",
|
92 |
"resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.7.4.tgz",
|
@@ -98,6 +182,51 @@
|
|
98 |
"@babel/types": "^7.7.4"
|
99 |
}
|
100 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
"@babel/helper-create-regexp-features-plugin": {
|
102 |
"version": "7.7.4",
|
103 |
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.4.tgz",
|
@@ -171,7 +300,6 @@
|
|
171 |
"version": "7.7.4",
|
172 |
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.7.4.tgz",
|
173 |
"integrity": "sha512-dGcrX6K9l8258WFjyDLJwuVKxR4XZfU0/vTUgOQYWEnRD8mgr+p4d6fCUMq/ys0h4CCt/S5JhbvtyErjWouAUQ==",
|
174 |
-
"dev": true,
|
175 |
"requires": {
|
176 |
"@babel/types": "^7.7.4"
|
177 |
}
|
@@ -258,6 +386,12 @@
|
|
258 |
"@babel/types": "^7.7.4"
|
259 |
}
|
260 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
261 |
"@babel/helper-wrap-function": {
|
262 |
"version": "7.7.4",
|
263 |
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.7.4.tgz",
|
@@ -285,7 +419,6 @@
|
|
285 |
"version": "7.5.0",
|
286 |
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz",
|
287 |
"integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==",
|
288 |
-
"dev": true,
|
289 |
"requires": {
|
290 |
"chalk": "^2.0.0",
|
291 |
"esutils": "^2.0.2",
|
@@ -329,6 +462,42 @@
|
|
329 |
"@babel/plugin-syntax-json-strings": "^7.7.4"
|
330 |
}
|
331 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
332 |
"@babel/plugin-proposal-object-rest-spread": {
|
333 |
"version": "7.7.7",
|
334 |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.7.7.tgz",
|
@@ -349,6 +518,24 @@
|
|
349 |
"@babel/plugin-syntax-optional-catch-binding": "^7.7.4"
|
350 |
}
|
351 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
"@babel/plugin-proposal-unicode-property-regex": {
|
353 |
"version": "7.7.7",
|
354 |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.7.tgz",
|
@@ -368,6 +555,40 @@
|
|
368 |
"@babel/helper-plugin-utils": "^7.0.0"
|
369 |
}
|
370 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
371 |
"@babel/plugin-syntax-dynamic-import": {
|
372 |
"version": "7.7.4",
|
373 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.7.4.tgz",
|
@@ -395,6 +616,57 @@
|
|
395 |
"@babel/helper-plugin-utils": "^7.0.0"
|
396 |
}
|
397 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
398 |
"@babel/plugin-syntax-object-rest-spread": {
|
399 |
"version": "7.7.4",
|
400 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.7.4.tgz",
|
@@ -413,6 +685,23 @@
|
|
413 |
"@babel/helper-plugin-utils": "^7.0.0"
|
414 |
}
|
415 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
416 |
"@babel/plugin-syntax-top-level-await": {
|
417 |
"version": "7.7.4",
|
418 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.4.tgz",
|
@@ -653,86 +942,202 @@
|
|
653 |
"@babel/helper-plugin-utils": "^7.0.0"
|
654 |
}
|
655 |
},
|
656 |
-
"@babel/plugin-transform-react-
|
657 |
-
"version": "7.
|
658 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-
|
659 |
-
"integrity": "sha512-
|
660 |
"dev": true,
|
661 |
"requires": {
|
662 |
-
"@babel/helper-
|
663 |
-
|
664 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
665 |
}
|
666 |
},
|
667 |
-
"@babel/plugin-transform-
|
668 |
-
"version": "7.
|
669 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
670 |
-
"integrity": "sha512
|
671 |
"dev": true,
|
672 |
"requires": {
|
673 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
}
|
675 |
},
|
676 |
-
"@babel/plugin-transform-
|
677 |
-
"version": "7.7.
|
678 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
679 |
-
"integrity": "sha512-
|
680 |
"dev": true,
|
681 |
"requires": {
|
682 |
-
"@babel/helper-
|
|
|
|
|
683 |
}
|
684 |
},
|
685 |
-
"@babel/plugin-transform-
|
686 |
-
"version": "7.
|
687 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
688 |
-
"integrity": "sha512
|
689 |
"dev": true,
|
690 |
"requires": {
|
691 |
-
"@babel/helper-
|
692 |
"@babel/helper-plugin-utils": "^7.8.3",
|
693 |
-
"
|
694 |
-
"semver": "^5.5.1"
|
695 |
},
|
696 |
"dependencies": {
|
697 |
-
"@babel/helper-module-imports": {
|
698 |
-
"version": "7.8.3",
|
699 |
-
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz",
|
700 |
-
"integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==",
|
701 |
-
"dev": true,
|
702 |
-
"requires": {
|
703 |
-
"@babel/types": "^7.8.3"
|
704 |
-
}
|
705 |
-
},
|
706 |
"@babel/helper-plugin-utils": {
|
707 |
"version": "7.8.3",
|
708 |
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
709 |
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
710 |
"dev": true
|
711 |
},
|
712 |
-
"@babel/
|
713 |
"version": "7.8.3",
|
714 |
-
"resolved": "https://registry.npmjs.org/@babel/
|
715 |
-
"integrity": "sha512-
|
716 |
"dev": true,
|
717 |
"requires": {
|
718 |
-
"
|
719 |
-
"lodash": "^4.17.13",
|
720 |
-
"to-fast-properties": "^2.0.0"
|
721 |
}
|
722 |
}
|
723 |
}
|
724 |
},
|
725 |
-
"@babel/plugin-transform-
|
726 |
-
"version": "7.
|
727 |
-
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-
|
728 |
-
"integrity": "sha512-
|
729 |
"dev": true,
|
730 |
"requires": {
|
731 |
-
"@babel/helper-plugin-utils": "^7.
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
736 |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.7.4.tgz",
|
737 |
"integrity": "sha512-8OSs0FLe5/80cndziPlg4R0K6HcWSM0zyNhHhLsmw/Nc5MaA49cAsnoJ/t/YZf8qkG7fD+UjTRaApVDB526d7Q==",
|
738 |
"dev": true,
|
@@ -838,6 +1243,92 @@
|
|
838 |
"semver": "^5.5.0"
|
839 |
}
|
840 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
841 |
"@babel/runtime": {
|
842 |
"version": "7.7.7",
|
843 |
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.7.7.tgz",
|
@@ -888,23 +1379,153 @@
|
|
888 |
"version": "7.7.4",
|
889 |
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz",
|
890 |
"integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==",
|
891 |
-
"dev": true,
|
892 |
"requires": {
|
893 |
"esutils": "^2.0.2",
|
894 |
"lodash": "^4.17.13",
|
895 |
"to-fast-properties": "^2.0.0"
|
896 |
}
|
897 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
898 |
"@cnakazawa/watch": {
|
899 |
-
"version": "1.0.
|
900 |
-
"resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.
|
901 |
-
"integrity": "sha512-
|
902 |
"dev": true,
|
903 |
"requires": {
|
904 |
"exec-sh": "^0.3.2",
|
905 |
"minimist": "^1.2.0"
|
906 |
}
|
907 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
908 |
"@gulp-sourcemaps/identity-map": {
|
909 |
"version": "1.0.2",
|
910 |
"resolved": "https://registry.npmjs.org/@gulp-sourcemaps/identity-map/-/identity-map-1.0.2.tgz",
|
@@ -975,9 +1596,9 @@
|
|
975 |
"dev": true
|
976 |
},
|
977 |
"@hapi/hoek": {
|
978 |
-
"version": "8.5.
|
979 |
-
"resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.
|
980 |
-
"integrity": "sha512-
|
981 |
"dev": true
|
982 |
},
|
983 |
"@hapi/joi": {
|
@@ -1001,2106 +1622,11531 @@
|
|
1001 |
"@hapi/hoek": "^8.3.0"
|
1002 |
}
|
1003 |
},
|
1004 |
-
"@
|
1005 |
-
"version": "
|
1006 |
-
"resolved": "https://registry.npmjs.org/@
|
1007 |
-
"integrity": "sha512-
|
1008 |
-
"dev": true,
|
1009 |
-
"requires": {
|
1010 |
-
"@jest/source-map": "^24.9.0",
|
1011 |
-
"chalk": "^2.0.1",
|
1012 |
-
"slash": "^2.0.0"
|
1013 |
-
}
|
1014 |
-
},
|
1015 |
-
"@jest/core": {
|
1016 |
-
"version": "24.9.0",
|
1017 |
-
"resolved": "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz",
|
1018 |
-
"integrity": "sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==",
|
1019 |
"dev": true,
|
1020 |
"requires": {
|
1021 |
-
"
|
1022 |
-
"
|
1023 |
-
"
|
1024 |
-
"
|
1025 |
-
"
|
1026 |
-
"ansi-escapes": "^3.0.0",
|
1027 |
-
"chalk": "^2.0.1",
|
1028 |
-
"exit": "^0.1.2",
|
1029 |
-
"graceful-fs": "^4.1.15",
|
1030 |
-
"jest-changed-files": "^24.9.0",
|
1031 |
-
"jest-config": "^24.9.0",
|
1032 |
-
"jest-haste-map": "^24.9.0",
|
1033 |
-
"jest-message-util": "^24.9.0",
|
1034 |
-
"jest-regex-util": "^24.3.0",
|
1035 |
-
"jest-resolve": "^24.9.0",
|
1036 |
-
"jest-resolve-dependencies": "^24.9.0",
|
1037 |
-
"jest-runner": "^24.9.0",
|
1038 |
-
"jest-runtime": "^24.9.0",
|
1039 |
-
"jest-snapshot": "^24.9.0",
|
1040 |
-
"jest-util": "^24.9.0",
|
1041 |
-
"jest-validate": "^24.9.0",
|
1042 |
-
"jest-watcher": "^24.9.0",
|
1043 |
-
"micromatch": "^3.1.10",
|
1044 |
-
"p-each-series": "^1.0.0",
|
1045 |
-
"realpath-native": "^1.1.0",
|
1046 |
-
"rimraf": "^2.5.4",
|
1047 |
-
"slash": "^2.0.0",
|
1048 |
-
"strip-ansi": "^5.0.0"
|
1049 |
},
|
1050 |
"dependencies": {
|
1051 |
-
"
|
1052 |
-
"version": "3.
|
1053 |
-
"resolved": "https://registry.npmjs.org/
|
1054 |
-
"integrity": "sha512-
|
1055 |
"dev": true
|
1056 |
},
|
1057 |
-
"
|
1058 |
"version": "4.1.0",
|
1059 |
-
"resolved": "https://registry.npmjs.org/
|
1060 |
-
"integrity": "sha512-
|
1061 |
-
"dev": true
|
|
|
|
|
|
|
|
|
1062 |
},
|
1063 |
-
"
|
1064 |
-
"version": "5.
|
1065 |
-
"resolved": "https://registry.npmjs.org/
|
1066 |
-
"integrity": "sha512-
|
1067 |
"dev": true,
|
1068 |
"requires": {
|
1069 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1070 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1071 |
}
|
1072 |
}
|
1073 |
},
|
1074 |
-
"@
|
1075 |
-
"version": "
|
1076 |
-
"resolved": "https://registry.npmjs.org/@
|
1077 |
-
"integrity": "sha512-
|
1078 |
-
"dev": true
|
1079 |
-
"requires": {
|
1080 |
-
"@jest/fake-timers": "^24.9.0",
|
1081 |
-
"@jest/transform": "^24.9.0",
|
1082 |
-
"@jest/types": "^24.9.0",
|
1083 |
-
"jest-mock": "^24.9.0"
|
1084 |
-
}
|
1085 |
},
|
1086 |
-
"@jest/
|
1087 |
-
"version": "
|
1088 |
-
"resolved": "https://registry.npmjs.org/@jest/
|
1089 |
-
"integrity": "sha512-
|
1090 |
"dev": true,
|
1091 |
"requires": {
|
1092 |
-
"@jest/types": "^
|
1093 |
-
"
|
1094 |
-
"jest-
|
1095 |
-
|
1096 |
-
|
1097 |
-
"@jest/reporters": {
|
1098 |
-
"version": "24.9.0",
|
1099 |
-
"resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz",
|
1100 |
-
"integrity": "sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==",
|
1101 |
-
"dev": true,
|
1102 |
-
"requires": {
|
1103 |
-
"@jest/environment": "^24.9.0",
|
1104 |
-
"@jest/test-result": "^24.9.0",
|
1105 |
-
"@jest/transform": "^24.9.0",
|
1106 |
-
"@jest/types": "^24.9.0",
|
1107 |
-
"chalk": "^2.0.1",
|
1108 |
-
"exit": "^0.1.2",
|
1109 |
-
"glob": "^7.1.2",
|
1110 |
-
"istanbul-lib-coverage": "^2.0.2",
|
1111 |
-
"istanbul-lib-instrument": "^3.0.1",
|
1112 |
-
"istanbul-lib-report": "^2.0.4",
|
1113 |
-
"istanbul-lib-source-maps": "^3.0.1",
|
1114 |
-
"istanbul-reports": "^2.2.6",
|
1115 |
-
"jest-haste-map": "^24.9.0",
|
1116 |
-
"jest-resolve": "^24.9.0",
|
1117 |
-
"jest-runtime": "^24.9.0",
|
1118 |
-
"jest-util": "^24.9.0",
|
1119 |
-
"jest-worker": "^24.6.0",
|
1120 |
-
"node-notifier": "^5.4.2",
|
1121 |
-
"slash": "^2.0.0",
|
1122 |
-
"source-map": "^0.6.0",
|
1123 |
-
"string-length": "^2.0.0"
|
1124 |
},
|
1125 |
"dependencies": {
|
1126 |
-
"
|
1127 |
-
"version": "
|
1128 |
-
"resolved": "https://registry.npmjs.org/
|
1129 |
-
"integrity": "sha512-
|
1130 |
"dev": true,
|
1131 |
"requires": {
|
1132 |
-
"
|
1133 |
-
"
|
1134 |
-
"semver": "^5.5.0",
|
1135 |
-
"shellwords": "^0.1.1",
|
1136 |
-
"which": "^1.3.0"
|
1137 |
}
|
1138 |
},
|
1139 |
-
"
|
1140 |
-
"version": "0.
|
1141 |
-
"resolved": "https://registry.npmjs.org/
|
1142 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1143 |
"dev": true
|
1144 |
-
}
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
"resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz",
|
1150 |
-
"integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==",
|
1151 |
-
"dev": true,
|
1152 |
-
"requires": {
|
1153 |
-
"callsites": "^3.0.0",
|
1154 |
-
"graceful-fs": "^4.1.15",
|
1155 |
-
"source-map": "^0.6.0"
|
1156 |
-
},
|
1157 |
-
"dependencies": {
|
1158 |
-
"source-map": {
|
1159 |
-
"version": "0.6.1",
|
1160 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
1161 |
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
1162 |
"dev": true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1163 |
}
|
1164 |
}
|
1165 |
},
|
1166 |
-
"@jest/
|
1167 |
-
"version": "
|
1168 |
-
"resolved": "https://registry.npmjs.org/@jest/
|
1169 |
-
"integrity": "sha512-
|
1170 |
-
"dev": true,
|
1171 |
-
"requires": {
|
1172 |
-
"@jest/console": "^24.9.0",
|
1173 |
-
"@jest/types": "^24.9.0",
|
1174 |
-
"@types/istanbul-lib-coverage": "^2.0.0"
|
1175 |
-
}
|
1176 |
-
},
|
1177 |
-
"@jest/test-sequencer": {
|
1178 |
-
"version": "24.9.0",
|
1179 |
-
"resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz",
|
1180 |
-
"integrity": "sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==",
|
1181 |
-
"dev": true,
|
1182 |
-
"requires": {
|
1183 |
-
"@jest/test-result": "^24.9.0",
|
1184 |
-
"jest-haste-map": "^24.9.0",
|
1185 |
-
"jest-runner": "^24.9.0",
|
1186 |
-
"jest-runtime": "^24.9.0"
|
1187 |
-
}
|
1188 |
-
},
|
1189 |
-
"@jest/transform": {
|
1190 |
-
"version": "24.9.0",
|
1191 |
-
"resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz",
|
1192 |
-
"integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==",
|
1193 |
"dev": true,
|
1194 |
"requires": {
|
1195 |
-
"@
|
1196 |
-
"@jest/
|
1197 |
-
"
|
1198 |
-
"
|
1199 |
-
"
|
1200 |
-
"
|
1201 |
-
"
|
1202 |
-
"
|
1203 |
-
"
|
1204 |
-
"jest-
|
1205 |
-
"
|
1206 |
-
"
|
1207 |
-
"
|
1208 |
-
"
|
1209 |
-
"
|
1210 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1211 |
},
|
1212 |
"dependencies": {
|
1213 |
-
"
|
1214 |
-
"version": "0.
|
1215 |
-
"resolved": "https://registry.npmjs.org/
|
1216 |
-
"integrity": "sha512-
|
1217 |
"dev": true
|
1218 |
},
|
1219 |
-
"
|
1220 |
-
"version": "2.
|
1221 |
-
"resolved": "https://registry.npmjs.org/
|
1222 |
-
"integrity": "sha512-
|
1223 |
"dev": true,
|
1224 |
"requires": {
|
1225 |
-
"
|
1226 |
-
"
|
1227 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1228 |
}
|
1229 |
}
|
1230 |
}
|
1231 |
},
|
1232 |
-
"@jest/
|
1233 |
-
"version": "
|
1234 |
-
"resolved": "https://registry.npmjs.org/@jest/
|
1235 |
-
"integrity": "sha512-
|
1236 |
"dev": true,
|
1237 |
"requires": {
|
1238 |
-
"@
|
1239 |
-
"@types
|
1240 |
-
"
|
1241 |
}
|
1242 |
},
|
1243 |
-
"@
|
1244 |
-
"version": "
|
1245 |
-
"resolved": "https://registry.npmjs.org/@
|
1246 |
-
"integrity": "sha512-
|
1247 |
"dev": true,
|
1248 |
"requires": {
|
1249 |
-
"
|
1250 |
-
"
|
|
|
|
|
|
|
1251 |
}
|
1252 |
},
|
1253 |
-
"@
|
1254 |
-
"version": "
|
1255 |
-
"resolved": "https://registry.npmjs.org/@
|
1256 |
-
"integrity": "sha512-
|
1257 |
"dev": true,
|
1258 |
"requires": {
|
1259 |
-
"@
|
1260 |
-
"
|
|
|
1261 |
}
|
1262 |
},
|
1263 |
-
"@
|
1264 |
-
"version": "
|
1265 |
-
"resolved": "https://registry.npmjs.org/@
|
1266 |
-
"integrity": "sha512-
|
1267 |
-
"dev": true
|
1268 |
-
},
|
1269 |
-
"@nodelib/fs.walk": {
|
1270 |
-
"version": "1.2.4",
|
1271 |
-
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz",
|
1272 |
-
"integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==",
|
1273 |
"dev": true,
|
1274 |
"requires": {
|
1275 |
-
"@
|
1276 |
-
"
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
"
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
"
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
"
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
"
|
1350 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1351 |
}
|
1352 |
},
|
1353 |
-
"@
|
1354 |
-
"version": "
|
1355 |
-
"resolved": "https://registry.npmjs.org/@
|
1356 |
-
"integrity": "sha512-
|
1357 |
"dev": true,
|
1358 |
"requires": {
|
1359 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1360 |
}
|
1361 |
},
|
1362 |
-
"@
|
1363 |
-
"version": "
|
1364 |
-
"resolved": "https://registry.npmjs.org/@
|
1365 |
-
"integrity": "sha512-
|
1366 |
-
"dev": true
|
1367 |
-
},
|
1368 |
-
"@types/events": {
|
1369 |
-
"version": "3.0.0",
|
1370 |
-
"resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz",
|
1371 |
-
"integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==",
|
1372 |
-
"dev": true
|
1373 |
-
},
|
1374 |
-
"@types/glob": {
|
1375 |
-
"version": "7.1.1",
|
1376 |
-
"resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz",
|
1377 |
-
"integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==",
|
1378 |
"dev": true,
|
1379 |
"requires": {
|
1380 |
-
"@
|
1381 |
-
"@types
|
1382 |
-
"@types/
|
|
|
1383 |
}
|
1384 |
},
|
1385 |
-
"@
|
1386 |
-
"version": "
|
1387 |
-
"resolved": "https://registry.npmjs.org/@
|
1388 |
-
"integrity": "sha512-
|
1389 |
-
"dev": true
|
1390 |
-
},
|
1391 |
-
"@types/istanbul-lib-report": {
|
1392 |
-
"version": "3.0.0",
|
1393 |
-
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
|
1394 |
-
"integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
|
1395 |
"dev": true,
|
1396 |
"requires": {
|
1397 |
-
"@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1398 |
}
|
1399 |
},
|
1400 |
-
"@
|
1401 |
-
"version": "
|
1402 |
-
"resolved": "https://registry.npmjs.org/@
|
1403 |
-
"integrity": "sha512-
|
1404 |
"dev": true,
|
1405 |
"requires": {
|
1406 |
-
"@
|
1407 |
-
"@types
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
"
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1457 |
},
|
1458 |
-
"@types
|
1459 |
-
"version": "
|
1460 |
-
"resolved": "https://registry.npmjs.org/@types
|
1461 |
-
"integrity": "sha512-
|
1462 |
"dev": true,
|
1463 |
"requires": {
|
1464 |
-
"@types/
|
1465 |
-
"@types/
|
1466 |
-
"@types/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1467 |
}
|
1468 |
},
|
1469 |
-
"@
|
1470 |
-
"version": "2.
|
1471 |
-
"resolved": "https://registry.npmjs.org/@
|
1472 |
-
"integrity": "sha512-
|
1473 |
"dev": true,
|
1474 |
"requires": {
|
1475 |
-
"
|
|
|
1476 |
}
|
1477 |
},
|
1478 |
-
"@
|
1479 |
-
"version": "
|
1480 |
-
"resolved": "https://registry.npmjs.org/@
|
1481 |
-
"integrity": "sha512-
|
1482 |
"dev": true,
|
1483 |
"requires": {
|
1484 |
-
"@
|
|
|
1485 |
}
|
1486 |
},
|
1487 |
-
"@
|
1488 |
-
"version": "
|
1489 |
-
"resolved": "https://registry.npmjs.org/@
|
1490 |
-
"integrity": "sha512-
|
1491 |
"dev": true
|
1492 |
},
|
1493 |
-
"@
|
1494 |
-
"version": "1.
|
1495 |
-
"resolved": "https://registry.npmjs.org/@
|
1496 |
-
"integrity": "sha512-
|
1497 |
"dev": true,
|
1498 |
"requires": {
|
1499 |
-
"@
|
1500 |
-
"
|
1501 |
-
"eslint-scope": "^4.0.0"
|
1502 |
}
|
1503 |
},
|
1504 |
-
"@
|
1505 |
-
"version": "
|
1506 |
-
"resolved": "https://registry.npmjs.org/@
|
1507 |
-
"integrity": "sha512-
|
1508 |
-
"dev": true,
|
1509 |
-
"requires": {
|
1510 |
-
"lodash.unescape": "4.0.1",
|
1511 |
-
"semver": "5.5.0"
|
1512 |
-
},
|
1513 |
-
"dependencies": {
|
1514 |
-
"semver": {
|
1515 |
-
"version": "5.5.0",
|
1516 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz",
|
1517 |
-
"integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==",
|
1518 |
-
"dev": true
|
1519 |
-
}
|
1520 |
-
}
|
1521 |
},
|
1522 |
-
"@
|
1523 |
-
"version": "
|
1524 |
-
"resolved": "https://registry.npmjs.org/@
|
1525 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
1526 |
"dev": true,
|
1527 |
"requires": {
|
1528 |
-
"
|
1529 |
-
"@webassemblyjs/helper-wasm-bytecode": "1.8.5",
|
1530 |
-
"@webassemblyjs/wast-parser": "1.8.5"
|
1531 |
}
|
1532 |
},
|
1533 |
-
"@
|
1534 |
-
"version": "
|
1535 |
-
"resolved": "https://registry.npmjs.org/@
|
1536 |
-
"integrity": "sha512-
|
1537 |
"dev": true
|
1538 |
},
|
1539 |
-
"@
|
1540 |
-
"version": "
|
1541 |
-
"resolved": "https://registry.npmjs.org/@
|
1542 |
-
"integrity": "sha512-
|
1543 |
"dev": true
|
1544 |
},
|
1545 |
-
"@
|
1546 |
-
"version": "
|
1547 |
-
"resolved": "https://registry.npmjs.org/@
|
1548 |
-
"integrity": "sha512-
|
1549 |
"dev": true
|
1550 |
},
|
1551 |
-
"@
|
1552 |
-
"version": "
|
1553 |
-
"resolved": "https://registry.npmjs.org/@
|
1554 |
-
"integrity": "sha512-
|
1555 |
-
"dev": true,
|
1556 |
-
"requires": {
|
1557 |
-
"@webassemblyjs/wast-printer": "1.8.5"
|
1558 |
-
}
|
1559 |
-
},
|
1560 |
-
"@webassemblyjs/helper-fsm": {
|
1561 |
-
"version": "1.8.5",
|
1562 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz",
|
1563 |
-
"integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==",
|
1564 |
"dev": true
|
1565 |
},
|
1566 |
-
"@
|
1567 |
-
"version": "
|
1568 |
-
"resolved": "https://registry.npmjs.org/@
|
1569 |
-
"integrity": "sha512
|
1570 |
-
"dev": true,
|
1571 |
-
"requires": {
|
1572 |
-
"@webassemblyjs/ast": "1.8.5",
|
1573 |
-
"mamacro": "^0.0.3"
|
1574 |
-
}
|
1575 |
-
},
|
1576 |
-
"@webassemblyjs/helper-wasm-bytecode": {
|
1577 |
-
"version": "1.8.5",
|
1578 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz",
|
1579 |
-
"integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==",
|
1580 |
"dev": true
|
1581 |
},
|
1582 |
-
"@
|
1583 |
-
"version": "
|
1584 |
-
"resolved": "https://registry.npmjs.org/@
|
1585 |
-
"integrity": "sha512-
|
1586 |
-
"dev": true,
|
1587 |
-
"requires": {
|
1588 |
-
"@webassemblyjs/ast": "1.8.5",
|
1589 |
-
"@webassemblyjs/helper-buffer": "1.8.5",
|
1590 |
-
"@webassemblyjs/helper-wasm-bytecode": "1.8.5",
|
1591 |
-
"@webassemblyjs/wasm-gen": "1.8.5"
|
1592 |
-
}
|
1593 |
-
},
|
1594 |
-
"@webassemblyjs/ieee754": {
|
1595 |
-
"version": "1.8.5",
|
1596 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz",
|
1597 |
-
"integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==",
|
1598 |
-
"dev": true,
|
1599 |
-
"requires": {
|
1600 |
-
"@xtuc/ieee754": "^1.2.0"
|
1601 |
-
}
|
1602 |
-
},
|
1603 |
-
"@webassemblyjs/leb128": {
|
1604 |
-
"version": "1.8.5",
|
1605 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz",
|
1606 |
-
"integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==",
|
1607 |
-
"dev": true,
|
1608 |
-
"requires": {
|
1609 |
-
"@xtuc/long": "4.2.2"
|
1610 |
-
}
|
1611 |
-
},
|
1612 |
-
"@webassemblyjs/utf8": {
|
1613 |
-
"version": "1.8.5",
|
1614 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz",
|
1615 |
-
"integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==",
|
1616 |
"dev": true
|
1617 |
},
|
1618 |
-
"@
|
1619 |
-
"version": "
|
1620 |
-
"resolved": "https://registry.npmjs.org/@
|
1621 |
-
"integrity": "sha512-
|
1622 |
-
"dev": true,
|
1623 |
-
"requires": {
|
1624 |
-
"@webassemblyjs/ast": "1.8.5",
|
1625 |
-
"@webassemblyjs/helper-buffer": "1.8.5",
|
1626 |
-
"@webassemblyjs/helper-wasm-bytecode": "1.8.5",
|
1627 |
-
"@webassemblyjs/helper-wasm-section": "1.8.5",
|
1628 |
-
"@webassemblyjs/wasm-gen": "1.8.5",
|
1629 |
-
"@webassemblyjs/wasm-opt": "1.8.5",
|
1630 |
-
"@webassemblyjs/wasm-parser": "1.8.5",
|
1631 |
-
"@webassemblyjs/wast-printer": "1.8.5"
|
1632 |
-
}
|
1633 |
-
},
|
1634 |
-
"@webassemblyjs/wasm-gen": {
|
1635 |
-
"version": "1.8.5",
|
1636 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz",
|
1637 |
-
"integrity": "sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==",
|
1638 |
-
"dev": true,
|
1639 |
-
"requires": {
|
1640 |
-
"@webassemblyjs/ast": "1.8.5",
|
1641 |
-
"@webassemblyjs/helper-wasm-bytecode": "1.8.5",
|
1642 |
-
"@webassemblyjs/ieee754": "1.8.5",
|
1643 |
-
"@webassemblyjs/leb128": "1.8.5",
|
1644 |
-
"@webassemblyjs/utf8": "1.8.5"
|
1645 |
-
}
|
1646 |
-
},
|
1647 |
-
"@webassemblyjs/wasm-opt": {
|
1648 |
-
"version": "1.8.5",
|
1649 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz",
|
1650 |
-
"integrity": "sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==",
|
1651 |
-
"dev": true,
|
1652 |
-
"requires": {
|
1653 |
-
"@webassemblyjs/ast": "1.8.5",
|
1654 |
-
"@webassemblyjs/helper-buffer": "1.8.5",
|
1655 |
-
"@webassemblyjs/wasm-gen": "1.8.5",
|
1656 |
-
"@webassemblyjs/wasm-parser": "1.8.5"
|
1657 |
-
}
|
1658 |
-
},
|
1659 |
-
"@webassemblyjs/wasm-parser": {
|
1660 |
-
"version": "1.8.5",
|
1661 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz",
|
1662 |
-
"integrity": "sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==",
|
1663 |
-
"dev": true,
|
1664 |
-
"requires": {
|
1665 |
-
"@webassemblyjs/ast": "1.8.5",
|
1666 |
-
"@webassemblyjs/helper-api-error": "1.8.5",
|
1667 |
-
"@webassemblyjs/helper-wasm-bytecode": "1.8.5",
|
1668 |
-
"@webassemblyjs/ieee754": "1.8.5",
|
1669 |
-
"@webassemblyjs/leb128": "1.8.5",
|
1670 |
-
"@webassemblyjs/utf8": "1.8.5"
|
1671 |
-
}
|
1672 |
-
},
|
1673 |
-
"@webassemblyjs/wast-parser": {
|
1674 |
-
"version": "1.8.5",
|
1675 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz",
|
1676 |
-
"integrity": "sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==",
|
1677 |
-
"dev": true,
|
1678 |
-
"requires": {
|
1679 |
-
"@webassemblyjs/ast": "1.8.5",
|
1680 |
-
"@webassemblyjs/floating-point-hex-parser": "1.8.5",
|
1681 |
-
"@webassemblyjs/helper-api-error": "1.8.5",
|
1682 |
-
"@webassemblyjs/helper-code-frame": "1.8.5",
|
1683 |
-
"@webassemblyjs/helper-fsm": "1.8.5",
|
1684 |
-
"@xtuc/long": "4.2.2"
|
1685 |
-
}
|
1686 |
-
},
|
1687 |
-
"@webassemblyjs/wast-printer": {
|
1688 |
-
"version": "1.8.5",
|
1689 |
-
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz",
|
1690 |
-
"integrity": "sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==",
|
1691 |
-
"dev": true,
|
1692 |
-
"requires": {
|
1693 |
-
"@webassemblyjs/ast": "1.8.5",
|
1694 |
-
"@webassemblyjs/wast-parser": "1.8.5",
|
1695 |
-
"@xtuc/long": "4.2.2"
|
1696 |
-
}
|
1697 |
-
},
|
1698 |
-
"@wordpress/babel-plugin-import-jsx-pragma": {
|
1699 |
-
"version": "2.4.0",
|
1700 |
-
"resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-import-jsx-pragma/-/babel-plugin-import-jsx-pragma-2.4.0.tgz",
|
1701 |
-
"integrity": "sha512-52ZN4cWHF/Ts9UPk4urhzonz4s9e4jvhUQ96cs8UWkqvuTjli+YZhYjSl/eFX8yIP4Xk8V54NvW4C/VRilAk5g==",
|
1702 |
"dev": true
|
1703 |
},
|
1704 |
-
"@
|
1705 |
-
"version": "
|
1706 |
-
"resolved": "https://registry.npmjs.org/@
|
1707 |
-
"integrity": "sha512-
|
1708 |
-
"dev": true,
|
1709 |
-
"requires": {
|
1710 |
-
"@babel/runtime": "^7.4.4",
|
1711 |
-
"gettext-parser": "^1.3.1",
|
1712 |
-
"lodash": "^4.17.15"
|
1713 |
-
}
|
1714 |
-
},
|
1715 |
-
"@wordpress/babel-preset-default": {
|
1716 |
-
"version": "4.9.0",
|
1717 |
-
"resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-4.9.0.tgz",
|
1718 |
-
"integrity": "sha512-G1HJ5IzpWDUr2LJbs7egD9SLdurRsAcdrqodHY+w5qc4BazSI8IAYcqmt9yybCxL1byHKztzNNy6RxSLpcLSmQ==",
|
1719 |
-
"dev": true,
|
1720 |
-
"requires": {
|
1721 |
-
"@babel/core": "^7.4.5",
|
1722 |
-
"@babel/plugin-proposal-async-generator-functions": "^7.2.0",
|
1723 |
-
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
|
1724 |
-
"@babel/plugin-transform-react-jsx": "^7.3.0",
|
1725 |
-
"@babel/plugin-transform-runtime": "^7.4.4",
|
1726 |
-
"@babel/preset-env": "^7.4.5",
|
1727 |
-
"@babel/runtime": "^7.4.5",
|
1728 |
-
"@wordpress/babel-plugin-import-jsx-pragma": "^2.4.0",
|
1729 |
-
"@wordpress/browserslist-config": "^2.6.0",
|
1730 |
-
"@wordpress/element": "^2.10.0",
|
1731 |
-
"core-js": "^3.1.4"
|
1732 |
-
}
|
1733 |
-
},
|
1734 |
-
"@wordpress/browserslist-config": {
|
1735 |
-
"version": "2.6.0",
|
1736 |
-
"resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-2.6.0.tgz",
|
1737 |
-
"integrity": "sha512-vRgzGoxhcNVChBP30XZlyK4w6r/9ZpO+Fi1dzmButp31lUEb1pT5WBxTIQl3HE0JZ9YTEJ00WWGO5sjGi5MHZA==",
|
1738 |
"dev": true
|
1739 |
},
|
1740 |
-
"@
|
1741 |
-
"version": "
|
1742 |
-
"resolved": "https://registry.npmjs.org/@
|
1743 |
-
"integrity": "sha512-
|
1744 |
-
"requires": {
|
1745 |
-
"@babel/runtime": "^7.4.4",
|
1746 |
-
"@wordpress/element": "^2.10.0",
|
1747 |
-
"@wordpress/is-shallow-equal": "^1.6.1",
|
1748 |
-
"lodash": "^4.17.15"
|
1749 |
-
}
|
1750 |
-
},
|
1751 |
-
"@wordpress/data": {
|
1752 |
-
"version": "4.11.0",
|
1753 |
-
"resolved": "https://registry.npmjs.org/@wordpress/data/-/data-4.11.0.tgz",
|
1754 |
-
"integrity": "sha512-FA/GU27I/hCyG0Cm8jVvo98nL8Ix0ysKK7aP96s/73Q6ODXisAZ9CGv9sceUIn92wEOyqug21WLS7lu4Cz3OYQ==",
|
1755 |
-
"requires": {
|
1756 |
-
"@babel/runtime": "^7.4.4",
|
1757 |
-
"@wordpress/compose": "^3.9.0",
|
1758 |
-
"@wordpress/deprecated": "^2.6.1",
|
1759 |
-
"@wordpress/element": "^2.10.0",
|
1760 |
-
"@wordpress/is-shallow-equal": "^1.6.1",
|
1761 |
-
"@wordpress/priority-queue": "^1.3.1",
|
1762 |
-
"@wordpress/redux-routine": "^3.6.2",
|
1763 |
-
"equivalent-key-map": "^0.2.2",
|
1764 |
-
"is-promise": "^2.1.0",
|
1765 |
-
"lodash": "^4.17.15",
|
1766 |
-
"memize": "^1.0.5",
|
1767 |
-
"redux": "^4.0.0",
|
1768 |
-
"turbo-combine-reducers": "^1.0.2"
|
1769 |
-
}
|
1770 |
-
},
|
1771 |
-
"@wordpress/dependency-extraction-webpack-plugin": {
|
1772 |
-
"version": "2.1.0",
|
1773 |
-
"resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-2.1.0.tgz",
|
1774 |
-
"integrity": "sha512-OvKhcsebaif9L6h2LdTSQxOqDcqSrsVhooazIkejUL0FTQ9vAf6TVL43UjZW9uYTDeNm07yKRnejb05OWC6Vug==",
|
1775 |
"dev": true,
|
1776 |
"requires": {
|
1777 |
-
"
|
1778 |
-
"
|
1779 |
-
"
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
"integrity": "sha512-nwCZ5pfFCZRwpEOMOVJcPZ6dmcaUfINehfZwPZA/6wK6Ol5sfc5MP22zmz30LFGsP4yqfgSugYDLA2LLAnuWqg==",
|
1786 |
-
"requires": {
|
1787 |
-
"@babel/runtime": "^7.4.4",
|
1788 |
-
"@wordpress/hooks": "^2.6.0"
|
1789 |
-
}
|
1790 |
-
},
|
1791 |
-
"@wordpress/element": {
|
1792 |
-
"version": "2.10.0",
|
1793 |
-
"resolved": "https://registry.npmjs.org/@wordpress/element/-/element-2.10.0.tgz",
|
1794 |
-
"integrity": "sha512-CedhhFfcubM/lsluY7JPC49VG0/Ee0chOBJ1vyDEvIJmQk0bM3sLfgt5qVK773yivVOqD9blQMO+JihnaMXF8w==",
|
1795 |
-
"requires": {
|
1796 |
-
"@babel/runtime": "^7.4.4",
|
1797 |
-
"@wordpress/escape-html": "^1.6.0",
|
1798 |
-
"lodash": "^4.17.15",
|
1799 |
-
"react": "^16.9.0",
|
1800 |
-
"react-dom": "^16.9.0"
|
1801 |
-
}
|
1802 |
-
},
|
1803 |
-
"@wordpress/escape-html": {
|
1804 |
-
"version": "1.6.0",
|
1805 |
-
"resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-1.6.0.tgz",
|
1806 |
-
"integrity": "sha512-PD4fEg7qIB2l8+buuRmYJ5edQhvUzydu6XoCigV2G4rju3BI+MO57BcEZf1LSPfbrYqTJCca3ElNW9nNbSQthQ==",
|
1807 |
-
"requires": {
|
1808 |
-
"@babel/runtime": "^7.4.4"
|
1809 |
}
|
1810 |
},
|
1811 |
-
"@
|
1812 |
-
"version": "
|
1813 |
-
"resolved": "https://registry.npmjs.org/@
|
1814 |
-
"integrity": "sha512-
|
1815 |
"dev": true,
|
1816 |
"requires": {
|
1817 |
-
"
|
1818 |
-
"
|
1819 |
-
"
|
1820 |
-
"eslint-plugin-jsx-a11y": "^6.2.3",
|
1821 |
-
"eslint-plugin-react": "^7.14.3",
|
1822 |
-
"eslint-plugin-react-hooks": "^1.6.1",
|
1823 |
-
"globals": "^12.0.0",
|
1824 |
-
"requireindex": "^1.2.0"
|
1825 |
},
|
1826 |
"dependencies": {
|
1827 |
-
"
|
1828 |
-
"version": "
|
1829 |
-
"resolved": "https://registry.npmjs.org/
|
1830 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
1831 |
"dev": true,
|
1832 |
"requires": {
|
1833 |
-
"
|
|
|
|
|
|
|
|
|
1834 |
}
|
1835 |
},
|
1836 |
-
"
|
1837 |
-
"version": "0.
|
1838 |
-
"resolved": "https://registry.npmjs.org/
|
1839 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1840 |
"dev": true
|
1841 |
}
|
1842 |
}
|
1843 |
},
|
1844 |
-
"@
|
1845 |
-
"version": "
|
1846 |
-
"resolved": "https://registry.npmjs.org/@
|
1847 |
-
"integrity": "sha512
|
1848 |
-
"
|
1849 |
-
"@babel/runtime": "^7.4.4"
|
1850 |
-
}
|
1851 |
-
},
|
1852 |
-
"@wordpress/i18n": {
|
1853 |
-
"version": "3.7.0",
|
1854 |
-
"resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-3.7.0.tgz",
|
1855 |
-
"integrity": "sha512-yavu3yAKbSkEosQvEd0lCa064SdFFb8i6f7RfZGDq/TQfJHBaJQvRA4Hd/CtrOXqS6DLjw2rLNrVG4XcJFss1A==",
|
1856 |
"requires": {
|
1857 |
-
"@babel/
|
1858 |
-
|
1859 |
-
|
1860 |
-
"
|
1861 |
-
|
1862 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1863 |
}
|
1864 |
},
|
1865 |
-
"@
|
1866 |
-
"version": "
|
1867 |
-
"resolved": "https://registry.npmjs.org/@
|
1868 |
-
"integrity": "sha512-
|
|
|
1869 |
"requires": {
|
1870 |
-
"@babel/
|
|
|
|
|
|
|
1871 |
}
|
1872 |
},
|
1873 |
-
"@
|
1874 |
-
"version": "
|
1875 |
-
"resolved": "https://registry.npmjs.org/@
|
1876 |
-
"integrity": "sha512-
|
1877 |
"dev": true,
|
1878 |
"requires": {
|
1879 |
-
"
|
1880 |
-
"
|
1881 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1882 |
}
|
1883 |
},
|
1884 |
-
"@
|
1885 |
-
"version": "5.
|
1886 |
-
"resolved": "https://registry.npmjs.org/@
|
1887 |
-
"integrity": "sha512-
|
1888 |
"dev": true,
|
1889 |
"requires": {
|
1890 |
-
"@
|
1891 |
-
"@
|
1892 |
-
"babel-
|
1893 |
-
"
|
1894 |
-
"
|
1895 |
-
"
|
1896 |
-
|
1897 |
-
|
1898 |
-
"@wordpress/npm-package-json-lint-config": {
|
1899 |
-
"version": "2.1.0",
|
1900 |
-
"resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-2.1.0.tgz",
|
1901 |
-
"integrity": "sha512-NSwcK7GtlmW5O5ZMG7elRKBa9sPws17Sadjlztig6ShOuhlLFeHYk99tUenpmJ/PYOZex4fSJ5e9mqjPyKunjw==",
|
1902 |
-
"dev": true
|
1903 |
-
},
|
1904 |
-
"@wordpress/priority-queue": {
|
1905 |
-
"version": "1.3.1",
|
1906 |
-
"resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-1.3.1.tgz",
|
1907 |
-
"integrity": "sha512-KQ242PoGFpttTqoz2UZwnOeecHtSQ4qaVf45WSgjYvi1tTIqTNu4OlYiO70XmRDmHj2UcUvL02Ie7czTfbK2sw==",
|
1908 |
-
"requires": {
|
1909 |
-
"@babel/runtime": "^7.4.4"
|
1910 |
-
}
|
1911 |
-
},
|
1912 |
-
"@wordpress/redux-routine": {
|
1913 |
-
"version": "3.6.2",
|
1914 |
-
"resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-3.6.2.tgz",
|
1915 |
-
"integrity": "sha512-+WxQzKzaFKLfioFxIyT8J4NqOfra4DvFK1jdAqmhLdqfdY9wuSFsJHlbt5hF5fVx32n7lidx/mGkP1ysmigkqA==",
|
1916 |
-
"requires": {
|
1917 |
-
"@babel/runtime": "^7.4.4",
|
1918 |
-
"is-promise": "^2.1.0",
|
1919 |
-
"lodash": "^4.17.15",
|
1920 |
-
"rungen": "^0.3.2"
|
1921 |
-
}
|
1922 |
-
},
|
1923 |
-
"@wordpress/scripts": {
|
1924 |
-
"version": "6.2.0",
|
1925 |
-
"resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-6.2.0.tgz",
|
1926 |
-
"integrity": "sha512-ontkmdA5prqBhHYrwv0JIHjHvCZOdG27LktT+UcHuDW6VW3axylmYkTXX0EMA05ChMqHlfLWc4nZJVaChnBkrA==",
|
1927 |
-
"dev": true,
|
1928 |
-
"requires": {
|
1929 |
-
"@wordpress/babel-preset-default": "^4.9.0",
|
1930 |
-
"@wordpress/dependency-extraction-webpack-plugin": "^2.1.0",
|
1931 |
-
"@wordpress/eslint-plugin": "^3.3.0",
|
1932 |
-
"@wordpress/jest-preset-default": "^5.3.1",
|
1933 |
-
"@wordpress/npm-package-json-lint-config": "^2.1.0",
|
1934 |
-
"babel-jest": "^24.7.1",
|
1935 |
-
"babel-loader": "^8.0.6",
|
1936 |
-
"chalk": "^2.4.2",
|
1937 |
-
"check-node-version": "^3.1.1",
|
1938 |
-
"command-exists": "^1.2.8",
|
1939 |
-
"cross-spawn": "^5.1.0",
|
1940 |
-
"decompress-zip": "^0.2.2",
|
1941 |
-
"eslint": "^6.1.0",
|
1942 |
-
"jest": "^24.7.1",
|
1943 |
-
"jest-puppeteer": "^4.3.0",
|
1944 |
-
"js-yaml": "^3.13.1",
|
1945 |
-
"lodash": "^4.17.15",
|
1946 |
-
"minimist": "^1.2.0",
|
1947 |
-
"npm-package-json-lint": "^4.0.3",
|
1948 |
-
"puppeteer": "^2.0.0",
|
1949 |
-
"read-pkg-up": "^1.0.1",
|
1950 |
-
"request": "^2.88.0",
|
1951 |
-
"resolve-bin": "^0.4.0",
|
1952 |
-
"source-map-loader": "^0.2.4",
|
1953 |
-
"sprintf-js": "^1.1.1",
|
1954 |
-
"stylelint": "^9.10.1",
|
1955 |
-
"stylelint-config-wordpress": "^13.1.0",
|
1956 |
-
"thread-loader": "^2.1.2",
|
1957 |
-
"webpack": "^4.41.0",
|
1958 |
-
"webpack-bundle-analyzer": "^3.3.2",
|
1959 |
-
"webpack-cli": "^3.1.2",
|
1960 |
-
"webpack-livereload-plugin": "^2.2.0"
|
1961 |
},
|
1962 |
"dependencies": {
|
1963 |
-
"
|
1964 |
-
"version": "
|
1965 |
-
"resolved": "https://registry.npmjs.org/
|
1966 |
-
"integrity": "sha512-
|
1967 |
"dev": true,
|
1968 |
"requires": {
|
1969 |
-
"
|
1970 |
-
"escape-string-regexp": "^1.0.5",
|
1971 |
-
"supports-color": "^5.3.0"
|
1972 |
}
|
1973 |
},
|
1974 |
-
"
|
1975 |
-
"version": "
|
1976 |
-
"resolved": "https://registry.npmjs.org/
|
1977 |
-
"integrity": "
|
1978 |
"dev": true,
|
1979 |
"requires": {
|
1980 |
-
"
|
1981 |
-
"
|
1982 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1983 |
}
|
1984 |
},
|
1985 |
-
"
|
1986 |
-
"version": "
|
1987 |
-
"resolved": "https://registry.npmjs.org/
|
1988 |
-
"integrity": "sha512
|
1989 |
"dev": true,
|
1990 |
"requires": {
|
1991 |
-
"
|
1992 |
-
"
|
|
|
|
|
1993 |
}
|
1994 |
-
}
|
1995 |
-
}
|
1996 |
-
},
|
1997 |
-
"@xtuc/ieee754": {
|
1998 |
-
"version": "1.2.0",
|
1999 |
-
"resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
|
2000 |
-
"integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
|
2001 |
-
"dev": true
|
2002 |
-
},
|
2003 |
-
"@xtuc/long": {
|
2004 |
-
"version": "4.2.2",
|
2005 |
-
"resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
|
2006 |
-
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
|
2007 |
-
"dev": true
|
2008 |
-
},
|
2009 |
-
"JSONStream": {
|
2010 |
-
"version": "1.3.5",
|
2011 |
-
"resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz",
|
2012 |
-
"integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==",
|
2013 |
-
"dev": true,
|
2014 |
-
"requires": {
|
2015 |
-
"jsonparse": "^1.2.0",
|
2016 |
-
"through": ">=2.2.7 <3"
|
2017 |
-
}
|
2018 |
-
},
|
2019 |
-
"abab": {
|
2020 |
-
"version": "2.0.3",
|
2021 |
-
"resolved": "https://registry.npmjs.org/abab/-/abab-2.0.3.tgz",
|
2022 |
-
"integrity": "sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg==",
|
2023 |
-
"dev": true
|
2024 |
-
},
|
2025 |
-
"abbrev": {
|
2026 |
-
"version": "1.1.1",
|
2027 |
-
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
|
2028 |
-
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
|
2029 |
-
},
|
2030 |
-
"accepts": {
|
2031 |
-
"version": "1.3.7",
|
2032 |
-
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
|
2033 |
-
"integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
|
2034 |
-
"dev": true,
|
2035 |
-
"requires": {
|
2036 |
-
"mime-types": "~2.1.24",
|
2037 |
-
"negotiator": "0.6.2"
|
2038 |
-
}
|
2039 |
-
},
|
2040 |
-
"acorn": {
|
2041 |
-
"version": "6.4.0",
|
2042 |
-
"resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.0.tgz",
|
2043 |
-
"integrity": "sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==",
|
2044 |
-
"dev": true
|
2045 |
-
},
|
2046 |
-
"acorn-globals": {
|
2047 |
-
"version": "4.3.4",
|
2048 |
-
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz",
|
2049 |
-
"integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==",
|
2050 |
-
"dev": true,
|
2051 |
-
"requires": {
|
2052 |
-
"acorn": "^6.0.1",
|
2053 |
-
"acorn-walk": "^6.0.1"
|
2054 |
-
}
|
2055 |
-
},
|
2056 |
-
"acorn-jsx": {
|
2057 |
-
"version": "5.1.0",
|
2058 |
-
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.1.0.tgz",
|
2059 |
-
"integrity": "sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw==",
|
2060 |
-
"dev": true
|
2061 |
-
},
|
2062 |
-
"acorn-walk": {
|
2063 |
-
"version": "6.2.0",
|
2064 |
-
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz",
|
2065 |
-
"integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==",
|
2066 |
-
"dev": true
|
2067 |
-
},
|
2068 |
-
"agent-base": {
|
2069 |
-
"version": "4.3.0",
|
2070 |
-
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz",
|
2071 |
-
"integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==",
|
2072 |
-
"dev": true,
|
2073 |
-
"requires": {
|
2074 |
-
"es6-promisify": "^5.0.0"
|
2075 |
-
}
|
2076 |
-
},
|
2077 |
-
"agentkeepalive": {
|
2078 |
-
"version": "3.5.2",
|
2079 |
-
"resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-3.5.2.tgz",
|
2080 |
-
"integrity": "sha512-e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ==",
|
2081 |
-
"dev": true,
|
2082 |
-
"requires": {
|
2083 |
-
"humanize-ms": "^1.2.1"
|
2084 |
-
}
|
2085 |
-
},
|
2086 |
-
"airbnb-prop-types": {
|
2087 |
-
"version": "2.15.0",
|
2088 |
-
"resolved": "https://registry.npmjs.org/airbnb-prop-types/-/airbnb-prop-types-2.15.0.tgz",
|
2089 |
-
"integrity": "sha512-jUh2/hfKsRjNFC4XONQrxo/n/3GG4Tn6Hl0WlFQN5PY9OMC9loSCoAYKnZsWaP8wEfd5xcrPloK0Zg6iS1xwVA==",
|
2090 |
-
"dev": true,
|
2091 |
-
"requires": {
|
2092 |
-
"array.prototype.find": "^2.1.0",
|
2093 |
-
"function.prototype.name": "^1.1.1",
|
2094 |
-
"has": "^1.0.3",
|
2095 |
-
"is-regex": "^1.0.4",
|
2096 |
-
"object-is": "^1.0.1",
|
2097 |
-
"object.assign": "^4.1.0",
|
2098 |
-
"object.entries": "^1.1.0",
|
2099 |
-
"prop-types": "^15.7.2",
|
2100 |
-
"prop-types-exact": "^1.2.0",
|
2101 |
-
"react-is": "^16.9.0"
|
2102 |
-
}
|
2103 |
-
},
|
2104 |
-
"ajv": {
|
2105 |
-
"version": "6.6.2",
|
2106 |
-
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.6.2.tgz",
|
2107 |
-
"integrity": "sha512-FBHEW6Jf5TB9MGBgUUA9XHkTbjXYfAUjY43ACMfmdMRHniyoMHjHjzD50OK8LGDWQwp4rWEsIq5kEqq7rvIM1g==",
|
2108 |
-
"requires": {
|
2109 |
-
"fast-deep-equal": "^2.0.1",
|
2110 |
-
"fast-json-stable-stringify": "^2.0.0",
|
2111 |
-
"json-schema-traverse": "^0.4.1",
|
2112 |
-
"uri-js": "^4.2.2"
|
2113 |
-
}
|
2114 |
-
},
|
2115 |
-
"ajv-errors": {
|
2116 |
-
"version": "1.0.1",
|
2117 |
-
"resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz",
|
2118 |
-
"integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==",
|
2119 |
-
"dev": true
|
2120 |
-
},
|
2121 |
-
"ajv-keywords": {
|
2122 |
-
"version": "3.2.0",
|
2123 |
-
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.2.0.tgz",
|
2124 |
-
"integrity": "sha1-6GuBnGAs+IIa1jdBNpjx3sAhhHo=",
|
2125 |
-
"dev": true
|
2126 |
-
},
|
2127 |
-
"amdefine": {
|
2128 |
-
"version": "1.0.1",
|
2129 |
-
"resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
|
2130 |
-
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU="
|
2131 |
-
},
|
2132 |
-
"ansi-align": {
|
2133 |
-
"version": "3.0.0",
|
2134 |
-
"resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.0.tgz",
|
2135 |
-
"integrity": "sha512-ZpClVKqXN3RGBmKibdfWzqCY4lnjEuoNzU5T0oEFpfd/z5qJHVarukridD4juLO2FXMiwUQxr9WqQtaYa8XRYw==",
|
2136 |
-
"dev": true,
|
2137 |
-
"requires": {
|
2138 |
-
"string-width": "^3.0.0"
|
2139 |
-
},
|
2140 |
-
"dependencies": {
|
2141 |
-
"ansi-regex": {
|
2142 |
-
"version": "4.1.0",
|
2143 |
-
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
|
2144 |
-
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
|
2145 |
-
"dev": true
|
2146 |
},
|
2147 |
-
"
|
2148 |
-
"version": "
|
2149 |
-
"resolved": "https://registry.npmjs.org/
|
2150 |
-
"integrity": "
|
2151 |
-
"dev": true
|
|
|
|
|
|
|
2152 |
},
|
2153 |
-
"
|
2154 |
-
"version": "
|
2155 |
-
"resolved": "https://registry.npmjs.org/
|
2156 |
-
"integrity": "sha512-
|
2157 |
"dev": true,
|
2158 |
"requires": {
|
2159 |
-
"
|
2160 |
-
"
|
2161 |
-
"strip-ansi": "^5.1.0"
|
2162 |
}
|
2163 |
},
|
2164 |
-
"
|
2165 |
-
"version": "
|
2166 |
-
"resolved": "https://registry.npmjs.org/
|
2167 |
-
"integrity": "sha512-
|
2168 |
"dev": true,
|
2169 |
"requires": {
|
2170 |
-
"
|
|
|
|
|
2171 |
}
|
2172 |
-
}
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
"version": "7.5.5",
|
9 |
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz",
|
10 |
"integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==",
|
|
|
11 |
"requires": {
|
12 |
"@babel/highlight": "^7.0.0"
|
13 |
}
|
14 |
},
|
15 |
+
"@babel/compat-data": {
|
16 |
+
"version": "7.9.6",
|
17 |
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.9.6.tgz",
|
18 |
+
"integrity": "sha512-5QPTrNen2bm7RBc7dsOmcA5hbrS4O2Vhmk5XOL4zWW/zD/hV0iinpefDlkm+tBBy8kDtFaaeEvmAqt+nURAV2g==",
|
19 |
+
"dev": true,
|
20 |
+
"requires": {
|
21 |
+
"browserslist": "^4.11.1",
|
22 |
+
"invariant": "^2.2.4",
|
23 |
+
"semver": "^5.5.0"
|
24 |
+
},
|
25 |
+
"dependencies": {
|
26 |
+
"browserslist": {
|
27 |
+
"version": "4.12.0",
|
28 |
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz",
|
29 |
+
"integrity": "sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==",
|
30 |
+
"dev": true,
|
31 |
+
"requires": {
|
32 |
+
"caniuse-lite": "^1.0.30001043",
|
33 |
+
"electron-to-chromium": "^1.3.413",
|
34 |
+
"node-releases": "^1.1.53",
|
35 |
+
"pkg-up": "^2.0.0"
|
36 |
+
}
|
37 |
+
},
|
38 |
+
"caniuse-lite": {
|
39 |
+
"version": "1.0.30001066",
|
40 |
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001066.tgz",
|
41 |
+
"integrity": "sha512-Gfj/WAastBtfxLws0RCh2sDbTK/8rJuSeZMecrSkNGYxPcv7EzblmDGfWQCFEQcSqYE2BRgQiJh8HOD07N5hIw==",
|
42 |
+
"dev": true
|
43 |
+
},
|
44 |
+
"electron-to-chromium": {
|
45 |
+
"version": "1.3.452",
|
46 |
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.452.tgz",
|
47 |
+
"integrity": "sha512-IdbjgCEqDvcU/1kUQa6C49I2NZOY3SBmU9Eus7mdFdJJBqn0Lg1Epfi/T4nqVcxTNBEGhcjwMhY1EysMBsXZrw==",
|
48 |
+
"dev": true
|
49 |
+
},
|
50 |
+
"node-releases": {
|
51 |
+
"version": "1.1.56",
|
52 |
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.56.tgz",
|
53 |
+
"integrity": "sha512-EVo605FhWLygH8a64TjgpjyHYOihkxECwX1bHHr8tETJKWEiWS2YJjPbvsX2jFjnjTNEgBCmk9mLjKG1Mf11cw==",
|
54 |
+
"dev": true
|
55 |
+
}
|
56 |
+
}
|
57 |
+
},
|
58 |
"@babel/core": {
|
59 |
"version": "7.7.7",
|
60 |
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.7.7.tgz",
|
129 |
"esutils": "^2.0.0"
|
130 |
}
|
131 |
},
|
132 |
+
"@babel/helper-builder-react-jsx-experimental": {
|
133 |
+
"version": "7.9.5",
|
134 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.5.tgz",
|
135 |
+
"integrity": "sha512-HAagjAC93tk748jcXpZ7oYRZH485RCq/+yEv9SIWezHRPv9moZArTnkUNciUNzvwHUABmiWKlcxJvMcu59UwTg==",
|
136 |
+
"dev": true,
|
137 |
+
"requires": {
|
138 |
+
"@babel/helper-annotate-as-pure": "^7.8.3",
|
139 |
+
"@babel/helper-module-imports": "^7.8.3",
|
140 |
+
"@babel/types": "^7.9.5"
|
141 |
+
},
|
142 |
+
"dependencies": {
|
143 |
+
"@babel/helper-annotate-as-pure": {
|
144 |
+
"version": "7.8.3",
|
145 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz",
|
146 |
+
"integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==",
|
147 |
+
"dev": true,
|
148 |
+
"requires": {
|
149 |
+
"@babel/types": "^7.8.3"
|
150 |
+
}
|
151 |
+
},
|
152 |
+
"@babel/helper-module-imports": {
|
153 |
+
"version": "7.8.3",
|
154 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz",
|
155 |
+
"integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==",
|
156 |
+
"dev": true,
|
157 |
+
"requires": {
|
158 |
+
"@babel/types": "^7.8.3"
|
159 |
+
}
|
160 |
+
},
|
161 |
+
"@babel/types": {
|
162 |
+
"version": "7.9.6",
|
163 |
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
|
164 |
+
"integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
|
165 |
+
"dev": true,
|
166 |
+
"requires": {
|
167 |
+
"@babel/helper-validator-identifier": "^7.9.5",
|
168 |
+
"lodash": "^4.17.13",
|
169 |
+
"to-fast-properties": "^2.0.0"
|
170 |
+
}
|
171 |
+
}
|
172 |
+
}
|
173 |
+
},
|
174 |
"@babel/helper-call-delegate": {
|
175 |
"version": "7.7.4",
|
176 |
"resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.7.4.tgz",
|
182 |
"@babel/types": "^7.7.4"
|
183 |
}
|
184 |
},
|
185 |
+
"@babel/helper-compilation-targets": {
|
186 |
+
"version": "7.9.6",
|
187 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.9.6.tgz",
|
188 |
+
"integrity": "sha512-x2Nvu0igO0ejXzx09B/1fGBxY9NXQlBW2kZsSxCJft+KHN8t9XWzIvFxtPHnBOAXpVsdxZKZFbRUC8TsNKajMw==",
|
189 |
+
"dev": true,
|
190 |
+
"requires": {
|
191 |
+
"@babel/compat-data": "^7.9.6",
|
192 |
+
"browserslist": "^4.11.1",
|
193 |
+
"invariant": "^2.2.4",
|
194 |
+
"levenary": "^1.1.1",
|
195 |
+
"semver": "^5.5.0"
|
196 |
+
},
|
197 |
+
"dependencies": {
|
198 |
+
"browserslist": {
|
199 |
+
"version": "4.12.0",
|
200 |
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz",
|
201 |
+
"integrity": "sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==",
|
202 |
+
"dev": true,
|
203 |
+
"requires": {
|
204 |
+
"caniuse-lite": "^1.0.30001043",
|
205 |
+
"electron-to-chromium": "^1.3.413",
|
206 |
+
"node-releases": "^1.1.53",
|
207 |
+
"pkg-up": "^2.0.0"
|
208 |
+
}
|
209 |
+
},
|
210 |
+
"caniuse-lite": {
|
211 |
+
"version": "1.0.30001066",
|
212 |
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001066.tgz",
|
213 |
+
"integrity": "sha512-Gfj/WAastBtfxLws0RCh2sDbTK/8rJuSeZMecrSkNGYxPcv7EzblmDGfWQCFEQcSqYE2BRgQiJh8HOD07N5hIw==",
|
214 |
+
"dev": true
|
215 |
+
},
|
216 |
+
"electron-to-chromium": {
|
217 |
+
"version": "1.3.452",
|
218 |
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.452.tgz",
|
219 |
+
"integrity": "sha512-IdbjgCEqDvcU/1kUQa6C49I2NZOY3SBmU9Eus7mdFdJJBqn0Lg1Epfi/T4nqVcxTNBEGhcjwMhY1EysMBsXZrw==",
|
220 |
+
"dev": true
|
221 |
+
},
|
222 |
+
"node-releases": {
|
223 |
+
"version": "1.1.56",
|
224 |
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.56.tgz",
|
225 |
+
"integrity": "sha512-EVo605FhWLygH8a64TjgpjyHYOihkxECwX1bHHr8tETJKWEiWS2YJjPbvsX2jFjnjTNEgBCmk9mLjKG1Mf11cw==",
|
226 |
+
"dev": true
|
227 |
+
}
|
228 |
+
}
|
229 |
+
},
|
230 |
"@babel/helper-create-regexp-features-plugin": {
|
231 |
"version": "7.7.4",
|
232 |
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.4.tgz",
|
300 |
"version": "7.7.4",
|
301 |
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.7.4.tgz",
|
302 |
"integrity": "sha512-dGcrX6K9l8258WFjyDLJwuVKxR4XZfU0/vTUgOQYWEnRD8mgr+p4d6fCUMq/ys0h4CCt/S5JhbvtyErjWouAUQ==",
|
|
|
303 |
"requires": {
|
304 |
"@babel/types": "^7.7.4"
|
305 |
}
|
386 |
"@babel/types": "^7.7.4"
|
387 |
}
|
388 |
},
|
389 |
+
"@babel/helper-validator-identifier": {
|
390 |
+
"version": "7.9.5",
|
391 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz",
|
392 |
+
"integrity": "sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g==",
|
393 |
+
"dev": true
|
394 |
+
},
|
395 |
"@babel/helper-wrap-function": {
|
396 |
"version": "7.7.4",
|
397 |
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.7.4.tgz",
|
419 |
"version": "7.5.0",
|
420 |
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz",
|
421 |
"integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==",
|
|
|
422 |
"requires": {
|
423 |
"chalk": "^2.0.0",
|
424 |
"esutils": "^2.0.2",
|
462 |
"@babel/plugin-syntax-json-strings": "^7.7.4"
|
463 |
}
|
464 |
},
|
465 |
+
"@babel/plugin-proposal-nullish-coalescing-operator": {
|
466 |
+
"version": "7.8.3",
|
467 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz",
|
468 |
+
"integrity": "sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==",
|
469 |
+
"dev": true,
|
470 |
+
"requires": {
|
471 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
472 |
+
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0"
|
473 |
+
},
|
474 |
+
"dependencies": {
|
475 |
+
"@babel/helper-plugin-utils": {
|
476 |
+
"version": "7.8.3",
|
477 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
478 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
479 |
+
"dev": true
|
480 |
+
}
|
481 |
+
}
|
482 |
+
},
|
483 |
+
"@babel/plugin-proposal-numeric-separator": {
|
484 |
+
"version": "7.8.3",
|
485 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz",
|
486 |
+
"integrity": "sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==",
|
487 |
+
"dev": true,
|
488 |
+
"requires": {
|
489 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
490 |
+
"@babel/plugin-syntax-numeric-separator": "^7.8.3"
|
491 |
+
},
|
492 |
+
"dependencies": {
|
493 |
+
"@babel/helper-plugin-utils": {
|
494 |
+
"version": "7.8.3",
|
495 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
496 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
497 |
+
"dev": true
|
498 |
+
}
|
499 |
+
}
|
500 |
+
},
|
501 |
"@babel/plugin-proposal-object-rest-spread": {
|
502 |
"version": "7.7.7",
|
503 |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.7.7.tgz",
|
518 |
"@babel/plugin-syntax-optional-catch-binding": "^7.7.4"
|
519 |
}
|
520 |
},
|
521 |
+
"@babel/plugin-proposal-optional-chaining": {
|
522 |
+
"version": "7.9.0",
|
523 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz",
|
524 |
+
"integrity": "sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==",
|
525 |
+
"dev": true,
|
526 |
+
"requires": {
|
527 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
528 |
+
"@babel/plugin-syntax-optional-chaining": "^7.8.0"
|
529 |
+
},
|
530 |
+
"dependencies": {
|
531 |
+
"@babel/helper-plugin-utils": {
|
532 |
+
"version": "7.8.3",
|
533 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
534 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
535 |
+
"dev": true
|
536 |
+
}
|
537 |
+
}
|
538 |
+
},
|
539 |
"@babel/plugin-proposal-unicode-property-regex": {
|
540 |
"version": "7.7.7",
|
541 |
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.7.tgz",
|
555 |
"@babel/helper-plugin-utils": "^7.0.0"
|
556 |
}
|
557 |
},
|
558 |
+
"@babel/plugin-syntax-bigint": {
|
559 |
+
"version": "7.8.3",
|
560 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
|
561 |
+
"integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
|
562 |
+
"dev": true,
|
563 |
+
"requires": {
|
564 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
565 |
+
},
|
566 |
+
"dependencies": {
|
567 |
+
"@babel/helper-plugin-utils": {
|
568 |
+
"version": "7.8.3",
|
569 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
570 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
571 |
+
"dev": true
|
572 |
+
}
|
573 |
+
}
|
574 |
+
},
|
575 |
+
"@babel/plugin-syntax-class-properties": {
|
576 |
+
"version": "7.8.3",
|
577 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.8.3.tgz",
|
578 |
+
"integrity": "sha512-UcAyQWg2bAN647Q+O811tG9MrJ38Z10jjhQdKNAL8fsyPzE3cCN/uT+f55cFVY4aGO4jqJAvmqsuY3GQDwAoXg==",
|
579 |
+
"dev": true,
|
580 |
+
"requires": {
|
581 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
582 |
+
},
|
583 |
+
"dependencies": {
|
584 |
+
"@babel/helper-plugin-utils": {
|
585 |
+
"version": "7.8.3",
|
586 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
587 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
588 |
+
"dev": true
|
589 |
+
}
|
590 |
+
}
|
591 |
+
},
|
592 |
"@babel/plugin-syntax-dynamic-import": {
|
593 |
"version": "7.7.4",
|
594 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.7.4.tgz",
|
616 |
"@babel/helper-plugin-utils": "^7.0.0"
|
617 |
}
|
618 |
},
|
619 |
+
"@babel/plugin-syntax-logical-assignment-operators": {
|
620 |
+
"version": "7.8.3",
|
621 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.8.3.tgz",
|
622 |
+
"integrity": "sha512-Zpg2Sgc++37kuFl6ppq2Q7Awc6E6AIW671x5PY8E/f7MCIyPPGK/EoeZXvvY3P42exZ3Q4/t3YOzP/HiN79jDg==",
|
623 |
+
"dev": true,
|
624 |
+
"requires": {
|
625 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
626 |
+
},
|
627 |
+
"dependencies": {
|
628 |
+
"@babel/helper-plugin-utils": {
|
629 |
+
"version": "7.8.3",
|
630 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
631 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
632 |
+
"dev": true
|
633 |
+
}
|
634 |
+
}
|
635 |
+
},
|
636 |
+
"@babel/plugin-syntax-nullish-coalescing-operator": {
|
637 |
+
"version": "7.8.3",
|
638 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
|
639 |
+
"integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
|
640 |
+
"dev": true,
|
641 |
+
"requires": {
|
642 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
643 |
+
},
|
644 |
+
"dependencies": {
|
645 |
+
"@babel/helper-plugin-utils": {
|
646 |
+
"version": "7.8.3",
|
647 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
648 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
649 |
+
"dev": true
|
650 |
+
}
|
651 |
+
}
|
652 |
+
},
|
653 |
+
"@babel/plugin-syntax-numeric-separator": {
|
654 |
+
"version": "7.8.3",
|
655 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz",
|
656 |
+
"integrity": "sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw==",
|
657 |
+
"dev": true,
|
658 |
+
"requires": {
|
659 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
660 |
+
},
|
661 |
+
"dependencies": {
|
662 |
+
"@babel/helper-plugin-utils": {
|
663 |
+
"version": "7.8.3",
|
664 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
665 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
666 |
+
"dev": true
|
667 |
+
}
|
668 |
+
}
|
669 |
+
},
|
670 |
"@babel/plugin-syntax-object-rest-spread": {
|
671 |
"version": "7.7.4",
|
672 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.7.4.tgz",
|
685 |
"@babel/helper-plugin-utils": "^7.0.0"
|
686 |
}
|
687 |
},
|
688 |
+
"@babel/plugin-syntax-optional-chaining": {
|
689 |
+
"version": "7.8.3",
|
690 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
|
691 |
+
"integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
|
692 |
+
"dev": true,
|
693 |
+
"requires": {
|
694 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
695 |
+
},
|
696 |
+
"dependencies": {
|
697 |
+
"@babel/helper-plugin-utils": {
|
698 |
+
"version": "7.8.3",
|
699 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
700 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
701 |
+
"dev": true
|
702 |
+
}
|
703 |
+
}
|
704 |
+
},
|
705 |
"@babel/plugin-syntax-top-level-await": {
|
706 |
"version": "7.7.4",
|
707 |
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.4.tgz",
|
942 |
"@babel/helper-plugin-utils": "^7.0.0"
|
943 |
}
|
944 |
},
|
945 |
+
"@babel/plugin-transform-react-constant-elements": {
|
946 |
+
"version": "7.9.0",
|
947 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.9.0.tgz",
|
948 |
+
"integrity": "sha512-wXMXsToAUOxJuBBEHajqKLFWcCkOSLshTI2ChCFFj1zDd7od4IOxiwLCOObNUvOpkxLpjIuaIdBMmNt6ocCPAw==",
|
949 |
"dev": true,
|
950 |
"requires": {
|
951 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
952 |
+
},
|
953 |
+
"dependencies": {
|
954 |
+
"@babel/helper-plugin-utils": {
|
955 |
+
"version": "7.8.3",
|
956 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
957 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
958 |
+
"dev": true
|
959 |
+
}
|
960 |
}
|
961 |
},
|
962 |
+
"@babel/plugin-transform-react-display-name": {
|
963 |
+
"version": "7.8.3",
|
964 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz",
|
965 |
+
"integrity": "sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A==",
|
966 |
"dev": true,
|
967 |
"requires": {
|
968 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
969 |
+
},
|
970 |
+
"dependencies": {
|
971 |
+
"@babel/helper-plugin-utils": {
|
972 |
+
"version": "7.8.3",
|
973 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
974 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
975 |
+
"dev": true
|
976 |
+
}
|
977 |
}
|
978 |
},
|
979 |
+
"@babel/plugin-transform-react-jsx": {
|
980 |
+
"version": "7.7.7",
|
981 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.7.7.tgz",
|
982 |
+
"integrity": "sha512-SlPjWPbva2+7/ZJbGcoqjl4LsQaLpKEzxW9hcxU7675s24JmdotJOSJ4cgAbV82W3FcZpHIGmRZIlUL8ayMvjw==",
|
983 |
"dev": true,
|
984 |
"requires": {
|
985 |
+
"@babel/helper-builder-react-jsx": "^7.7.4",
|
986 |
+
"@babel/helper-plugin-utils": "^7.0.0",
|
987 |
+
"@babel/plugin-syntax-jsx": "^7.7.4"
|
988 |
}
|
989 |
},
|
990 |
+
"@babel/plugin-transform-react-jsx-development": {
|
991 |
+
"version": "7.9.0",
|
992 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.9.0.tgz",
|
993 |
+
"integrity": "sha512-tK8hWKrQncVvrhvtOiPpKrQjfNX3DtkNLSX4ObuGcpS9p0QrGetKmlySIGR07y48Zft8WVgPakqd/bk46JrMSw==",
|
994 |
"dev": true,
|
995 |
"requires": {
|
996 |
+
"@babel/helper-builder-react-jsx-experimental": "^7.9.0",
|
997 |
"@babel/helper-plugin-utils": "^7.8.3",
|
998 |
+
"@babel/plugin-syntax-jsx": "^7.8.3"
|
|
|
999 |
},
|
1000 |
"dependencies": {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1001 |
"@babel/helper-plugin-utils": {
|
1002 |
"version": "7.8.3",
|
1003 |
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
1004 |
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
1005 |
"dev": true
|
1006 |
},
|
1007 |
+
"@babel/plugin-syntax-jsx": {
|
1008 |
"version": "7.8.3",
|
1009 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz",
|
1010 |
+
"integrity": "sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==",
|
1011 |
"dev": true,
|
1012 |
"requires": {
|
1013 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
|
|
|
|
1014 |
}
|
1015 |
}
|
1016 |
}
|
1017 |
},
|
1018 |
+
"@babel/plugin-transform-react-jsx-self": {
|
1019 |
+
"version": "7.9.0",
|
1020 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.9.0.tgz",
|
1021 |
+
"integrity": "sha512-K2ObbWPKT7KUTAoyjCsFilOkEgMvFG+y0FqOl6Lezd0/13kMkkjHskVsZvblRPj1PHA44PrToaZANrryppzTvQ==",
|
1022 |
"dev": true,
|
1023 |
"requires": {
|
1024 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
1025 |
+
"@babel/plugin-syntax-jsx": "^7.8.3"
|
1026 |
+
},
|
1027 |
+
"dependencies": {
|
1028 |
+
"@babel/helper-plugin-utils": {
|
1029 |
+
"version": "7.8.3",
|
1030 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
1031 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
1032 |
+
"dev": true
|
1033 |
+
},
|
1034 |
+
"@babel/plugin-syntax-jsx": {
|
1035 |
+
"version": "7.8.3",
|
1036 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz",
|
1037 |
+
"integrity": "sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==",
|
1038 |
+
"dev": true,
|
1039 |
+
"requires": {
|
1040 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
1041 |
+
}
|
1042 |
+
}
|
1043 |
+
}
|
1044 |
+
},
|
1045 |
+
"@babel/plugin-transform-react-jsx-source": {
|
1046 |
+
"version": "7.9.0",
|
1047 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz",
|
1048 |
+
"integrity": "sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw==",
|
1049 |
+
"dev": true,
|
1050 |
+
"requires": {
|
1051 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
1052 |
+
"@babel/plugin-syntax-jsx": "^7.8.3"
|
1053 |
+
},
|
1054 |
+
"dependencies": {
|
1055 |
+
"@babel/helper-plugin-utils": {
|
1056 |
+
"version": "7.8.3",
|
1057 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
1058 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
1059 |
+
"dev": true
|
1060 |
+
},
|
1061 |
+
"@babel/plugin-syntax-jsx": {
|
1062 |
+
"version": "7.8.3",
|
1063 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz",
|
1064 |
+
"integrity": "sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==",
|
1065 |
+
"dev": true,
|
1066 |
+
"requires": {
|
1067 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
1068 |
+
}
|
1069 |
+
}
|
1070 |
+
}
|
1071 |
+
},
|
1072 |
+
"@babel/plugin-transform-regenerator": {
|
1073 |
+
"version": "7.7.5",
|
1074 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.5.tgz",
|
1075 |
+
"integrity": "sha512-/8I8tPvX2FkuEyWbjRCt4qTAgZK0DVy8QRguhA524UH48RfGJy94On2ri+dCuwOpcerPRl9O4ebQkRcVzIaGBw==",
|
1076 |
+
"dev": true,
|
1077 |
+
"requires": {
|
1078 |
+
"regenerator-transform": "^0.14.0"
|
1079 |
+
}
|
1080 |
+
},
|
1081 |
+
"@babel/plugin-transform-reserved-words": {
|
1082 |
+
"version": "7.7.4",
|
1083 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.7.4.tgz",
|
1084 |
+
"integrity": "sha512-OrPiUB5s5XvkCO1lS7D8ZtHcswIC57j62acAnJZKqGGnHP+TIc/ljQSrgdX/QyOTdEK5COAhuc820Hi1q2UgLQ==",
|
1085 |
+
"dev": true,
|
1086 |
+
"requires": {
|
1087 |
+
"@babel/helper-plugin-utils": "^7.0.0"
|
1088 |
+
}
|
1089 |
+
},
|
1090 |
+
"@babel/plugin-transform-runtime": {
|
1091 |
+
"version": "7.9.6",
|
1092 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.6.tgz",
|
1093 |
+
"integrity": "sha512-qcmiECD0mYOjOIt8YHNsAP1SxPooC/rDmfmiSK9BNY72EitdSc7l44WTEklaWuFtbOEBjNhWWyph/kOImbNJ4w==",
|
1094 |
+
"dev": true,
|
1095 |
+
"requires": {
|
1096 |
+
"@babel/helper-module-imports": "^7.8.3",
|
1097 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
1098 |
+
"resolve": "^1.8.1",
|
1099 |
+
"semver": "^5.5.1"
|
1100 |
+
},
|
1101 |
+
"dependencies": {
|
1102 |
+
"@babel/helper-module-imports": {
|
1103 |
+
"version": "7.8.3",
|
1104 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz",
|
1105 |
+
"integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==",
|
1106 |
+
"dev": true,
|
1107 |
+
"requires": {
|
1108 |
+
"@babel/types": "^7.8.3"
|
1109 |
+
}
|
1110 |
+
},
|
1111 |
+
"@babel/helper-plugin-utils": {
|
1112 |
+
"version": "7.8.3",
|
1113 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
1114 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
1115 |
+
"dev": true
|
1116 |
+
},
|
1117 |
+
"@babel/types": {
|
1118 |
+
"version": "7.9.6",
|
1119 |
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
|
1120 |
+
"integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
|
1121 |
+
"dev": true,
|
1122 |
+
"requires": {
|
1123 |
+
"@babel/helper-validator-identifier": "^7.9.5",
|
1124 |
+
"lodash": "^4.17.13",
|
1125 |
+
"to-fast-properties": "^2.0.0"
|
1126 |
+
}
|
1127 |
+
}
|
1128 |
+
}
|
1129 |
+
},
|
1130 |
+
"@babel/plugin-transform-shorthand-properties": {
|
1131 |
+
"version": "7.7.4",
|
1132 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.7.4.tgz",
|
1133 |
+
"integrity": "sha512-q+suddWRfIcnyG5YiDP58sT65AJDZSUhXQDZE3r04AuqD6d/XLaQPPXSBzP2zGerkgBivqtQm9XKGLuHqBID6Q==",
|
1134 |
+
"dev": true,
|
1135 |
+
"requires": {
|
1136 |
+
"@babel/helper-plugin-utils": "^7.0.0"
|
1137 |
+
}
|
1138 |
+
},
|
1139 |
+
"@babel/plugin-transform-spread": {
|
1140 |
+
"version": "7.7.4",
|
1141 |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.7.4.tgz",
|
1142 |
"integrity": "sha512-8OSs0FLe5/80cndziPlg4R0K6HcWSM0zyNhHhLsmw/Nc5MaA49cAsnoJ/t/YZf8qkG7fD+UjTRaApVDB526d7Q==",
|
1143 |
"dev": true,
|
1243 |
"semver": "^5.5.0"
|
1244 |
}
|
1245 |
},
|
1246 |
+
"@babel/preset-modules": {
|
1247 |
+
"version": "0.1.3",
|
1248 |
+
"resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.3.tgz",
|
1249 |
+
"integrity": "sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==",
|
1250 |
+
"dev": true,
|
1251 |
+
"requires": {
|
1252 |
+
"@babel/helper-plugin-utils": "^7.0.0",
|
1253 |
+
"@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
|
1254 |
+
"@babel/plugin-transform-dotall-regex": "^7.4.4",
|
1255 |
+
"@babel/types": "^7.4.4",
|
1256 |
+
"esutils": "^2.0.2"
|
1257 |
+
}
|
1258 |
+
},
|
1259 |
+
"@babel/preset-react": {
|
1260 |
+
"version": "7.9.4",
|
1261 |
+
"resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.9.4.tgz",
|
1262 |
+
"integrity": "sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ==",
|
1263 |
+
"dev": true,
|
1264 |
+
"requires": {
|
1265 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
1266 |
+
"@babel/plugin-transform-react-display-name": "^7.8.3",
|
1267 |
+
"@babel/plugin-transform-react-jsx": "^7.9.4",
|
1268 |
+
"@babel/plugin-transform-react-jsx-development": "^7.9.0",
|
1269 |
+
"@babel/plugin-transform-react-jsx-self": "^7.9.0",
|
1270 |
+
"@babel/plugin-transform-react-jsx-source": "^7.9.0"
|
1271 |
+
},
|
1272 |
+
"dependencies": {
|
1273 |
+
"@babel/helper-annotate-as-pure": {
|
1274 |
+
"version": "7.8.3",
|
1275 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz",
|
1276 |
+
"integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==",
|
1277 |
+
"dev": true,
|
1278 |
+
"requires": {
|
1279 |
+
"@babel/types": "^7.8.3"
|
1280 |
+
}
|
1281 |
+
},
|
1282 |
+
"@babel/helper-builder-react-jsx": {
|
1283 |
+
"version": "7.9.0",
|
1284 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz",
|
1285 |
+
"integrity": "sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw==",
|
1286 |
+
"dev": true,
|
1287 |
+
"requires": {
|
1288 |
+
"@babel/helper-annotate-as-pure": "^7.8.3",
|
1289 |
+
"@babel/types": "^7.9.0"
|
1290 |
+
}
|
1291 |
+
},
|
1292 |
+
"@babel/helper-plugin-utils": {
|
1293 |
+
"version": "7.8.3",
|
1294 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
1295 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
1296 |
+
"dev": true
|
1297 |
+
},
|
1298 |
+
"@babel/plugin-syntax-jsx": {
|
1299 |
+
"version": "7.8.3",
|
1300 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz",
|
1301 |
+
"integrity": "sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==",
|
1302 |
+
"dev": true,
|
1303 |
+
"requires": {
|
1304 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
1305 |
+
}
|
1306 |
+
},
|
1307 |
+
"@babel/plugin-transform-react-jsx": {
|
1308 |
+
"version": "7.9.4",
|
1309 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz",
|
1310 |
+
"integrity": "sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw==",
|
1311 |
+
"dev": true,
|
1312 |
+
"requires": {
|
1313 |
+
"@babel/helper-builder-react-jsx": "^7.9.0",
|
1314 |
+
"@babel/helper-builder-react-jsx-experimental": "^7.9.0",
|
1315 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
1316 |
+
"@babel/plugin-syntax-jsx": "^7.8.3"
|
1317 |
+
}
|
1318 |
+
},
|
1319 |
+
"@babel/types": {
|
1320 |
+
"version": "7.9.6",
|
1321 |
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
|
1322 |
+
"integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
|
1323 |
+
"dev": true,
|
1324 |
+
"requires": {
|
1325 |
+
"@babel/helper-validator-identifier": "^7.9.5",
|
1326 |
+
"lodash": "^4.17.13",
|
1327 |
+
"to-fast-properties": "^2.0.0"
|
1328 |
+
}
|
1329 |
+
}
|
1330 |
+
}
|
1331 |
+
},
|
1332 |
"@babel/runtime": {
|
1333 |
"version": "7.7.7",
|
1334 |
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.7.7.tgz",
|
1379 |
"version": "7.7.4",
|
1380 |
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz",
|
1381 |
"integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==",
|
|
|
1382 |
"requires": {
|
1383 |
"esutils": "^2.0.2",
|
1384 |
"lodash": "^4.17.13",
|
1385 |
"to-fast-properties": "^2.0.0"
|
1386 |
}
|
1387 |
},
|
1388 |
+
"@bcoe/v8-coverage": {
|
1389 |
+
"version": "0.2.3",
|
1390 |
+
"resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
|
1391 |
+
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
|
1392 |
+
"dev": true
|
1393 |
+
},
|
1394 |
"@cnakazawa/watch": {
|
1395 |
+
"version": "1.0.4",
|
1396 |
+
"resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz",
|
1397 |
+
"integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==",
|
1398 |
"dev": true,
|
1399 |
"requires": {
|
1400 |
"exec-sh": "^0.3.2",
|
1401 |
"minimist": "^1.2.0"
|
1402 |
}
|
1403 |
},
|
1404 |
+
"@emotion/cache": {
|
1405 |
+
"version": "10.0.29",
|
1406 |
+
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz",
|
1407 |
+
"integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==",
|
1408 |
+
"requires": {
|
1409 |
+
"@emotion/sheet": "0.9.4",
|
1410 |
+
"@emotion/stylis": "0.8.5",
|
1411 |
+
"@emotion/utils": "0.11.3",
|
1412 |
+
"@emotion/weak-memoize": "0.2.5"
|
1413 |
+
}
|
1414 |
+
},
|
1415 |
+
"@emotion/core": {
|
1416 |
+
"version": "10.0.28",
|
1417 |
+
"resolved": "https://registry.npmjs.org/@emotion/core/-/core-10.0.28.tgz",
|
1418 |
+
"integrity": "sha512-pH8UueKYO5jgg0Iq+AmCLxBsvuGtvlmiDCOuv8fGNYn3cowFpLN98L8zO56U0H1PjDIyAlXymgL3Wu7u7v6hbA==",
|
1419 |
+
"requires": {
|
1420 |
+
"@babel/runtime": "^7.5.5",
|
1421 |
+
"@emotion/cache": "^10.0.27",
|
1422 |
+
"@emotion/css": "^10.0.27",
|
1423 |
+
"@emotion/serialize": "^0.11.15",
|
1424 |
+
"@emotion/sheet": "0.9.4",
|
1425 |
+
"@emotion/utils": "0.11.3"
|
1426 |
+
}
|
1427 |
+
},
|
1428 |
+
"@emotion/css": {
|
1429 |
+
"version": "10.0.27",
|
1430 |
+
"resolved": "https://registry.npmjs.org/@emotion/css/-/css-10.0.27.tgz",
|
1431 |
+
"integrity": "sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==",
|
1432 |
+
"requires": {
|
1433 |
+
"@emotion/serialize": "^0.11.15",
|
1434 |
+
"@emotion/utils": "0.11.3",
|
1435 |
+
"babel-plugin-emotion": "^10.0.27"
|
1436 |
+
}
|
1437 |
+
},
|
1438 |
+
"@emotion/hash": {
|
1439 |
+
"version": "0.8.0",
|
1440 |
+
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
|
1441 |
+
"integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
|
1442 |
+
},
|
1443 |
+
"@emotion/is-prop-valid": {
|
1444 |
+
"version": "0.8.8",
|
1445 |
+
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
|
1446 |
+
"integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
|
1447 |
+
"requires": {
|
1448 |
+
"@emotion/memoize": "0.7.4"
|
1449 |
+
}
|
1450 |
+
},
|
1451 |
+
"@emotion/memoize": {
|
1452 |
+
"version": "0.7.4",
|
1453 |
+
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
|
1454 |
+
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
|
1455 |
+
},
|
1456 |
+
"@emotion/native": {
|
1457 |
+
"version": "10.0.27",
|
1458 |
+
"resolved": "https://registry.npmjs.org/@emotion/native/-/native-10.0.27.tgz",
|
1459 |
+
"integrity": "sha512-3qxR2XFizGfABKKbX9kAYc0PHhKuCEuyxshoq3TaMEbi9asWHdQVChg32ULpblm4XAf9oxaitAU7J9SfdwFxtw==",
|
1460 |
+
"requires": {
|
1461 |
+
"@emotion/primitives-core": "10.0.27"
|
1462 |
+
}
|
1463 |
+
},
|
1464 |
+
"@emotion/primitives-core": {
|
1465 |
+
"version": "10.0.27",
|
1466 |
+
"resolved": "https://registry.npmjs.org/@emotion/primitives-core/-/primitives-core-10.0.27.tgz",
|
1467 |
+
"integrity": "sha512-fRBEDNPSFFOrBJ0OcheuElayrNTNdLF9DzMxtL0sFgsCFvvadlzwJHhJMSwEJuxwARm9GhVLr1p8G8JGkK98lQ==",
|
1468 |
+
"requires": {
|
1469 |
+
"css-to-react-native": "^2.2.1"
|
1470 |
+
}
|
1471 |
+
},
|
1472 |
+
"@emotion/serialize": {
|
1473 |
+
"version": "0.11.16",
|
1474 |
+
"resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz",
|
1475 |
+
"integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==",
|
1476 |
+
"requires": {
|
1477 |
+
"@emotion/hash": "0.8.0",
|
1478 |
+
"@emotion/memoize": "0.7.4",
|
1479 |
+
"@emotion/unitless": "0.7.5",
|
1480 |
+
"@emotion/utils": "0.11.3",
|
1481 |
+
"csstype": "^2.5.7"
|
1482 |
+
}
|
1483 |
+
},
|
1484 |
+
"@emotion/sheet": {
|
1485 |
+
"version": "0.9.4",
|
1486 |
+
"resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz",
|
1487 |
+
"integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA=="
|
1488 |
+
},
|
1489 |
+
"@emotion/styled": {
|
1490 |
+
"version": "10.0.27",
|
1491 |
+
"resolved": "https://registry.npmjs.org/@emotion/styled/-/styled-10.0.27.tgz",
|
1492 |
+
"integrity": "sha512-iK/8Sh7+NLJzyp9a5+vIQIXTYxfT4yB/OJbjzQanB2RZpvmzBQOHZWhpAMZWYEKRNNbsD6WfBw5sVWkb6WzS/Q==",
|
1493 |
+
"requires": {
|
1494 |
+
"@emotion/styled-base": "^10.0.27",
|
1495 |
+
"babel-plugin-emotion": "^10.0.27"
|
1496 |
+
}
|
1497 |
+
},
|
1498 |
+
"@emotion/styled-base": {
|
1499 |
+
"version": "10.0.31",
|
1500 |
+
"resolved": "https://registry.npmjs.org/@emotion/styled-base/-/styled-base-10.0.31.tgz",
|
1501 |
+
"integrity": "sha512-wTOE1NcXmqMWlyrtwdkqg87Mu6Rj1MaukEoEmEkHirO5IoHDJ8LgCQL4MjJODgxWxXibGR3opGp1p7YvkNEdXQ==",
|
1502 |
+
"requires": {
|
1503 |
+
"@babel/runtime": "^7.5.5",
|
1504 |
+
"@emotion/is-prop-valid": "0.8.8",
|
1505 |
+
"@emotion/serialize": "^0.11.15",
|
1506 |
+
"@emotion/utils": "0.11.3"
|
1507 |
+
}
|
1508 |
+
},
|
1509 |
+
"@emotion/stylis": {
|
1510 |
+
"version": "0.8.5",
|
1511 |
+
"resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz",
|
1512 |
+
"integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ=="
|
1513 |
+
},
|
1514 |
+
"@emotion/unitless": {
|
1515 |
+
"version": "0.7.5",
|
1516 |
+
"resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
|
1517 |
+
"integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
|
1518 |
+
},
|
1519 |
+
"@emotion/utils": {
|
1520 |
+
"version": "0.11.3",
|
1521 |
+
"resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz",
|
1522 |
+
"integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw=="
|
1523 |
+
},
|
1524 |
+
"@emotion/weak-memoize": {
|
1525 |
+
"version": "0.2.5",
|
1526 |
+
"resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz",
|
1527 |
+
"integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA=="
|
1528 |
+
},
|
1529 |
"@gulp-sourcemaps/identity-map": {
|
1530 |
"version": "1.0.2",
|
1531 |
"resolved": "https://registry.npmjs.org/@gulp-sourcemaps/identity-map/-/identity-map-1.0.2.tgz",
|
1596 |
"dev": true
|
1597 |
},
|
1598 |
"@hapi/hoek": {
|
1599 |
+
"version": "8.5.1",
|
1600 |
+
"resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz",
|
1601 |
+
"integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==",
|
1602 |
"dev": true
|
1603 |
},
|
1604 |
"@hapi/joi": {
|
1622 |
"@hapi/hoek": "^8.3.0"
|
1623 |
}
|
1624 |
},
|
1625 |
+
"@istanbuljs/load-nyc-config": {
|
1626 |
+
"version": "1.1.0",
|
1627 |
+
"resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
|
1628 |
+
"integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1629 |
"dev": true,
|
1630 |
"requires": {
|
1631 |
+
"camelcase": "^5.3.1",
|
1632 |
+
"find-up": "^4.1.0",
|
1633 |
+
"get-package-type": "^0.1.0",
|
1634 |
+
"js-yaml": "^3.13.1",
|
1635 |
+
"resolve-from": "^5.0.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1636 |
},
|
1637 |
"dependencies": {
|
1638 |
+
"camelcase": {
|
1639 |
+
"version": "5.3.1",
|
1640 |
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
1641 |
+
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
|
1642 |
"dev": true
|
1643 |
},
|
1644 |
+
"find-up": {
|
1645 |
"version": "4.1.0",
|
1646 |
+
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
|
1647 |
+
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
|
1648 |
+
"dev": true,
|
1649 |
+
"requires": {
|
1650 |
+
"locate-path": "^5.0.0",
|
1651 |
+
"path-exists": "^4.0.0"
|
1652 |
+
}
|
1653 |
},
|
1654 |
+
"locate-path": {
|
1655 |
+
"version": "5.0.0",
|
1656 |
+
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
|
1657 |
+
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
|
1658 |
"dev": true,
|
1659 |
"requires": {
|
1660 |
+
"p-locate": "^4.1.0"
|
1661 |
+
}
|
1662 |
+
},
|
1663 |
+
"p-locate": {
|
1664 |
+
"version": "4.1.0",
|
1665 |
+
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
|
1666 |
+
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
|
1667 |
+
"dev": true,
|
1668 |
+
"requires": {
|
1669 |
+
"p-limit": "^2.2.0"
|
1670 |
}
|
1671 |
+
},
|
1672 |
+
"path-exists": {
|
1673 |
+
"version": "4.0.0",
|
1674 |
+
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
1675 |
+
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
|
1676 |
+
"dev": true
|
1677 |
+
},
|
1678 |
+
"resolve-from": {
|
1679 |
+
"version": "5.0.0",
|
1680 |
+
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
|
1681 |
+
"integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
|
1682 |
+
"dev": true
|
1683 |
}
|
1684 |
}
|
1685 |
},
|
1686 |
+
"@istanbuljs/schema": {
|
1687 |
+
"version": "0.1.2",
|
1688 |
+
"resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz",
|
1689 |
+
"integrity": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==",
|
1690 |
+
"dev": true
|
|
|
|
|
|
|
|
|
|
|
|
|
1691 |
},
|
1692 |
+
"@jest/console": {
|
1693 |
+
"version": "25.5.0",
|
1694 |
+
"resolved": "https://registry.npmjs.org/@jest/console/-/console-25.5.0.tgz",
|
1695 |
+
"integrity": "sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS/Udqg3Jj3jG/cHH+N/sLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw==",
|
1696 |
"dev": true,
|
1697 |
"requires": {
|
1698 |
+
"@jest/types": "^25.5.0",
|
1699 |
+
"chalk": "^3.0.0",
|
1700 |
+
"jest-message-util": "^25.5.0",
|
1701 |
+
"jest-util": "^25.5.0",
|
1702 |
+
"slash": "^3.0.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1703 |
},
|
1704 |
"dependencies": {
|
1705 |
+
"ansi-styles": {
|
1706 |
+
"version": "4.2.1",
|
1707 |
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
|
1708 |
+
"integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
|
1709 |
"dev": true,
|
1710 |
"requires": {
|
1711 |
+
"@types/color-name": "^1.1.1",
|
1712 |
+
"color-convert": "^2.0.1"
|
|
|
|
|
|
|
1713 |
}
|
1714 |
},
|
1715 |
+
"chalk": {
|
1716 |
+
"version": "3.0.0",
|
1717 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
|
1718 |
+
"integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
|
1719 |
+
"dev": true,
|
1720 |
+
"requires": {
|
1721 |
+
"ansi-styles": "^4.1.0",
|
1722 |
+
"supports-color": "^7.1.0"
|
1723 |
+
}
|
1724 |
+
},
|
1725 |
+
"color-convert": {
|
1726 |
+
"version": "2.0.1",
|
1727 |
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
1728 |
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
1729 |
+
"dev": true,
|
1730 |
+
"requires": {
|
1731 |
+
"color-name": "~1.1.4"
|
1732 |
+
}
|
1733 |
+
},
|
1734 |
+
"color-name": {
|
1735 |
+
"version": "1.1.4",
|
1736 |
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
1737 |
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
1738 |
"dev": true
|
1739 |
+
},
|
1740 |
+
"has-flag": {
|
1741 |
+
"version": "4.0.0",
|
1742 |
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
1743 |
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1744 |
"dev": true
|
1745 |
+
},
|
1746 |
+
"supports-color": {
|
1747 |
+
"version": "7.1.0",
|
1748 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
1749 |
+
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
1750 |
+
"dev": true,
|
1751 |
+
"requires": {
|
1752 |
+
"has-flag": "^4.0.0"
|
1753 |
+
}
|
1754 |
}
|
1755 |
}
|
1756 |
},
|
1757 |
+
"@jest/core": {
|
1758 |
+
"version": "25.5.4",
|
1759 |
+
"resolved": "https://registry.npmjs.org/@jest/core/-/core-25.5.4.tgz",
|
1760 |
+
"integrity": "sha512-3uSo7laYxF00Dg/DMgbn4xMJKmDdWvZnf89n8Xj/5/AeQ2dOQmn6b6Hkj/MleyzZWXpwv+WSdYWl4cLsy2JsoA==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1761 |
"dev": true,
|
1762 |
"requires": {
|
1763 |
+
"@jest/console": "^25.5.0",
|
1764 |
+
"@jest/reporters": "^25.5.1",
|
1765 |
+
"@jest/test-result": "^25.5.0",
|
1766 |
+
"@jest/transform": "^25.5.1",
|
1767 |
+
"@jest/types": "^25.5.0",
|
1768 |
+
"ansi-escapes": "^4.2.1",
|
1769 |
+
"chalk": "^3.0.0",
|
1770 |
+
"exit": "^0.1.2",
|
1771 |
+
"graceful-fs": "^4.2.4",
|
1772 |
+
"jest-changed-files": "^25.5.0",
|
1773 |
+
"jest-config": "^25.5.4",
|
1774 |
+
"jest-haste-map": "^25.5.1",
|
1775 |
+
"jest-message-util": "^25.5.0",
|
1776 |
+
"jest-regex-util": "^25.2.6",
|
1777 |
+
"jest-resolve": "^25.5.1",
|
1778 |
+
"jest-resolve-dependencies": "^25.5.4",
|
1779 |
+
"jest-runner": "^25.5.4",
|
1780 |
+
"jest-runtime": "^25.5.4",
|
1781 |
+
"jest-snapshot": "^25.5.1",
|
1782 |
+
"jest-util": "^25.5.0",
|
1783 |
+
"jest-validate": "^25.5.0",
|
1784 |
+
"jest-watcher": "^25.5.0",
|
1785 |
+
"micromatch": "^4.0.2",
|
1786 |
+
"p-each-series": "^2.1.0",
|
1787 |
+
"realpath-native": "^2.0.0",
|
1788 |
+
"rimraf": "^3.0.0",
|
1789 |
+
"slash": "^3.0.0",
|
1790 |
+
"strip-ansi": "^6.0.0"
|
1791 |
},
|
1792 |
"dependencies": {
|
1793 |
+
"ansi-regex": {
|
1794 |
+
"version": "5.0.0",
|
1795 |
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
|
1796 |
+
"integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
|
1797 |
"dev": true
|
1798 |
},
|
1799 |
+
"ansi-styles": {
|
1800 |
+
"version": "4.2.1",
|
1801 |
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
|
1802 |
+
"integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
|
1803 |
"dev": true,
|
1804 |
"requires": {
|
1805 |
+
"@types/color-name": "^1.1.1",
|
1806 |
+
"color-convert": "^2.0.1"
|
1807 |
+
}
|
1808 |
+
},
|
1809 |
+
"braces": {
|
1810 |
+
"version": "3.0.2",
|
1811 |
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
|
1812 |
+
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
|
1813 |
+
"dev": true,
|
1814 |
+
"requires": {
|
1815 |
+
"fill-range": "^7.0.1"
|
1816 |
+
}
|
1817 |
+
},
|
1818 |
+
"chalk": {
|
1819 |
+
"version": "3.0.0",
|
1820 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
|
1821 |
+
"integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
|
1822 |
+
"dev": true,
|
1823 |
+
"requires": {
|
1824 |
+
"ansi-styles": "^4.1.0",
|
1825 |
+
"supports-color": "^7.1.0"
|
1826 |
+
}
|
1827 |
+
},
|
1828 |
+
"color-convert": {
|
1829 |
+
"version": "2.0.1",
|
1830 |
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
1831 |
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
1832 |
+
"dev": true,
|
1833 |
+
"requires": {
|
1834 |
+
"color-name": "~1.1.4"
|
1835 |
+
}
|
1836 |
+
},
|
1837 |
+
"color-name": {
|
1838 |
+
"version": "1.1.4",
|
1839 |
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
1840 |
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
1841 |
+
"dev": true
|
1842 |
+
},
|
1843 |
+
"fill-range": {
|
1844 |
+
"version": "7.0.1",
|
1845 |
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
|
1846 |
+
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
|
1847 |
+
"dev": true,
|
1848 |
+
"requires": {
|
1849 |
+
"to-regex-range": "^5.0.1"
|
1850 |
+
}
|
1851 |
+
},
|
1852 |
+
"graceful-fs": {
|
1853 |
+
"version": "4.2.4",
|
1854 |
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
|
1855 |
+
"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
|
1856 |
+
"dev": true
|
1857 |
+
},
|
1858 |
+
"has-flag": {
|
1859 |
+
"version": "4.0.0",
|
1860 |
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
1861 |
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
1862 |
+
"dev": true
|
1863 |
+
},
|
1864 |
+
"is-number": {
|
1865 |
+
"version": "7.0.0",
|
1866 |
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
1867 |
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
1868 |
+
"dev": true
|
1869 |
+
},
|
1870 |
+
"micromatch": {
|
1871 |
+
"version": "4.0.2",
|
1872 |
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
|
1873 |
+
"integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
|
1874 |
+
"dev": true,
|
1875 |
+
"requires": {
|
1876 |
+
"braces": "^3.0.1",
|
1877 |
+
"picomatch": "^2.0.5"
|
1878 |
+
}
|
1879 |
+
},
|
1880 |
+
"rimraf": {
|
1881 |
+
"version": "3.0.2",
|
1882 |
+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
|
1883 |
+
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
|
1884 |
+
"dev": true,
|
1885 |
+
"requires": {
|
1886 |
+
"glob": "^7.1.3"
|
1887 |
+
}
|
1888 |
+
},
|
1889 |
+
"strip-ansi": {
|
1890 |
+
"version": "6.0.0",
|
1891 |
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
|
1892 |
+
"integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
|
1893 |
+
"dev": true,
|
1894 |
+
"requires": {
|
1895 |
+
"ansi-regex": "^5.0.0"
|
1896 |
+
}
|
1897 |
+
},
|
1898 |
+
"supports-color": {
|
1899 |
+
"version": "7.1.0",
|
1900 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
1901 |
+
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
1902 |
+
"dev": true,
|
1903 |
+
"requires": {
|
1904 |
+
"has-flag": "^4.0.0"
|
1905 |
+
}
|
1906 |
+
},
|
1907 |
+
"to-regex-range": {
|
1908 |
+
"version": "5.0.1",
|
1909 |
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
1910 |
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
1911 |
+
"dev": true,
|
1912 |
+
"requires": {
|
1913 |
+
"is-number": "^7.0.0"
|
1914 |
}
|
1915 |
}
|
1916 |
}
|
1917 |
},
|
1918 |
+
"@jest/environment": {
|
1919 |
+
"version": "25.5.0",
|
1920 |
+
"resolved": "https://registry.npmjs.org/@jest/environment/-/environment-25.5.0.tgz",
|
1921 |
+
"integrity": "sha512-U2VXPEqL07E/V7pSZMSQCvV5Ea4lqOlT+0ZFijl/i316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA==",
|
1922 |
"dev": true,
|
1923 |
"requires": {
|
1924 |
+
"@jest/fake-timers": "^25.5.0",
|
1925 |
+
"@jest/types": "^25.5.0",
|
1926 |
+
"jest-mock": "^25.5.0"
|
1927 |
}
|
1928 |
},
|
1929 |
+
"@jest/fake-timers": {
|
1930 |
+
"version": "25.5.0",
|
1931 |
+
"resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-25.5.0.tgz",
|
1932 |
+
"integrity": "sha512-9y2+uGnESw/oyOI3eww9yaxdZyHq7XvprfP/eeoCsjqKYts2yRlsHS/SgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ==",
|
1933 |
"dev": true,
|
1934 |
"requires": {
|
1935 |
+
"@jest/types": "^25.5.0",
|
1936 |
+
"jest-message-util": "^25.5.0",
|
1937 |
+
"jest-mock": "^25.5.0",
|
1938 |
+
"jest-util": "^25.5.0",
|
1939 |
+
"lolex": "^5.0.0"
|
1940 |
}
|
1941 |
},
|
1942 |
+
"@jest/globals": {
|
1943 |
+
"version": "25.5.2",
|
1944 |
+
"resolved": "https://registry.npmjs.org/@jest/globals/-/globals-25.5.2.tgz",
|
1945 |
+
"integrity": "sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA==",
|
1946 |
"dev": true,
|
1947 |
"requires": {
|
1948 |
+
"@jest/environment": "^25.5.0",
|
1949 |
+
"@jest/types": "^25.5.0",
|
1950 |
+
"expect": "^25.5.0"
|
1951 |
}
|
1952 |
},
|
1953 |
+
"@jest/reporters": {
|
1954 |
+
"version": "25.5.1",
|
1955 |
+
"resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-25.5.1.tgz",
|
1956 |
+
"integrity": "sha512-3jbd8pPDTuhYJ7vqiHXbSwTJQNavczPs+f1kRprRDxETeE3u6srJ+f0NPuwvOmk+lmunZzPkYWIFZDLHQPkviw==",
|
|
|
|
|
|
|
|
|
|
|
|
|
1957 |
"dev": true,
|
1958 |
"requires": {
|
1959 |
+
"@bcoe/v8-coverage": "^0.2.3",
|
1960 |
+
"@jest/console": "^25.5.0",
|
1961 |
+
"@jest/test-result": "^25.5.0",
|
1962 |
+
"@jest/transform": "^25.5.1",
|
1963 |
+
"@jest/types": "^25.5.0",
|
1964 |
+
"chalk": "^3.0.0",
|
1965 |
+
"collect-v8-coverage": "^1.0.0",
|
1966 |
+
"exit": "^0.1.2",
|
1967 |
+
"glob": "^7.1.2",
|
1968 |
+
"graceful-fs": "^4.2.4",
|
1969 |
+
"istanbul-lib-coverage": "^3.0.0",
|
1970 |
+
"istanbul-lib-instrument": "^4.0.0",
|
1971 |
+
"istanbul-lib-report": "^3.0.0",
|
1972 |
+
"istanbul-lib-source-maps": "^4.0.0",
|
1973 |
+
"istanbul-reports": "^3.0.2",
|
1974 |
+
"jest-haste-map": "^25.5.1",
|
1975 |
+
"jest-resolve": "^25.5.1",
|
1976 |
+
"jest-util": "^25.5.0",
|
1977 |
+
"jest-worker": "^25.5.0",
|
1978 |
+
"node-notifier": "^6.0.0",
|
1979 |
+
"slash": "^3.0.0",
|
1980 |
+
"source-map": "^0.6.0",
|
1981 |
+
"string-length": "^3.1.0",
|
1982 |
+
"terminal-link": "^2.0.0",
|
1983 |
+
"v8-to-istanbul": "^4.1.3"
|
1984 |
+
},
|
1985 |
+
"dependencies": {
|
1986 |
+
"ansi-styles": {
|
1987 |
+
"version": "4.2.1",
|
1988 |
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
|
1989 |
+
"integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
|
1990 |
+
"dev": true,
|
1991 |
+
"requires": {
|
1992 |
+
"@types/color-name": "^1.1.1",
|
1993 |
+
"color-convert": "^2.0.1"
|
1994 |
+
}
|
1995 |
+
},
|
1996 |
+
"chalk": {
|
1997 |
+
"version": "3.0.0",
|
1998 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
|
1999 |
+
"integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
|
2000 |
+
"dev": true,
|
2001 |
+
"requires": {
|
2002 |
+
"ansi-styles": "^4.1.0",
|
2003 |
+
"supports-color": "^7.1.0"
|
2004 |
+
}
|
2005 |
+
},
|
2006 |
+
"color-convert": {
|
2007 |
+
"version": "2.0.1",
|
2008 |
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
2009 |
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
2010 |
+
"dev": true,
|
2011 |
+
"requires": {
|
2012 |
+
"color-name": "~1.1.4"
|
2013 |
+
}
|
2014 |
+
},
|
2015 |
+
"color-name": {
|
2016 |
+
"version": "1.1.4",
|
2017 |
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
2018 |
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
2019 |
+
"dev": true
|
2020 |
+
},
|
2021 |
+
"graceful-fs": {
|
2022 |
+
"version": "4.2.4",
|
2023 |
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
|
2024 |
+
"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
|
2025 |
+
"dev": true
|
2026 |
+
},
|
2027 |
+
"has-flag": {
|
2028 |
+
"version": "4.0.0",
|
2029 |
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
2030 |
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
2031 |
+
"dev": true
|
2032 |
+
},
|
2033 |
+
"is-wsl": {
|
2034 |
+
"version": "2.2.0",
|
2035 |
+
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
|
2036 |
+
"integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
|
2037 |
+
"dev": true,
|
2038 |
+
"optional": true,
|
2039 |
+
"requires": {
|
2040 |
+
"is-docker": "^2.0.0"
|
2041 |
+
}
|
2042 |
+
},
|
2043 |
+
"node-notifier": {
|
2044 |
+
"version": "6.0.0",
|
2045 |
+
"resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-6.0.0.tgz",
|
2046 |
+
"integrity": "sha512-SVfQ/wMw+DesunOm5cKqr6yDcvUTDl/yc97ybGHMrteNEY6oekXpNpS3lZwgLlwz0FLgHoiW28ZpmBHUDg37cw==",
|
2047 |
+
"dev": true,
|
2048 |
+
"optional": true,
|
2049 |
+
"requires": {
|
2050 |
+
"growly": "^1.3.0",
|
2051 |
+
"is-wsl": "^2.1.1",
|
2052 |
+
"semver": "^6.3.0",
|
2053 |
+
"shellwords": "^0.1.1",
|
2054 |
+
"which": "^1.3.1"
|
2055 |
+
}
|
2056 |
+
},
|
2057 |
+
"semver": {
|
2058 |
+
"version": "6.3.0",
|
2059 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
2060 |
+
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
2061 |
+
"dev": true,
|
2062 |
+
"optional": true
|
2063 |
+
},
|
2064 |
+
"source-map": {
|
2065 |
+
"version": "0.6.1",
|
2066 |
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
2067 |
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
2068 |
+
"dev": true
|
2069 |
+
},
|
2070 |
+
"supports-color": {
|
2071 |
+
"version": "7.1.0",
|
2072 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
2073 |
+
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
2074 |
+
"dev": true,
|
2075 |
+
"requires": {
|
2076 |
+
"has-flag": "^4.0.0"
|
2077 |
+
}
|
2078 |
+
}
|
2079 |
}
|
2080 |
},
|
2081 |
+
"@jest/source-map": {
|
2082 |
+
"version": "25.5.0",
|
2083 |
+
"resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-25.5.0.tgz",
|
2084 |
+
"integrity": "sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ==",
|
2085 |
"dev": true,
|
2086 |
"requires": {
|
2087 |
+
"callsites": "^3.0.0",
|
2088 |
+
"graceful-fs": "^4.2.4",
|
2089 |
+
"source-map": "^0.6.0"
|
2090 |
+
},
|
2091 |
+
"dependencies": {
|
2092 |
+
"graceful-fs": {
|
2093 |
+
"version": "4.2.4",
|
2094 |
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
|
2095 |
+
"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
|
2096 |
+
"dev": true
|
2097 |
+
},
|
2098 |
+
"source-map": {
|
2099 |
+
"version": "0.6.1",
|
2100 |
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
2101 |
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
2102 |
+
"dev": true
|
2103 |
+
}
|
2104 |
}
|
2105 |
},
|
2106 |
+
"@jest/test-result": {
|
2107 |
+
"version": "25.5.0",
|
2108 |
+
"resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-25.5.0.tgz",
|
2109 |
+
"integrity": "sha512-oV+hPJgXN7IQf/fHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2110 |
"dev": true,
|
2111 |
"requires": {
|
2112 |
+
"@jest/console": "^25.5.0",
|
2113 |
+
"@jest/types": "^25.5.0",
|
2114 |
+
"@types/istanbul-lib-coverage": "^2.0.0",
|
2115 |
+
"collect-v8-coverage": "^1.0.0"
|
2116 |
}
|
2117 |
},
|
2118 |
+
"@jest/test-sequencer": {
|
2119 |
+
"version": "25.5.4",
|
2120 |
+
"resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-25.5.4.tgz",
|
2121 |
+
"integrity": "sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA==",
|
|
|
|
|
|
|
|
|
|
|
|
|
2122 |
"dev": true,
|
2123 |
"requires": {
|
2124 |
+
"@jest/test-result": "^25.5.0",
|
2125 |
+
"graceful-fs": "^4.2.4",
|
2126 |
+
"jest-haste-map": "^25.5.1",
|
2127 |
+
"jest-runner": "^25.5.4",
|
2128 |
+
"jest-runtime": "^25.5.4"
|
2129 |
+
},
|
2130 |
+
"dependencies": {
|
2131 |
+
"graceful-fs": {
|
2132 |
+
"version": "4.2.4",
|
2133 |
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
|
2134 |
+
"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
|
2135 |
+
"dev": true
|
2136 |
+
}
|
2137 |
}
|
2138 |
},
|
2139 |
+
"@jest/transform": {
|
2140 |
+
"version": "25.5.1",
|
2141 |
+
"resolved": "https://registry.npmjs.org/@jest/transform/-/transform-25.5.1.tgz",
|
2142 |
+
"integrity": "sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg==",
|
2143 |
"dev": true,
|
2144 |
"requires": {
|
2145 |
+
"@babel/core": "^7.1.0",
|
2146 |
+
"@jest/types": "^25.5.0",
|
2147 |
+
"babel-plugin-istanbul": "^6.0.0",
|
2148 |
+
"chalk": "^3.0.0",
|
2149 |
+
"convert-source-map": "^1.4.0",
|
2150 |
+
"fast-json-stable-stringify": "^2.0.0",
|
2151 |
+
"graceful-fs": "^4.2.4",
|
2152 |
+
"jest-haste-map": "^25.5.1",
|
2153 |
+
"jest-regex-util": "^25.2.6",
|
2154 |
+
"jest-util": "^25.5.0",
|
2155 |
+
"micromatch": "^4.0.2",
|
2156 |
+
"pirates": "^4.0.1",
|
2157 |
+
"realpath-native": "^2.0.0",
|
2158 |
+
"slash": "^3.0.0",
|
2159 |
+
"source-map": "^0.6.1",
|
2160 |
+
"write-file-atomic": "^3.0.0"
|
2161 |
+
},
|
2162 |
+
"dependencies": {
|
2163 |
+
"ansi-styles": {
|
2164 |
+
"version": "4.2.1",
|
2165 |
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
|
2166 |
+
"integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
|
2167 |
+
"dev": true,
|
2168 |
+
"requires": {
|
2169 |
+
"@types/color-name": "^1.1.1",
|
2170 |
+
"color-convert": "^2.0.1"
|
2171 |
+
}
|
2172 |
+
},
|
2173 |
+
"braces": {
|
2174 |
+
"version": "3.0.2",
|
2175 |
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
|
2176 |
+
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
|
2177 |
+
"dev": true,
|
2178 |
+
"requires": {
|
2179 |
+
"fill-range": "^7.0.1"
|
2180 |
+
}
|
2181 |
+
},
|
2182 |
+
"chalk": {
|
2183 |
+
"version": "3.0.0",
|
2184 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
|
2185 |
+
"integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
|
2186 |
+
"dev": true,
|
2187 |
+
"requires": {
|
2188 |
+
"ansi-styles": "^4.1.0",
|
2189 |
+
"supports-color": "^7.1.0"
|
2190 |
+
}
|
2191 |
+
},
|
2192 |
+
"color-convert": {
|
2193 |
+
"version": "2.0.1",
|
2194 |
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
2195 |
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
2196 |
+
"dev": true,
|
2197 |
+
"requires": {
|
2198 |
+
"color-name": "~1.1.4"
|
2199 |
+
}
|
2200 |
+
},
|
2201 |
+
"color-name": {
|
2202 |
+
"version": "1.1.4",
|
2203 |
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
2204 |
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
2205 |
+
"dev": true
|
2206 |
+
},
|
2207 |
+
"fill-range": {
|
2208 |
+
"version": "7.0.1",
|
2209 |
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
|
2210 |
+
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
|
2211 |
+
"dev": true,
|
2212 |
+
"requires": {
|
2213 |
+
"to-regex-range": "^5.0.1"
|
2214 |
+
}
|
2215 |
+
},
|
2216 |
+
"graceful-fs": {
|
2217 |
+
"version": "4.2.4",
|
2218 |
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz",
|
2219 |
+
"integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==",
|
2220 |
+
"dev": true
|
2221 |
+
},
|
2222 |
+
"has-flag": {
|
2223 |
+
"version": "4.0.0",
|
2224 |
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
2225 |
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
2226 |
+
"dev": true
|
2227 |
+
},
|
2228 |
+
"is-number": {
|
2229 |
+
"version": "7.0.0",
|
2230 |
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
2231 |
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
2232 |
+
"dev": true
|
2233 |
+
},
|
2234 |
+
"micromatch": {
|
2235 |
+
"version": "4.0.2",
|
2236 |
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
|
2237 |
+
"integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
|
2238 |
+
"dev": true,
|
2239 |
+
"requires": {
|
2240 |
+
"braces": "^3.0.1",
|
2241 |
+
"picomatch": "^2.0.5"
|
2242 |
+
}
|
2243 |
+
},
|
2244 |
+
"source-map": {
|
2245 |
+
"version": "0.6.1",
|
2246 |
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
2247 |
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
2248 |
+
"dev": true
|
2249 |
+
},
|
2250 |
+
"supports-color": {
|
2251 |
+
"version": "7.1.0",
|
2252 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
2253 |
+
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
2254 |
+
"dev": true,
|
2255 |
+
"requires": {
|
2256 |
+
"has-flag": "^4.0.0"
|
2257 |
+
}
|
2258 |
+
},
|
2259 |
+
"to-regex-range": {
|
2260 |
+
"version": "5.0.1",
|
2261 |
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
2262 |
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
2263 |
+
"dev": true,
|
2264 |
+
"requires": {
|
2265 |
+
"is-number": "^7.0.0"
|
2266 |
+
}
|
2267 |
+
},
|
2268 |
+
"write-file-atomic": {
|
2269 |
+
"version": "3.0.3",
|
2270 |
+
"resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
|
2271 |
+
"integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
|
2272 |
+
"dev": true,
|
2273 |
+
"requires": {
|
2274 |
+
"imurmurhash": "^0.1.4",
|
2275 |
+
"is-typedarray": "^1.0.0",
|
2276 |
+
"signal-exit": "^3.0.2",
|
2277 |
+
"typedarray-to-buffer": "^3.1.5"
|
2278 |
+
}
|
2279 |
+
}
|
2280 |
+
}
|
2281 |
},
|
2282 |
+
"@jest/types": {
|
2283 |
+
"version": "25.5.0",
|
2284 |
+
"resolved": "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz",
|
2285 |
+
"integrity": "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw==",
|
2286 |
"dev": true,
|
2287 |
"requires": {
|
2288 |
+
"@types/istanbul-lib-coverage": "^2.0.0",
|
2289 |
+
"@types/istanbul-reports": "^1.1.1",
|
2290 |
+
"@types/yargs": "^15.0.0",
|
2291 |
+
"chalk": "^3.0.0"
|
2292 |
+
},
|
2293 |
+
"dependencies": {
|
2294 |
+
"ansi-styles": {
|
2295 |
+
"version": "4.2.1",
|
2296 |
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
|
2297 |
+
"integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
|
2298 |
+
"dev": true,
|
2299 |
+
"requires": {
|
2300 |
+
"@types/color-name": "^1.1.1",
|
2301 |
+
"color-convert": "^2.0.1"
|
2302 |
+
}
|
2303 |
+
},
|
2304 |
+
"chalk": {
|
2305 |
+
"version": "3.0.0",
|
2306 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
|
2307 |
+
"integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
|
2308 |
+
"dev": true,
|
2309 |
+
"requires": {
|
2310 |
+
"ansi-styles": "^4.1.0",
|
2311 |
+
"supports-color": "^7.1.0"
|
2312 |
+
}
|
2313 |
+
},
|
2314 |
+
"color-convert": {
|
2315 |
+
"version": "2.0.1",
|
2316 |
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
2317 |
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
2318 |
+
"dev": true,
|
2319 |
+
"requires": {
|
2320 |
+
"color-name": "~1.1.4"
|
2321 |
+
}
|
2322 |
+
},
|
2323 |
+
"color-name": {
|
2324 |
+
"version": "1.1.4",
|
2325 |
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
2326 |
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
2327 |
+
"dev": true
|
2328 |
+
},
|
2329 |
+
"has-flag": {
|
2330 |
+
"version": "4.0.0",
|
2331 |
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
2332 |
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
2333 |
+
"dev": true
|
2334 |
+
},
|
2335 |
+
"supports-color": {
|
2336 |
+
"version": "7.1.0",
|
2337 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
2338 |
+
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
2339 |
+
"dev": true,
|
2340 |
+
"requires": {
|
2341 |
+
"has-flag": "^4.0.0"
|
2342 |
+
}
|
2343 |
+
}
|
2344 |
}
|
2345 |
},
|
2346 |
+
"@mrmlnc/readdir-enhanced": {
|
2347 |
+
"version": "2.2.1",
|
2348 |
+
"resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
|
2349 |
+
"integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
|
2350 |
"dev": true,
|
2351 |
"requires": {
|
2352 |
+
"call-me-maybe": "^1.0.1",
|
2353 |
+
"glob-to-regexp": "^0.3.0"
|
2354 |
}
|
2355 |
},
|
2356 |
+
"@nodelib/fs.scandir": {
|
2357 |
+
"version": "2.1.3",
|
2358 |
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz",
|
2359 |
+
"integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==",
|
2360 |
"dev": true,
|
2361 |
"requires": {
|
2362 |
+
"@nodelib/fs.stat": "2.0.3",
|
2363 |
+
"run-parallel": "^1.1.9"
|
2364 |
}
|
2365 |
},
|
2366 |
+
"@nodelib/fs.stat": {
|
2367 |
+
"version": "2.0.3",
|
2368 |
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz",
|
2369 |
+
"integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==",
|
2370 |
"dev": true
|
2371 |
},
|
2372 |
+
"@nodelib/fs.walk": {
|
2373 |
+
"version": "1.2.4",
|
2374 |
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz",
|
2375 |
+
"integrity": "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==",
|
2376 |
"dev": true,
|
2377 |
"requires": {
|
2378 |
+
"@nodelib/fs.scandir": "2.1.3",
|
2379 |
+
"fastq": "^1.6.0"
|
|
|
2380 |
}
|
2381 |
},
|
2382 |
+
"@popperjs/core": {
|
2383 |
+
"version": "2.4.0",
|
2384 |
+
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.4.0.tgz",
|
2385 |
+
"integrity": "sha512-NMrDy6EWh9TPdSRiHmHH2ye1v5U0gBD7pRYwSwJvomx7Bm4GG04vu63dYiVzebLOx2obPpJugew06xVP0Nk7hA=="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2386 |
},
|
2387 |
+
"@sindresorhus/is": {
|
2388 |
+
"version": "0.14.0",
|
2389 |
+
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
|
2390 |
+
"integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==",
|
2391 |
+
"dev": true
|
2392 |
+
},
|
2393 |
+
"@sinonjs/commons": {
|
2394 |
+
"version": "1.8.0",
|
2395 |
+
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.0.tgz",
|
2396 |
+
"integrity": "sha512-wEj54PfsZ5jGSwMX68G8ZXFawcSglQSXqCftWX3ec8MDUzQdHgcKvw97awHbY0efQEL5iKUOAmmVtoYgmrSG4Q==",
|
2397 |
"dev": true,
|
2398 |
"requires": {
|
2399 |
+
"type-detect": "4.0.8"
|
|
|
|
|
2400 |
}
|
2401 |
},
|
2402 |
+
"@svgr/babel-plugin-add-jsx-attribute": {
|
2403 |
+
"version": "5.4.0",
|
2404 |
+
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz",
|
2405 |
+
"integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==",
|
2406 |
"dev": true
|
2407 |
},
|
2408 |
+
"@svgr/babel-plugin-remove-jsx-attribute": {
|
2409 |
+
"version": "5.4.0",
|
2410 |
+
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz",
|
2411 |
+
"integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==",
|
2412 |
"dev": true
|
2413 |
},
|
2414 |
+
"@svgr/babel-plugin-remove-jsx-empty-expression": {
|
2415 |
+
"version": "5.0.1",
|
2416 |
+
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz",
|
2417 |
+
"integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==",
|
2418 |
"dev": true
|
2419 |
},
|
2420 |
+
"@svgr/babel-plugin-replace-jsx-attribute-value": {
|
2421 |
+
"version": "5.0.1",
|
2422 |
+
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz",
|
2423 |
+
"integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2424 |
"dev": true
|
2425 |
},
|
2426 |
+
"@svgr/babel-plugin-svg-dynamic-title": {
|
2427 |
+
"version": "5.4.0",
|
2428 |
+
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz",
|
2429 |
+
"integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2430 |
"dev": true
|
2431 |
},
|
2432 |
+
"@svgr/babel-plugin-svg-em-dimensions": {
|
2433 |
+
"version": "5.4.0",
|
2434 |
+
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz",
|
2435 |
+
"integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2436 |
"dev": true
|
2437 |
},
|
2438 |
+
"@svgr/babel-plugin-transform-react-native-svg": {
|
2439 |
+
"version": "5.4.0",
|
2440 |
+
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz",
|
2441 |
+
"integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2442 |
"dev": true
|
2443 |
},
|
2444 |
+
"@svgr/babel-plugin-transform-svg-component": {
|
2445 |
+
"version": "5.4.0",
|
2446 |
+
"resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.4.0.tgz",
|
2447 |
+
"integrity": "sha512-zLl4Fl3NvKxxjWNkqEcpdSOpQ3LGVH2BNFQ6vjaK6sFo2IrSznrhURIPI0HAphKiiIwNYjAfE0TNoQDSZv0U9A==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2448 |
"dev": true
|
2449 |
},
|
2450 |
+
"@svgr/babel-preset": {
|
2451 |
+
"version": "5.4.0",
|
2452 |
+
"resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.4.0.tgz",
|
2453 |
+
"integrity": "sha512-Gyx7cCxua04DBtyILTYdQxeO/pwfTBev6+eXTbVbxe4HTGhOUW6yo7PSbG2p6eJMl44j6XSequ0ZDP7bl0nu9A==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2454 |
"dev": true,
|
2455 |
"requires": {
|
2456 |
+
"@svgr/babel-plugin-add-jsx-attribute": "^5.4.0",
|
2457 |
+
"@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0",
|
2458 |
+
"@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1",
|
2459 |
+
"@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1",
|
2460 |
+
"@svgr/babel-plugin-svg-dynamic-title": "^5.4.0",
|
2461 |
+
"@svgr/babel-plugin-svg-em-dimensions": "^5.4.0",
|
2462 |
+
"@svgr/babel-plugin-transform-react-native-svg": "^5.4.0",
|
2463 |
+
"@svgr/babel-plugin-transform-svg-component": "^5.4.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2464 |
}
|
2465 |
},
|
2466 |
+
"@svgr/core": {
|
2467 |
+
"version": "5.4.0",
|
2468 |
+
"resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.4.0.tgz",
|
2469 |
+
"integrity": "sha512-hWGm1DCCvd4IEn7VgDUHYiC597lUYhFau2lwJBYpQWDirYLkX4OsXu9IslPgJ9UpP7wsw3n2Ffv9sW7SXJVfqQ==",
|
2470 |
"dev": true,
|
2471 |
"requires": {
|
2472 |
+
"@svgr/plugin-jsx": "^5.4.0",
|
2473 |
+
"camelcase": "^6.0.0",
|
2474 |
+
"cosmiconfig": "^6.0.0"
|
|
|
|
|
|
|
|
|
|
|
2475 |
},
|
2476 |
"dependencies": {
|
2477 |
+
"camelcase": {
|
2478 |
+
"version": "6.0.0",
|
2479 |
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.0.0.tgz",
|
2480 |
+
"integrity": "sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w==",
|
2481 |
+
"dev": true
|
2482 |
+
},
|
2483 |
+
"cosmiconfig": {
|
2484 |
+
"version": "6.0.0",
|
2485 |
+
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
|
2486 |
+
"integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
|
2487 |
"dev": true,
|
2488 |
"requires": {
|
2489 |
+
"@types/parse-json": "^4.0.0",
|
2490 |
+
"import-fresh": "^3.1.0",
|
2491 |
+
"parse-json": "^5.0.0",
|
2492 |
+
"path-type": "^4.0.0",
|
2493 |
+
"yaml": "^1.7.2"
|
2494 |
}
|
2495 |
},
|
2496 |
+
"parse-json": {
|
2497 |
+
"version": "5.0.0",
|
2498 |
+
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz",
|
2499 |
+
"integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==",
|
2500 |
+
"dev": true,
|
2501 |
+
"requires": {
|
2502 |
+
"@babel/code-frame": "^7.0.0",
|
2503 |
+
"error-ex": "^1.3.1",
|
2504 |
+
"json-parse-better-errors": "^1.0.1",
|
2505 |
+
"lines-and-columns": "^1.1.6"
|
2506 |
+
}
|
2507 |
+
},
|
2508 |
+
"path-type": {
|
2509 |
+
"version": "4.0.0",
|
2510 |
+
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
|
2511 |
+
"integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
|
2512 |
"dev": true
|
2513 |
}
|
2514 |
}
|
2515 |
},
|
2516 |
+
"@svgr/hast-util-to-babel-ast": {
|
2517 |
+
"version": "5.4.0",
|
2518 |
+
"resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.4.0.tgz",
|
2519 |
+
"integrity": "sha512-+U0TZZpPsP2V1WvVhqAOSTk+N+CjYHdZx+x9UBa1eeeZDXwH8pt0CrQf2+SvRl/h2CAPRFkm+Ey96+jKP8Bsgg==",
|
2520 |
+
"dev": true,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2521 |
"requires": {
|
2522 |
+
"@babel/types": "^7.9.5"
|
2523 |
+
},
|
2524 |
+
"dependencies": {
|
2525 |
+
"@babel/types": {
|
2526 |
+
"version": "7.9.6",
|
2527 |
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
|
2528 |
+
"integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
|
2529 |
+
"dev": true,
|
2530 |
+
"requires": {
|
2531 |
+
"@babel/helper-validator-identifier": "^7.9.5",
|
2532 |
+
"lodash": "^4.17.13",
|
2533 |
+
"to-fast-properties": "^2.0.0"
|
2534 |
+
}
|
2535 |
+
}
|
2536 |
}
|
2537 |
},
|
2538 |
+
"@svgr/plugin-jsx": {
|
2539 |
+
"version": "5.4.0",
|
2540 |
+
"resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.4.0.tgz",
|
2541 |
+
"integrity": "sha512-SGzO4JZQ2HvGRKDzRga9YFSqOqaNrgLlQVaGvpZ2Iht2gwRp/tq+18Pvv9kS9ZqOMYgyix2LLxZMY1LOe9NPqw==",
|
2542 |
+
"dev": true,
|
2543 |
"requires": {
|
2544 |
+
"@babel/core": "^7.7.5",
|
2545 |
+
"@svgr/babel-preset": "^5.4.0",
|
2546 |
+
"@svgr/hast-util-to-babel-ast": "^5.4.0",
|
2547 |
+
"svg-parser": "^2.0.2"
|
2548 |
}
|
2549 |
},
|
2550 |
+
"@svgr/plugin-svgo": {
|
2551 |
+
"version": "5.4.0",
|
2552 |
+
"resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.4.0.tgz",
|
2553 |
+
"integrity": "sha512-3Cgv3aYi1l6SHyzArV9C36yo4kgwVdF3zPQUC6/aCDUeXAofDYwE5kk3e3oT5ZO2a0N3lB+lLGvipBG6lnG8EA==",
|
2554 |
"dev": true,
|
2555 |
"requires": {
|
2556 |
+
"cosmiconfig": "^6.0.0",
|
2557 |
+
"merge-deep": "^3.0.2",
|
2558 |
+
"svgo": "^1.2.2"
|
2559 |
+
},
|
2560 |
+
"dependencies": {
|
2561 |
+
"cosmiconfig": {
|
2562 |
+
"version": "6.0.0",
|
2563 |
+
"resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz",
|
2564 |
+
"integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==",
|
2565 |
+
"dev": true,
|
2566 |
+
"requires": {
|
2567 |
+
"@types/parse-json": "^4.0.0",
|
2568 |
+
"import-fresh": "^3.1.0",
|
2569 |
+
"parse-json": "^5.0.0",
|
2570 |
+
"path-type": "^4.0.0",
|
2571 |
+
"yaml": "^1.7.2"
|
2572 |
+
}
|
2573 |
+
},
|
2574 |
+
"parse-json": {
|
2575 |
+
"version": "5.0.0",
|
2576 |
+
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz",
|
2577 |
+
"integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==",
|
2578 |
+
"dev": true,
|
2579 |
+
"requires": {
|
2580 |
+
"@babel/code-frame": "^7.0.0",
|
2581 |
+
"error-ex": "^1.3.1",
|
2582 |
+
"json-parse-better-errors": "^1.0.1",
|
2583 |
+
"lines-and-columns": "^1.1.6"
|
2584 |
+
}
|
2585 |
+
},
|
2586 |
+
"path-type": {
|
2587 |
+
"version": "4.0.0",
|
2588 |
+
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
|
2589 |
+
"integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
|
2590 |
+
"dev": true
|
2591 |
+
}
|
2592 |
}
|
2593 |
},
|
2594 |
+
"@svgr/webpack": {
|
2595 |
+
"version": "5.4.0",
|
2596 |
+
"resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.4.0.tgz",
|
2597 |
+
"integrity": "sha512-LjepnS/BSAvelnOnnzr6Gg0GcpLmnZ9ThGFK5WJtm1xOqdBE/1IACZU7MMdVzjyUkfFqGz87eRE4hFaSLiUwYg==",
|
2598 |
"dev": true,
|
2599 |
"requires": {
|
2600 |
+
"@babel/core": "^7.9.0",
|
2601 |
+
"@babel/plugin-transform-react-constant-elements": "^7.9.0",
|
2602 |
+
"@babel/preset-env": "^7.9.5",
|
2603 |
+
"@babel/preset-react": "^7.9.4",
|
2604 |
+
"@svgr/core": "^5.4.0",
|
2605 |
+
"@svgr/plugin-jsx": "^5.4.0",
|
2606 |
+
"@svgr/plugin-svgo": "^5.4.0",
|
2607 |
+
"loader-utils": "^2.0.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2608 |
},
|
2609 |
"dependencies": {
|
2610 |
+
"@babel/code-frame": {
|
2611 |
+
"version": "7.8.3",
|
2612 |
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz",
|
2613 |
+
"integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==",
|
2614 |
"dev": true,
|
2615 |
"requires": {
|
2616 |
+
"@babel/highlight": "^7.8.3"
|
|
|
|
|
2617 |
}
|
2618 |
},
|
2619 |
+
"@babel/core": {
|
2620 |
+
"version": "7.9.6",
|
2621 |
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.6.tgz",
|
2622 |
+
"integrity": "sha512-nD3deLvbsApbHAHttzIssYqgb883yU/d9roe4RZymBCDaZryMJDbptVpEpeQuRh4BJ+SYI8le9YGxKvFEvl1Wg==",
|
2623 |
"dev": true,
|
2624 |
"requires": {
|
2625 |
+
"@babel/code-frame": "^7.8.3",
|
2626 |
+
"@babel/generator": "^7.9.6",
|
2627 |
+
"@babel/helper-module-transforms": "^7.9.0",
|
2628 |
+
"@babel/helpers": "^7.9.6",
|
2629 |
+
"@babel/parser": "^7.9.6",
|
2630 |
+
"@babel/template": "^7.8.6",
|
2631 |
+
"@babel/traverse": "^7.9.6",
|
2632 |
+
"@babel/types": "^7.9.6",
|
2633 |
+
"convert-source-map": "^1.7.0",
|
2634 |
+
"debug": "^4.1.0",
|
2635 |
+
"gensync": "^1.0.0-beta.1",
|
2636 |
+
"json5": "^2.1.2",
|
2637 |
+
"lodash": "^4.17.13",
|
2638 |
+
"resolve": "^1.3.2",
|
2639 |
+
"semver": "^5.4.1",
|
2640 |
+
"source-map": "^0.5.0"
|
2641 |
}
|
2642 |
},
|
2643 |
+
"@babel/generator": {
|
2644 |
+
"version": "7.9.6",
|
2645 |
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.9.6.tgz",
|
2646 |
+
"integrity": "sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ==",
|
2647 |
"dev": true,
|
2648 |
"requires": {
|
2649 |
+
"@babel/types": "^7.9.6",
|
2650 |
+
"jsesc": "^2.5.1",
|
2651 |
+
"lodash": "^4.17.13",
|
2652 |
+
"source-map": "^0.5.0"
|
2653 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2654 |
},
|
2655 |
+
"@babel/helper-annotate-as-pure": {
|
2656 |
+
"version": "7.8.3",
|
2657 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz",
|
2658 |
+
"integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==",
|
2659 |
+
"dev": true,
|
2660 |
+
"requires": {
|
2661 |
+
"@babel/types": "^7.8.3"
|
2662 |
+
}
|
2663 |
},
|
2664 |
+
"@babel/helper-builder-binary-assignment-operator-visitor": {
|
2665 |
+
"version": "7.8.3",
|
2666 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz",
|
2667 |
+
"integrity": "sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==",
|
2668 |
"dev": true,
|
2669 |
"requires": {
|
2670 |
+
"@babel/helper-explode-assignable-expression": "^7.8.3",
|
2671 |
+
"@babel/types": "^7.8.3"
|
|
|
2672 |
}
|
2673 |
},
|
2674 |
+
"@babel/helper-create-regexp-features-plugin": {
|
2675 |
+
"version": "7.8.8",
|
2676 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz",
|
2677 |
+
"integrity": "sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg==",
|
2678 |
"dev": true,
|
2679 |
"requires": {
|
2680 |
+
"@babel/helper-annotate-as-pure": "^7.8.3",
|
2681 |
+
"@babel/helper-regex": "^7.8.3",
|
2682 |
+
"regexpu-core": "^4.7.0"
|
2683 |
}
|
2684 |
+
},
|
2685 |
+
"@babel/helper-define-map": {
|
2686 |
+
"version": "7.8.3",
|
2687 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz",
|
2688 |
+
"integrity": "sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==",
|
2689 |
+
"dev": true,
|
2690 |
+
"requires": {
|
2691 |
+
"@babel/helper-function-name": "^7.8.3",
|
2692 |
+
"@babel/types": "^7.8.3",
|
2693 |
+
"lodash": "^4.17.13"
|
2694 |
+
}
|
2695 |
+
},
|
2696 |
+
"@babel/helper-explode-assignable-expression": {
|
2697 |
+
"version": "7.8.3",
|
2698 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz",
|
2699 |
+
"integrity": "sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==",
|
2700 |
+
"dev": true,
|
2701 |
+
"requires": {
|
2702 |
+
"@babel/traverse": "^7.8.3",
|
2703 |
+
"@babel/types": "^7.8.3"
|
2704 |
+
}
|
2705 |
+
},
|
2706 |
+
"@babel/helper-function-name": {
|
2707 |
+
"version": "7.9.5",
|
2708 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz",
|
2709 |
+
"integrity": "sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw==",
|
2710 |
+
"dev": true,
|
2711 |
+
"requires": {
|
2712 |
+
"@babel/helper-get-function-arity": "^7.8.3",
|
2713 |
+
"@babel/template": "^7.8.3",
|
2714 |
+
"@babel/types": "^7.9.5"
|
2715 |
+
}
|
2716 |
+
},
|
2717 |
+
"@babel/helper-get-function-arity": {
|
2718 |
+
"version": "7.8.3",
|
2719 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz",
|
2720 |
+
"integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==",
|
2721 |
+
"dev": true,
|
2722 |
+
"requires": {
|
2723 |
+
"@babel/types": "^7.8.3"
|
2724 |
+
}
|
2725 |
+
},
|
2726 |
+
"@babel/helper-hoist-variables": {
|
2727 |
+
"version": "7.8.3",
|
2728 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz",
|
2729 |
+
"integrity": "sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==",
|
2730 |
+
"dev": true,
|
2731 |
+
"requires": {
|
2732 |
+
"@babel/types": "^7.8.3"
|
2733 |
+
}
|
2734 |
+
},
|
2735 |
+
"@babel/helper-member-expression-to-functions": {
|
2736 |
+
"version": "7.8.3",
|
2737 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz",
|
2738 |
+
"integrity": "sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==",
|
2739 |
+
"dev": true,
|
2740 |
+
"requires": {
|
2741 |
+
"@babel/types": "^7.8.3"
|
2742 |
+
}
|
2743 |
+
},
|
2744 |
+
"@babel/helper-module-imports": {
|
2745 |
+
"version": "7.8.3",
|
2746 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz",
|
2747 |
+
"integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==",
|
2748 |
+
"dev": true,
|
2749 |
+
"requires": {
|
2750 |
+
"@babel/types": "^7.8.3"
|
2751 |
+
}
|
2752 |
+
},
|
2753 |
+
"@babel/helper-module-transforms": {
|
2754 |
+
"version": "7.9.0",
|
2755 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz",
|
2756 |
+
"integrity": "sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==",
|
2757 |
+
"dev": true,
|
2758 |
+
"requires": {
|
2759 |
+
"@babel/helper-module-imports": "^7.8.3",
|
2760 |
+
"@babel/helper-replace-supers": "^7.8.6",
|
2761 |
+
"@babel/helper-simple-access": "^7.8.3",
|
2762 |
+
"@babel/helper-split-export-declaration": "^7.8.3",
|
2763 |
+
"@babel/template": "^7.8.6",
|
2764 |
+
"@babel/types": "^7.9.0",
|
2765 |
+
"lodash": "^4.17.13"
|
2766 |
+
}
|
2767 |
+
},
|
2768 |
+
"@babel/helper-optimise-call-expression": {
|
2769 |
+
"version": "7.8.3",
|
2770 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz",
|
2771 |
+
"integrity": "sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==",
|
2772 |
+
"dev": true,
|
2773 |
+
"requires": {
|
2774 |
+
"@babel/types": "^7.8.3"
|
2775 |
+
}
|
2776 |
+
},
|
2777 |
+
"@babel/helper-plugin-utils": {
|
2778 |
+
"version": "7.8.3",
|
2779 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
2780 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
2781 |
+
"dev": true
|
2782 |
+
},
|
2783 |
+
"@babel/helper-regex": {
|
2784 |
+
"version": "7.8.3",
|
2785 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.8.3.tgz",
|
2786 |
+
"integrity": "sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==",
|
2787 |
+
"dev": true,
|
2788 |
+
"requires": {
|
2789 |
+
"lodash": "^4.17.13"
|
2790 |
+
}
|
2791 |
+
},
|
2792 |
+
"@babel/helper-remap-async-to-generator": {
|
2793 |
+
"version": "7.8.3",
|
2794 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz",
|
2795 |
+
"integrity": "sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==",
|
2796 |
+
"dev": true,
|
2797 |
+
"requires": {
|
2798 |
+
"@babel/helper-annotate-as-pure": "^7.8.3",
|
2799 |
+
"@babel/helper-wrap-function": "^7.8.3",
|
2800 |
+
"@babel/template": "^7.8.3",
|
2801 |
+
"@babel/traverse": "^7.8.3",
|
2802 |
+
"@babel/types": "^7.8.3"
|
2803 |
+
}
|
2804 |
+
},
|
2805 |
+
"@babel/helper-replace-supers": {
|
2806 |
+
"version": "7.9.6",
|
2807 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.9.6.tgz",
|
2808 |
+
"integrity": "sha512-qX+chbxkbArLyCImk3bWV+jB5gTNU/rsze+JlcF6Nf8tVTigPJSI1o1oBow/9Resa1yehUO9lIipsmu9oG4RzA==",
|
2809 |
+
"dev": true,
|
2810 |
+
"requires": {
|
2811 |
+
"@babel/helper-member-expression-to-functions": "^7.8.3",
|
2812 |
+
"@babel/helper-optimise-call-expression": "^7.8.3",
|
2813 |
+
"@babel/traverse": "^7.9.6",
|
2814 |
+
"@babel/types": "^7.9.6"
|
2815 |
+
}
|
2816 |
+
},
|
2817 |
+
"@babel/helper-simple-access": {
|
2818 |
+
"version": "7.8.3",
|
2819 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz",
|
2820 |
+
"integrity": "sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==",
|
2821 |
+
"dev": true,
|
2822 |
+
"requires": {
|
2823 |
+
"@babel/template": "^7.8.3",
|
2824 |
+
"@babel/types": "^7.8.3"
|
2825 |
+
}
|
2826 |
+
},
|
2827 |
+
"@babel/helper-split-export-declaration": {
|
2828 |
+
"version": "7.8.3",
|
2829 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz",
|
2830 |
+
"integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==",
|
2831 |
+
"dev": true,
|
2832 |
+
"requires": {
|
2833 |
+
"@babel/types": "^7.8.3"
|
2834 |
+
}
|
2835 |
+
},
|
2836 |
+
"@babel/helper-wrap-function": {
|
2837 |
+
"version": "7.8.3",
|
2838 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz",
|
2839 |
+
"integrity": "sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==",
|
2840 |
+
"dev": true,
|
2841 |
+
"requires": {
|
2842 |
+
"@babel/helper-function-name": "^7.8.3",
|
2843 |
+
"@babel/template": "^7.8.3",
|
2844 |
+
"@babel/traverse": "^7.8.3",
|
2845 |
+
"@babel/types": "^7.8.3"
|
2846 |
+
}
|
2847 |
+
},
|
2848 |
+
"@babel/helpers": {
|
2849 |
+
"version": "7.9.6",
|
2850 |
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.9.6.tgz",
|
2851 |
+
"integrity": "sha512-tI4bUbldloLcHWoRUMAj4g1bF313M/o6fBKhIsb3QnGVPwRm9JsNf/gqMkQ7zjqReABiffPV6RWj7hEglID5Iw==",
|
2852 |
+
"dev": true,
|
2853 |
+
"requires": {
|
2854 |
+
"@babel/template": "^7.8.3",
|
2855 |
+
"@babel/traverse": "^7.9.6",
|
2856 |
+
"@babel/types": "^7.9.6"
|
2857 |
+
}
|
2858 |
+
},
|
2859 |
+
"@babel/highlight": {
|
2860 |
+
"version": "7.9.0",
|
2861 |
+
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.9.0.tgz",
|
2862 |
+
"integrity": "sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==",
|
2863 |
+
"dev": true,
|
2864 |
+
"requires": {
|
2865 |
+
"@babel/helper-validator-identifier": "^7.9.0",
|
2866 |
+
"chalk": "^2.0.0",
|
2867 |
+
"js-tokens": "^4.0.0"
|
2868 |
+
}
|
2869 |
+
},
|
2870 |
+
"@babel/parser": {
|
2871 |
+
"version": "7.9.6",
|
2872 |
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.9.6.tgz",
|
2873 |
+
"integrity": "sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q==",
|
2874 |
+
"dev": true
|
2875 |
+
},
|
2876 |
+
"@babel/plugin-proposal-async-generator-functions": {
|
2877 |
+
"version": "7.8.3",
|
2878 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz",
|
2879 |
+
"integrity": "sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==",
|
2880 |
+
"dev": true,
|
2881 |
+
"requires": {
|
2882 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
2883 |
+
"@babel/helper-remap-async-to-generator": "^7.8.3",
|
2884 |
+
"@babel/plugin-syntax-async-generators": "^7.8.0"
|
2885 |
+
}
|
2886 |
+
},
|
2887 |
+
"@babel/plugin-proposal-dynamic-import": {
|
2888 |
+
"version": "7.8.3",
|
2889 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz",
|
2890 |
+
"integrity": "sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==",
|
2891 |
+
"dev": true,
|
2892 |
+
"requires": {
|
2893 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
2894 |
+
"@babel/plugin-syntax-dynamic-import": "^7.8.0"
|
2895 |
+
}
|
2896 |
+
},
|
2897 |
+
"@babel/plugin-proposal-json-strings": {
|
2898 |
+
"version": "7.8.3",
|
2899 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz",
|
2900 |
+
"integrity": "sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==",
|
2901 |
+
"dev": true,
|
2902 |
+
"requires": {
|
2903 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
2904 |
+
"@babel/plugin-syntax-json-strings": "^7.8.0"
|
2905 |
+
}
|
2906 |
+
},
|
2907 |
+
"@babel/plugin-proposal-object-rest-spread": {
|
2908 |
+
"version": "7.9.6",
|
2909 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.6.tgz",
|
2910 |
+
"integrity": "sha512-Ga6/fhGqA9Hj+y6whNpPv8psyaK5xzrQwSPsGPloVkvmH+PqW1ixdnfJ9uIO06OjQNYol3PMnfmJ8vfZtkzF+A==",
|
2911 |
+
"dev": true,
|
2912 |
+
"requires": {
|
2913 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
2914 |
+
"@babel/plugin-syntax-object-rest-spread": "^7.8.0",
|
2915 |
+
"@babel/plugin-transform-parameters": "^7.9.5"
|
2916 |
+
}
|
2917 |
+
},
|
2918 |
+
"@babel/plugin-proposal-optional-catch-binding": {
|
2919 |
+
"version": "7.8.3",
|
2920 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz",
|
2921 |
+
"integrity": "sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==",
|
2922 |
+
"dev": true,
|
2923 |
+
"requires": {
|
2924 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
2925 |
+
"@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
|
2926 |
+
}
|
2927 |
+
},
|
2928 |
+
"@babel/plugin-proposal-unicode-property-regex": {
|
2929 |
+
"version": "7.8.8",
|
2930 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz",
|
2931 |
+
"integrity": "sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A==",
|
2932 |
+
"dev": true,
|
2933 |
+
"requires": {
|
2934 |
+
"@babel/helper-create-regexp-features-plugin": "^7.8.8",
|
2935 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
2936 |
+
}
|
2937 |
+
},
|
2938 |
+
"@babel/plugin-syntax-async-generators": {
|
2939 |
+
"version": "7.8.4",
|
2940 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
|
2941 |
+
"integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
|
2942 |
+
"dev": true,
|
2943 |
+
"requires": {
|
2944 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
2945 |
+
}
|
2946 |
+
},
|
2947 |
+
"@babel/plugin-syntax-dynamic-import": {
|
2948 |
+
"version": "7.8.3",
|
2949 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
|
2950 |
+
"integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
|
2951 |
+
"dev": true,
|
2952 |
+
"requires": {
|
2953 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
2954 |
+
}
|
2955 |
+
},
|
2956 |
+
"@babel/plugin-syntax-json-strings": {
|
2957 |
+
"version": "7.8.3",
|
2958 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
|
2959 |
+
"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
|
2960 |
+
"dev": true,
|
2961 |
+
"requires": {
|
2962 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
2963 |
+
}
|
2964 |
+
},
|
2965 |
+
"@babel/plugin-syntax-object-rest-spread": {
|
2966 |
+
"version": "7.8.3",
|
2967 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
|
2968 |
+
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
|
2969 |
+
"dev": true,
|
2970 |
+
"requires": {
|
2971 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
2972 |
+
}
|
2973 |
+
},
|
2974 |
+
"@babel/plugin-syntax-optional-catch-binding": {
|
2975 |
+
"version": "7.8.3",
|
2976 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
|
2977 |
+
"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
|
2978 |
+
"dev": true,
|
2979 |
+
"requires": {
|
2980 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
2981 |
+
}
|
2982 |
+
},
|
2983 |
+
"@babel/plugin-syntax-top-level-await": {
|
2984 |
+
"version": "7.8.3",
|
2985 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz",
|
2986 |
+
"integrity": "sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==",
|
2987 |
+
"dev": true,
|
2988 |
+
"requires": {
|
2989 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
2990 |
+
}
|
2991 |
+
},
|
2992 |
+
"@babel/plugin-transform-arrow-functions": {
|
2993 |
+
"version": "7.8.3",
|
2994 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz",
|
2995 |
+
"integrity": "sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==",
|
2996 |
+
"dev": true,
|
2997 |
+
"requires": {
|
2998 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
2999 |
+
}
|
3000 |
+
},
|
3001 |
+
"@babel/plugin-transform-async-to-generator": {
|
3002 |
+
"version": "7.8.3",
|
3003 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz",
|
3004 |
+
"integrity": "sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==",
|
3005 |
+
"dev": true,
|
3006 |
+
"requires": {
|
3007 |
+
"@babel/helper-module-imports": "^7.8.3",
|
3008 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
3009 |
+
"@babel/helper-remap-async-to-generator": "^7.8.3"
|
3010 |
+
}
|
3011 |
+
},
|
3012 |
+
"@babel/plugin-transform-block-scoped-functions": {
|
3013 |
+
"version": "7.8.3",
|
3014 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz",
|
3015 |
+
"integrity": "sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==",
|
3016 |
+
"dev": true,
|
3017 |
+
"requires": {
|
3018 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3019 |
+
}
|
3020 |
+
},
|
3021 |
+
"@babel/plugin-transform-block-scoping": {
|
3022 |
+
"version": "7.8.3",
|
3023 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz",
|
3024 |
+
"integrity": "sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==",
|
3025 |
+
"dev": true,
|
3026 |
+
"requires": {
|
3027 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
3028 |
+
"lodash": "^4.17.13"
|
3029 |
+
}
|
3030 |
+
},
|
3031 |
+
"@babel/plugin-transform-classes": {
|
3032 |
+
"version": "7.9.5",
|
3033 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz",
|
3034 |
+
"integrity": "sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg==",
|
3035 |
+
"dev": true,
|
3036 |
+
"requires": {
|
3037 |
+
"@babel/helper-annotate-as-pure": "^7.8.3",
|
3038 |
+
"@babel/helper-define-map": "^7.8.3",
|
3039 |
+
"@babel/helper-function-name": "^7.9.5",
|
3040 |
+
"@babel/helper-optimise-call-expression": "^7.8.3",
|
3041 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
3042 |
+
"@babel/helper-replace-supers": "^7.8.6",
|
3043 |
+
"@babel/helper-split-export-declaration": "^7.8.3",
|
3044 |
+
"globals": "^11.1.0"
|
3045 |
+
}
|
3046 |
+
},
|
3047 |
+
"@babel/plugin-transform-computed-properties": {
|
3048 |
+
"version": "7.8.3",
|
3049 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz",
|
3050 |
+
"integrity": "sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==",
|
3051 |
+
"dev": true,
|
3052 |
+
"requires": {
|
3053 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3054 |
+
}
|
3055 |
+
},
|
3056 |
+
"@babel/plugin-transform-destructuring": {
|
3057 |
+
"version": "7.9.5",
|
3058 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz",
|
3059 |
+
"integrity": "sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q==",
|
3060 |
+
"dev": true,
|
3061 |
+
"requires": {
|
3062 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3063 |
+
}
|
3064 |
+
},
|
3065 |
+
"@babel/plugin-transform-dotall-regex": {
|
3066 |
+
"version": "7.8.3",
|
3067 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz",
|
3068 |
+
"integrity": "sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==",
|
3069 |
+
"dev": true,
|
3070 |
+
"requires": {
|
3071 |
+
"@babel/helper-create-regexp-features-plugin": "^7.8.3",
|
3072 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3073 |
+
}
|
3074 |
+
},
|
3075 |
+
"@babel/plugin-transform-duplicate-keys": {
|
3076 |
+
"version": "7.8.3",
|
3077 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz",
|
3078 |
+
"integrity": "sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==",
|
3079 |
+
"dev": true,
|
3080 |
+
"requires": {
|
3081 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3082 |
+
}
|
3083 |
+
},
|
3084 |
+
"@babel/plugin-transform-exponentiation-operator": {
|
3085 |
+
"version": "7.8.3",
|
3086 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz",
|
3087 |
+
"integrity": "sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==",
|
3088 |
+
"dev": true,
|
3089 |
+
"requires": {
|
3090 |
+
"@babel/helper-builder-binary-assignment-operator-visitor": "^7.8.3",
|
3091 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3092 |
+
}
|
3093 |
+
},
|
3094 |
+
"@babel/plugin-transform-for-of": {
|
3095 |
+
"version": "7.9.0",
|
3096 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz",
|
3097 |
+
"integrity": "sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ==",
|
3098 |
+
"dev": true,
|
3099 |
+
"requires": {
|
3100 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3101 |
+
}
|
3102 |
+
},
|
3103 |
+
"@babel/plugin-transform-function-name": {
|
3104 |
+
"version": "7.8.3",
|
3105 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz",
|
3106 |
+
"integrity": "sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==",
|
3107 |
+
"dev": true,
|
3108 |
+
"requires": {
|
3109 |
+
"@babel/helper-function-name": "^7.8.3",
|
3110 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3111 |
+
}
|
3112 |
+
},
|
3113 |
+
"@babel/plugin-transform-literals": {
|
3114 |
+
"version": "7.8.3",
|
3115 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz",
|
3116 |
+
"integrity": "sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==",
|
3117 |
+
"dev": true,
|
3118 |
+
"requires": {
|
3119 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3120 |
+
}
|
3121 |
+
},
|
3122 |
+
"@babel/plugin-transform-member-expression-literals": {
|
3123 |
+
"version": "7.8.3",
|
3124 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz",
|
3125 |
+
"integrity": "sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==",
|
3126 |
+
"dev": true,
|
3127 |
+
"requires": {
|
3128 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3129 |
+
}
|
3130 |
+
},
|
3131 |
+
"@babel/plugin-transform-modules-amd": {
|
3132 |
+
"version": "7.9.6",
|
3133 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.6.tgz",
|
3134 |
+
"integrity": "sha512-zoT0kgC3EixAyIAU+9vfaUVKTv9IxBDSabgHoUCBP6FqEJ+iNiN7ip7NBKcYqbfUDfuC2mFCbM7vbu4qJgOnDw==",
|
3135 |
+
"dev": true,
|
3136 |
+
"requires": {
|
3137 |
+
"@babel/helper-module-transforms": "^7.9.0",
|
3138 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
3139 |
+
"babel-plugin-dynamic-import-node": "^2.3.3"
|
3140 |
+
}
|
3141 |
+
},
|
3142 |
+
"@babel/plugin-transform-modules-commonjs": {
|
3143 |
+
"version": "7.9.6",
|
3144 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.6.tgz",
|
3145 |
+
"integrity": "sha512-7H25fSlLcn+iYimmsNe3uK1at79IE6SKW9q0/QeEHTMC9MdOZ+4bA+T1VFB5fgOqBWoqlifXRzYD0JPdmIrgSQ==",
|
3146 |
+
"dev": true,
|
3147 |
+
"requires": {
|
3148 |
+
"@babel/helper-module-transforms": "^7.9.0",
|
3149 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
3150 |
+
"@babel/helper-simple-access": "^7.8.3",
|
3151 |
+
"babel-plugin-dynamic-import-node": "^2.3.3"
|
3152 |
+
}
|
3153 |
+
},
|
3154 |
+
"@babel/plugin-transform-modules-systemjs": {
|
3155 |
+
"version": "7.9.6",
|
3156 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.6.tgz",
|
3157 |
+
"integrity": "sha512-NW5XQuW3N2tTHim8e1b7qGy7s0kZ2OH3m5octc49K1SdAKGxYxeIx7hiIz05kS1R2R+hOWcsr1eYwcGhrdHsrg==",
|
3158 |
+
"dev": true,
|
3159 |
+
"requires": {
|
3160 |
+
"@babel/helper-hoist-variables": "^7.8.3",
|
3161 |
+
"@babel/helper-module-transforms": "^7.9.0",
|
3162 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
3163 |
+
"babel-plugin-dynamic-import-node": "^2.3.3"
|
3164 |
+
}
|
3165 |
+
},
|
3166 |
+
"@babel/plugin-transform-modules-umd": {
|
3167 |
+
"version": "7.9.0",
|
3168 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz",
|
3169 |
+
"integrity": "sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ==",
|
3170 |
+
"dev": true,
|
3171 |
+
"requires": {
|
3172 |
+
"@babel/helper-module-transforms": "^7.9.0",
|
3173 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3174 |
+
}
|
3175 |
+
},
|
3176 |
+
"@babel/plugin-transform-named-capturing-groups-regex": {
|
3177 |
+
"version": "7.8.3",
|
3178 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz",
|
3179 |
+
"integrity": "sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==",
|
3180 |
+
"dev": true,
|
3181 |
+
"requires": {
|
3182 |
+
"@babel/helper-create-regexp-features-plugin": "^7.8.3"
|
3183 |
+
}
|
3184 |
+
},
|
3185 |
+
"@babel/plugin-transform-new-target": {
|
3186 |
+
"version": "7.8.3",
|
3187 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz",
|
3188 |
+
"integrity": "sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==",
|
3189 |
+
"dev": true,
|
3190 |
+
"requires": {
|
3191 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3192 |
+
}
|
3193 |
+
},
|
3194 |
+
"@babel/plugin-transform-object-super": {
|
3195 |
+
"version": "7.8.3",
|
3196 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz",
|
3197 |
+
"integrity": "sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==",
|
3198 |
+
"dev": true,
|
3199 |
+
"requires": {
|
3200 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
3201 |
+
"@babel/helper-replace-supers": "^7.8.3"
|
3202 |
+
}
|
3203 |
+
},
|
3204 |
+
"@babel/plugin-transform-parameters": {
|
3205 |
+
"version": "7.9.5",
|
3206 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz",
|
3207 |
+
"integrity": "sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA==",
|
3208 |
+
"dev": true,
|
3209 |
+
"requires": {
|
3210 |
+
"@babel/helper-get-function-arity": "^7.8.3",
|
3211 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3212 |
+
}
|
3213 |
+
},
|
3214 |
+
"@babel/plugin-transform-property-literals": {
|
3215 |
+
"version": "7.8.3",
|
3216 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz",
|
3217 |
+
"integrity": "sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==",
|
3218 |
+
"dev": true,
|
3219 |
+
"requires": {
|
3220 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3221 |
+
}
|
3222 |
+
},
|
3223 |
+
"@babel/plugin-transform-regenerator": {
|
3224 |
+
"version": "7.8.7",
|
3225 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz",
|
3226 |
+
"integrity": "sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA==",
|
3227 |
+
"dev": true,
|
3228 |
+
"requires": {
|
3229 |
+
"regenerator-transform": "^0.14.2"
|
3230 |
+
}
|
3231 |
+
},
|
3232 |
+
"@babel/plugin-transform-reserved-words": {
|
3233 |
+
"version": "7.8.3",
|
3234 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz",
|
3235 |
+
"integrity": "sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==",
|
3236 |
+
"dev": true,
|
3237 |
+
"requires": {
|
3238 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3239 |
+
}
|
3240 |
+
},
|
3241 |
+
"@babel/plugin-transform-shorthand-properties": {
|
3242 |
+
"version": "7.8.3",
|
3243 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz",
|
3244 |
+
"integrity": "sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==",
|
3245 |
+
"dev": true,
|
3246 |
+
"requires": {
|
3247 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3248 |
+
}
|
3249 |
+
},
|
3250 |
+
"@babel/plugin-transform-spread": {
|
3251 |
+
"version": "7.8.3",
|
3252 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz",
|
3253 |
+
"integrity": "sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==",
|
3254 |
+
"dev": true,
|
3255 |
+
"requires": {
|
3256 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3257 |
+
}
|
3258 |
+
},
|
3259 |
+
"@babel/plugin-transform-sticky-regex": {
|
3260 |
+
"version": "7.8.3",
|
3261 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz",
|
3262 |
+
"integrity": "sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==",
|
3263 |
+
"dev": true,
|
3264 |
+
"requires": {
|
3265 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
3266 |
+
"@babel/helper-regex": "^7.8.3"
|
3267 |
+
}
|
3268 |
+
},
|
3269 |
+
"@babel/plugin-transform-template-literals": {
|
3270 |
+
"version": "7.8.3",
|
3271 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz",
|
3272 |
+
"integrity": "sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==",
|
3273 |
+
"dev": true,
|
3274 |
+
"requires": {
|
3275 |
+
"@babel/helper-annotate-as-pure": "^7.8.3",
|
3276 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3277 |
+
}
|
3278 |
+
},
|
3279 |
+
"@babel/plugin-transform-typeof-symbol": {
|
3280 |
+
"version": "7.8.4",
|
3281 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz",
|
3282 |
+
"integrity": "sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg==",
|
3283 |
+
"dev": true,
|
3284 |
+
"requires": {
|
3285 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3286 |
+
}
|
3287 |
+
},
|
3288 |
+
"@babel/plugin-transform-unicode-regex": {
|
3289 |
+
"version": "7.8.3",
|
3290 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz",
|
3291 |
+
"integrity": "sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==",
|
3292 |
+
"dev": true,
|
3293 |
+
"requires": {
|
3294 |
+
"@babel/helper-create-regexp-features-plugin": "^7.8.3",
|
3295 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
3296 |
+
}
|
3297 |
+
},
|
3298 |
+
"@babel/preset-env": {
|
3299 |
+
"version": "7.9.6",
|
3300 |
+
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.9.6.tgz",
|
3301 |
+
"integrity": "sha512-0gQJ9RTzO0heXOhzftog+a/WyOuqMrAIugVYxMYf83gh1CQaQDjMtsOpqOwXyDL/5JcWsrCm8l4ju8QC97O7EQ==",
|
3302 |
+
"dev": true,
|
3303 |
+
"requires": {
|
3304 |
+
"@babel/compat-data": "^7.9.6",
|
3305 |
+
"@babel/helper-compilation-targets": "^7.9.6",
|
3306 |
+
"@babel/helper-module-imports": "^7.8.3",
|
3307 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
3308 |
+
"@babel/plugin-proposal-async-generator-functions": "^7.8.3",
|
3309 |
+
"@babel/plugin-proposal-dynamic-import": "^7.8.3",
|
3310 |
+
"@babel/plugin-proposal-json-strings": "^7.8.3",
|
3311 |
+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
|
3312 |
+
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
|
3313 |
+
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
|
3314 |
+
"@babel/plugin-proposal-optional-catch-binding": "^7.8.3",
|
3315 |
+
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
|
3316 |
+
"@babel/plugin-proposal-unicode-property-regex": "^7.8.3",
|
3317 |
+
"@babel/plugin-syntax-async-generators": "^7.8.0",
|
3318 |
+
"@babel/plugin-syntax-dynamic-import": "^7.8.0",
|
3319 |
+
"@babel/plugin-syntax-json-strings": "^7.8.0",
|
3320 |
+
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
|
3321 |
+
"@babel/plugin-syntax-numeric-separator": "^7.8.0",
|
3322 |
+
"@babel/plugin-syntax-object-rest-spread": "^7.8.0",
|
3323 |
+
"@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
|
3324 |
+
"@babel/plugin-syntax-optional-chaining": "^7.8.0",
|
3325 |
+
"@babel/plugin-syntax-top-level-await": "^7.8.3",
|
3326 |
+
"@babel/plugin-transform-arrow-functions": "^7.8.3",
|
3327 |
+
"@babel/plugin-transform-async-to-generator": "^7.8.3",
|
3328 |
+
"@babel/plugin-transform-block-scoped-functions": "^7.8.3",
|
3329 |
+
"@babel/plugin-transform-block-scoping": "^7.8.3",
|
3330 |
+
"@babel/plugin-transform-classes": "^7.9.5",
|
3331 |
+
"@babel/plugin-transform-computed-properties": "^7.8.3",
|
3332 |
+
"@babel/plugin-transform-destructuring": "^7.9.5",
|
3333 |
+
"@babel/plugin-transform-dotall-regex": "^7.8.3",
|
3334 |
+
"@babel/plugin-transform-duplicate-keys": "^7.8.3",
|
3335 |
+
"@babel/plugin-transform-exponentiation-operator": "^7.8.3",
|
3336 |
+
"@babel/plugin-transform-for-of": "^7.9.0",
|
3337 |
+
"@babel/plugin-transform-function-name": "^7.8.3",
|
3338 |
+
"@babel/plugin-transform-literals": "^7.8.3",
|
3339 |
+
"@babel/plugin-transform-member-expression-literals": "^7.8.3",
|
3340 |
+
"@babel/plugin-transform-modules-amd": "^7.9.6",
|
3341 |
+
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
|
3342 |
+
"@babel/plugin-transform-modules-systemjs": "^7.9.6",
|
3343 |
+
"@babel/plugin-transform-modules-umd": "^7.9.0",
|
3344 |
+
"@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3",
|
3345 |
+
"@babel/plugin-transform-new-target": "^7.8.3",
|
3346 |
+
"@babel/plugin-transform-object-super": "^7.8.3",
|
3347 |
+
"@babel/plugin-transform-parameters": "^7.9.5",
|
3348 |
+
"@babel/plugin-transform-property-literals": "^7.8.3",
|
3349 |
+
"@babel/plugin-transform-regenerator": "^7.8.7",
|
3350 |
+
"@babel/plugin-transform-reserved-words": "^7.8.3",
|
3351 |
+
"@babel/plugin-transform-shorthand-properties": "^7.8.3",
|
3352 |
+
"@babel/plugin-transform-spread": "^7.8.3",
|
3353 |
+
"@babel/plugin-transform-sticky-regex": "^7.8.3",
|
3354 |
+
"@babel/plugin-transform-template-literals": "^7.8.3",
|
3355 |
+
"@babel/plugin-transform-typeof-symbol": "^7.8.4",
|
3356 |
+
"@babel/plugin-transform-unicode-regex": "^7.8.3",
|
3357 |
+
"@babel/preset-modules": "^0.1.3",
|
3358 |
+
"@babel/types": "^7.9.6",
|
3359 |
+
"browserslist": "^4.11.1",
|
3360 |
+
"core-js-compat": "^3.6.2",
|
3361 |
+
"invariant": "^2.2.2",
|
3362 |
+
"levenary": "^1.1.1",
|
3363 |
+
"semver": "^5.5.0"
|
3364 |
+
}
|
3365 |
+
},
|
3366 |
+
"@babel/runtime": {
|
3367 |
+
"version": "7.9.6",
|
3368 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
|
3369 |
+
"integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
|
3370 |
+
"dev": true,
|
3371 |
+
"requires": {
|
3372 |
+
"regenerator-runtime": "^0.13.4"
|
3373 |
+
}
|
3374 |
+
},
|
3375 |
+
"@babel/template": {
|
3376 |
+
"version": "7.8.6",
|
3377 |
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.6.tgz",
|
3378 |
+
"integrity": "sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==",
|
3379 |
+
"dev": true,
|
3380 |
+
"requires": {
|
3381 |
+
"@babel/code-frame": "^7.8.3",
|
3382 |
+
"@babel/parser": "^7.8.6",
|
3383 |
+
"@babel/types": "^7.8.6"
|
3384 |
+
}
|
3385 |
+
},
|
3386 |
+
"@babel/traverse": {
|
3387 |
+
"version": "7.9.6",
|
3388 |
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.9.6.tgz",
|
3389 |
+
"integrity": "sha512-b3rAHSjbxy6VEAvlxM8OV/0X4XrG72zoxme6q1MOoe2vd0bEc+TwayhuC1+Dfgqh1QEG+pj7atQqvUprHIccsg==",
|
3390 |
+
"dev": true,
|
3391 |
+
"requires": {
|
3392 |
+
"@babel/code-frame": "^7.8.3",
|
3393 |
+
"@babel/generator": "^7.9.6",
|
3394 |
+
"@babel/helper-function-name": "^7.9.5",
|
3395 |
+
"@babel/helper-split-export-declaration": "^7.8.3",
|
3396 |
+
"@babel/parser": "^7.9.6",
|
3397 |
+
"@babel/types": "^7.9.6",
|
3398 |
+
"debug": "^4.1.0",
|
3399 |
+
"globals": "^11.1.0",
|
3400 |
+
"lodash": "^4.17.13"
|
3401 |
+
}
|
3402 |
+
},
|
3403 |
+
"@babel/types": {
|
3404 |
+
"version": "7.9.6",
|
3405 |
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
|
3406 |
+
"integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
|
3407 |
+
"dev": true,
|
3408 |
+
"requires": {
|
3409 |
+
"@babel/helper-validator-identifier": "^7.9.5",
|
3410 |
+
"lodash": "^4.17.13",
|
3411 |
+
"to-fast-properties": "^2.0.0"
|
3412 |
+
}
|
3413 |
+
},
|
3414 |
+
"babel-plugin-dynamic-import-node": {
|
3415 |
+
"version": "2.3.3",
|
3416 |
+
"resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
|
3417 |
+
"integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
|
3418 |
+
"dev": true,
|
3419 |
+
"requires": {
|
3420 |
+
"object.assign": "^4.1.0"
|
3421 |
+
}
|
3422 |
+
},
|
3423 |
+
"browserslist": {
|
3424 |
+
"version": "4.12.0",
|
3425 |
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz",
|
3426 |
+
"integrity": "sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==",
|
3427 |
+
"dev": true,
|
3428 |
+
"requires": {
|
3429 |
+
"caniuse-lite": "^1.0.30001043",
|
3430 |
+
"electron-to-chromium": "^1.3.413",
|
3431 |
+
"node-releases": "^1.1.53",
|
3432 |
+
"pkg-up": "^2.0.0"
|
3433 |
+
}
|
3434 |
+
},
|
3435 |
+
"caniuse-lite": {
|
3436 |
+
"version": "1.0.30001066",
|
3437 |
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001066.tgz",
|
3438 |
+
"integrity": "sha512-Gfj/WAastBtfxLws0RCh2sDbTK/8rJuSeZMecrSkNGYxPcv7EzblmDGfWQCFEQcSqYE2BRgQiJh8HOD07N5hIw==",
|
3439 |
+
"dev": true
|
3440 |
+
},
|
3441 |
+
"convert-source-map": {
|
3442 |
+
"version": "1.7.0",
|
3443 |
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
|
3444 |
+
"integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
|
3445 |
+
"dev": true,
|
3446 |
+
"requires": {
|
3447 |
+
"safe-buffer": "~5.1.1"
|
3448 |
+
}
|
3449 |
+
},
|
3450 |
+
"core-js-compat": {
|
3451 |
+
"version": "3.6.5",
|
3452 |
+
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz",
|
3453 |
+
"integrity": "sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==",
|
3454 |
+
"dev": true,
|
3455 |
+
"requires": {
|
3456 |
+
"browserslist": "^4.8.5",
|
3457 |
+
"semver": "7.0.0"
|
3458 |
+
},
|
3459 |
+
"dependencies": {
|
3460 |
+
"semver": {
|
3461 |
+
"version": "7.0.0",
|
3462 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
|
3463 |
+
"integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
|
3464 |
+
"dev": true
|
3465 |
+
}
|
3466 |
+
}
|
3467 |
+
},
|
3468 |
+
"electron-to-chromium": {
|
3469 |
+
"version": "1.3.452",
|
3470 |
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.452.tgz",
|
3471 |
+
"integrity": "sha512-IdbjgCEqDvcU/1kUQa6C49I2NZOY3SBmU9Eus7mdFdJJBqn0Lg1Epfi/T4nqVcxTNBEGhcjwMhY1EysMBsXZrw==",
|
3472 |
+
"dev": true
|
3473 |
+
},
|
3474 |
+
"emojis-list": {
|
3475 |
+
"version": "3.0.0",
|
3476 |
+
"resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
|
3477 |
+
"integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
|
3478 |
+
"dev": true
|
3479 |
+
},
|
3480 |
+
"json5": {
|
3481 |
+
"version": "2.1.3",
|
3482 |
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
|
3483 |
+
"integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
|
3484 |
+
"dev": true,
|
3485 |
+
"requires": {
|
3486 |
+
"minimist": "^1.2.5"
|
3487 |
+
}
|
3488 |
+
},
|
3489 |
+
"loader-utils": {
|
3490 |
+
"version": "2.0.0",
|
3491 |
+
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz",
|
3492 |
+
"integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==",
|
3493 |
+
"dev": true,
|
3494 |
+
"requires": {
|
3495 |
+
"big.js": "^5.2.2",
|
3496 |
+
"emojis-list": "^3.0.0",
|
3497 |
+
"json5": "^2.1.2"
|
3498 |
+
}
|
3499 |
+
},
|
3500 |
+
"node-releases": {
|
3501 |
+
"version": "1.1.56",
|
3502 |
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.56.tgz",
|
3503 |
+
"integrity": "sha512-EVo605FhWLygH8a64TjgpjyHYOihkxECwX1bHHr8tETJKWEiWS2YJjPbvsX2jFjnjTNEgBCmk9mLjKG1Mf11cw==",
|
3504 |
+
"dev": true
|
3505 |
+
},
|
3506 |
+
"regenerate-unicode-properties": {
|
3507 |
+
"version": "8.2.0",
|
3508 |
+
"resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz",
|
3509 |
+
"integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==",
|
3510 |
+
"dev": true,
|
3511 |
+
"requires": {
|
3512 |
+
"regenerate": "^1.4.0"
|
3513 |
+
}
|
3514 |
+
},
|
3515 |
+
"regenerator-runtime": {
|
3516 |
+
"version": "0.13.5",
|
3517 |
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
|
3518 |
+
"integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==",
|
3519 |
+
"dev": true
|
3520 |
+
},
|
3521 |
+
"regenerator-transform": {
|
3522 |
+
"version": "0.14.4",
|
3523 |
+
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.4.tgz",
|
3524 |
+
"integrity": "sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==",
|
3525 |
+
"dev": true,
|
3526 |
+
"requires": {
|
3527 |
+
"@babel/runtime": "^7.8.4",
|
3528 |
+
"private": "^0.1.8"
|
3529 |
+
}
|
3530 |
+
},
|
3531 |
+
"regexpu-core": {
|
3532 |
+
"version": "4.7.0",
|
3533 |
+
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz",
|
3534 |
+
"integrity": "sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==",
|
3535 |
+
"dev": true,
|
3536 |
+
"requires": {
|
3537 |
+
"regenerate": "^1.4.0",
|
3538 |
+
"regenerate-unicode-properties": "^8.2.0",
|
3539 |
+
"regjsgen": "^0.5.1",
|
3540 |
+
"regjsparser": "^0.6.4",
|
3541 |
+
"unicode-match-property-ecmascript": "^1.0.4",
|
3542 |
+
"unicode-match-property-value-ecmascript": "^1.2.0"
|
3543 |
+
}
|
3544 |
+
},
|
3545 |
+
"regjsparser": {
|
3546 |
+
"version": "0.6.4",
|
3547 |
+
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz",
|
3548 |
+
"integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==",
|
3549 |
+
"dev": true,
|
3550 |
+
"requires": {
|
3551 |
+
"jsesc": "~0.5.0"
|
3552 |
+
},
|
3553 |
+
"dependencies": {
|
3554 |
+
"jsesc": {
|
3555 |
+
"version": "0.5.0",
|
3556 |
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
|
3557 |
+
"integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
|
3558 |
+
"dev": true
|
3559 |
+
}
|
3560 |
+
}
|
3561 |
+
},
|
3562 |
+
"unicode-match-property-value-ecmascript": {
|
3563 |
+
"version": "1.2.0",
|
3564 |
+
"resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz",
|
3565 |
+
"integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==",
|
3566 |
+
"dev": true
|
3567 |
+
}
|
3568 |
+
}
|
3569 |
+
},
|
3570 |
+
"@szmarczak/http-timer": {
|
3571 |
+
"version": "1.1.2",
|
3572 |
+
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz",
|
3573 |
+
"integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==",
|
3574 |
+
"dev": true,
|
3575 |
+
"requires": {
|
3576 |
+
"defer-to-connect": "^1.0.1"
|
3577 |
+
}
|
3578 |
+
},
|
3579 |
+
"@tannin/compile": {
|
3580 |
+
"version": "1.0.4",
|
3581 |
+
"resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.0.4.tgz",
|
3582 |
+
"integrity": "sha512-RVfzknkrDTgtLhFSEaoGGIjpQsOzS75lzsf6v3IHP+sThoJ4qL2iQDopGo36OYeb6EzJMSKVGhsrTvqE/a1IpQ==",
|
3583 |
+
"requires": {
|
3584 |
+
"@tannin/evaluate": "^1.1.2",
|
3585 |
+
"@tannin/postfix": "^1.0.3"
|
3586 |
+
}
|
3587 |
+
},
|
3588 |
+
"@tannin/evaluate": {
|
3589 |
+
"version": "1.1.2",
|
3590 |
+
"resolved": "https://registry.npmjs.org/@tannin/evaluate/-/evaluate-1.1.2.tgz",
|
3591 |
+
"integrity": "sha512-ME/CNm9zpCqJwTZa1WUpWp51lY5IpJcsFgsNouPsgApI5D1Vr/sR/zPAQEyS8ruk45YUoFqP82VIGIhQFrhYKQ=="
|
3592 |
+
},
|
3593 |
+
"@tannin/plural-forms": {
|
3594 |
+
"version": "1.0.4",
|
3595 |
+
"resolved": "https://registry.npmjs.org/@tannin/plural-forms/-/plural-forms-1.0.4.tgz",
|
3596 |
+
"integrity": "sha512-NSlGvF6q2OLXWWDLgzZRM2+L1uLBxl5wgxfmi9ZZUpZjlg+Z7Ss/QbAJpAJGxgvERuA1jhqpAuTvr/2fNbH+Ag==",
|
3597 |
+
"requires": {
|
3598 |
+
"@tannin/compile": "^1.0.4"
|
3599 |
+
}
|
3600 |
+
},
|
3601 |
+
"@tannin/postfix": {
|
3602 |
+
"version": "1.0.3",
|
3603 |
+
"resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.0.3.tgz",
|
3604 |
+
"integrity": "sha512-80uoGtphTH3vDZlJgE2xJh3qBWMAlCXq8wN8WLOxHJjms0A38vkbXOXiYMIabgnIJVc1vCcZVQa2pHt+X3AF5Q=="
|
3605 |
+
},
|
3606 |
+
"@types/babel__core": {
|
3607 |
+
"version": "7.1.7",
|
3608 |
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.7.tgz",
|
3609 |
+
"integrity": "sha512-RL62NqSFPCDK2FM1pSDH0scHpJvsXtZNiYlMB73DgPBaG1E38ZYVL+ei5EkWRbr+KC4YNiAUNBnRj+bgwpgjMw==",
|
3610 |
+
"dev": true,
|
3611 |
+
"requires": {
|
3612 |
+
"@babel/parser": "^7.1.0",
|
3613 |
+
"@babel/types": "^7.0.0",
|
3614 |
+
"@types/babel__generator": "*",
|
3615 |
+
"@types/babel__template": "*",
|
3616 |
+
"@types/babel__traverse": "*"
|
3617 |
+
}
|
3618 |
+
},
|
3619 |
+
"@types/babel__generator": {
|
3620 |
+
"version": "7.6.1",
|
3621 |
+
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.1.tgz",
|
3622 |
+
"integrity": "sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew==",
|
3623 |
+
"dev": true,
|
3624 |
+
"requires": {
|
3625 |
+
"@babel/types": "^7.0.0"
|
3626 |
+
}
|
3627 |
+
},
|
3628 |
+
"@types/babel__template": {
|
3629 |
+
"version": "7.0.2",
|
3630 |
+
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz",
|
3631 |
+
"integrity": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==",
|
3632 |
+
"dev": true,
|
3633 |
+
"requires": {
|
3634 |
+
"@babel/parser": "^7.1.0",
|
3635 |
+
"@babel/types": "^7.0.0"
|
3636 |
+
}
|
3637 |
+
},
|
3638 |
+
"@types/babel__traverse": {
|
3639 |
+
"version": "7.0.11",
|
3640 |
+
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.11.tgz",
|
3641 |
+
"integrity": "sha512-ddHK5icION5U6q11+tV2f9Mo6CZVuT8GJKld2q9LqHSZbvLbH34Kcu2yFGckZut453+eQU6btIA3RihmnRgI+Q==",
|
3642 |
+
"dev": true,
|
3643 |
+
"requires": {
|
3644 |
+
"@babel/types": "^7.3.0"
|
3645 |
+
}
|
3646 |
+
},
|
3647 |
+
"@types/cacheable-request": {
|
3648 |
+
"version": "6.0.1",
|
3649 |
+
"resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.1.tgz",
|
3650 |
+
"integrity": "sha512-ykFq2zmBGOCbpIXtoVbz4SKY5QriWPh3AjyU4G74RYbtt5yOc5OfaY75ftjg7mikMOla1CTGpX3lLbuJh8DTrQ==",
|
3651 |
+
"dev": true,
|
3652 |
+
"requires": {
|
3653 |
+
"@types/http-cache-semantics": "*",
|
3654 |
+
"@types/keyv": "*",
|
3655 |
+
"@types/node": "*",
|
3656 |
+
"@types/responselike": "*"
|
3657 |
+
}
|
3658 |
+
},
|
3659 |
+
"@types/color-name": {
|
3660 |
+
"version": "1.1.1",
|
3661 |
+
"resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
|
3662 |
+
"integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
|
3663 |
+
"dev": true
|
3664 |
+
},
|
3665 |
+
"@types/events": {
|
3666 |
+
"version": "3.0.0",
|
3667 |
+
"resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz",
|
3668 |
+
"integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==",
|
3669 |
+
"dev": true
|
3670 |
+
},
|
3671 |
+
"@types/glob": {
|
3672 |
+
"version": "7.1.1",
|
3673 |
+
"resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz",
|
3674 |
+
"integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==",
|
3675 |
+
"dev": true,
|
3676 |
+
"requires": {
|
3677 |
+
"@types/events": "*",
|
3678 |
+
"@types/minimatch": "*",
|
3679 |
+
"@types/node": "*"
|
3680 |
+
}
|
3681 |
+
},
|
3682 |
+
"@types/graceful-fs": {
|
3683 |
+
"version": "4.1.3",
|
3684 |
+
"resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.3.tgz",
|
3685 |
+
"integrity": "sha512-AiHRaEB50LQg0pZmm659vNBb9f4SJ0qrAnteuzhSeAUcJKxoYgEnprg/83kppCnc2zvtCKbdZry1a5pVY3lOTQ==",
|
3686 |
+
"dev": true,
|
3687 |
+
"requires": {
|
3688 |
+
"@types/node": "*"
|
3689 |
+
}
|
3690 |
+
},
|
3691 |
+
"@types/http-cache-semantics": {
|
3692 |
+
"version": "4.0.0",
|
3693 |
+
"resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.0.tgz",
|
3694 |
+
"integrity": "sha512-c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==",
|
3695 |
+
"dev": true
|
3696 |
+
},
|
3697 |
+
"@types/istanbul-lib-coverage": {
|
3698 |
+
"version": "2.0.2",
|
3699 |
+
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.2.tgz",
|
3700 |
+
"integrity": "sha512-rsZg7eL+Xcxsxk2XlBt9KcG8nOp9iYdKCOikY9x2RFJCyOdNj4MKPQty0e8oZr29vVAzKXr1BmR+kZauti3o1w==",
|
3701 |
+
"dev": true
|
3702 |
+
},
|
3703 |
+
"@types/istanbul-lib-report": {
|
3704 |
+
"version": "3.0.0",
|
3705 |
+
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
|
3706 |
+
"integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
|
3707 |
+
"dev": true,
|
3708 |
+
"requires": {
|
3709 |
+
"@types/istanbul-lib-coverage": "*"
|
3710 |
+
}
|
3711 |
+
},
|
3712 |
+
"@types/istanbul-reports": {
|
3713 |
+
"version": "1.1.2",
|
3714 |
+
"resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz",
|
3715 |
+
"integrity": "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==",
|
3716 |
+
"dev": true,
|
3717 |
+
"requires": {
|
3718 |
+
"@types/istanbul-lib-coverage": "*",
|
3719 |
+
"@types/istanbul-lib-report": "*"
|
3720 |
+
}
|
3721 |
+
},
|
3722 |
+
"@types/json-schema": {
|
3723 |
+
"version": "7.0.4",
|
3724 |
+
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.4.tgz",
|
3725 |
+
"integrity": "sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==",
|
3726 |
+
"dev": true
|
3727 |
+
},
|
3728 |
+
"@types/keyv": {
|
3729 |
+
"version": "3.1.1",
|
3730 |
+
"resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.1.tgz",
|
3731 |
+
"integrity": "sha512-MPtoySlAZQ37VoLaPcTHCu1RWJ4llDkULYZIzOYxlhxBqYPB0RsRlmMU0R6tahtFe27mIdkHV+551ZWV4PLmVw==",
|
3732 |
+
"dev": true,
|
3733 |
+
"requires": {
|
3734 |
+
"@types/node": "*"
|
3735 |
+
}
|
3736 |
+
},
|
3737 |
+
"@types/mime-types": {
|
3738 |
+
"version": "2.1.0",
|
3739 |
+
"resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.0.tgz",
|
3740 |
+
"integrity": "sha1-nKUs2jY/aZxpRmwqbM2q2RPqenM=",
|
3741 |
+
"dev": true
|
3742 |
+
},
|
3743 |
+
"@types/minimatch": {
|
3744 |
+
"version": "3.0.3",
|
3745 |
+
"resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz",
|
3746 |
+
"integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==",
|
3747 |
+
"dev": true
|
3748 |
+
},
|
3749 |
+
"@types/minimist": {
|
3750 |
+
"version": "1.2.0",
|
3751 |
+
"resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.0.tgz",
|
3752 |
+
"integrity": "sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY=",
|
3753 |
+
"dev": true
|
3754 |
+
},
|
3755 |
+
"@types/node": {
|
3756 |
+
"version": "13.7.0",
|
3757 |
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-13.7.0.tgz",
|
3758 |
+
"integrity": "sha512-GnZbirvmqZUzMgkFn70c74OQpTTUcCzlhQliTzYjQMqg+hVKcDnxdL19Ne3UdYzdMA/+W3eb646FWn/ZaT1NfQ==",
|
3759 |
+
"dev": true
|
3760 |
+
},
|
3761 |
+
"@types/normalize-package-data": {
|
3762 |
+
"version": "2.4.0",
|
3763 |
+
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
|
3764 |
+
"integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==",
|
3765 |
+
"dev": true
|
3766 |
+
},
|
3767 |
+
"@types/parse-json": {
|
3768 |
+
"version": "4.0.0",
|
3769 |
+
"resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz",
|
3770 |
+
"integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
|
3771 |
+
},
|
3772 |
+
"@types/prettier": {
|
3773 |
+
"version": "1.19.1",
|
3774 |
+
"resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-1.19.1.tgz",
|
3775 |
+
"integrity": "sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ==",
|
3776 |
+
"dev": true
|
3777 |
+
},
|
3778 |
+
"@types/q": {
|
3779 |
+
"version": "1.5.4",
|
3780 |
+
"resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz",
|
3781 |
+
"integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==",
|
3782 |
+
"dev": true
|
3783 |
+
},
|
3784 |
+
"@types/responselike": {
|
3785 |
+
"version": "1.0.0",
|
3786 |
+
"resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.0.tgz",
|
3787 |
+
"integrity": "sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==",
|
3788 |
+
"dev": true,
|
3789 |
+
"requires": {
|
3790 |
+
"@types/node": "*"
|
3791 |
+
}
|
3792 |
+
},
|
3793 |
+
"@types/stack-utils": {
|
3794 |
+
"version": "1.0.1",
|
3795 |
+
"resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz",
|
3796 |
+
"integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==",
|
3797 |
+
"dev": true
|
3798 |
+
},
|
3799 |
+
"@types/unist": {
|
3800 |
+
"version": "2.0.3",
|
3801 |
+
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz",
|
3802 |
+
"integrity": "sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==",
|
3803 |
+
"dev": true
|
3804 |
+
},
|
3805 |
+
"@types/vfile": {
|
3806 |
+
"version": "3.0.2",
|
3807 |
+
"resolved": "https://registry.npmjs.org/@types/vfile/-/vfile-3.0.2.tgz",
|
3808 |
+
"integrity": "sha512-b3nLFGaGkJ9rzOcuXRfHkZMdjsawuDD0ENL9fzTophtBg8FJHSGbH7daXkEpcwy3v7Xol3pAvsmlYyFhR4pqJw==",
|
3809 |
+
"dev": true,
|
3810 |
+
"requires": {
|
3811 |
+
"@types/node": "*",
|
3812 |
+
"@types/unist": "*",
|
3813 |
+
"@types/vfile-message": "*"
|
3814 |
+
}
|
3815 |
+
},
|
3816 |
+
"@types/vfile-message": {
|
3817 |
+
"version": "2.0.0",
|
3818 |
+
"resolved": "https://registry.npmjs.org/@types/vfile-message/-/vfile-message-2.0.0.tgz",
|
3819 |
+
"integrity": "sha512-GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw==",
|
3820 |
+
"dev": true,
|
3821 |
+
"requires": {
|
3822 |
+
"vfile-message": "*"
|
3823 |
+
}
|
3824 |
+
},
|
3825 |
+
"@types/yargs": {
|
3826 |
+
"version": "15.0.5",
|
3827 |
+
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.5.tgz",
|
3828 |
+
"integrity": "sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w==",
|
3829 |
+
"dev": true,
|
3830 |
+
"requires": {
|
3831 |
+
"@types/yargs-parser": "*"
|
3832 |
+
}
|
3833 |
+
},
|
3834 |
+
"@types/yargs-parser": {
|
3835 |
+
"version": "15.0.0",
|
3836 |
+
"resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz",
|
3837 |
+
"integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==",
|
3838 |
+
"dev": true
|
3839 |
+
},
|
3840 |
+
"@types/yauzl": {
|
3841 |
+
"version": "2.9.1",
|
3842 |
+
"resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.9.1.tgz",
|
3843 |
+
"integrity": "sha512-A1b8SU4D10uoPjwb0lnHmmu8wZhR9d+9o2PKBQT2jU5YPTKsxac6M2qGAdY7VcL+dHHhARVUDmeg0rOrcd9EjA==",
|
3844 |
+
"dev": true,
|
3845 |
+
"optional": true,
|
3846 |
+
"requires": {
|
3847 |
+
"@types/node": "*"
|
3848 |
+
}
|
3849 |
+
},
|
3850 |
+
"@typescript-eslint/experimental-utils": {
|
3851 |
+
"version": "1.13.0",
|
3852 |
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-1.13.0.tgz",
|
3853 |
+
"integrity": "sha512-zmpS6SyqG4ZF64ffaJ6uah6tWWWgZ8m+c54XXgwFtUv0jNz8aJAVx8chMCvnk7yl6xwn8d+d96+tWp7fXzTuDg==",
|
3854 |
+
"dev": true,
|
3855 |
+
"requires": {
|
3856 |
+
"@types/json-schema": "^7.0.3",
|
3857 |
+
"@typescript-eslint/typescript-estree": "1.13.0",
|
3858 |
+
"eslint-scope": "^4.0.0"
|
3859 |
+
}
|
3860 |
+
},
|
3861 |
+
"@typescript-eslint/typescript-estree": {
|
3862 |
+
"version": "1.13.0",
|
3863 |
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-1.13.0.tgz",
|
3864 |
+
"integrity": "sha512-b5rCmd2e6DCC6tCTN9GSUAuxdYwCM/k/2wdjHGrIRGPSJotWMCe/dGpi66u42bhuh8q3QBzqM4TMA1GUUCJvdw==",
|
3865 |
+
"dev": true,
|
3866 |
+
"requires": {
|
3867 |
+
"lodash.unescape": "4.0.1",
|
3868 |
+
"semver": "5.5.0"
|
3869 |
+
},
|
3870 |
+
"dependencies": {
|
3871 |
+
"semver": {
|
3872 |
+
"version": "5.5.0",
|
3873 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz",
|
3874 |
+
"integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==",
|
3875 |
+
"dev": true
|
3876 |
+
}
|
3877 |
+
}
|
3878 |
+
},
|
3879 |
+
"@webassemblyjs/ast": {
|
3880 |
+
"version": "1.9.0",
|
3881 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz",
|
3882 |
+
"integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==",
|
3883 |
+
"dev": true,
|
3884 |
+
"requires": {
|
3885 |
+
"@webassemblyjs/helper-module-context": "1.9.0",
|
3886 |
+
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
|
3887 |
+
"@webassemblyjs/wast-parser": "1.9.0"
|
3888 |
+
}
|
3889 |
+
},
|
3890 |
+
"@webassemblyjs/floating-point-hex-parser": {
|
3891 |
+
"version": "1.9.0",
|
3892 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz",
|
3893 |
+
"integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==",
|
3894 |
+
"dev": true
|
3895 |
+
},
|
3896 |
+
"@webassemblyjs/helper-api-error": {
|
3897 |
+
"version": "1.9.0",
|
3898 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz",
|
3899 |
+
"integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==",
|
3900 |
+
"dev": true
|
3901 |
+
},
|
3902 |
+
"@webassemblyjs/helper-buffer": {
|
3903 |
+
"version": "1.9.0",
|
3904 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz",
|
3905 |
+
"integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==",
|
3906 |
+
"dev": true
|
3907 |
+
},
|
3908 |
+
"@webassemblyjs/helper-code-frame": {
|
3909 |
+
"version": "1.9.0",
|
3910 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz",
|
3911 |
+
"integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==",
|
3912 |
+
"dev": true,
|
3913 |
+
"requires": {
|
3914 |
+
"@webassemblyjs/wast-printer": "1.9.0"
|
3915 |
+
}
|
3916 |
+
},
|
3917 |
+
"@webassemblyjs/helper-fsm": {
|
3918 |
+
"version": "1.9.0",
|
3919 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz",
|
3920 |
+
"integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==",
|
3921 |
+
"dev": true
|
3922 |
+
},
|
3923 |
+
"@webassemblyjs/helper-module-context": {
|
3924 |
+
"version": "1.9.0",
|
3925 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz",
|
3926 |
+
"integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==",
|
3927 |
+
"dev": true,
|
3928 |
+
"requires": {
|
3929 |
+
"@webassemblyjs/ast": "1.9.0"
|
3930 |
+
}
|
3931 |
+
},
|
3932 |
+
"@webassemblyjs/helper-wasm-bytecode": {
|
3933 |
+
"version": "1.9.0",
|
3934 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz",
|
3935 |
+
"integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==",
|
3936 |
+
"dev": true
|
3937 |
+
},
|
3938 |
+
"@webassemblyjs/helper-wasm-section": {
|
3939 |
+
"version": "1.9.0",
|
3940 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz",
|
3941 |
+
"integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==",
|
3942 |
+
"dev": true,
|
3943 |
+
"requires": {
|
3944 |
+
"@webassemblyjs/ast": "1.9.0",
|
3945 |
+
"@webassemblyjs/helper-buffer": "1.9.0",
|
3946 |
+
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
|
3947 |
+
"@webassemblyjs/wasm-gen": "1.9.0"
|
3948 |
+
}
|
3949 |
+
},
|
3950 |
+
"@webassemblyjs/ieee754": {
|
3951 |
+
"version": "1.9.0",
|
3952 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz",
|
3953 |
+
"integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==",
|
3954 |
+
"dev": true,
|
3955 |
+
"requires": {
|
3956 |
+
"@xtuc/ieee754": "^1.2.0"
|
3957 |
+
}
|
3958 |
+
},
|
3959 |
+
"@webassemblyjs/leb128": {
|
3960 |
+
"version": "1.9.0",
|
3961 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz",
|
3962 |
+
"integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==",
|
3963 |
+
"dev": true,
|
3964 |
+
"requires": {
|
3965 |
+
"@xtuc/long": "4.2.2"
|
3966 |
+
}
|
3967 |
+
},
|
3968 |
+
"@webassemblyjs/utf8": {
|
3969 |
+
"version": "1.9.0",
|
3970 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz",
|
3971 |
+
"integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==",
|
3972 |
+
"dev": true
|
3973 |
+
},
|
3974 |
+
"@webassemblyjs/wasm-edit": {
|
3975 |
+
"version": "1.9.0",
|
3976 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz",
|
3977 |
+
"integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==",
|
3978 |
+
"dev": true,
|
3979 |
+
"requires": {
|
3980 |
+
"@webassemblyjs/ast": "1.9.0",
|
3981 |
+
"@webassemblyjs/helper-buffer": "1.9.0",
|
3982 |
+
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
|
3983 |
+
"@webassemblyjs/helper-wasm-section": "1.9.0",
|
3984 |
+
"@webassemblyjs/wasm-gen": "1.9.0",
|
3985 |
+
"@webassemblyjs/wasm-opt": "1.9.0",
|
3986 |
+
"@webassemblyjs/wasm-parser": "1.9.0",
|
3987 |
+
"@webassemblyjs/wast-printer": "1.9.0"
|
3988 |
+
}
|
3989 |
+
},
|
3990 |
+
"@webassemblyjs/wasm-gen": {
|
3991 |
+
"version": "1.9.0",
|
3992 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz",
|
3993 |
+
"integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==",
|
3994 |
+
"dev": true,
|
3995 |
+
"requires": {
|
3996 |
+
"@webassemblyjs/ast": "1.9.0",
|
3997 |
+
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
|
3998 |
+
"@webassemblyjs/ieee754": "1.9.0",
|
3999 |
+
"@webassemblyjs/leb128": "1.9.0",
|
4000 |
+
"@webassemblyjs/utf8": "1.9.0"
|
4001 |
+
}
|
4002 |
+
},
|
4003 |
+
"@webassemblyjs/wasm-opt": {
|
4004 |
+
"version": "1.9.0",
|
4005 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz",
|
4006 |
+
"integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==",
|
4007 |
+
"dev": true,
|
4008 |
+
"requires": {
|
4009 |
+
"@webassemblyjs/ast": "1.9.0",
|
4010 |
+
"@webassemblyjs/helper-buffer": "1.9.0",
|
4011 |
+
"@webassemblyjs/wasm-gen": "1.9.0",
|
4012 |
+
"@webassemblyjs/wasm-parser": "1.9.0"
|
4013 |
+
}
|
4014 |
+
},
|
4015 |
+
"@webassemblyjs/wasm-parser": {
|
4016 |
+
"version": "1.9.0",
|
4017 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz",
|
4018 |
+
"integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==",
|
4019 |
+
"dev": true,
|
4020 |
+
"requires": {
|
4021 |
+
"@webassemblyjs/ast": "1.9.0",
|
4022 |
+
"@webassemblyjs/helper-api-error": "1.9.0",
|
4023 |
+
"@webassemblyjs/helper-wasm-bytecode": "1.9.0",
|
4024 |
+
"@webassemblyjs/ieee754": "1.9.0",
|
4025 |
+
"@webassemblyjs/leb128": "1.9.0",
|
4026 |
+
"@webassemblyjs/utf8": "1.9.0"
|
4027 |
+
}
|
4028 |
+
},
|
4029 |
+
"@webassemblyjs/wast-parser": {
|
4030 |
+
"version": "1.9.0",
|
4031 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz",
|
4032 |
+
"integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==",
|
4033 |
+
"dev": true,
|
4034 |
+
"requires": {
|
4035 |
+
"@webassemblyjs/ast": "1.9.0",
|
4036 |
+
"@webassemblyjs/floating-point-hex-parser": "1.9.0",
|
4037 |
+
"@webassemblyjs/helper-api-error": "1.9.0",
|
4038 |
+
"@webassemblyjs/helper-code-frame": "1.9.0",
|
4039 |
+
"@webassemblyjs/helper-fsm": "1.9.0",
|
4040 |
+
"@xtuc/long": "4.2.2"
|
4041 |
+
}
|
4042 |
+
},
|
4043 |
+
"@webassemblyjs/wast-printer": {
|
4044 |
+
"version": "1.9.0",
|
4045 |
+
"resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz",
|
4046 |
+
"integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==",
|
4047 |
+
"dev": true,
|
4048 |
+
"requires": {
|
4049 |
+
"@webassemblyjs/ast": "1.9.0",
|
4050 |
+
"@webassemblyjs/wast-parser": "1.9.0",
|
4051 |
+
"@xtuc/long": "4.2.2"
|
4052 |
+
}
|
4053 |
+
},
|
4054 |
+
"@wordpress/a11y": {
|
4055 |
+
"version": "2.9.0",
|
4056 |
+
"resolved": "https://registry.npmjs.org/@wordpress/a11y/-/a11y-2.9.0.tgz",
|
4057 |
+
"integrity": "sha512-1YBqy+yrAnCnQAayvQ6kx4O3vHq4EAyFh8UdNwbK0ZE4f+2Kzj/fD5QoICaTPl3vMzHb8ISeFyGFTxzqqBZh1g==",
|
4058 |
+
"requires": {
|
4059 |
+
"@babel/runtime": "^7.9.2",
|
4060 |
+
"@wordpress/dom-ready": "^2.9.0"
|
4061 |
+
},
|
4062 |
+
"dependencies": {
|
4063 |
+
"@babel/runtime": {
|
4064 |
+
"version": "7.9.6",
|
4065 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
|
4066 |
+
"integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
|
4067 |
+
"requires": {
|
4068 |
+
"regenerator-runtime": "^0.13.4"
|
4069 |
+
}
|
4070 |
+
},
|
4071 |
+
"regenerator-runtime": {
|
4072 |
+
"version": "0.13.5",
|
4073 |
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
|
4074 |
+
"integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA=="
|
4075 |
+
}
|
4076 |
+
}
|
4077 |
+
},
|
4078 |
+
"@wordpress/api-fetch": {
|
4079 |
+
"version": "3.15.0",
|
4080 |
+
"resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-3.15.0.tgz",
|
4081 |
+
"integrity": "sha512-NgfqYHHT2gDh2LOdgiubV4nHDdbXOXN0PqJfVIVRkUcG45dZrcnrEox+gyv2n4CcbBrjF9q8t2OPUGGoX+rrAQ==",
|
4082 |
+
"requires": {
|
4083 |
+
"@babel/runtime": "^7.9.2",
|
4084 |
+
"@wordpress/deprecated": "^2.8.0",
|
4085 |
+
"@wordpress/element": "^2.14.0",
|
4086 |
+
"@wordpress/i18n": "^3.12.0",
|
4087 |
+
"@wordpress/url": "^2.15.0"
|
4088 |
+
},
|
4089 |
+
"dependencies": {
|
4090 |
+
"@babel/runtime": {
|
4091 |
+
"version": "7.9.6",
|
4092 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
|
4093 |
+
"integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
|
4094 |
+
"requires": {
|
4095 |
+
"regenerator-runtime": "^0.13.4"
|
4096 |
+
}
|
4097 |
+
},
|
4098 |
+
"@tannin/compile": {
|
4099 |
+
"version": "1.1.0",
|
4100 |
+
"resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.1.0.tgz",
|
4101 |
+
"integrity": "sha512-n8m9eNDfoNZoxdvWiTfW/hSPhehzLJ3zW7f8E7oT6mCROoMNWCB4TYtv041+2FMAxweiE0j7i1jubQU4MEC/Gg==",
|
4102 |
+
"requires": {
|
4103 |
+
"@tannin/evaluate": "^1.2.0",
|
4104 |
+
"@tannin/postfix": "^1.1.0"
|
4105 |
+
}
|
4106 |
+
},
|
4107 |
+
"@tannin/evaluate": {
|
4108 |
+
"version": "1.2.0",
|
4109 |
+
"resolved": "https://registry.npmjs.org/@tannin/evaluate/-/evaluate-1.2.0.tgz",
|
4110 |
+
"integrity": "sha512-3ioXvNowbO/wSrxsDG5DKIMxC81P0QrQTYai8zFNY+umuoHWRPbQ/TuuDEOju9E+jQDXmj6yI5GyejNuh8I+eg=="
|
4111 |
+
},
|
4112 |
+
"@tannin/plural-forms": {
|
4113 |
+
"version": "1.1.0",
|
4114 |
+
"resolved": "https://registry.npmjs.org/@tannin/plural-forms/-/plural-forms-1.1.0.tgz",
|
4115 |
+
"integrity": "sha512-xl9R2mDZO/qiHam1AgMnAES6IKIg7OBhcXqy6eDsRCdXuxAFPcjrej9HMjyCLE0DJ/8cHf0i5OQTstuBRhpbHw==",
|
4116 |
+
"requires": {
|
4117 |
+
"@tannin/compile": "^1.1.0"
|
4118 |
+
}
|
4119 |
+
},
|
4120 |
+
"@tannin/postfix": {
|
4121 |
+
"version": "1.1.0",
|
4122 |
+
"resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.1.0.tgz",
|
4123 |
+
"integrity": "sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw=="
|
4124 |
+
},
|
4125 |
+
"@wordpress/deprecated": {
|
4126 |
+
"version": "2.8.0",
|
4127 |
+
"resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-2.8.0.tgz",
|
4128 |
+
"integrity": "sha512-MX8ONW8Mf0w38Zllg3d412JcHuIaxmNoaVw03nCi9S31Dj/V3PHEAF8GDeSP0Sfn5DxSs5K4s9LfpE4C2iLgAw==",
|
4129 |
+
"requires": {
|
4130 |
+
"@babel/runtime": "^7.9.2",
|
4131 |
+
"@wordpress/hooks": "^2.8.0"
|
4132 |
+
}
|
4133 |
+
},
|
4134 |
+
"@wordpress/element": {
|
4135 |
+
"version": "2.14.0",
|
4136 |
+
"resolved": "https://registry.npmjs.org/@wordpress/element/-/element-2.14.0.tgz",
|
4137 |
+
"integrity": "sha512-msSkGecq2Z8lBoj95D0vxj64lbGx7c7Q8VxsNLA3G813HVybeY5gYeWFokWKfok+tszCwjJI4ZgR4DxRsYNTig==",
|
4138 |
+
"requires": {
|
4139 |
+
"@babel/runtime": "^7.9.2",
|
4140 |
+
"@wordpress/escape-html": "^1.8.0",
|
4141 |
+
"lodash": "^4.17.15",
|
4142 |
+
"react": "^16.9.0",
|
4143 |
+
"react-dom": "^16.9.0"
|
4144 |
+
}
|
4145 |
+
},
|
4146 |
+
"@wordpress/escape-html": {
|
4147 |
+
"version": "1.8.0",
|
4148 |
+
"resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-1.8.0.tgz",
|
4149 |
+
"integrity": "sha512-z7z+57nm9Dv3Hau0u3+17dJCbpWnh853VBF6JPID7rKnLPw2AOoRJtNHf4gLeBJTrG6M4cC8EG8Flarsuoxb2w==",
|
4150 |
+
"requires": {
|
4151 |
+
"@babel/runtime": "^7.9.2"
|
4152 |
+
}
|
4153 |
+
},
|
4154 |
+
"@wordpress/hooks": {
|
4155 |
+
"version": "2.8.0",
|
4156 |
+
"resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-2.8.0.tgz",
|
4157 |
+
"integrity": "sha512-5FbiVz6T2Frw45NmPDF9GbAFU8iQy64YSZaM+61tUngB+Uzdv0A4pA8C8WIDPlw16QJXseZ4uLce4U9HlJQ3dw==",
|
4158 |
+
"requires": {
|
4159 |
+
"@babel/runtime": "^7.9.2"
|
4160 |
+
}
|
4161 |
+
},
|
4162 |
+
"@wordpress/i18n": {
|
4163 |
+
"version": "3.12.0",
|
4164 |
+
"resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-3.12.0.tgz",
|
4165 |
+
"integrity": "sha512-QkdHd2Z2yTFItBnnzzjMW4IXJlofWMivct4BkgwRivrG7kLxE7nd2xMG3+hFkkdYGdzE67u8vmin0gmQ+14yPA==",
|
4166 |
+
"requires": {
|
4167 |
+
"@babel/runtime": "^7.9.2",
|
4168 |
+
"gettext-parser": "^1.3.1",
|
4169 |
+
"lodash": "^4.17.15",
|
4170 |
+
"memize": "^1.1.0",
|
4171 |
+
"sprintf-js": "^1.1.1",
|
4172 |
+
"tannin": "^1.2.0"
|
4173 |
+
}
|
4174 |
+
},
|
4175 |
+
"memize": {
|
4176 |
+
"version": "1.1.0",
|
4177 |
+
"resolved": "https://registry.npmjs.org/memize/-/memize-1.1.0.tgz",
|
4178 |
+
"integrity": "sha512-K4FcPETOMTwe7KL2LK0orMhpOmWD2wRGwWWpbZy0fyArwsyIKR8YJVz8+efBAh3BO4zPqlSICu4vsLTRRqtFAg=="
|
4179 |
+
},
|
4180 |
+
"regenerator-runtime": {
|
4181 |
+
"version": "0.13.5",
|
4182 |
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
|
4183 |
+
"integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA=="
|
4184 |
+
},
|
4185 |
+
"tannin": {
|
4186 |
+
"version": "1.2.0",
|
4187 |
+
"resolved": "https://registry.npmjs.org/tannin/-/tannin-1.2.0.tgz",
|
4188 |
+
"integrity": "sha512-U7GgX/RcSeUETbV7gYgoz8PD7Ni4y95pgIP/Z6ayI3CfhSujwKEBlGFTCRN+Aqnuyf4AN2yHL+L8x+TCGjb9uA==",
|
4189 |
+
"requires": {
|
4190 |
+
"@tannin/plural-forms": "^1.1.0"
|
4191 |
+
}
|
4192 |
+
}
|
4193 |
+
}
|
4194 |
+
},
|
4195 |
+
"@wordpress/autop": {
|
4196 |
+
"version": "2.7.0",
|
4197 |
+
"resolved": "https://registry.npmjs.org/@wordpress/autop/-/autop-2.7.0.tgz",
|
4198 |
+
"integrity": "sha512-XLNyxlsdXPQMTHl3NnR1nbsggcf12euBwpp6d6qdVLT3+s2FtU2dg9dMVJg/OHKd3/QgA6W+k7yjcyME2aOAFQ==",
|
4199 |
+
"requires": {
|
4200 |
+
"@babel/runtime": "^7.9.2"
|
4201 |
+
},
|
4202 |
+
"dependencies": {
|
4203 |
+
"@babel/runtime": {
|
4204 |
+
"version": "7.9.6",
|
4205 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
|
4206 |
+
"integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
|
4207 |
+
"requires": {
|
4208 |
+
"regenerator-runtime": "^0.13.4"
|
4209 |
+
}
|
4210 |
+
},
|
4211 |
+
"regenerator-runtime": {
|
4212 |
+
"version": "0.13.5",
|
4213 |
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
|
4214 |
+
"integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA=="
|
4215 |
+
}
|
4216 |
+
}
|
4217 |
+
},
|
4218 |
+
"@wordpress/babel-plugin-import-jsx-pragma": {
|
4219 |
+
"version": "2.5.0",
|
4220 |
+
"resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-import-jsx-pragma/-/babel-plugin-import-jsx-pragma-2.5.0.tgz",
|
4221 |
+
"integrity": "sha512-fvb9+BBi5ns95pTKj2R/YoGbIbA2oBb2YNxRr0pSmeuURFqzeaQIzE+lFnkLCkWVp3DCkXQ1x92+5aWqOqfqzg==",
|
4222 |
+
"dev": true
|
4223 |
+
},
|
4224 |
+
"@wordpress/babel-plugin-makepot": {
|
4225 |
+
"version": "3.3.0",
|
4226 |
+
"resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-makepot/-/babel-plugin-makepot-3.3.0.tgz",
|
4227 |
+
"integrity": "sha512-SjZ676Qc4KgcrtRCK4O1M2RctRrGsiV3LMMkBAw1z1uWhUTqQczMiuLk904dop9gXFlq9Mo06N2SQL7j7dUBcg==",
|
4228 |
+
"dev": true,
|
4229 |
+
"requires": {
|
4230 |
+
"@babel/runtime": "^7.4.4",
|
4231 |
+
"gettext-parser": "^1.3.1",
|
4232 |
+
"lodash": "^4.17.15"
|
4233 |
+
}
|
4234 |
+
},
|
4235 |
+
"@wordpress/babel-preset-default": {
|
4236 |
+
"version": "4.13.0",
|
4237 |
+
"resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-4.13.0.tgz",
|
4238 |
+
"integrity": "sha512-b1l274UxqSoXN/opwhO78qAX97yaH89DoZ8ZmOlok/V5KMm3/66pdHKtC8623AvYL5wMJI+jqUlSH7OdqPwVyA==",
|
4239 |
+
"dev": true,
|
4240 |
+
"requires": {
|
4241 |
+
"@babel/core": "^7.9.0",
|
4242 |
+
"@babel/plugin-transform-react-jsx": "^7.9.4",
|
4243 |
+
"@babel/plugin-transform-runtime": "^7.9.0",
|
4244 |
+
"@babel/preset-env": "^7.9.0",
|
4245 |
+
"@babel/runtime": "^7.9.2",
|
4246 |
+
"@wordpress/babel-plugin-import-jsx-pragma": "^2.5.0",
|
4247 |
+
"@wordpress/browserslist-config": "^2.6.0",
|
4248 |
+
"@wordpress/element": "^2.14.0",
|
4249 |
+
"@wordpress/warning": "^1.1.0",
|
4250 |
+
"core-js": "^3.6.4"
|
4251 |
+
},
|
4252 |
+
"dependencies": {
|
4253 |
+
"@babel/code-frame": {
|
4254 |
+
"version": "7.8.3",
|
4255 |
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz",
|
4256 |
+
"integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==",
|
4257 |
+
"dev": true,
|
4258 |
+
"requires": {
|
4259 |
+
"@babel/highlight": "^7.8.3"
|
4260 |
+
}
|
4261 |
+
},
|
4262 |
+
"@babel/core": {
|
4263 |
+
"version": "7.9.6",
|
4264 |
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.6.tgz",
|
4265 |
+
"integrity": "sha512-nD3deLvbsApbHAHttzIssYqgb883yU/d9roe4RZymBCDaZryMJDbptVpEpeQuRh4BJ+SYI8le9YGxKvFEvl1Wg==",
|
4266 |
+
"dev": true,
|
4267 |
+
"requires": {
|
4268 |
+
"@babel/code-frame": "^7.8.3",
|
4269 |
+
"@babel/generator": "^7.9.6",
|
4270 |
+
"@babel/helper-module-transforms": "^7.9.0",
|
4271 |
+
"@babel/helpers": "^7.9.6",
|
4272 |
+
"@babel/parser": "^7.9.6",
|
4273 |
+
"@babel/template": "^7.8.6",
|
4274 |
+
"@babel/traverse": "^7.9.6",
|
4275 |
+
"@babel/types": "^7.9.6",
|
4276 |
+
"convert-source-map": "^1.7.0",
|
4277 |
+
"debug": "^4.1.0",
|
4278 |
+
"gensync": "^1.0.0-beta.1",
|
4279 |
+
"json5": "^2.1.2",
|
4280 |
+
"lodash": "^4.17.13",
|
4281 |
+
"resolve": "^1.3.2",
|
4282 |
+
"semver": "^5.4.1",
|
4283 |
+
"source-map": "^0.5.0"
|
4284 |
+
}
|
4285 |
+
},
|
4286 |
+
"@babel/generator": {
|
4287 |
+
"version": "7.9.6",
|
4288 |
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.9.6.tgz",
|
4289 |
+
"integrity": "sha512-+htwWKJbH2bL72HRluF8zumBxzuX0ZZUFl3JLNyoUjM/Ho8wnVpPXM6aUz8cfKDqQ/h7zHqKt4xzJteUosckqQ==",
|
4290 |
+
"dev": true,
|
4291 |
+
"requires": {
|
4292 |
+
"@babel/types": "^7.9.6",
|
4293 |
+
"jsesc": "^2.5.1",
|
4294 |
+
"lodash": "^4.17.13",
|
4295 |
+
"source-map": "^0.5.0"
|
4296 |
+
}
|
4297 |
+
},
|
4298 |
+
"@babel/helper-annotate-as-pure": {
|
4299 |
+
"version": "7.8.3",
|
4300 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz",
|
4301 |
+
"integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==",
|
4302 |
+
"dev": true,
|
4303 |
+
"requires": {
|
4304 |
+
"@babel/types": "^7.8.3"
|
4305 |
+
}
|
4306 |
+
},
|
4307 |
+
"@babel/helper-builder-binary-assignment-operator-visitor": {
|
4308 |
+
"version": "7.8.3",
|
4309 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz",
|
4310 |
+
"integrity": "sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==",
|
4311 |
+
"dev": true,
|
4312 |
+
"requires": {
|
4313 |
+
"@babel/helper-explode-assignable-expression": "^7.8.3",
|
4314 |
+
"@babel/types": "^7.8.3"
|
4315 |
+
}
|
4316 |
+
},
|
4317 |
+
"@babel/helper-builder-react-jsx": {
|
4318 |
+
"version": "7.9.0",
|
4319 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz",
|
4320 |
+
"integrity": "sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw==",
|
4321 |
+
"dev": true,
|
4322 |
+
"requires": {
|
4323 |
+
"@babel/helper-annotate-as-pure": "^7.8.3",
|
4324 |
+
"@babel/types": "^7.9.0"
|
4325 |
+
}
|
4326 |
+
},
|
4327 |
+
"@babel/helper-create-regexp-features-plugin": {
|
4328 |
+
"version": "7.8.8",
|
4329 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz",
|
4330 |
+
"integrity": "sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg==",
|
4331 |
+
"dev": true,
|
4332 |
+
"requires": {
|
4333 |
+
"@babel/helper-annotate-as-pure": "^7.8.3",
|
4334 |
+
"@babel/helper-regex": "^7.8.3",
|
4335 |
+
"regexpu-core": "^4.7.0"
|
4336 |
+
}
|
4337 |
+
},
|
4338 |
+
"@babel/helper-define-map": {
|
4339 |
+
"version": "7.8.3",
|
4340 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz",
|
4341 |
+
"integrity": "sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==",
|
4342 |
+
"dev": true,
|
4343 |
+
"requires": {
|
4344 |
+
"@babel/helper-function-name": "^7.8.3",
|
4345 |
+
"@babel/types": "^7.8.3",
|
4346 |
+
"lodash": "^4.17.13"
|
4347 |
+
}
|
4348 |
+
},
|
4349 |
+
"@babel/helper-explode-assignable-expression": {
|
4350 |
+
"version": "7.8.3",
|
4351 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz",
|
4352 |
+
"integrity": "sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==",
|
4353 |
+
"dev": true,
|
4354 |
+
"requires": {
|
4355 |
+
"@babel/traverse": "^7.8.3",
|
4356 |
+
"@babel/types": "^7.8.3"
|
4357 |
+
}
|
4358 |
+
},
|
4359 |
+
"@babel/helper-function-name": {
|
4360 |
+
"version": "7.9.5",
|
4361 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.9.5.tgz",
|
4362 |
+
"integrity": "sha512-JVcQZeXM59Cd1qanDUxv9fgJpt3NeKUaqBqUEvfmQ+BCOKq2xUgaWZW2hr0dkbyJgezYuplEoh5knmrnS68efw==",
|
4363 |
+
"dev": true,
|
4364 |
+
"requires": {
|
4365 |
+
"@babel/helper-get-function-arity": "^7.8.3",
|
4366 |
+
"@babel/template": "^7.8.3",
|
4367 |
+
"@babel/types": "^7.9.5"
|
4368 |
+
}
|
4369 |
+
},
|
4370 |
+
"@babel/helper-get-function-arity": {
|
4371 |
+
"version": "7.8.3",
|
4372 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz",
|
4373 |
+
"integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==",
|
4374 |
+
"dev": true,
|
4375 |
+
"requires": {
|
4376 |
+
"@babel/types": "^7.8.3"
|
4377 |
+
}
|
4378 |
+
},
|
4379 |
+
"@babel/helper-hoist-variables": {
|
4380 |
+
"version": "7.8.3",
|
4381 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz",
|
4382 |
+
"integrity": "sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==",
|
4383 |
+
"dev": true,
|
4384 |
+
"requires": {
|
4385 |
+
"@babel/types": "^7.8.3"
|
4386 |
+
}
|
4387 |
+
},
|
4388 |
+
"@babel/helper-member-expression-to-functions": {
|
4389 |
+
"version": "7.8.3",
|
4390 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz",
|
4391 |
+
"integrity": "sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==",
|
4392 |
+
"dev": true,
|
4393 |
+
"requires": {
|
4394 |
+
"@babel/types": "^7.8.3"
|
4395 |
+
}
|
4396 |
+
},
|
4397 |
+
"@babel/helper-module-imports": {
|
4398 |
+
"version": "7.8.3",
|
4399 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz",
|
4400 |
+
"integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==",
|
4401 |
+
"dev": true,
|
4402 |
+
"requires": {
|
4403 |
+
"@babel/types": "^7.8.3"
|
4404 |
+
}
|
4405 |
+
},
|
4406 |
+
"@babel/helper-module-transforms": {
|
4407 |
+
"version": "7.9.0",
|
4408 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz",
|
4409 |
+
"integrity": "sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==",
|
4410 |
+
"dev": true,
|
4411 |
+
"requires": {
|
4412 |
+
"@babel/helper-module-imports": "^7.8.3",
|
4413 |
+
"@babel/helper-replace-supers": "^7.8.6",
|
4414 |
+
"@babel/helper-simple-access": "^7.8.3",
|
4415 |
+
"@babel/helper-split-export-declaration": "^7.8.3",
|
4416 |
+
"@babel/template": "^7.8.6",
|
4417 |
+
"@babel/types": "^7.9.0",
|
4418 |
+
"lodash": "^4.17.13"
|
4419 |
+
}
|
4420 |
+
},
|
4421 |
+
"@babel/helper-optimise-call-expression": {
|
4422 |
+
"version": "7.8.3",
|
4423 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz",
|
4424 |
+
"integrity": "sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==",
|
4425 |
+
"dev": true,
|
4426 |
+
"requires": {
|
4427 |
+
"@babel/types": "^7.8.3"
|
4428 |
+
}
|
4429 |
+
},
|
4430 |
+
"@babel/helper-plugin-utils": {
|
4431 |
+
"version": "7.8.3",
|
4432 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz",
|
4433 |
+
"integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==",
|
4434 |
+
"dev": true
|
4435 |
+
},
|
4436 |
+
"@babel/helper-regex": {
|
4437 |
+
"version": "7.8.3",
|
4438 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.8.3.tgz",
|
4439 |
+
"integrity": "sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==",
|
4440 |
+
"dev": true,
|
4441 |
+
"requires": {
|
4442 |
+
"lodash": "^4.17.13"
|
4443 |
+
}
|
4444 |
+
},
|
4445 |
+
"@babel/helper-remap-async-to-generator": {
|
4446 |
+
"version": "7.8.3",
|
4447 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz",
|
4448 |
+
"integrity": "sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==",
|
4449 |
+
"dev": true,
|
4450 |
+
"requires": {
|
4451 |
+
"@babel/helper-annotate-as-pure": "^7.8.3",
|
4452 |
+
"@babel/helper-wrap-function": "^7.8.3",
|
4453 |
+
"@babel/template": "^7.8.3",
|
4454 |
+
"@babel/traverse": "^7.8.3",
|
4455 |
+
"@babel/types": "^7.8.3"
|
4456 |
+
}
|
4457 |
+
},
|
4458 |
+
"@babel/helper-replace-supers": {
|
4459 |
+
"version": "7.9.6",
|
4460 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.9.6.tgz",
|
4461 |
+
"integrity": "sha512-qX+chbxkbArLyCImk3bWV+jB5gTNU/rsze+JlcF6Nf8tVTigPJSI1o1oBow/9Resa1yehUO9lIipsmu9oG4RzA==",
|
4462 |
+
"dev": true,
|
4463 |
+
"requires": {
|
4464 |
+
"@babel/helper-member-expression-to-functions": "^7.8.3",
|
4465 |
+
"@babel/helper-optimise-call-expression": "^7.8.3",
|
4466 |
+
"@babel/traverse": "^7.9.6",
|
4467 |
+
"@babel/types": "^7.9.6"
|
4468 |
+
}
|
4469 |
+
},
|
4470 |
+
"@babel/helper-simple-access": {
|
4471 |
+
"version": "7.8.3",
|
4472 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz",
|
4473 |
+
"integrity": "sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==",
|
4474 |
+
"dev": true,
|
4475 |
+
"requires": {
|
4476 |
+
"@babel/template": "^7.8.3",
|
4477 |
+
"@babel/types": "^7.8.3"
|
4478 |
+
}
|
4479 |
+
},
|
4480 |
+
"@babel/helper-split-export-declaration": {
|
4481 |
+
"version": "7.8.3",
|
4482 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz",
|
4483 |
+
"integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==",
|
4484 |
+
"dev": true,
|
4485 |
+
"requires": {
|
4486 |
+
"@babel/types": "^7.8.3"
|
4487 |
+
}
|
4488 |
+
},
|
4489 |
+
"@babel/helper-wrap-function": {
|
4490 |
+
"version": "7.8.3",
|
4491 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz",
|
4492 |
+
"integrity": "sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==",
|
4493 |
+
"dev": true,
|
4494 |
+
"requires": {
|
4495 |
+
"@babel/helper-function-name": "^7.8.3",
|
4496 |
+
"@babel/template": "^7.8.3",
|
4497 |
+
"@babel/traverse": "^7.8.3",
|
4498 |
+
"@babel/types": "^7.8.3"
|
4499 |
+
}
|
4500 |
+
},
|
4501 |
+
"@babel/helpers": {
|
4502 |
+
"version": "7.9.6",
|
4503 |
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.9.6.tgz",
|
4504 |
+
"integrity": "sha512-tI4bUbldloLcHWoRUMAj4g1bF313M/o6fBKhIsb3QnGVPwRm9JsNf/gqMkQ7zjqReABiffPV6RWj7hEglID5Iw==",
|
4505 |
+
"dev": true,
|
4506 |
+
"requires": {
|
4507 |
+
"@babel/template": "^7.8.3",
|
4508 |
+
"@babel/traverse": "^7.9.6",
|
4509 |
+
"@babel/types": "^7.9.6"
|
4510 |
+
}
|
4511 |
+
},
|
4512 |
+
"@babel/highlight": {
|
4513 |
+
"version": "7.9.0",
|
4514 |
+
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.9.0.tgz",
|
4515 |
+
"integrity": "sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==",
|
4516 |
+
"dev": true,
|
4517 |
+
"requires": {
|
4518 |
+
"@babel/helper-validator-identifier": "^7.9.0",
|
4519 |
+
"chalk": "^2.0.0",
|
4520 |
+
"js-tokens": "^4.0.0"
|
4521 |
+
}
|
4522 |
+
},
|
4523 |
+
"@babel/parser": {
|
4524 |
+
"version": "7.9.6",
|
4525 |
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.9.6.tgz",
|
4526 |
+
"integrity": "sha512-AoeIEJn8vt+d/6+PXDRPaksYhnlbMIiejioBZvvMQsOjW/JYK6k/0dKnvvP3EhK5GfMBWDPtrxRtegWdAcdq9Q==",
|
4527 |
+
"dev": true
|
4528 |
+
},
|
4529 |
+
"@babel/plugin-proposal-async-generator-functions": {
|
4530 |
+
"version": "7.8.3",
|
4531 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz",
|
4532 |
+
"integrity": "sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==",
|
4533 |
+
"dev": true,
|
4534 |
+
"requires": {
|
4535 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4536 |
+
"@babel/helper-remap-async-to-generator": "^7.8.3",
|
4537 |
+
"@babel/plugin-syntax-async-generators": "^7.8.0"
|
4538 |
+
}
|
4539 |
+
},
|
4540 |
+
"@babel/plugin-proposal-dynamic-import": {
|
4541 |
+
"version": "7.8.3",
|
4542 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz",
|
4543 |
+
"integrity": "sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==",
|
4544 |
+
"dev": true,
|
4545 |
+
"requires": {
|
4546 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4547 |
+
"@babel/plugin-syntax-dynamic-import": "^7.8.0"
|
4548 |
+
}
|
4549 |
+
},
|
4550 |
+
"@babel/plugin-proposal-json-strings": {
|
4551 |
+
"version": "7.8.3",
|
4552 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz",
|
4553 |
+
"integrity": "sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==",
|
4554 |
+
"dev": true,
|
4555 |
+
"requires": {
|
4556 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4557 |
+
"@babel/plugin-syntax-json-strings": "^7.8.0"
|
4558 |
+
}
|
4559 |
+
},
|
4560 |
+
"@babel/plugin-proposal-object-rest-spread": {
|
4561 |
+
"version": "7.9.6",
|
4562 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.6.tgz",
|
4563 |
+
"integrity": "sha512-Ga6/fhGqA9Hj+y6whNpPv8psyaK5xzrQwSPsGPloVkvmH+PqW1ixdnfJ9uIO06OjQNYol3PMnfmJ8vfZtkzF+A==",
|
4564 |
+
"dev": true,
|
4565 |
+
"requires": {
|
4566 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4567 |
+
"@babel/plugin-syntax-object-rest-spread": "^7.8.0",
|
4568 |
+
"@babel/plugin-transform-parameters": "^7.9.5"
|
4569 |
+
}
|
4570 |
+
},
|
4571 |
+
"@babel/plugin-proposal-optional-catch-binding": {
|
4572 |
+
"version": "7.8.3",
|
4573 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz",
|
4574 |
+
"integrity": "sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==",
|
4575 |
+
"dev": true,
|
4576 |
+
"requires": {
|
4577 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4578 |
+
"@babel/plugin-syntax-optional-catch-binding": "^7.8.0"
|
4579 |
+
}
|
4580 |
+
},
|
4581 |
+
"@babel/plugin-proposal-unicode-property-regex": {
|
4582 |
+
"version": "7.8.8",
|
4583 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz",
|
4584 |
+
"integrity": "sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A==",
|
4585 |
+
"dev": true,
|
4586 |
+
"requires": {
|
4587 |
+
"@babel/helper-create-regexp-features-plugin": "^7.8.8",
|
4588 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4589 |
+
}
|
4590 |
+
},
|
4591 |
+
"@babel/plugin-syntax-async-generators": {
|
4592 |
+
"version": "7.8.4",
|
4593 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
|
4594 |
+
"integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
|
4595 |
+
"dev": true,
|
4596 |
+
"requires": {
|
4597 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
4598 |
+
}
|
4599 |
+
},
|
4600 |
+
"@babel/plugin-syntax-dynamic-import": {
|
4601 |
+
"version": "7.8.3",
|
4602 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz",
|
4603 |
+
"integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==",
|
4604 |
+
"dev": true,
|
4605 |
+
"requires": {
|
4606 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
4607 |
+
}
|
4608 |
+
},
|
4609 |
+
"@babel/plugin-syntax-json-strings": {
|
4610 |
+
"version": "7.8.3",
|
4611 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
|
4612 |
+
"integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
|
4613 |
+
"dev": true,
|
4614 |
+
"requires": {
|
4615 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
4616 |
+
}
|
4617 |
+
},
|
4618 |
+
"@babel/plugin-syntax-jsx": {
|
4619 |
+
"version": "7.8.3",
|
4620 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz",
|
4621 |
+
"integrity": "sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A==",
|
4622 |
+
"dev": true,
|
4623 |
+
"requires": {
|
4624 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4625 |
+
}
|
4626 |
+
},
|
4627 |
+
"@babel/plugin-syntax-object-rest-spread": {
|
4628 |
+
"version": "7.8.3",
|
4629 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
|
4630 |
+
"integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
|
4631 |
+
"dev": true,
|
4632 |
+
"requires": {
|
4633 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
4634 |
+
}
|
4635 |
+
},
|
4636 |
+
"@babel/plugin-syntax-optional-catch-binding": {
|
4637 |
+
"version": "7.8.3",
|
4638 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
|
4639 |
+
"integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
|
4640 |
+
"dev": true,
|
4641 |
+
"requires": {
|
4642 |
+
"@babel/helper-plugin-utils": "^7.8.0"
|
4643 |
+
}
|
4644 |
+
},
|
4645 |
+
"@babel/plugin-syntax-top-level-await": {
|
4646 |
+
"version": "7.8.3",
|
4647 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz",
|
4648 |
+
"integrity": "sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==",
|
4649 |
+
"dev": true,
|
4650 |
+
"requires": {
|
4651 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4652 |
+
}
|
4653 |
+
},
|
4654 |
+
"@babel/plugin-transform-arrow-functions": {
|
4655 |
+
"version": "7.8.3",
|
4656 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz",
|
4657 |
+
"integrity": "sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==",
|
4658 |
+
"dev": true,
|
4659 |
+
"requires": {
|
4660 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4661 |
+
}
|
4662 |
+
},
|
4663 |
+
"@babel/plugin-transform-async-to-generator": {
|
4664 |
+
"version": "7.8.3",
|
4665 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz",
|
4666 |
+
"integrity": "sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==",
|
4667 |
+
"dev": true,
|
4668 |
+
"requires": {
|
4669 |
+
"@babel/helper-module-imports": "^7.8.3",
|
4670 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4671 |
+
"@babel/helper-remap-async-to-generator": "^7.8.3"
|
4672 |
+
}
|
4673 |
+
},
|
4674 |
+
"@babel/plugin-transform-block-scoped-functions": {
|
4675 |
+
"version": "7.8.3",
|
4676 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz",
|
4677 |
+
"integrity": "sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==",
|
4678 |
+
"dev": true,
|
4679 |
+
"requires": {
|
4680 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4681 |
+
}
|
4682 |
+
},
|
4683 |
+
"@babel/plugin-transform-block-scoping": {
|
4684 |
+
"version": "7.8.3",
|
4685 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz",
|
4686 |
+
"integrity": "sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==",
|
4687 |
+
"dev": true,
|
4688 |
+
"requires": {
|
4689 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4690 |
+
"lodash": "^4.17.13"
|
4691 |
+
}
|
4692 |
+
},
|
4693 |
+
"@babel/plugin-transform-classes": {
|
4694 |
+
"version": "7.9.5",
|
4695 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.5.tgz",
|
4696 |
+
"integrity": "sha512-x2kZoIuLC//O5iA7PEvecB105o7TLzZo8ofBVhP79N+DO3jaX+KYfww9TQcfBEZD0nikNyYcGB1IKtRq36rdmg==",
|
4697 |
+
"dev": true,
|
4698 |
+
"requires": {
|
4699 |
+
"@babel/helper-annotate-as-pure": "^7.8.3",
|
4700 |
+
"@babel/helper-define-map": "^7.8.3",
|
4701 |
+
"@babel/helper-function-name": "^7.9.5",
|
4702 |
+
"@babel/helper-optimise-call-expression": "^7.8.3",
|
4703 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4704 |
+
"@babel/helper-replace-supers": "^7.8.6",
|
4705 |
+
"@babel/helper-split-export-declaration": "^7.8.3",
|
4706 |
+
"globals": "^11.1.0"
|
4707 |
+
}
|
4708 |
+
},
|
4709 |
+
"@babel/plugin-transform-computed-properties": {
|
4710 |
+
"version": "7.8.3",
|
4711 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz",
|
4712 |
+
"integrity": "sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==",
|
4713 |
+
"dev": true,
|
4714 |
+
"requires": {
|
4715 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4716 |
+
}
|
4717 |
+
},
|
4718 |
+
"@babel/plugin-transform-destructuring": {
|
4719 |
+
"version": "7.9.5",
|
4720 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.9.5.tgz",
|
4721 |
+
"integrity": "sha512-j3OEsGel8nHL/iusv/mRd5fYZ3DrOxWC82x0ogmdN/vHfAP4MYw+AFKYanzWlktNwikKvlzUV//afBW5FTp17Q==",
|
4722 |
+
"dev": true,
|
4723 |
+
"requires": {
|
4724 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4725 |
+
}
|
4726 |
+
},
|
4727 |
+
"@babel/plugin-transform-dotall-regex": {
|
4728 |
+
"version": "7.8.3",
|
4729 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz",
|
4730 |
+
"integrity": "sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==",
|
4731 |
+
"dev": true,
|
4732 |
+
"requires": {
|
4733 |
+
"@babel/helper-create-regexp-features-plugin": "^7.8.3",
|
4734 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4735 |
+
}
|
4736 |
+
},
|
4737 |
+
"@babel/plugin-transform-duplicate-keys": {
|
4738 |
+
"version": "7.8.3",
|
4739 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz",
|
4740 |
+
"integrity": "sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==",
|
4741 |
+
"dev": true,
|
4742 |
+
"requires": {
|
4743 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4744 |
+
}
|
4745 |
+
},
|
4746 |
+
"@babel/plugin-transform-exponentiation-operator": {
|
4747 |
+
"version": "7.8.3",
|
4748 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz",
|
4749 |
+
"integrity": "sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==",
|
4750 |
+
"dev": true,
|
4751 |
+
"requires": {
|
4752 |
+
"@babel/helper-builder-binary-assignment-operator-visitor": "^7.8.3",
|
4753 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4754 |
+
}
|
4755 |
+
},
|
4756 |
+
"@babel/plugin-transform-for-of": {
|
4757 |
+
"version": "7.9.0",
|
4758 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz",
|
4759 |
+
"integrity": "sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ==",
|
4760 |
+
"dev": true,
|
4761 |
+
"requires": {
|
4762 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4763 |
+
}
|
4764 |
+
},
|
4765 |
+
"@babel/plugin-transform-function-name": {
|
4766 |
+
"version": "7.8.3",
|
4767 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz",
|
4768 |
+
"integrity": "sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==",
|
4769 |
+
"dev": true,
|
4770 |
+
"requires": {
|
4771 |
+
"@babel/helper-function-name": "^7.8.3",
|
4772 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4773 |
+
}
|
4774 |
+
},
|
4775 |
+
"@babel/plugin-transform-literals": {
|
4776 |
+
"version": "7.8.3",
|
4777 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz",
|
4778 |
+
"integrity": "sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==",
|
4779 |
+
"dev": true,
|
4780 |
+
"requires": {
|
4781 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4782 |
+
}
|
4783 |
+
},
|
4784 |
+
"@babel/plugin-transform-member-expression-literals": {
|
4785 |
+
"version": "7.8.3",
|
4786 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz",
|
4787 |
+
"integrity": "sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==",
|
4788 |
+
"dev": true,
|
4789 |
+
"requires": {
|
4790 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4791 |
+
}
|
4792 |
+
},
|
4793 |
+
"@babel/plugin-transform-modules-amd": {
|
4794 |
+
"version": "7.9.6",
|
4795 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.6.tgz",
|
4796 |
+
"integrity": "sha512-zoT0kgC3EixAyIAU+9vfaUVKTv9IxBDSabgHoUCBP6FqEJ+iNiN7ip7NBKcYqbfUDfuC2mFCbM7vbu4qJgOnDw==",
|
4797 |
+
"dev": true,
|
4798 |
+
"requires": {
|
4799 |
+
"@babel/helper-module-transforms": "^7.9.0",
|
4800 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4801 |
+
"babel-plugin-dynamic-import-node": "^2.3.3"
|
4802 |
+
}
|
4803 |
+
},
|
4804 |
+
"@babel/plugin-transform-modules-commonjs": {
|
4805 |
+
"version": "7.9.6",
|
4806 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.6.tgz",
|
4807 |
+
"integrity": "sha512-7H25fSlLcn+iYimmsNe3uK1at79IE6SKW9q0/QeEHTMC9MdOZ+4bA+T1VFB5fgOqBWoqlifXRzYD0JPdmIrgSQ==",
|
4808 |
+
"dev": true,
|
4809 |
+
"requires": {
|
4810 |
+
"@babel/helper-module-transforms": "^7.9.0",
|
4811 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4812 |
+
"@babel/helper-simple-access": "^7.8.3",
|
4813 |
+
"babel-plugin-dynamic-import-node": "^2.3.3"
|
4814 |
+
}
|
4815 |
+
},
|
4816 |
+
"@babel/plugin-transform-modules-systemjs": {
|
4817 |
+
"version": "7.9.6",
|
4818 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.6.tgz",
|
4819 |
+
"integrity": "sha512-NW5XQuW3N2tTHim8e1b7qGy7s0kZ2OH3m5octc49K1SdAKGxYxeIx7hiIz05kS1R2R+hOWcsr1eYwcGhrdHsrg==",
|
4820 |
+
"dev": true,
|
4821 |
+
"requires": {
|
4822 |
+
"@babel/helper-hoist-variables": "^7.8.3",
|
4823 |
+
"@babel/helper-module-transforms": "^7.9.0",
|
4824 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4825 |
+
"babel-plugin-dynamic-import-node": "^2.3.3"
|
4826 |
+
}
|
4827 |
+
},
|
4828 |
+
"@babel/plugin-transform-modules-umd": {
|
4829 |
+
"version": "7.9.0",
|
4830 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz",
|
4831 |
+
"integrity": "sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ==",
|
4832 |
+
"dev": true,
|
4833 |
+
"requires": {
|
4834 |
+
"@babel/helper-module-transforms": "^7.9.0",
|
4835 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4836 |
+
}
|
4837 |
+
},
|
4838 |
+
"@babel/plugin-transform-named-capturing-groups-regex": {
|
4839 |
+
"version": "7.8.3",
|
4840 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz",
|
4841 |
+
"integrity": "sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==",
|
4842 |
+
"dev": true,
|
4843 |
+
"requires": {
|
4844 |
+
"@babel/helper-create-regexp-features-plugin": "^7.8.3"
|
4845 |
+
}
|
4846 |
+
},
|
4847 |
+
"@babel/plugin-transform-new-target": {
|
4848 |
+
"version": "7.8.3",
|
4849 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz",
|
4850 |
+
"integrity": "sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==",
|
4851 |
+
"dev": true,
|
4852 |
+
"requires": {
|
4853 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4854 |
+
}
|
4855 |
+
},
|
4856 |
+
"@babel/plugin-transform-object-super": {
|
4857 |
+
"version": "7.8.3",
|
4858 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz",
|
4859 |
+
"integrity": "sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==",
|
4860 |
+
"dev": true,
|
4861 |
+
"requires": {
|
4862 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4863 |
+
"@babel/helper-replace-supers": "^7.8.3"
|
4864 |
+
}
|
4865 |
+
},
|
4866 |
+
"@babel/plugin-transform-parameters": {
|
4867 |
+
"version": "7.9.5",
|
4868 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.5.tgz",
|
4869 |
+
"integrity": "sha512-0+1FhHnMfj6lIIhVvS4KGQJeuhe1GI//h5uptK4PvLt+BGBxsoUJbd3/IW002yk//6sZPlFgsG1hY6OHLcy6kA==",
|
4870 |
+
"dev": true,
|
4871 |
+
"requires": {
|
4872 |
+
"@babel/helper-get-function-arity": "^7.8.3",
|
4873 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4874 |
+
}
|
4875 |
+
},
|
4876 |
+
"@babel/plugin-transform-property-literals": {
|
4877 |
+
"version": "7.8.3",
|
4878 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz",
|
4879 |
+
"integrity": "sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==",
|
4880 |
+
"dev": true,
|
4881 |
+
"requires": {
|
4882 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4883 |
+
}
|
4884 |
+
},
|
4885 |
+
"@babel/plugin-transform-react-jsx": {
|
4886 |
+
"version": "7.9.4",
|
4887 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz",
|
4888 |
+
"integrity": "sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw==",
|
4889 |
+
"dev": true,
|
4890 |
+
"requires": {
|
4891 |
+
"@babel/helper-builder-react-jsx": "^7.9.0",
|
4892 |
+
"@babel/helper-builder-react-jsx-experimental": "^7.9.0",
|
4893 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4894 |
+
"@babel/plugin-syntax-jsx": "^7.8.3"
|
4895 |
+
}
|
4896 |
+
},
|
4897 |
+
"@babel/plugin-transform-regenerator": {
|
4898 |
+
"version": "7.8.7",
|
4899 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz",
|
4900 |
+
"integrity": "sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA==",
|
4901 |
+
"dev": true,
|
4902 |
+
"requires": {
|
4903 |
+
"regenerator-transform": "^0.14.2"
|
4904 |
+
}
|
4905 |
+
},
|
4906 |
+
"@babel/plugin-transform-reserved-words": {
|
4907 |
+
"version": "7.8.3",
|
4908 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz",
|
4909 |
+
"integrity": "sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==",
|
4910 |
+
"dev": true,
|
4911 |
+
"requires": {
|
4912 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4913 |
+
}
|
4914 |
+
},
|
4915 |
+
"@babel/plugin-transform-shorthand-properties": {
|
4916 |
+
"version": "7.8.3",
|
4917 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz",
|
4918 |
+
"integrity": "sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==",
|
4919 |
+
"dev": true,
|
4920 |
+
"requires": {
|
4921 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4922 |
+
}
|
4923 |
+
},
|
4924 |
+
"@babel/plugin-transform-spread": {
|
4925 |
+
"version": "7.8.3",
|
4926 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz",
|
4927 |
+
"integrity": "sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==",
|
4928 |
+
"dev": true,
|
4929 |
+
"requires": {
|
4930 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4931 |
+
}
|
4932 |
+
},
|
4933 |
+
"@babel/plugin-transform-sticky-regex": {
|
4934 |
+
"version": "7.8.3",
|
4935 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz",
|
4936 |
+
"integrity": "sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==",
|
4937 |
+
"dev": true,
|
4938 |
+
"requires": {
|
4939 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4940 |
+
"@babel/helper-regex": "^7.8.3"
|
4941 |
+
}
|
4942 |
+
},
|
4943 |
+
"@babel/plugin-transform-template-literals": {
|
4944 |
+
"version": "7.8.3",
|
4945 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz",
|
4946 |
+
"integrity": "sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==",
|
4947 |
+
"dev": true,
|
4948 |
+
"requires": {
|
4949 |
+
"@babel/helper-annotate-as-pure": "^7.8.3",
|
4950 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4951 |
+
}
|
4952 |
+
},
|
4953 |
+
"@babel/plugin-transform-typeof-symbol": {
|
4954 |
+
"version": "7.8.4",
|
4955 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz",
|
4956 |
+
"integrity": "sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg==",
|
4957 |
+
"dev": true,
|
4958 |
+
"requires": {
|
4959 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4960 |
+
}
|
4961 |
+
},
|
4962 |
+
"@babel/plugin-transform-unicode-regex": {
|
4963 |
+
"version": "7.8.3",
|
4964 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz",
|
4965 |
+
"integrity": "sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==",
|
4966 |
+
"dev": true,
|
4967 |
+
"requires": {
|
4968 |
+
"@babel/helper-create-regexp-features-plugin": "^7.8.3",
|
4969 |
+
"@babel/helper-plugin-utils": "^7.8.3"
|
4970 |
+
}
|
4971 |
+
},
|
4972 |
+
"@babel/preset-env": {
|
4973 |
+
"version": "7.9.6",
|
4974 |
+
"resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.9.6.tgz",
|
4975 |
+
"integrity": "sha512-0gQJ9RTzO0heXOhzftog+a/WyOuqMrAIugVYxMYf83gh1CQaQDjMtsOpqOwXyDL/5JcWsrCm8l4ju8QC97O7EQ==",
|
4976 |
+
"dev": true,
|
4977 |
+
"requires": {
|
4978 |
+
"@babel/compat-data": "^7.9.6",
|
4979 |
+
"@babel/helper-compilation-targets": "^7.9.6",
|
4980 |
+
"@babel/helper-module-imports": "^7.8.3",
|
4981 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
4982 |
+
"@babel/plugin-proposal-async-generator-functions": "^7.8.3",
|
4983 |
+
"@babel/plugin-proposal-dynamic-import": "^7.8.3",
|
4984 |
+
"@babel/plugin-proposal-json-strings": "^7.8.3",
|
4985 |
+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
|
4986 |
+
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
|
4987 |
+
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
|
4988 |
+
"@babel/plugin-proposal-optional-catch-binding": "^7.8.3",
|
4989 |
+
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
|
4990 |
+
"@babel/plugin-proposal-unicode-property-regex": "^7.8.3",
|
4991 |
+
"@babel/plugin-syntax-async-generators": "^7.8.0",
|
4992 |
+
"@babel/plugin-syntax-dynamic-import": "^7.8.0",
|
4993 |
+
"@babel/plugin-syntax-json-strings": "^7.8.0",
|
4994 |
+
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0",
|
4995 |
+
"@babel/plugin-syntax-numeric-separator": "^7.8.0",
|
4996 |
+
"@babel/plugin-syntax-object-rest-spread": "^7.8.0",
|
4997 |
+
"@babel/plugin-syntax-optional-catch-binding": "^7.8.0",
|
4998 |
+
"@babel/plugin-syntax-optional-chaining": "^7.8.0",
|
4999 |
+
"@babel/plugin-syntax-top-level-await": "^7.8.3",
|
5000 |
+
"@babel/plugin-transform-arrow-functions": "^7.8.3",
|
5001 |
+
"@babel/plugin-transform-async-to-generator": "^7.8.3",
|
5002 |
+
"@babel/plugin-transform-block-scoped-functions": "^7.8.3",
|
5003 |
+
"@babel/plugin-transform-block-scoping": "^7.8.3",
|
5004 |
+
"@babel/plugin-transform-classes": "^7.9.5",
|
5005 |
+
"@babel/plugin-transform-computed-properties": "^7.8.3",
|
5006 |
+
"@babel/plugin-transform-destructuring": "^7.9.5",
|
5007 |
+
"@babel/plugin-transform-dotall-regex": "^7.8.3",
|
5008 |
+
"@babel/plugin-transform-duplicate-keys": "^7.8.3",
|
5009 |
+
"@babel/plugin-transform-exponentiation-operator": "^7.8.3",
|
5010 |
+
"@babel/plugin-transform-for-of": "^7.9.0",
|
5011 |
+
"@babel/plugin-transform-function-name": "^7.8.3",
|
5012 |
+
"@babel/plugin-transform-literals": "^7.8.3",
|
5013 |
+
"@babel/plugin-transform-member-expression-literals": "^7.8.3",
|
5014 |
+
"@babel/plugin-transform-modules-amd": "^7.9.6",
|
5015 |
+
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
|
5016 |
+
"@babel/plugin-transform-modules-systemjs": "^7.9.6",
|
5017 |
+
"@babel/plugin-transform-modules-umd": "^7.9.0",
|
5018 |
+
"@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3",
|
5019 |
+
"@babel/plugin-transform-new-target": "^7.8.3",
|
5020 |
+
"@babel/plugin-transform-object-super": "^7.8.3",
|
5021 |
+
"@babel/plugin-transform-parameters": "^7.9.5",
|
5022 |
+
"@babel/plugin-transform-property-literals": "^7.8.3",
|
5023 |
+
"@babel/plugin-transform-regenerator": "^7.8.7",
|
5024 |
+
"@babel/plugin-transform-reserved-words": "^7.8.3",
|
5025 |
+
"@babel/plugin-transform-shorthand-properties": "^7.8.3",
|
5026 |
+
"@babel/plugin-transform-spread": "^7.8.3",
|
5027 |
+
"@babel/plugin-transform-sticky-regex": "^7.8.3",
|
5028 |
+
"@babel/plugin-transform-template-literals": "^7.8.3",
|
5029 |
+
"@babel/plugin-transform-typeof-symbol": "^7.8.4",
|
5030 |
+
"@babel/plugin-transform-unicode-regex": "^7.8.3",
|
5031 |
+
"@babel/preset-modules": "^0.1.3",
|
5032 |
+
"@babel/types": "^7.9.6",
|
5033 |
+
"browserslist": "^4.11.1",
|
5034 |
+
"core-js-compat": "^3.6.2",
|
5035 |
+
"invariant": "^2.2.2",
|
5036 |
+
"levenary": "^1.1.1",
|
5037 |
+
"semver": "^5.5.0"
|
5038 |
+
}
|
5039 |
+
},
|
5040 |
+
"@babel/runtime": {
|
5041 |
+
"version": "7.9.6",
|
5042 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
|
5043 |
+
"integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
|
5044 |
+
"dev": true,
|
5045 |
+
"requires": {
|
5046 |
+
"regenerator-runtime": "^0.13.4"
|
5047 |
+
}
|
5048 |
+
},
|
5049 |
+
"@babel/template": {
|
5050 |
+
"version": "7.8.6",
|
5051 |
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.6.tgz",
|
5052 |
+
"integrity": "sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg==",
|
5053 |
+
"dev": true,
|
5054 |
+
"requires": {
|
5055 |
+
"@babel/code-frame": "^7.8.3",
|
5056 |
+
"@babel/parser": "^7.8.6",
|
5057 |
+
"@babel/types": "^7.8.6"
|
5058 |
+
}
|
5059 |
+
},
|
5060 |
+
"@babel/traverse": {
|
5061 |
+
"version": "7.9.6",
|
5062 |
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.9.6.tgz",
|
5063 |
+
"integrity": "sha512-b3rAHSjbxy6VEAvlxM8OV/0X4XrG72zoxme6q1MOoe2vd0bEc+TwayhuC1+Dfgqh1QEG+pj7atQqvUprHIccsg==",
|
5064 |
+
"dev": true,
|
5065 |
+
"requires": {
|
5066 |
+
"@babel/code-frame": "^7.8.3",
|
5067 |
+
"@babel/generator": "^7.9.6",
|
5068 |
+
"@babel/helper-function-name": "^7.9.5",
|
5069 |
+
"@babel/helper-split-export-declaration": "^7.8.3",
|
5070 |
+
"@babel/parser": "^7.9.6",
|
5071 |
+
"@babel/types": "^7.9.6",
|
5072 |
+
"debug": "^4.1.0",
|
5073 |
+
"globals": "^11.1.0",
|
5074 |
+
"lodash": "^4.17.13"
|
5075 |
+
}
|
5076 |
+
},
|
5077 |
+
"@babel/types": {
|
5078 |
+
"version": "7.9.6",
|
5079 |
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.6.tgz",
|
5080 |
+
"integrity": "sha512-qxXzvBO//jO9ZnoasKF1uJzHd2+M6Q2ZPIVfnFps8JJvXy0ZBbwbNOmE6SGIY5XOY6d1Bo5lb9d9RJ8nv3WSeA==",
|
5081 |
+
"dev": true,
|
5082 |
+
"requires": {
|
5083 |
+
"@babel/helper-validator-identifier": "^7.9.5",
|
5084 |
+
"lodash": "^4.17.13",
|
5085 |
+
"to-fast-properties": "^2.0.0"
|
5086 |
+
}
|
5087 |
+
},
|
5088 |
+
"@wordpress/element": {
|
5089 |
+
"version": "2.14.0",
|
5090 |
+
"resolved": "https://registry.npmjs.org/@wordpress/element/-/element-2.14.0.tgz",
|
5091 |
+
"integrity": "sha512-msSkGecq2Z8lBoj95D0vxj64lbGx7c7Q8VxsNLA3G813HVybeY5gYeWFokWKfok+tszCwjJI4ZgR4DxRsYNTig==",
|
5092 |
+
"dev": true,
|
5093 |
+
"requires": {
|
5094 |
+
"@babel/runtime": "^7.9.2",
|
5095 |
+
"@wordpress/escape-html": "^1.8.0",
|
5096 |
+
"lodash": "^4.17.15",
|
5097 |
+
"react": "^16.9.0",
|
5098 |
+
"react-dom": "^16.9.0"
|
5099 |
+
}
|
5100 |
+
},
|
5101 |
+
"@wordpress/escape-html": {
|
5102 |
+
"version": "1.8.0",
|
5103 |
+
"resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-1.8.0.tgz",
|
5104 |
+
"integrity": "sha512-z7z+57nm9Dv3Hau0u3+17dJCbpWnh853VBF6JPID7rKnLPw2AOoRJtNHf4gLeBJTrG6M4cC8EG8Flarsuoxb2w==",
|
5105 |
+
"dev": true,
|
5106 |
+
"requires": {
|
5107 |
+
"@babel/runtime": "^7.9.2"
|
5108 |
+
}
|
5109 |
+
},
|
5110 |
+
"babel-plugin-dynamic-import-node": {
|
5111 |
+
"version": "2.3.3",
|
5112 |
+
"resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz",
|
5113 |
+
"integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==",
|
5114 |
+
"dev": true,
|
5115 |
+
"requires": {
|
5116 |
+
"object.assign": "^4.1.0"
|
5117 |
+
}
|
5118 |
+
},
|
5119 |
+
"browserslist": {
|
5120 |
+
"version": "4.12.0",
|
5121 |
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.12.0.tgz",
|
5122 |
+
"integrity": "sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg==",
|
5123 |
+
"dev": true,
|
5124 |
+
"requires": {
|
5125 |
+
"caniuse-lite": "^1.0.30001043",
|
5126 |
+
"electron-to-chromium": "^1.3.413",
|
5127 |
+
"node-releases": "^1.1.53",
|
5128 |
+
"pkg-up": "^2.0.0"
|
5129 |
+
}
|
5130 |
+
},
|
5131 |
+
"caniuse-lite": {
|
5132 |
+
"version": "1.0.30001066",
|
5133 |
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001066.tgz",
|
5134 |
+
"integrity": "sha512-Gfj/WAastBtfxLws0RCh2sDbTK/8rJuSeZMecrSkNGYxPcv7EzblmDGfWQCFEQcSqYE2BRgQiJh8HOD07N5hIw==",
|
5135 |
+
"dev": true
|
5136 |
+
},
|
5137 |
+
"convert-source-map": {
|
5138 |
+
"version": "1.7.0",
|
5139 |
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz",
|
5140 |
+
"integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==",
|
5141 |
+
"dev": true,
|
5142 |
+
"requires": {
|
5143 |
+
"safe-buffer": "~5.1.1"
|
5144 |
+
}
|
5145 |
+
},
|
5146 |
+
"core-js-compat": {
|
5147 |
+
"version": "3.6.5",
|
5148 |
+
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz",
|
5149 |
+
"integrity": "sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==",
|
5150 |
+
"dev": true,
|
5151 |
+
"requires": {
|
5152 |
+
"browserslist": "^4.8.5",
|
5153 |
+
"semver": "7.0.0"
|
5154 |
+
},
|
5155 |
+
"dependencies": {
|
5156 |
+
"semver": {
|
5157 |
+
"version": "7.0.0",
|
5158 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
|
5159 |
+
"integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
|
5160 |
+
"dev": true
|
5161 |
+
}
|
5162 |
+
}
|
5163 |
+
},
|
5164 |
+
"electron-to-chromium": {
|
5165 |
+
"version": "1.3.452",
|
5166 |
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.452.tgz",
|
5167 |
+
"integrity": "sha512-IdbjgCEqDvcU/1kUQa6C49I2NZOY3SBmU9Eus7mdFdJJBqn0Lg1Epfi/T4nqVcxTNBEGhcjwMhY1EysMBsXZrw==",
|
5168 |
+
"dev": true
|
5169 |
+
},
|
5170 |
+
"json5": {
|
5171 |
+
"version": "2.1.3",
|
5172 |
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
|
5173 |
+
"integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
|
5174 |
+
"dev": true,
|
5175 |
+
"requires": {
|
5176 |
+
"minimist": "^1.2.5"
|
5177 |
+
}
|
5178 |
+
},
|
5179 |
+
"node-releases": {
|
5180 |
+
"version": "1.1.56",
|
5181 |
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.56.tgz",
|
5182 |
+
"integrity": "sha512-EVo605FhWLygH8a64TjgpjyHYOihkxECwX1bHHr8tETJKWEiWS2YJjPbvsX2jFjnjTNEgBCmk9mLjKG1Mf11cw==",
|
5183 |
+
"dev": true
|
5184 |
+
},
|
5185 |
+
"regenerate-unicode-properties": {
|
5186 |
+
"version": "8.2.0",
|
5187 |
+
"resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz",
|
5188 |
+
"integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==",
|
5189 |
+
"dev": true,
|
5190 |
+
"requires": {
|
5191 |
+
"regenerate": "^1.4.0"
|
5192 |
+
}
|
5193 |
+
},
|
5194 |
+
"regenerator-runtime": {
|
5195 |
+
"version": "0.13.5",
|
5196 |
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
|
5197 |
+
"integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==",
|
5198 |
+
"dev": true
|
5199 |
+
},
|
5200 |
+
"regenerator-transform": {
|
5201 |
+
"version": "0.14.4",
|
5202 |
+
"resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.4.tgz",
|
5203 |
+
"integrity": "sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==",
|
5204 |
+
"dev": true,
|
5205 |
+
"requires": {
|
5206 |
+
"@babel/runtime": "^7.8.4",
|
5207 |
+
"private": "^0.1.8"
|
5208 |
+
}
|
5209 |
+
},
|
5210 |
+
"regexpu-core": {
|
5211 |
+
"version": "4.7.0",
|
5212 |
+
"resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz",
|
5213 |
+
"integrity": "sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==",
|
5214 |
+
"dev": true,
|
5215 |
+
"requires": {
|
5216 |
+
"regenerate": "^1.4.0",
|
5217 |
+
"regenerate-unicode-properties": "^8.2.0",
|
5218 |
+
"regjsgen": "^0.5.1",
|
5219 |
+
"regjsparser": "^0.6.4",
|
5220 |
+
"unicode-match-property-ecmascript": "^1.0.4",
|
5221 |
+
"unicode-match-property-value-ecmascript": "^1.2.0"
|
5222 |
+
}
|
5223 |
+
},
|
5224 |
+
"regjsparser": {
|
5225 |
+
"version": "0.6.4",
|
5226 |
+
"resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz",
|
5227 |
+
"integrity": "sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==",
|
5228 |
+
"dev": true,
|
5229 |
+
"requires": {
|
5230 |
+
"jsesc": "~0.5.0"
|
5231 |
+
},
|
5232 |
+
"dependencies": {
|
5233 |
+
"jsesc": {
|
5234 |
+
"version": "0.5.0",
|
5235 |
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz",
|
5236 |
+
"integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=",
|
5237 |
+
"dev": true
|
5238 |
+
}
|
5239 |
+
}
|
5240 |
+
},
|
5241 |
+
"unicode-match-property-value-ecmascript": {
|
5242 |
+
"version": "1.2.0",
|
5243 |
+
"resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz",
|
5244 |
+
"integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==",
|
5245 |
+
"dev": true
|
5246 |
+
}
|
5247 |
+
}
|
5248 |
+
},
|
5249 |
+
"@wordpress/blob": {
|
5250 |
+
"version": "2.8.0",
|
5251 |
+
"resolved": "https://registry.npmjs.org/@wordpress/blob/-/blob-2.8.0.tgz",
|
5252 |
+
"integrity": "sha512-5obAEfhdMaDftitAqMXkc8kWyDim1qS8FvVk7m+fZHnkJXFmxdZHJvCAerjjwI//GMVUvZEbpakdWGoW27TIWg==",
|
5253 |
+
"requires": {
|
5254 |
+
"@babel/runtime": "^7.9.2"
|
5255 |
+
},
|
5256 |
+
"dependencies": {
|
5257 |
+
"@babel/runtime": {
|
5258 |
+
"version": "7.9.6",
|
5259 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
|
5260 |
+
"integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
|
5261 |
+
"requires": {
|
5262 |
+
"regenerator-runtime": "^0.13.4"
|
5263 |
+
}
|
5264 |
+
},
|
5265 |
+
"regenerator-runtime": {
|
5266 |
+
"version": "0.13.5",
|
5267 |
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
|
5268 |
+
"integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA=="
|
5269 |
+
}
|
5270 |
+
}
|
5271 |
+
},
|
5272 |
+
"@wordpress/block-directory": {
|
5273 |
+
"version": "1.9.0",
|
5274 |
+
"resolved": "https://registry.npmjs.org/@wordpress/block-directory/-/block-directory-1.9.0.tgz",
|
5275 |
+
"integrity": "sha512-iE336G0U/9xeqvD0G45zPwWeSY8hrBL8zToJHNUdy16aij6FP5y08BSUBWOk2N+vJOnZ9CFJndV0jj3MPXpwkQ==",
|
5276 |
+
"requires": {
|
5277 |
+
"@wordpress/api-fetch": "^3.15.0",
|
5278 |
+
"@wordpress/block-editor": "^3.11.0",
|
5279 |
+
"@wordpress/blocks": "^6.16.0",
|
5280 |
+
"@wordpress/components": "^9.6.0",
|
5281 |
+
"@wordpress/compose": "^3.15.0",
|
5282 |
+
"@wordpress/data": "^4.18.0",
|
5283 |
+
"@wordpress/element": "^2.14.0",
|
5284 |
+
"@wordpress/i18n": "^3.12.0",
|
5285 |
+
"@wordpress/icons": "^2.0.0",
|
5286 |
+
"@wordpress/plugins": "^2.16.0",
|
5287 |
+
"lodash": "^4.17.15"
|
5288 |
+
},
|
5289 |
+
"dependencies": {
|
5290 |
+
"@babel/runtime": {
|
5291 |
+
"version": "7.9.6",
|
5292 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
|
5293 |
+
"integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
|
5294 |
+
"requires": {
|
5295 |
+
"regenerator-runtime": "^0.13.4"
|
5296 |
+
}
|
5297 |
+
},
|
5298 |
+
"@tannin/compile": {
|
5299 |
+
"version": "1.1.0",
|
5300 |
+
"resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.1.0.tgz",
|
5301 |
+
"integrity": "sha512-n8m9eNDfoNZoxdvWiTfW/hSPhehzLJ3zW7f8E7oT6mCROoMNWCB4TYtv041+2FMAxweiE0j7i1jubQU4MEC/Gg==",
|
5302 |
+
"requires": {
|
5303 |
+
"@tannin/evaluate": "^1.2.0",
|
5304 |
+
"@tannin/postfix": "^1.1.0"
|
5305 |
+
}
|
5306 |
+
},
|
5307 |
+
"@tannin/evaluate": {
|
5308 |
+
"version": "1.2.0",
|
5309 |
+
"resolved": "https://registry.npmjs.org/@tannin/evaluate/-/evaluate-1.2.0.tgz",
|
5310 |
+
"integrity": "sha512-3ioXvNowbO/wSrxsDG5DKIMxC81P0QrQTYai8zFNY+umuoHWRPbQ/TuuDEOju9E+jQDXmj6yI5GyejNuh8I+eg=="
|
5311 |
+
},
|
5312 |
+
"@tannin/plural-forms": {
|
5313 |
+
"version": "1.1.0",
|
5314 |
+
"resolved": "https://registry.npmjs.org/@tannin/plural-forms/-/plural-forms-1.1.0.tgz",
|
5315 |
+
"integrity": "sha512-xl9R2mDZO/qiHam1AgMnAES6IKIg7OBhcXqy6eDsRCdXuxAFPcjrej9HMjyCLE0DJ/8cHf0i5OQTstuBRhpbHw==",
|
5316 |
+
"requires": {
|
5317 |
+
"@tannin/compile": "^1.1.0"
|
5318 |
+
}
|
5319 |
+
},
|
5320 |
+
"@tannin/postfix": {
|
5321 |
+
"version": "1.1.0",
|
5322 |
+
"resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.1.0.tgz",
|
5323 |
+
"integrity": "sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw=="
|
5324 |
+
},
|
5325 |
+
"@wordpress/compose": {
|
5326 |
+
"version": "3.15.0",
|
5327 |
+
"resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-3.15.0.tgz",
|
5328 |
+
"integrity": "sha512-v174JYkPLECIfS5ebaKPengCG5FTyi9Ie6r6Mn2qJYsYXegvEdqCSreLsA3JViPvqC3Shx8MHnXBraz+kqYqQQ==",
|
5329 |
+
"requires": {
|
5330 |
+
"@babel/runtime": "^7.9.2",
|
5331 |
+
"@wordpress/element": "^2.14.0",
|
5332 |
+
"@wordpress/is-shallow-equal": "^2.0.0",
|
5333 |
+
"lodash": "^4.17.15",
|
5334 |
+
"mousetrap": "^1.6.2",
|
5335 |
+
"react-resize-aware": "^3.0.0"
|
5336 |
+
}
|
5337 |
+
},
|
5338 |
+
"@wordpress/data": {
|
5339 |
+
"version": "4.18.0",
|
5340 |
+
"resolved": "https://registry.npmjs.org/@wordpress/data/-/data-4.18.0.tgz",
|
5341 |
+
"integrity": "sha512-1Gj5BA/hjHC5dCdd6uwz5e6CltKTJIJSybuF3Nk6s9BqpgdvZ1srg330THuveibTRusV5ubQc1v9jfj8f47fPg==",
|
5342 |
+
"requires": {
|
5343 |
+
"@babel/runtime": "^7.9.2",
|
5344 |
+
"@wordpress/compose": "^3.15.0",
|
5345 |
+
"@wordpress/deprecated": "^2.8.0",
|
5346 |
+
"@wordpress/element": "^2.14.0",
|
5347 |
+
"@wordpress/is-shallow-equal": "^2.0.0",
|
5348 |
+
"@wordpress/priority-queue": "^1.6.0",
|
5349 |
+
"@wordpress/redux-routine": "^3.9.0",
|
5350 |
+
"equivalent-key-map": "^0.2.2",
|
5351 |
+
"is-promise": "^4.0.0",
|
5352 |
+
"lodash": "^4.17.15",
|
5353 |
+
"memize": "^1.1.0",
|
5354 |
+
"redux": "^4.0.0",
|
5355 |
+
"turbo-combine-reducers": "^1.0.2",
|
5356 |
+
"use-memo-one": "^1.1.1"
|
5357 |
+
}
|
5358 |
+
},
|
5359 |
+
"@wordpress/deprecated": {
|
5360 |
+
"version": "2.8.0",
|
5361 |
+
"resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-2.8.0.tgz",
|
5362 |
+
"integrity": "sha512-MX8ONW8Mf0w38Zllg3d412JcHuIaxmNoaVw03nCi9S31Dj/V3PHEAF8GDeSP0Sfn5DxSs5K4s9LfpE4C2iLgAw==",
|
5363 |
+
"requires": {
|
5364 |
+
"@babel/runtime": "^7.9.2",
|
5365 |
+
"@wordpress/hooks": "^2.8.0"
|
5366 |
+
}
|
5367 |
+
},
|
5368 |
+
"@wordpress/element": {
|
5369 |
+
"version": "2.14.0",
|
5370 |
+
"resolved": "https://registry.npmjs.org/@wordpress/element/-/element-2.14.0.tgz",
|
5371 |
+
"integrity": "sha512-msSkGecq2Z8lBoj95D0vxj64lbGx7c7Q8VxsNLA3G813HVybeY5gYeWFokWKfok+tszCwjJI4ZgR4DxRsYNTig==",
|
5372 |
+
"requires": {
|
5373 |
+
"@babel/runtime": "^7.9.2",
|
5374 |
+
"@wordpress/escape-html": "^1.8.0",
|
5375 |
+
"lodash": "^4.17.15",
|
5376 |
+
"react": "^16.9.0",
|
5377 |
+
"react-dom": "^16.9.0"
|
5378 |
+
}
|
5379 |
+
},
|
5380 |
+
"@wordpress/escape-html": {
|
5381 |
+
"version": "1.8.0",
|
5382 |
+
"resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-1.8.0.tgz",
|
5383 |
+
"integrity": "sha512-z7z+57nm9Dv3Hau0u3+17dJCbpWnh853VBF6JPID7rKnLPw2AOoRJtNHf4gLeBJTrG6M4cC8EG8Flarsuoxb2w==",
|
5384 |
+
"requires": {
|
5385 |
+
"@babel/runtime": "^7.9.2"
|
5386 |
+
}
|
5387 |
+
},
|
5388 |
+
"@wordpress/hooks": {
|
5389 |
+
"version": "2.8.0",
|
5390 |
+
"resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-2.8.0.tgz",
|
5391 |
+
"integrity": "sha512-5FbiVz6T2Frw45NmPDF9GbAFU8iQy64YSZaM+61tUngB+Uzdv0A4pA8C8WIDPlw16QJXseZ4uLce4U9HlJQ3dw==",
|
5392 |
+
"requires": {
|
5393 |
+
"@babel/runtime": "^7.9.2"
|
5394 |
+
}
|
5395 |
+
},
|
5396 |
+
"@wordpress/i18n": {
|
5397 |
+
"version": "3.12.0",
|
5398 |
+
"resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-3.12.0.tgz",
|
5399 |
+
"integrity": "sha512-QkdHd2Z2yTFItBnnzzjMW4IXJlofWMivct4BkgwRivrG7kLxE7nd2xMG3+hFkkdYGdzE67u8vmin0gmQ+14yPA==",
|
5400 |
+
"requires": {
|
5401 |
+
"@babel/runtime": "^7.9.2",
|
5402 |
+
"gettext-parser": "^1.3.1",
|
5403 |
+
"lodash": "^4.17.15",
|
5404 |
+
"memize": "^1.1.0",
|
5405 |
+
"sprintf-js": "^1.1.1",
|
5406 |
+
"tannin": "^1.2.0"
|
5407 |
+
}
|
5408 |
+
},
|
5409 |
+
"@wordpress/icons": {
|
5410 |
+
"version": "2.0.0",
|
5411 |
+
"resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-2.0.0.tgz",
|
5412 |
+
"integrity": "sha512-+clpVHv6ABqxjTzXinuVfUlQubJ4FbNFkh8mX6KQHVn+i4nLq/3Qy8ktYNGB2fs1ck0c17tfAKG+FEz+E5AF4g==",
|
5413 |
+
"requires": {
|
5414 |
+
"@babel/runtime": "^7.9.2",
|
5415 |
+
"@wordpress/element": "^2.14.0",
|
5416 |
+
"@wordpress/primitives": "^1.5.0"
|
5417 |
+
}
|
5418 |
+
},
|
5419 |
+
"@wordpress/is-shallow-equal": {
|
5420 |
+
"version": "2.0.0",
|
5421 |
+
"resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-2.0.0.tgz",
|
5422 |
+
"integrity": "sha512-Xv8b3Jno/3Td6nyj1J+skW96sbyfX7W4sk0TLwN2C2Pz6iQTSTQyGrXmTZWShITt4SOeA8gKpP6kAwSZ4O0HOQ==",
|
5423 |
+
"requires": {
|
5424 |
+
"@babel/runtime": "^7.9.2"
|
5425 |
+
}
|
5426 |
+
},
|
5427 |
+
"@wordpress/priority-queue": {
|
5428 |
+
"version": "1.6.0",
|
5429 |
+
"resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-1.6.0.tgz",
|
5430 |
+
"integrity": "sha512-G2fa+W48U9YRByY+870iWnUKeX7YH13bpqtLaF9HhaykYrLeo41oHsIdiydgeCG49k5A4+mXuNnAWZvEcxgsbA==",
|
5431 |
+
"requires": {
|
5432 |
+
"@babel/runtime": "^7.9.2"
|
5433 |
+
}
|
5434 |
+
},
|
5435 |
+
"@wordpress/redux-routine": {
|
5436 |
+
"version": "3.9.0",
|
5437 |
+
"resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-3.9.0.tgz",
|
5438 |
+
"integrity": "sha512-5CWZK6+g69apZt/hIJE3aL13CPpPnpMmPwzwSfonwis70g9f2Y3SKl/F7BquOAR/MAb5bzjWPPn/ZYzJkNLCRA==",
|
5439 |
+
"requires": {
|
5440 |
+
"@babel/runtime": "^7.9.2",
|
5441 |
+
"is-promise": "^4.0.0",
|
5442 |
+
"lodash": "^4.17.15",
|
5443 |
+
"rungen": "^0.3.2"
|
5444 |
+
}
|
5445 |
+
},
|
5446 |
+
"is-promise": {
|
5447 |
+
"version": "4.0.0",
|
5448 |
+
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
|
5449 |
+
"integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ=="
|
5450 |
+
},
|
5451 |
+
"memize": {
|
5452 |
+
"version": "1.1.0",
|
5453 |
+
"resolved": "https://registry.npmjs.org/memize/-/memize-1.1.0.tgz",
|
5454 |
+
"integrity": "sha512-K4FcPETOMTwe7KL2LK0orMhpOmWD2wRGwWWpbZy0fyArwsyIKR8YJVz8+efBAh3BO4zPqlSICu4vsLTRRqtFAg=="
|
5455 |
+
},
|
5456 |
+
"regenerator-runtime": {
|
5457 |
+
"version": "0.13.5",
|
5458 |
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
|
5459 |
+
"integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA=="
|
5460 |
+
},
|
5461 |
+
"tannin": {
|
5462 |
+
"version": "1.2.0",
|
5463 |
+
"resolved": "https://registry.npmjs.org/tannin/-/tannin-1.2.0.tgz",
|
5464 |
+
"integrity": "sha512-U7GgX/RcSeUETbV7gYgoz8PD7Ni4y95pgIP/Z6ayI3CfhSujwKEBlGFTCRN+Aqnuyf4AN2yHL+L8x+TCGjb9uA==",
|
5465 |
+
"requires": {
|
5466 |
+
"@tannin/plural-forms": "^1.1.0"
|
5467 |
+
}
|
5468 |
+
}
|
5469 |
+
}
|
5470 |
+
},
|
5471 |
+
"@wordpress/block-editor": {
|
5472 |
+
"version": "3.11.0",
|
5473 |
+
"resolved": "https://registry.npmjs.org/@wordpress/block-editor/-/block-editor-3.11.0.tgz",
|
5474 |
+
"integrity": "sha512-gphabkOnignleIC/PwF7vVpcMMVfkasv1BzCqt7XpIXyujWgXvK8qb3Wb/+x7/+tcTLTl/JPstQ+7tfYkra1xw==",
|
5475 |
+
"requires": {
|
5476 |
+
"@babel/runtime": "^7.9.2",
|
5477 |
+
"@wordpress/a11y": "^2.9.0",
|
5478 |
+
"@wordpress/blob": "^2.8.0",
|
5479 |
+
"@wordpress/blocks": "^6.16.0",
|
5480 |
+
"@wordpress/components": "^9.6.0",
|
5481 |
+
"@wordpress/compose": "^3.15.0",
|
5482 |
+
"@wordpress/data": "^4.18.0",
|
5483 |
+
"@wordpress/deprecated": "^2.8.0",
|
5484 |
+
"@wordpress/dom": "^2.9.0",
|
5485 |
+
"@wordpress/element": "^2.14.0",
|
5486 |
+
"@wordpress/hooks": "^2.8.0",
|
5487 |
+
"@wordpress/html-entities": "^2.7.0",
|
5488 |
+
"@wordpress/i18n": "^3.12.0",
|
5489 |
+
"@wordpress/icons": "^2.0.0",
|
5490 |
+
"@wordpress/is-shallow-equal": "^2.0.0",
|
5491 |
+
"@wordpress/keyboard-shortcuts": "^1.5.0",
|
5492 |
+
"@wordpress/keycodes": "^2.12.0",
|
5493 |
+
"@wordpress/priority-queue": "^1.6.0",
|
5494 |
+
"@wordpress/rich-text": "^3.16.0",
|
5495 |
+
"@wordpress/shortcode": "^2.7.0",
|
5496 |
+
"@wordpress/token-list": "^1.10.0",
|
5497 |
+
"@wordpress/url": "^2.15.0",
|
5498 |
+
"@wordpress/viewport": "^2.17.0",
|
5499 |
+
"@wordpress/wordcount": "^2.8.0",
|
5500 |
+
"classnames": "^2.2.5",
|
5501 |
+
"css-mediaquery": "^0.1.2",
|
5502 |
+
"diff": "^4.0.2",
|
5503 |
+
"dom-scroll-into-view": "^1.2.1",
|
5504 |
+
"inherits": "^2.0.3",
|
5505 |
+
"lodash": "^4.17.15",
|
5506 |
+
"memize": "^1.1.0",
|
5507 |
+
"react-autosize-textarea": "^3.0.2",
|
5508 |
+
"react-spring": "^8.0.19",
|
5509 |
+
"redux-multi": "^0.1.12",
|
5510 |
+
"refx": "^3.0.0",
|
5511 |
+
"rememo": "^3.0.0",
|
5512 |
+
"tinycolor2": "^1.4.1",
|
5513 |
+
"traverse": "^0.6.6"
|
5514 |
+
},
|
5515 |
+
"dependencies": {
|
5516 |
+
"@babel/runtime": {
|
5517 |
+
"version": "7.9.6",
|
5518 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
|
5519 |
+
"integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
|
5520 |
+
"requires": {
|
5521 |
+
"regenerator-runtime": "^0.13.4"
|
5522 |
+
}
|
5523 |
+
},
|
5524 |
+
"@tannin/compile": {
|
5525 |
+
"version": "1.1.0",
|
5526 |
+
"resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.1.0.tgz",
|
5527 |
+
"integrity": "sha512-n8m9eNDfoNZoxdvWiTfW/hSPhehzLJ3zW7f8E7oT6mCROoMNWCB4TYtv041+2FMAxweiE0j7i1jubQU4MEC/Gg==",
|
5528 |
+
"requires": {
|
5529 |
+
"@tannin/evaluate": "^1.2.0",
|
5530 |
+
"@tannin/postfix": "^1.1.0"
|
5531 |
+
}
|
5532 |
+
},
|
5533 |
+
"@tannin/evaluate": {
|
5534 |
+
"version": "1.2.0",
|
5535 |
+
"resolved": "https://registry.npmjs.org/@tannin/evaluate/-/evaluate-1.2.0.tgz",
|
5536 |
+
"integrity": "sha512-3ioXvNowbO/wSrxsDG5DKIMxC81P0QrQTYai8zFNY+umuoHWRPbQ/TuuDEOju9E+jQDXmj6yI5GyejNuh8I+eg=="
|
5537 |
+
},
|
5538 |
+
"@tannin/plural-forms": {
|
5539 |
+
"version": "1.1.0",
|
5540 |
+
"resolved": "https://registry.npmjs.org/@tannin/plural-forms/-/plural-forms-1.1.0.tgz",
|
5541 |
+
"integrity": "sha512-xl9R2mDZO/qiHam1AgMnAES6IKIg7OBhcXqy6eDsRCdXuxAFPcjrej9HMjyCLE0DJ/8cHf0i5OQTstuBRhpbHw==",
|
5542 |
+
"requires": {
|
5543 |
+
"@tannin/compile": "^1.1.0"
|
5544 |
+
}
|
5545 |
+
},
|
5546 |
+
"@tannin/postfix": {
|
5547 |
+
"version": "1.1.0",
|
5548 |
+
"resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.1.0.tgz",
|
5549 |
+
"integrity": "sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw=="
|
5550 |
+
},
|
5551 |
+
"@wordpress/compose": {
|
5552 |
+
"version": "3.15.0",
|
5553 |
+
"resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-3.15.0.tgz",
|
5554 |
+
"integrity": "sha512-v174JYkPLECIfS5ebaKPengCG5FTyi9Ie6r6Mn2qJYsYXegvEdqCSreLsA3JViPvqC3Shx8MHnXBraz+kqYqQQ==",
|
5555 |
+
"requires": {
|
5556 |
+
"@babel/runtime": "^7.9.2",
|
5557 |
+
"@wordpress/element": "^2.14.0",
|
5558 |
+
"@wordpress/is-shallow-equal": "^2.0.0",
|
5559 |
+
"lodash": "^4.17.15",
|
5560 |
+
"mousetrap": "^1.6.2",
|
5561 |
+
"react-resize-aware": "^3.0.0"
|
5562 |
+
}
|
5563 |
+
},
|
5564 |
+
"@wordpress/data": {
|
5565 |
+
"version": "4.18.0",
|
5566 |
+
"resolved": "https://registry.npmjs.org/@wordpress/data/-/data-4.18.0.tgz",
|
5567 |
+
"integrity": "sha512-1Gj5BA/hjHC5dCdd6uwz5e6CltKTJIJSybuF3Nk6s9BqpgdvZ1srg330THuveibTRusV5ubQc1v9jfj8f47fPg==",
|
5568 |
+
"requires": {
|
5569 |
+
"@babel/runtime": "^7.9.2",
|
5570 |
+
"@wordpress/compose": "^3.15.0",
|
5571 |
+
"@wordpress/deprecated": "^2.8.0",
|
5572 |
+
"@wordpress/element": "^2.14.0",
|
5573 |
+
"@wordpress/is-shallow-equal": "^2.0.0",
|
5574 |
+
"@wordpress/priority-queue": "^1.6.0",
|
5575 |
+
"@wordpress/redux-routine": "^3.9.0",
|
5576 |
+
"equivalent-key-map": "^0.2.2",
|
5577 |
+
"is-promise": "^4.0.0",
|
5578 |
+
"lodash": "^4.17.15",
|
5579 |
+
"memize": "^1.1.0",
|
5580 |
+
"redux": "^4.0.0",
|
5581 |
+
"turbo-combine-reducers": "^1.0.2",
|
5582 |
+
"use-memo-one": "^1.1.1"
|
5583 |
+
}
|
5584 |
+
},
|
5585 |
+
"@wordpress/deprecated": {
|
5586 |
+
"version": "2.8.0",
|
5587 |
+
"resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-2.8.0.tgz",
|
5588 |
+
"integrity": "sha512-MX8ONW8Mf0w38Zllg3d412JcHuIaxmNoaVw03nCi9S31Dj/V3PHEAF8GDeSP0Sfn5DxSs5K4s9LfpE4C2iLgAw==",
|
5589 |
+
"requires": {
|
5590 |
+
"@babel/runtime": "^7.9.2",
|
5591 |
+
"@wordpress/hooks": "^2.8.0"
|
5592 |
+
}
|
5593 |
+
},
|
5594 |
+
"@wordpress/element": {
|
5595 |
+
"version": "2.14.0",
|
5596 |
+
"resolved": "https://registry.npmjs.org/@wordpress/element/-/element-2.14.0.tgz",
|
5597 |
+
"integrity": "sha512-msSkGecq2Z8lBoj95D0vxj64lbGx7c7Q8VxsNLA3G813HVybeY5gYeWFokWKfok+tszCwjJI4ZgR4DxRsYNTig==",
|
5598 |
+
"requires": {
|
5599 |
+
"@babel/runtime": "^7.9.2",
|
5600 |
+
"@wordpress/escape-html": "^1.8.0",
|
5601 |
+
"lodash": "^4.17.15",
|
5602 |
+
"react": "^16.9.0",
|
5603 |
+
"react-dom": "^16.9.0"
|
5604 |
+
}
|
5605 |
+
},
|
5606 |
+
"@wordpress/escape-html": {
|
5607 |
+
"version": "1.8.0",
|
5608 |
+
"resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-1.8.0.tgz",
|
5609 |
+
"integrity": "sha512-z7z+57nm9Dv3Hau0u3+17dJCbpWnh853VBF6JPID7rKnLPw2AOoRJtNHf4gLeBJTrG6M4cC8EG8Flarsuoxb2w==",
|
5610 |
+
"requires": {
|
5611 |
+
"@babel/runtime": "^7.9.2"
|
5612 |
+
}
|
5613 |
+
},
|
5614 |
+
"@wordpress/hooks": {
|
5615 |
+
"version": "2.8.0",
|
5616 |
+
"resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-2.8.0.tgz",
|
5617 |
+
"integrity": "sha512-5FbiVz6T2Frw45NmPDF9GbAFU8iQy64YSZaM+61tUngB+Uzdv0A4pA8C8WIDPlw16QJXseZ4uLce4U9HlJQ3dw==",
|
5618 |
+
"requires": {
|
5619 |
+
"@babel/runtime": "^7.9.2"
|
5620 |
+
}
|
5621 |
+
},
|
5622 |
+
"@wordpress/i18n": {
|
5623 |
+
"version": "3.12.0",
|
5624 |
+
"resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-3.12.0.tgz",
|
5625 |
+
"integrity": "sha512-QkdHd2Z2yTFItBnnzzjMW4IXJlofWMivct4BkgwRivrG7kLxE7nd2xMG3+hFkkdYGdzE67u8vmin0gmQ+14yPA==",
|
5626 |
+
"requires": {
|
5627 |
+
"@babel/runtime": "^7.9.2",
|
5628 |
+
"gettext-parser": "^1.3.1",
|
5629 |
+
"lodash": "^4.17.15",
|
5630 |
+
"memize": "^1.1.0",
|
5631 |
+
"sprintf-js": "^1.1.1",
|
5632 |
+
"tannin": "^1.2.0"
|
5633 |
+
}
|
5634 |
+
},
|
5635 |
+
"@wordpress/icons": {
|
5636 |
+
"version": "2.0.0",
|
5637 |
+
"resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-2.0.0.tgz",
|
5638 |
+
"integrity": "sha512-+clpVHv6ABqxjTzXinuVfUlQubJ4FbNFkh8mX6KQHVn+i4nLq/3Qy8ktYNGB2fs1ck0c17tfAKG+FEz+E5AF4g==",
|
5639 |
+
"requires": {
|
5640 |
+
"@babel/runtime": "^7.9.2",
|
5641 |
+
"@wordpress/element": "^2.14.0",
|
5642 |
+
"@wordpress/primitives": "^1.5.0"
|
5643 |
+
}
|
5644 |
+
},
|
5645 |
+
"@wordpress/is-shallow-equal": {
|
5646 |
+
"version": "2.0.0",
|
5647 |
+
"resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-2.0.0.tgz",
|
5648 |
+
"integrity": "sha512-Xv8b3Jno/3Td6nyj1J+skW96sbyfX7W4sk0TLwN2C2Pz6iQTSTQyGrXmTZWShITt4SOeA8gKpP6kAwSZ4O0HOQ==",
|
5649 |
+
"requires": {
|
5650 |
+
"@babel/runtime": "^7.9.2"
|
5651 |
+
}
|
5652 |
+
},
|
5653 |
+
"@wordpress/priority-queue": {
|
5654 |
+
"version": "1.6.0",
|
5655 |
+
"resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-1.6.0.tgz",
|
5656 |
+
"integrity": "sha512-G2fa+W48U9YRByY+870iWnUKeX7YH13bpqtLaF9HhaykYrLeo41oHsIdiydgeCG49k5A4+mXuNnAWZvEcxgsbA==",
|
5657 |
+
"requires": {
|
5658 |
+
"@babel/runtime": "^7.9.2"
|
5659 |
+
}
|
5660 |
+
},
|
5661 |
+
"@wordpress/redux-routine": {
|
5662 |
+
"version": "3.9.0",
|
5663 |
+
"resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-3.9.0.tgz",
|
5664 |
+
"integrity": "sha512-5CWZK6+g69apZt/hIJE3aL13CPpPnpMmPwzwSfonwis70g9f2Y3SKl/F7BquOAR/MAb5bzjWPPn/ZYzJkNLCRA==",
|
5665 |
+
"requires": {
|
5666 |
+
"@babel/runtime": "^7.9.2",
|
5667 |
+
"is-promise": "^4.0.0",
|
5668 |
+
"lodash": "^4.17.15",
|
5669 |
+
"rungen": "^0.3.2"
|
5670 |
+
}
|
5671 |
+
},
|
5672 |
+
"is-promise": {
|
5673 |
+
"version": "4.0.0",
|
5674 |
+
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
|
5675 |
+
"integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ=="
|
5676 |
+
},
|
5677 |
+
"memize": {
|
5678 |
+
"version": "1.1.0",
|
5679 |
+
"resolved": "https://registry.npmjs.org/memize/-/memize-1.1.0.tgz",
|
5680 |
+
"integrity": "sha512-K4FcPETOMTwe7KL2LK0orMhpOmWD2wRGwWWpbZy0fyArwsyIKR8YJVz8+efBAh3BO4zPqlSICu4vsLTRRqtFAg=="
|
5681 |
+
},
|
5682 |
+
"regenerator-runtime": {
|
5683 |
+
"version": "0.13.5",
|
5684 |
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
|
5685 |
+
"integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA=="
|
5686 |
+
},
|
5687 |
+
"tannin": {
|
5688 |
+
"version": "1.2.0",
|
5689 |
+
"resolved": "https://registry.npmjs.org/tannin/-/tannin-1.2.0.tgz",
|
5690 |
+
"integrity": "sha512-U7GgX/RcSeUETbV7gYgoz8PD7Ni4y95pgIP/Z6ayI3CfhSujwKEBlGFTCRN+Aqnuyf4AN2yHL+L8x+TCGjb9uA==",
|
5691 |
+
"requires": {
|
5692 |
+
"@tannin/plural-forms": "^1.1.0"
|
5693 |
+
}
|
5694 |
+
},
|
5695 |
+
"traverse": {
|
5696 |
+
"version": "0.6.6",
|
5697 |
+
"resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz",
|
5698 |
+
"integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc="
|
5699 |
+
}
|
5700 |
+
}
|
5701 |
+
},
|
5702 |
+
"@wordpress/block-library": {
|
5703 |
+
"version": "2.18.0",
|
5704 |
+
"resolved": "https://registry.npmjs.org/@wordpress/block-library/-/block-library-2.18.0.tgz",
|
5705 |
+
"integrity": "sha512-yAb3PZ8026udEa/9P1MfEzXS+1jgToJfLsdehZNTJe6UMIj2FKMpst94J+qrgsEX5gY7ZCHI6u48Furu9f71gQ==",
|
5706 |
+
"requires": {
|
5707 |
+
"@babel/runtime": "^7.9.2",
|
5708 |
+
"@wordpress/a11y": "^2.9.0",
|
5709 |
+
"@wordpress/api-fetch": "^3.15.0",
|
5710 |
+
"@wordpress/autop": "^2.7.0",
|
5711 |
+
"@wordpress/blob": "^2.8.0",
|
5712 |
+
"@wordpress/block-editor": "^3.11.0",
|
5713 |
+
"@wordpress/blocks": "^6.16.0",
|
5714 |
+
"@wordpress/components": "^9.6.0",
|
5715 |
+
"@wordpress/compose": "^3.15.0",
|
5716 |
+
"@wordpress/core-data": "^2.16.0",
|
5717 |
+
"@wordpress/data": "^4.18.0",
|
5718 |
+
"@wordpress/date": "^3.9.0",
|
5719 |
+
"@wordpress/deprecated": "^2.8.0",
|
5720 |
+
"@wordpress/dom": "^2.9.0",
|
5721 |
+
"@wordpress/editor": "^9.16.0",
|
5722 |
+
"@wordpress/element": "^2.14.0",
|
5723 |
+
"@wordpress/escape-html": "^1.8.0",
|
5724 |
+
"@wordpress/i18n": "^3.12.0",
|
5725 |
+
"@wordpress/icons": "^2.0.0",
|
5726 |
+
"@wordpress/is-shallow-equal": "^2.0.0",
|
5727 |
+
"@wordpress/keycodes": "^2.12.0",
|
5728 |
+
"@wordpress/primitives": "^1.5.0",
|
5729 |
+
"@wordpress/rich-text": "^3.16.0",
|
5730 |
+
"@wordpress/server-side-render": "^1.12.0",
|
5731 |
+
"@wordpress/url": "^2.15.0",
|
5732 |
+
"@wordpress/viewport": "^2.17.0",
|
5733 |
+
"classnames": "^2.2.5",
|
5734 |
+
"fast-average-color": "4.3.0",
|
5735 |
+
"lodash": "^4.17.15",
|
5736 |
+
"memize": "^1.1.0",
|
5737 |
+
"moment": "^2.22.1",
|
5738 |
+
"tinycolor2": "^1.4.1"
|
5739 |
+
},
|
5740 |
+
"dependencies": {
|
5741 |
+
"@babel/runtime": {
|
5742 |
+
"version": "7.9.6",
|
5743 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
|
5744 |
+
"integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
|
5745 |
+
"requires": {
|
5746 |
+
"regenerator-runtime": "^0.13.4"
|
5747 |
+
}
|
5748 |
+
},
|
5749 |
+
"@tannin/compile": {
|
5750 |
+
"version": "1.1.0",
|
5751 |
+
"resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.1.0.tgz",
|
5752 |
+
"integrity": "sha512-n8m9eNDfoNZoxdvWiTfW/hSPhehzLJ3zW7f8E7oT6mCROoMNWCB4TYtv041+2FMAxweiE0j7i1jubQU4MEC/Gg==",
|
5753 |
+
"requires": {
|
5754 |
+
"@tannin/evaluate": "^1.2.0",
|
5755 |
+
"@tannin/postfix": "^1.1.0"
|
5756 |
+
}
|
5757 |
+
},
|
5758 |
+
"@tannin/evaluate": {
|
5759 |
+
"version": "1.2.0",
|
5760 |
+
"resolved": "https://registry.npmjs.org/@tannin/evaluate/-/evaluate-1.2.0.tgz",
|
5761 |
+
"integrity": "sha512-3ioXvNowbO/wSrxsDG5DKIMxC81P0QrQTYai8zFNY+umuoHWRPbQ/TuuDEOju9E+jQDXmj6yI5GyejNuh8I+eg=="
|
5762 |
+
},
|
5763 |
+
"@tannin/plural-forms": {
|
5764 |
+
"version": "1.1.0",
|
5765 |
+
"resolved": "https://registry.npmjs.org/@tannin/plural-forms/-/plural-forms-1.1.0.tgz",
|
5766 |
+
"integrity": "sha512-xl9R2mDZO/qiHam1AgMnAES6IKIg7OBhcXqy6eDsRCdXuxAFPcjrej9HMjyCLE0DJ/8cHf0i5OQTstuBRhpbHw==",
|
5767 |
+
"requires": {
|
5768 |
+
"@tannin/compile": "^1.1.0"
|
5769 |
+
}
|
5770 |
+
},
|
5771 |
+
"@tannin/postfix": {
|
5772 |
+
"version": "1.1.0",
|
5773 |
+
"resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.1.0.tgz",
|
5774 |
+
"integrity": "sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw=="
|
5775 |
+
},
|
5776 |
+
"@wordpress/compose": {
|
5777 |
+
"version": "3.15.0",
|
5778 |
+
"resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-3.15.0.tgz",
|
5779 |
+
"integrity": "sha512-v174JYkPLECIfS5ebaKPengCG5FTyi9Ie6r6Mn2qJYsYXegvEdqCSreLsA3JViPvqC3Shx8MHnXBraz+kqYqQQ==",
|
5780 |
+
"requires": {
|
5781 |
+
"@babel/runtime": "^7.9.2",
|
5782 |
+
"@wordpress/element": "^2.14.0",
|
5783 |
+
"@wordpress/is-shallow-equal": "^2.0.0",
|
5784 |
+
"lodash": "^4.17.15",
|
5785 |
+
"mousetrap": "^1.6.2",
|
5786 |
+
"react-resize-aware": "^3.0.0"
|
5787 |
+
}
|
5788 |
+
},
|
5789 |
+
"@wordpress/data": {
|
5790 |
+
"version": "4.18.0",
|
5791 |
+
"resolved": "https://registry.npmjs.org/@wordpress/data/-/data-4.18.0.tgz",
|
5792 |
+
"integrity": "sha512-1Gj5BA/hjHC5dCdd6uwz5e6CltKTJIJSybuF3Nk6s9BqpgdvZ1srg330THuveibTRusV5ubQc1v9jfj8f47fPg==",
|
5793 |
+
"requires": {
|
5794 |
+
"@babel/runtime": "^7.9.2",
|
5795 |
+
"@wordpress/compose": "^3.15.0",
|
5796 |
+
"@wordpress/deprecated": "^2.8.0",
|
5797 |
+
"@wordpress/element": "^2.14.0",
|
5798 |
+
"@wordpress/is-shallow-equal": "^2.0.0",
|
5799 |
+
"@wordpress/priority-queue": "^1.6.0",
|
5800 |
+
"@wordpress/redux-routine": "^3.9.0",
|
5801 |
+
"equivalent-key-map": "^0.2.2",
|
5802 |
+
"is-promise": "^4.0.0",
|
5803 |
+
"lodash": "^4.17.15",
|
5804 |
+
"memize": "^1.1.0",
|
5805 |
+
"redux": "^4.0.0",
|
5806 |
+
"turbo-combine-reducers": "^1.0.2",
|
5807 |
+
"use-memo-one": "^1.1.1"
|
5808 |
+
}
|
5809 |
+
},
|
5810 |
+
"@wordpress/deprecated": {
|
5811 |
+
"version": "2.8.0",
|
5812 |
+
"resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-2.8.0.tgz",
|
5813 |
+
"integrity": "sha512-MX8ONW8Mf0w38Zllg3d412JcHuIaxmNoaVw03nCi9S31Dj/V3PHEAF8GDeSP0Sfn5DxSs5K4s9LfpE4C2iLgAw==",
|
5814 |
+
"requires": {
|
5815 |
+
"@babel/runtime": "^7.9.2",
|
5816 |
+
"@wordpress/hooks": "^2.8.0"
|
5817 |
+
}
|
5818 |
+
},
|
5819 |
+
"@wordpress/element": {
|
5820 |
+
"version": "2.14.0",
|
5821 |
+
"resolved": "https://registry.npmjs.org/@wordpress/element/-/element-2.14.0.tgz",
|
5822 |
+
"integrity": "sha512-msSkGecq2Z8lBoj95D0vxj64lbGx7c7Q8VxsNLA3G813HVybeY5gYeWFokWKfok+tszCwjJI4ZgR4DxRsYNTig==",
|
5823 |
+
"requires": {
|
5824 |
+
"@babel/runtime": "^7.9.2",
|
5825 |
+
"@wordpress/escape-html": "^1.8.0",
|
5826 |
+
"lodash": "^4.17.15",
|
5827 |
+
"react": "^16.9.0",
|
5828 |
+
"react-dom": "^16.9.0"
|
5829 |
+
}
|
5830 |
+
},
|
5831 |
+
"@wordpress/escape-html": {
|
5832 |
+
"version": "1.8.0",
|
5833 |
+
"resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-1.8.0.tgz",
|
5834 |
+
"integrity": "sha512-z7z+57nm9Dv3Hau0u3+17dJCbpWnh853VBF6JPID7rKnLPw2AOoRJtNHf4gLeBJTrG6M4cC8EG8Flarsuoxb2w==",
|
5835 |
+
"requires": {
|
5836 |
+
"@babel/runtime": "^7.9.2"
|
5837 |
+
}
|
5838 |
+
},
|
5839 |
+
"@wordpress/hooks": {
|
5840 |
+
"version": "2.8.0",
|
5841 |
+
"resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-2.8.0.tgz",
|
5842 |
+
"integrity": "sha512-5FbiVz6T2Frw45NmPDF9GbAFU8iQy64YSZaM+61tUngB+Uzdv0A4pA8C8WIDPlw16QJXseZ4uLce4U9HlJQ3dw==",
|
5843 |
+
"requires": {
|
5844 |
+
"@babel/runtime": "^7.9.2"
|
5845 |
+
}
|
5846 |
+
},
|
5847 |
+
"@wordpress/i18n": {
|
5848 |
+
"version": "3.12.0",
|
5849 |
+
"resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-3.12.0.tgz",
|
5850 |
+
"integrity": "sha512-QkdHd2Z2yTFItBnnzzjMW4IXJlofWMivct4BkgwRivrG7kLxE7nd2xMG3+hFkkdYGdzE67u8vmin0gmQ+14yPA==",
|
5851 |
+
"requires": {
|
5852 |
+
"@babel/runtime": "^7.9.2",
|
5853 |
+
"gettext-parser": "^1.3.1",
|
5854 |
+
"lodash": "^4.17.15",
|
5855 |
+
"memize": "^1.1.0",
|
5856 |
+
"sprintf-js": "^1.1.1",
|
5857 |
+
"tannin": "^1.2.0"
|
5858 |
+
}
|
5859 |
+
},
|
5860 |
+
"@wordpress/icons": {
|
5861 |
+
"version": "2.0.0",
|
5862 |
+
"resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-2.0.0.tgz",
|
5863 |
+
"integrity": "sha512-+clpVHv6ABqxjTzXinuVfUlQubJ4FbNFkh8mX6KQHVn+i4nLq/3Qy8ktYNGB2fs1ck0c17tfAKG+FEz+E5AF4g==",
|
5864 |
+
"requires": {
|
5865 |
+
"@babel/runtime": "^7.9.2",
|
5866 |
+
"@wordpress/element": "^2.14.0",
|
5867 |
+
"@wordpress/primitives": "^1.5.0"
|
5868 |
+
}
|
5869 |
+
},
|
5870 |
+
"@wordpress/is-shallow-equal": {
|
5871 |
+
"version": "2.0.0",
|
5872 |
+
"resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-2.0.0.tgz",
|
5873 |
+
"integrity": "sha512-Xv8b3Jno/3Td6nyj1J+skW96sbyfX7W4sk0TLwN2C2Pz6iQTSTQyGrXmTZWShITt4SOeA8gKpP6kAwSZ4O0HOQ==",
|
5874 |
+
"requires": {
|
5875 |
+
"@babel/runtime": "^7.9.2"
|
5876 |
+
}
|
5877 |
+
},
|
5878 |
+
"@wordpress/priority-queue": {
|
5879 |
+
"version": "1.6.0",
|
5880 |
+
"resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-1.6.0.tgz",
|
5881 |
+
"integrity": "sha512-G2fa+W48U9YRByY+870iWnUKeX7YH13bpqtLaF9HhaykYrLeo41oHsIdiydgeCG49k5A4+mXuNnAWZvEcxgsbA==",
|
5882 |
+
"requires": {
|
5883 |
+
"@babel/runtime": "^7.9.2"
|
5884 |
+
}
|
5885 |
+
},
|
5886 |
+
"@wordpress/redux-routine": {
|
5887 |
+
"version": "3.9.0",
|
5888 |
+
"resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-3.9.0.tgz",
|
5889 |
+
"integrity": "sha512-5CWZK6+g69apZt/hIJE3aL13CPpPnpMmPwzwSfonwis70g9f2Y3SKl/F7BquOAR/MAb5bzjWPPn/ZYzJkNLCRA==",
|
5890 |
+
"requires": {
|
5891 |
+
"@babel/runtime": "^7.9.2",
|
5892 |
+
"is-promise": "^4.0.0",
|
5893 |
+
"lodash": "^4.17.15",
|
5894 |
+
"rungen": "^0.3.2"
|
5895 |
+
}
|
5896 |
+
},
|
5897 |
+
"is-promise": {
|
5898 |
+
"version": "4.0.0",
|
5899 |
+
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
|
5900 |
+
"integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ=="
|
5901 |
+
},
|
5902 |
+
"memize": {
|
5903 |
+
"version": "1.1.0",
|
5904 |
+
"resolved": "https://registry.npmjs.org/memize/-/memize-1.1.0.tgz",
|
5905 |
+
"integrity": "sha512-K4FcPETOMTwe7KL2LK0orMhpOmWD2wRGwWWpbZy0fyArwsyIKR8YJVz8+efBAh3BO4zPqlSICu4vsLTRRqtFAg=="
|
5906 |
+
},
|
5907 |
+
"regenerator-runtime": {
|
5908 |
+
"version": "0.13.5",
|
5909 |
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
|
5910 |
+
"integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA=="
|
5911 |
+
},
|
5912 |
+
"tannin": {
|
5913 |
+
"version": "1.2.0",
|
5914 |
+
"resolved": "https://registry.npmjs.org/tannin/-/tannin-1.2.0.tgz",
|
5915 |
+
"integrity": "sha512-U7GgX/RcSeUETbV7gYgoz8PD7Ni4y95pgIP/Z6ayI3CfhSujwKEBlGFTCRN+Aqnuyf4AN2yHL+L8x+TCGjb9uA==",
|
5916 |
+
"requires": {
|
5917 |
+
"@tannin/plural-forms": "^1.1.0"
|
5918 |
+
}
|
5919 |
+
}
|
5920 |
+
}
|
5921 |
+
},
|
5922 |
+
"@wordpress/block-serialization-default-parser": {
|
5923 |
+
"version": "3.6.0",
|
5924 |
+
"resolved": "https://registry.npmjs.org/@wordpress/block-serialization-default-parser/-/block-serialization-default-parser-3.6.0.tgz",
|
5925 |
+
"integrity": "sha512-4l1zrxaLd36qHSkTSx+2C3jM/fTD2NZG7mGGYPzL0/yevd1ZNkkc++7bxAGQuM7m8yPw+MKkiq9ETzNLoTHnbQ==",
|
5926 |
+
"requires": {
|
5927 |
+
"@babel/runtime": "^7.9.2"
|
5928 |
+
},
|
5929 |
+
"dependencies": {
|
5930 |
+
"@babel/runtime": {
|
5931 |
+
"version": "7.9.6",
|
5932 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
|
5933 |
+
"integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
|
5934 |
+
"requires": {
|
5935 |
+
"regenerator-runtime": "^0.13.4"
|
5936 |
+
}
|
5937 |
+
},
|
5938 |
+
"regenerator-runtime": {
|
5939 |
+
"version": "0.13.5",
|
5940 |
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz",
|
5941 |
+
"integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA=="
|
5942 |
+
}
|
5943 |
+
}
|
5944 |
+
},
|
5945 |
+
"@wordpress/blocks": {
|
5946 |
+
"version": "6.16.0",
|
5947 |
+
"resolved": "https://registry.npmjs.org/@wordpress/blocks/-/blocks-6.16.0.tgz",
|
5948 |
+
"integrity": "sha512-3bJp5CMoN/ylu6lTz8ZZNHPDK+KK7rjy0/dGOiNQb0jpyZ+sXxnWHA92/eQYXKbV2Az8830a92lt8pEU6TF5zw==",
|
5949 |
+
"requires": {
|
5950 |
+
"@babel/runtime": "^7.9.2",
|
5951 |
+
"@wordpress/autop": "^2.7.0",
|
5952 |
+
"@wordpress/blob": "^2.8.0",
|
5953 |
+
"@wordpress/block-serialization-default-parser": "^3.6.0",
|
5954 |
+
"@wordpress/compose": "^3.15.0",
|
5955 |
+
"@wordpress/data": "^4.18.0",
|
5956 |
+
"@wordpress/dom": "^2.9.0",
|
5957 |
+
"@wordpress/element": "^2.14.0",
|
5958 |
+
"@wordpress/hooks": "^2.8.0",
|
5959 |
+
"@wordpress/html-entities": "^2.7.0",
|
5960 |
+
"@wordpress/i18n": "^3.12.0",
|
5961 |
+
"@wordpress/icons": "^2.0.0",
|
5962 |
+
"@wordpress/is-shallow-equal": "^2.0.0",
|
5963 |
+
"@wordpress/shortcode": "^2.7.0",
|
5964 |
+
"hpq": "^1.3.0",
|
5965 |
+
"lodash": "^4.17.15",
|
5966 |
+
"rememo": "^3.0.0",
|
5967 |
+
"showdown": "^1.9.1",
|
5968 |
+
"simple-html-tokenizer": "^0.5.7",
|
5969 |
+
"tinycolor2": "^1.4.1",
|
5970 |
+
"uuid": "^7.0.2"
|
5971 |
+
},
|
5972 |
+
"dependencies": {
|
5973 |
+
"@babel/runtime": {
|
5974 |
+
"version": "7.9.6",
|
5975 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.6.tgz",
|
5976 |
+
"integrity": "sha512-64AF1xY3OAkFHqOb9s4jpgk1Mm5vDZ4L3acHvAml+53nO1XbXLuDodsVpO4OIUsmemlUHMxNdYMNJmsvOwLrvQ==",
|
5977 |
+
"requires": {
|
5978 |
+
"regenerator-runtime": "^0.13.4"
|
5979 |
+
}
|
5980 |
+
},
|
5981 |
+
"@tannin/compile": {
|
5982 |
+
"version": "1.1.0",
|
5983 |
+
"resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.1.0.tgz",
|
5984 |
+
"integrity": "sha512-n8m9eNDfoNZoxdvWiTfW/hSPhehzLJ3zW7f8E7oT6mCROoMNWCB4TYtv041+2FMAxweiE0j7i1jubQU4MEC/Gg==",
|
5985 |
+
"requires": {
|
5986 |
+
"@tannin/evaluate": "^1.2.0",
|
5987 |
+
"@tannin/postfix": "^1.1.0"
|
5988 |
+
}
|
5989 |
+
},
|
5990 |
+
"@tannin/evaluate": {
|
5991 |
+
"version": "1.2.0",
|
5992 |
+
"resolved": "https://registry.npmjs.org/@tannin/evaluate/-/evaluate-1.2.0.tgz",
|
5993 |
+
"integrity": "sha512-3ioXvNowbO/wSrxsDG5DKIMxC81P0QrQTYai8zFNY+umuoHWRPbQ/TuuDEOju9E+jQDXmj6yI5GyejNuh8I+eg=="
|
5994 |
+
},
|
5995 |
+
"@tannin/plural-forms": {
|
5996 |
+
"version": "1.1.0",
|
5997 |
+
"resolved": "https://registry.npmjs.org/@tannin/plural-forms/-/plural-forms-1.1.0.tgz",
|
5998 |
+
"integrity": "sha512-xl9R2mDZO/qiHam1AgMnAES6IKIg7OBhcXqy6eDsRCdXuxAFPcjrej9HMjyCLE0DJ/8cHf0i5OQTstuBRhpbHw==",
|
5999 |
+
"requires": {
|
6000 |
+
"@tannin/compile": "^1.1.0"
|
6001 |
+
}
|
6002 |
+
},
|
6003 |
+
"@tannin/postfix": {
|
6004 |
+
"version": "1.1.0",
|
6005 |
+
"resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.1.0.tgz",
|
6006 |
+
"integrity": "sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw=="
|
6007 |
+
},
|
6008 |
+
"@wordpress/compose": {
|
6009 |
+
"version": "3.15.0",
|
6010 |
+
"resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-3.15.0.tgz",
|
6011 |
+
"integrity": "sha512-v174JYkPLECIfS5ebaKPengCG5FTyi9Ie6r6Mn2qJYsYXegvEdqCSreLsA3JViPvqC3Shx8MHnXBraz+kqYqQQ==",
|
6012 |
+
"requires": {
|
6013 |
+
"@babel/runtime": "^7.9.2",
|
6014 |
+
"@wordpress/element": "^2.14.0",
|
6015 |
+
"@wordpress/is-shallow-equal": "^2.0.0",
|
6016 |
+
"lodash": "^4.17.15",
|
6017 |
+
"mousetrap": "^1.6.2",
|
6018 |
+
"react-resize-aware": "^3.0.0"
|
6019 |
+
}
|
6020 |
+
},
|
6021 |
+
"@wordpress/data": {
|
6022 |
+
"version": "4.18.0",
|
6023 |
+
"resolved": "https://registry.npmjs.org/@wordpress/data/-/data-4.18.0.tgz",
|
6024 |
+
"integrity": "sha512-1Gj5BA/hjHC5dCdd6uwz5e6CltKTJIJSybuF3Nk6s9BqpgdvZ1srg330THuveibTRusV5ubQc1v9jfj8f47fPg==",
|
6025 |
+
"requires": {
|
6026 |
+
"@babel/runtime": "^7.9.2",
|
6027 |
+
"@wordpress/compose": "^3.15.0",
|
6028 |
+
"@wordpress/deprecated": "^2.8.0",
|
6029 |
+
"@wordpress/element": "^2.14.0",
|
6030 |
+
"@wordpress/is-shallow-equal": "^2.0.0",
|
6031 |
+
"@wordpress/priority-queue": "^1.6.0",
|
6032 |
+
"@wordpress/redux-routine": "^3.9.0",
|
6033 |
+
"equivalent-key-map": "^0.2.2",
|
6034 |
+
"is-promise": "^4.0.0",
|
6035 |
+
"lodash": "^4.17.15",
|
6036 |
+
"memize": "^1.1.0",
|
6037 |
+
"redux": "^4.0.0",
|
6038 |
+
"turbo-combine-reducers": "^1.0.2",
|
6039 |
+
"use-memo-one": "^1.1.1"
|
6040 |
+
}
|
6041 |
+
},
|
6042 |
+
"@wordpress/deprecated": {
|
6043 |
+
"version": "2.8.0",
|
6044 |
+
"resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-2.8.0.tgz",
|
6045 |
+
"integrity": "sha512-MX8ONW8Mf0w38Zllg3d412JcHuIaxmNoaVw03nCi9S31Dj/V3PHEAF8GDeSP0Sfn5DxSs5K4s9LfpE4C2iLgAw==",
|
6046 |
+
"requires": {
|
6047 |
+
"@babel/runtime": "^7.9.2",
|
6048 |
+
"@wordpress/hooks": "^2.8.0"
|
6049 |
+
}
|
6050 |
+
},
|
6051 |
+
"@wordpress/element": {
|
6052 |
+
"version": "2.14.0",
|
6053 |
+
"resolved": "https://registry.npmjs.org/@wordpress/element/-/element-2.14.0.tgz",
|
6054 |
+
"integrity": "sha512-msSkGecq2Z8lBoj95D0vxj64lbGx7c7Q8VxsNLA3G813HVybeY5gYeWFokWKfok+tszCwjJI4ZgR4DxRsYNTig==",
|
6055 |
+
"requires": {
|
6056 |
+
"@babel/runtime": "^7.9.2",
|
6057 |
+
"@wordpress/escape-html": "^1.8.0",
|
6058 |
+
"lodash": "^4.17.15",
|
6059 |
+
"react": "^16.9.0",
|
6060 |
+
"react-dom": "^16.9.0"
|
6061 |
+
}
|
6062 |
+
},
|
6063 |
+
"@wordpress/escape-html": {
|
6064 |
+
"version": "1.8.0",
|
6065 |
+
"resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-1.8.0.tgz",
|
6066 |
+
"integrity": "sha512-z7z+57nm9Dv3Hau0u3+17dJCbpWnh853VBF6JPID7rKnLPw2AOoRJtNHf4gLeBJTrG6M4cC8EG8Flarsuoxb2w==",
|
6067 |
+
"requires": {
|
6068 |
+
"@babel/runtime": "^7.9.2"
|
6069 |
+
}
|
6070 |
+
},
|
6071 |
+
"@wordpress/hooks": {
|
6072 |
+
"version": "2.8.0",
|
6073 |
+
"resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-2.8.0.tgz",
|
6074 |
+
"integrity": "sha512-5FbiVz6T2Frw45NmPDF9GbAFU8iQy64YSZaM+61tUngB+Uzdv0A4pA8C8WIDPlw16QJXseZ4uLce4U9HlJQ3dw==",
|
6075 |
+
"requires": {
|
6076 |
+
"@babel/runtime": "^7.9.2"
|
6077 |
+
}
|
6078 |
+
},
|
6079 |
+
"@wordpress/i18n": {
|
6080 |
+
"version": "3.12.0",
|
6081 |
+
"resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-3.12.0.tgz",
|
6082 |
+
"integrity": "sha512-QkdHd2Z2yTFItBnnzzjMW4IXJlofWMivct4BkgwRivrG7kLxE7nd2xMG3+hFkkdYGdzE67u8vmin0gmQ+14yPA==",
|
6083 |
+
"requires": {
|
6084 |
+
"@babel/runtime": "^7.9.2",
|
6085 |
+
"gettext-parser": "^1.3.1",
|
6086 |
+
"lodash": "^4.17.15",
|
6087 |
+
"memize": "^1.1.0",
|
6088 |
+
"sprintf-js": "^1.1.1",
|
6089 |
+
"tannin": "^1.2.0"
|
6090 |
+
}
|
6091 |
+
},
|
6092 |
+
"@wordpress/icons": {
|
6093 |
+
"version": "2.0.0",
|
6094 |
+
"resolved": "https://registry.npmjs.org/@wordpress/icons/-/icons-2.0.0.tgz",
|
6095 |
+
"integrity": "sha512-+clpVHv6ABqxjTzXinuVfUlQubJ4FbNFkh8mX6KQHVn+i4nLq/3Qy8ktYNGB2fs1ck0c17tfAKG+FEz+E5AF4g==",
|
6096 |
+
"requires": {
|
6097 |
+
"@babel/runtime": "^7.9.2",
|
6098 |
+
"@wordpress/element": "^2.14.0",
|
6099 |
+
"@wordpress/primitives": "^1.5.0"
|
6100 |
+
}
|
6101 |
+
},
|
6102 |
+
"@wordpress/is-shallow-equal": {
|
6103 |
+
"version": "2.0.0",
|
6104 |
+
"resolved": "https://registry.npmjs.org/@wordpress/is-shallow-equal/-/is-shallow-equal-2.0.0.tgz",
|
6105 |
+
"integrity": "sha512-Xv8b3Jno/3Td6nyj1J+skW96sbyfX7W4sk0TLwN2C2Pz6iQTSTQyGrXmTZWShITt4SOeA8gKpP6kAwSZ4O0HOQ==",
|
6106 |
+
"requires": {
|
6107 |
+
"@babel/runtime": "^7.9.2"
|
6108 |
+
}
|
6109 |
+
},
|
6110 |
+
"@wordpress/priority-queue": {
|
6111 |
+
"version": "1.6.0",
|
6112 |
+
"resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-1.6.0.tgz",
|
6113 |
+
"integrity": "sha512-G2fa+W48U9YRByY+870iWnUKeX7YH13bpqtLaF9HhaykYrLeo41oHsIdiydgeCG49k5A4+mXuNnAWZvEcxgsbA==",
|
6114 |
+
"requires": {
|
6115 |
+
"@babel/runtime": "^7.9.2"
|
6116 |
+
}
|
6117 |
+
},
|
6118 |
+
"@wordpress/redux-routine": {
|
6119 |
+
"version": "3.9.0",
|
6120 |
+
"resolved": "https://registry.npmjs.org/@wordpress/redux-routine/-/redux-routine-3.9.0.tgz",
|
6121 |
+
"integrity": "sha512-5CWZK6+g69apZt/hIJE3aL13CPpPnpMmPwzwSfonwis70g9f2Y3SKl/F7BquOAR/MAb5bzjWPPn/ZYzJkNLCRA==",
|
6122 |
+
"r
|