Version Description
[ BugFix ] Editor style CSS not working
Download this release
Release Info
Developer | vektor-inc |
Plugin | VK Blocks |
Version | 0.22.4 |
Comparing to | |
See all releases |
Code changes from version 0.17.6 to 0.22.4
- components/align-control/index.js +24 -0
- components/card-align-control/index.js +26 -0
- components/link-control/index.js +52 -0
- composer.json +7 -0
- composer.lock +69 -0
- editor-css/_editor_after.scss +1 -0
- editor-css/_editor_before.scss +215 -0
- editor-css/editor-block-build-marge.scss +2080 -0
- editor-css/editor-block-build.scss +323 -17
- gulpfile.js +114 -95
- gulpfile_free.js +145 -0
- inc/font-awesome/package/class-vk-font-awesome-versions.php +34 -14
- inc/vk-blocks-config.php +16 -13
- inc/vk-blocks/build/block-build-editor.css +1 -1
- inc/vk-blocks/build/block-build.css +15 -30
- inc/vk-blocks/build/block-build.js +2 -3
- 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 +292 -227
- inc/vk-blocks/build/languages/vk-blocks.pot +53 -52
- inc/vk-blocks/build/languages/vk-blocks.pot~1b7af7e9d1f67f60cccba3c52bdf44197a3c0315 +1067 -0
- inc/vk-blocks/load-vk-components.php +6 -0
- inc/vk-blocks/view/post-list.php +16 -15
- inc/vk-blocks/vk-blocks-functions.php +87 -49
- inc/vk-components/package/_scss/_vk-post.scss +320 -164
- inc/vk-components/package/_scss/vk-components.scss +7 -1
- inc/vk-components/package/class-vk-component-posts.php +45 -33
- inc/vk-components/package/css/vk-components.css +1 -0
- package-lock.json +4890 -2051
components/align-control/index.js
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
const { __ } = wp.i18n;
|
2 |
+
const { useState } = wp.element;
|
3 |
+
const { Toolbar } = wp.components;
|
4 |
+
|
5 |
+
export const AlignControl = props => {
|
6 |
+
const { setAttributes, schema, initial, component } = props;
|
7 |
+
const [activeControl, setActiveControl] = useState(initial);
|
8 |
+
|
9 |
+
function createAlignControl(align) {
|
10 |
+
return {
|
11 |
+
icon: `editor-align${align}`,
|
12 |
+
title: __(`Align ${align}`, "vk-blocks"),
|
13 |
+
isActive: activeControl === align,
|
14 |
+
onClick: () => {
|
15 |
+
schema[component] = align;
|
16 |
+
setAttributes({ activeControl: JSON.stringify(schema) });
|
17 |
+
setActiveControl(align);
|
18 |
+
}
|
19 |
+
};
|
20 |
+
}
|
21 |
+
return (
|
22 |
+
<Toolbar controls={["left", "center", "right"].map(createAlignControl)} />
|
23 |
+
);
|
24 |
+
};
|
components/card-align-control/index.js
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
const { __ } = wp.i18n;
|
2 |
+
const { PanelBody, BaseControl } = wp.components;
|
3 |
+
import { AlignControl } from "../align-control";
|
4 |
+
import { capitalize } from "../../src/_helper/capitalize";
|
5 |
+
|
6 |
+
export const CardAlignControls = props => {
|
7 |
+
const { attributes } = props;
|
8 |
+
const shema = JSON.parse(attributes.activeControl);
|
9 |
+
props.schema = shema;
|
10 |
+
|
11 |
+
const createAlignControl = label => {
|
12 |
+
props.initial = shema[label];
|
13 |
+
props.component = label;
|
14 |
+
return (
|
15 |
+
<BaseControl label={__(`${capitalize(label)}`, "vk-blocks")}>
|
16 |
+
<AlignControl {...props} />
|
17 |
+
</BaseControl>
|
18 |
+
);
|
19 |
+
};
|
20 |
+
const alignControls = ["title", "text", "button"].map(createAlignControl);
|
21 |
+
return (
|
22 |
+
<PanelBody title={__("Align", "vk-blocks")} initialOpen={false}>
|
23 |
+
{alignControls}
|
24 |
+
</PanelBody>
|
25 |
+
);
|
26 |
+
};
|
components/link-control/index.js
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
const { __ } = wp.i18n;
|
2 |
+
const { BaseControl, TextControl, ToggleControl } = wp.components;
|
3 |
+
const { useCallback } = wp.element;
|
4 |
+
|
5 |
+
export const LinkControl = props => {
|
6 |
+
const { setAttributes, attributes, blockName } = props;
|
7 |
+
const { linkTarget, rel } = attributes;
|
8 |
+
|
9 |
+
const NEW_TAB_REL = "noreferrer noopener";
|
10 |
+
const onSetLinkRel = useCallback(
|
11 |
+
value => {
|
12 |
+
setAttributes({ rel: value });
|
13 |
+
},
|
14 |
+
[setAttributes]
|
15 |
+
);
|
16 |
+
const onToggleOpenInNewTab = useCallback(
|
17 |
+
value => {
|
18 |
+
const newLinkTarget = value ? "_blank" : undefined;
|
19 |
+
|
20 |
+
let updatedRel = rel;
|
21 |
+
if (newLinkTarget && !rel) {
|
22 |
+
updatedRel = NEW_TAB_REL;
|
23 |
+
} else if (!newLinkTarget && rel === NEW_TAB_REL) {
|
24 |
+
updatedRel = undefined;
|
25 |
+
}
|
26 |
+
|
27 |
+
setAttributes({
|
28 |
+
linkTarget: newLinkTarget,
|
29 |
+
rel: updatedRel
|
30 |
+
});
|
31 |
+
},
|
32 |
+
[rel, setAttributes]
|
33 |
+
);
|
34 |
+
|
35 |
+
return (
|
36 |
+
<BaseControl
|
37 |
+
label={__("Link target", "vk-blocks")}
|
38 |
+
id={`sidebar-${blockName}-block-url-settings`}
|
39 |
+
>
|
40 |
+
<ToggleControl
|
41 |
+
label={__("Open in new tab", "vk-blocks")}
|
42 |
+
onChange={onToggleOpenInNewTab}
|
43 |
+
checked={linkTarget === "_blank"}
|
44 |
+
/>
|
45 |
+
<TextControl
|
46 |
+
label={__("Link rel", "vk-blocks")}
|
47 |
+
value={rel || ""}
|
48 |
+
onChange={onSetLinkRel}
|
49 |
+
/>
|
50 |
+
</BaseControl>
|
51 |
+
);
|
52 |
+
};
|
composer.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "vektor/vk-blocks-pro",
|
3 |
+
"require": {},
|
4 |
+
"require-dev": {
|
5 |
+
"squizlabs/php_codesniffer": "^3.5"
|
6 |
+
}
|
7 |
+
}
|
composer.lock
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_readme": [
|
3 |
+
"This file locks the dependencies of your project to a known state",
|
4 |
+
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
5 |
+
"This file is @generated automatically"
|
6 |
+
],
|
7 |
+
"content-hash": "fb6e4366c90951dd0b2d013bf42a06f7",
|
8 |
+
"packages": [],
|
9 |
+
"packages-dev": [
|
10 |
+
{
|
11 |
+
"name": "squizlabs/php_codesniffer",
|
12 |
+
"version": "3.5.3",
|
13 |
+
"source": {
|
14 |
+
"type": "git",
|
15 |
+
"url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
|
16 |
+
"reference": "557a1fc7ac702c66b0bbfe16ab3d55839ef724cb"
|
17 |
+
},
|
18 |
+
"dist": {
|
19 |
+
"type": "zip",
|
20 |
+
"url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/557a1fc7ac702c66b0bbfe16ab3d55839ef724cb",
|
21 |
+
"reference": "557a1fc7ac702c66b0bbfe16ab3d55839ef724cb",
|
22 |
+
"shasum": ""
|
23 |
+
},
|
24 |
+
"require": {
|
25 |
+
"ext-simplexml": "*",
|
26 |
+
"ext-tokenizer": "*",
|
27 |
+
"ext-xmlwriter": "*",
|
28 |
+
"php": ">=5.4.0"
|
29 |
+
},
|
30 |
+
"require-dev": {
|
31 |
+
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
|
32 |
+
},
|
33 |
+
"bin": [
|
34 |
+
"bin/phpcs",
|
35 |
+
"bin/phpcbf"
|
36 |
+
],
|
37 |
+
"type": "library",
|
38 |
+
"extra": {
|
39 |
+
"branch-alias": {
|
40 |
+
"dev-master": "3.x-dev"
|
41 |
+
}
|
42 |
+
},
|
43 |
+
"notification-url": "https://packagist.org/downloads/",
|
44 |
+
"license": [
|
45 |
+
"BSD-3-Clause"
|
46 |
+
],
|
47 |
+
"authors": [
|
48 |
+
{
|
49 |
+
"name": "Greg Sherwood",
|
50 |
+
"role": "lead"
|
51 |
+
}
|
52 |
+
],
|
53 |
+
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
|
54 |
+
"homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
|
55 |
+
"keywords": [
|
56 |
+
"phpcs",
|
57 |
+
"standards"
|
58 |
+
],
|
59 |
+
"time": "2019-12-04T04:46:47+00:00"
|
60 |
+
}
|
61 |
+
],
|
62 |
+
"aliases": [],
|
63 |
+
"minimum-stability": "stable",
|
64 |
+
"stability-flags": [],
|
65 |
+
"prefer-stable": false,
|
66 |
+
"prefer-lowest": false,
|
67 |
+
"platform": [],
|
68 |
+
"platform-dev": []
|
69 |
+
}
|
editor-css/_editor_after.scss
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
}
|
editor-css/_editor_before.scss
ADDED
@@ -0,0 +1,215 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
.vk_block_icon_pro {
|
3 |
+
fill:#c00;
|
4 |
+
}
|
5 |
+
.editor-block-list-item-vk-blocks-card:after,
|
6 |
+
.editor-block-list-item-vk-blocks-child-page:after,
|
7 |
+
.editor-block-list-item-vk-blocks-timeline:after,
|
8 |
+
.editor-block-list-item-vk-blocks-step:after,
|
9 |
+
.editor-block-list-item-vk-blocks-outer:after,
|
10 |
+
.editor-block-list-item-vk-blocks-post-list:after,
|
11 |
+
.editor-block-list-item-vk-blocks-table-of-contents:after,
|
12 |
+
.editor-block-list-item-vk-blocks-simple-table:after{
|
13 |
+
position: absolute;
|
14 |
+
top: 0;
|
15 |
+
right: 0;
|
16 |
+
content: "Pro";
|
17 |
+
display: inline-block;
|
18 |
+
font-size: 10px;
|
19 |
+
line-height: 1;
|
20 |
+
color: #fff;
|
21 |
+
background-color: #cd3034;
|
22 |
+
border-radius: 2px;
|
23 |
+
padding: 3px 4px;
|
24 |
+
}
|
25 |
+
|
26 |
+
.components-base-control__label {
|
27 |
+
font-weight:bold;
|
28 |
+
}
|
29 |
+
.components-base-control .components-base-control__help {
|
30 |
+
margin-top:0;
|
31 |
+
}
|
32 |
+
.components-radio-control__option label { margin-bottom:0; }
|
33 |
+
.components-checkbox-control__label { margin-bottom:0; }
|
34 |
+
.components-color-palette { display:block; overflow:hidden; }
|
35 |
+
|
36 |
+
/*スライダーを表示。デフォルトだとbootstrapに非表示にされてしまう*/
|
37 |
+
input[type=range] {
|
38 |
+
margin: 1px;
|
39 |
+
}
|
40 |
+
|
41 |
+
.editor-url-input input[type="text"]{
|
42 |
+
width:100%;
|
43 |
+
}
|
44 |
+
|
45 |
+
/* editor area *********************************************/
|
46 |
+
.edit-post-visual-editor.editor-styles-wrapper{
|
47 |
+
|
48 |
+
|
49 |
+
/* これがないとGutenberg標準のエディタCSSに負ける */
|
50 |
+
h1:first-child.vk_prBlocks_item_title{
|
51 |
+
margin-top:0.9em;
|
52 |
+
}
|
53 |
+
|
54 |
+
/* Bootstrap Adjuster */
|
55 |
+
$border_primary: 1px solid #e5e5e5;
|
56 |
+
$color_font_default: #464646;
|
57 |
+
|
58 |
+
$xs-max: 575.98px;
|
59 |
+
$sm-max: 767.98px;
|
60 |
+
$md-max: 991.98px;
|
61 |
+
$lg-max: 1199.98px;
|
62 |
+
|
63 |
+
$sm-min: 576px;
|
64 |
+
$md-min: 768px;
|
65 |
+
$lg-min: 992px;
|
66 |
+
$xl-min: 1200px;
|
67 |
+
|
68 |
+
$color-danger : #b52727;
|
69 |
+
|
70 |
+
/*-------------------------------------------*/
|
71 |
+
/* card
|
72 |
+
/*-------------------------------------------*/
|
73 |
+
|
74 |
+
// Card ボタンリンクの説明
|
75 |
+
.postList_itemCard_button-option {
|
76 |
+
margin-bottom: 5px;
|
77 |
+
}
|
78 |
+
|
79 |
+
.vk_post_imgOuter {
|
80 |
+
position: relative;
|
81 |
+
.components-button {
|
82 |
+
position: absolute;
|
83 |
+
top: 50%;
|
84 |
+
left: 50%;
|
85 |
+
transform: translateY(-50%) translateX(-50%);
|
86 |
+
transition: all 1s;
|
87 |
+
}
|
88 |
+
.button-delete {
|
89 |
+
opacity: 0;
|
90 |
+
border:1px solid $color-danger;
|
91 |
+
color:$color-danger;
|
92 |
+
transition: all 1s;
|
93 |
+
&:hover {
|
94 |
+
background-color: $color-danger;
|
95 |
+
color:#fff;
|
96 |
+
}
|
97 |
+
}
|
98 |
+
}
|
99 |
+
.vk_post_imgOuter:hover .button-delete {
|
100 |
+
transition: all 1s;
|
101 |
+
opacity: 1;
|
102 |
+
}
|
103 |
+
|
104 |
+
|
105 |
+
/*-------------------------------------------*/
|
106 |
+
/* vk_post Layout
|
107 |
+
/*-------------------------------------------*/
|
108 |
+
/* If exclude the .vk_posts that, when you select the .media don't work */
|
109 |
+
|
110 |
+
|
111 |
+
// .vk_posts .editor-inner-blocks .editor-block-list__layout .wp-block .editor-block-list__block-edit div .vk_post-col {
|
112 |
+
|
113 |
+
.vk_posts > .vk_posts-edit {
|
114 |
+
width:100%;
|
115 |
+
.editor-block-list__layout {
|
116 |
+
display: flex;
|
117 |
+
flex-wrap: wrap;
|
118 |
+
padding:0;
|
119 |
+
width:100%;
|
120 |
+
}
|
121 |
+
.editor-block-list__block {
|
122 |
+
margin:0 15px 30px;
|
123 |
+
padding:0;
|
124 |
+
.block-editor-block-list__block-edit {
|
125 |
+
margin:0;
|
126 |
+
height:100%;
|
127 |
+
}
|
128 |
+
/* ここより下は編集機能以外でマイナスオフセットする必要はない */
|
129 |
+
div[data-block]{
|
130 |
+
margin:0;
|
131 |
+
height:100%;
|
132 |
+
.vk_post {
|
133 |
+
width:100%;
|
134 |
+
height:100%;
|
135 |
+
margin-top:0;
|
136 |
+
}
|
137 |
+
}
|
138 |
+
}
|
139 |
+
.block-list-appender {
|
140 |
+
clear:both;
|
141 |
+
width:100%;
|
142 |
+
}
|
143 |
+
|
144 |
+
}
|
145 |
+
.vk_posts .vk_posts-edit-col {
|
146 |
+
&-xs-3 .editor-block-list__block{
|
147 |
+
width: calc(25% - 30px);
|
148 |
+
}
|
149 |
+
&-xs-4 .editor-block-list__block{
|
150 |
+
width: calc(33.3% - 30px);
|
151 |
+
}
|
152 |
+
&-xs-6 .editor-block-list__block{
|
153 |
+
width: calc(50% - 30px);
|
154 |
+
}
|
155 |
+
&-xs-12 .editor-block-list__block {
|
156 |
+
width: calc(100% - 30px);
|
157 |
+
}
|
158 |
+
@media (min-width: $sm-min) {
|
159 |
+
&-sm-3 .editor-block-list__block{
|
160 |
+
width: calc(25% - 30px);
|
161 |
+
}
|
162 |
+
&-sm-4 .editor-block-list__block{
|
163 |
+
width: calc(33.3% - 30px);
|
164 |
+
}
|
165 |
+
&-sm-6 .editor-block-list__block{
|
166 |
+
width: calc(50% - 30px);
|
167 |
+
}
|
168 |
+
&-sm-12 .editor-block-list__block{
|
169 |
+
width: calc(100% - 30px);
|
170 |
+
}
|
171 |
+
}
|
172 |
+
@media (min-width: $md-min) {
|
173 |
+
&-md-3 .editor-block-list__block{
|
174 |
+
width: calc(25% - 30px);
|
175 |
+
}
|
176 |
+
&-md-4 .editor-block-list__block{
|
177 |
+
width: calc(33.3% - 30px);
|
178 |
+
}
|
179 |
+
&-md-6 .editor-block-list__block{
|
180 |
+
width: calc(50% - 30px);
|
181 |
+
}
|
182 |
+
&-md-12 .editor-block-list__block{
|
183 |
+
width: calc(100% - 30px);
|
184 |
+
}
|
185 |
+
}
|
186 |
+
@media (min-width: $lg-min) {
|
187 |
+
&-lg-3 > .editor-block-list__block{
|
188 |
+
width: calc(25% - 30px);
|
189 |
+
}
|
190 |
+
&-lg-4 > .editor-block-list__block{
|
191 |
+
width: calc(33.3% - 30px);
|
192 |
+
}
|
193 |
+
&-lg-6 > .editor-block-list__block{
|
194 |
+
width: calc(50% - 30px);
|
195 |
+
}
|
196 |
+
&-lg-12 > .editor-block-list__block{
|
197 |
+
width: calc(100% - 30px);
|
198 |
+
}
|
199 |
+
}
|
200 |
+
@media (min-width: $xl-min) {
|
201 |
+
&-xl-3 > .editor-block-list__block{
|
202 |
+
width: calc(25% - 30px);
|
203 |
+
}
|
204 |
+
&-xl-4 > .editor-block-list__block{
|
205 |
+
width: calc(33.3% - 30px);
|
206 |
+
}
|
207 |
+
&-xl-6 > .editor-block-list__block{
|
208 |
+
width: calc(50% - 30px);
|
209 |
+
}
|
210 |
+
&-xl-12 > .editor-block-list__block{
|
211 |
+
width: calc(100% - 30px);
|
212 |
+
}
|
213 |
+
}
|
214 |
+
}
|
215 |
+
|
editor-css/editor-block-build-marge.scss
ADDED
@@ -0,0 +1,2080 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
.vk_block_icon_pro {
|
3 |
+
fill:#c00;
|
4 |
+
}
|
5 |
+
.editor-block-list-item-vk-blocks-card:after,
|
6 |
+
.editor-block-list-item-vk-blocks-child-page:after,
|
7 |
+
.editor-block-list-item-vk-blocks-timeline:after,
|
8 |
+
.editor-block-list-item-vk-blocks-step:after,
|
9 |
+
.editor-block-list-item-vk-blocks-outer:after,
|
10 |
+
.editor-block-list-item-vk-blocks-post-list:after,
|
11 |
+
.editor-block-list-item-vk-blocks-table-of-contents:after,
|
12 |
+
.editor-block-list-item-vk-blocks-simple-table:after{
|
13 |
+
position: absolute;
|
14 |
+
top: 0;
|
15 |
+
right: 0;
|
16 |
+
content: "Pro";
|
17 |
+
display: inline-block;
|
18 |
+
font-size: 10px;
|
19 |
+
line-height: 1;
|
20 |
+
color: #fff;
|
21 |
+
background-color: #cd3034;
|
22 |
+
border-radius: 2px;
|
23 |
+
padding: 3px 4px;
|
24 |
+
}
|
25 |
+
|
26 |
+
.components-base-control__label {
|
27 |
+
font-weight:bold;
|
28 |
+
}
|
29 |
+
.components-base-control .components-base-control__help {
|
30 |
+
margin-top:0;
|
31 |
+
}
|
32 |
+
.components-radio-control__option label { margin-bottom:0; }
|
33 |
+
.components-checkbox-control__label { margin-bottom:0; }
|
34 |
+
.components-color-palette { display:block; overflow:hidden; }
|
35 |
+
|
36 |
+
/*スライダーを表示。デフォルトだとbootstrapに非表示にされてしまう*/
|
37 |
+
input[type=range] {
|
38 |
+
margin: 1px;
|
39 |
+
}
|
40 |
+
|
41 |
+
.editor-url-input input[type="text"]{
|
42 |
+
width:100%;
|
43 |
+
}
|
44 |
+
|
45 |
+
/* editor area *********************************************/
|
46 |
+
.edit-post-visual-editor.editor-styles-wrapper{
|
47 |
+
|
48 |
+
|
49 |
+
/* これがないとGutenberg標準のエディタCSSに負ける */
|
50 |
+
h1:first-child.vk_prBlocks_item_title{
|
51 |
+
margin-top:0.9em;
|
52 |
+
}
|
53 |
+
|
54 |
+
/* Bootstrap Adjuster */
|
55 |
+
$border_primary: 1px solid #e5e5e5;
|
56 |
+
$color_font_default: #464646;
|
57 |
+
|
58 |
+
$xs-max: 575.98px;
|
59 |
+
$sm-max: 767.98px;
|
60 |
+
$md-max: 991.98px;
|
61 |
+
$lg-max: 1199.98px;
|
62 |
+
|
63 |
+
$sm-min: 576px;
|
64 |
+
$md-min: 768px;
|
65 |
+
$lg-min: 992px;
|
66 |
+
$xl-min: 1200px;
|
67 |
+
|
68 |
+
$color-danger : #b52727;
|
69 |
+
|
70 |
+
/*-------------------------------------------*/
|
71 |
+
/* card
|
72 |
+
/*-------------------------------------------*/
|
73 |
+
|
74 |
+
// Card ボタンリンクの説明
|
75 |
+
.postList_itemCard_button-option {
|
76 |
+
margin-bottom: 5px;
|
77 |
+
}
|
78 |
+
|
79 |
+
.vk_post_imgOuter {
|
80 |
+
position: relative;
|
81 |
+
.components-button {
|
82 |
+
position: absolute;
|
83 |
+
top: 50%;
|
84 |
+
left: 50%;
|
85 |
+
transform: translateY(-50%) translateX(-50%);
|
86 |
+
transition: all 1s;
|
87 |
+
}
|
88 |
+
.button-delete {
|
89 |
+
opacity: 0;
|
90 |
+
border:1px solid $color-danger;
|
91 |
+
color:$color-danger;
|
92 |
+
transition: all 1s;
|
93 |
+
&:hover {
|
94 |
+
background-color: $color-danger;
|
95 |
+
color:#fff;
|
96 |
+
}
|
97 |
+
}
|
98 |
+
}
|
99 |
+
.vk_post_imgOuter:hover .button-delete {
|
100 |
+
transition: all 1s;
|
101 |
+
opacity: 1;
|
102 |
+
}
|
103 |
+
|
104 |
+
|
105 |
+
/*-------------------------------------------*/
|
106 |
+
/* vk_post Layout
|
107 |
+
/*-------------------------------------------*/
|
108 |
+
/* If exclude the .vk_posts that, when you select the .media don't work */
|
109 |
+
|
110 |
+
|
111 |
+
// .vk_posts .editor-inner-blocks .editor-block-list__layout .wp-block .editor-block-list__block-edit div .vk_post-col {
|
112 |
+
|
113 |
+
.vk_posts > .vk_posts-edit {
|
114 |
+
width:100%;
|
115 |
+
.editor-block-list__layout {
|
116 |
+
display: flex;
|
117 |
+
flex-wrap: wrap;
|
118 |
+
padding:0;
|
119 |
+
width:100%;
|
120 |
+
}
|
121 |
+
.editor-block-list__block {
|
122 |
+
margin:0 15px 30px;
|
123 |
+
padding:0;
|
124 |
+
.block-editor-block-list__block-edit {
|
125 |
+
margin:0;
|
126 |
+
height:100%;
|
127 |
+
}
|
128 |
+
/* ここより下は編集機能以外でマイナスオフセットする必要はない */
|
129 |
+
div[data-block]{
|
130 |
+
margin:0;
|
131 |
+
height:100%;
|
132 |
+
.vk_post {
|
133 |
+
width:100%;
|
134 |
+
height:100%;
|
135 |
+
margin-top:0;
|
136 |
+
}
|
137 |
+
}
|
138 |
+
}
|
139 |
+
.block-list-appender {
|
140 |
+
clear:both;
|
141 |
+
width:100%;
|
142 |
+
}
|
143 |
+
|
144 |
+
}
|
145 |
+
.vk_posts .vk_posts-edit-col {
|
146 |
+
&-xs-3 .editor-block-list__block{
|
147 |
+
width: calc(25% - 30px);
|
148 |
+
}
|
149 |
+
&-xs-4 .editor-block-list__block{
|
150 |
+
width: calc(33.3% - 30px);
|
151 |
+
}
|
152 |
+
&-xs-6 .editor-block-list__block{
|
153 |
+
width: calc(50% - 30px);
|
154 |
+
}
|
155 |
+
&-xs-12 .editor-block-list__block {
|
156 |
+
width: calc(100% - 30px);
|
157 |
+
}
|
158 |
+
@media (min-width: $sm-min) {
|
159 |
+
&-sm-3 .editor-block-list__block{
|
160 |
+
width: calc(25% - 30px);
|
161 |
+
}
|
162 |
+
&-sm-4 .editor-block-list__block{
|
163 |
+
width: calc(33.3% - 30px);
|
164 |
+
}
|
165 |
+
&-sm-6 .editor-block-list__block{
|
166 |
+
width: calc(50% - 30px);
|
167 |
+
}
|
168 |
+
&-sm-12 .editor-block-list__block{
|
169 |
+
width: calc(100% - 30px);
|
170 |
+
}
|
171 |
+
}
|
172 |
+
@media (min-width: $md-min) {
|
173 |
+
&-md-3 .editor-block-list__block{
|
174 |
+
width: calc(25% - 30px);
|
175 |
+
}
|
176 |
+
&-md-4 .editor-block-list__block{
|
177 |
+
width: calc(33.3% - 30px);
|
178 |
+
}
|
179 |
+
&-md-6 .editor-block-list__block{
|
180 |
+
width: calc(50% - 30px);
|
181 |
+
}
|
182 |
+
&-md-12 .editor-block-list__block{
|
183 |
+
width: calc(100% - 30px);
|
184 |
+
}
|
185 |
+
}
|
186 |
+
@media (min-width: $lg-min) {
|
187 |
+
&-lg-3 > .editor-block-list__block{
|
188 |
+
width: calc(25% - 30px);
|
189 |
+
}
|
190 |
+
&-lg-4 > .editor-block-list__block{
|
191 |
+
width: calc(33.3% - 30px);
|
192 |
+
}
|
193 |
+
&-lg-6 > .editor-block-list__block{
|
194 |
+
width: calc(50% - 30px);
|
195 |
+
}
|
196 |
+
&-lg-12 > .editor-block-list__block{
|
197 |
+
width: calc(100% - 30px);
|
198 |
+
}
|
199 |
+
}
|
200 |
+
@media (min-width: $xl-min) {
|
201 |
+
&-xl-3 > .editor-block-list__block{
|
202 |
+
width: calc(25% - 30px);
|
203 |
+
}
|
204 |
+
&-xl-4 > .editor-block-list__block{
|
205 |
+
width: calc(33.3% - 30px);
|
206 |
+
}
|
207 |
+
&-xl-6 > .editor-block-list__block{
|
208 |
+
width: calc(50% - 30px);
|
209 |
+
}
|
210 |
+
&-xl-12 > .editor-block-list__block{
|
211 |
+
width: calc(100% - 30px);
|
212 |
+
}
|
213 |
+
}
|
214 |
+
}
|
215 |
+
|
216 |
+
/*-------------------------------------------*/
|
217 |
+
/* リストデザイン
|
218 |
+
/*-------------------------------------------*/
|
219 |
+
@mixin mark-before {
|
220 |
+
font-family: "Font Awesome 5 Free";
|
221 |
+
font-weight: 900;
|
222 |
+
position: absolute;
|
223 |
+
}
|
224 |
+
|
225 |
+
$stylePalette: (
|
226 |
+
is-style-vk-default: "•",
|
227 |
+
is-style-vk-arrow-mark: "\f138",
|
228 |
+
is-style-vk-triangle-mark: "\f0da",
|
229 |
+
is-style-vk-check-mark: "\f00c",
|
230 |
+
is-style-vk-check-circle-mark: "\f058",
|
231 |
+
is-style-vk-check-square-mark: "\f14a",
|
232 |
+
is-style-vk-handpoint-mark: "\f0a4",
|
233 |
+
is-style-vk-pencil-mark: "\f303",
|
234 |
+
is-style-vk-smile-mark: "\f118",
|
235 |
+
is-style-vk-frown-mark: "\f119"
|
236 |
+
);
|
237 |
+
|
238 |
+
$colorPalette: (
|
239 |
+
vk-has-pale-pink-color: #f78da7,
|
240 |
+
vk-has-vivid-red-color: #cf2e2e,
|
241 |
+
vk-has-luminous-vivid-orange-color: #ff6900,
|
242 |
+
vk-has-luminous-vivid-amber-color: #fcb900,
|
243 |
+
vk-has-light-green-cyan-color: #7bdcb5,
|
244 |
+
vk-has-vivid-green-cyan-color: #00d084,
|
245 |
+
vk-has-pale-cyan-blue-color: #8ed1fc,
|
246 |
+
vk-has-vivid-cyan-blue-color: #0693e3,
|
247 |
+
vk-has-vivid-purple-color: #9b51e0,
|
248 |
+
vk-has-very-light-gray-color: #eee,
|
249 |
+
vk-has-cyan-bluish-gray-color: #abb8c3,
|
250 |
+
vk-has-very-dark-gray-color: #313131
|
251 |
+
);
|
252 |
+
|
253 |
+
ul,
|
254 |
+
ol {
|
255 |
+
&.is-style {
|
256 |
+
&-vk-default,
|
257 |
+
&-vk-arrow-mark,
|
258 |
+
&-vk-triangle-mark,
|
259 |
+
&-vk-check-mark,
|
260 |
+
&-vk-check-circle-mark,
|
261 |
+
&-vk-check-square-mark,
|
262 |
+
&-vk-handpoint-mark,
|
263 |
+
&-vk-pencil-mark,
|
264 |
+
&-vk-smile-mark,
|
265 |
+
&-vk-frown-mark,
|
266 |
+
&-vk-numbered-circle-mark,
|
267 |
+
&-vk-numbered-square-mark {
|
268 |
+
padding-inline-start: 2em;
|
269 |
+
li {
|
270 |
+
list-style: none;
|
271 |
+
position: relative;
|
272 |
+
margin-bottom: 0.8em;
|
273 |
+
line-height: 1.65em;
|
274 |
+
}
|
275 |
+
}
|
276 |
+
}
|
277 |
+
|
278 |
+
&.is-style-vk-numbered-circle-mark {
|
279 |
+
counter-reset: number;
|
280 |
+
list-style-type: none;
|
281 |
+
|
282 |
+
li {
|
283 |
+
position: relative;
|
284 |
+
list-style: none;
|
285 |
+
|
286 |
+
&:before {
|
287 |
+
position: absolute;
|
288 |
+
left: -0.3em;
|
289 |
+
counter-increment: number;
|
290 |
+
content: counter(number);
|
291 |
+
margin-left: -25px;
|
292 |
+
background: #222;
|
293 |
+
color: #fff;
|
294 |
+
text-indent: 0;
|
295 |
+
display: inline-block;
|
296 |
+
font-weight: bold;
|
297 |
+
border-radius: 50%;
|
298 |
+
font-size: 1em;
|
299 |
+
line-height: 1em;
|
300 |
+
padding: 0.3em 0.37em 0.2em;
|
301 |
+
text-align: center;
|
302 |
+
}
|
303 |
+
}
|
304 |
+
}
|
305 |
+
|
306 |
+
&.is-style-vk-numbered-square-mark {
|
307 |
+
counter-reset: number;
|
308 |
+
list-style-type: none;
|
309 |
+
|
310 |
+
li {
|
311 |
+
position: relative;
|
312 |
+
list-style: none;
|
313 |
+
|
314 |
+
&:before {
|
315 |
+
position: absolute;
|
316 |
+
left: -0.3em;
|
317 |
+
counter-increment: number;
|
318 |
+
content: counter(number);
|
319 |
+
margin-left: -25px;
|
320 |
+
background: #222;
|
321 |
+
color: #fff;
|
322 |
+
text-indent: 0;
|
323 |
+
display: inline-block;
|
324 |
+
font-weight: bold;
|
325 |
+
font-size: 1em;
|
326 |
+
line-height: 1em;
|
327 |
+
padding: 0.3em 0.37em 0.2em;
|
328 |
+
text-align: center;
|
329 |
+
border-radius: 2px;
|
330 |
+
}
|
331 |
+
}
|
332 |
+
}
|
333 |
+
|
334 |
+
&.is-style-vk-numbered-circle-mark,
|
335 |
+
&.is-style-vk-numbered-square-mark {
|
336 |
+
&.fa-lg {
|
337 |
+
li::before {
|
338 |
+
left: -0.8em;
|
339 |
+
}
|
340 |
+
}
|
341 |
+
|
342 |
+
&.fa-2x {
|
343 |
+
li {
|
344 |
+
line-height: 1.25em;
|
345 |
+
}
|
346 |
+
|
347 |
+
li::before {
|
348 |
+
left: -1.1em;
|
349 |
+
}
|
350 |
+
}
|
351 |
+
|
352 |
+
&.fa-3x {
|
353 |
+
li {
|
354 |
+
line-height: 1.25em;
|
355 |
+
}
|
356 |
+
|
357 |
+
li::before {
|
358 |
+
left: -1.4em;
|
359 |
+
}
|
360 |
+
}
|
361 |
+
|
362 |
+
&.fa-4x {
|
363 |
+
li {
|
364 |
+
line-height: 1.25em;
|
365 |
+
}
|
366 |
+
|
367 |
+
li::before {
|
368 |
+
left: -1.5em;
|
369 |
+
}
|
370 |
+
}
|
371 |
+
|
372 |
+
&.fa-5x {
|
373 |
+
li {
|
374 |
+
line-height: 1.25em;
|
375 |
+
}
|
376 |
+
|
377 |
+
li::before {
|
378 |
+
left: -1.6em;
|
379 |
+
}
|
380 |
+
}
|
381 |
+
}
|
382 |
+
|
383 |
+
@each $styleClass, $faCode in $stylePalette {
|
384 |
+
&.#{$styleClass} {
|
385 |
+
li {
|
386 |
+
&::before {
|
387 |
+
@include mark-before;
|
388 |
+
content: $faCode;
|
389 |
+
left: -1.5em;
|
390 |
+
}
|
391 |
+
}
|
392 |
+
}
|
393 |
+
&.is-style-vk-default {
|
394 |
+
li {
|
395 |
+
&::before {
|
396 |
+
font-size: 22px;
|
397 |
+
line-height: 1.1em;
|
398 |
+
}
|
399 |
+
}
|
400 |
+
}
|
401 |
+
}
|
402 |
+
|
403 |
+
@each $colorClass, $color in $colorPalette {
|
404 |
+
&.#{$colorClass} {
|
405 |
+
li::before {
|
406 |
+
color: $color;
|
407 |
+
}
|
408 |
+
}
|
409 |
+
|
410 |
+
&.is-style-vk-numbered-circle-mark.#{$colorClass},
|
411 |
+
&.is-style-vk-numbered-square-mark.#{$colorClass} {
|
412 |
+
li::before {
|
413 |
+
color: #ffffff;
|
414 |
+
background-color: $color;
|
415 |
+
}
|
416 |
+
}
|
417 |
+
}
|
418 |
+
}
|
419 |
+
//ul,ol
|
420 |
+
|
421 |
+
/*-------------------------------------------*/
|
422 |
+
/* グループブロック デザイン
|
423 |
+
/*-------------------------------------------*/
|
424 |
+
|
425 |
+
@mixin pad-mag {
|
426 |
+
padding: 1.8em;
|
427 |
+
margin: 1.2em 0;
|
428 |
+
}
|
429 |
+
@mixin inner-item-pad-mag {
|
430 |
+
h2,
|
431 |
+
h3,
|
432 |
+
h4,
|
433 |
+
h5,
|
434 |
+
h6 {
|
435 |
+
margin-bottom: 1rem;
|
436 |
+
}
|
437 |
+
ul,
|
438 |
+
ol {
|
439 |
+
margin-top: 0;
|
440 |
+
li:last-child {
|
441 |
+
margin-bottom: 0;
|
442 |
+
}
|
443 |
+
}
|
444 |
+
}
|
445 |
+
|
446 |
+
.wp-block-group {
|
447 |
+
&.is-style {
|
448 |
+
&-vk-group {
|
449 |
+
&-solid {
|
450 |
+
border: solid 3px;
|
451 |
+
@include pad-mag;
|
452 |
+
@include inner-item-pad-mag;
|
453 |
+
}
|
454 |
+
&-solid-roundcorner {
|
455 |
+
border: solid 3px;
|
456 |
+
border-radius: 8px;
|
457 |
+
@include pad-mag;
|
458 |
+
@include inner-item-pad-mag;
|
459 |
+
}
|
460 |
+
&-dotted {
|
461 |
+
border: dotted 1px;
|
462 |
+
@include pad-mag;
|
463 |
+
@include inner-item-pad-mag;
|
464 |
+
}
|
465 |
+
&-dashed {
|
466 |
+
border: dashed 2px;
|
467 |
+
@include pad-mag;
|
468 |
+
@include inner-item-pad-mag;
|
469 |
+
}
|
470 |
+
&-double {
|
471 |
+
border: double 5px;
|
472 |
+
@include pad-mag;
|
473 |
+
@include inner-item-pad-mag;
|
474 |
+
}
|
475 |
+
&-stitch {
|
476 |
+
margin: 1em 0;
|
477 |
+
padding: 0.5em;
|
478 |
+
border-radius: 8px;
|
479 |
+
@include inner-item-pad-mag;
|
480 |
+
.wp-block-group__inner-container {
|
481 |
+
border: dashed 2px;
|
482 |
+
border-radius: 8px;
|
483 |
+
padding: 1.8em;
|
484 |
+
}
|
485 |
+
}
|
486 |
+
&-top-bottom-border {
|
487 |
+
border-top: solid 1px;
|
488 |
+
border-bottom: solid 1px;
|
489 |
+
@include pad-mag;
|
490 |
+
@include inner-item-pad-mag;
|
491 |
+
padding-left: 0;
|
492 |
+
padding-right: 0;
|
493 |
+
}
|
494 |
+
&-shadow {
|
495 |
+
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
|
496 |
+
@include pad-mag;
|
497 |
+
@include inner-item-pad-mag;
|
498 |
+
}
|
499 |
+
}
|
500 |
+
}
|
501 |
+
h3:first-child,
|
502 |
+
h4:first-child {
|
503 |
+
margin-top: 0;
|
504 |
+
}
|
505 |
+
|
506 |
+
/* *:last-child で指定するとブロックエディタでカラムの中にいれた時に枠の外にはみ出す */
|
507 |
+
p,
|
508 |
+
ul,
|
509 |
+
ol,
|
510 |
+
dl,
|
511 |
+
table,
|
512 |
+
.wp-block-columns {
|
513 |
+
&:last-child {
|
514 |
+
margin-bottom: 0;
|
515 |
+
}
|
516 |
+
}
|
517 |
+
|
518 |
+
@each $colorClass, $color in $colorPalette {
|
519 |
+
&.#{$colorClass} {
|
520 |
+
border-color: $color;
|
521 |
+
.wp-block-group__inner-container {
|
522 |
+
border-color: $color;
|
523 |
+
}
|
524 |
+
}
|
525 |
+
}
|
526 |
+
} //.wp-block-group
|
527 |
+
|
528 |
+
/*-------------------------------------------*/
|
529 |
+
/* YouTube
|
530 |
+
/*-------------------------------------------*/
|
531 |
+
.wp-block-embed {
|
532 |
+
&-youtube {
|
533 |
+
iframe {
|
534 |
+
width: 100%;
|
535 |
+
}
|
536 |
+
}
|
537 |
+
}
|
538 |
+
|
539 |
+
.alert{
|
540 |
+
|
541 |
+
padding: 1em;
|
542 |
+
margin: 1em 0;
|
543 |
+
border-radius: 3px;
|
544 |
+
p {
|
545 |
+
margin-bottom:0;
|
546 |
+
}
|
547 |
+
|
548 |
+
& + &{
|
549 |
+
margin-top: 2em;
|
550 |
+
}
|
551 |
+
|
552 |
+
a{
|
553 |
+
transition: color .3s linear, opacity .3s linear;
|
554 |
+
&:link, &:visited{
|
555 |
+
opacity: .8;
|
556 |
+
text-decoration: underline;
|
557 |
+
}
|
558 |
+
&:hover, &:visited{
|
559 |
+
opacity: 1;
|
560 |
+
text-decoration: none;
|
561 |
+
}
|
562 |
+
}
|
563 |
+
|
564 |
+
@each $var in (
|
565 |
+
(success, #dff0d8,#3c763d,#d6e9c6),
|
566 |
+
(info, #d9edf7,#31708f,#bce8f1),
|
567 |
+
(warning, #fcf8e3,#8a6d3b,#faebcc),
|
568 |
+
(danger, #f2dede,#a94442,#ebccd1),
|
569 |
+
){
|
570 |
+
$class-name: nth($var, 1);
|
571 |
+
$color-bg: nth($var, 2);
|
572 |
+
$color: nth($var, 3);
|
573 |
+
$color-border :nth($var, 4);
|
574 |
+
&-#{$class-name}{
|
575 |
+
background-color: $color-bg;
|
576 |
+
color:$color;
|
577 |
+
border-color:$color-border;
|
578 |
+
}
|
579 |
+
}
|
580 |
+
}
|
581 |
+
|
582 |
+
.vk_balloon {
|
583 |
+
display: flex;
|
584 |
+
align-items: center;
|
585 |
+
margin-bottom:1em;
|
586 |
+
figure{
|
587 |
+
margin:0;
|
588 |
+
}
|
589 |
+
p {
|
590 |
+
word-break: break-all;
|
591 |
+
background: #f5f5f5;
|
592 |
+
padding:1.1rem 1.4rem;
|
593 |
+
}
|
594 |
+
}
|
595 |
+
.vk_balloon_icon {
|
596 |
+
flex-basis: 96px;
|
597 |
+
flex-shrink: 0;
|
598 |
+
text-align: center;
|
599 |
+
}
|
600 |
+
.vk_balloon_icon_image {
|
601 |
+
vertical-align: bottom;
|
602 |
+
max-width: 64px;
|
603 |
+
}
|
604 |
+
.vk_balloon_icon_name {
|
605 |
+
display: block;
|
606 |
+
text-align: center;
|
607 |
+
font-size: 0.7rem;
|
608 |
+
margin-top:0.2rem;
|
609 |
+
}
|
610 |
+
.vk_balloon_content{
|
611 |
+
position: relative;
|
612 |
+
text-align: left;
|
613 |
+
&.editor-rich-text__tinymce[data-is-placeholder-visible=true] {
|
614 |
+
// これがないと未入力時に吹き出しが2重になる
|
615 |
+
position: absolute;
|
616 |
+
}
|
617 |
+
}
|
618 |
+
|
619 |
+
/* type
|
620 |
+
/*-------------------------------------------*/
|
621 |
+
.vk_balloon-type-serif{
|
622 |
+
.vk_balloon_content{
|
623 |
+
border-color: #f5f5f5;
|
624 |
+
border-radius: .4em;
|
625 |
+
&::after{
|
626 |
+
content: '';
|
627 |
+
position: absolute;
|
628 |
+
width: 0;
|
629 |
+
height: 0;
|
630 |
+
border: 20px solid transparent;
|
631 |
+
}
|
632 |
+
}
|
633 |
+
}
|
634 |
+
.vk_balloon-type-think{
|
635 |
+
.vk_balloon_content{
|
636 |
+
border-radius: 2rem;
|
637 |
+
&::before,
|
638 |
+
&::after{
|
639 |
+
position: absolute;
|
640 |
+
content: '';
|
641 |
+
border-radius: 50%;
|
642 |
+
background: inherit;
|
643 |
+
}
|
644 |
+
&::before{
|
645 |
+
width: 20px;
|
646 |
+
height: 20px;
|
647 |
+
}
|
648 |
+
&::after{
|
649 |
+
width: 10px;
|
650 |
+
height: 10px;
|
651 |
+
}
|
652 |
+
}
|
653 |
+
}
|
654 |
+
|
655 |
+
/* position
|
656 |
+
/*-------------------------------------------*/
|
657 |
+
.vk_balloon-position-left{
|
658 |
+
&.vk_balloon-type-serif{
|
659 |
+
.vk_balloon_icon{
|
660 |
+
margin-right: 2rem;
|
661 |
+
}
|
662 |
+
|
663 |
+
.vk_balloon_content{
|
664 |
+
&::after{
|
665 |
+
left: 0;
|
666 |
+
top: 50%;
|
667 |
+
border-right-color: inherit;
|
668 |
+
border-left: 0;
|
669 |
+
margin-top: -20px;
|
670 |
+
margin-left: -20px;
|
671 |
+
}
|
672 |
+
}
|
673 |
+
}
|
674 |
+
|
675 |
+
&.vk_balloon-type-think{
|
676 |
+
.vk_balloon_icon{
|
677 |
+
margin-right: 2.5rem;
|
678 |
+
}
|
679 |
+
|
680 |
+
.vk_balloon_content{
|
681 |
+
&::before{
|
682 |
+
left: -22px;
|
683 |
+
top: 7px;
|
684 |
+
}
|
685 |
+
|
686 |
+
&::after{
|
687 |
+
left: -35px;
|
688 |
+
top: 20px;
|
689 |
+
}
|
690 |
+
}
|
691 |
+
}
|
692 |
+
}//.vk_balloon-position-left
|
693 |
+
.vk_balloon-position-right{
|
694 |
+
flex-direction: row-reverse;
|
695 |
+
&.vk_balloon-type-serif{
|
696 |
+
.vk_balloon_icon{
|
697 |
+
margin-left: 2rem;
|
698 |
+
}
|
699 |
+
|
700 |
+
.vk_balloon_content{
|
701 |
+
&::after{
|
702 |
+
right: 0;
|
703 |
+
top: 50%;
|
704 |
+
border-left-color: inherit;
|
705 |
+
border-right: 0;
|
706 |
+
margin-top: -20px;
|
707 |
+
margin-right: -20px;
|
708 |
+
}
|
709 |
+
}
|
710 |
+
}
|
711 |
+
|
712 |
+
&.vk_balloon-type-think{
|
713 |
+
.vk_balloon_icon{
|
714 |
+
margin-left: 2.5rem;
|
715 |
+
}
|
716 |
+
|
717 |
+
.vk_balloon_content{
|
718 |
+
&::before{
|
719 |
+
right: -22px;
|
720 |
+
top: 7px;
|
721 |
+
}
|
722 |
+
|
723 |
+
&::after{
|
724 |
+
right: -35px;
|
725 |
+
top: 20px;
|
726 |
+
}
|
727 |
+
}
|
728 |
+
}
|
729 |
+
}//.vk_balloon-position-right
|
730 |
+
|
731 |
+
|
732 |
+
.vk_balloon {
|
733 |
+
&.animation-vibration{
|
734 |
+
.vk_balloon_content{
|
735 |
+
display: inline-block;
|
736 |
+
animation: vibration .1s infinite;
|
737 |
+
}
|
738 |
+
}
|
739 |
+
}
|
740 |
+
|
741 |
+
/**
|
742 |
+
Animation Vibration
|
743 |
+
*/
|
744 |
+
@keyframes vibration {
|
745 |
+
0% {transform: translate(0px, 0px) rotateZ(0deg)}
|
746 |
+
25% {transform: translate(2px, 2px) rotateZ(1deg)}
|
747 |
+
50% {transform: translate(0px, 2px) rotateZ(0deg)}
|
748 |
+
75% {transform: translate(2px, 0px) rotateZ(-1deg)}
|
749 |
+
100% {transform: translate(0px, 0px) rotateZ(0deg)}
|
750 |
+
}
|
751 |
+
|
752 |
+
/*********************
|
753 |
+
* SmartPhone
|
754 |
+
0px - 480px
|
755 |
+
***********************/
|
756 |
+
|
757 |
+
|
758 |
+
@media only screen and (max-width: 480px) {
|
759 |
+
.vk_balloon_content{
|
760 |
+
font-size: .9em;
|
761 |
+
}
|
762 |
+
.vk_balloon-type-serif {
|
763 |
+
.vk_balloon_content{
|
764 |
+
&::after {
|
765 |
+
border: 15px solid transparent;
|
766 |
+
}
|
767 |
+
}
|
768 |
+
}
|
769 |
+
.vk_balloon-type-think {
|
770 |
+
.vk_balloon_content{
|
771 |
+
&::after {
|
772 |
+
border: 5px solid transparent;
|
773 |
+
}
|
774 |
+
}
|
775 |
+
}
|
776 |
+
|
777 |
+
.vk_balloon{
|
778 |
+
align-items: normal;
|
779 |
+
&.vk_balloon-position-left{
|
780 |
+
&.vk_balloon-type-serif{
|
781 |
+
.vk_balloon_icon{
|
782 |
+
max-width:86px;
|
783 |
+
margin-right: 1.5rem;
|
784 |
+
}//.vk_balloon_icon
|
785 |
+
.vk_balloon_content{
|
786 |
+
display: inline-block;
|
787 |
+
&::after{
|
788 |
+
top: 35px;
|
789 |
+
margin-left: -15px;
|
790 |
+
}
|
791 |
+
}//.vk_balloon_content
|
792 |
+
}//&.vk_balloon-type-serif
|
793 |
+
|
794 |
+
&.vk_balloon-type-think{
|
795 |
+
.vk_balloon_icon{
|
796 |
+
margin-right: 2rem;
|
797 |
+
max-width: 86px;
|
798 |
+
}
|
799 |
+
.vk_balloon_content{
|
800 |
+
display: inline-block;
|
801 |
+
|
802 |
+
&::before{
|
803 |
+
width: 15px;
|
804 |
+
height: 15px;
|
805 |
+
}
|
806 |
+
}
|
807 |
+
}
|
808 |
+
}//&.vk_balloon-position-left
|
809 |
+
|
810 |
+
&.vk_balloon-position-right{
|
811 |
+
text-align: right;
|
812 |
+
|
813 |
+
&.vk_balloon-type-serif{
|
814 |
+
.vk_balloon_icon{
|
815 |
+
margin-left: auto;
|
816 |
+
margin-right: 0;
|
817 |
+
}
|
818 |
+
|
819 |
+
.vk_balloon_content{
|
820 |
+
display: inline-block;
|
821 |
+
&::after{
|
822 |
+
top: 35px;
|
823 |
+
margin-right: -15px;
|
824 |
+
}
|
825 |
+
}
|
826 |
+
}//&.vk_balloon-type-serif
|
827 |
+
|
828 |
+
&.vk_balloon-type-think{
|
829 |
+
.vk_balloon_icon{
|
830 |
+
margin-left: 2rem;
|
831 |
+
margin-right: 0;
|
832 |
+
max-width:86px;
|
833 |
+
}
|
834 |
+
|
835 |
+
.vk_balloon_content{
|
836 |
+
display: inline-block;
|
837 |
+
}
|
838 |
+
}//&.vk_balloon-type-think
|
839 |
+
}//.vk_balloon-position-right
|
840 |
+
}//.vk_balloon
|
841 |
+
|
842 |
+
.vk_balloon_icon{
|
843 |
+
max-width:96px;
|
844 |
+
}
|
845 |
+
} // @media only screen and (max-width: 480px) {
|
846 |
+
|
847 |
+
.vk_button {
|
848 |
+
margin: 5px 0;
|
849 |
+
|
850 |
+
&-color-custom {
|
851 |
+
a:hover {
|
852 |
+
opacity: 0.8;
|
853 |
+
box-shadow: 0 0 0 0.2rem rgba(171, 184, 195, .25);
|
854 |
+
}
|
855 |
+
}
|
856 |
+
|
857 |
+
&-align {
|
858 |
+
&-left {
|
859 |
+
text-align: left;
|
860 |
+
}
|
861 |
+
|
862 |
+
&-center {
|
863 |
+
text-align: center;
|
864 |
+
}
|
865 |
+
|
866 |
+
&-right {
|
867 |
+
text-align: right;
|
868 |
+
}
|
869 |
+
|
870 |
+
&-block {
|
871 |
+
display: block;
|
872 |
+
}
|
873 |
+
}
|
874 |
+
|
875 |
+
&_link {
|
876 |
+
min-width: 100px;
|
877 |
+
min-height: 30px;
|
878 |
+
|
879 |
+
&.btn { // .btn指定がないと管理画面で標準の .btn の指定に負ける
|
880 |
+
padding-top: .7em;
|
881 |
+
padding-bottom: .6em;
|
882 |
+
user-select: text;
|
883 |
+
}
|
884 |
+
|
885 |
+
&_before {
|
886 |
+
margin-right: 0.7rem;
|
887 |
+
}
|
888 |
+
|
889 |
+
&_after {
|
890 |
+
margin-left: 0.7rem;
|
891 |
+
}
|
892 |
+
|
893 |
+
&_subCaption {
|
894 |
+
display: block;
|
895 |
+
overflow: hidden;
|
896 |
+
margin: 0;
|
897 |
+
font-size: 80%;
|
898 |
+
}
|
899 |
+
}
|
900 |
+
|
901 |
+
.editor-rich-text {
|
902 |
+
//display: inline-block;
|
903 |
+
}
|
904 |
+
}
|
905 |
+
|
906 |
+
|
907 |
+
/*-------------------------------------------*/
|
908 |
+
/* Lightnig がまだ Bootstrap4 でないため手動で追加したクラス
|
909 |
+
/* Lighnting が 4 を同梱したら削除して化
|
910 |
+
/*-------------------------------------------*/
|
911 |
+
$color_primary: #007bff;
|
912 |
+
$color_secondary: #6c757d;
|
913 |
+
$color_success: #28a745;
|
914 |
+
$color_info: #17a2b8;
|
915 |
+
$color_warning: #ffc107;
|
916 |
+
$color_danger: #dc3545;
|
917 |
+
$color_light: #f8f9fa;
|
918 |
+
$color_dark: #343a40;
|
919 |
+
/* .btn がないと標準のBS4の指定に負ける */
|
920 |
+
.btn.btn-primary {
|
921 |
+
color: #fff;
|
922 |
+
}
|
923 |
+
|
924 |
+
.btn.btn-secondary {
|
925 |
+
color: #fff;
|
926 |
+
background-color: $color_secondary;
|
927 |
+
}
|
928 |
+
|
929 |
+
.btn.btn-success {
|
930 |
+
color: #fff;
|
931 |
+
}
|
932 |
+
|
933 |
+
.btn.btn-info {
|
934 |
+
color: #fff;
|
935 |
+
}
|
936 |
+
|
937 |
+
.btn.btn-warning {
|
938 |
+
color: #fff;
|
939 |
+
}
|
940 |
+
|
941 |
+
.btn.btn-danger {
|
942 |
+
color: #fff;
|
943 |
+
}
|
944 |
+
|
945 |
+
.btn.btn-light {
|
946 |
+
color: #fff;
|
947 |
+
background-color: $color_light;
|
948 |
+
}
|
949 |
+
|
950 |
+
.btn.btn-dark {
|
951 |
+
color: #fff;
|
952 |
+
background-color: $color_dark;
|
953 |
+
}
|
954 |
+
|
955 |
+
.btn.btn-secondary:hover,
|
956 |
+
.btn.btn-dark:hover {
|
957 |
+
color: #fff;
|
958 |
+
}
|
959 |
+
|
960 |
+
/* .btn がないと標準のBS4の指定に負ける */
|
961 |
+
.btn.btn-outline-primary {
|
962 |
+
color: $color_primary;
|
963 |
+
border: 1px solid $color_primary;
|
964 |
+
background: none;
|
965 |
+
box-shadow: none;
|
966 |
+
}
|
967 |
+
|
968 |
+
.btn.btn-outline-secondary {
|
969 |
+
color: $color_secondary;
|
970 |
+
border: 1px solid $color_secondary;
|
971 |
+
background: none;
|
972 |
+
box-shadow: none;
|
973 |
+
}
|
974 |
+
|
975 |
+
.btn.btn-outline-success {
|
976 |
+
color: $color_success;
|
977 |
+
border: 1px solid $color_success;
|
978 |
+
background: none;
|
979 |
+
box-shadow: none;
|
980 |
+
}
|
981 |
+
|
982 |
+
.btn.btn-outline-info {
|
983 |
+
color: $color_info;
|
984 |
+
border: 1px solid $color_info;
|
985 |
+
background: none;
|
986 |
+
box-shadow: none;
|
987 |
+
}
|
988 |
+
|
989 |
+
.btn.btn-outline-warning {
|
990 |
+
color: $color_warning;
|
991 |
+
border: 1px solid $color_warning;
|
992 |
+
background: none;
|
993 |
+
box-shadow: none;
|
994 |
+
}
|
995 |
+
|
996 |
+
.btn.btn-outline-danger {
|
997 |
+
color: $color_danger;
|
998 |
+
border: 1px solid $color_danger;
|
999 |
+
background: none;
|
1000 |
+
box-shadow: none;
|
1001 |
+
}
|
1002 |
+
|
1003 |
+
.btn.btn-outline-light {
|
1004 |
+
color: $color_light;
|
1005 |
+
border: 1px solid $color_light;
|
1006 |
+
background: none;
|
1007 |
+
box-shadow: none;
|
1008 |
+
}
|
1009 |
+
|
1010 |
+
.btn.btn-outline-dark {
|
1011 |
+
color: $color_dark;
|
1012 |
+
border: 1px solid $color_dark;
|
1013 |
+
background: none;
|
1014 |
+
box-shadow: none;
|
1015 |
+
}
|
1016 |
+
|
1017 |
+
.btn.btn-outline-primary:hover,
|
1018 |
+
.btn.btn-outline-primary:focus {
|
1019 |
+
background: $color_primary;
|
1020 |
+
color: #fff;
|
1021 |
+
}
|
1022 |
+
|
1023 |
+
.btn.btn-outline-secondary:hover,
|
1024 |
+
.btn.btn-outline-secondary:focus {
|
1025 |
+
background: $color_secondary;
|
1026 |
+
color: #fff;
|
1027 |
+
}
|
1028 |
+
|
1029 |
+
.btn.btn-outline-success:hover,
|
1030 |
+
.btn.btn-outline-success:focus {
|
1031 |
+
background: $color_success;
|
1032 |
+
color: #fff;
|
1033 |
+
}
|
1034 |
+
|
1035 |
+
.btn.btn-outline-info:hover,
|
1036 |
+
.btn.btn-outline-info:focus {
|
1037 |
+
background: $color_info;
|
1038 |
+
color: #fff;
|
1039 |
+
}
|
1040 |
+
|
1041 |
+
.btn.btn-outline-warning:hover,
|
1042 |
+
.btn.btn-outline-warning:focus {
|
1043 |
+
background: $color_warning;
|
1044 |
+
color: #fff;
|
1045 |
+
}
|
1046 |
+
|
1047 |
+
.btn.btn-outline-danger:hover,
|
1048 |
+
.btn.btn-outline-danger:focus {
|
1049 |
+
background: $color_danger;
|
1050 |
+
color: #fff;
|
1051 |
+
}
|
1052 |
+
|
1053 |
+
.btn.btn-outline-light:hover,
|
1054 |
+
.btn.btn-outline-light:focus {
|
1055 |
+
background: $color_light;
|
1056 |
+
color: #fff;
|
1057 |
+
}
|
1058 |
+
|
1059 |
+
.btn.btn-outline-dark:hover,
|
1060 |
+
.btn.btn-outline-dark:focus {
|
1061 |
+
background: $color_dark;
|
1062 |
+
color: #fff;
|
1063 |
+
}
|
1064 |
+
|
1065 |
+
/* .qaItem
|
1066 |
+
/*-------------------------------------------*/
|
1067 |
+
.vk_faq { display:block; overflow:hidden;border-bottom:1px dotted #ccc; padding:0px 0px 25px; margin:25px 0px; width:100%; position: relative; }
|
1068 |
+
.vk_faq_title,
|
1069 |
+
.vk_faq_content {
|
1070 |
+
border:none;padding-left: 35px;
|
1071 |
+
&:before {
|
1072 |
+
position: absolute;left:0;font-size:24px;line-height: 105%;
|
1073 |
+
}
|
1074 |
+
}
|
1075 |
+
.vk_faq_title { margin-bottom:15px;font-size:18px;font-weight:700;
|
1076 |
+
&:before { font-family:"areal";content:"Q ";color:#e50000; }
|
1077 |
+
}
|
1078 |
+
.vk_faq_content { margin:0px;
|
1079 |
+
&:before { content:"A ";color:#337ab7;font-family: "" }
|
1080 |
+
}
|
1081 |
+
|
1082 |
+
//* .flowBox
|
1083 |
+
/*-------------------------------------------*/
|
1084 |
+
.vk_flow-arrow-on:after {
|
1085 |
+
content:"";
|
1086 |
+
background: url('../images/arrow_bottom.svg') center 50% no-repeat;
|
1087 |
+
background-size: 50px 50px;
|
1088 |
+
display:block; overflow:hidden;
|
1089 |
+
height:50px;
|
1090 |
+
width:50px;
|
1091 |
+
margin:0 auto;
|
1092 |
+
}
|
1093 |
+
.vk_flow-arrow-off { padding-bottom:0px; margin-bottom:30px; }
|
1094 |
+
.vk_flow-arrow-off:after {
|
1095 |
+
content:"";font-size:0;background-image: none;
|
1096 |
+
}
|
1097 |
+
.vk_flow_frame {
|
1098 |
+
display: flex;
|
1099 |
+
padding:20px 25px; border:3px solid #e5e5e5;margin:0;
|
1100 |
+
justify-content: space-between;
|
1101 |
+
}
|
1102 |
+
.vk_flow_frame_text { display:block;overflow:hidden;margin:0;width:100%;box-sizing: border-box; }
|
1103 |
+
.vk_flow_frame_text_title,
|
1104 |
+
.vk_flow_frame_text_content { padding-left:0;border:none; }
|
1105 |
+
.vk_flow_frame_text_title { border-bottom:1px dotted #ccc; margin:0 0 10px;padding:0 0 5px; font-size:1.2em; }
|
1106 |
+
.vk_flow_frame_text_content { margin-bottom:0px; }
|
1107 |
+
.vk_flow_frame_image {
|
1108 |
+
max-width:150px;
|
1109 |
+
margin-left:15px;
|
1110 |
+
box-sizing: border-box;
|
1111 |
+
}
|
1112 |
+
|
1113 |
+
/*-------------------------------------------*/
|
1114 |
+
/* CSS
|
1115 |
+
/*-------------------------------------------*/
|
1116 |
+
@mixin reset() {
|
1117 |
+
background: none;
|
1118 |
+
border:none;
|
1119 |
+
border-radius: 0;
|
1120 |
+
padding:0;
|
1121 |
+
font-weight: normal;
|
1122 |
+
box-shadow:none;
|
1123 |
+
&:after {
|
1124 |
+
content:none;
|
1125 |
+
border:none;
|
1126 |
+
}
|
1127 |
+
&:before{
|
1128 |
+
content:none;
|
1129 |
+
}
|
1130 |
+
}
|
1131 |
+
|
1132 |
+
// .vk_heading は指定が強い要素( Charm )も消すために必要
|
1133 |
+
.vk_heading.vk_heading-style-plain {
|
1134 |
+
.vk_heading_title {
|
1135 |
+
@include reset;
|
1136 |
+
&:after {
|
1137 |
+
@include reset;
|
1138 |
+
}
|
1139 |
+
}
|
1140 |
+
}
|
1141 |
+
|
1142 |
+
.vk_heading_subtext {
|
1143 |
+
margin-bottom:0;
|
1144 |
+
}
|
1145 |
+
|
1146 |
+
//管理画面側の見出しブロックのスタイルのcssになります。
|
1147 |
+
//cssを修正する場合はfunctions-color.phpのdynamic_css部分とこちらのscssを修正してください。
|
1148 |
+
|
1149 |
+
$color_key: #337ab7;
|
1150 |
+
|
1151 |
+
@mixin title_unset {
|
1152 |
+
position: relative;
|
1153 |
+
margin-left: unset;
|
1154 |
+
margin-right: unset;
|
1155 |
+
outline: unset;
|
1156 |
+
outline-offset: unset;
|
1157 |
+
box-shadow: unset;
|
1158 |
+
border-radius: unset;
|
1159 |
+
overflow: unset;
|
1160 |
+
}
|
1161 |
+
|
1162 |
+
@mixin title_no_bg {
|
1163 |
+
background-color: transparent;
|
1164 |
+
border: none;
|
1165 |
+
padding: 0.6em 0 0.5em;
|
1166 |
+
margin-bottom: 1.2em;
|
1167 |
+
}
|
1168 |
+
|
1169 |
+
@mixin title_brackets {
|
1170 |
+
border: none;
|
1171 |
+
background-color: transparent !important;
|
1172 |
+
padding: 0.7em;
|
1173 |
+
margin-bottom: 1.2em;
|
1174 |
+
text-align: center;
|
1175 |
+
border-bottom: unset !important;
|
1176 |
+
}
|
1177 |
+
|
1178 |
+
@mixin title_brackets_before_after {
|
1179 |
+
content: "";
|
1180 |
+
position: absolute;
|
1181 |
+
top: 0;
|
1182 |
+
width: 12px;
|
1183 |
+
height: 100%;
|
1184 |
+
display: inline-block;
|
1185 |
+
margin-left: 0;
|
1186 |
+
}
|
1187 |
+
|
1188 |
+
.is-style-vk-heading {
|
1189 |
+
&,
|
1190 |
+
.entry-body &,
|
1191 |
+
.editor-styles-wrapper & {
|
1192 |
+
h3.is-style-vk-heading:after {
|
1193 |
+
border-bottom: none !important;
|
1194 |
+
}
|
1195 |
+
&-plain {
|
1196 |
+
@include title_unset;
|
1197 |
+
|
1198 |
+
background-color: transparent;
|
1199 |
+
border: none;
|
1200 |
+
padding: unset;
|
1201 |
+
|
1202 |
+
&::before,
|
1203 |
+
&::after {
|
1204 |
+
content: none;
|
1205 |
+
}
|
1206 |
+
}
|
1207 |
+
|
1208 |
+
// &-speech_balloon_fill {
|
1209 |
+
// @include title_unset;
|
1210 |
+
|
1211 |
+
// overflow: unset;
|
1212 |
+
// border: none;
|
1213 |
+
// padding: 0.6em 0.8em 0.5em;
|
1214 |
+
// margin-bottom: 1.2em;
|
1215 |
+
// color: #fff;
|
1216 |
+
// border-radius: 4px;
|
1217 |
+
// text-align: left;
|
1218 |
+
// background-color: $color_key;
|
1219 |
+
|
1220 |
+
// &::before {
|
1221 |
+
// content: "";
|
1222 |
+
// position: absolute;
|
1223 |
+
// top: auto;
|
1224 |
+
// left: 40px;
|
1225 |
+
// bottom: -20px;
|
1226 |
+
// width: auto;
|
1227 |
+
// margin-left: -10px;
|
1228 |
+
// border: 10px solid transparent;
|
1229 |
+
// border-top: 10px solid $color_key;
|
1230 |
+
// z-index: 2;
|
1231 |
+
// height: auto;
|
1232 |
+
// background-color: transparent !important;
|
1233 |
+
// }
|
1234 |
+
|
1235 |
+
// &::after {
|
1236 |
+
// content: none;
|
1237 |
+
// }
|
1238 |
+
// }
|
1239 |
+
|
1240 |
+
// &-background_fill {
|
1241 |
+
// @include title_unset;
|
1242 |
+
|
1243 |
+
// border: none;
|
1244 |
+
// margin-bottom: 1.2em;
|
1245 |
+
// color: #fff;
|
1246 |
+
// border-radius: 4px;
|
1247 |
+
// background-color: $color_key;
|
1248 |
+
|
1249 |
+
// &::before, &::after {
|
1250 |
+
// content: none;
|
1251 |
+
// }
|
1252 |
+
// }
|
1253 |
+
|
1254 |
+
// &-background_fill_stitch {
|
1255 |
+
// position: relative;
|
1256 |
+
// margin-left: unset;
|
1257 |
+
// margin-right: unset;
|
1258 |
+
// background-color: $color_key;
|
1259 |
+
// padding: 0.6em 0.7em 0.5em;
|
1260 |
+
// margin-bottom: 1.2em;
|
1261 |
+
// color: #fff;
|
1262 |
+
// border-radius: 4px;
|
1263 |
+
// border: none;
|
1264 |
+
// outline: dashed 1px #fff;
|
1265 |
+
// outline-offset: -4px;
|
1266 |
+
|
1267 |
+
// &::before, &::after {
|
1268 |
+
// content: none;
|
1269 |
+
// }
|
1270 |
+
// }
|
1271 |
+
|
1272 |
+
&-background_fill_lightgray {
|
1273 |
+
@include title_unset;
|
1274 |
+
|
1275 |
+
border: none;
|
1276 |
+
background-color: #efefef;
|
1277 |
+
padding: 0.6em 0.7em 0.5em;
|
1278 |
+
margin-bottom: 1.2em;
|
1279 |
+
border-radius: 4px;
|
1280 |
+
|
1281 |
+
&::before,
|
1282 |
+
&::after {
|
1283 |
+
content: none;
|
1284 |
+
}
|
1285 |
+
}
|
1286 |
+
|
1287 |
+
// &-topborder_background_fill_none {
|
1288 |
+
// @include title_unset;
|
1289 |
+
// @include title_no_bg;
|
1290 |
+
|
1291 |
+
// border-left: unset;
|
1292 |
+
// border-right: unset;
|
1293 |
+
// border-top: 2px solid $color_key;
|
1294 |
+
// border-bottom: 1px solid #ccc;
|
1295 |
+
|
1296 |
+
// &::before, &::after {
|
1297 |
+
// content: none;
|
1298 |
+
// }
|
1299 |
+
// }
|
1300 |
+
|
1301 |
+
// &-topborder_background_fill_black {
|
1302 |
+
// @include title_unset;
|
1303 |
+
|
1304 |
+
// border-left: unset;
|
1305 |
+
// border-right: unset;
|
1306 |
+
// background-color: #191919;
|
1307 |
+
// padding: 0.6em 0.7em 0.5em;
|
1308 |
+
// margin-bottom: 1.2em;
|
1309 |
+
// color: #fff;
|
1310 |
+
// border-top: 2px solid $color_key;
|
1311 |
+
// border-bottom: 1px solid #999;
|
1312 |
+
|
1313 |
+
// &::before, &::after {
|
1314 |
+
// content: none;
|
1315 |
+
// }
|
1316 |
+
// }
|
1317 |
+
|
1318 |
+
// &-double {
|
1319 |
+
// @include title_unset;
|
1320 |
+
// @include title_no_bg;
|
1321 |
+
|
1322 |
+
// border-top: double 3px $color_key;
|
1323 |
+
// border-bottom: double 3px $color_key;
|
1324 |
+
|
1325 |
+
// &::before, &::after {
|
1326 |
+
// content: none;
|
1327 |
+
// }
|
1328 |
+
// }
|
1329 |
+
|
1330 |
+
&-double_black {
|
1331 |
+
@include title_unset;
|
1332 |
+
@include title_no_bg;
|
1333 |
+
|
1334 |
+
border-top: double 3px #333;
|
1335 |
+
border-bottom: double 3px #333;
|
1336 |
+
|
1337 |
+
&::before,
|
1338 |
+
&::after {
|
1339 |
+
content: none;
|
1340 |
+
}
|
1341 |
+
}
|
1342 |
+
|
1343 |
+
// &-double_bottomborder {
|
1344 |
+
// @include title_unset;
|
1345 |
+
// @include title_no_bg;
|
1346 |
+
|
1347 |
+
// border-bottom: double 3px $color_key;
|
1348 |
+
|
1349 |
+
// &::before, &::after {
|
1350 |
+
// content: none;
|
1351 |
+
// }
|
1352 |
+
// }
|
1353 |
+
|
1354 |
+
&-double_bottomborder_black {
|
1355 |
+
@include title_unset;
|
1356 |
+
@include title_no_bg;
|
1357 |
+
|
1358 |
+
border-bottom: double 3px #333;
|
1359 |
+
|
1360 |
+
&::before,
|
1361 |
+
&::after {
|
1362 |
+
content: none;
|
1363 |
+
}
|
1364 |
+
}
|
1365 |
+
|
1366 |
+
// &-solid {
|
1367 |
+
// @include title_unset;
|
1368 |
+
// @include title_no_bg;
|
1369 |
+
|
1370 |
+
// border-top: solid 1px $color_key;
|
1371 |
+
// border-bottom: solid 1px $color_key;
|
1372 |
+
|
1373 |
+
// &::before, &::after {
|
1374 |
+
// content: none;
|
1375 |
+
// }
|
1376 |
+
// }
|
1377 |
+
|
1378 |
+
&-solid_black {
|
1379 |
+
@include title_unset;
|
1380 |
+
@include title_no_bg;
|
1381 |
+
|
1382 |
+
border-top: solid 1px #333;
|
1383 |
+
border-bottom: solid 1px #333;
|
1384 |
+
|
1385 |
+
&::before,
|
1386 |
+
&::after {
|
1387 |
+
content: none;
|
1388 |
+
}
|
1389 |
+
}
|
1390 |
+
|
1391 |
+
// &-solid_bottomborder {
|
1392 |
+
// @include title_unset;
|
1393 |
+
// @include title_no_bg;
|
1394 |
+
|
1395 |
+
// border-bottom: solid 1px $color_key;
|
1396 |
+
|
1397 |
+
// &::before, &::after {
|
1398 |
+
// content: none;
|
1399 |
+
// }
|
1400 |
+
// }
|
1401 |
+
|
1402 |
+
&-solid_bottomborder_black {
|
1403 |
+
@include title_unset;
|
1404 |
+
@include title_no_bg;
|
1405 |
+
|
1406 |
+
border-bottom: solid 1px #333;
|
1407 |
+
|
1408 |
+
&::before,
|
1409 |
+
&::after {
|
1410 |
+
content: none;
|
1411 |
+
}
|
1412 |
+
}
|
1413 |
+
|
1414 |
+
// &-solid_bottomborder_leftkeycolor {
|
1415 |
+
// @include title_unset;
|
1416 |
+
// @include title_no_bg;
|
1417 |
+
|
1418 |
+
// border-bottom: 1px solid #ccc;
|
1419 |
+
// text-align: left;
|
1420 |
+
|
1421 |
+
// &:before {
|
1422 |
+
// content: none;
|
1423 |
+
// }
|
1424 |
+
|
1425 |
+
// &:after {
|
1426 |
+
// content: ".";
|
1427 |
+
// line-height: 0;
|
1428 |
+
// display: block;
|
1429 |
+
// overflow: hidden;
|
1430 |
+
// position: absolute;
|
1431 |
+
// left: 0;
|
1432 |
+
// bottom: -1px;
|
1433 |
+
// width: 30%;
|
1434 |
+
// border: unset;
|
1435 |
+
// border-top: none !important;
|
1436 |
+
// border-bottom: 1px solid $color_key;
|
1437 |
+
// margin-left: 0;
|
1438 |
+
// }
|
1439 |
+
// }
|
1440 |
+
|
1441 |
+
&-dotted_bottomborder_black {
|
1442 |
+
@include title_unset;
|
1443 |
+
@include title_no_bg;
|
1444 |
+
|
1445 |
+
border-bottom: 1px dotted #111;
|
1446 |
+
|
1447 |
+
&::before,
|
1448 |
+
&::after {
|
1449 |
+
content: none;
|
1450 |
+
}
|
1451 |
+
}
|
1452 |
+
|
1453 |
+
&-both_ends {
|
1454 |
+
@include title_unset;
|
1455 |
+
|
1456 |
+
background-color: transparent;
|
1457 |
+
border: none;
|
1458 |
+
display: flex;
|
1459 |
+
align-items: center;
|
1460 |
+
text-align: center;
|
1461 |
+
margin-bottom: 1.2em;
|
1462 |
+
padding: 0;
|
1463 |
+
|
1464 |
+
&::before,
|
1465 |
+
&::after {
|
1466 |
+
content: "";
|
1467 |
+
flex-grow: 1;
|
1468 |
+
border-bottom: 1px solid #333;
|
1469 |
+
position: unset;
|
1470 |
+
width: unset;
|
1471 |
+
border-top: none;
|
1472 |
+
}
|
1473 |
+
|
1474 |
+
&::before {
|
1475 |
+
margin-right: 1em;
|
1476 |
+
top: unset;
|
1477 |
+
}
|
1478 |
+
|
1479 |
+
&::after {
|
1480 |
+
margin-left: 1em;
|
1481 |
+
bottom: unset;
|
1482 |
+
}
|
1483 |
+
}
|
1484 |
+
|
1485 |
+
// &-leftborder {
|
1486 |
+
// @include title_unset;
|
1487 |
+
|
1488 |
+
// border: none;
|
1489 |
+
// color: #333;
|
1490 |
+
// padding: 0.6em 0.7em 0.5em;
|
1491 |
+
// margin-bottom: 1.2em;
|
1492 |
+
// border-left: solid 2px $color_key;
|
1493 |
+
// background-color: #efefef;
|
1494 |
+
// text-align: left;
|
1495 |
+
|
1496 |
+
// &::before, &::after {
|
1497 |
+
// content: none;
|
1498 |
+
// }
|
1499 |
+
// }
|
1500 |
+
|
1501 |
+
// &-leftborder_nobackground {
|
1502 |
+
// @include title_unset;
|
1503 |
+
// @include title_no_bg;
|
1504 |
+
|
1505 |
+
// padding: 0.6em 0.7em 0.5em;
|
1506 |
+
// border-left: solid 2px $color_key;
|
1507 |
+
// text-align: left;
|
1508 |
+
|
1509 |
+
// &::before, &::after {
|
1510 |
+
// content: none;
|
1511 |
+
// }
|
1512 |
+
// }
|
1513 |
+
|
1514 |
+
// &-diagonal_stripe_bottomborder{
|
1515 |
+
// @include title_unset;
|
1516 |
+
// @include title_no_bg;
|
1517 |
+
// &:before{
|
1518 |
+
// content: none;
|
1519 |
+
// }
|
1520 |
+
// &::after{
|
1521 |
+
// content:"";
|
1522 |
+
// position: absolute;
|
1523 |
+
// left: 0;
|
1524 |
+
// bottom: 0;
|
1525 |
+
// width: 100%;
|
1526 |
+
// height: 7px;
|
1527 |
+
// border: none !important;
|
1528 |
+
// background: linear-gradient(
|
1529 |
+
// -45deg,
|
1530 |
+
// rgba(255,255,255,0.1) 25%, $color_key 25%,
|
1531 |
+
// #222 50%, rgba(255,255,255,0.1) 50%,
|
1532 |
+
// rgba(255,255,255,0.1) 75%, $color_key 75%,
|
1533 |
+
// #222
|
1534 |
+
// );
|
1535 |
+
// background-size: 5px 5px;
|
1536 |
+
// margin-left: 0;
|
1537 |
+
// }
|
1538 |
+
// }
|
1539 |
+
|
1540 |
+
// &-brackets{
|
1541 |
+
// @include title_unset;
|
1542 |
+
// @include title_brackets;
|
1543 |
+
// &::before,
|
1544 |
+
// &::after{
|
1545 |
+
// @include title_brackets_before_after;
|
1546 |
+
// border-top: solid 1px $color_key;
|
1547 |
+
// border-bottom: solid 1px $color_key;
|
1548 |
+
// }
|
1549 |
+
// &::before{
|
1550 |
+
// border-left: solid 1px $color_key;
|
1551 |
+
// left: 0;
|
1552 |
+
// }
|
1553 |
+
// &::after{
|
1554 |
+
// border-right: solid 1px $color_key;
|
1555 |
+
// right: 0;
|
1556 |
+
// left: auto;
|
1557 |
+
// }
|
1558 |
+
// }
|
1559 |
+
&-brackets_black {
|
1560 |
+
@include title_unset;
|
1561 |
+
@include title_brackets;
|
1562 |
+
&::before,
|
1563 |
+
&::after {
|
1564 |
+
@include title_brackets_before_after;
|
1565 |
+
|
1566 |
+
border-top: solid 1px #333;
|
1567 |
+
border-bottom: solid 1px #333;
|
1568 |
+
}
|
1569 |
+
|
1570 |
+
&::before {
|
1571 |
+
border-left: solid 1px #333;
|
1572 |
+
left: 0;
|
1573 |
+
}
|
1574 |
+
|
1575 |
+
&::after {
|
1576 |
+
border-right: solid 1px #333 !important;
|
1577 |
+
right: 0;
|
1578 |
+
left: auto;
|
1579 |
+
}
|
1580 |
+
}
|
1581 |
+
|
1582 |
+
// &-small_bottomborder{
|
1583 |
+
// @include title_unset;
|
1584 |
+
// border:none;
|
1585 |
+
// color:#333;
|
1586 |
+
// background-color:transparent !important;
|
1587 |
+
// overflow: unset;
|
1588 |
+
// padding: 0;
|
1589 |
+
// text-align: center;
|
1590 |
+
// margin-bottom: 3em;
|
1591 |
+
// &:before{
|
1592 |
+
// content: none;
|
1593 |
+
// }
|
1594 |
+
// &::after{
|
1595 |
+
// content: "";
|
1596 |
+
// display: inline-block;
|
1597 |
+
// position: absolute;
|
1598 |
+
// left: 50%;
|
1599 |
+
// margin-left: -19px;
|
1600 |
+
// bottom: -24px;
|
1601 |
+
// width: 38px;
|
1602 |
+
// border-top: solid 2px $color_key;
|
1603 |
+
// }
|
1604 |
+
// }
|
1605 |
+
} //.is-style-vk-heading
|
1606 |
+
} //.editor-block-list__block
|
1607 |
+
|
1608 |
+
.is-style-vk-image {
|
1609 |
+
&-border {
|
1610 |
+
img {
|
1611 |
+
border: 1px solid #e5e5e5;
|
1612 |
+
}
|
1613 |
+
}
|
1614 |
+
|
1615 |
+
&-photoFrame {
|
1616 |
+
background-color: #fff;
|
1617 |
+
padding: 10px;
|
1618 |
+
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
|
1619 |
+
|
1620 |
+
figcaption {
|
1621 |
+
margin: 8px 0 0;
|
1622 |
+
}
|
1623 |
+
}
|
1624 |
+
}
|
1625 |
+
|
1626 |
+
/*-------------------------------------------*/
|
1627 |
+
/* .vk_prBlocks
|
1628 |
+
/*-------------------------------------------*/
|
1629 |
+
.vk_prBlocks_item {
|
1630 |
+
@media screen and (max-width: 992px) {
|
1631 |
+
margin-bottom: 1.5em;
|
1632 |
+
}
|
1633 |
+
}
|
1634 |
+
.vk_prBlocks_item {
|
1635 |
+
&_link {
|
1636 |
+
color: #333;
|
1637 |
+
&:hover {
|
1638 |
+
color: #333;
|
1639 |
+
text-decoration: none;
|
1640 |
+
}
|
1641 |
+
}
|
1642 |
+
&_icon_outer {
|
1643 |
+
display: block;
|
1644 |
+
position: relative;
|
1645 |
+
margin: 0 auto;
|
1646 |
+
width: 80px;
|
1647 |
+
height: 80px;
|
1648 |
+
border-radius: 50%;
|
1649 |
+
}
|
1650 |
+
&_icon {
|
1651 |
+
position: absolute;
|
1652 |
+
top: 50%;
|
1653 |
+
left: 50%;
|
1654 |
+
transform: translateY(-50%) translateX(-50%);
|
1655 |
+
font-size: 36px;
|
1656 |
+
color: #fff;
|
1657 |
+
}
|
1658 |
+
&_title {
|
1659 |
+
background-color: transparent;
|
1660 |
+
margin-top: 0.9em;
|
1661 |
+
margin-bottom: 0.6em;
|
1662 |
+
text-align: center;
|
1663 |
+
font-size: 21px;
|
1664 |
+
line-height: 1.4em;
|
1665 |
+
border: none;
|
1666 |
+
padding: 0;
|
1667 |
+
&::before {
|
1668 |
+
content: none;
|
1669 |
+
}
|
1670 |
+
&::after {
|
1671 |
+
border: none;
|
1672 |
+
}
|
1673 |
+
}
|
1674 |
+
&_image {
|
1675 |
+
position: relative;
|
1676 |
+
display: block;
|
1677 |
+
width: 120px;
|
1678 |
+
height: 120px;
|
1679 |
+
margin: 0 auto;
|
1680 |
+
overflow: hidden;
|
1681 |
+
border-radius: 50%;
|
1682 |
+
text-indent: -9999px;
|
1683 |
+
}
|
1684 |
+
&_summary {
|
1685 |
+
margin-bottom: 0.5em;
|
1686 |
+
text-align: center;
|
1687 |
+
line-height: 1.8em;
|
1688 |
+
}
|
1689 |
+
}
|
1690 |
+
|
1691 |
+
/*-------------------------------------------*/
|
1692 |
+
/* Layout
|
1693 |
+
/*-------------------------------------------*/
|
1694 |
+
.vk_prContent {
|
1695 |
+
margin-left:-15px;
|
1696 |
+
margin-right:-15px;
|
1697 |
+
@media (min-width: 576px) {
|
1698 |
+
display: flex;
|
1699 |
+
.col-sm-6 {
|
1700 |
+
width:50%;
|
1701 |
+
}
|
1702 |
+
&-layout {
|
1703 |
+
&-imageLeft {
|
1704 |
+
flex-direction: row;
|
1705 |
+
}
|
1706 |
+
|
1707 |
+
&-imageRight {
|
1708 |
+
flex-direction: row-reverse;
|
1709 |
+
}
|
1710 |
+
|
1711 |
+
&-imageLeft .vk_prContent_colImg {
|
1712 |
+
padding-right: 2em;
|
1713 |
+
}
|
1714 |
+
|
1715 |
+
&-imageRight .vk_prContent_colImg {
|
1716 |
+
padding-left: 2em;
|
1717 |
+
}
|
1718 |
+
}
|
1719 |
+
} // @media (min-width: 768px) {
|
1720 |
+
}
|
1721 |
+
|
1722 |
+
|
1723 |
+
/*-------------------------------------------*/
|
1724 |
+
/* others
|
1725 |
+
/*-------------------------------------------*/
|
1726 |
+
.vk_prContent {
|
1727 |
+
&_colTxt {
|
1728 |
+
vertical-align: top;;
|
1729 |
+
&_title {
|
1730 |
+
background-color: transparent;
|
1731 |
+
font-weight: bold;
|
1732 |
+
padding: 0;
|
1733 |
+
box-shadow: none;
|
1734 |
+
border: none;
|
1735 |
+
margin-bottom:0.8em;
|
1736 |
+
@media (max-width: 575.98px) {
|
1737 |
+
&:first-child{
|
1738 |
+
margin-top: 30px;
|
1739 |
+
}
|
1740 |
+
}
|
1741 |
+
&:after {
|
1742 |
+
content: "";
|
1743 |
+
line-height: 0;
|
1744 |
+
display: block;
|
1745 |
+
overflow: hidden;
|
1746 |
+
position: absolute;
|
1747 |
+
bottom: -1px;
|
1748 |
+
width: 0;
|
1749 |
+
border: none;
|
1750 |
+
}
|
1751 |
+
}
|
1752 |
+
&_text {
|
1753 |
+
line-height: 2em;
|
1754 |
+
margin-bottom:1.7em;
|
1755 |
+
}
|
1756 |
+
&_btn.btn {
|
1757 |
+
@media (min-width: 992px) {
|
1758 |
+
font-size:16px;
|
1759 |
+
}
|
1760 |
+
}
|
1761 |
+
} // &_colTxt {
|
1762 |
+
&_colImg{
|
1763 |
+
&_image {
|
1764 |
+
max-width: 100%;
|
1765 |
+
height: auto;
|
1766 |
+
}
|
1767 |
+
.components-button.button{
|
1768 |
+
margin: 1em;
|
1769 |
+
}
|
1770 |
+
.components-button.image-button {
|
1771 |
+
margin: 0;
|
1772 |
+
}
|
1773 |
+
}
|
1774 |
+
} // .vk_prContent {
|
1775 |
+
|
1776 |
+
/*-------------------------------------------*/
|
1777 |
+
/* CSS
|
1778 |
+
/*-------------------------------------------*/
|
1779 |
+
|
1780 |
+
.vk_table {
|
1781 |
+
&-col-mobile1 {
|
1782 |
+
@media( max-width: 575.98px){
|
1783 |
+
th,
|
1784 |
+
td {
|
1785 |
+
display: block;
|
1786 |
+
}
|
1787 |
+
th {
|
1788 |
+
background-color: rgba(0, 0, 0, 0.05);
|
1789 |
+
}
|
1790 |
+
// ストライプ指定の時の背景色をリセット
|
1791 |
+
&.table-striped tbody {
|
1792 |
+
tr:nth-of-type(odd) {
|
1793 |
+
background: inherit;
|
1794 |
+
}
|
1795 |
+
}
|
1796 |
+
} // @media( max-width: 575.98px){
|
1797 |
+
} // &-col-mobile1 {
|
1798 |
+
}
|
1799 |
+
|
1800 |
+
/*-------------------------------------------*/
|
1801 |
+
/* editor class
|
1802 |
+
/*-------------------------------------------*/
|
1803 |
+
.vk_simpleTable-edit{
|
1804 |
+
.editor-inner-blocks,
|
1805 |
+
.editor-block-list__layout,
|
1806 |
+
.editor-block-list__block,
|
1807 |
+
.editor-rich-text__editable,
|
1808 |
+
.editor-block-list__block-edit{
|
1809 |
+
padding:0;
|
1810 |
+
margin:0;
|
1811 |
+
width:100%;
|
1812 |
+
}
|
1813 |
+
& > .editor-inner-blocks{
|
1814 |
+
margin-top:-1px; // th,td がHTML上ではdivの中になってしまう都合上、線が2pxになるためマイナスオフセット
|
1815 |
+
}
|
1816 |
+
.editor-block-list__block-edit{
|
1817 |
+
height:100%;
|
1818 |
+
}
|
1819 |
+
.block-editor-block-list__insertion-point{
|
1820 |
+
/* 上のセルに被るので選択しにくくなるのでデフォルトのマイナスオフセットを少し下げる */
|
1821 |
+
top:-5px;
|
1822 |
+
}
|
1823 |
+
.editor-block-list__block-edit:before{
|
1824 |
+
right:-0px;
|
1825 |
+
left:-0px;
|
1826 |
+
top:-0px;
|
1827 |
+
bottom:-0px;
|
1828 |
+
// border:1px solid #ff0000;
|
1829 |
+
}
|
1830 |
+
.editor-inner-blocks {
|
1831 |
+
tr {
|
1832 |
+
width:100%;
|
1833 |
+
display: block;
|
1834 |
+
border-bottom:1px solid #e5e5e5;
|
1835 |
+
.editor-block-list__layout {
|
1836 |
+
display: flex;
|
1837 |
+
.editor-block-list__block {
|
1838 |
+
}
|
1839 |
+
}
|
1840 |
+
}
|
1841 |
+
th,
|
1842 |
+
td {
|
1843 |
+
padding: 0;
|
1844 |
+
display: block;
|
1845 |
+
width:100%;
|
1846 |
+
border:none; // デフォルトでつけてくる線を消す
|
1847 |
+
.editor-rich-text__editable{
|
1848 |
+
padding: 14px;
|
1849 |
+
}
|
1850 |
+
}
|
1851 |
+
}
|
1852 |
+
// 編集画面のtableは HTML構造がカオスなので補正
|
1853 |
+
&.table-striped > tbody > .editor-inner-blocks > .editor-block-list__layout > div:nth-of-type(odd) {
|
1854 |
+
background-color: rgba(0, 0, 0, 0.05);
|
1855 |
+
}
|
1856 |
+
}
|
1857 |
+
|
1858 |
+
/*-------------------------------------------*/
|
1859 |
+
/* CSS
|
1860 |
+
/*-------------------------------------------*/
|
1861 |
+
|
1862 |
+
@mixin switchVisibility($pc,$tablet,$mobile) {
|
1863 |
+
.vk_spacer {
|
1864 |
+
.vk_spacer-display-pc {
|
1865 |
+
display: $pc;
|
1866 |
+
}
|
1867 |
+
|
1868 |
+
.vk_spacer-display-tablet {
|
1869 |
+
display: $tablet;
|
1870 |
+
}
|
1871 |
+
|
1872 |
+
.vk_spacer-display-mobile {
|
1873 |
+
display: $mobile;
|
1874 |
+
}
|
1875 |
+
}
|
1876 |
+
}
|
1877 |
+
|
1878 |
+
// Small devices (landscape phones, 576px以下)
|
1879 |
+
@media (max-width: 576px) {
|
1880 |
+
@include switchVisibility(none, none, block);
|
1881 |
+
}
|
1882 |
+
|
1883 |
+
// Medium devices (tablets, 577pxから768px)
|
1884 |
+
@media (min-width: 577px) and (max-width: 768px) {
|
1885 |
+
@include switchVisibility(none, block, none);
|
1886 |
+
}
|
1887 |
+
|
1888 |
+
// Large devices (desktops, 769px以上)
|
1889 |
+
@media (min-width: 769px) {
|
1890 |
+
@include switchVisibility(block, none, none);
|
1891 |
+
}
|
1892 |
+
/*-------------------------------------------*/
|
1893 |
+
/* CSS
|
1894 |
+
/*-------------------------------------------*/
|
1895 |
+
$font_serif:"MS P明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "serif";
|
1896 |
+
|
1897 |
+
// Layout
|
1898 |
+
.vk_staff{
|
1899 |
+
&_text{
|
1900 |
+
float:left;
|
1901 |
+
width: 61.6%;
|
1902 |
+
}
|
1903 |
+
&_photo {
|
1904 |
+
float:right;
|
1905 |
+
width: 32%;
|
1906 |
+
}
|
1907 |
+
&-layout-imageLeft {
|
1908 |
+
.vk_staff_text{
|
1909 |
+
float:right;
|
1910 |
+
}
|
1911 |
+
.vk_staff_photo{
|
1912 |
+
float:left;
|
1913 |
+
}
|
1914 |
+
}
|
1915 |
+
}
|
1916 |
+
|
1917 |
+
//
|
1918 |
+
.vk_staff {
|
1919 |
+
display:block;
|
1920 |
+
overflow:hidden;
|
1921 |
+
&_text{
|
1922 |
+
&_name {
|
1923 |
+
text-align: left;
|
1924 |
+
box-shadow: none;
|
1925 |
+
font-size: 3.5rem;
|
1926 |
+
font-family: $font_serif;
|
1927 |
+
line-height: 1.0;
|
1928 |
+
margin-bottom: 0.5rem;
|
1929 |
+
border: none;
|
1930 |
+
padding: 0;
|
1931 |
+
background-color: transparent;
|
1932 |
+
&:before,
|
1933 |
+
&:after {
|
1934 |
+
border: none;
|
1935 |
+
}
|
1936 |
+
}
|
1937 |
+
|
1938 |
+
&_caption {
|
1939 |
+
font-family: $font_serif;
|
1940 |
+
font-size: 14px;
|
1941 |
+
display: block;
|
1942 |
+
margin: 0 0 0.5rem 4px;
|
1943 |
+
letter-spacing: 5px;
|
1944 |
+
}
|
1945 |
+
&_role {
|
1946 |
+
font-size: 14px;
|
1947 |
+
line-height: 1.6em;
|
1948 |
+
font-family: $font_serif;
|
1949 |
+
}
|
1950 |
+
&_profileTitle{
|
1951 |
+
font-size: 18px;
|
1952 |
+
font-family: $font_serif;
|
1953 |
+
padding-top: 0;
|
1954 |
+
padding-left: 0;
|
1955 |
+
padding-bottom: 2px;
|
1956 |
+
margin-bottom: 1.2rem;
|
1957 |
+
border-top: none;
|
1958 |
+
border-bottom: 1px solid #ccc;
|
1959 |
+
background: none;
|
1960 |
+
&:before,
|
1961 |
+
&:after {
|
1962 |
+
border: none;
|
1963 |
+
}
|
1964 |
+
}
|
1965 |
+
&_profileText {
|
1966 |
+
font-size: 14px;
|
1967 |
+
}
|
1968 |
+
}
|
1969 |
+
&_photo {
|
1970 |
+
display: block;
|
1971 |
+
vertical-align: top;
|
1972 |
+
text-align: center;
|
1973 |
+
button {
|
1974 |
+
width:100%;
|
1975 |
+
}
|
1976 |
+
.image-button{
|
1977 |
+
padding: 0;
|
1978 |
+
margin:0;
|
1979 |
+
display: block;
|
1980 |
+
}
|
1981 |
+
&-border-default {
|
1982 |
+
border: 4px solid #efefef;
|
1983 |
+
padding: 1px;
|
1984 |
+
}
|
1985 |
+
&-border-none {
|
1986 |
+
border: none;
|
1987 |
+
}
|
1988 |
+
&_image {
|
1989 |
+
width: 100%;
|
1990 |
+
margin: 0;
|
1991 |
+
display: block;
|
1992 |
+
}
|
1993 |
+
}
|
1994 |
+
}
|
1995 |
+
|
1996 |
+
|
1997 |
+
// Lightning で幅広の1カラムテンプレート時補正
|
1998 |
+
.page-template-page-onecolumn,
|
1999 |
+
.page-template-page-lp,
|
2000 |
+
.page-template-page-lp-builder {
|
2001 |
+
.vk_staff{
|
2002 |
+
@media ( min-width: 992px ){
|
2003 |
+
&_text{
|
2004 |
+
width: 74%;
|
2005 |
+
&_name {
|
2006 |
+
font-size: 4rem;
|
2007 |
+
}
|
2008 |
+
&_caption {
|
2009 |
+
font-size: 16px;
|
2010 |
+
letter-spacing: 0.5rem;
|
2011 |
+
}
|
2012 |
+
&_role {
|
2013 |
+
letter-spacing: 0.5rem;
|
2014 |
+
}
|
2015 |
+
}
|
2016 |
+
&_photo {
|
2017 |
+
width: 22%;
|
2018 |
+
}
|
2019 |
+
}
|
2020 |
+
@media ( min-width: 1200px ){
|
2021 |
+
&_text{
|
2022 |
+
width: 75%;
|
2023 |
+
}
|
2024 |
+
&_photo {
|
2025 |
+
width: 20%;
|
2026 |
+
}
|
2027 |
+
}
|
2028 |
+
}
|
2029 |
+
}
|
2030 |
+
|
2031 |
+
// .staff-profile-table {
|
2032 |
+
// margin-top: 2em;
|
2033 |
+
// margin-bottom: 80px;
|
2034 |
+
// border: none;
|
2035 |
+
// }
|
2036 |
+
//
|
2037 |
+
// .staff-profile-table dl {
|
2038 |
+
// display: table;
|
2039 |
+
// width: 100%;
|
2040 |
+
// }
|
2041 |
+
//
|
2042 |
+
// .staff-profile-table dt,
|
2043 |
+
// .staff-profile-table dd {
|
2044 |
+
// display: table-cell;
|
2045 |
+
// border-bottom: 1px solid #ccc;
|
2046 |
+
// padding-left: 10px;
|
2047 |
+
// font-size: 14px;
|
2048 |
+
// padding-bottom: 4px;
|
2049 |
+
// }
|
2050 |
+
//
|
2051 |
+
// .staff-profile-table dl {
|
2052 |
+
// margin: 0 0 1rem;
|
2053 |
+
// }
|
2054 |
+
//
|
2055 |
+
// .staff-profile-table dt {
|
2056 |
+
// background: none;
|
2057 |
+
// font-weight: lighter;
|
2058 |
+
// border-left-width: 2px;
|
2059 |
+
// border-left-style: solid;
|
2060 |
+
// width: 30%;
|
2061 |
+
// }
|
2062 |
+
//
|
2063 |
+
// .staff-profile-table dd {
|
2064 |
+
// border-left: none;
|
2065 |
+
// width: 70%;
|
2066 |
+
// }
|
2067 |
+
|
2068 |
+
/*-------------------------------------------*/
|
2069 |
+
/* CSS
|
2070 |
+
/*-------------------------------------------*/
|
2071 |
+
.vk_table-col-overflow {
|
2072 |
+
white-space: nowrap !important;
|
2073 |
+
}
|
2074 |
+
/*# sourceMappingURL=style.scss.map */
|
2075 |
+
|
2076 |
+
/*-------------------------------------------*/
|
2077 |
+
/* CSS
|
2078 |
+
/*-------------------------------------------*/
|
2079 |
+
|
2080 |
+
}
|
editor-css/editor-block-build.scss
CHANGED
@@ -1460,61 +1460,61 @@ $color_key: #337ab7;
|
|
1460 |
/* .vk_prBlocks
|
1461 |
/*-------------------------------------------*/
|
1462 |
.vk_prBlocks_item {
|
1463 |
-
@media screen and (max-width:992px){
|
1464 |
margin-bottom: 1.5em;
|
1465 |
}
|
1466 |
}
|
1467 |
.vk_prBlocks_item {
|
1468 |
&_link {
|
1469 |
color: #333;
|
1470 |
-
&:hover{
|
1471 |
color: #333;
|
1472 |
text-decoration: none;
|
1473 |
}
|
1474 |
}
|
1475 |
&_icon_outer {
|
1476 |
display: block;
|
1477 |
-
position:relative;
|
1478 |
-
margin: 0 auto
|
1479 |
width: 80px;
|
1480 |
height: 80px;
|
1481 |
border-radius: 50%;
|
1482 |
}
|
1483 |
&_icon {
|
1484 |
-
position:absolute;
|
1485 |
-
top:50%;
|
1486 |
-
left:50%;
|
1487 |
transform: translateY(-50%) translateX(-50%);
|
1488 |
font-size: 36px;
|
1489 |
color: #fff;
|
1490 |
}
|
1491 |
-
&_title{
|
1492 |
background-color: transparent;
|
1493 |
-
margin-top:0.9em;
|
1494 |
margin-bottom: 0.6em;
|
1495 |
text-align: center;
|
1496 |
font-size: 21px;
|
1497 |
line-height: 1.4em;
|
1498 |
-
border:none;
|
1499 |
-
padding:0;
|
1500 |
-
&::before{
|
1501 |
content: none;
|
1502 |
}
|
1503 |
-
&::after{
|
1504 |
border: none;
|
1505 |
}
|
1506 |
}
|
1507 |
-
&_image{
|
1508 |
position: relative;
|
1509 |
display: block;
|
1510 |
width: 120px;
|
1511 |
-
height:120px;
|
1512 |
margin: 0 auto;
|
1513 |
overflow: hidden;
|
1514 |
border-radius: 50%;
|
1515 |
-
text-indent
|
1516 |
}
|
1517 |
-
&_summary{
|
1518 |
margin-bottom: 0.5em;
|
1519 |
text-align: center;
|
1520 |
line-height: 1.8em;
|
@@ -1910,4 +1910,310 @@ $font_serif:"MS P明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hirag
|
|
1910 |
/* CSS
|
1911 |
/*-------------------------------------------*/
|
1912 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1913 |
}
|
1460 |
/* .vk_prBlocks
|
1461 |
/*-------------------------------------------*/
|
1462 |
.vk_prBlocks_item {
|
1463 |
+
@media screen and (max-width: 992px) {
|
1464 |
margin-bottom: 1.5em;
|
1465 |
}
|
1466 |
}
|
1467 |
.vk_prBlocks_item {
|
1468 |
&_link {
|
1469 |
color: #333;
|
1470 |
+
&:hover {
|
1471 |
color: #333;
|
1472 |
text-decoration: none;
|
1473 |
}
|
1474 |
}
|
1475 |
&_icon_outer {
|
1476 |
display: block;
|
1477 |
+
position: relative;
|
1478 |
+
margin: 0 auto;
|
1479 |
width: 80px;
|
1480 |
height: 80px;
|
1481 |
border-radius: 50%;
|
1482 |
}
|
1483 |
&_icon {
|
1484 |
+
position: absolute;
|
1485 |
+
top: 50%;
|
1486 |
+
left: 50%;
|
1487 |
transform: translateY(-50%) translateX(-50%);
|
1488 |
font-size: 36px;
|
1489 |
color: #fff;
|
1490 |
}
|
1491 |
+
&_title {
|
1492 |
background-color: transparent;
|
1493 |
+
margin-top: 0.9em;
|
1494 |
margin-bottom: 0.6em;
|
1495 |
text-align: center;
|
1496 |
font-size: 21px;
|
1497 |
line-height: 1.4em;
|
1498 |
+
border: none;
|
1499 |
+
padding: 0;
|
1500 |
+
&::before {
|
1501 |
content: none;
|
1502 |
}
|
1503 |
+
&::after {
|
1504 |
border: none;
|
1505 |
}
|
1506 |
}
|
1507 |
+
&_image {
|
1508 |
position: relative;
|
1509 |
display: block;
|
1510 |
width: 120px;
|
1511 |
+
height: 120px;
|
1512 |
margin: 0 auto;
|
1513 |
overflow: hidden;
|
1514 |
border-radius: 50%;
|
1515 |
+
text-indent: -9999px;
|
1516 |
}
|
1517 |
+
&_summary {
|
1518 |
margin-bottom: 0.5em;
|
1519 |
text-align: center;
|
1520 |
line-height: 1.8em;
|
1910 |
/* CSS
|
1911 |
/*-------------------------------------------*/
|
1912 |
|
1913 |
+
.vk_childPage {
|
1914 |
+
margin-top: 2.5rem;
|
1915 |
+
}
|
1916 |
+
|
1917 |
+
/*-------------------------------------------*/
|
1918 |
+
/* CSS
|
1919 |
+
/*-------------------------------------------*/
|
1920 |
+
$media-sm-up : 576px;
|
1921 |
+
$media-md-up : 768px;
|
1922 |
+
$media-lg-up : 992px;
|
1923 |
+
$media-xl-up : 1200px;
|
1924 |
+
$media-sm-down : 575.98px;
|
1925 |
+
$media-md-down : 767.98px;
|
1926 |
+
$media-lg-down : 991.98px;
|
1927 |
+
$media-xl-down : 1199.98px;
|
1928 |
+
.vk_outer{
|
1929 |
+
background-position: center;
|
1930 |
+
background-size: cover;
|
1931 |
+
background-repeat: no-repeat;
|
1932 |
+
position: relative;
|
1933 |
+
.vk_outer_container{
|
1934 |
+
min-height: 40px;
|
1935 |
+
}
|
1936 |
+
}
|
1937 |
+
.vk_outer-width-full {
|
1938 |
+
margin-left:calc(50% - 50vw);
|
1939 |
+
margin-right:calc(50% - 50vw);
|
1940 |
+
padding-left:calc(50vw - 50%);
|
1941 |
+
padding-right:calc(50vw - 50%);
|
1942 |
+
}
|
1943 |
+
$padding-none:1.5em;
|
1944 |
+
$padding-sm:2em;
|
1945 |
+
$padding-md:2.5em;
|
1946 |
+
$padding-lg:3em;
|
1947 |
+
$padding-xl:3.5em;
|
1948 |
+
.vk_outer-paddingLR-use{
|
1949 |
+
padding-left: $padding-none ;
|
1950 |
+
padding-right: $padding-none ;
|
1951 |
+
@media ( min-width: $media-sm-up ){
|
1952 |
+
padding-left: $padding-sm ;
|
1953 |
+
padding-right: $padding-sm ;
|
1954 |
+
}
|
1955 |
+
@media ( min-width: $media-md-up ){
|
1956 |
+
padding-left: $padding-md ;
|
1957 |
+
padding-right: $padding-md ;
|
1958 |
+
}
|
1959 |
+
@media ( min-width: $media-lg-up ){
|
1960 |
+
padding-left: $padding-lg ;
|
1961 |
+
padding-right: $padding-lg ;
|
1962 |
+
}
|
1963 |
+
@media ( min-width: $media-xl-up ){
|
1964 |
+
padding-left: $padding-xl ;
|
1965 |
+
padding-right: $padding-xl ;
|
1966 |
+
}
|
1967 |
+
}
|
1968 |
+
.vk_outer-paddingVertical-use{
|
1969 |
+
padding-top: $padding-none ;
|
1970 |
+
padding-bottom: $padding-none ;
|
1971 |
+
@media ( min-width: $media-sm-up ){
|
1972 |
+
padding-top: $padding-sm ;
|
1973 |
+
padding-bottom: $padding-sm ;
|
1974 |
+
}
|
1975 |
+
@media ( min-width: $media-md-up ){
|
1976 |
+
padding-top: $padding-md ;
|
1977 |
+
padding-bottom: $padding-md ;
|
1978 |
+
}
|
1979 |
+
@media ( min-width: $media-lg-up ){
|
1980 |
+
padding-top: $padding-lg ;
|
1981 |
+
padding-bottom: $padding-lg ;
|
1982 |
+
}
|
1983 |
+
@media ( min-width: $media-xl-up ){
|
1984 |
+
padding-top: $padding-xl ;
|
1985 |
+
padding-bottom: $padding-xl ;
|
1986 |
+
}
|
1987 |
+
}
|
1988 |
+
|
1989 |
+
.vk_outer-bgPosition-fixed{
|
1990 |
+
background-attachment: fixed !important;
|
1991 |
+
background-size: cover !important;
|
1992 |
+
}
|
1993 |
+
.vk_outer-bgPosition-normal{
|
1994 |
+
background-attachment: unset !important;
|
1995 |
+
background-size: cover !important;
|
1996 |
+
}
|
1997 |
+
|
1998 |
+
.vk_outer_separator {
|
1999 |
+
svg {
|
2000 |
+
display: block;
|
2001 |
+
max-height: 100px;
|
2002 |
+
position: absolute;
|
2003 |
+
left: 0;
|
2004 |
+
width: 100%;
|
2005 |
+
}
|
2006 |
+
}
|
2007 |
+
.vk_outer_separator-position-upper{
|
2008 |
+
svg{
|
2009 |
+
top: 0;
|
2010 |
+
transform: rotate(180deg);
|
2011 |
+
}
|
2012 |
+
}
|
2013 |
+
.vk_outer_separator-position-lower{
|
2014 |
+
svg{
|
2015 |
+
bottom: 0;
|
2016 |
+
}
|
2017 |
+
}
|
2018 |
+
|
2019 |
+
// .editor-block-list__block-edit{
|
2020 |
+
// margin: 0!important;
|
2021 |
+
// }
|
2022 |
+
|
2023 |
+
/*-------------------------------------------*/
|
2024 |
+
/* CSS
|
2025 |
+
/*-------------------------------------------*/
|
2026 |
+
|
2027 |
+
/*-------------------------------------------*/
|
2028 |
+
/* CSS
|
2029 |
+
/*-------------------------------------------*/
|
2030 |
+
.vk_step {
|
2031 |
+
margin: 2em 0;
|
2032 |
+
|
2033 |
+
.vk_step_item {
|
2034 |
+
position: relative;
|
2035 |
+
padding: 0 0 2.4em 4.5em;
|
2036 |
+
margin: 0 auto;
|
2037 |
+
|
2038 |
+
h3:first-of-type,
|
2039 |
+
h4:first-of-type {
|
2040 |
+
padding-top: 0.5em;
|
2041 |
+
margin-top: 0;
|
2042 |
+
}
|
2043 |
+
&_content > p:first-child {
|
2044 |
+
margin-bottom: 0.3em;
|
2045 |
+
line-height: 1;
|
2046 |
+
color: #666;
|
2047 |
+
}
|
2048 |
+
.vk_step_item_caption {
|
2049 |
+
margin-bottom: 0.5em;
|
2050 |
+
color: #666;
|
2051 |
+
}
|
2052 |
+
.vk_step_item_content {
|
2053 |
+
}
|
2054 |
+
.vk_step_item_dot {
|
2055 |
+
content: "";
|
2056 |
+
display: block;
|
2057 |
+
position: absolute;
|
2058 |
+
top: 0;
|
2059 |
+
left: 0;
|
2060 |
+
width: 50px;
|
2061 |
+
height: 50px;
|
2062 |
+
border-radius: 50%;
|
2063 |
+
color: #ffffff;
|
2064 |
+
padding: 9px 0;
|
2065 |
+
text-align: center;
|
2066 |
+
&_num {
|
2067 |
+
line-height: 1.2;
|
2068 |
+
}
|
2069 |
+
}
|
2070 |
+
.vk_step_item_dot_caption {
|
2071 |
+
font-size: 0.5rem;
|
2072 |
+
}
|
2073 |
+
}
|
2074 |
+
}
|
2075 |
+
.vk_step_item_lineStyle-default {
|
2076 |
+
&::before {
|
2077 |
+
content: "";
|
2078 |
+
width: 3px;
|
2079 |
+
background: #ddd;
|
2080 |
+
display: block;
|
2081 |
+
position: absolute;
|
2082 |
+
top: 54px;
|
2083 |
+
left: 23px;
|
2084 |
+
bottom: 4px;
|
2085 |
+
}
|
2086 |
+
}
|
2087 |
+
|
2088 |
+
/*-------------------------------------------*/
|
2089 |
+
/* CSS
|
2090 |
+
/*-------------------------------------------*/
|
2091 |
+
$toc-left-margin: 1rem;
|
2092 |
+
|
2093 |
+
.vk_tableOfContents {
|
2094 |
+
margin-top:3.5em;
|
2095 |
+
margin-bottom:3.5em;
|
2096 |
+
&-style-default{
|
2097 |
+
border:3px solid rgba(0,0,0,0.04);
|
2098 |
+
box-shadow:inset 0px 0px 0px 1px rgba(255,255,255,1);
|
2099 |
+
background-color: rgba(0,0,0,0.015);
|
2100 |
+
padding: 3rem 4rem;
|
2101 |
+
}
|
2102 |
+
&_title{
|
2103 |
+
text-align: center;
|
2104 |
+
font-size: 1.2em;
|
2105 |
+
letter-spacing: 0.5em;
|
2106 |
+
}
|
2107 |
+
li {
|
2108 |
+
margin:0;
|
2109 |
+
}
|
2110 |
+
&_list{
|
2111 |
+
padding:0;
|
2112 |
+
margin-top:1em;
|
2113 |
+
&_item {
|
2114 |
+
list-style: none;
|
2115 |
+
border-bottom:1px solid #e5e5e5;
|
2116 |
+
padding:0.8rem 0;
|
2117 |
+
&-h-2 {
|
2118 |
+
// padding-left:$toc-left-margin;
|
2119 |
+
}
|
2120 |
+
&-h-3 {
|
2121 |
+
padding-left:$toc-left-margin * 1;
|
2122 |
+
}
|
2123 |
+
&-h-4 {
|
2124 |
+
padding-left:$toc-left-margin * 2;
|
2125 |
+
}
|
2126 |
+
&-h-5 {
|
2127 |
+
padding-left:$toc-left-margin * 3;
|
2128 |
+
}
|
2129 |
+
&-h-6 {
|
2130 |
+
padding-left:$toc-left-margin * 4;
|
2131 |
+
}
|
2132 |
+
&_link{
|
2133 |
+
color:#333;
|
2134 |
+
border-bottom:1px solid #ccc;
|
2135 |
+
&:hover{
|
2136 |
+
text-decoration: none;
|
2137 |
+
border-bottom: none;
|
2138 |
+
}
|
2139 |
+
}
|
2140 |
+
}
|
2141 |
+
}
|
2142 |
+
}
|
2143 |
+
|
2144 |
+
|
2145 |
+
|
2146 |
+
.editor-styles-wrapper{
|
2147 |
+
// .vk_tableOfContents {
|
2148 |
+
// ul {
|
2149 |
+
// margin-top:0;
|
2150 |
+
// margin-bottom:0;
|
2151 |
+
// }
|
2152 |
+
// .list-group-item{
|
2153 |
+
// border: none;
|
2154 |
+
// }
|
2155 |
+
// }
|
2156 |
+
// ul{
|
2157 |
+
// list-style: none !important;
|
2158 |
+
// li.vk_tableOfContents_list_item-h3{
|
2159 |
+
// margin-left: $toc-left-margin;
|
2160 |
+
// }
|
2161 |
+
// li.vk_tableOfContents_list_item-h4{
|
2162 |
+
// margin-left: $toc-left-margin * 2;
|
2163 |
+
// }
|
2164 |
+
// li.vk_tableOfContents_list_item-h5{
|
2165 |
+
// margin-left: $toc-left-margin * 4;
|
2166 |
+
// }
|
2167 |
+
// li.vk_tableOfContents_list_item-h6{
|
2168 |
+
// margin-left: $toc-left-margin * 6;
|
2169 |
+
// }
|
2170 |
+
// ul{
|
2171 |
+
// list-style: none !important;
|
2172 |
+
// }
|
2173 |
+
// }
|
2174 |
+
}
|
2175 |
+
|
2176 |
+
/*-------------------------------------------*/
|
2177 |
+
/* CSS
|
2178 |
+
/*-------------------------------------------*/
|
2179 |
+
/*-------------------------------------------*/
|
2180 |
+
/* CSS
|
2181 |
+
/*-------------------------------------------*/
|
2182 |
+
.vk_timeline {
|
2183 |
+
margin: 2em 0;
|
2184 |
+
.vk_timeline_item {
|
2185 |
+
position: relative;
|
2186 |
+
padding: 0 0 2.4em 1.8em;
|
2187 |
+
|
2188 |
+
&_caption {
|
2189 |
+
margin-bottom: 1.5em;
|
2190 |
+
color: #666;
|
2191 |
+
}
|
2192 |
+
|
2193 |
+
&_style {
|
2194 |
+
content: "";
|
2195 |
+
display: block;
|
2196 |
+
position: absolute;
|
2197 |
+
top: 4px;
|
2198 |
+
left: 0;
|
2199 |
+
width: 14px;
|
2200 |
+
height: 14px;
|
2201 |
+
border-radius: 50%;
|
2202 |
+
}
|
2203 |
+
}
|
2204 |
+
}
|
2205 |
+
|
2206 |
+
.vk_timeline_item_lineStyle-default {
|
2207 |
+
&::before {
|
2208 |
+
content: "";
|
2209 |
+
width: 3px;
|
2210 |
+
background: #ddd;
|
2211 |
+
display: block;
|
2212 |
+
position: absolute;
|
2213 |
+
top: 22px;
|
2214 |
+
left: 6px;
|
2215 |
+
bottom: 0;
|
2216 |
+
}
|
2217 |
+
}
|
2218 |
+
|
2219 |
}
|
gulpfile.js
CHANGED
@@ -1,132 +1,151 @@
|
|
1 |
-
var gulp = require(
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
var
|
9 |
-
var
|
|
|
10 |
// 同期的に処理してくれる( distで使用している )
|
11 |
-
var runSequence = require(
|
12 |
// js最小化
|
13 |
-
var jsmin = require(
|
14 |
|
15 |
-
gulp.task(
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
34 |
});
|
35 |
|
36 |
-
|
37 |
gulp.task('sass_editor', function (){
|
38 |
-
return gulp.src([ './editor-css/
|
39 |
-
.pipe(concat('editor-block-build.scss'))
|
40 |
.pipe(gulp.dest('./editor-css/'))
|
41 |
.pipe(sass())
|
42 |
.pipe(cleanCss())
|
43 |
-
.pipe($.autoprefixer())
|
44 |
.pipe(concat('block-build-editor.css'))
|
45 |
.pipe(gulp.dest('./inc/vk-blocks/build/'));
|
46 |
});
|
47 |
|
48 |
// VK Block で使用しているBootstrapのみコンパイル
|
49 |
// ※ Lightning 以外のテーマで利用の際に読込
|
50 |
-
gulp.task(
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
|
|
56 |
});
|
57 |
|
58 |
// VK Block で使用しているBootstrapのみコンパイル
|
59 |
// ※ Lightning 以外のテーマで利用の際に読込
|
60 |
-
gulp.task(
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
|
|
66 |
});
|
67 |
|
68 |
// Transpile and Compile Sass and Bundle it.
|
69 |
-
gulp.task(
|
70 |
-
|
71 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
});
|
73 |
|
74 |
// watch
|
75 |
gulp.task('watch', function () {
|
76 |
-
gulp.watch('src/**/*.js', gulp.parallel('js'));
|
77 |
-
gulp.watch('editor-css/
|
78 |
gulp.watch('src/**/*.scss', gulp.series('sass','sass_editor'));
|
79 |
gulp.watch('lib/bootstrap/scss/*.scss', gulp.parallel('sass_bootstrap','sass_editor'));
|
80 |
gulp.watch('inc/vk-components/**/*.scss', gulp.parallel('sass_vk_components','sass_editor'));
|
81 |
});
|
82 |
|
83 |
-
//
|
84 |
-
gulp.task(
|
|
|
|
|
|
|
85 |
|
86 |
-
//
|
87 |
-
gulp.task(
|
88 |
|
|
|
|
|
89 |
|
90 |
// copy dist ////////////////////////////////////////////////
|
91 |
|
92 |
-
gulp.task(
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
|
|
|
|
123 |
|
124 |
-
gulp.task(
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
{ base: './inc/vk-blocks/' }
|
130 |
-
)
|
131 |
-
.pipe( gulp.dest( '../vk-all-in-one-expansion-unit/inc/vk-blocks/package' ) ); // distディレクトリに出力
|
132 |
-
} );
|
1 |
+
var gulp = require("gulp"),
|
2 |
+
concat = require("gulp-concat"),
|
3 |
+
$ = require("gulp-load-plugins")(),
|
4 |
+
webpackStream = require("webpack-stream"),
|
5 |
+
webpack = require("webpack"),
|
6 |
+
webpackDev = require("./webpack.dev"),
|
7 |
+
webpackProd = require("./webpack.prod");
|
8 |
+
var sass = require("gulp-sass");
|
9 |
+
var autoprefixer = require("gulp-autoprefixer");
|
10 |
+
var cleanCss = require("gulp-clean-css");
|
11 |
// 同期的に処理してくれる( distで使用している )
|
12 |
+
var runSequence = require("run-sequence");
|
13 |
// js最小化
|
14 |
+
var jsmin = require("gulp-jsmin");
|
15 |
|
16 |
+
gulp.task("sass", function() {
|
17 |
+
return (
|
18 |
+
gulp
|
19 |
+
.src(["./src/**/*.scss"])
|
20 |
+
.pipe(
|
21 |
+
$.plumber({
|
22 |
+
errorHandler: $.notify.onError("<%= error.message %>")
|
23 |
+
})
|
24 |
+
)
|
25 |
+
// .pipe($.sourcemaps.init({loadMaps: true}))
|
26 |
+
.pipe(
|
27 |
+
$.sass({
|
28 |
+
errLogToConsole: true,
|
29 |
+
outputStyle: "compressed",
|
30 |
+
includePaths: ["./src/scss"]
|
31 |
+
})
|
32 |
+
)
|
33 |
+
.pipe($.autoprefixer())
|
34 |
+
// .pipe($.autoprefixer({browsers: ['last 2 version', '> 5%']}))
|
35 |
+
// .pipe($.sourcemaps.write('./map'))
|
36 |
+
//bundle css files by gulp-concat
|
37 |
+
.pipe(concat("block-build.css"))
|
38 |
+
.pipe(gulp.dest("./inc/vk-blocks/build/"))
|
39 |
+
);
|
40 |
});
|
41 |
|
|
|
42 |
gulp.task('sass_editor', function (){
|
43 |
+
return gulp.src([ './editor-css/_editor_before.scss', './src/**/*.scss', './editor-css/_editor_after.scss'])
|
44 |
+
.pipe(concat('editor-block-build-marge.scss'))
|
45 |
.pipe(gulp.dest('./editor-css/'))
|
46 |
.pipe(sass())
|
47 |
.pipe(cleanCss())
|
|
|
48 |
.pipe(concat('block-build-editor.css'))
|
49 |
.pipe(gulp.dest('./inc/vk-blocks/build/'));
|
50 |
});
|
51 |
|
52 |
// VK Block で使用しているBootstrapのみコンパイル
|
53 |
// ※ Lightning 以外のテーマで利用の際に読込
|
54 |
+
gulp.task("sass_bootstrap", function() {
|
55 |
+
return gulp
|
56 |
+
.src(["./lib/bootstrap/scss/bootstrap.scss"])
|
57 |
+
.pipe(sass())
|
58 |
+
.pipe(cleanCss())
|
59 |
+
.pipe(concat("bootstrap_vk_using.css"))
|
60 |
+
.pipe(gulp.dest("./inc/vk-blocks/build/"));
|
61 |
});
|
62 |
|
63 |
// VK Block で使用しているBootstrapのみコンパイル
|
64 |
// ※ Lightning 以外のテーマで利用の際に読込
|
65 |
+
gulp.task("sass_vk_components", function() {
|
66 |
+
return gulp
|
67 |
+
.src(["./inc/vk-components/package/_scss/*.scss"])
|
68 |
+
.pipe(sass())
|
69 |
+
.pipe(cleanCss())
|
70 |
+
.pipe(concat("vk-components.css"))
|
71 |
+
.pipe(gulp.dest("./inc/vk-blocks/build/"));
|
72 |
});
|
73 |
|
74 |
// Transpile and Compile Sass and Bundle it.
|
75 |
+
gulp.task("js-dev", function() {
|
76 |
+
return webpackStream(webpackDev, webpack).pipe(gulp.dest("./"));
|
77 |
+
});
|
78 |
+
|
79 |
+
gulp.task("js", function() {
|
80 |
+
return webpackStream(webpackProd, webpack).pipe(gulp.dest("./"));
|
81 |
+
});
|
82 |
+
|
83 |
+
gulp.task("copy_front_js", function() {
|
84 |
+
return gulp
|
85 |
+
.src(["./src/_pro/table-of-contents/viewHelper.js"])
|
86 |
+
.pipe(jsmin())
|
87 |
+
.pipe(gulp.dest("./inc/vk-blocks/build/"));
|
88 |
});
|
89 |
|
90 |
// watch
|
91 |
gulp.task('watch', function () {
|
92 |
+
gulp.watch('src/**/*.js', gulp.parallel('js','copy_front_js'));
|
93 |
+
gulp.watch('editor-css/_editor_before.scss', gulp.parallel('sass_editor'));
|
94 |
gulp.watch('src/**/*.scss', gulp.series('sass','sass_editor'));
|
95 |
gulp.watch('lib/bootstrap/scss/*.scss', gulp.parallel('sass_bootstrap','sass_editor'));
|
96 |
gulp.watch('inc/vk-components/**/*.scss', gulp.parallel('sass_vk_components','sass_editor'));
|
97 |
});
|
98 |
|
99 |
+
//Build : Development
|
100 |
+
gulp.task(
|
101 |
+
"build-dev",
|
102 |
+
gulp.series("copy_front_js", "js-dev", "sass", "sass_editor")
|
103 |
+
);
|
104 |
|
105 |
+
// Build : Production
|
106 |
+
gulp.task("build", gulp.series("copy_front_js", "js", "sass", "sass_editor"));
|
107 |
|
108 |
+
// Default Tasks
|
109 |
+
gulp.task("default", gulp.series("watch"));
|
110 |
|
111 |
// copy dist ////////////////////////////////////////////////
|
112 |
|
113 |
+
gulp.task("dist", function() {
|
114 |
+
return gulp
|
115 |
+
.src(
|
116 |
+
[
|
117 |
+
"./**/*.php",
|
118 |
+
"./**/*.txt",
|
119 |
+
"./**/*.css",
|
120 |
+
"./**/*.scss",
|
121 |
+
"./**/*.bat",
|
122 |
+
"./**/*.rb",
|
123 |
+
"./**/*.eot",
|
124 |
+
"./**/*.svg",
|
125 |
+
"./**/*.ttf",
|
126 |
+
"./**/*.woff",
|
127 |
+
"./**/*.woff2",
|
128 |
+
"./**/*.otf",
|
129 |
+
"./**/*.less",
|
130 |
+
"./**/*.png",
|
131 |
+
"./inc/**",
|
132 |
+
"!./compile.bat",
|
133 |
+
"!./config.rb",
|
134 |
+
"!./tests/**",
|
135 |
+
"!./dist/**",
|
136 |
+
"!./src/**",
|
137 |
+
"!./bin/**",
|
138 |
+
"!./editor-css/**",
|
139 |
+
"!./node_modules/**"
|
140 |
+
],
|
141 |
+
{ base: "./" }
|
142 |
+
)
|
143 |
+
.pipe(gulp.dest("../../../../../../updatepro/app/public/wp-content/plugins/vk-blocks-pro"))
|
144 |
+
.pipe(gulp.dest("dist/vk-blocks-pro")); // distディレクトリに出力
|
145 |
+
});
|
146 |
|
147 |
+
gulp.task("dist_ex", function() {
|
148 |
+
return gulp
|
149 |
+
.src(["./inc/vk-blocks/**"], { base: "./inc/vk-blocks/" })
|
150 |
+
.pipe(gulp.dest("../vk-all-in-one-expansion-unit/inc/vk-blocks/package")); // distディレクトリに出力
|
151 |
+
});
|
|
|
|
|
|
|
|
gulpfile_free.js
ADDED
@@ -0,0 +1,145 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
var gulp = require("gulp"),
|
2 |
+
concat = require("gulp-concat"),
|
3 |
+
$ = require("gulp-load-plugins")(),
|
4 |
+
webpackStream = require("webpack-stream"),
|
5 |
+
webpack = require("webpack"),
|
6 |
+
webpackDev = require("./webpack.dev"),
|
7 |
+
webpackProd = require("./webpack.prod");
|
8 |
+
var sass = require("gulp-sass");
|
9 |
+
var autoprefixer = require("gulp-autoprefixer");
|
10 |
+
var cleanCss = require("gulp-clean-css");
|
11 |
+
// 同期的に処理してくれる( distで使用している )
|
12 |
+
var runSequence = require("run-sequence");
|
13 |
+
// js最小化
|
14 |
+
var jsmin = require("gulp-jsmin");
|
15 |
+
|
16 |
+
gulp.task("sass", function() {
|
17 |
+
return (
|
18 |
+
gulp
|
19 |
+
.src(["./src/**/*.scss"])
|
20 |
+
.pipe(
|
21 |
+
$.plumber({
|
22 |
+
errorHandler: $.notify.onError("<%= error.message %>")
|
23 |
+
})
|
24 |
+
)
|
25 |
+
// .pipe($.sourcemaps.init({loadMaps: true}))
|
26 |
+
.pipe(
|
27 |
+
$.sass({
|
28 |
+
errLogToConsole: true,
|
29 |
+
outputStyle: "compressed",
|
30 |
+
includePaths: ["./src/scss"]
|
31 |
+
})
|
32 |
+
)
|
33 |
+
.pipe($.autoprefixer())
|
34 |
+
// .pipe($.autoprefixer({browsers: ['last 2 version', '> 5%']}))
|
35 |
+
// .pipe($.sourcemaps.write('./map'))
|
36 |
+
//bundle css files by gulp-concat
|
37 |
+
.pipe(cleanCss())
|
38 |
+
.pipe(concat("block-build.css"))
|
39 |
+
.pipe(gulp.dest("./inc/vk-blocks/build/"))
|
40 |
+
);
|
41 |
+
});
|
42 |
+
|
43 |
+
gulp.task('sass_editor', function (){
|
44 |
+
return gulp.src([ './editor-css/_editor_before.scss', './src/**/*.scss', './editor-css/_editor_after.scss'])
|
45 |
+
.pipe(concat('editor-block-build-marge.scss'))
|
46 |
+
.pipe(gulp.dest('./editor-css/'))
|
47 |
+
.pipe(sass())
|
48 |
+
.pipe(cleanCss())
|
49 |
+
.pipe(concat('block-build-editor.css'))
|
50 |
+
.pipe(gulp.dest('./inc/vk-blocks/build/'));
|
51 |
+
});
|
52 |
+
|
53 |
+
// VK Block で使用しているBootstrapのみコンパイル
|
54 |
+
// ※ Lightning 以外のテーマで利用の際に読込
|
55 |
+
gulp.task("sass_bootstrap", function() {
|
56 |
+
return gulp
|
57 |
+
.src(["./lib/bootstrap/scss/bootstrap.scss"])
|
58 |
+
.pipe(sass())
|
59 |
+
.pipe(cleanCss())
|
60 |
+
.pipe(concat("bootstrap_vk_using.css"))
|
61 |
+
.pipe(gulp.dest("./inc/vk-blocks/build/"));
|
62 |
+
});
|
63 |
+
|
64 |
+
// VK Block で使用しているBootstrapのみコンパイル
|
65 |
+
// ※ Lightning 以外のテーマで利用の際に読込
|
66 |
+
gulp.task("sass_vk_components", function() {
|
67 |
+
return gulp
|
68 |
+
.src(["./inc/vk-components/package/_scss/*.scss"])
|
69 |
+
.pipe(sass())
|
70 |
+
.pipe(cleanCss())
|
71 |
+
.pipe(concat("vk-components.css"))
|
72 |
+
.pipe(gulp.dest("./inc/vk-blocks/build/"));
|
73 |
+
});
|
74 |
+
|
75 |
+
// Transpile and Compile Sass and Bundle it.
|
76 |
+
gulp.task("js-dev", function() {
|
77 |
+
return webpackStream(webpackDev, webpack).pipe(gulp.dest("./"));
|
78 |
+
});
|
79 |
+
|
80 |
+
gulp.task("js", function() {
|
81 |
+
return webpackStream(webpackProd, webpack).pipe(gulp.dest("./"));
|
82 |
+
});
|
83 |
+
|
84 |
+
// watch
|
85 |
+
gulp.task('watch', function () {
|
86 |
+
gulp.watch('src/**/*.js', gulp.parallel('js'));
|
87 |
+
gulp.watch('editor-css/_editor_before.scss', gulp.parallel('sass_editor'));
|
88 |
+
gulp.watch('src/**/*.scss', gulp.series('sass','sass_editor'));
|
89 |
+
gulp.watch('lib/bootstrap/scss/*.scss', gulp.parallel('sass_bootstrap','sass_editor'));
|
90 |
+
gulp.watch('inc/vk-components/**/*.scss', gulp.parallel('sass_vk_components','sass_editor'));
|
91 |
+
});
|
92 |
+
|
93 |
+
//Build : Development
|
94 |
+
gulp.task(
|
95 |
+
"build-dev",
|
96 |
+
gulp.series("js-dev", "sass", "sass_editor")
|
97 |
+
);
|
98 |
+
|
99 |
+
// Build : Production
|
100 |
+
gulp.task("build", gulp.series("js", "sass", "sass_editor"));
|
101 |
+
|
102 |
+
// Default Tasks
|
103 |
+
gulp.task("default", gulp.series("watch"));
|
104 |
+
|
105 |
+
// copy dist ////////////////////////////////////////////////
|
106 |
+
|
107 |
+
gulp.task("dist", function() {
|
108 |
+
return gulp
|
109 |
+
.src(
|
110 |
+
[
|
111 |
+
"./**/*.php",
|
112 |
+
"./**/*.txt",
|
113 |
+
"./**/*.css",
|
114 |
+
"./**/*.scss",
|
115 |
+
"./**/*.bat",
|
116 |
+
"./**/*.rb",
|
117 |
+
"./**/*.eot",
|
118 |
+
"./**/*.svg",
|
119 |
+
"./**/*.ttf",
|
120 |
+
"./**/*.woff",
|
121 |
+
"./**/*.woff2",
|
122 |
+
"./**/*.otf",
|
123 |
+
"./**/*.less",
|
124 |
+
"./**/*.png",
|
125 |
+
"./inc/**",
|
126 |
+
"!./compile.bat",
|
127 |
+
"!./config.rb",
|
128 |
+
"!./tests/**",
|
129 |
+
"!./dist/**",
|
130 |
+
"!./src/**",
|
131 |
+
"!./bin/**",
|
132 |
+
"!./editor-css/**",
|
133 |
+
"!./node_modules/**"
|
134 |
+
],
|
135 |
+
{ base: "./" }
|
136 |
+
)
|
137 |
+
.pipe(gulp.dest("../../../../../../updatepro/app/public/wp-content/plugins/vk-blocks"))
|
138 |
+
.pipe(gulp.dest("dist/vk-blocks")); // distディレクトリに出力
|
139 |
+
});
|
140 |
+
|
141 |
+
gulp.task("dist_ex", function() {
|
142 |
+
return gulp
|
143 |
+
.src(["./inc/vk-blocks/**"], { base: "./inc/vk-blocks/" })
|
144 |
+
.pipe(gulp.dest("../vk-all-in-one-expansion-unit/inc/vk-blocks/package")); // distディレクトリに出力
|
145 |
+
});
|
inc/font-awesome/package/class-vk-font-awesome-versions.php
CHANGED
@@ -10,16 +10,28 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
10 |
class Vk_Font_Awesome_Versions {
|
11 |
|
12 |
private static $version_default = '5_WebFonts_CSS';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
-
static function init() {
|
15 |
add_action( 'customize_register', array( __CLASS__, 'customize_register' ) );
|
16 |
-
add_action( 'wp_enqueue_scripts', array( __CLASS__, 'load_font_awesome' ), 3 );
|
17 |
add_action( 'admin_init', array( __CLASS__, 'load_admin_font_awesome' ) );
|
18 |
add_action( 'enqueue_block_editor_assets', array( __CLASS__, 'load_gutenberg_font_awesome' ) );
|
19 |
add_action( 'wp_head', array( __CLASS__, 'dynamic_css' ), 3 );
|
20 |
add_filter( 'body_class', array( __CLASS__, 'add_body_class_fa_version' ) );
|
21 |
}
|
22 |
|
|
|
|
|
|
|
|
|
|
|
23 |
static function versions() {
|
24 |
global $font_awesome_directory_uri;
|
25 |
$versions = array(
|
@@ -80,6 +92,7 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
80 |
|
81 |
/**
|
82 |
* When use Font Awesome 4,7 then print 'fa '.
|
|
|
83 |
* @var strings;
|
84 |
*/
|
85 |
public static function print_fa() {
|
@@ -94,11 +107,11 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
94 |
static function load_font_awesome() {
|
95 |
$current = self::current_info();
|
96 |
if ( $current['type'] === 'svg-with-js' ) {
|
97 |
-
wp_enqueue_script( 'font-awesome-js', $current['url_js'], array(), $current['version'] );
|
98 |
// [ Danger ] This script now causes important errors
|
99 |
// wp_add_inline_script( 'font-awesome-js', 'FontAwesomeConfig = { searchPseudoElements: true };', 'before' );
|
100 |
} else {
|
101 |
-
wp_enqueue_style( 'font-awesome', $current['url_css'], array(), $current['version'] );
|
102 |
}
|
103 |
}
|
104 |
|
@@ -113,9 +126,10 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
113 |
}
|
114 |
|
115 |
/**
|
116 |
-
|
117 |
-
|
118 |
-
|
|
|
119 |
static function add_body_class_fa_version( $class ) {
|
120 |
$current_option = self::get_option_fa();
|
121 |
if ( $current_option == '4.7' ) {
|
@@ -130,6 +144,7 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
130 |
|
131 |
/**
|
132 |
* Output dynbamic css according to Font Awesome versions
|
|
|
133 |
* @return [type] [description]
|
134 |
*/
|
135 |
static function dynamic_css() {
|
@@ -162,22 +177,24 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
162 |
}
|
163 |
}
|
164 |
|
165 |
-
|
166 |
-
|
167 |
/*-------------------------------------------*/
|
168 |
static function customize_register( $wp_customize ) {
|
169 |
|
170 |
global $vk_font_awesome_version_prefix_customize_panel;
|
171 |
|
172 |
$wp_customize->add_section(
|
173 |
-
'VK Font Awesome',
|
|
|
174 |
'title' => $vk_font_awesome_version_prefix_customize_panel . __( 'Font Awesome', 'vk_font_awesome_version_textdomain' ),
|
175 |
'priority' => 450,
|
176 |
)
|
177 |
);
|
178 |
|
179 |
$wp_customize->add_setting(
|
180 |
-
'vk_font_awesome_version',
|
|
|
181 |
'default' => '5_WebFonts_CSS',
|
182 |
'type' => 'option',
|
183 |
'capability' => 'edit_theme_options',
|
@@ -185,13 +202,14 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
185 |
)
|
186 |
);
|
187 |
|
188 |
-
$versions =
|
189 |
foreach ( $versions as $key => $value ) {
|
190 |
$choices[ $key ] = $value['label'];
|
191 |
}
|
192 |
|
193 |
$wp_customize->add_control(
|
194 |
-
'vk_font_awesome_version',
|
|
|
195 |
'label' => __( 'Font Awesome Version', 'vk_font_awesome_version_textdomain' ),
|
196 |
'section' => 'VK Font Awesome',
|
197 |
'settings' => 'vk_font_awesome_version',
|
@@ -204,5 +222,7 @@ if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
|
204 |
} // static function customize_register( $wp_customize ) {
|
205 |
|
206 |
} // Vk_Font_Awesome_Versions
|
207 |
-
|
|
|
|
|
208 |
} // if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
10 |
class Vk_Font_Awesome_Versions {
|
11 |
|
12 |
private static $version_default = '5_WebFonts_CSS';
|
13 |
+
// public static $hook_point = apply_filters( 'vkfa_enqueue_point', 'wp_enqueue_scripts' );
|
14 |
+
|
15 |
+
function __construct() {
|
16 |
+
|
17 |
+
/**
|
18 |
+
* Reason of Using through the after_setup_theme is
|
19 |
+
* to be able to change the action hook point of css load from theme..
|
20 |
+
*/
|
21 |
+
add_action( 'after_setup_theme', array( __CLASS__, 'load_css_action' ) );
|
22 |
|
|
|
23 |
add_action( 'customize_register', array( __CLASS__, 'customize_register' ) );
|
|
|
24 |
add_action( 'admin_init', array( __CLASS__, 'load_admin_font_awesome' ) );
|
25 |
add_action( 'enqueue_block_editor_assets', array( __CLASS__, 'load_gutenberg_font_awesome' ) );
|
26 |
add_action( 'wp_head', array( __CLASS__, 'dynamic_css' ), 3 );
|
27 |
add_filter( 'body_class', array( __CLASS__, 'add_body_class_fa_version' ) );
|
28 |
}
|
29 |
|
30 |
+
public static function load_css_action() {
|
31 |
+
$hook_point = apply_filters( 'vkfa_enqueue_point', 'wp_enqueue_scripts' );
|
32 |
+
add_action( $hook_point, array( __CLASS__, 'load_font_awesome' ) );
|
33 |
+
}
|
34 |
+
|
35 |
static function versions() {
|
36 |
global $font_awesome_directory_uri;
|
37 |
$versions = array(
|
92 |
|
93 |
/**
|
94 |
* When use Font Awesome 4,7 then print 'fa '.
|
95 |
+
*
|
96 |
* @var strings;
|
97 |
*/
|
98 |
public static function print_fa() {
|
107 |
static function load_font_awesome() {
|
108 |
$current = self::current_info();
|
109 |
if ( $current['type'] === 'svg-with-js' ) {
|
110 |
+
wp_enqueue_script( 'vk-font-awesome-js', $current['url_js'], array(), $current['version'] );
|
111 |
// [ Danger ] This script now causes important errors
|
112 |
// wp_add_inline_script( 'font-awesome-js', 'FontAwesomeConfig = { searchPseudoElements: true };', 'before' );
|
113 |
} else {
|
114 |
+
wp_enqueue_style( 'vk-font-awesome', $current['url_css'], array(), $current['version'] );
|
115 |
}
|
116 |
}
|
117 |
|
126 |
}
|
127 |
|
128 |
/**
|
129 |
+
* add body class
|
130 |
+
*
|
131 |
+
* @return [type] [description]
|
132 |
+
*/
|
133 |
static function add_body_class_fa_version( $class ) {
|
134 |
$current_option = self::get_option_fa();
|
135 |
if ( $current_option == '4.7' ) {
|
144 |
|
145 |
/**
|
146 |
* Output dynbamic css according to Font Awesome versions
|
147 |
+
*
|
148 |
* @return [type] [description]
|
149 |
*/
|
150 |
static function dynamic_css() {
|
177 |
}
|
178 |
}
|
179 |
|
180 |
+
/*
|
181 |
+
customize_register
|
182 |
/*-------------------------------------------*/
|
183 |
static function customize_register( $wp_customize ) {
|
184 |
|
185 |
global $vk_font_awesome_version_prefix_customize_panel;
|
186 |
|
187 |
$wp_customize->add_section(
|
188 |
+
'VK Font Awesome',
|
189 |
+
array(
|
190 |
'title' => $vk_font_awesome_version_prefix_customize_panel . __( 'Font Awesome', 'vk_font_awesome_version_textdomain' ),
|
191 |
'priority' => 450,
|
192 |
)
|
193 |
);
|
194 |
|
195 |
$wp_customize->add_setting(
|
196 |
+
'vk_font_awesome_version',
|
197 |
+
array(
|
198 |
'default' => '5_WebFonts_CSS',
|
199 |
'type' => 'option',
|
200 |
'capability' => 'edit_theme_options',
|
202 |
)
|
203 |
);
|
204 |
|
205 |
+
$versions = self::versions();
|
206 |
foreach ( $versions as $key => $value ) {
|
207 |
$choices[ $key ] = $value['label'];
|
208 |
}
|
209 |
|
210 |
$wp_customize->add_control(
|
211 |
+
'vk_font_awesome_version',
|
212 |
+
array(
|
213 |
'label' => __( 'Font Awesome Version', 'vk_font_awesome_version_textdomain' ),
|
214 |
'section' => 'VK Font Awesome',
|
215 |
'settings' => 'vk_font_awesome_version',
|
222 |
} // static function customize_register( $wp_customize ) {
|
223 |
|
224 |
} // Vk_Font_Awesome_Versions
|
225 |
+
|
226 |
+
$vk_font_awesome_versions = new Vk_Font_Awesome_Versions;
|
227 |
+
|
228 |
} // if ( ! class_exists( 'Vk_Font_Awesome_Versions' ) ) {
|
inc/vk-blocks-config.php
CHANGED
@@ -1,30 +1,33 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
// このファイルは基本 /vk-blocks/vk-blocks-functions.phpを読み込むファイルだけ
|
6 |
// vk-blocks
|
|
|
7 |
if ( ! function_exists( 'vkblocks_active' ) ) {
|
8 |
|
9 |
// Set asset URL.
|
10 |
define( 'VK_BLOCKS_URL', plugin_dir_url( __FILE__ ) . 'vk-blocks/' );
|
11 |
// Set version number.
|
12 |
-
define( 'VK_BLOCKS_VERSION', '0.
|
13 |
|
14 |
global $vk_blocks_prefix;
|
15 |
$vk_blocks_prefix = apply_filters( 'vk_blocks_prefix', 'VK ' );
|
16 |
|
17 |
-
require_once
|
|
|
|
|
|
|
|
|
|
|
18 |
if ( ! vkblocks_is_lightning() ) {
|
19 |
-
require_once
|
20 |
-
require_once( 'vk-blocks/load-vk-components.php' );
|
21 |
-
require_once( 'font-awesome/font-awesome-config.php' );
|
22 |
-
require_once( 'term-color/term-color-config.php' );
|
23 |
-
require_once( 'vk-blocks/load-bootstrap.php' );
|
24 |
}
|
25 |
|
26 |
-
require_once
|
27 |
-
require_once
|
28 |
-
/*
|
|
|
29 |
// require_once( 'vk-blocks/functions-color.php' );
|
30 |
}
|
1 |
<?php
|
2 |
+
/*
|
3 |
+
Load modules
|
4 |
+
-------------------------------------------*/
|
5 |
// このファイルは基本 /vk-blocks/vk-blocks-functions.phpを読み込むファイルだけ
|
6 |
// vk-blocks
|
7 |
+
|
8 |
if ( ! function_exists( 'vkblocks_active' ) ) {
|
9 |
|
10 |
// Set asset URL.
|
11 |
define( 'VK_BLOCKS_URL', plugin_dir_url( __FILE__ ) . 'vk-blocks/' );
|
12 |
// Set version number.
|
13 |
+
define( 'VK_BLOCKS_VERSION', '0.22.4' );
|
14 |
|
15 |
global $vk_blocks_prefix;
|
16 |
$vk_blocks_prefix = apply_filters( 'vk_blocks_prefix', 'VK ' );
|
17 |
|
18 |
+
require_once 'vk-blocks/helpers.php';
|
19 |
+
require_once 'vk-components/vk-components-config.php';
|
20 |
+
require_once 'vk-blocks/load-vk-components.php';
|
21 |
+
require_once 'font-awesome/font-awesome-config.php';
|
22 |
+
require_once 'term-color/term-color-config.php';
|
23 |
+
|
24 |
if ( ! vkblocks_is_lightning() ) {
|
25 |
+
require_once 'vk-blocks/load-bootstrap.php';
|
|
|
|
|
|
|
|
|
26 |
}
|
27 |
|
28 |
+
require_once 'admin-notices.php';
|
29 |
+
require_once 'vk-blocks/vk-blocks-functions.php';
|
30 |
+
/*
|
31 |
+
出力するCSSが多すぎるので一旦コメントアウト */
|
32 |
// require_once( 'vk-blocks/functions-color.php' );
|
33 |
}
|
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-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-base-control__label{font-weight:700}.wp-core-ui .components-base-control__label+button{display:block}.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}input[type=range]{margin:1px}.editor-url-input input[type=text]{width:100%}.edit-post-visual-editor.editor-styles-wrapper h1:first-child.vk_prBlocks_item_title{margin-top:.9em}.edit-post-visual-editor.editor-styles-wrapper .vk_button .editor-rich-text{display:inline-block}.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{-webkit-padding-start:2em;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{-webkit-box-shadow:0 0 5px rgba(0,0,0,.2);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 .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{-webkit-transition:color .3s linear,opacity .3s linear;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;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{-ms-flex-preferred-size:96px;flex-basis:96px;-ms-flex-negative:0;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{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;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;-webkit-animation:vibration .1s infinite;animation:vibration .1s infinite}@-webkit-keyframes vibration{0%{-webkit-transform:translate(0,0) rotateZ(0);transform:translate(0,0) rotateZ(0)}25%{-webkit-transform:translate(2px,2px) rotateZ(1deg);transform:translate(2px,2px) rotateZ(1deg)}50%{-webkit-transform:translate(0,2px) rotateZ(0);transform:translate(0,2px) rotateZ(0)}75%{-webkit-transform:translate(2px,0) rotateZ(-1deg);transform:translate(2px,0) rotateZ(-1deg)}100%{-webkit-transform:translate(0,0) rotateZ(0);transform:translate(0,0) rotateZ(0)}}@keyframes vibration{0%{-webkit-transform:translate(0,0) rotateZ(0);transform:translate(0,0) rotateZ(0)}25%{-webkit-transform:translate(2px,2px) rotateZ(1deg);transform:translate(2px,2px) rotateZ(1deg)}50%{-webkit-transform:translate(0,2px) rotateZ(0);transform:translate(0,2px) rotateZ(0)}75%{-webkit-transform:translate(2px,0) rotateZ(-1deg);transform:translate(2px,0) rotateZ(-1deg)}100%{-webkit-transform:translate(0,0) rotateZ(0);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{-webkit-box-align:normal;-ms-flex-align:normal;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}.edit-post-visual-editor.editor-styles-wrapper .vk_button-color-custom a:hover{opacity:.8;-webkit-box-shadow:0 0 0 .2rem rgba(171,184,195,.25);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_link{min-width:100px;min-height:30px}.edit-post-visual-editor.editor-styles-wrapper .vk_button_link.btn{padding-top:.7em;padding-bottom:.6em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;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 .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{color:#fff;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;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-secondary{color:#6c757d;border:1px solid #6c757d;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-success{color:#28a745;border:1px solid #28a745;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-info{color:#17a2b8;border:1px solid #17a2b8;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-warning{color:#ffc107;border:1px solid #ffc107;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-danger{color:#dc3545;border:1px solid #dc3545;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-light{color:#f8f9fa;border:1px solid #f8f9fa;background:0 0;-webkit-box-shadow:none;box-shadow:none}.edit-post-visual-editor.editor-styles-wrapper .btn.btn-outline-dark{color:#343a40;border:1px solid #343a40;background:0 0;-webkit-box-shadow:none;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:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 25px;border:3px solid #e5e5e5;margin:0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.edit-post-visual-editor.editor-styles-wrapper .vk_flow_frame_text{display:block;overflow:hidden;margin:0;width:100%;-webkit-box-sizing:border-box;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;-webkit-box-sizing:border-box;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;-webkit-box-shadow:none;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;-webkit-box-shadow:none;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;-webkit-box-shadow: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;-webkit-box-shadow: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;-webkit-box-shadow: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;-webkit-box-shadow: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;-webkit-box-shadow: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;-webkit-box-shadow: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;-webkit-box-shadow: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;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;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:"";-webkit-box-flex:1;-ms-flex-positive:1;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;-webkit-box-shadow: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 .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;-webkit-box-shadow:1px 1px 4px rgba(0,0,0,.2);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%;-webkit-transform:translateY(-50%) translateX(-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:-webkit-box;display:-ms-flexbox;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{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.edit-post-visual-editor.editor-styles-wrapper .vk_prContent-layout-imageRight{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;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;-webkit-box-shadow:none;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:-webkit-box;display:-ms-flexbox;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;-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;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-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}input[type=range]{margin:1px}.editor-url-input input[type=text]{width:100%}.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 .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 .editor-block-list__block{margin:0 15px 30px;padding:0}.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 .editor-block-list__block div[data-block]{margin:0;height:100%}.edit-post-visual-editor.editor-styles-wrapper .vk_posts>.vk_posts-edit .editor-block-list__block div[data-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 .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 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}.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_link{min-width:100px;min-height:30px}.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 .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{color:#fff;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{color:#f8f9fa;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 .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}
|
inc/vk-blocks/build/block-build.css
CHANGED
@@ -1,30 +1,15 @@
|
|
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}
|
2 |
-
|
3 |
-
.
|
4 |
-
|
5 |
-
.
|
6 |
-
|
7 |
-
.
|
8 |
-
|
9 |
-
.
|
10 |
-
|
11 |
-
.
|
12 |
-
|
13 |
-
.
|
14 |
-
|
15 |
-
.
|
16 |
-
|
17 |
-
.is-style-vk-image-border img{border:1px solid #e5e5e5}.is-style-vk-image-photoFrame{background-color:#fff;padding:10px;-webkit-box-shadow:1px 1px 4px rgba(0,0,0,0.2);box-shadow:1px 1px 4px rgba(0,0,0,0.2)}.is-style-vk-image-photoFrame figcaption{margin:8px 0 0}
|
18 |
-
|
19 |
-
@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}
|
20 |
-
|
21 |
-
.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}
|
22 |
-
|
23 |
-
@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)}
|
24 |
-
|
25 |
-
@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}}
|
26 |
-
|
27 |
-
.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%}}
|
28 |
-
|
29 |
-
.vk_table-col-overflow{white-space:nowrap !important}
|
30 |
-
|
1 |
+
ol.is-style-vk-arrow-mark,ol.is-style-vk-check-circle-mark,ol.is-style-vk-check-mark,ol.is-style-vk-check-square-mark,ol.is-style-vk-default,ol.is-style-vk-frown-mark,ol.is-style-vk-handpoint-mark,ol.is-style-vk-numbered-circle-mark,ol.is-style-vk-numbered-square-mark,ol.is-style-vk-pencil-mark,ol.is-style-vk-smile-mark,ol.is-style-vk-triangle-mark,ul.is-style-vk-arrow-mark,ul.is-style-vk-check-circle-mark,ul.is-style-vk-check-mark,ul.is-style-vk-check-square-mark,ul.is-style-vk-default,ul.is-style-vk-frown-mark,ul.is-style-vk-handpoint-mark,ul.is-style-vk-numbered-circle-mark,ul.is-style-vk-numbered-square-mark,ul.is-style-vk-pencil-mark,ul.is-style-vk-smile-mark,ul.is-style-vk-triangle-mark{-webkit-padding-start:2em;padding-inline-start:2em}ol.is-style-vk-arrow-mark li,ol.is-style-vk-check-circle-mark li,ol.is-style-vk-check-mark li,ol.is-style-vk-check-square-mark li,ol.is-style-vk-default li,ol.is-style-vk-frown-mark li,ol.is-style-vk-handpoint-mark li,ol.is-style-vk-numbered-circle-mark li,ol.is-style-vk-numbered-square-mark li,ol.is-style-vk-pencil-mark li,ol.is-style-vk-smile-mark li,ol.is-style-vk-triangle-mark li,ul.is-style-vk-arrow-mark li,ul.is-style-vk-check-circle-mark li,ul.is-style-vk-check-mark li,ul.is-style-vk-check-square-mark li,ul.is-style-vk-default li,ul.is-style-vk-frown-mark li,ul.is-style-vk-handpoint-mark li,ul.is-style-vk-numbered-circle-mark li,ul.is-style-vk-numbered-square-mark li,ul.is-style-vk-pencil-mark li,ul.is-style-vk-smile-mark li,ul.is-style-vk-triangle-mark li{list-style:none;position:relative;margin-bottom:.8em;line-height:1.65em}ol.is-style-vk-numbered-circle-mark,ul.is-style-vk-numbered-circle-mark{counter-reset:number;list-style-type:none}ol.is-style-vk-numbered-circle-mark li,ul.is-style-vk-numbered-circle-mark li{position:relative;list-style:none}ol.is-style-vk-numbered-circle-mark li:before,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}ol.is-style-vk-numbered-square-mark,ul.is-style-vk-numbered-square-mark{counter-reset:number;list-style-type:none}ol.is-style-vk-numbered-square-mark li,ul.is-style-vk-numbered-square-mark li{position:relative;list-style:none}ol.is-style-vk-numbered-square-mark li:before,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}ol.is-style-vk-numbered-circle-mark.fa-lg li::before,ol.is-style-vk-numbered-square-mark.fa-lg li::before,ul.is-style-vk-numbered-circle-mark.fa-lg li::before,ul.is-style-vk-numbered-square-mark.fa-lg li::before{left:-.8em}ol.is-style-vk-numbered-circle-mark.fa-2x li,ol.is-style-vk-numbered-square-mark.fa-2x li,ul.is-style-vk-numbered-circle-mark.fa-2x li,ul.is-style-vk-numbered-square-mark.fa-2x li{line-height:1.25em}ol.is-style-vk-numbered-circle-mark.fa-2x li::before,ol.is-style-vk-numbered-square-mark.fa-2x li::before,ul.is-style-vk-numbered-circle-mark.fa-2x li::before,ul.is-style-vk-numbered-square-mark.fa-2x li::before{left:-1.1em}ol.is-style-vk-numbered-circle-mark.fa-3x li,ol.is-style-vk-numbered-square-mark.fa-3x li,ul.is-style-vk-numbered-circle-mark.fa-3x li,ul.is-style-vk-numbered-square-mark.fa-3x li{line-height:1.25em}ol.is-style-vk-numbered-circle-mark.fa-3x li::before,ol.is-style-vk-numbered-square-mark.fa-3x li::before,ul.is-style-vk-numbered-circle-mark.fa-3x li::before,ul.is-style-vk-numbered-square-mark.fa-3x li::before{left:-1.4em}ol.is-style-vk-numbered-circle-mark.fa-4x li,ol.is-style-vk-numbered-square-mark.fa-4x li,ul.is-style-vk-numbered-circle-mark.fa-4x li,ul.is-style-vk-numbered-square-mark.fa-4x li{line-height:1.25em}ol.is-style-vk-numbered-circle-mark.fa-4x li::before,ol.is-style-vk-numbered-square-mark.fa-4x li::before,ul.is-style-vk-numbered-circle-mark.fa-4x li::before,ul.is-style-vk-numbered-square-mark.fa-4x li::before{left:-1.5em}ol.is-style-vk-numbered-circle-mark.fa-5x li,ol.is-style-vk-numbered-square-mark.fa-5x li,ul.is-style-vk-numbered-circle-mark.fa-5x li,ul.is-style-vk-numbered-square-mark.fa-5x li{line-height:1.25em}ol.is-style-vk-numbered-circle-mark.fa-5x li::before,ol.is-style-vk-numbered-square-mark.fa-5x li::before,ul.is-style-vk-numbered-circle-mark.fa-5x li::before,ul.is-style-vk-numbered-square-mark.fa-5x li::before{left:-1.6em}ol.is-style-vk-default li::before,ul.is-style-vk-default li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"•";left:-1.5em}ol.is-style-vk-default li::before,ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ol.is-style-vk-arrow-mark li::before,ul.is-style-vk-arrow-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ol.is-style-vk-default li::before,ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ol.is-style-vk-triangle-mark li::before,ul.is-style-vk-triangle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ol.is-style-vk-default li::before,ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ol.is-style-vk-check-mark li::before,ul.is-style-vk-check-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ol.is-style-vk-default li::before,ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ol.is-style-vk-check-circle-mark li::before,ul.is-style-vk-check-circle-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ol.is-style-vk-default li::before,ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ol.is-style-vk-check-square-mark li::before,ul.is-style-vk-check-square-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ol.is-style-vk-default li::before,ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ol.is-style-vk-handpoint-mark li::before,ul.is-style-vk-handpoint-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ol.is-style-vk-default li::before,ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ol.is-style-vk-pencil-mark li::before,ul.is-style-vk-pencil-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ol.is-style-vk-default li::before,ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ol.is-style-vk-smile-mark li::before,ul.is-style-vk-smile-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ol.is-style-vk-default li::before,ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ol.is-style-vk-frown-mark li::before,ul.is-style-vk-frown-mark li::before{font-family:"Font Awesome 5 Free";font-weight:900;position:absolute;content:"";left:-1.5em}ol.is-style-vk-default li::before,ul.is-style-vk-default li::before{font-size:22px;line-height:1.1em}ol.vk-has-pale-pink-color li::before,ul.vk-has-pale-pink-color li::before{color:#f78da7}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,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{color:#fff;background-color:#f78da7}ol.vk-has-vivid-red-color li::before,ul.vk-has-vivid-red-color li::before{color:#cf2e2e}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,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{color:#fff;background-color:#cf2e2e}ol.vk-has-luminous-vivid-orange-color li::before,ul.vk-has-luminous-vivid-orange-color li::before{color:#ff6900}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,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{color:#fff;background-color:#ff6900}ol.vk-has-luminous-vivid-amber-color li::before,ul.vk-has-luminous-vivid-amber-color li::before{color:#fcb900}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,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{color:#fff;background-color:#fcb900}ol.vk-has-light-green-cyan-color li::before,ul.vk-has-light-green-cyan-color li::before{color:#7bdcb5}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,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{color:#fff;background-color:#7bdcb5}ol.vk-has-vivid-green-cyan-color li::before,ul.vk-has-vivid-green-cyan-color li::before{color:#00d084}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,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{color:#fff;background-color:#00d084}ol.vk-has-pale-cyan-blue-color li::before,ul.vk-has-pale-cyan-blue-color li::before{color:#8ed1fc}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,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{color:#fff;background-color:#8ed1fc}ol.vk-has-vivid-cyan-blue-color li::before,ul.vk-has-vivid-cyan-blue-color li::before{color:#0693e3}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,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{color:#fff;background-color:#0693e3}ol.vk-has-vivid-purple-color li::before,ul.vk-has-vivid-purple-color li::before{color:#9b51e0}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,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{color:#fff;background-color:#9b51e0}ol.vk-has-very-light-gray-color li::before,ul.vk-has-very-light-gray-color li::before{color:#eee}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,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{color:#fff;background-color:#eee}ol.vk-has-cyan-bluish-gray-color li::before,ul.vk-has-cyan-bluish-gray-color li::before{color:#abb8c3}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,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{color:#fff;background-color:#abb8c3}ol.vk-has-very-dark-gray-color li::before,ul.vk-has-very-dark-gray-color li::before{color:#313131}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,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{color:#fff;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 ol,.wp-block-group.is-style-vk-group-solid ul{margin-top:0}.wp-block-group.is-style-vk-group-solid ol li:last-child,.wp-block-group.is-style-vk-group-solid ul 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 ol,.wp-block-group.is-style-vk-group-solid-roundcorner ul{margin-top:0}.wp-block-group.is-style-vk-group-solid-roundcorner ol li:last-child,.wp-block-group.is-style-vk-group-solid-roundcorner ul 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 ol,.wp-block-group.is-style-vk-group-dotted ul{margin-top:0}.wp-block-group.is-style-vk-group-dotted ol li:last-child,.wp-block-group.is-style-vk-group-dotted ul 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 ol,.wp-block-group.is-style-vk-group-dashed ul{margin-top:0}.wp-block-group.is-style-vk-group-dashed ol li:last-child,.wp-block-group.is-style-vk-group-dashed ul 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 ol,.wp-block-group.is-style-vk-group-double ul{margin-top:0}.wp-block-group.is-style-vk-group-double ol li:last-child,.wp-block-group.is-style-vk-group-double ul li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-stitch{margin:1em 0;padding:.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 ol,.wp-block-group.is-style-vk-group-stitch ul{margin-top:0}.wp-block-group.is-style-vk-group-stitch ol li:last-child,.wp-block-group.is-style-vk-group-stitch ul 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 ol,.wp-block-group.is-style-vk-group-top-bottom-border ul{margin-top:0}.wp-block-group.is-style-vk-group-top-bottom-border ol li:last-child,.wp-block-group.is-style-vk-group-top-bottom-border ul li:last-child{margin-bottom:0}.wp-block-group.is-style-vk-group-shadow{-webkit-box-shadow:0 0 5px rgba(0,0,0,.2);box-shadow:0 0 5px rgba(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 ol,.wp-block-group.is-style-vk-group-shadow ul{margin-top:0}.wp-block-group.is-style-vk-group-shadow ol li:last-child,.wp-block-group.is-style-vk-group-shadow ul li:last-child{margin-bottom:0}.wp-block-group h3:first-child,.wp-block-group h4:first-child{margin-top:0}.wp-block-group .wp-block-columns:last-child,.wp-block-group dl:last-child,.wp-block-group ol:last-child,.wp-block-group p:last-child,.wp-block-group table:last-child,.wp-block-group ul: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 |
+
.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}
|
3 |
+
.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:.7rem;margin-top:.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::after,.vk_balloon-type-think .vk_balloon_content::before{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(0,0) rotateZ(0);transform:translate(0,0) rotateZ(0)}25%{-webkit-transform:translate(2px,2px) rotateZ(1deg);transform:translate(2px,2px) rotateZ(1deg)}50%{-webkit-transform:translate(0,2px) rotateZ(0);transform:translate(0,2px) rotateZ(0)}75%{-webkit-transform:translate(2px,0) rotateZ(-1deg);transform:translate(2px,0) rotateZ(-1deg)}100%{-webkit-transform:translate(0,0) rotateZ(0);transform:translate(0,0) rotateZ(0)}}@keyframes vibration{0%{-webkit-transform:translate(0,0) rotateZ(0);transform:translate(0,0) rotateZ(0)}25%{-webkit-transform:translate(2px,2px) rotateZ(1deg);transform:translate(2px,2px) rotateZ(1deg)}50%{-webkit-transform:translate(0,2px) rotateZ(0);transform:translate(0,2px) rotateZ(0)}75%{-webkit-transform:translate(2px,0) rotateZ(-1deg);transform:translate(2px,0) rotateZ(-1deg)}100%{-webkit-transform:translate(0,0) rotateZ(0);transform:translate(0,0) rotateZ(0)}}@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}}
|
4 |
+
.vk_button{margin:5px 0}.vk_button-color-custom a:hover{opacity:.8;-webkit-box-shadow:0 0 0 .2rem rgba(171,184,195,.25);box-shadow:0 0 0 .2rem rgba(171,184,195,.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_link{min-width:100px;min-height:30px}.vk_button_link.btn{padding-top:.7em;padding-bottom:.6em;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.vk_button_link_before{margin-right:.7rem}.vk_button_link_after{margin-left:.7rem}.vk_button_link_subCaption{display:block;overflow:hidden;margin:0;font-size:80%}.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{color:#fff;background-color:#f8f9fa}.btn.btn-dark{color:#fff;background-color:#343a40}.btn.btn-dark:hover,.btn.btn-secondary:hover{color:#fff}.btn.btn-outline-primary{color:#007bff;border:1px solid #007bff;background:0 0;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-secondary{color:#6c757d;border:1px solid #6c757d;background:0 0;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-success{color:#28a745;border:1px solid #28a745;background:0 0;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-info{color:#17a2b8;border:1px solid #17a2b8;background:0 0;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-warning{color:#ffc107;border:1px solid #ffc107;background:0 0;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-danger{color:#dc3545;border:1px solid #dc3545;background:0 0;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-light{color:#f8f9fa;border:1px solid #f8f9fa;background:0 0;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-dark{color:#343a40;border:1px solid #343a40;background:0 0;-webkit-box-shadow:none;box-shadow:none}.btn.btn-outline-primary:focus,.btn.btn-outline-primary:hover{background:#007bff;color:#fff}.btn.btn-outline-secondary:focus,.btn.btn-outline-secondary:hover{background:#6c757d;color:#fff}.btn.btn-outline-success:focus,.btn.btn-outline-success:hover{background:#28a745;color:#fff}.btn.btn-outline-info:focus,.btn.btn-outline-info:hover{background:#17a2b8;color:#fff}.btn.btn-outline-warning:focus,.btn.btn-outline-warning:hover{background:#ffc107;color:#fff}.btn.btn-outline-danger:focus,.btn.btn-outline-danger:hover{background:#dc3545;color:#fff}.btn.btn-outline-light:focus,.btn.btn-outline-light:hover{background:#f8f9fa;color:#fff}.btn.btn-outline-dark:focus,.btn.btn-outline-dark:hover{background:#343a40;color:#fff}
|
5 |
+
.vk_faq{display:block;overflow:hidden;border-bottom:1px dotted #ccc;padding:0 0 25px;margin:25px 0;width:100%;position:relative}.vk_faq_content,.vk_faq_title{border:none;padding-left:35px}.vk_faq_content:before,.vk_faq_title: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:0}.vk_faq_content:before{content:"A ";color:#337ab7;font-family:""}
|
6 |
+
.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}.vk_flow-arrow-off{padding-bottom:0;margin-bottom:30px}.vk_flow-arrow-off:after{content:"";font-size:0;background-image:none}.vk_flow_frame{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 25px;border:3px solid #e5e5e5;margin:0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.vk_flow_frame_text{display:block;overflow:hidden;margin:0;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.vk_flow_frame_text_content,.vk_flow_frame_text_title{padding-left:0;border:none}.vk_flow_frame_text_title{border-bottom:1px dotted #ccc;margin:0 0 10px;padding:0 0 5px;font-size:1.2em}.vk_flow_frame_text_content{margin-bottom:0}.vk_flow_frame_image{max-width:150px;margin-left:15px;-webkit-box-sizing:border-box;box-sizing:border-box}
|
7 |
+
.vk_heading.vk_heading-style-plain .vk_heading_title{background:0 0;border:none;border-radius:0;padding:0;font-weight:400;-webkit-box-shadow:none;box-shadow:none}.vk_heading.vk_heading-style-plain .vk_heading_title:after{content:none;border:none}.vk_heading.vk_heading-style-plain .vk_heading_title:before{content:none}.vk_heading.vk_heading-style-plain .vk_heading_title:after{background:0 0;border:none;border-radius:0;padding:0;font-weight:400;-webkit-box-shadow:none;box-shadow:none}.vk_heading.vk_heading-style-plain .vk_heading_title:after:after{content:none;border:none}.vk_heading.vk_heading-style-plain .vk_heading_title:after:before{content:none}.vk_heading_subtext{margin-bottom:0}
|
8 |
+
.editor-styles-wrapper .is-style-vk-heading h3.is-style-vk-heading:after,.entry-body .is-style-vk-heading h3.is-style-vk-heading:after,.is-style-vk-heading h3.is-style-vk-heading:after{border-bottom:none!important}.editor-styles-wrapper .is-style-vk-heading-plain,.entry-body .is-style-vk-heading-plain,.is-style-vk-heading-plain{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;padding:unset}.editor-styles-wrapper .is-style-vk-heading-plain::after,.editor-styles-wrapper .is-style-vk-heading-plain::before,.entry-body .is-style-vk-heading-plain::after,.entry-body .is-style-vk-heading-plain::before,.is-style-vk-heading-plain::after,.is-style-vk-heading-plain::before{content:none}.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray,.entry-body .is-style-vk-heading-background_fill_lightgray,.is-style-vk-heading-background_fill_lightgray{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow: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}.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::after,.editor-styles-wrapper .is-style-vk-heading-background_fill_lightgray::before,.entry-body .is-style-vk-heading-background_fill_lightgray::after,.entry-body .is-style-vk-heading-background_fill_lightgray::before,.is-style-vk-heading-background_fill_lightgray::after,.is-style-vk-heading-background_fill_lightgray::before{content:none}.editor-styles-wrapper .is-style-vk-heading-double_black,.entry-body .is-style-vk-heading-double_black,.is-style-vk-heading-double_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow: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}.editor-styles-wrapper .is-style-vk-heading-double_black::after,.editor-styles-wrapper .is-style-vk-heading-double_black::before,.entry-body .is-style-vk-heading-double_black::after,.entry-body .is-style-vk-heading-double_black::before,.is-style-vk-heading-double_black::after,.is-style-vk-heading-double_black::before{content:none}.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black,.entry-body .is-style-vk-heading-double_bottomborder_black,.is-style-vk-heading-double_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow: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}.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::after,.editor-styles-wrapper .is-style-vk-heading-double_bottomborder_black::before,.entry-body .is-style-vk-heading-double_bottomborder_black::after,.entry-body .is-style-vk-heading-double_bottomborder_black::before,.is-style-vk-heading-double_bottomborder_black::after,.is-style-vk-heading-double_bottomborder_black::before{content:none}.editor-styles-wrapper .is-style-vk-heading-solid_black,.entry-body .is-style-vk-heading-solid_black,.is-style-vk-heading-solid_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow: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}.editor-styles-wrapper .is-style-vk-heading-solid_black::after,.editor-styles-wrapper .is-style-vk-heading-solid_black::before,.entry-body .is-style-vk-heading-solid_black::after,.entry-body .is-style-vk-heading-solid_black::before,.is-style-vk-heading-solid_black::after,.is-style-vk-heading-solid_black::before{content:none}.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black,.entry-body .is-style-vk-heading-solid_bottomborder_black,.is-style-vk-heading-solid_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow: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}.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::after,.editor-styles-wrapper .is-style-vk-heading-solid_bottomborder_black::before,.entry-body .is-style-vk-heading-solid_bottomborder_black::after,.entry-body .is-style-vk-heading-solid_bottomborder_black::before,.is-style-vk-heading-solid_bottomborder_black::after,.is-style-vk-heading-solid_bottomborder_black::before{content:none}.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black,.entry-body .is-style-vk-heading-dotted_bottomborder_black,.is-style-vk-heading-dotted_bottomborder_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow: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}.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::after,.editor-styles-wrapper .is-style-vk-heading-dotted_bottomborder_black::before,.entry-body .is-style-vk-heading-dotted_bottomborder_black::after,.entry-body .is-style-vk-heading-dotted_bottomborder_black::before,.is-style-vk-heading-dotted_bottomborder_black::after,.is-style-vk-heading-dotted_bottomborder_black::before{content:none}.editor-styles-wrapper .is-style-vk-heading-both_ends,.entry-body .is-style-vk-heading-both_ends,.is-style-vk-heading-both_ends{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow:unset;box-shadow:unset;border-radius:unset;overflow:unset;background-color:transparent;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;margin-bottom:1.2em;padding:0}.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.entry-body .is-style-vk-heading-both_ends::after,.entry-body .is-style-vk-heading-both_ends::before,.is-style-vk-heading-both_ends::after,.is-style-vk-heading-both_ends::before{content:"";-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-bottom:1px solid #333;position:unset;width:unset;border-top:none}.editor-styles-wrapper .is-style-vk-heading-both_ends::before,.entry-body .is-style-vk-heading-both_ends::before,.is-style-vk-heading-both_ends::before{margin-right:1em;top:unset}.editor-styles-wrapper .is-style-vk-heading-both_ends::after,.entry-body .is-style-vk-heading-both_ends::after,.is-style-vk-heading-both_ends::after{margin-left:1em;bottom:unset}.editor-styles-wrapper .is-style-vk-heading-brackets_black,.entry-body .is-style-vk-heading-brackets_black,.is-style-vk-heading-brackets_black{position:relative;margin-left:unset;margin-right:unset;outline:unset;outline-offset:unset;-webkit-box-shadow: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}.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.entry-body .is-style-vk-heading-brackets_black::after,.entry-body .is-style-vk-heading-brackets_black::before,.is-style-vk-heading-brackets_black::after,.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}.editor-styles-wrapper .is-style-vk-heading-brackets_black::before,.entry-body .is-style-vk-heading-brackets_black::before,.is-style-vk-heading-brackets_black::before{border-left:solid 1px #333;left:0}.editor-styles-wrapper .is-style-vk-heading-brackets_black::after,.entry-body .is-style-vk-heading-brackets_black::after,.is-style-vk-heading-brackets_black::after{border-right:solid 1px #333!important;right:0;left:auto}
|
9 |
+
.is-style-vk-image-border img{border:1px solid #e5e5e5}.is-style-vk-image-photoFrame{background-color:#fff;padding:10px;-webkit-box-shadow:1px 1px 4px rgba(0,0,0,.2);box-shadow:1px 1px 4px rgba(0,0,0,.2)}.is-style-vk-image-photoFrame figcaption{margin:8px 0 0}
|
10 |
+
@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:.9em;margin-bottom:.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:.5em;text-align:center;line-height:1.8em}
|
11 |
+
.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:700;padding:0;-webkit-box-shadow:none;box-shadow:none;border:none;margin-bottom:.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}
|
12 |
+
@media (max-width:575.98px){.vk_table-col-mobile1 td,.vk_table-col-mobile1 th{display:block}.vk_table-col-mobile1 th{background-color:rgba(0,0,0,.05)}.vk_table-col-mobile1.table-striped tbody tr:nth-of-type(odd){background:inherit}}.vk_simpleTable-edit .editor-block-list__block,.vk_simpleTable-edit .editor-block-list__block-edit,.vk_simpleTable-edit .editor-block-list__layout,.vk_simpleTable-edit .editor-inner-blocks,.vk_simpleTable-edit .editor-rich-text__editable{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:0;left:0;top:0;bottom:0}.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 td,.vk_simpleTable-edit .editor-inner-blocks th{padding:0;display:block;width:100%;border:none}.vk_simpleTable-edit .editor-inner-blocks td .editor-rich-text__editable,.vk_simpleTable-edit .editor-inner-blocks th .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,.05)}
|
13 |
+
@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}}
|
14 |
+
.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;margin-bottom:.5rem;border:none;padding:0;background-color:transparent}.vk_staff_text_name:after,.vk_staff_text_name:before{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 .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:0 0}.vk_staff_text_profileTitle:after,.vk_staff_text_profileTitle:before{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-lp .vk_staff_text,.page-template-page-lp-builder .vk_staff_text,.page-template-page-onecolumn .vk_staff_text{width:74%}.page-template-page-lp .vk_staff_text_name,.page-template-page-lp-builder .vk_staff_text_name,.page-template-page-onecolumn .vk_staff_text_name{font-size:4rem}.page-template-page-lp .vk_staff_text_caption,.page-template-page-lp-builder .vk_staff_text_caption,.page-template-page-onecolumn .vk_staff_text_caption{font-size:16px;letter-spacing:.5rem}.page-template-page-lp .vk_staff_text_role,.page-template-page-lp-builder .vk_staff_text_role,.page-template-page-onecolumn .vk_staff_text_role{letter-spacing:.5rem}.page-template-page-lp .vk_staff_photo,.page-template-page-lp-builder .vk_staff_photo,.page-template-page-onecolumn .vk_staff_photo{width:22%}}@media (min-width:1200px){.page-template-page-lp .vk_staff_text,.page-template-page-lp-builder .vk_staff_text,.page-template-page-onecolumn .vk_staff_text{width:75%}.page-template-page-lp .vk_staff_photo,.page-template-page-lp-builder .vk_staff_photo,.page-template-page-onecolumn .vk_staff_photo{width:20%}}
|
15 |
+
.vk_table-col-overflow{white-space:nowrap!important}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/vk-blocks/build/block-build.js
CHANGED
@@ -11,10 +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(3),r="function"==typeof Symbol&&Symbol.for,a=r?Symbol.for("react.element"):60103,l=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,
|
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,f=s.ColorPalette,b=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:b,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,b=t.balloonName,k=t.balloonType,v=t.balloonBgColor,g=t.balloonAlign,_=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:g,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(f,{value:v,onChange:function(e){return r({balloonBgColor:e})}}))),React.createElement("div",{className:"".concat(o," vk_balloon vk_balloon-").concat(g," vk_balloon-").concat(k)},React.createElement("div",{className:"vk_balloon_icon"},function(e){if(e&&-1===e.indexOf("{"))return React.createElement(p,{onSelect:function(e){return r({IconImage:e.sizes.full.url})},type:"image",className:"vk_balloon_icon_image",value:e,render:function(t){var o=t.open;return React.createElement(c,{onClick:o,className:e?"image-button":"button button-large"},e?React.createElement("img",{className:"vk_balloon_icon_image",src:e,alt:""}):n("Select image","vk-blocks"))}});var t=JSON.parse(e);return React.createElement(p,{onSelect:function(e){return r({IconImage:JSON.stringify(e)})},type:"image",className:"vk_balloon_icon_image",value:e,render:function(o){var r=o.open;return React.createElement(c,{onClick:r,className:e?"image-button":"button button-large"},e?React.createElement("img",{className:"vk_balloon_icon_image",src:t.sizes.full.url,alt:t.alt}):n("Select image","vk-blocks"))}})}(_),React.createElement(u,{tagName:"figcaption",className:"vk_balloon_icon_name",onChange:function(e){return r({balloonName:e})},value:b,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,-1===c.indexOf("{")?React.createElement("img",{className:"vk_balloon_icon_image",src:c,alt:""}):React.createElement("img",{className:"vk_balloon_icon_image",src:JSON.parse(c).sizes.full.url,alt:JSON.parse(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,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,f=function(e){return["core/group"].includes(e)};c("blocks.registerBlockType","vk-blocks/group-style",(function(e){return f(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 f(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 b=lodash.assign,k=wp.i18n.__,v=wp.element.Fragment,g=wp.hooks.addFilter,_=wp.components.PanelBody,y=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,d=y.InspectorControls,h=y.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}g("blocks.registerBlockType","vk-blocks/list-style",(function(e){return C(e.name)&&(e.attributes=b(e.attributes,{color:{type:"string"}})),e})),g("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(d,null,React.createElement(_,{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,B=x.toggleFormat,T=x.applyFormat,O=x.removeFormat,I=x.getActiveFormat,A=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,R=A.RichTextToolbarButton,j=A.RichTextShortcut,P=A.InspectorControls,z=A.PanelColorSettings,M=(A.getColorObjectByColorValue,wp.element.Fragment),F="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(F,{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=I(n,F);t=a.attributes.data}var l=function(e){e=function(e){return void 0===e&&(e="#fffd6b"),e}(e),r(B(n,{type:F,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(w(e,.7)," 0);")}}))};return React.createElement(M,null,React.createElement(P,null,React.createElement(z,{title:N("Highlighter","vk-blocks"),initialOpen:!1,colorSettings:[{value:t,onChange:function(e){r(e?T(n,{type:F,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(w(e,.7)," 0);")}}):O(n,F))},label:N("Highlight Color","vk-blocks")}]})),React.createElement(j,{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 V(e){return(V="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 D(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 $(e,t){return!t||"object"!==V(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 q(e){return(q=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function J(e,t){return(J=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var W=wp.i18n.__,Y=wp.editor,G=Y.RichText,Q=Y.MediaUpload,K=wp.components.Button,X=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),$(this,q(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&&J(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,f=e.vk_staff_profileTextColor,b=e.vk_staff_photoBorder,k=this.props.setAttributes,v=this.props.className,g=this.props.for_,_="";return"edit"===g?_=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(G,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},onChange:function(e){return k({vk_staff_text_name:e})},value:t,placeholder:W("Your Name","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},onChange:function(e){return k({vk_staff_text_caption:e})},value:n,placeholder:W("Caption","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_role",style:{color:m},onChange:function(e){return k({vk_staff_text_role:e})},value:o,placeholder:W("Role position","vk-blocks")}),H.a.createElement(G,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:p},onChange:function(e){return k({vk_staff_text_profileTitle:e})},value:r,placeholder:W("Profile title","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_profileText",style:{color:f},onChange:function(e){return k({vk_staff_text_profileText:e})},value:a,placeholder:W("Profile text","vk-blocks")})),H.a.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(b)},H.a.createElement(Q,{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(K,{onClick:t,className:l?"image-button":"button button-large"},l?H.a.createElement("img",{className:"vk_staff_photo_image",src:l,alt:W(c,"vk-blocks")}):W("Select image","vk-blocks"))}}))):"save"===g&&(_=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(G.Content,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},value:t}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},value:n}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_role",style:{color:m},value:o}),H.a.createElement(G.Content,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:p},value:r}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_profileText",style:{color:f},value:a})),l?H.a.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(b)},H.a.createElement("img",{className:"vk_staff_photo_image",src:l,alt:c?W(c,"vk-blocks"):""})):"")),_}}])&&D(n.prototype,o),r&&D(n,r),t}(H.a.Component),Z=wp.i18n.__,ee=wp.blocks.registerBlockType,te=wp.components,ne=te.TextControl,oe=te.PanelBody,re=te.BaseControl,ae=te.SelectControl,le=wp.element.Fragment,ce=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,ie=ce.InspectorControls,se=ce.ColorPalette,ue=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"}));ee("vk-blocks/staff",{title:Z("Staff","vk-blocks"),icon:ue,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(le,null,H.a.createElement(ie,null,H.a.createElement(oe,{title:Z("Layout","vk-blocks")},H.a.createElement(ae,{value:a,onChange:function(e){return n({vk_staff_layout:e})},options:[{value:"default",label:Z("Default","vk-blocks")},{value:"imageLeft",label:Z("Image left","vk-blocks")}]})),H.a.createElement(oe,{title:Z("Image border","vk-blocks")},H.a.createElement(ae,{value:m,onChange:function(e){return n({vk_staff_photoBorder:e})},options:[{value:"default",label:Z("Default","vk-blocks")},{value:"none",label:Z("None","vk-blocks")}]})),H.a.createElement(oe,{title:Z("Alt text","vk-blocks")},H.a.createElement(re,{help:Z("Set the alt text for profile image","vk-blocks")},H.a.createElement(ne,{value:r,onChange:function(e){return n({vk_staff_photo_image_alt:e})}}))),H.a.createElement(oe,{title:Z("Color","vk-blocks")},H.a.createElement(re,{label:Z("Staff name","vk-blocks")},H.a.createElement(se,{value:l,onChange:function(e){return n({vk_staff_nameColor:e})}})),H.a.createElement(re,{label:Z("Name caption","vk-blocks")},H.a.createElement(se,{value:c,onChange:function(e){return n({vk_staff_captionColor:e})}})),H.a.createElement(re,{label:Z("Role position","vk-blocks")},H.a.createElement(se,{value:i,onChange:function(e){return n({vk_staff_positionColor:e})}})),H.a.createElement(re,{label:Z("Profile title","vk-blocks")},H.a.createElement(se,{value:s,onChange:function(e){return n({vk_staff_profileTitleColor:e})}})),H.a.createElement(re,{label:Z("Profile text","vk-blocks")},H.a.createElement(se,{value:u,onChange:function(e){return n({vk_staff_profileTextColor:e})}})))),H.a.createElement(X,{attributes:t,setAttributes:n,className:o,for_:"edit"}))},save:function(e){var t=e.attributes;return H.a.createElement(X,{attributes:t,setAttributes:"",className:"",for_:"save"})}});var me=n(1),pe=n.n(me);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 be(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 ke(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 ve(e){return(ve=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ge(e,t){return(ge=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var _e=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),ke(this,ve(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&&ge(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:pe()("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}}))}}])&&be(n.prototype,o),r&&be(n,r),t}(H.a.Component);function ye(e){return(ye="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 he(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 Ee(e,t,n){return t&&he(e.prototype,t),n&&he(e,n),e}function Ce(e,t){return!t||"object"!==ye(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 Ne(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&&xe(e,t)}function xe(e,t){return(xe=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Se=function(e){function t(){return de(this,t),Ce(this,we(t).apply(this,arguments))}return Ne(t,e),Ee(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),Be=function(e){function t(){return de(this,t),Ce(this,we(t).apply(this,arguments))}return Ne(t,e),Ee(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),Te={unit:{type:"string",default:"px"},pc:{type:"number",default:50},tablet:{type:"number",default:10},mobile:{type:"number",default:10}},Oe=(wp.editor.RichText,[{attributes:Te,save:function(e){var t=e.attributes;return H.a.createElement(Be,{attributes:t})}},{attributes:Te,save:function(e){var t=e.attributes;return H.a.createElement(Se,{attributes:t})}}]),Ie=wp.i18n.__,Ae=wp.blocks.registerBlockType,Re=wp.components,je=Re.RangeControl,Pe=Re.PanelBody,ze=Re.BaseControl,Me=Re.SelectControl,Fe=wp.element.Fragment,Le=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).InspectorControls,Ue=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"})));Ae("vk-blocks/spacer",{title:Ie("Responsive Spacer","vk-blocks"),icon:Ue,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(Fe,null,H.a.createElement(Le,null,H.a.createElement(Pe,null,H.a.createElement(Me,{label:Ie("Unit Type","vk-blocks"),value:r,onChange:function(e){return n({unit:e})},options:[{value:"px",label:Ie("px","vk-blocks")},{value:"em",label:Ie("em","vk-blocks")},{value:"rem",label:Ie("rem","vk-blocks")},{value:"vw",label:Ie("vw","vk-blocks")}]}),H.a.createElement(ze,{label:Ie("Height for each device.","vk-blocks")},H.a.createElement(je,{label:Ie("PC","vk-blocks"),value:a,onChange:function(e){return n({pc:e})},step:.1}),H.a.createElement(je,{label:Ie("Tablet","vk-blocks"),value:l,onChange:function(e){return n({tablet:e})},step:.1}),H.a.createElement(je,{label:Ie("Mobile","vk-blocks"),value:c,onChange:function(e){return n({mobile:e})},step:.1})))),H.a.createElement(_e,{attributes:t,className:o}))},save:function(e){var t=e.attributes;return H.a.createElement(_e,{attributes:t})},deprecated:Oe});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 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"!==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 $e(e){return($e=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function qe(e,t){return(qe=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Je=window.lodash.range,We=wp.i18n,Ye=We.__,Ge=We.sprintf,Qe=wp.element.Component,Ke=wp.components.Toolbar,Xe=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),De(this,$e(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&&qe(e,t)}(t,e),n=t,(o=[{key:"createLevelControl",value:function(e,t,n){return{icon:"heading",title:Ge(Ye("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(Ke,{controls:Je(n,o).map((function(t){return e.createLevelControl(t,r,a)}))})}}])&&Ve(n.prototype,o),r&&Ve(n,r),t}(Qe);function Ze(e){return(Ze="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 et(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 tt(e,t){return!t||"object"!==Ze(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 nt(e){return(nt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ot(e,t){return(ot=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var rt=wp.editor.RichText,at=wp.i18n.__,lt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),tt(this,nt(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&&ot(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,f=n.titleMarginBottom,b=n.outerMarginBottom,k=this.props.setAttributes,v=this.props.className,g=this.props.for_,_=pe()(v,"vk_heading vk_heading-style-".concat(p)),y="h"+o;return null!=b&&(e={marginBottom:b+"rem"}),t=null!=f?{color:l,fontSize:c+"rem",marginBottom:f+"rem",textAlign:r}:{color:l,fontSize:c+"rem",textAlign:r},"edit"===g?H.a.createElement("div",{className:_,style:e},H.a.createElement(rt,{tagName:y,value:a,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(p),placeholder:at("Input title…","vk-blocks")}),function(){if("on"===s)return H.a.createElement(rt,{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:at("Input sub text…","vk-blocks")})}()):"save"===g?H.a.createElement("div",{className:_,style:e},H.a.createElement(rt.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:at("Input title…","vk-blocks")}),function(){if("on"===s)return H.a.createElement(rt.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:at("Input sub text…","vk-blocks")})}()):void 0}}])&&et(n.prototype,o),r&&et(n,r),t}(H.a.Component);function ct(e){throw new Error('"'+e+'" is read-only')}var it=wp.element.Fragment,st=wp.editor,ut=st.RichText;st.InspectorControls,st.ColorPalette,st.BlockControls,st.AlignmentToolbar;var mt=[{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,f=t.outerMarginBottom,b="h"+n;return H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(m),style:{marginBottom:f+"rem"}},H.a.createElement(ut.Content,{tagName:b,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(ut.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,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=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:""})):(g||(ct("color1"),g="#0693e3"),"0"===d?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:g,border:"1px solid ".concat(g)}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+g}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:g}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),H.a.createElement(ut.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:""})):(_||(ct("color2"),_="#0693e3"),"0"===h?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},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 "+_}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:_}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),H.a.createElement(ut.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:f?"_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:""})):(y||(ct("color3"),y="#0693e3"),"0"===E?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:y,border:"1px solid ".concat(y)}},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 "+y}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:y}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),H.a.createElement(ut.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,f=t.outerMarginBottom,b="h"+n;return H.a.createElement(it,null,null==f?H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(m)},H.a.createElement(ut.Content,{tagName:b,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(ut.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:f+"rem"}},H.a.createElement(ut.Content,{tagName:b,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(ut.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(m)})}()))}}],pt=wp.i18n.__,ft=wp.blocks.registerBlockType,bt=wp.components,kt=bt.RangeControl,vt=bt.PanelBody,gt=bt.RadioControl,_t=bt.SelectControl,yt=wp.element.Fragment,dt=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,ht=dt.InspectorControls,Et=dt.ColorPalette,Ct=dt.BlockControls,wt=dt.AlignmentToolbar,Nt=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"}))));ft("vk-blocks/heading",{title:pt("Heading","vk-blocks"),icon:Nt,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,f=t.outerMarginBottom,b=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(yt,null,H.a.createElement(Ct,null,H.a.createElement(Xe,{minLevel:2,maxLevel:5,selectedLevel:r,onChange:b})),H.a.createElement(ht,null,H.a.createElement(vt,{title:pt("Style Settings","vk-blocks")},H.a.createElement(_t,{label:pt("Heading style","vk-blocks"),value:m,onChange:function(e){return n({titleStyle:e})},options:[{label:pt("Default","vk-blocks"),value:"default"},{label:pt("Plain","vk-blocks"),value:"plain"}]}),H.a.createElement("label",null,pt("Margin bottom size (rem)","vk-blocks")),H.a.createElement(kt,{value:f,onChange:function(e){n({outerMarginBottom:e})},min:-1,max:8,step:.1})),H.a.createElement(vt,{title:pt("Heading Settings","vk-blocks")},H.a.createElement("label",null,pt("Level","vk-blocks")),H.a.createElement(Xe,{minLevel:1,maxLevel:7,selectedLevel:r,onChange:b}),H.a.createElement("p",null,pt("Text Alignment")),H.a.createElement(wt,{value:a,onChange:function(e){n({align:e})}}),H.a.createElement("label",null,pt("Text size (rem)","vk-blocks")),H.a.createElement(kt,{value:c,onChange:function(e){n({titleSize:e})},min:.5,max:4,step:.1}),H.a.createElement("label",null,pt("Heading margin bottom size (rem)","vk-blocks")),H.a.createElement(kt,{value:p,onChange:function(e){n({titleMarginBottom:e})},min:-1,max:3,step:.1}),H.a.createElement(Et,{value:l,onChange:function(e){return n({titleColor:e})}})),H.a.createElement(vt,{title:pt("Sub Text Settings","vk-blocks")},H.a.createElement(gt,{label:pt("Position","vk-blocks"),selected:i,options:[{label:pt("Display","vk-blocks"),value:"on"},{label:pt("Hide","vk-blocks"),value:"off"}],onChange:function(e){return n({subTextFlag:e})}}),H.a.createElement("label",null,pt("Text size (rem)","vk-blocks")),H.a.createElement(kt,{value:u,onChange:function(e){n({subTextSize:e})},min:.5,max:3,step:.1}),H.a.createElement(Et,{value:s,onChange:function(e){return n({subTextColor:e})}}))),H.a.createElement(lt,{attributes:t,setAttributes:n,className:o,for_:"edit"}))},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(lt,{attributes:t,className:n,for_:"save"})},deprecated:mt});var xt=wp.editor.RichText,St=[{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(xt.Content,{tagName:"p",value:o}))}}],Bt=wp.i18n.__,Tt=wp.blocks.registerBlockType,Ot=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).RichText;Tt("vk-blocks/alert",{title:Bt("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(Ot,{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(Ot.Content,{tagName:"p",value:r}))},deprecated:St});n(4);function It(e){return(It="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){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 Rt(e,t){return!t||"object"!==It(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 Pt(e,t){return(Pt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var zt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Rt(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&&Pt(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={},f="",b="";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&&(f=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",style:p,className:m,role:"button","aria-pressed":!0,target:l?"_blank":null,rel:"noopener noreferrer"},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&At(n.prototype,o),r&&At(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 Ft(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 Lt(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 Ut(e){return(Ut=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 Vt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Lt(this,Ut(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=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="",f="";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&&(f=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,f)}}])&&Ft(n.prototype,o),r&&Ft(n,r),t}(H.a.Component);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 $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 function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(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="",f="";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&&(f=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,f)}}])&&$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){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 Kt(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 Xt(e){return(Xt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Zt(e,t){return(Zt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var en=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Kt(this,Xt(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&&Zt(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={},f="",b="";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&&(f=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:m,role:"button","aria-pressed":!0,style:p,target:l?"_blank":null,rel:"noopener noreferrer"},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&Qt(n.prototype,o),r&&Qt(n,r),t}(H.a.Component);function tn(e){return(tn="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 nn(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"!==tn(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 rn(e){return(rn=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 ln=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),on(this,rn(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,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={},f="",b="";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&&(f=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:m,role:"button","aria-pressed":!0,style:p,target:l?"_blank":null},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&nn(n.prototype,o),r&&nn(n,r),t}(H.a.Component),cn=wp.editor.RichText,sn=[{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(Vt,{lbColorCustom:i,lbColor:c,lbType:l,lbAlign:s,lbSize:a,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:m,lbRichtext:H.a.createElement(cn.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(Yt,{lbColorCustom:i,lbColor:c,lbType:l,lbAlign:s,lbSize:a,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:m,lbRichtext:H.a.createElement(cn.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,f="";return s?f="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(f="vk_button vk_button-align-".concat(u)),H.a.createElement("div",{className:f},H.a.createElement(en,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:l,lbUrl:r,lbTarget:a,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:p,lbsubCaption:o,lbRichtext:H.a.createElement(cn.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,f="";return s?f="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(f="vk_button vk_button-align-".concat(u)),H.a.createElement("div",{className:f},H.a.createElement(ln,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:l,lbUrl:r,lbTarget:a,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:p,lbsubCaption:o,lbRichtext:H.a.createElement(cn.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,f=t.fontAwesomeIconAfter,b="";return u?b="vk_button vk_button-color-custom vk_button-align-".concat(m):u||(b="vk_button vk_button-align-".concat(m)),n&&(b=n+" "+b),H.a.createElement("div",{className:b},H.a.createElement(zt,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:m,lbSize:c,lbUrl:a,lbTarget:l,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:f,lbsubCaption:r,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))}}],un=wp.i18n.__,mn=wp.blocks.registerBlockType,pn=wp.components,fn=pn.RadioControl,bn=pn.PanelBody,kn=pn.BaseControl,vn=pn.CheckboxControl,gn=pn.TextControl,_n=pn.Dashicon,yn=pn.IconButton,dn=wp.element.Fragment,hn=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,En=hn.RichText,Cn=hn.InspectorControls,wn=hn.ColorPalette,Nn=hn.URLInput,xn=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"})));mn("vk-blocks/button",{title:un("Button","vk-blocks"),icon:xn,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,f=n.buttonColorCustom,b=n.buttonAlign,k=n.fontAwesomeIconBefore,v=n.fontAwesomeIconAfter;return t=f?"vk_button vk_button-align-".concat(b," vk_button-color-custom"):"vk_button vk_button-align-".concat(b),t=o?"".concat(o," vk_button vk_button-align-").concat(b," vk_button-color-custom"):"".concat(o," vk_button vk_button-align-").concat(b),H.a.createElement(dn,null,H.a.createElement(Cn,null,H.a.createElement(bn,{title:un("Button setting","vk-blocks")},H.a.createElement(gn,{label:un("Sub Caption","vk-blocks"),value:c,onChange:function(e){return r({subCaption:e})},placeholder:"Sub Caption"}),H.a.createElement(vn,{label:un("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return r({buttonTarget:e})}}),H.a.createElement(fn,{label:un("Button Size:","vk-blocks"),selected:u,options:[{label:un("Large","vk-blocks"),value:"lg"},{label:un("normal","vk-blocks"),value:"md"},{label:un("Small","vk-blocks"),value:"sm"}],onChange:function(e){return r({buttonSize:e})}}),H.a.createElement(fn,{label:un("Button Position:","vk-blocks"),selected:b,options:[{label:un("Left","vk-blocks"),value:"left"},{label:un("Center","vk-blocks"),value:"center"},{label:un("Right","vk-blocks"),value:"right"},{label:un("Block","vk-blocks"),value:"block"}],onChange:function(e){return r({buttonAlign:e})}}),H.a.createElement(fn,{label:un("Button Style:","vk-blocks"),selected:m,options:[{label:un("Solid color","vk-blocks"),value:"0"},{label:un("No background","vk-blocks"),value:"1"}],help:un('If you select "No background", that you need to select a Custom Color.',"vk-blocks"),onChange:function(e){return r({buttonType:e})}}),H.a.createElement(fn,{label:un("Default Color:","vk-blocks"),selected:p,options:[{label:un("Primary","vk-blocks"),value:"primary"},{label:un("Secondary","vk-blocks"),value:"secondary"},{label:un("Success","vk-blocks"),value:"success"},{label:un("Info","vk-blocks"),value:"info"},{label:un("Warning","vk-blocks"),value:"warning"},{label:un("Danger","vk-blocks"),value:"danger"},{label:un("Light","vk-blocks"),value:"light"},{label:un("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return r({buttonColor:e})}}),H.a.createElement(kn,{label:un("Custom Color","vk-blocks"),help:un("This custom color overrides the default color. If you want to use the default color, click the clear button.","vk-blocks")},H.a.createElement(wn,{value:f,onChange:function(e){return r({buttonColorCustom:e})}})),H.a.createElement(kn,{label:un("Font Awesome:","vk-blocks"),help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},un("Font Awesome icon list","vk-blocks"))},H.a.createElement(gn,{label:un("Before text","vk-blocks"),help:un("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(gn,{label:un("After text","vk-blocks"),help:un("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(zt,{lbColorCustom:f,lbColor:p,lbType:m,lbAlign:b,lbSize:u,lbFontAwesomeIconBefore:k,lbFontAwesomeIconAfter:v,lbsubCaption:c,lbRichtext:H.a.createElement(En,{tagName:"span",className:"vk_button_link_txt",onChange:function(e){return r({content:e})},value:l,placeholder:un("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(_n,{icon:"admin-links"}),H.a.createElement(Nn,{value:i,onChange:function(e){return r({buttonUrl:e})}}),H.a.createElement(yn,{icon:"editor-break",label:un("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,f=t.fontAwesomeIconAfter,b="";return u?b="vk_button vk_button-color-custom vk_button-align-".concat(m):u||(b="vk_button vk_button-align-".concat(m)),n&&(b=n+" "+b),H.a.createElement("div",{className:b},H.a.createElement(zt,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:m,lbSize:c,lbUrl:a,lbTarget:l,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:f,lbsubCaption:r,lbRichtext:H.a.createElement(En.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))},deprecated:sn});var Sn=wp.editor.RichText,Bn=[{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(Sn.Content,{tagName:"dt",className:"vk_faq_title",value:n}),H.a.createElement(Sn.Content,{tagName:"dd",className:"vk_faq_content",value:o}))}}],Tn=wp.i18n.__,On=wp.blocks.registerBlockType,In=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).RichText,An=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"}));On("vk-blocks/faq",{title:Tn("FAQ","vk-blocks"),icon:An,category:"vk-blocks-cat",attributes:{heading:{type:"string",source:"html",selector:"dt"},content:{type:"string",source:"html",selector:"dd"}},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(In,{tagName:"dt",className:"vk_faq_title",onChange:function(e){return n({heading:e})},value:r,placeholder:Tn("Please enter a question.","vk-blocks")}),React.createElement(In,{tagName:"dd",className:"vk_faq_content",onChange:function(e){return n({content:e})},value:a,placeholder:Tn("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(In.Content,{tagName:"dt",className:"vk_faq_title",value:o}),React.createElement(In.Content,{tagName:"dd",className:"vk_faq_content",value:r}))},deprecated:Bn});var Rn=wp.editor.RichText,jn=[{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(Rn.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:n}),H.a.createElement(Rn.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:""})):""))}}],Pn=wp.i18n.__,zn=wp.blocks.registerBlockType,Mn=wp.components,Fn=Mn.RadioControl,Ln=Mn.PanelBody,Un=Mn.Button,Hn=wp.element.Fragment,Vn=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Dn=Vn.RichText,$n=Vn.InspectorControls,qn=Vn.MediaUpload;function Jn(e){return(Jn="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){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 Yn(e,t){return!t||"object"!==Jn(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 Gn(e){return(Gn=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Qn(e,t){return(Qn=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}zn("vk-blocks/flow",{title:Pn("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(Hn,null,React.createElement($n,null,React.createElement(Ln,{title:Pn("Display of arrow","vk-blocks")},React.createElement(Fn,{selected:c,options:[{label:Pn("Arrow display","vk-blocks"),value:"vk_flow-arrow-on"},{label:Pn("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(Dn,{tagName:"dt",className:"vk_flow_frame_text_title",onChange:function(e){return n({heading:e})},value:r,placeholder:Pn("Input title","vk-blocks")}),React.createElement(Dn,{tagName:"dd",className:"vk_flow_frame_text_content",onChange:function(e){return n({content:e})},value:a,placeholder:Pn("Input content","vk-blocks")})),React.createElement("div",{className:"vk_flow_frame_image"},React.createElement(qn,{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(Un,{onClick:t,className:l?"image-button":"button button-large"},l?React.createElement("img",{className:"icon-image",src:l,alt:Pn("Upload image","vk-blocks")}):Pn("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(Dn.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:o}),React.createElement(Dn.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:jn});var Kn=wp.i18n.__,Xn=wp.editor.RichText,Zn=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Yn(this,Gn(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&&Qn(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,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=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,B=this.props.blockNum-1,T=[n,o,r],O=[a,l,c],I=[i,s,u],A=[m,p,f],R=[b,k,v],j=[g,_,y],P=[d,h,E],z=[C,w,N],M="",F="",L=z[B]?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url(".concat(z[B],")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:z[B],alt:""})):(j[B]||(j[B]="#0693e3"),"0"===P[B]?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:j[B],border:"1px solid ".concat(j[B])}},H.a.createElement("i",{className:"".concat(R[B]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+j[B]}},H.a.createElement("i",{className:"".concat(R[B]," vk_prBlocks_item_icon"),style:{color:j[B]}})));return"edit"===x?1===S?(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",onChange:function(t){return e({heading1:t})},value:n,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:a,placeholder:Kn("Input Content","vk-blocks")})):2===S?(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",onChange:function(t){return e({heading2:t})},value:o,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:l,placeholder:Kn("Input Content","vk-blocks")})):3===S&&(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",onChange:function(t){return e({heading3:t})},value:r,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:Kn("Input Content","vk-blocks")})):"save"===x&&(M=H.a.createElement(Xn.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(S),tagName:"h1",value:T[B]}),F=H.a.createElement(Xn.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(S),tagName:"p",value:O[B]})),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:I[B],target:A[B]?"_blank":"_self",className:"vk_prBlocks_item_link",rel:"noopener noreferrer"},L,M,F))}}])&&Wn(n.prototype,o),r&&Wn(n,r),t}(H.a.Component);function eo(e){throw new Error('"'+e+'" is read-only')}wp.i18n.__;var to=wp.components,no=(to.RadioControl,to.PanelBody,to.Button,to.BaseControl,to.CheckboxControl,to.TextControl,wp.element.Fragment,wp.editor),oo=no.RichText;no.InspectorControls,no.MediaUpload,no.ColorPalette;var ro=[{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,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=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:""})):(g||(eo("color1"),g="#0693e3"),"0"===d?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:g,border:"1px solid ".concat(g)}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+g}},H.a.createElement("i",{className:"".concat(b," vk_prBlocks_item_icon"),style:{color:g}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),H.a.createElement(oo.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:""})):(_||(eo("color2"),_="#0693e3"),"0"===h?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},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 "+_}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:_}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),H.a.createElement(oo.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:f?"_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:""})):(y||(eo("color3"),y="#0693e3"),"0"===E?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:y,border:"1px solid ".concat(y)}},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 "+y}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:y}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),H.a.createElement(oo.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(Zn,{attributes:t,blockNum:1,for_:"save"}),H.a.createElement(Zn,{attributes:t,blockNum:2,for_:"save"}),H.a.createElement(Zn,{attributes:t,blockNum:3,for_:"save"}))}}];function ao(e){return(ao="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 lo=function(e){if("string"==typeof e){try{JSON.parse(e)}catch(e){return!0}return!1}return"object"!==ao(e)||Array.isArray(e)};function co(e){return(co="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 io(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 so(e,t){return!t||"object"!==co(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 uo(e){return(uo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function mo(e,t){return(mo=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var po=wp.i18n.__,fo=wp.editor.RichText,bo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),so(this,uo(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&&mo(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,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,g=t.color1,_=t.color2,y=t.color3,d=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,B=this.props.blockNum-1,T=[n,o,r],O=[a,l,c],I=[i,s,u],A=[m,p,f],R=[b,k,v],j=[g,_,y],P=[d,h,E],z=[C,w,N],M="",F="",L=function(e){var t=e[B];if(lo(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[B]?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:L(z)},function(e){if(lo(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[B])):(j[B]||(j[B]="#0693e3"),"0"===P[B]?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:j[B],border:"1px solid ".concat(j[B])}},H.a.createElement("i",{className:"".concat(R[B]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+j[B]}},H.a.createElement("i",{className:"".concat(R[B]," vk_prBlocks_item_icon"),style:{color:j[B]}})));return"edit"===x?1===S?(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h3",onChange:function(t){return e({heading1:t})},value:n,placeholder:po("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:a,placeholder:po("Input Content","vk-blocks")})):2===S?(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h3",onChange:function(t){return e({heading2:t})},value:o,placeholder:po("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:l,placeholder:po("Input Content","vk-blocks")})):3===S&&(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h3",onChange:function(t){return e({heading3:t})},value:r,placeholder:po("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:po("Input Content","vk-blocks")})):"save"===x&&(M=H.a.createElement(fo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(S),tagName:"h3",value:T[B]}),F=H.a.createElement(fo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(S),tagName:"p",value:O[B]})),I[B]&&"save"===x?H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:I[B],className:"vk_prBlocks_item_link",target:A[B]?"_blank":"_self",rel:"noopener noreferrer"},U,M,F)):H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},U,M,F)}}])&&io(n.prototype,o),r&&io(n,r),t}(H.a.Component),ko=wp.i18n.__,vo=wp.blocks.registerBlockType,go=wp.components,_o=go.RadioControl,yo=go.PanelBody,ho=go.Button,Eo=go.BaseControl,Co=go.CheckboxControl,wo=go.TextControl,No=wp.element.Fragment,xo=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,So=xo.InspectorControls,Bo=xo.MediaUpload,To=xo.ColorPalette,Oo=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"}))));vo("vk-blocks/pr-blocks",{title:ko("PR Blocks","vk-blocks"),icon:Oo,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,f=n.icon3,b=n.color1,k=n.color2,v=n.color3,g=n.bgType1,_=n.bgType2,y=n.bgType3,d=n.insertImage1,h=n.insertImage2,E=n.insertImage3;t=r?"".concat(r," vk_prBlocks row"):"vk_prBlocks row";var C=function(e){if(lo(e))return e?H.a.createElement("img",{className:"icon-image",src:e,alt:ko("Upload image","vk-blocks")}):ko("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}):ko("Select image","vk-blocks")};return[H.a.createElement(No,null,H.a.createElement(So,null,H.a.createElement(yo,{title:ko("PR Block1 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:a,onChange:function(e){return o({url1:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:i,onChange:function(e){return o({urlOpenType1:e})}})),H.a.createElement(Eo,{label:ko("Icon 1","vk-blocks")},H.a.createElement(wo,{label:ko("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"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:b,onChange:function(e){e?o({color1:e}):(o({color1:"#0693e3"}),o({bgType1:"0"}))}}),H.a.createElement(_o,{label:ko("Icon Background:","vk-blocks"),selected:g,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType1:e})}})),H.a.createElement(Eo,{label:ko("PR Image 1","vk-blocks"),help:ko("When you have an image. Image is displayed with priority","vk-blocks")},H.a.createElement(Bo,{onSelect:function(e){lo(e)?o({insertImage1:e.url}):o({insertImage1:JSON.stringify(e)})},type:"image",value:d,render:function(e){var t=e.open;return H.a.createElement(ho,{onClick:t,className:d?"image-button":"button button-large"},C(d))}}))),H.a.createElement(yo,{title:ko("PR Block2 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:l,onChange:function(e){return o({url2:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return o({urlOpenType2:e})}})),H.a.createElement(Eo,{label:ko("Icon 2","vk-blocks")},H.a.createElement(wo,{label:ko("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"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:k,onChange:function(e){e?o({color2:e}):(o({color2:"#0693e3"}),o({bgType2:"0"}))}}),H.a.createElement(_o,{label:ko("Icon Background:","vk-blocks"),selected:_,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType2:e})}})),H.a.createElement(Eo,{label:ko("PR Image 2","vk-blocks"),help:ko("When you have an image. Image is displayed with priority.","vk-blocks")},H.a.createElement(Bo,{onSelect:function(e){lo(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(yo,{title:ko("PR Block3 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:c,onChange:function(e){return o({url3:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:u,onChange:function(e){return o({urlOpenType3:e})}})),H.a.createElement(Eo,{label:ko("Icon 3","vk-blocks")},H.a.createElement(wo,{label:ko("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:f,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"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:v,onChange:function(e){e?o({color3:e}):(o({color3:"#0693e3"}),o({bgType3:"0"}))}}),H.a.createElement(_o,{label:ko("Icon Background:","vk-blocks"),selected:y,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType3:e})}})),H.a.createElement(Eo,{label:ko("PR Image 3","vk-blocks"),help:ko("When you have an image. Image is displayed with priority.","vk-blocks")},H.a.createElement(Bo,{onSelect:function(e){lo(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(bo,{attributes:n,setAttributes:o,blockNum:1,for_:"edit"}),H.a.createElement(bo,{attributes:n,setAttributes:o,blockNum:2,for_:"edit"}),H.a.createElement(bo,{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(bo,{attributes:n,blockNum:1,for_:"save"}),H.a.createElement(bo,{attributes:n,blockNum:2,for_:"save"}),H.a.createElement(bo,{attributes:n,blockNum:3,for_:"save"}))},deprecated:ro});function Io(e){return(Io="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 Ao(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 Ro(e,t){return!t||"object"!==Io(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 jo(e){return(jo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Po(e,t){return(Po=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var zo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Ro(this,jo(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&&Po(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)}}])&&Ao(n.prototype,o),r&&Ao(n,r),t}(H.a.Component);function Mo(e){return(Mo="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 Fo(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 Lo(e,t){return!t||"object"!==Mo(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 Uo(e){return(Uo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ho(e,t){return(Ho=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Vo=wp.i18n.__,Do=wp.components.Button,$o=wp.editor.MediaUpload,qo=wp.editor.RichText,Jo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Lo(this,Uo(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&&Ho(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,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,v=this.props.for_,g="vk_prContent",_="vk_button",y="btn btn-block vk_button_link vk_prContent_colTxt_btn",d={},h="none";g="right"===f?pe()(k,g,"vk_prContent-layout-imageRight"):pe()(k,g,"vk_prContent-layout-imageLeft"),i?(_="".concat(_," vk_button-color-custom"),y="".concat(y," btn-primary"),"0"===l?d={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(d={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(y="".concat(y," btn-").concat(c),d=null):"1"===l&&(y="".concat(y," btn-outline-").concat(c),d=null)),h=p?"1px solid ".concat(p):"none";var E=function(e){e&&b({Image:JSON.stringify(e)})};return H.a.createElement("div",{className:g},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($o,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(Do,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:Vo("Upload image","vk-blocks"),style:{border:h}}):Vo("Select image","vk-blocks"))}});var t=JSON.parse(m);return H.a.createElement($o,{onSelect:E,type:" image",value:m,render:function(e){var n=e.open;return H.a.createElement(Do,{onClick:n,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:t.sizes.full.url,alt:t.alt,style:{border:h}}):Vo("Select image","vk-blocks"))}})}if("save"===e){if(m){if(m&&-1===m.indexOf("{"))return H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:Vo("Upload image","vk-blocks"),style:{border:h}});var n=JSON.parse(m);return H.a.createElement("img",{className:"vk_prContent_colImg_image",src:n.sizes.full.url,alt:n.alt,style:{border:h}})}return Vo("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(qo,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:Vo("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(qo,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:Vo("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(qo.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(qo.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:_},H.a.createElement("a",{href:a,className:y,target:u?"_blank":null,style:d,rel:"noopener noreferrer"},H.a.createElement(zo,{attributes:e})))}()))}}])&&Fo(n.prototype,o),r&&Fo(n,r),t}(H.a.Component);function Wo(e){return(Wo="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 Yo(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 Go(e,t){return!t||"object"!==Wo(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 Qo(e){return(Qo=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)}var Xo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Go(this,Qo(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.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)}}])&&Yo(n.prototype,o),r&&Yo(n,r),t}(H.a.Component);function Zo(e){return(Zo="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 er(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 tr(e,t){return!t||"object"!==Zo(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 nr(e){return(nr=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 rr=wp.i18n.__,ar=wp.components.Button,lr=wp.editor.MediaUpload,cr=wp.editor.RichText,ir=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),tr(this,nr(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.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,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.for_,v="vk_prContent",g="vk_button",_="btn btn-block vk_button_link vk_prContent_colTxt_btn",y={};return v="".concat(v,"right"===f?" vk_prContent-layout-imageRight":" vk_prContent-layout-imageLeft"),i?(g="".concat(g," vk_button-color-custom"),_="".concat(_," btn-primary"),"0"===l?y={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(y={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(_="".concat(_," btn-").concat(c),y=null):"1"===l&&(_="".concat(_," btn-outline-").concat(c),y=null)),H.a.createElement("div",{className:v},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===k?H.a.createElement(lr,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(ar,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:rr("Upload image","vk-blocks"),style:{border:"1px solid ".concat(p)}}):rr("Select image","vk-blocks"))}}):m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:rr("Upload image","vk-blocks"),style:{border:"1px solid ".concat(p)}}):rr("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(cr,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:rr("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(cr,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:rr("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(cr.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(cr.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:g},H.a.createElement("a",{href:a,className:_,target:u?"_blank":null,style:y,rel:"noopener noreferrer"},H.a.createElement(Xo,{attributes:e})))}()))}}])&&er(n.prototype,o),r&&er(n,r),t}(H.a.Component);function sr(e){return(sr="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 ur(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 mr(e,t){return!t||"object"!==sr(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 pr(e){return(pr=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 br=wp.i18n.__,kr=wp.components.Button,vr=wp.editor.MediaUpload,gr=wp.editor.RichText,_r=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),mr(this,pr(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,a=e.url,l=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,m=e.Image,p=e.ImageBorderColor,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,v=this.props.for_,g="vk_prContent",_="vk_button",y="btn btn-block vk_button_link vk_prContent_colTxt_btn",d={},h="";return g="right"===f?pe()(k,g,"vk_prContent-layout-imageRight"):pe()(k,g,"vk_prContent-layout-imageLeft"),i?(_="".concat(_," vk_button-color-custom"),y="".concat(y," btn-primary"),"0"===l?d={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(d={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(y="".concat(y," btn-").concat(c),d=null):"1"===l&&(y="".concat(y," btn-outline-").concat(c),d=null)),h=null==p?"none":"1px solid ".concat(p),H.a.createElement("div",{className:g},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===v?H.a.createElement(vr,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:m,render:function(e){var t=e.open;return H.a.createElement(kr,{onClick:t,className:m?"image-button":"button button-large"},m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:br("Upload image","vk-blocks"),style:{border:h}}):br("Select image","vk-blocks"))}}):m?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:m,alt:br("Upload image","vk-blocks"),style:{border:h}}):br("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(gr,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:br("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(gr,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:br("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(gr.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(gr.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:_},H.a.createElement("a",{href:a,className:y,target:u?"_blank":null,style:d,rel:"noopener noreferrer"},H.a.createElement(Xo,{attributes:e})))}()))}}])&&ur(n.prototype,o),r&&ur(n,r),t}(H.a.Component),yr=[{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(_r,{attributes:t,className:n,for_:"save"})}}],dr=wp.i18n.__,hr=wp.blocks.registerBlockType,Er=wp.components,Cr=Er.RadioControl,wr=Er.PanelBody,Nr=Er.BaseControl,xr=Er.CheckboxControl,Sr=Er.TextControl,Br=wp.element.Fragment,Tr=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Or=Tr.InspectorControls,Ir=Tr.ColorPalette,Ar=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"})));hr("vk-blocks/pr-content",{title:dr("PR Content","vk-blocks"),icon:Ar,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,f=t.layout,b=t.fontAwesomeIconBefore,k=t.fontAwesomeIconAfter;return H.a.createElement(Br,null,H.a.createElement(Or,null,H.a.createElement(wr,{title:dr("Color Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Nr,{label:dr("Title Color","vk-blocks")},H.a.createElement(Ir,{value:r,onChange:function(e){return o({titleColor:e})}})),H.a.createElement(Nr,{label:dr("Content Color","vk-blocks")},H.a.createElement(Ir,{value:a,onChange:function(e){return o({contentColor:e})}})),H.a.createElement(Nr,{label:dr("Image Border Color","vk-blocks")},H.a.createElement(Ir,{value:p,onChange:function(e){return o({ImageBorderColor:e})}}))),H.a.createElement(wr,{title:dr("Button Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Nr,{label:dr("Button Text","vk-blocks")},H.a.createElement(Sr,{value:u,onChange:function(e){return o({buttonText:e})},placeholder:"Input button text."})),H.a.createElement(Nr,{label:dr("Link URL","vk-blocks")},H.a.createElement(Sr,{value:l,onChange:function(e){return o({url:e})},placeholder:"https://vektor-inc.co.jp/"})),H.a.createElement(xr,{label:dr("Open link new tab.","vk-blocks"),checked:m,onChange:function(e){return o({buttonTarget:e})}}),H.a.createElement(Nr,{label:dr("Button Type","vk-blocks")},H.a.createElement(Cr,{selected:c,options:[{label:dr("Solid","vk-blocks"),value:"0"},{label:dr("Ghost","vk-blocks"),value:"1"}],onChange:function(e){return o({buttonType:e})}})),H.a.createElement(Cr,{label:dr("Default Color:","vk-blocks"),selected:i,options:[{label:dr("Primary","vk-blocks"),value:"primary"},{label:dr("Secondary","vk-blocks"),value:"secondary"},{label:dr("Success","vk-blocks"),value:"success"},{label:dr("Info","vk-blocks"),value:"info"},{label:dr("Warning","vk-blocks"),value:"warning"},{label:dr("Danger","vk-blocks"),value:"danger"},{label:dr("Light","vk-blocks"),value:"light"},{label:dr("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return o({buttonColor:e})}}),H.a.createElement(Nr,{label:dr("Button Color","vk-blocks")},H.a.createElement(Ir,{value:s,onChange:function(e){return o({buttonColorCustom:e})}})),H.a.createElement(Nr,{label:dr("Font Awesome:","vk-blocks"),help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},dr("Font Awesome icon list","vk-blocks"))},H.a.createElement(Sr,{label:dr("Before text","vk-blocks"),help:dr("Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right","vk-blocks"),value:b,onChange:function(e){return o({fontAwesomeIconBefore:e})},placeholder:"fas fa-arrow-circle-right"}),H.a.createElement(Sr,{label:dr("After text","vk-blocks"),help:dr("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(wr,{title:dr("Layout Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Cr,{label:dr("Layout Type","vk-blocks"),selected:f,options:[{label:dr("Right","vk-blocks"),value:"right"},{label:dr("Left","vk-blocks"),value:"left"}],onChange:function(e){return o({layout:e})}}))),H.a.createElement(Jo,{attributes:t,setAttributes:o,className:n,for_:"edit"}))},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(Jo,{attributes:t,className:n,for_:"save"})},deprecated:yr});var Rr=lodash.assign,jr=wp.i18n.__,Pr=wp.hooks.addFilter;Pr("blocks.registerBlockType","vk-blocks/heading-style",(function(e){var t;return t=e.name,["core/heading"].includes(t)&&(e.attributes=Rr(e.attributes,{color:{type:"string"}})),e})),wp.blocks.registerBlockStyle("core/heading",[{name:"vk-heading-default",label:jr("Default","vk-blocks"),isDefault:!0},{name:"vk-heading-plain",label:jr("Plain","vk-blocks")},{name:"vk-heading-background_fill_lightgray",label:jr("Background fill lightgray","vk-blocks")},{name:"vk-heading-double_black",label:jr("Double border top and bottom black","vk-blocks")},{name:"vk-heading-double_bottomborder_black",label:jr("Double border bottom black","vk-blocks")},{name:"vk-heading-solid_black",label:jr("Solid border top and bottom black","vk-blocks")},{name:"vk-heading-solid_bottomborder_black",label:jr("Solid border bottom black","vk-blocks")},{name:"vk-heading-dotted_bottomborder_black",label:jr("Dotted border bottom black","vk-blocks")},{name:"vk-heading-both_ends",label:jr("Both ends","vk-blocks")},{name:"vk-heading-brackets_black",label:jr("Brackets black","vk-blocks")}]);n(5)}]);
|
20 |
-
//# sourceMappingURL=block-build.js.map
|
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(3),r="function"==typeof Symbol&&Symbol.for,a=r?Symbol.for("react.element"):60103,l=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,f=r?Symbol.for("react.suspense"):60113;r&&Symbol.for("react.suspense_list");var b=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 v="function"==typeof Symbol&&Symbol.iterator;function _(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 g={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},y={};function d(e,t,n){this.props=e,this.context=t,this.refs=y,this.updater=n||g}function h(){}function E(e,t,n){this.props=e,this.context=t,this.refs=y,this.updater=n||g}d.prototype.isReactComponent={},d.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error(_(85));this.updater.enqueueSetState(this,e,t,"setState")},d.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},h.prototype=d.prototype;var C=E.prototype=new h;C.constructor=E,o(C,d.prototype),C.isPureReactComponent=!0;var w={current:null},N={current:null},x=Object.prototype.hasOwnProperty,B={key:!0,ref:!0,__self:!0,__source:!0};function S(e,t,n){var o,r={},l=null,c=null;if(null!=t)for(o in void 0!==t.ref&&(c=t.ref),void 0!==t.key&&(l=""+t.key),t)x.call(t,o)&&!B.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:a,type:e,key:l,ref:c,props:r,_owner:N.current}}function T(e){return"object"==typeof e&&null!==e&&e.$$typeof===a}var O=/\/+/g,I=[];function A(e,t,n,o){if(I.length){var r=I.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 R(e){e.result=null,e.keyPrefix=null,e.func=null,e.context=null,e.count=0,10>I.length&&I.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 a:case l: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=v&&t[v]||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(_(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&&(T(e)&&(e=function(e,t){return{$$typeof:a,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(O,"$&/")+"/")+n)),o.push(e))}function F(e,t,n,o,r){var a="";null!=n&&(a=(""+n).replace(O,"$&/")+"/"),j(e,M,t=A(t,a,o,r)),R(t)}function L(){var e=w.current;if(null===e)throw Error(_(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=A(null,null,t,n)),R(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(!T(e))throw Error(_(143));return e}},createRef:function(){return{current:null}},Component:d,PureComponent:E,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:b,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:f,createElement:S,cloneElement:function(e,t,n){if(null==e)throw Error(_(267,e));var r=o({},e.props),l=e.key,c=e.ref,i=e._owner;if(null!=t){if(void 0!==t.ref&&(c=t.ref,i=N.current),void 0!==t.key&&(l=""+t.key),e.type&&e.type.defaultProps)var s=e.type.defaultProps;for(u in t)x.call(t,u)&&!B.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:a,type:e.type,key:l,ref:c,props:r,_owner:i}},createFactory:function(e){var t=S.bind(null,e);return t.type=e,t},isValidElement:T,version:"16.12.0",__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{ReactCurrentDispatcher:w,ReactCurrentBatchConfig:{suspense:null},ReactCurrentOwner:N,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,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 p=0;p<c.length;p++)a.call(n,c[p])&&(i[c[p]]=n[c[p]])}}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,p=s.InspectorControls,m=s.MediaUpload,f=s.ColorPalette,b=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:b,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,b=t.balloonName,k=t.balloonType,v=t.balloonBgColor,_=t.balloonAlign,g=t.IconImage;return React.createElement(i,null,React.createElement(p,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:_,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(f,{value:v,onChange:function(e){return r({balloonBgColor:e})}}))),React.createElement("div",{className:"".concat(o," vk_balloon vk_balloon-").concat(_," vk_balloon-").concat(k)},React.createElement("div",{className:"vk_balloon_icon"},React.createElement(m,{onSelect:function(e){return r({IconImage:e.sizes.full.url})},type:"image",className:"vk_balloon_icon_image",value:g,render:function(e){var t=e.open;return React.createElement(c,{onClick:t,className:g?"image-button":"button button-large"},g?React.createElement("img",{className:"vk_balloon_icon_image",src:g,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:b,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,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,p=s.ColorPalette,m=wp.compose.createHigherOrderComponent,f=function(e){return["core/group"].includes(e)};c("blocks.registerBlockType","vk-blocks/group-style",(function(e){return f(e.name)&&(e.attributes=r(e.attributes,{color:{type:"string"}})),e})),c("editor.BlockEdit","vk-blocks/group-style",m((function(e){var t="";return function(n){return f(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(p,{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 b=lodash.assign,k=wp.i18n.__,v=wp.element.Fragment,_=wp.hooks.addFilter,g=wp.components.PanelBody,y=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,d=y.InspectorControls,h=y.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}_("blocks.registerBlockType","vk-blocks/list-style",(function(e){return C(e.name)&&(e.attributes=b(e.attributes,{color:{type:"string"}})),e})),_("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(d,null,React.createElement(g,{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,B=x.registerFormatType,S=x.toggleFormat,T=x.applyFormat,O=x.removeFormat,I=x.getActiveFormat,A=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,R=A.RichTextToolbarButton,j=A.RichTextShortcut,P=A.InspectorControls,z=A.PanelColorSettings,M=(A.getColorObjectByColorValue,wp.element.Fragment),F="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"}));B(F,{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=I(n,F);t=a.attributes.data}var l=function(e){e=function(e){return void 0===e&&(e="#fffd6b"),e}(e),r(S(n,{type:F,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(w(e,.7)," 0);")}}))};return React.createElement(M,null,React.createElement(P,null,React.createElement(z,{title:N("Highlighter","vk-blocks"),initialOpen:!1,colorSettings:[{value:t,onChange:function(e){r(e?T(n,{type:F,attributes:{data:e,style:"background: linear-gradient(transparent 60%,".concat(w(e,.7)," 0);")}}):O(n,F))},label:N("Highlight Color","vk-blocks")}]})),React.createElement(j,{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 V(e){return(V="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 D(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 $(e,t){return!t||"object"!==V(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 q(e){return(q=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function J(e,t){return(J=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var W=wp.i18n.__,Y=wp.editor,G=Y.RichText,Q=Y.MediaUpload,K=wp.components.Button,X=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),$(this,q(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&&J(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,p=e.vk_staff_positionColor,m=e.vk_staff_profileTitleColor,f=e.vk_staff_profileTextColor,b=e.vk_staff_photoBorder,k=this.props.setAttributes,v=this.props.className,_=this.props.for_,g="";return"edit"===_?g=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(G,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},onChange:function(e){return k({vk_staff_text_name:e})},value:t,placeholder:W("Your Name","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},onChange:function(e){return k({vk_staff_text_caption:e})},value:n,placeholder:W("Caption","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_role",style:{color:p},onChange:function(e){return k({vk_staff_text_role:e})},value:o,placeholder:W("Role position","vk-blocks")}),H.a.createElement(G,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:m},onChange:function(e){return k({vk_staff_text_profileTitle:e})},value:r,placeholder:W("Profile title","vk-blocks")}),H.a.createElement(G,{tagName:"p",className:"vk_staff_text_profileText",style:{color:f},onChange:function(e){return k({vk_staff_text_profileText:e})},value:a,placeholder:W("Profile text","vk-blocks")})),H.a.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(b)},H.a.createElement(Q,{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(K,{onClick:t,className:l?"image-button":"button button-large"},l?H.a.createElement("img",{className:"vk_staff_photo_image",src:l,alt:W(c,"vk-blocks")}):W("Select image","vk-blocks"))}}))):"save"===_&&(g=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(G.Content,{tagName:"h3",className:"vk_staff_text_name",style:{color:s},value:t}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_caption",style:{color:u},value:n}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_role",style:{color:p},value:o}),H.a.createElement(G.Content,{tagName:"h4",className:"vk_staff_text_profileTitle",style:{color:m},value:r}),H.a.createElement(G.Content,{tagName:"p",className:"vk_staff_text_profileText",style:{color:f},value:a})),l?H.a.createElement("div",{className:"vk_staff_photo vk_staff_photo-border-".concat(b)},H.a.createElement("img",{className:"vk_staff_photo_image",src:l,alt:c?W(c,"vk-blocks"):""})):"")),g}}])&&D(n.prototype,o),r&&D(n,r),t}(H.a.Component),Z=wp.i18n.__,ee=wp.blocks.registerBlockType,te=wp.components,ne=te.TextControl,oe=te.PanelBody,re=te.BaseControl,ae=te.SelectControl,le=wp.element.Fragment,ce=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,ie=ce.InspectorControls,se=ce.ColorPalette,ue=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"}));ee("vk-blocks/staff",{title:Z("Staff","vk-blocks"),icon:ue,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,p=t.vk_staff_photoBorder;return H.a.createElement(le,null,H.a.createElement(ie,null,H.a.createElement(oe,{title:Z("Layout","vk-blocks")},H.a.createElement(ae,{value:a,onChange:function(e){return n({vk_staff_layout:e})},options:[{value:"default",label:Z("Default","vk-blocks")},{value:"imageLeft",label:Z("Image left","vk-blocks")}]})),H.a.createElement(oe,{title:Z("Image border","vk-blocks")},H.a.createElement(ae,{value:p,onChange:function(e){return n({vk_staff_photoBorder:e})},options:[{value:"default",label:Z("Default","vk-blocks")},{value:"none",label:Z("None","vk-blocks")}]})),H.a.createElement(oe,{title:Z("Alt text","vk-blocks")},H.a.createElement(re,{help:Z("Set the alt text for profile image","vk-blocks")},H.a.createElement(ne,{value:r,onChange:function(e){return n({vk_staff_photo_image_alt:e})}}))),H.a.createElement(oe,{title:Z("Color","vk-blocks")},H.a.createElement(re,{label:Z("Staff name","vk-blocks")},H.a.createElement(se,{value:l,onChange:function(e){return n({vk_staff_nameColor:e})}})),H.a.createElement(re,{label:Z("Name caption","vk-blocks")},H.a.createElement(se,{value:c,onChange:function(e){return n({vk_staff_captionColor:e})}})),H.a.createElement(re,{label:Z("Role position","vk-blocks")},H.a.createElement(se,{value:i,onChange:function(e){return n({vk_staff_positionColor:e})}})),H.a.createElement(re,{label:Z("Profile title","vk-blocks")},H.a.createElement(se,{value:s,onChange:function(e){return n({vk_staff_profileTitleColor:e})}})),H.a.createElement(re,{label:Z("Profile text","vk-blocks")},H.a.createElement(se,{value:u,onChange:function(e){return n({vk_staff_profileTextColor:e})}})))),H.a.createElement(X,{attributes:t,setAttributes:n,className:o,for_:"edit"}))},save:function(e){var t=e.attributes;return H.a.createElement(X,{attributes:t,setAttributes:"",className:"",for_:"save"})}});var pe=n(1),me=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 be(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 ke(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 ve(e){return(ve=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 function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),ke(this,ve(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:me()("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}}))}}])&&be(n.prototype,o),r&&be(n,r),t}(H.a.Component);function ye(e){return(ye="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 he(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 Ee(e,t,n){return t&&he(e.prototype,t),n&&he(e,n),e}function Ce(e,t){return!t||"object"!==ye(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 Ne(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&&xe(e,t)}function xe(e,t){return(xe=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Be=function(e){function t(){return de(this,t),Ce(this,we(t).apply(this,arguments))}return Ne(t,e),Ee(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),Se=function(e){function t(){return de(this,t),Ce(this,we(t).apply(this,arguments))}return Ne(t,e),Ee(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),Te={unit:{type:"string",default:"px"},pc:{type:"number",default:50},tablet:{type:"number",default:10},mobile:{type:"number",default:10}},Oe=(wp.editor.RichText,[{attributes:Te,save:function(e){var t=e.attributes;return H.a.createElement(Se,{attributes:t})}},{attributes:Te,save:function(e){var t=e.attributes;return H.a.createElement(Be,{attributes:t})}}]),Ie=wp.i18n.__,Ae=wp.blocks.registerBlockType,Re=wp.components,je=Re.RangeControl,Pe=Re.PanelBody,ze=Re.BaseControl,Me=Re.SelectControl,Fe=wp.element.Fragment,Le=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).InspectorControls,Ue=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"})));Ae("vk-blocks/spacer",{title:Ie("Responsive Spacer","vk-blocks"),icon:Ue,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(Fe,null,H.a.createElement(Le,null,H.a.createElement(Pe,null,H.a.createElement(Me,{label:Ie("Unit Type","vk-blocks"),value:r,onChange:function(e){return n({unit:e})},options:[{value:"px",label:Ie("px","vk-blocks")},{value:"em",label:Ie("em","vk-blocks")},{value:"rem",label:Ie("rem","vk-blocks")},{value:"vw",label:Ie("vw","vk-blocks")}]}),H.a.createElement(ze,{label:Ie("Height for each device.","vk-blocks")},H.a.createElement(je,{label:Ie("PC","vk-blocks"),value:a,onChange:function(e){return n({pc:e})},step:.1}),H.a.createElement(je,{label:Ie("Tablet","vk-blocks"),value:l,onChange:function(e){return n({tablet:e})},step:.1}),H.a.createElement(je,{label:Ie("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:Oe});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 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"!==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 $e(e){return($e=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function qe(e,t){return(qe=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Je=window.lodash.range,We=wp.i18n,Ye=We.__,Ge=We.sprintf,Qe=wp.element.Component,Ke=wp.components.Toolbar,Xe=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),De(this,$e(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&&qe(e,t)}(t,e),n=t,(o=[{key:"createLevelControl",value:function(e,t,n){return{icon:"heading",title:Ge(Ye("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(Ke,{controls:Je(n,o).map((function(t){return e.createLevelControl(t,r,a)}))})}}])&&Ve(n.prototype,o),r&&Ve(n,r),t}(Qe);function Ze(e){return(Ze="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 et(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 tt(e,t){return!t||"object"!==Ze(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 nt(e){return(nt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function ot(e,t){return(ot=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var rt=wp.editor.RichText,at=wp.i18n.__,lt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),tt(this,nt(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&&ot(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,p=n.subTextSize,m=n.titleStyle,f=n.titleMarginBottom,b=n.outerMarginBottom,k=this.props.setAttributes,v=this.props.className,_=this.props.for_,g=me()(v,"vk_heading vk_heading-style-".concat(m)),y="h"+o;return null!=b&&(e={marginBottom:b+"rem"}),t=null!=f?{color:l,fontSize:c+"rem",marginBottom:f+"rem",textAlign:r}:{color:l,fontSize:c+"rem",textAlign:r},"edit"===_?H.a.createElement("div",{className:g,style:e},H.a.createElement(rt,{tagName:y,value:a,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(m),placeholder:at("Input title…","vk-blocks")}),function(){if("on"===s)return H.a.createElement(rt,{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:at("Input sub text…","vk-blocks")})}()):"save"===_?H.a.createElement("div",{className:g,style:e},H.a.createElement(rt.Content,{tagName:y,value:a,onChange:function(e){return k({title:e})},style:t,className:"vk_heading_title vk_heading_title-style-".concat(m),placeholder:at("Input title…","vk-blocks")}),function(){if("on"===s)return H.a.createElement(rt.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:at("Input sub text…","vk-blocks")})}()):void 0}}])&&et(n.prototype,o),r&&et(n,r),t}(H.a.Component);function ct(e){throw new Error('"'+e+'" is read-only')}var it=wp.element.Fragment,st=wp.editor,ut=st.RichText;st.InspectorControls,st.ColorPalette,st.BlockControls,st.AlignmentToolbar;var pt=[{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,p=t.titleStyle,m=t.titleMarginBottom,f=t.outerMarginBottom,b="h"+n;return H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(p),style:{marginBottom:f+"rem"}},H.a.createElement(ut.Content,{tagName:b,value:r,style:{color:a,fontSize:l+"rem",textAlign:o,marginBottom:m+"rem"},className:"vk_heading_title vk_heading_title-style-".concat(p)}),function(){if("on"===i)return H.a.createElement(ut.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,a=t.content1,l=t.content2,c=t.content3,i=t.url1,s=t.url2,u=t.url3,p=t.urlOpenType1,m=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,_=t.color1,g=t.color2,y=t.color3,d=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:p?"_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:""})):(_||(ct("color1"),_="#0693e3"),"0"===d?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},H.a.createElement("i",{className:"".concat(b," 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(b," vk_prBlocks_item_icon"),style:{color:_}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),H.a.createElement(ut.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:m?"_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:""})):(g||(ct("color2"),g="#0693e3"),"0"===h?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:g,border:"1px solid ".concat(g)}},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 "+g}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:g}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),H.a.createElement(ut.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:f?"_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:""})):(y||(ct("color3"),y="#0693e3"),"0"===E?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:y,border:"1px solid ".concat(y)}},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 "+y}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:y}}))),H.a.createElement(ut.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),H.a.createElement(ut.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,p=t.titleStyle,m=t.titleMarginBottom,f=t.outerMarginBottom,b="h"+n;return H.a.createElement(it,null,null==f?H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(p)},H.a.createElement(ut.Content,{tagName:b,value:r,style:{color:a,fontSize:l+"rem",textAlign:o},className:"vk_heading_title vk_heading_title-style-".concat(p)}),function(){if("on"===i)return H.a.createElement(ut.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p)})}()):H.a.createElement("div",{className:"vk_heading vk_heading-style-".concat(p),style:{marginBottom:f+"rem"}},H.a.createElement(ut.Content,{tagName:b,value:r,style:{color:a,fontSize:l+"rem",textAlign:o,marginBottom:m+"rem"},className:"vk_heading_title vk_heading_title-style-".concat(p)}),function(){if("on"===i)return H.a.createElement(ut.Content,{tagName:"p",value:c,style:{color:s,fontSize:u+"rem",textAlign:o},className:"vk_heading_subtext vk_heading_subtext-style-".concat(p)})}()))}}],mt=wp.i18n.__,ft=wp.blocks.registerBlockType,bt=wp.components,kt=bt.RangeControl,vt=bt.PanelBody,_t=bt.RadioControl,gt=bt.SelectControl,yt=wp.element.Fragment,dt=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,ht=dt.InspectorControls,Et=dt.ColorPalette,Ct=dt.BlockControls,wt=dt.AlignmentToolbar,Nt=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"}))));ft("vk-blocks/heading",{title:mt("Heading","vk-blocks"),icon:Nt,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,p=t.titleStyle,m=t.titleMarginBottom,f=t.outerMarginBottom,b=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(yt,null,H.a.createElement(Ct,null,H.a.createElement(Xe,{minLevel:2,maxLevel:5,selectedLevel:r,onChange:b})),H.a.createElement(ht,null,H.a.createElement(vt,{title:mt("Style Settings","vk-blocks")},H.a.createElement(gt,{label:mt("Heading style","vk-blocks"),value:p,onChange:function(e){return n({titleStyle:e})},options:[{label:mt("Default","vk-blocks"),value:"default"},{label:mt("Plain","vk-blocks"),value:"plain"}]}),H.a.createElement("label",null,mt("Margin bottom size (rem)","vk-blocks")),H.a.createElement(kt,{value:f,onChange:function(e){n({outerMarginBottom:e})},min:-1,max:8,step:.1})),H.a.createElement(vt,{title:mt("Heading Settings","vk-blocks")},H.a.createElement("label",null,mt("Level","vk-blocks")),H.a.createElement(Xe,{minLevel:1,maxLevel:7,selectedLevel:r,onChange:b}),H.a.createElement("p",null,mt("Text Alignment")),H.a.createElement(wt,{value:a,onChange:function(e){n({align:e})}}),H.a.createElement("label",null,mt("Text size (rem)","vk-blocks")),H.a.createElement(kt,{value:c,onChange:function(e){n({titleSize:e})},min:.5,max:4,step:.1}),H.a.createElement("label",null,mt("Heading margin bottom size (rem)","vk-blocks")),H.a.createElement(kt,{value:m,onChange:function(e){n({titleMarginBottom:e})},min:-1,max:3,step:.1}),H.a.createElement(Et,{value:l,onChange:function(e){return n({titleColor:e})}})),H.a.createElement(vt,{title:mt("Sub Text Settings","vk-blocks")},H.a.createElement(_t,{label:mt("Position","vk-blocks"),selected:i,options:[{label:mt("Display","vk-blocks"),value:"on"},{label:mt("Hide","vk-blocks"),value:"off"}],onChange:function(e){return n({subTextFlag:e})}}),H.a.createElement("label",null,mt("Text size (rem)","vk-blocks")),H.a.createElement(kt,{value:u,onChange:function(e){n({subTextSize:e})},min:.5,max:3,step:.1}),H.a.createElement(Et,{value:s,onChange:function(e){return n({subTextColor:e})}}))),H.a.createElement(lt,{attributes:t,setAttributes:n,className:o,for_:"edit"}))},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(lt,{attributes:t,className:n,for_:"save"})},deprecated:pt});var xt=wp.editor.RichText,Bt=[{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(xt.Content,{tagName:"p",value:o}))}}],St=wp.i18n.__,Tt=wp.blocks.registerBlockType,Ot=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).RichText;Tt("vk-blocks/alert",{title:St("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(Ot,{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(Ot.Content,{tagName:"p",value:r}))},deprecated:Bt});n(4);function It(e){return(It="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){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 Rt(e,t){return!t||"object"!==It(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 Pt(e,t){return(Pt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var zt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Rt(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&&Pt(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,p="",m={},f="",b="";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&&(f=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",style:m,className:p,role:"button","aria-pressed":!0,target:l?"_blank":null,rel:"noopener noreferrer"},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&At(n.prototype,o),r&&At(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 Ft(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 Lt(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 Ut(e){return(Ut=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 Vt=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Lt(this,Ut(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=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,""),p={},m="",f="";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=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,className:u,role:"button","aria-pressed":!0,style:p,target:l?"_blank":null},m,s,f)}}])&&Ft(n.prototype,o),r&&Ft(n,r),t}(H.a.Component);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 $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 function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(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,""),p={},m="",f="";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=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:u,role:"button","aria-pressed":!0,style:p,target:l?"_blank":null},m,s,f)}}])&&$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){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 Kt(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 Xt(e){return(Xt=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Zt(e,t){return(Zt=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var en=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Kt(this,Xt(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&&Zt(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,p="",m={},f="",b="";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&&(f=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:p,role:"button","aria-pressed":!0,style:m,target:l?"_blank":null,rel:"noopener noreferrer"},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&Qt(n.prototype,o),r&&Qt(n,r),t}(H.a.Component);function tn(e){return(tn="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 nn(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"!==tn(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 rn(e){return(rn=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 ln=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),on(this,rn(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,a=this.props.lbUrl,l=this.props.lbTarget,c=this.props.lbFontAwesomeIconBefore,i=this.props.lbFontAwesomeIconAfter,s=this.props.lbRichtext,u=this.props.lbsubCaption,p="",m={},f="",b="";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&&(f=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:p,role:"button","aria-pressed":!0,style:m,target:l?"_blank":null},f,s,b,u&&H.a.createElement("p",{className:"vk_button_link_subCaption"},u))}}])&&nn(n.prototype,o),r&&nn(n,r),t}(H.a.Component),cn=wp.editor.RichText,sn=[{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,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)),H.a.createElement("div",{className:m},H.a.createElement(Vt,{lbColorCustom:i,lbColor:c,lbType:l,lbAlign:s,lbSize:a,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:p,lbRichtext:H.a.createElement(cn.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,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)),H.a.createElement("div",{className:m},H.a.createElement(Yt,{lbColorCustom:i,lbColor:c,lbType:l,lbAlign:s,lbSize:a,lbUrl:o,lbTarget:r,lbFontAwesomeIconBefore:u,lbFontAwesomeIconAfter:p,lbRichtext:H.a.createElement(cn.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,p=t.fontAwesomeIconBefore,m=t.fontAwesomeIconAfter,f="";return s?f="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(f="vk_button vk_button-align-".concat(u)),H.a.createElement("div",{className:f},H.a.createElement(en,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:l,lbUrl:r,lbTarget:a,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:m,lbsubCaption:o,lbRichtext:H.a.createElement(cn.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,p=t.fontAwesomeIconBefore,m=t.fontAwesomeIconAfter,f="";return s?f="vk_button vk_button-color-custom vk_button-align-".concat(u):s||(f="vk_button vk_button-align-".concat(u)),H.a.createElement("div",{className:f},H.a.createElement(ln,{lbColorCustom:s,lbColor:i,lbType:c,lbAlign:u,lbSize:l,lbUrl:r,lbTarget:a,lbFontAwesomeIconBefore:p,lbFontAwesomeIconAfter:m,lbsubCaption:o,lbRichtext:H.a.createElement(cn.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,p=t.buttonAlign,m=t.fontAwesomeIconBefore,f=t.fontAwesomeIconAfter,b="";return u?b="vk_button vk_button-color-custom vk_button-align-".concat(p):u||(b="vk_button vk_button-align-".concat(p)),n&&(b=n+" "+b),H.a.createElement("div",{className:b},H.a.createElement(zt,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:p,lbSize:c,lbUrl:a,lbTarget:l,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:f,lbsubCaption:r,lbRichtext:H.a.createElement(cn.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))}}],un=wp.i18n.__,pn=wp.blocks.registerBlockType,mn=wp.components,fn=mn.RadioControl,bn=mn.PanelBody,kn=mn.BaseControl,vn=mn.CheckboxControl,_n=mn.TextControl,gn=mn.Dashicon,yn=mn.IconButton,dn=wp.element.Fragment,hn=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,En=hn.RichText,Cn=hn.InspectorControls,wn=hn.ColorPalette,Nn=hn.URLInput,xn=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"})));pn("vk-blocks/button",{title:un("Button","vk-blocks"),icon:xn,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,p=n.buttonType,m=n.buttonColor,f=n.buttonColorCustom,b=n.buttonAlign,k=n.fontAwesomeIconBefore,v=n.fontAwesomeIconAfter;return t=f?"vk_button vk_button-align-".concat(b," vk_button-color-custom"):"vk_button vk_button-align-".concat(b),t=o?"".concat(o," vk_button vk_button-align-").concat(b," vk_button-color-custom"):"".concat(o," vk_button vk_button-align-").concat(b),H.a.createElement(dn,null,H.a.createElement(Cn,null,H.a.createElement(bn,{title:un("Button setting","vk-blocks")},H.a.createElement(_n,{label:un("Sub Caption","vk-blocks"),value:c,onChange:function(e){return r({subCaption:e})},placeholder:"Sub Caption"}),H.a.createElement(vn,{label:un("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return r({buttonTarget:e})}}),H.a.createElement(fn,{label:un("Button Size:","vk-blocks"),selected:u,options:[{label:un("Large","vk-blocks"),value:"lg"},{label:un("normal","vk-blocks"),value:"md"},{label:un("Small","vk-blocks"),value:"sm"}],onChange:function(e){return r({buttonSize:e})}}),H.a.createElement(fn,{label:un("Button Position:","vk-blocks"),selected:b,options:[{label:un("Left","vk-blocks"),value:"left"},{label:un("Center","vk-blocks"),value:"center"},{label:un("Right","vk-blocks"),value:"right"},{label:un("Block","vk-blocks"),value:"block"}],onChange:function(e){return r({buttonAlign:e})}}),H.a.createElement(fn,{label:un("Button Style:","vk-blocks"),selected:p,options:[{label:un("Solid color","vk-blocks"),value:"0"},{label:un("No background","vk-blocks"),value:"1"}],help:un('If you select "No background", that you need to select a Custom Color.',"vk-blocks"),onChange:function(e){return r({buttonType:e})}}),H.a.createElement(fn,{label:un("Default Color:","vk-blocks"),selected:m,options:[{label:un("Primary","vk-blocks"),value:"primary"},{label:un("Secondary","vk-blocks"),value:"secondary"},{label:un("Success","vk-blocks"),value:"success"},{label:un("Info","vk-blocks"),value:"info"},{label:un("Warning","vk-blocks"),value:"warning"},{label:un("Danger","vk-blocks"),value:"danger"},{label:un("Light","vk-blocks"),value:"light"},{label:un("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return r({buttonColor:e})}}),H.a.createElement(kn,{label:un("Custom Color","vk-blocks"),help:un("This custom color overrides the default color. If you want to use the default color, click the clear button.","vk-blocks")},H.a.createElement(wn,{value:f,onChange:function(e){return r({buttonColorCustom:e})}})),H.a.createElement(kn,{label:un("Font Awesome:","vk-blocks"),help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},un("Font Awesome icon list","vk-blocks"))},H.a.createElement(_n,{label:un("Before text","vk-blocks"),help:un("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(_n,{label:un("After text","vk-blocks"),help:un("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(zt,{lbColorCustom:f,lbColor:m,lbType:p,lbAlign:b,lbSize:u,lbFontAwesomeIconBefore:k,lbFontAwesomeIconAfter:v,lbsubCaption:c,lbRichtext:H.a.createElement(En,{tagName:"span",className:"vk_button_link_txt",onChange:function(e){return r({content:e})},value:l,placeholder:un("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(gn,{icon:"admin-links"}),H.a.createElement(Nn,{value:i,onChange:function(e){return r({buttonUrl:e})}}),H.a.createElement(yn,{icon:"editor-break",label:un("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,p=t.buttonAlign,m=t.fontAwesomeIconBefore,f=t.fontAwesomeIconAfter,b="";return u?b="vk_button vk_button-color-custom vk_button-align-".concat(p):u||(b="vk_button vk_button-align-".concat(p)),n&&(b=n+" "+b),H.a.createElement("div",{className:b},H.a.createElement(zt,{lbColorCustom:u,lbColor:s,lbType:i,lbAlign:p,lbSize:c,lbUrl:a,lbTarget:l,lbFontAwesomeIconBefore:m,lbFontAwesomeIconAfter:f,lbsubCaption:r,lbRichtext:H.a.createElement(En.Content,{tagName:"span",className:"vk_button_link_txt",value:o})}))},deprecated:sn});var Bn=wp.editor.RichText,Sn=[{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(Bn.Content,{tagName:"dt",className:"vk_faq_title",value:n}),H.a.createElement(Bn.Content,{tagName:"dd",className:"vk_faq_content",value:o}))}}],Tn=wp.i18n.__,On=wp.blocks.registerBlockType,In=(wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor).RichText,An=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"}));On("vk-blocks/faq",{title:Tn("FAQ","vk-blocks"),icon:An,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(In,{tagName:"dt",className:"vk_faq_title",onChange:function(e){return n({heading:e})},value:r,placeholder:Tn("Please enter a question.","vk-blocks")}),React.createElement(In,{tagName:"dd",className:"vk_faq_content",onChange:function(e){return n({content:e})},value:a,placeholder:Tn("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(In.Content,{tagName:"dt",className:"vk_faq_title",value:o}),React.createElement(In.Content,{tagName:"dd",className:"vk_faq_content",value:r}))},deprecated:Sn});var Rn=wp.editor.RichText,jn=[{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(Rn.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:n}),H.a.createElement(Rn.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:""})):""))}}],Pn=wp.i18n.__,zn=wp.blocks.registerBlockType,Mn=wp.components,Fn=Mn.RadioControl,Ln=Mn.PanelBody,Un=Mn.Button,Hn=wp.element.Fragment,Vn=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Dn=Vn.RichText,$n=Vn.InspectorControls,qn=Vn.MediaUpload;function Jn(e){return(Jn="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){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 Yn(e,t){return!t||"object"!==Jn(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 Gn(e){return(Gn=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Qn(e,t){return(Qn=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}zn("vk-blocks/flow",{title:Pn("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(Hn,null,React.createElement($n,null,React.createElement(Ln,{title:Pn("Display of arrow","vk-blocks")},React.createElement(Fn,{selected:c,options:[{label:Pn("Arrow display","vk-blocks"),value:"vk_flow-arrow-on"},{label:Pn("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(Dn,{tagName:"dt",className:"vk_flow_frame_text_title",onChange:function(e){return n({heading:e})},value:r,placeholder:Pn("Input title","vk-blocks")}),React.createElement(Dn,{tagName:"dd",className:"vk_flow_frame_text_content",onChange:function(e){return n({content:e})},value:a,placeholder:Pn("Input content","vk-blocks")})),React.createElement("div",{className:"vk_flow_frame_image"},React.createElement(qn,{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(Un,{onClick:t,className:l?"image-button":"button button-large"},l?React.createElement("img",{className:"icon-image",src:l,alt:Pn("Upload image","vk-blocks")}):Pn("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(Dn.Content,{tagName:"dt",className:"vk_flow_frame_text_title",value:o}),React.createElement(Dn.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:jn});var Kn=wp.i18n.__,Xn=wp.editor.RichText,Zn=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Yn(this,Gn(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&&Qn(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,p=t.urlOpenType1,m=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,_=t.color1,g=t.color2,y=t.color3,d=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3,x=this.props.for_,B=this.props.blockNum,S=this.props.blockNum-1,T=[n,o,r],O=[a,l,c],I=[i,s,u],A=[p,m,f],R=[b,k,v],j=[_,g,y],P=[d,h,E],z=[C,w,N],M="",F="",L=z[S]?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:{backgroundImage:"url(".concat(z[S],")"),backgroundRepeat:"no-repeat 50% center",backgroundSize:"cover"}},H.a.createElement("img",{src:z[S],alt:""})):(j[S]||(j[S]="#0693e3"),"0"===P[S]?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:j[S],border:"1px solid ".concat(j[S])}},H.a.createElement("i",{className:"".concat(R[S]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+j[S]}},H.a.createElement("i",{className:"".concat(R[S]," vk_prBlocks_item_icon"),style:{color:j[S]}})));return"edit"===x?1===B?(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",onChange:function(t){return e({heading1:t})},value:n,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:a,placeholder:Kn("Input Content","vk-blocks")})):2===B?(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",onChange:function(t){return e({heading2:t})},value:o,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:l,placeholder:Kn("Input Content","vk-blocks")})):3===B&&(M=H.a.createElement(Xn,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",onChange:function(t){return e({heading3:t})},value:r,placeholder:Kn("Input Title","vk-blocks")}),F=H.a.createElement(Xn,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:Kn("Input Content","vk-blocks")})):"save"===x&&(M=H.a.createElement(Xn.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(B),tagName:"h1",value:T[S]}),F=H.a.createElement(Xn.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(B),tagName:"p",value:O[S]})),H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:I[S],target:A[S]?"_blank":"_self",className:"vk_prBlocks_item_link",rel:"noopener noreferrer"},L,M,F))}}])&&Wn(n.prototype,o),r&&Wn(n,r),t}(H.a.Component);function eo(e){throw new Error('"'+e+'" is read-only')}wp.i18n.__;var to=wp.components,no=(to.RadioControl,to.PanelBody,to.Button,to.BaseControl,to.CheckboxControl,to.TextControl,wp.element.Fragment,wp.editor),oo=no.RichText;no.InspectorControls,no.MediaUpload,no.ColorPalette;var ro=[{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,p=t.urlOpenType1,m=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,_=t.color1,g=t.color2,y=t.color3,d=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:p?"_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:""})):(_||(eo("color1"),_="#0693e3"),"0"===d?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:_,border:"1px solid ".concat(_)}},H.a.createElement("i",{className:"".concat(b," 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(b," vk_prBlocks_item_icon"),style:{color:_}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h1",value:n}),H.a.createElement(oo.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:m?"_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:""})):(g||(eo("color2"),g="#0693e3"),"0"===h?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:g,border:"1px solid ".concat(g)}},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 "+g}},H.a.createElement("i",{className:"".concat(k," vk_prBlocks_item_icon"),style:{color:g}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h1",value:o}),H.a.createElement(oo.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:f?"_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:""})):(y||(eo("color3"),y="#0693e3"),"0"===E?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:y,border:"1px solid ".concat(y)}},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 "+y}},H.a.createElement("i",{className:"".concat(v," vk_prBlocks_item_icon"),style:{color:y}}))),H.a.createElement(oo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h1",value:r}),H.a.createElement(oo.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(Zn,{attributes:t,blockNum:1,for_:"save"}),H.a.createElement(Zn,{attributes:t,blockNum:2,for_:"save"}),H.a.createElement(Zn,{attributes:t,blockNum:3,for_:"save"}))}}];function ao(e){return(ao="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 lo=function(e){if("string"==typeof e){try{JSON.parse(e)}catch(e){return!0}return!1}return"object"!==ao(e)||Array.isArray(e)};function co(e){return(co="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 io(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 so(e,t){return!t||"object"!==co(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 uo(e){return(uo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function po(e,t){return(po=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var mo=wp.i18n.__,fo=wp.editor.RichText,bo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),so(this,uo(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&&po(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,p=t.urlOpenType1,m=t.urlOpenType2,f=t.urlOpenType3,b=t.icon1,k=t.icon2,v=t.icon3,_=t.color1,g=t.color2,y=t.color3,d=t.bgType1,h=t.bgType2,E=t.bgType3,C=t.insertImage1,w=t.insertImage2,N=t.insertImage3,x=this.props.for_,B=this.props.blockNum,S=this.props.blockNum-1,T=[n,o,r],O=[a,l,c],I=[i,s,u],A=[p,m,f],R=[b,k,v],j=[_,g,y],P=[d,h,E],z=[C,w,N],M="",F="",L=function(e){var t=e[S];if(lo(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]?H.a.createElement("div",{className:"vk_prBlocks_item_image",style:L(z)},function(e){if(lo(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[S])):(j[S]||(j[S]="#0693e3"),"0"===P[S]?H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:j[S],border:"1px solid ".concat(j[S])}},H.a.createElement("i",{className:"".concat(R[S]," vk_prBlocks_item_icon"),style:{color:"#fff"}})):H.a.createElement("div",{className:"vk_prBlocks_item_icon_outer",style:{backgroundColor:"transparent",border:"1px solid "+j[S]}},H.a.createElement("i",{className:"".concat(R[S]," vk_prBlocks_item_icon"),style:{color:j[S]}})));return"edit"===x?1===B?(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-1",tagName:"h3",onChange:function(t){return e({heading1:t})},value:n,placeholder:mo("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-1",tagName:"p",onChange:function(t){return e({content1:t})},value:a,placeholder:mo("Input Content","vk-blocks")})):2===B?(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-2",tagName:"h3",onChange:function(t){return e({heading2:t})},value:o,placeholder:mo("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-2",tagName:"p",onChange:function(t){return e({content2:t})},value:l,placeholder:mo("Input Content","vk-blocks")})):3===B&&(M=H.a.createElement(fo,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-3",tagName:"h3",onChange:function(t){return e({heading3:t})},value:r,placeholder:mo("Input Title","vk-blocks")}),F=H.a.createElement(fo,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-3",tagName:"p",onChange:function(t){return e({content3:t})},value:c,placeholder:mo("Input Content","vk-blocks")})):"save"===x&&(M=H.a.createElement(fo.Content,{className:"vk_prBlocks_item_title vk_prBlocks_item_title-".concat(B),tagName:"h3",value:T[S]}),F=H.a.createElement(fo.Content,{className:"vk_prBlocks_item_summary vk_prBlocks_item_summary-".concat(B),tagName:"p",value:O[S]})),I[S]&&"save"===x?H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},H.a.createElement("a",{href:I[S],className:"vk_prBlocks_item_link",target:A[S]?"_blank":"_self",rel:"noopener noreferrer"},U,M,F)):H.a.createElement("div",{className:"vk_prBlocks_item col-sm-4"},U,M,F)}}])&&io(n.prototype,o),r&&io(n,r),t}(H.a.Component),ko=wp.i18n.__,vo=wp.blocks.registerBlockType,_o=wp.components,go=_o.RadioControl,yo=_o.PanelBody,ho=_o.Button,Eo=_o.BaseControl,Co=_o.CheckboxControl,wo=_o.TextControl,No=wp.element.Fragment,xo=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Bo=xo.InspectorControls,So=xo.MediaUpload,To=xo.ColorPalette,Oo=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"}))));vo("vk-blocks/pr-blocks",{title:ko("PR Blocks","vk-blocks"),icon:Oo,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,p=n.icon1,m=n.icon2,f=n.icon3,b=n.color1,k=n.color2,v=n.color3,_=n.bgType1,g=n.bgType2,y=n.bgType3,d=n.insertImage1,h=n.insertImage2,E=n.insertImage3;t=r?"".concat(r," vk_prBlocks row"):"vk_prBlocks row";var C=function(e){if(lo(e))return e?H.a.createElement("img",{className:"icon-image",src:e,alt:ko("Upload image","vk-blocks")}):ko("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}):ko("Select image","vk-blocks")};return[H.a.createElement(No,null,H.a.createElement(Bo,null,H.a.createElement(yo,{title:ko("PR Block1 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:a,onChange:function(e){return o({url1:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:i,onChange:function(e){return o({urlOpenType1:e})}})),H.a.createElement(Eo,{label:ko("Icon 1","vk-blocks")},H.a.createElement(wo,{label:ko("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:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:b,onChange:function(e){e?o({color1:e}):(o({color1:"#0693e3"}),o({bgType1:"0"}))}}),H.a.createElement(go,{label:ko("Icon Background:","vk-blocks"),selected:_,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType1:e})}})),H.a.createElement(Eo,{label:ko("PR Image 1","vk-blocks"),help:ko("When you have an image. Image is displayed with priority","vk-blocks")},H.a.createElement(So,{onSelect:function(e){lo(e)?o({insertImage1:e.url}):o({insertImage1:JSON.stringify(e)})},type:"image",value:d,render:function(e){var t=e.open;return H.a.createElement(ho,{onClick:t,className:d?"image-button":"button button-large"},C(d))}}))),H.a.createElement(yo,{title:ko("PR Block2 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:l,onChange:function(e){return o({url2:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:s,onChange:function(e){return o({urlOpenType2:e})}})),H.a.createElement(Eo,{label:ko("Icon 2","vk-blocks")},H.a.createElement(wo,{label:ko("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:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:k,onChange:function(e){e?o({color2:e}):(o({color2:"#0693e3"}),o({bgType2:"0"}))}}),H.a.createElement(go,{label:ko("Icon Background:","vk-blocks"),selected:g,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType2:e})}})),H.a.createElement(Eo,{label:ko("PR Image 2","vk-blocks"),help:ko("When you have an image. Image is displayed with priority.","vk-blocks")},H.a.createElement(So,{onSelect:function(e){lo(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(yo,{title:ko("PR Block3 Setting","vk-blocks")},H.a.createElement(Eo,{label:ko("Link URL:","vk-blocks")},H.a.createElement(wo,{value:c,onChange:function(e){return o({url3:e})}}),H.a.createElement(Co,{label:ko("Open link new tab.","vk-blocks"),checked:u,onChange:function(e){return o({urlOpenType3:e})}})),H.a.createElement(Eo,{label:ko("Icon 3","vk-blocks")},H.a.createElement(wo,{label:ko("Class name of the Font Awesome icon font you want to use:","vk-blocks"),value:f,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"},ko("Font Awesome icon list","vk-blocks"))}),H.a.createElement(To,{value:v,onChange:function(e){e?o({color3:e}):(o({color3:"#0693e3"}),o({bgType3:"0"}))}}),H.a.createElement(go,{label:ko("Icon Background:","vk-blocks"),selected:y,options:[{label:ko("Solid color","vk-blocks"),value:"0"},{label:ko("No background","vk-blocks"),value:"1"}],onChange:function(e){return o({bgType3:e})}})),H.a.createElement(Eo,{label:ko("PR Image 3","vk-blocks"),help:ko("When you have an image. Image is displayed with priority.","vk-blocks")},H.a.createElement(So,{onSelect:function(e){lo(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(bo,{attributes:n,setAttributes:o,blockNum:1,for_:"edit"}),H.a.createElement(bo,{attributes:n,setAttributes:o,blockNum:2,for_:"edit"}),H.a.createElement(bo,{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(bo,{attributes:n,blockNum:1,for_:"save"}),H.a.createElement(bo,{attributes:n,blockNum:2,for_:"save"}),H.a.createElement(bo,{attributes:n,blockNum:3,for_:"save"}))},deprecated:ro});function Io(e){return(Io="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 Ao(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 Ro(e,t){return!t||"object"!==Io(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 jo(e){return(jo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Po(e,t){return(Po=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var zo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Ro(this,jo(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&&Po(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)}}])&&Ao(n.prototype,o),r&&Ao(n,r),t}(H.a.Component);function Mo(e){return(Mo="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 Fo(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 Lo(e,t){return!t||"object"!==Mo(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 Uo(e){return(Uo=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function Ho(e,t){return(Ho=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var Vo=wp.i18n.__,Do=wp.components.Button,$o=wp.editor.MediaUpload,qo=wp.editor.RichText,Jo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Lo(this,Uo(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&&Ho(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,p=e.Image,m=e.ImageBorderColor,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,v=this.props.for_,_="vk_prContent",g="vk_button",y="btn btn-block vk_button_link vk_prContent_colTxt_btn",d={},h="none";_="right"===f?me()(k,_,"vk_prContent-layout-imageRight"):me()(k,_,"vk_prContent-layout-imageLeft"),i?(g="".concat(g," vk_button-color-custom"),y="".concat(y," btn-primary"),"0"===l?d={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(d={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(y="".concat(y," btn-").concat(c),d=null):"1"===l&&(y="".concat(y," btn-outline-").concat(c),d=null)),h=m?"1px solid ".concat(m):"none";var E=function(e){e&&b({Image:JSON.stringify(e)})};return H.a.createElement("div",{className:_},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},function(e){if("edit"===e){if(p&&-1===p.indexOf("{"))return H.a.createElement($o,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:p,render:function(e){var t=e.open;return H.a.createElement(Do,{onClick:t,className:p?"image-button":"button button-large"},p?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:Vo("Upload image","vk-blocks"),style:{border:h}}):Vo("Select image","vk-blocks"))}});var t=JSON.parse(p);return H.a.createElement($o,{onSelect:E,type:" image",value:t,render:function(e){var n=e.open;return H.a.createElement(Do,{onClick:n,className:t?"image-button":"button button-large"},null===p||void 0===t.sizes?Vo("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(p){if(p&&-1===p.indexOf("{"))return H.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:Vo("Upload image","vk-blocks"),style:{border:h}});var n=JSON.parse(p);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 Vo("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(qo,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:Vo("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(qo,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:Vo("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(qo.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(qo.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:g},H.a.createElement("a",{href:a,className:y,target:u?"_blank":null,style:d,rel:"noopener noreferrer"},H.a.createElement(zo,{attributes:e})))}()))}}])&&Fo(n.prototype,o),r&&Fo(n,r),t}(H.a.Component);function Wo(e){return(Wo="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 Yo(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 Go(e,t){return!t||"object"!==Wo(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 Qo(e){return(Qo=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)}var Xo=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),Go(this,Qo(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.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)}}])&&Yo(n.prototype,o),r&&Yo(n,r),t}(H.a.Component);function Zo(e){return(Zo="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 er(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 tr(e,t){return!t||"object"!==Zo(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 nr(e){return(nr=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 rr=wp.i18n.__,ar=wp.components.Button,lr=wp.editor.MediaUpload,cr=wp.editor.RichText,ir=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),tr(this,nr(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.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,p=e.Image,m=e.ImageBorderColor,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.for_,v="vk_prContent",_="vk_button",g="btn btn-block vk_button_link vk_prContent_colTxt_btn",y={};return v="".concat(v,"right"===f?" vk_prContent-layout-imageRight":" vk_prContent-layout-imageLeft"),i?(_="".concat(_," vk_button-color-custom"),g="".concat(g," btn-primary"),"0"===l?y={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(y={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(g="".concat(g," btn-").concat(c),y=null):"1"===l&&(g="".concat(g," btn-outline-").concat(c),y=null)),H.a.createElement("div",{className:v},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===k?H.a.createElement(lr,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:p,render:function(e){var t=e.open;return H.a.createElement(ar,{onClick:t,className:p?"image-button":"button button-large"},p?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:rr("Upload image","vk-blocks"),style:{border:"1px solid ".concat(m)}}):rr("Select image","vk-blocks"))}}):p?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:rr("Upload image","vk-blocks"),style:{border:"1px solid ".concat(m)}}):rr("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(cr,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:rr("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(cr,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:rr("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(cr.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(cr.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:_},H.a.createElement("a",{href:a,className:g,target:u?"_blank":null,style:y,rel:"noopener noreferrer"},H.a.createElement(Xo,{attributes:e})))}()))}}])&&er(n.prototype,o),r&&er(n,r),t}(H.a.Component);function sr(e){return(sr="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 ur(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 pr(e,t){return!t||"object"!==sr(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 br=wp.i18n.__,kr=wp.components.Button,vr=wp.editor.MediaUpload,_r=wp.editor.RichText,gr=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),pr(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,a=e.url,l=e.buttonType,c=e.buttonColor,i=e.buttonColorCustom,s=e.buttonText,u=e.buttonTarget,p=e.Image,m=e.ImageBorderColor,f=e.layout,b=(e.fontAwesomeIconBefore,e.fontAwesomeIconAfter,this.props.setAttributes),k=this.props.className,v=this.props.for_,_="vk_prContent",g="vk_button",y="btn btn-block vk_button_link vk_prContent_colTxt_btn",d={},h="";return _="right"===f?me()(k,_,"vk_prContent-layout-imageRight"):me()(k,_,"vk_prContent-layout-imageLeft"),i?(g="".concat(g," vk_button-color-custom"),y="".concat(y," btn-primary"),"0"===l?d={backgroundColor:i,border:"1px solid ".concat(i)}:"1"===l&&(d={backgroundColor:"transparent",border:"1px solid "+i,color:i})):i||("0"===l?(y="".concat(y," btn-").concat(c),d=null):"1"===l&&(y="".concat(y," btn-outline-").concat(c),d=null)),h=null==m?"none":"1px solid ".concat(m),H.a.createElement("div",{className:_},H.a.createElement("div",{className:"col-sm-6 vk_prContent_colImg"},"edit"===v?H.a.createElement(vr,{onSelect:function(e){return b({Image:e.sizes.full.url})},type:" image",value:p,render:function(e){var t=e.open;return H.a.createElement(kr,{onClick:t,className:p?"image-button":"button button-large"},p?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:br("Upload image","vk-blocks"),style:{border:h}}):br("Select image","vk-blocks"))}}):p?H.a.createElement("img",{className:"vk_prContent_colImg_image",src:p,alt:br("Upload image","vk-blocks"),style:{border:h}}):br("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(_r,{tagName:"h3",className:"vk_prContent_colTxt_title",onChange:function(e){return b({title:e})},value:t,placeholder:br("Input title.","vk-blocks"),style:{color:n}}),H.a.createElement(_r,{tagName:"p",className:"vk_prContent_colTxt_text",onChange:function(e){return b({content:e})},value:o,placeholder:br("Input content.","vk-blocks"),style:{color:r}})):H.a.createElement(H.a.Fragment,null,H.a.createElement(_r.Content,{tagName:"h3",value:t,className:"vk_prContent_colTxt_title",style:{color:n}}),H.a.createElement(_r.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:g},H.a.createElement("a",{href:a,className:y,target:u?"_blank":null,style:d,rel:"noopener noreferrer"},H.a.createElement(Xo,{attributes:e})))}()))}}])&&ur(n.prototype,o),r&&ur(n,r),t}(H.a.Component),yr=[{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(gr,{attributes:t,className:n,for_:"save"})}}],dr=wp.i18n.__,hr=wp.blocks.registerBlockType,Er=wp.components,Cr=Er.RadioControl,wr=Er.PanelBody,Nr=Er.BaseControl,xr=Er.CheckboxControl,Br=Er.TextControl,Sr=wp.element.Fragment,Tr=wp.blockEditor&&wp.blockEditor.BlockEdit?wp.blockEditor:wp.editor,Or=Tr.InspectorControls,Ir=Tr.ColorPalette,Ar=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"})));hr("vk-blocks/pr-content",{title:dr("PR Content","vk-blocks"),icon:Ar,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,p=t.buttonTarget,m=t.ImageBorderColor,f=t.layout,b=t.fontAwesomeIconBefore,k=t.fontAwesomeIconAfter;return H.a.createElement(Sr,null,H.a.createElement(Or,null,H.a.createElement(wr,{title:dr("Color Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Nr,{label:dr("Title Color","vk-blocks")},H.a.createElement(Ir,{value:r,onChange:function(e){return o({titleColor:e})}})),H.a.createElement(Nr,{label:dr("Content Color","vk-blocks")},H.a.createElement(Ir,{value:a,onChange:function(e){return o({contentColor:e})}})),H.a.createElement(Nr,{label:dr("Image Border Color","vk-blocks")},H.a.createElement(Ir,{value:m,onChange:function(e){return o({ImageBorderColor:e})}}))),H.a.createElement(wr,{title:dr("Button Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Nr,{label:dr("Button Text","vk-blocks")},H.a.createElement(Br,{value:u,onChange:function(e){return o({buttonText:e})},placeholder:"Input button text."})),H.a.createElement(Nr,{label:dr("Link URL","vk-blocks")},H.a.createElement(Br,{value:l,onChange:function(e){return o({url:e})},placeholder:"https://vektor-inc.co.jp/"})),H.a.createElement(xr,{label:dr("Open link new tab.","vk-blocks"),checked:p,onChange:function(e){return o({buttonTarget:e})}}),H.a.createElement(Nr,{label:dr("Button Type","vk-blocks")},H.a.createElement(Cr,{selected:c,options:[{label:dr("Solid","vk-blocks"),value:"0"},{label:dr("Ghost","vk-blocks"),value:"1"}],onChange:function(e){return o({buttonType:e})}})),H.a.createElement(Cr,{label:dr("Default Color:","vk-blocks"),selected:i,options:[{label:dr("Primary","vk-blocks"),value:"primary"},{label:dr("Secondary","vk-blocks"),value:"secondary"},{label:dr("Success","vk-blocks"),value:"success"},{label:dr("Info","vk-blocks"),value:"info"},{label:dr("Warning","vk-blocks"),value:"warning"},{label:dr("Danger","vk-blocks"),value:"danger"},{label:dr("Light","vk-blocks"),value:"light"},{label:dr("Dark","vk-blocks"),value:"dark"}],onChange:function(e){return o({buttonColor:e})}}),H.a.createElement(Nr,{label:dr("Button Color","vk-blocks")},H.a.createElement(Ir,{value:s,onChange:function(e){return o({buttonColorCustom:e})}})),H.a.createElement(Nr,{label:dr("Font Awesome:","vk-blocks"),help:H.a.createElement("a",{href:"https://fontawesome.com/icons?d=gallery&m=free",target:"_blank"},dr("Font Awesome icon list","vk-blocks"))},H.a.createElement(Br,{label:dr("Before text","vk-blocks"),help:dr("Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-circle-right","vk-blocks"),value:b,onChange:function(e){return o({fontAwesomeIconBefore:e})},placeholder:"fas fa-arrow-circle-right"}),H.a.createElement(Br,{label:dr("After text","vk-blocks"),help:dr("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(wr,{title:dr("Layout Setting","vk-blocks"),initialOpen:!1},H.a.createElement(Cr,{label:dr("Layout Type","vk-blocks"),selected:f,options:[{label:dr("Right","vk-blocks"),value:"right"},{label:dr("Left","vk-blocks"),value:"left"}],onChange:function(e){return o({layout:e})}}))),H.a.createElement(Jo,{attributes:t,setAttributes:o,className:n,for_:"edit"}))},save:function(e){var t=e.attributes,n=e.className;return H.a.createElement(Jo,{attributes:t,className:n,for_:"save"})},deprecated:yr});var Rr=lodash.assign,jr=wp.i18n.__,Pr=wp.hooks.addFilter;Pr("blocks.registerBlockType","vk-blocks/heading-style",(function(e){var t;return t=e.name,["core/heading"].includes(t)&&(e.attributes=Rr(e.attributes,{color:{type:"string"}})),e})),wp.blocks.registerBlockStyle("core/heading",[{name:"vk-heading-default",label:jr("Default","vk-blocks"),isDefault:!0},{name:"vk-heading-plain",label:jr("Plain","vk-blocks")},{name:"vk-heading-background_fill_lightgray",label:jr("Background fill lightgray","vk-blocks")},{name:"vk-heading-double_black",label:jr("Double border top and bottom black","vk-blocks")},{name:"vk-heading-double_bottomborder_black",label:jr("Double border bottom black","vk-blocks")},{name:"vk-heading-solid_black",label:jr("Solid border top and bottom black","vk-blocks")},{name:"vk-heading-solid_bottomborder_black",label:jr("Solid border bottom black","vk-blocks")},{name:"vk-heading-dotted_bottomborder_black",label:jr("Dotted border bottom black","vk-blocks")},{name:"vk-heading-both_ends",label:jr("Both ends","vk-blocks")},{name:"vk-heading-brackets_black",label:jr("Brackets black","vk-blocks")}]);n(5)}]);
|
|
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 アイコンリスト"],"
|
1 |
+
{"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=1; plural=0;","lang":"ja_JP"},"Align":["表示位置"],"Link target":["リンクターゲット"],"Open in new tab":["リンクを別ウィンドウで開く"],"Link rel":["rel属性"],"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 アイコンリスト"],"Filter by PostTypes":["投稿タイプ"],"Filter by Taxonomy Terms":["分類"],"Number of Posts":["表示件数"],"Exsist Already Page":[""],"Current Page":[""],"Display conditions":["表示条件"],"Parent":["親ページ"],"Display type and columns":["表示タイプとカラム"],"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 )"],"Card ( No border )":["カード(線なし)"],"Display type":["表示タイプ"],"Card":["カード"],"Card Horizontal":["カード(水平)"],"Media":["メディア"],"Term name":["分類名"],"Excerpt":["抜粋"],"Date":["日付"],"New mark":["新着表示"],"New mark option":["新着表示オプション"],"Number of days to display the new post mark":["新着表示日数"],"New post mark":["新着表示"],"Button align":["ボタンの位置"],"Left":["左"],"Center":["中央"],"Right":["右"],"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 Item":["カードアイテム"],"URL":[""],"https://www.vektor-inc.co.jp/":[""],"Delete Image":["画像を削除"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ":[""],"Title":["タイトルを入力"],"Select image":["画像を選択"],"Child page list":["子ページリスト"],"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":["背景画像"],"Upload 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"],"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":["枠無し"],"Timeline Item":["タイムライン要素"],"label":["ラベル"],"Timeline":["タイムライン"],"Alert":["アラート"],"Please select the type of balloon.":["吹き出しのタイプを指定してください。"],"Serif":["セリフ"],"Thinking":["吹き出し"],"Icon Name":["アイコンの名前"],"Input text":["文字を入力"],"Ballon":["フキダシ"],"Balloon setting":["フキダシ設定"],"Position":["位置"],"Please specify the layout of the balloon.":["吹き出しの配置を指定してください。"],"Button setting":["ボタン設定"],"Sub Caption":["サブテキスト"],"Open link new tab.":["リンクを別ウィンドウで開く"],"Button Size:":["ボタンサイズ:"],"Large":["大"],"Small":["小"],"Button Position:":["ボタンの位置:"],"Block":["ブロック(全幅)"],"Button Style:":["ボタンスタイル:"],"Solid color":["ベタ塗り"],"No background":["背景なし"],"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"],"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":["文章を入力してください"],"Content Color":["本文の色"],"Image Border Color":["画像の線の色"],"Button Setting":["ボタン設定"],"Button Text":["ボタンの文字"],"Link URL":["リンクURL"],"Button Type":["ボタンタイプ"],"Ghost":["ゴーストボタン"],"Button Color":["ボタンの色"],"Layout Type":["レイアウトタイプ"],"PR Content":["PR Content"],"Title Color":["見出しの色"],"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":["キャプション"]}}}
|
inc/vk-blocks/build/languages/vk-blocks-ja.mo
CHANGED
Binary file
|
inc/vk-blocks/build/languages/vk-blocks-ja.po
CHANGED
@@ -15,6 +15,22 @@ msgstr ""
|
|
15 |
"X-Poedit-KeywordsList: __\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
#: src/_helper/font-awesome.js:21
|
19 |
msgid "FontAwesome"
|
20 |
msgstr "Font Awesome:"
|
@@ -24,148 +40,205 @@ msgid "Enter Font Awesome Class. Ex) fas fa-arrow-circle-right "
|
|
24 |
msgstr ""
|
25 |
"Font Awesome の class 名を入力してください。例) fas fa-arrow-circle-right"
|
26 |
|
27 |
-
#: src/_helper/font-awesome.js:25 src/button/block.js:
|
28 |
-
#: src/pr-blocks/block.js:
|
29 |
msgid "Font Awesome icon list"
|
30 |
msgstr "Font Awesome アイコンリスト"
|
31 |
|
32 |
-
#: src/_helper/post-list.js:
|
33 |
-
msgid "Display conditions"
|
34 |
-
msgstr "表示条件"
|
35 |
-
|
36 |
-
#: src/_helper/post-list.js:179
|
37 |
msgid "Filter by PostTypes"
|
38 |
msgstr "投稿タイプ"
|
39 |
|
40 |
-
#: src/_helper/post-list.js:
|
41 |
msgid "Filter by Taxonomy Terms"
|
42 |
msgstr "分類"
|
43 |
|
44 |
-
#: src/_helper/post-list.js:
|
45 |
msgid "Number of Posts"
|
46 |
msgstr "表示件数"
|
47 |
|
48 |
-
#: src/_helper/post-list.js:
|
49 |
-
|
50 |
-
|
51 |
-
msgid "None"
|
52 |
-
msgstr "なし"
|
53 |
-
|
54 |
-
#: src/_helper/post-list.js:230
|
55 |
-
msgid "Display type and columns"
|
56 |
-
msgstr "表示タイプとカラム"
|
57 |
|
58 |
-
#: src/_helper/post-list.js:
|
59 |
-
msgid "
|
60 |
-
msgstr "
|
61 |
|
62 |
-
#: src/_helper/post-list.js:
|
63 |
-
msgid "
|
64 |
-
msgstr "
|
65 |
|
66 |
-
#: src/_helper/post-list.js:
|
67 |
-
msgid "
|
68 |
-
msgstr "
|
69 |
|
70 |
-
#: src/_helper/post-list.js:
|
71 |
-
msgid "
|
72 |
-
msgstr "
|
73 |
|
74 |
-
#: src/_helper/post-list.js:
|
75 |
msgid "Column ( Screen size : Extra small )"
|
76 |
msgstr "カラム ( 画面サイズ : Extra small )"
|
77 |
|
78 |
-
#: src/_helper/post-list.js:
|
79 |
msgid "Column ( Screen size : Small )"
|
80 |
msgstr "カラム ( 画面サイズ : Small )"
|
81 |
|
82 |
-
#: src/_helper/post-list.js:
|
83 |
msgid "Column ( Screen size : Medium )"
|
84 |
msgstr "カラム ( 画面サイズ : Medium )"
|
85 |
|
86 |
-
#: src/_helper/post-list.js:
|
87 |
msgid "Column ( Screen size : Large )"
|
88 |
msgstr "カラム ( 画面サイズ : Large )"
|
89 |
|
90 |
-
#: src/_helper/post-list.js:
|
91 |
msgid "Column ( Screen size : Extra large )"
|
92 |
msgstr "カラム ( 画面サイズ : Extra large )"
|
93 |
|
94 |
-
#: src/_helper/post-list.js:
|
95 |
-
msgid "
|
96 |
-
msgstr "
|
97 |
|
98 |
-
#: src/_helper/post-list.js:
|
99 |
-
msgid "
|
100 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
|
102 |
-
#: src/_helper/post-list.js:
|
103 |
msgid "Term name"
|
104 |
msgstr "分類名"
|
105 |
|
106 |
-
#: src/_helper/post-list.js:
|
107 |
msgid "Excerpt"
|
108 |
msgstr "抜粋"
|
109 |
|
110 |
-
#: src/_helper/post-list.js:
|
111 |
msgid "Date"
|
112 |
msgstr "日付"
|
113 |
|
114 |
-
#: src/_helper/post-list.js:
|
115 |
msgid "New mark"
|
116 |
msgstr "新着表示"
|
117 |
|
118 |
-
#: src/_helper/post-list.js:
|
119 |
-
msgid "Button"
|
120 |
-
msgstr "ボタン"
|
121 |
-
|
122 |
-
#: src/_helper/post-list.js:344
|
123 |
msgid "New mark option"
|
124 |
msgstr "新着表示オプション"
|
125 |
|
126 |
-
#: src/_helper/post-list.js:
|
127 |
msgid "Number of days to display the new post mark"
|
128 |
msgstr "新着表示日数"
|
129 |
|
130 |
-
#: src/_helper/post-list.js:
|
131 |
msgid "New post mark"
|
132 |
msgstr "新着表示"
|
133 |
|
134 |
-
#: src/_helper/post-list.js:
|
135 |
-
msgid "Button option"
|
136 |
-
msgstr "ボタンオプション"
|
137 |
-
|
138 |
-
#: src/_helper/post-list.js:359
|
139 |
-
msgid "Button text"
|
140 |
-
msgstr "ボタンの文字"
|
141 |
-
|
142 |
-
#: src/_helper/post-list.js:365
|
143 |
msgid "Button align"
|
144 |
msgstr "ボタンの位置"
|
145 |
|
146 |
-
#: src/_helper/post-list.js:
|
147 |
-
#: src/pr-content/block.js:
|
148 |
msgid "Left"
|
149 |
msgstr "左"
|
150 |
|
151 |
-
#: src/_helper/post-list.js:
|
152 |
msgid "Center"
|
153 |
msgstr "中央"
|
154 |
|
155 |
-
#: src/_helper/post-list.js:
|
156 |
-
#: src/pr-content/block.js:
|
157 |
msgid "Right"
|
158 |
msgstr "右"
|
159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
#: src/_pro/child-page/block.js:37
|
161 |
msgid "Child page list"
|
162 |
msgstr "子ページリスト"
|
163 |
|
164 |
-
#: src/_pro/outer/block.js:
|
|
|
|
|
|
|
|
|
165 |
msgid "Color Setting"
|
166 |
msgstr "色設定"
|
167 |
|
168 |
-
#: src/_pro/outer/block.js:
|
169 |
msgid ""
|
170 |
"Color will overcome background image. If you want to display image, clear "
|
171 |
"background color or set opacity 0."
|
@@ -173,182 +246,173 @@ msgstr ""
|
|
173 |
"色を指定すると画像よりも優先されます。画像を表示したい場合は、背景色をクリア"
|
174 |
"するか、不透明度を0に設定します。"
|
175 |
|
176 |
-
#: src/_pro/outer/block.js:
|
177 |
msgid "Opacity Setting"
|
178 |
msgstr "透過設定"
|
179 |
|
180 |
-
#: src/_pro/outer/block.js:
|
181 |
msgid "Background Image"
|
182 |
msgstr "背景画像"
|
183 |
|
184 |
-
#: src/_pro/outer/block.js:
|
185 |
-
#: src/pr-blocks/block.js:
|
186 |
-
#: src/pr-content/deprecated/component-deprecated.js:102
|
187 |
-
#: src/staff/component.js:88
|
188 |
-
msgid "Select image"
|
189 |
-
msgstr "画像を選択"
|
190 |
-
|
191 |
-
#: src/_pro/outer/block.js:137 src/balloon/block.js:122 src/flow/block.js:113
|
192 |
-
#: src/pr-blocks/block.js:345 src/pr-content/component.js:120
|
193 |
#: src/pr-content/deprecated/component-deprecated.js:106
|
|
|
194 |
msgid "Upload image"
|
195 |
msgstr "画像をアップロード"
|
196 |
|
197 |
-
#: src/_pro/outer/block.js:
|
198 |
msgid "Background image Position"
|
199 |
msgstr "背景画像の位置"
|
200 |
|
201 |
-
#: src/_pro/outer/block.js:
|
202 |
msgid "normal"
|
203 |
msgstr "標準"
|
204 |
|
205 |
-
#: src/_pro/outer/block.js:
|
206 |
msgid "Fixed"
|
207 |
msgstr "固定"
|
208 |
|
209 |
-
#: src/_pro/outer/block.js:
|
210 |
msgid "Parallax (It will not work in preview)"
|
211 |
msgstr "パララックス(編集画面では反映されません)"
|
212 |
|
213 |
-
#: src/_pro/outer/block.js:
|
214 |
msgid "Layout Setting"
|
215 |
msgstr "レイアウト設定"
|
216 |
|
217 |
-
#: src/_pro/outer/block.js:
|
218 |
msgid "Outer width"
|
219 |
msgstr "アウターの幅"
|
220 |
|
221 |
-
#: src/_pro/outer/block.js:
|
222 |
msgid "Normal"
|
223 |
msgstr "標準"
|
224 |
|
225 |
-
#: src/_pro/outer/block.js:
|
226 |
msgid "Full Wide"
|
227 |
msgstr "全幅"
|
228 |
|
229 |
-
#: src/_pro/outer/block.js:
|
230 |
msgid "Contents area padding (left and right)"
|
231 |
msgstr "コンテンツエリアの余白 (左右)"
|
232 |
|
233 |
-
#: src/_pro/outer/block.js:
|
234 |
msgid "Do not use padding"
|
235 |
msgstr "余白なし"
|
236 |
|
237 |
-
#: src/_pro/outer/block.js:
|
238 |
msgid "Use padding"
|
239 |
msgstr "余白あり"
|
240 |
|
241 |
-
#: src/_pro/outer/block.js:
|
242 |
msgid "Padding (top and bottom)"
|
243 |
msgstr "余白 (上下)"
|
244 |
|
245 |
-
#: src/_pro/outer/block.js:
|
246 |
msgid "Use default padding"
|
247 |
msgstr "標準の余白を使用"
|
248 |
|
249 |
-
#: src/_pro/outer/block.js:
|
250 |
msgid "Do not use default padding (Set it yourself using a spacer block etc.)."
|
251 |
msgstr "標準の余白を使用しない(スペーサーブロックなどで独自に指定する)。"
|
252 |
|
253 |
-
#: src/_pro/outer/block.js:
|
254 |
msgid "Divider Setting"
|
255 |
msgstr "区切りの設定"
|
256 |
|
257 |
-
#: src/_pro/outer/block.js:
|
258 |
msgid "Type"
|
259 |
msgstr "タイプ"
|
260 |
|
261 |
-
#: src/_pro/outer/block.js:
|
262 |
msgid "Tilt"
|
263 |
msgstr "傾斜"
|
264 |
|
265 |
-
#: src/_pro/outer/block.js:
|
266 |
msgid "Curve"
|
267 |
msgstr "カーブ"
|
268 |
|
269 |
-
#: src/_pro/outer/block.js:
|
270 |
msgid "Wave"
|
271 |
msgstr "波状"
|
272 |
|
273 |
-
#: src/_pro/outer/block.js:
|
274 |
msgid "Triangle"
|
275 |
msgstr "三角"
|
276 |
|
277 |
-
#: src/_pro/outer/block.js:
|
278 |
msgid "Upper Divider Level"
|
279 |
msgstr "上部区切りレベル"
|
280 |
|
281 |
-
#: src/_pro/outer/block.js:
|
282 |
msgid "Lower Divider Level"
|
283 |
msgstr "下部区切りレベル"
|
284 |
|
285 |
-
#: src/_pro/outer/block.js:
|
286 |
msgid "Border Setting"
|
287 |
msgstr "枠線の設定"
|
288 |
|
289 |
-
#: src/_pro/outer/block.js:
|
290 |
msgid "Border will disappear when divider effect is applied."
|
291 |
msgstr "枠線は区切りレベルを適用すると表示されなくなります。"
|
292 |
|
293 |
-
#: src/_pro/outer/block.js:
|
294 |
msgid "Border type"
|
295 |
msgstr "枠線の種類"
|
296 |
|
297 |
-
#: src/_pro/outer/block.js:
|
|
|
|
|
|
|
|
|
|
|
298 |
#: src/_pro/timeline-item/block.js:84 src/group-style/block.js:95
|
299 |
-
#: src/pr-content/block.js:
|
300 |
msgid "Solid"
|
301 |
msgstr "直線"
|
302 |
|
303 |
-
#: src/_pro/outer/block.js:
|
304 |
msgid "Dotted"
|
305 |
msgstr "点線"
|
306 |
|
307 |
-
#: src/_pro/outer/block.js:
|
308 |
msgid "Dashed"
|
309 |
msgstr "Dashed"
|
310 |
|
311 |
-
#: src/_pro/outer/block.js:
|
312 |
msgid "Double"
|
313 |
msgstr "二重線"
|
314 |
|
315 |
-
#: src/_pro/outer/block.js:
|
316 |
msgid "Groove"
|
317 |
msgstr "Groove"
|
318 |
|
319 |
-
#: src/_pro/outer/block.js:
|
320 |
msgid "Ridge"
|
321 |
msgstr "Ridge"
|
322 |
|
323 |
-
#: src/_pro/outer/block.js:
|
324 |
msgid "Inset"
|
325 |
msgstr "Inset"
|
326 |
|
327 |
-
#: src/_pro/outer/block.js:
|
328 |
msgid "Outset"
|
329 |
msgstr "Outset"
|
330 |
|
331 |
-
#: src/_pro/outer/block.js:
|
332 |
msgid "Border width"
|
333 |
msgstr "枠線の幅"
|
334 |
|
335 |
-
#: src/_pro/outer/block.js:
|
336 |
msgid "Border radius"
|
337 |
msgstr "枠線のRの大きさ"
|
338 |
|
339 |
-
#: src/_pro/outer/block.js:
|
340 |
-
msgid "This block is only for users who bought Lightning Pro."
|
341 |
-
msgstr "このブロックは Lightning Pro 専用です。"
|
342 |
-
|
343 |
-
#: src/_pro/outer/block.js:44
|
344 |
msgid "Outer"
|
345 |
msgstr "Outer"
|
346 |
|
347 |
-
#: src/_pro/
|
348 |
-
msgid "Background Setting"
|
349 |
-
msgstr "背景設定"
|
350 |
-
|
351 |
-
#: src/_pro/post-list/block.js:35
|
352 |
msgid "Post list"
|
353 |
msgstr "投稿リスト"
|
354 |
|
@@ -356,7 +420,7 @@ msgstr "投稿リスト"
|
|
356 |
msgid "Outlined"
|
357 |
msgstr "アウトライン"
|
358 |
|
359 |
-
#: src/_pro/step-item/block.js:116 src/_pro/table-of-contents/block.js:
|
360 |
#: src/_pro/timeline-item/block.js:99 src/heading-style/block.js:33
|
361 |
#: src/heading/block.js:124 src/list-style/block.js:104 src/staff/block.js:105
|
362 |
msgid "Default"
|
@@ -383,12 +447,12 @@ msgstr "例) 午前 6:00"
|
|
383 |
msgid "Color"
|
384 |
msgstr "色"
|
385 |
|
386 |
-
#: src/_pro/step-item/block.js:86 src/_pro/table-of-contents/block.js:
|
387 |
#: src/_pro/timeline-item/block.js:69
|
388 |
msgid "Style"
|
389 |
msgstr "スタイル"
|
390 |
|
391 |
-
#: src/_pro/step/block.js:
|
392 |
msgid "First Dot Number"
|
393 |
msgstr "ステップの開始番号"
|
394 |
|
@@ -396,12 +460,12 @@ msgstr "ステップの開始番号"
|
|
396 |
msgid "Step"
|
397 |
msgstr "ステップ"
|
398 |
|
399 |
-
#: src/_pro/table-of-contents/TableOfContents.js:
|
400 |
-
#: src/_pro/table-of-contents/block.js:
|
401 |
msgid "Table of Contents"
|
402 |
msgstr "目次"
|
403 |
|
404 |
-
#: src/_pro/table-of-contents/block.js:
|
405 |
msgid "No frame"
|
406 |
msgstr "枠無し"
|
407 |
|
@@ -421,133 +485,133 @@ msgstr "タイムライン"
|
|
421 |
msgid "Alert"
|
422 |
msgstr "アラート"
|
423 |
|
424 |
-
#: src/balloon/block.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
425 |
msgid "Icon Name"
|
426 |
msgstr "アイコンの名前"
|
427 |
|
428 |
-
#: src/balloon/block.js:
|
429 |
msgid "Input text"
|
430 |
msgstr "文字を入力"
|
431 |
|
432 |
-
#: src/balloon/block.js:
|
433 |
msgid "Ballon"
|
434 |
msgstr "フキダシ"
|
435 |
|
436 |
-
#: src/balloon/block.js:
|
437 |
msgid "Balloon setting"
|
438 |
msgstr "フキダシ設定"
|
439 |
|
440 |
-
#: src/balloon/block.js:
|
441 |
msgid "Position"
|
442 |
msgstr "位置"
|
443 |
|
444 |
-
#: src/balloon/block.js:
|
445 |
msgid "Please specify the layout of the balloon."
|
446 |
msgstr "吹き出しの配置を指定してください。"
|
447 |
|
448 |
-
#: src/
|
449 |
-
msgid "Please select the type of balloon."
|
450 |
-
msgstr "吹き出しのタイプを指定してください。"
|
451 |
-
|
452 |
-
#: src/balloon/block.js:98
|
453 |
-
msgid "Serif"
|
454 |
-
msgstr "セリフ"
|
455 |
-
|
456 |
-
#: src/balloon/block.js:99
|
457 |
-
msgid "Thinking"
|
458 |
-
msgstr "吹き出し"
|
459 |
-
|
460 |
-
#: src/button/block.js:148
|
461 |
msgid "Button setting"
|
462 |
msgstr "ボタン設定"
|
463 |
|
464 |
-
#: src/button/block.js:
|
465 |
msgid "Sub Caption"
|
466 |
msgstr "サブテキスト"
|
467 |
|
468 |
-
#: src/button/block.js:
|
469 |
-
#: src/pr-content/block.js:
|
470 |
msgid "Open link new tab."
|
471 |
msgstr "リンクを別ウィンドウで開く"
|
472 |
|
473 |
-
#: src/button/block.js:
|
474 |
msgid "Button Size:"
|
475 |
msgstr "ボタンサイズ:"
|
476 |
|
477 |
-
#: src/button/block.js:
|
478 |
msgid "Large"
|
479 |
msgstr "大"
|
480 |
|
481 |
-
#: src/button/block.js:
|
482 |
msgid "Small"
|
483 |
msgstr "小"
|
484 |
|
485 |
-
#: src/button/block.js:
|
486 |
msgid "Button Position:"
|
487 |
msgstr "ボタンの位置:"
|
488 |
|
489 |
-
#: src/button/block.js:
|
490 |
msgid "Block"
|
491 |
msgstr "ブロック(全幅)"
|
492 |
|
493 |
-
#: src/button/block.js:
|
494 |
msgid "Button Style:"
|
495 |
msgstr "ボタンスタイル:"
|
496 |
|
497 |
-
#: src/button/block.js:
|
498 |
msgid "Solid color"
|
499 |
msgstr "ベタ塗り"
|
500 |
|
501 |
-
#: src/button/block.js:
|
502 |
msgid "No background"
|
503 |
msgstr "背景なし"
|
504 |
|
505 |
-
#: src/button/block.js:
|
506 |
msgid ""
|
507 |
"If you select \"No background\", that you need to select a Custom Color."
|
508 |
msgstr "もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"
|
509 |
|
510 |
-
#: src/button/block.js:
|
511 |
msgid "Default Color:"
|
512 |
msgstr "標準色:"
|
513 |
|
514 |
-
#: src/button/block.js:
|
515 |
msgid "Primary"
|
516 |
msgstr "Primary"
|
517 |
|
518 |
-
#: src/button/block.js:
|
519 |
msgid "Secondary"
|
520 |
msgstr "Secondary"
|
521 |
|
522 |
-
#: src/button/block.js:
|
523 |
msgid "Success"
|
524 |
msgstr "Success"
|
525 |
|
526 |
-
#: src/button/block.js:
|
527 |
msgid "Info"
|
528 |
msgstr "Info"
|
529 |
|
530 |
-
#: src/button/block.js:
|
531 |
msgid "Warning"
|
532 |
msgstr "Warning"
|
533 |
|
534 |
-
#: src/button/block.js:
|
535 |
msgid "Danger"
|
536 |
msgstr "Danger"
|
537 |
|
538 |
-
#: src/button/block.js:
|
539 |
msgid "Light"
|
540 |
msgstr "Light"
|
541 |
|
542 |
-
#: src/button/block.js:
|
543 |
msgid "Dark"
|
544 |
msgstr "Dark"
|
545 |
|
546 |
-
#: src/button/block.js:
|
547 |
msgid "Custom Color"
|
548 |
msgstr "カスタムカラー"
|
549 |
|
550 |
-
#: src/button/block.js:
|
551 |
msgid ""
|
552 |
"This custom color overrides the default color. If you want to use the "
|
553 |
"default color, click the clear button."
|
@@ -555,15 +619,15 @@ msgstr ""
|
|
555 |
"このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用し"
|
556 |
"たい場合は、クリアボタンをクリックしてください。"
|
557 |
|
558 |
-
#: src/button/block.js:
|
559 |
msgid "Font Awesome:"
|
560 |
msgstr "Font Awesome:"
|
561 |
|
562 |
-
#: src/button/block.js:
|
563 |
msgid "Before text"
|
564 |
msgstr "文字の前"
|
565 |
|
566 |
-
#: src/button/block.js:
|
567 |
msgid ""
|
568 |
"Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-"
|
569 |
"circle-right"
|
@@ -571,11 +635,11 @@ msgstr ""
|
|
571 |
"Font Awesome の class 名を入力してください。このアイコンは文字の前に表示され"
|
572 |
"ます。 例) fas fa-arrow-circle-right"
|
573 |
|
574 |
-
#: src/button/block.js:
|
575 |
msgid "After text"
|
576 |
msgstr "文字の後"
|
577 |
|
578 |
-
#: src/button/block.js:
|
579 |
msgid ""
|
580 |
"Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-"
|
581 |
"external-link-alt"
|
@@ -583,22 +647,22 @@ msgstr ""
|
|
583 |
"Font Awesome の class 名を入力してください。このアイコンは文字の後に表示され"
|
584 |
"ます。 例) fas fa-external-link-alt"
|
585 |
|
586 |
-
#: src/button/block.js:
|
587 |
msgid "Apply"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: src/faq/block.js:
|
|
|
|
|
|
|
|
|
591 |
msgid "FAQ"
|
592 |
msgstr "質問と解答"
|
593 |
|
594 |
-
#: src/faq/block.js:
|
595 |
msgid "Please enter a question."
|
596 |
msgstr "質問を入力してください。"
|
597 |
|
598 |
-
#: src/faq/block.js:86
|
599 |
-
msgid "Please enter a answer."
|
600 |
-
msgstr "回答を入力してください。"
|
601 |
-
|
602 |
#: src/flow/block.js:28
|
603 |
msgid "Flow"
|
604 |
msgstr "フロー"
|
@@ -801,127 +865,129 @@ msgstr "数字-四角"
|
|
801 |
msgid "List Icon Color"
|
802 |
msgstr "リストアイコンの色"
|
803 |
|
804 |
-
#: src/pr-blocks/block.js:
|
805 |
msgid "PR Block1 Setting"
|
806 |
msgstr "PR Block1 設定"
|
807 |
|
808 |
-
#: src/pr-blocks/block.js:
|
809 |
msgid "Icon 1"
|
810 |
msgstr "アイコン 1"
|
811 |
|
812 |
-
#: src/pr-blocks/block.js:
|
813 |
msgid "PR Image 1"
|
814 |
msgstr "PR 画像 1"
|
815 |
|
816 |
-
#: src/pr-blocks/block.js:
|
817 |
msgid "When you have an image. Image is displayed with priority"
|
818 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
819 |
|
820 |
-
#: src/pr-blocks/block.js:
|
821 |
msgid "PR Block2 Setting"
|
822 |
msgstr "PR Block2 設定"
|
823 |
|
824 |
-
#: src/pr-blocks/block.js:
|
825 |
msgid "Icon 2"
|
826 |
msgstr "アイコン 2"
|
827 |
|
828 |
-
#: src/pr-blocks/block.js:
|
829 |
msgid "PR Image 2"
|
830 |
msgstr "PR 画像 2"
|
831 |
|
832 |
-
#: src/pr-blocks/block.js:
|
833 |
msgid "PR Block3 Setting"
|
834 |
msgstr "PR Block3 設定"
|
835 |
|
836 |
-
#: src/pr-blocks/block.js:
|
837 |
msgid "Link URL:"
|
838 |
msgstr "リンクURL:"
|
839 |
|
840 |
-
#: src/pr-blocks/block.js:
|
841 |
msgid "Icon 3"
|
842 |
msgstr "アイコン 3"
|
843 |
|
844 |
-
#: src/pr-blocks/block.js:
|
845 |
msgid "Class name of the Font Awesome icon font you want to use:"
|
846 |
msgstr "アイコンを使う場合は Font Awesome のアイコンのclass名:"
|
847 |
|
848 |
-
#: src/pr-blocks/block.js:
|
849 |
msgid "Icon Background:"
|
850 |
msgstr "アイコン背景:"
|
851 |
|
852 |
-
#: src/pr-blocks/block.js:
|
853 |
msgid "PR Image 3"
|
854 |
msgstr "PR 画像 3"
|
855 |
|
856 |
-
#: src/pr-blocks/block.js:
|
857 |
msgid "When you have an image. Image is displayed with priority."
|
858 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
859 |
|
860 |
-
#: src/pr-blocks/block.js:
|
861 |
msgid "PR Blocks"
|
862 |
msgstr "PR Blocks"
|
863 |
|
864 |
-
#: src/pr-blocks/component-block.js:
|
865 |
#: src/pr-blocks/deprecated/component-block.js:144
|
866 |
msgid "Input Title"
|
867 |
msgstr "タイトルを入力"
|
868 |
|
869 |
-
#: src/pr-blocks/component-block.js:
|
870 |
#: src/pr-blocks/deprecated/component-block.js:151
|
871 |
msgid "Input Content"
|
872 |
msgstr "文章を入力してください"
|
873 |
|
874 |
-
#: src/pr-content/block.js:
|
|
|
|
|
|
|
|
|
875 |
msgid "Image Border Color"
|
876 |
msgstr "画像の線の色"
|
877 |
|
878 |
-
#: src/pr-content/block.js:
|
879 |
msgid "Button Setting"
|
880 |
msgstr "ボタン設定"
|
881 |
|
882 |
-
#: src/pr-content/block.js:
|
883 |
msgid "Button Text"
|
884 |
msgstr "ボタンの文字"
|
885 |
|
886 |
-
#: src/pr-content/block.js:
|
887 |
msgid "Link URL"
|
888 |
msgstr "リンクURL"
|
889 |
|
890 |
-
#: src/pr-content/block.js:
|
891 |
msgid "Button Type"
|
892 |
msgstr "ボタンタイプ"
|
893 |
|
894 |
-
#: src/pr-content/block.js:
|
895 |
msgid "Ghost"
|
896 |
msgstr "ゴーストボタン"
|
897 |
|
898 |
-
#: src/pr-content/block.js:
|
899 |
msgid "Button Color"
|
900 |
msgstr "ボタンの色"
|
901 |
|
902 |
-
#: src/pr-content/block.js:
|
903 |
msgid "Layout Type"
|
904 |
msgstr "レイアウトタイプ"
|
905 |
|
906 |
-
#: src/pr-content/block.js:
|
907 |
msgid "PR Content"
|
908 |
msgstr "PR Content"
|
909 |
|
910 |
-
#: src/pr-content/block.js:
|
911 |
msgid "Title Color"
|
912 |
msgstr "見出しの色"
|
913 |
|
914 |
-
#: src/pr-content/
|
915 |
-
msgid "Content Color"
|
916 |
-
msgstr "本文の色"
|
917 |
-
|
918 |
-
#: src/pr-content/component.js:136
|
919 |
#: src/pr-content/deprecated/component-deprecated.js:122
|
|
|
920 |
msgid "Input title."
|
921 |
msgstr "タイトルを入力してください。"
|
922 |
|
923 |
-
#: src/pr-content/component.js:
|
924 |
#: src/pr-content/deprecated/component-deprecated.js:130
|
|
|
925 |
msgid "Input content."
|
926 |
msgstr "本文を入力してください。"
|
927 |
|
@@ -1017,6 +1083,14 @@ msgstr "名前"
|
|
1017 |
msgid "Caption"
|
1018 |
msgstr "キャプション"
|
1019 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1020 |
#~ msgid "top-bottom-border"
|
1021 |
#~ msgstr "上下線"
|
1022 |
|
@@ -1086,9 +1160,6 @@ msgstr "キャプション"
|
|
1086 |
#~ msgid "Label"
|
1087 |
#~ msgstr "ラベル"
|
1088 |
|
1089 |
-
#~ msgid "Icon setting"
|
1090 |
-
#~ msgstr "アイコン設定"
|
1091 |
-
|
1092 |
#, fuzzy
|
1093 |
#~| msgid "Button Style:"
|
1094 |
#~ msgid "Icon Style:"
|
@@ -1155,9 +1226,6 @@ msgstr "キャプション"
|
|
1155 |
#~ msgid "Use contents area default padding"
|
1156 |
#~ msgstr "コンテンツエリアの左右に標準の余白を使用"
|
1157 |
|
1158 |
-
#~ msgid "Link target"
|
1159 |
-
#~ msgstr "リンクターゲット"
|
1160 |
-
|
1161 |
#~ msgid "Open url in new window"
|
1162 |
#~ msgstr "リンクを別ウィンドウで開く"
|
1163 |
|
@@ -1176,6 +1244,3 @@ msgstr "キャプション"
|
|
1176 |
|
1177 |
#~ msgid "Width Setting"
|
1178 |
#~ msgstr "幅設定"
|
1179 |
-
|
1180 |
-
#~ msgid "Link url"
|
1181 |
-
#~ msgstr "リンクURL"
|
15 |
"X-Poedit-KeywordsList: __\n"
|
16 |
"X-Poedit-SearchPath-0: .\n"
|
17 |
|
18 |
+
#: components/card-align-control/index.js:22
|
19 |
+
msgid "Align"
|
20 |
+
msgstr "表示位置"
|
21 |
+
|
22 |
+
#: components/link-control/index.js:37
|
23 |
+
msgid "Link target"
|
24 |
+
msgstr "リンクターゲット"
|
25 |
+
|
26 |
+
#: components/link-control/index.js:41
|
27 |
+
msgid "Open in new tab"
|
28 |
+
msgstr "リンクを別ウィンドウで開く"
|
29 |
+
|
30 |
+
#: components/link-control/index.js:46
|
31 |
+
msgid "Link rel"
|
32 |
+
msgstr "rel属性"
|
33 |
+
|
34 |
#: src/_helper/font-awesome.js:21
|
35 |
msgid "FontAwesome"
|
36 |
msgstr "Font Awesome:"
|
40 |
msgstr ""
|
41 |
"Font Awesome の class 名を入力してください。例) fas fa-arrow-circle-right"
|
42 |
|
43 |
+
#: src/_helper/font-awesome.js:25 src/button/block.js:218
|
44 |
+
#: src/pr-blocks/block.js:344 src/pr-content/block.js:175
|
45 |
msgid "Font Awesome icon list"
|
46 |
msgstr "Font Awesome アイコンリスト"
|
47 |
|
48 |
+
#: src/_helper/post-list.js:192
|
|
|
|
|
|
|
|
|
49 |
msgid "Filter by PostTypes"
|
50 |
msgstr "投稿タイプ"
|
51 |
|
52 |
+
#: src/_helper/post-list.js:195
|
53 |
msgid "Filter by Taxonomy Terms"
|
54 |
msgstr "分類"
|
55 |
|
56 |
+
#: src/_helper/post-list.js:198
|
57 |
msgid "Number of Posts"
|
58 |
msgstr "表示件数"
|
59 |
|
60 |
+
#: src/_helper/post-list.js:270
|
61 |
+
msgid "Exsist Already Page"
|
62 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
+
#: src/_helper/post-list.js:289
|
65 |
+
msgid "Current Page"
|
66 |
+
msgstr ""
|
67 |
|
68 |
+
#: src/_helper/post-list.js:301
|
69 |
+
msgid "Display conditions"
|
70 |
+
msgstr "表示条件"
|
71 |
|
72 |
+
#: src/_helper/post-list.js:304
|
73 |
+
msgid "Parent"
|
74 |
+
msgstr "親ページ"
|
75 |
|
76 |
+
#: src/_helper/post-list.js:320
|
77 |
+
msgid "Display type and columns"
|
78 |
+
msgstr "表示タイプとカラム"
|
79 |
|
80 |
+
#: src/_helper/post-list.js:325
|
81 |
msgid "Column ( Screen size : Extra small )"
|
82 |
msgstr "カラム ( 画面サイズ : Extra small )"
|
83 |
|
84 |
+
#: src/_helper/post-list.js:335
|
85 |
msgid "Column ( Screen size : Small )"
|
86 |
msgstr "カラム ( 画面サイズ : Small )"
|
87 |
|
88 |
+
#: src/_helper/post-list.js:345
|
89 |
msgid "Column ( Screen size : Medium )"
|
90 |
msgstr "カラム ( 画面サイズ : Medium )"
|
91 |
|
92 |
+
#: src/_helper/post-list.js:355
|
93 |
msgid "Column ( Screen size : Large )"
|
94 |
msgstr "カラム ( 画面サイズ : Large )"
|
95 |
|
96 |
+
#: src/_helper/post-list.js:365
|
97 |
msgid "Column ( Screen size : Extra large )"
|
98 |
msgstr "カラム ( 画面サイズ : Extra large )"
|
99 |
|
100 |
+
#: src/_helper/post-list.js:392
|
101 |
+
msgid "Card ( No border )"
|
102 |
+
msgstr "カード(線なし)"
|
103 |
|
104 |
+
#: src/_helper/post-list.js:400
|
105 |
+
msgid "Display type"
|
106 |
+
msgstr "表示タイプ"
|
107 |
+
|
108 |
+
#: src/_helper/post-list.js:407 src/_pro/card/block.js:51
|
109 |
+
msgid "Card"
|
110 |
+
msgstr "カード"
|
111 |
+
|
112 |
+
#: src/_helper/post-list.js:411
|
113 |
+
msgid "Card Horizontal"
|
114 |
+
msgstr "カード(水平)"
|
115 |
+
|
116 |
+
#: src/_helper/post-list.js:415
|
117 |
+
msgid "Media"
|
118 |
+
msgstr "メディア"
|
119 |
|
120 |
+
#: src/_helper/post-list.js:433
|
121 |
msgid "Term name"
|
122 |
msgstr "分類名"
|
123 |
|
124 |
+
#: src/_helper/post-list.js:440
|
125 |
msgid "Excerpt"
|
126 |
msgstr "抜粋"
|
127 |
|
128 |
+
#: src/_helper/post-list.js:445
|
129 |
msgid "Date"
|
130 |
msgstr "日付"
|
131 |
|
132 |
+
#: src/_helper/post-list.js:451
|
133 |
msgid "New mark"
|
134 |
msgstr "新着表示"
|
135 |
|
136 |
+
#: src/_helper/post-list.js:461
|
|
|
|
|
|
|
|
|
137 |
msgid "New mark option"
|
138 |
msgstr "新着表示オプション"
|
139 |
|
140 |
+
#: src/_helper/post-list.js:463
|
141 |
msgid "Number of days to display the new post mark"
|
142 |
msgstr "新着表示日数"
|
143 |
|
144 |
+
#: src/_helper/post-list.js:471
|
145 |
msgid "New post mark"
|
146 |
msgstr "新着表示"
|
147 |
|
148 |
+
#: src/_helper/post-list.js:491
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
msgid "Button align"
|
150 |
msgstr "ボタンの位置"
|
151 |
|
152 |
+
#: src/_helper/post-list.js:498 src/balloon/block.js:97 src/button/block.js:175
|
153 |
+
#: src/pr-content/block.js:202
|
154 |
msgid "Left"
|
155 |
msgstr "左"
|
156 |
|
157 |
+
#: src/_helper/post-list.js:502 src/button/block.js:176
|
158 |
msgid "Center"
|
159 |
msgstr "中央"
|
160 |
|
161 |
+
#: src/_helper/post-list.js:506 src/balloon/block.js:98 src/button/block.js:177
|
162 |
+
#: src/pr-content/block.js:201
|
163 |
msgid "Right"
|
164 |
msgstr "右"
|
165 |
|
166 |
+
#: src/_helper/post-list.js:517
|
167 |
+
msgid "Display item"
|
168 |
+
msgstr "表示要素"
|
169 |
+
|
170 |
+
#: src/_helper/post-list.js:519
|
171 |
+
msgid "Image"
|
172 |
+
msgstr "画像"
|
173 |
+
|
174 |
+
#: src/_helper/post-list.js:524 src/button/block.js:59
|
175 |
+
msgid "Button"
|
176 |
+
msgstr "ボタン"
|
177 |
+
|
178 |
+
#: src/_helper/post-list.js:529
|
179 |
+
msgid "Button option"
|
180 |
+
msgstr "ボタンオプション"
|
181 |
+
|
182 |
+
#: src/_helper/post-list.js:532
|
183 |
+
msgid ""
|
184 |
+
"Click each card block to set the target url. You can find the url form at "
|
185 |
+
"it's sidebar."
|
186 |
+
msgstr ""
|
187 |
+
"ボタンのリンク先は各カードブロックをクリックすると、サイドバーにURL入力フォー"
|
188 |
+
"ムが表示されます。"
|
189 |
+
|
190 |
+
#: src/_helper/post-list.js:538
|
191 |
+
msgid "Button text"
|
192 |
+
msgstr "ボタンの文字"
|
193 |
+
|
194 |
+
#: src/_pro/card-item/block.js:34
|
195 |
+
msgid "Card Item"
|
196 |
+
msgstr "カードアイテム"
|
197 |
+
|
198 |
+
#: src/_pro/card-item/block.js:49
|
199 |
+
msgid "URL"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: src/_pro/card-item/block.js:54
|
203 |
+
msgid "https://www.vektor-inc.co.jp/"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: src/_pro/card-item/component.js:103
|
207 |
+
msgid "Delete Image"
|
208 |
+
msgstr "画像を削除"
|
209 |
+
|
210 |
+
#: src/_pro/card-item/component.js:157
|
211 |
+
msgid ""
|
212 |
+
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod "
|
213 |
+
"tempor incididunt ut labore et dolore magna aliqua. "
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: src/_pro/card-item/component.js:199
|
217 |
+
msgid "Title"
|
218 |
+
msgstr "タイトルを入力"
|
219 |
+
|
220 |
+
#: src/_pro/card-item/component.js:90 src/_pro/outer/block.js:154
|
221 |
+
#: src/balloon/block.js:136 src/flow/block.js:112 src/pr-blocks/block.js:179
|
222 |
+
#: src/pr-content/component.js:155
|
223 |
+
#: src/pr-content/deprecated/component-deprecated.js:102
|
224 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:116
|
225 |
+
#: src/staff/component.js:88
|
226 |
+
msgid "Select image"
|
227 |
+
msgstr "画像を選択"
|
228 |
+
|
229 |
#: src/_pro/child-page/block.js:37
|
230 |
msgid "Child page list"
|
231 |
msgstr "子ページリスト"
|
232 |
|
233 |
+
#: src/_pro/outer/block.js:116
|
234 |
+
msgid "Background Setting"
|
235 |
+
msgstr "背景設定"
|
236 |
+
|
237 |
+
#: src/_pro/outer/block.js:120 src/pr-content/block.js:91
|
238 |
msgid "Color Setting"
|
239 |
msgstr "色設定"
|
240 |
|
241 |
+
#: src/_pro/outer/block.js:121
|
242 |
msgid ""
|
243 |
"Color will overcome background image. If you want to display image, clear "
|
244 |
"background color or set opacity 0."
|
246 |
"色を指定すると画像よりも優先されます。画像を表示したい場合は、背景色をクリア"
|
247 |
"するか、不透明度を0に設定します。"
|
248 |
|
249 |
+
#: src/_pro/outer/block.js:132
|
250 |
msgid "Opacity Setting"
|
251 |
msgstr "透過設定"
|
252 |
|
253 |
+
#: src/_pro/outer/block.js:143
|
254 |
msgid "Background Image"
|
255 |
msgstr "背景画像"
|
256 |
|
257 |
+
#: src/_pro/outer/block.js:159 src/balloon/block.js:141 src/flow/block.js:113
|
258 |
+
#: src/pr-blocks/block.js:175 src/pr-content/component.js:162
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
#: src/pr-content/deprecated/component-deprecated.js:106
|
260 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:120
|
261 |
msgid "Upload image"
|
262 |
msgstr "画像をアップロード"
|
263 |
|
264 |
+
#: src/_pro/outer/block.js:168
|
265 |
msgid "Background image Position"
|
266 |
msgstr "背景画像の位置"
|
267 |
|
268 |
+
#: src/_pro/outer/block.js:175 src/button/block.js:166
|
269 |
msgid "normal"
|
270 |
msgstr "標準"
|
271 |
|
272 |
+
#: src/_pro/outer/block.js:176
|
273 |
msgid "Fixed"
|
274 |
msgstr "固定"
|
275 |
|
276 |
+
#: src/_pro/outer/block.js:178
|
277 |
msgid "Parallax (It will not work in preview)"
|
278 |
msgstr "パララックス(編集画面では反映されません)"
|
279 |
|
280 |
+
#: src/_pro/outer/block.js:191 src/pr-content/block.js:194
|
281 |
msgid "Layout Setting"
|
282 |
msgstr "レイアウト設定"
|
283 |
|
284 |
+
#: src/_pro/outer/block.js:196
|
285 |
msgid "Outer width"
|
286 |
msgstr "アウターの幅"
|
287 |
|
288 |
+
#: src/_pro/outer/block.js:199
|
289 |
msgid "Normal"
|
290 |
msgstr "標準"
|
291 |
|
292 |
+
#: src/_pro/outer/block.js:200
|
293 |
msgid "Full Wide"
|
294 |
msgstr "全幅"
|
295 |
|
296 |
+
#: src/_pro/outer/block.js:205
|
297 |
msgid "Contents area padding (left and right)"
|
298 |
msgstr "コンテンツエリアの余白 (左右)"
|
299 |
|
300 |
+
#: src/_pro/outer/block.js:212
|
301 |
msgid "Do not use padding"
|
302 |
msgstr "余白なし"
|
303 |
|
304 |
+
#: src/_pro/outer/block.js:216
|
305 |
msgid "Use padding"
|
306 |
msgstr "余白あり"
|
307 |
|
308 |
+
#: src/_pro/outer/block.js:225
|
309 |
msgid "Padding (top and bottom)"
|
310 |
msgstr "余白 (上下)"
|
311 |
|
312 |
+
#: src/_pro/outer/block.js:228
|
313 |
msgid "Use default padding"
|
314 |
msgstr "標準の余白を使用"
|
315 |
|
316 |
+
#: src/_pro/outer/block.js:230
|
317 |
msgid "Do not use default padding (Set it yourself using a spacer block etc.)."
|
318 |
msgstr "標準の余白を使用しない(スペーサーブロックなどで独自に指定する)。"
|
319 |
|
320 |
+
#: src/_pro/outer/block.js:244
|
321 |
msgid "Divider Setting"
|
322 |
msgstr "区切りの設定"
|
323 |
|
324 |
+
#: src/_pro/outer/block.js:249 src/balloon/block.js:103
|
325 |
msgid "Type"
|
326 |
msgstr "タイプ"
|
327 |
|
328 |
+
#: src/_pro/outer/block.js:255
|
329 |
msgid "Tilt"
|
330 |
msgstr "傾斜"
|
331 |
|
332 |
+
#: src/_pro/outer/block.js:259
|
333 |
msgid "Curve"
|
334 |
msgstr "カーブ"
|
335 |
|
336 |
+
#: src/_pro/outer/block.js:263
|
337 |
msgid "Wave"
|
338 |
msgstr "波状"
|
339 |
|
340 |
+
#: src/_pro/outer/block.js:267 src/list-style/block.js:113
|
341 |
msgid "Triangle"
|
342 |
msgstr "三角"
|
343 |
|
344 |
+
#: src/_pro/outer/block.js:272
|
345 |
msgid "Upper Divider Level"
|
346 |
msgstr "上部区切りレベル"
|
347 |
|
348 |
+
#: src/_pro/outer/block.js:290
|
349 |
msgid "Lower Divider Level"
|
350 |
msgstr "下部区切りレベル"
|
351 |
|
352 |
+
#: src/_pro/outer/block.js:310
|
353 |
msgid "Border Setting"
|
354 |
msgstr "枠線の設定"
|
355 |
|
356 |
+
#: src/_pro/outer/block.js:317
|
357 |
msgid "Border will disappear when divider effect is applied."
|
358 |
msgstr "枠線は区切りレベルを適用すると表示されなくなります。"
|
359 |
|
360 |
+
#: src/_pro/outer/block.js:323
|
361 |
msgid "Border type"
|
362 |
msgstr "枠線の種類"
|
363 |
|
364 |
+
#: src/_pro/outer/block.js:329 src/_pro/step-item/block.js:120
|
365 |
+
#: src/_pro/timeline-item/block.js:103 src/staff/block.js:109
|
366 |
+
msgid "None"
|
367 |
+
msgstr "なし"
|
368 |
+
|
369 |
+
#: src/_pro/outer/block.js:333 src/_pro/step-item/block.js:97
|
370 |
#: src/_pro/timeline-item/block.js:84 src/group-style/block.js:95
|
371 |
+
#: src/pr-content/block.js:146
|
372 |
msgid "Solid"
|
373 |
msgstr "直線"
|
374 |
|
375 |
+
#: src/_pro/outer/block.js:337 src/group-style/block.js:103
|
376 |
msgid "Dotted"
|
377 |
msgstr "点線"
|
378 |
|
379 |
+
#: src/_pro/outer/block.js:341 src/group-style/block.js:107
|
380 |
msgid "Dashed"
|
381 |
msgstr "Dashed"
|
382 |
|
383 |
+
#: src/_pro/outer/block.js:345 src/group-style/block.js:111
|
384 |
msgid "Double"
|
385 |
msgstr "二重線"
|
386 |
|
387 |
+
#: src/_pro/outer/block.js:349
|
388 |
msgid "Groove"
|
389 |
msgstr "Groove"
|
390 |
|
391 |
+
#: src/_pro/outer/block.js:353
|
392 |
msgid "Ridge"
|
393 |
msgstr "Ridge"
|
394 |
|
395 |
+
#: src/_pro/outer/block.js:357
|
396 |
msgid "Inset"
|
397 |
msgstr "Inset"
|
398 |
|
399 |
+
#: src/_pro/outer/block.js:361
|
400 |
msgid "Outset"
|
401 |
msgstr "Outset"
|
402 |
|
403 |
+
#: src/_pro/outer/block.js:372
|
404 |
msgid "Border width"
|
405 |
msgstr "枠線の幅"
|
406 |
|
407 |
+
#: src/_pro/outer/block.js:379
|
408 |
msgid "Border radius"
|
409 |
msgstr "枠線のRの大きさ"
|
410 |
|
411 |
+
#: src/_pro/outer/block.js:63
|
|
|
|
|
|
|
|
|
412 |
msgid "Outer"
|
413 |
msgstr "Outer"
|
414 |
|
415 |
+
#: src/_pro/post-list/block.js:53
|
|
|
|
|
|
|
|
|
416 |
msgid "Post list"
|
417 |
msgstr "投稿リスト"
|
418 |
|
420 |
msgid "Outlined"
|
421 |
msgstr "アウトライン"
|
422 |
|
423 |
+
#: src/_pro/step-item/block.js:116 src/_pro/table-of-contents/block.js:159
|
424 |
#: src/_pro/timeline-item/block.js:99 src/heading-style/block.js:33
|
425 |
#: src/heading/block.js:124 src/list-style/block.js:104 src/staff/block.js:105
|
426 |
msgid "Default"
|
447 |
msgid "Color"
|
448 |
msgstr "色"
|
449 |
|
450 |
+
#: src/_pro/step-item/block.js:86 src/_pro/table-of-contents/block.js:152
|
451 |
#: src/_pro/timeline-item/block.js:69
|
452 |
msgid "Style"
|
453 |
msgstr "スタイル"
|
454 |
|
455 |
+
#: src/_pro/step/block.js:124
|
456 |
msgid "First Dot Number"
|
457 |
msgstr "ステップの開始番号"
|
458 |
|
460 |
msgid "Step"
|
461 |
msgstr "ステップ"
|
462 |
|
463 |
+
#: src/_pro/table-of-contents/TableOfContents.js:175
|
464 |
+
#: src/_pro/table-of-contents/block.js:80
|
465 |
msgid "Table of Contents"
|
466 |
msgstr "目次"
|
467 |
|
468 |
+
#: src/_pro/table-of-contents/block.js:163
|
469 |
msgid "No frame"
|
470 |
msgstr "枠無し"
|
471 |
|
485 |
msgid "Alert"
|
486 |
msgstr "アラート"
|
487 |
|
488 |
+
#: src/balloon/block.js:104
|
489 |
+
msgid "Please select the type of balloon."
|
490 |
+
msgstr "吹き出しのタイプを指定してください。"
|
491 |
+
|
492 |
+
#: src/balloon/block.js:107
|
493 |
+
msgid "Serif"
|
494 |
+
msgstr "セリフ"
|
495 |
+
|
496 |
+
#: src/balloon/block.js:108
|
497 |
+
msgid "Thinking"
|
498 |
+
msgstr "吹き出し"
|
499 |
+
|
500 |
+
#: src/balloon/block.js:152
|
501 |
msgid "Icon Name"
|
502 |
msgstr "アイコンの名前"
|
503 |
|
504 |
+
#: src/balloon/block.js:161 src/button/block.js:250
|
505 |
msgid "Input text"
|
506 |
msgstr "文字を入力"
|
507 |
|
508 |
+
#: src/balloon/block.js:38
|
509 |
msgid "Ballon"
|
510 |
msgstr "フキダシ"
|
511 |
|
512 |
+
#: src/balloon/block.js:88
|
513 |
msgid "Balloon setting"
|
514 |
msgstr "フキダシ設定"
|
515 |
|
516 |
+
#: src/balloon/block.js:90 src/heading/block.js:176
|
517 |
msgid "Position"
|
518 |
msgstr "位置"
|
519 |
|
520 |
+
#: src/balloon/block.js:91
|
521 |
msgid "Please specify the layout of the balloon."
|
522 |
msgstr "吹き出しの配置を指定してください。"
|
523 |
|
524 |
+
#: src/button/block.js:149
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
msgid "Button setting"
|
526 |
msgstr "ボタン設定"
|
527 |
|
528 |
+
#: src/button/block.js:151
|
529 |
msgid "Sub Caption"
|
530 |
msgstr "サブテキスト"
|
531 |
|
532 |
+
#: src/button/block.js:157 src/pr-blocks/block.js:330
|
533 |
+
#: src/pr-content/block.js:138
|
534 |
msgid "Open link new tab."
|
535 |
msgstr "リンクを別ウィンドウで開く"
|
536 |
|
537 |
+
#: src/button/block.js:162
|
538 |
msgid "Button Size:"
|
539 |
msgstr "ボタンサイズ:"
|
540 |
|
541 |
+
#: src/button/block.js:165
|
542 |
msgid "Large"
|
543 |
msgstr "大"
|
544 |
|
545 |
+
#: src/button/block.js:167
|
546 |
msgid "Small"
|
547 |
msgstr "小"
|
548 |
|
549 |
+
#: src/button/block.js:172
|
550 |
msgid "Button Position:"
|
551 |
msgstr "ボタンの位置:"
|
552 |
|
553 |
+
#: src/button/block.js:178
|
554 |
msgid "Block"
|
555 |
msgstr "ブロック(全幅)"
|
556 |
|
557 |
+
#: src/button/block.js:183
|
558 |
msgid "Button Style:"
|
559 |
msgstr "ボタンスタイル:"
|
560 |
|
561 |
+
#: src/button/block.js:186 src/pr-blocks/block.js:361
|
562 |
msgid "Solid color"
|
563 |
msgstr "ベタ塗り"
|
564 |
|
565 |
+
#: src/button/block.js:187 src/pr-blocks/block.js:362
|
566 |
msgid "No background"
|
567 |
msgstr "背景なし"
|
568 |
|
569 |
+
#: src/button/block.js:189
|
570 |
msgid ""
|
571 |
"If you select \"No background\", that you need to select a Custom Color."
|
572 |
msgstr "もし「背景なし」を選択した場合はカスタムカラーで色を指定してください。"
|
573 |
|
574 |
+
#: src/button/block.js:193 src/pr-content/block.js:153
|
575 |
msgid "Default Color:"
|
576 |
msgstr "標準色:"
|
577 |
|
578 |
+
#: src/button/block.js:196 src/pr-content/block.js:156
|
579 |
msgid "Primary"
|
580 |
msgstr "Primary"
|
581 |
|
582 |
+
#: src/button/block.js:197 src/pr-content/block.js:157
|
583 |
msgid "Secondary"
|
584 |
msgstr "Secondary"
|
585 |
|
586 |
+
#: src/button/block.js:198 src/pr-content/block.js:158
|
587 |
msgid "Success"
|
588 |
msgstr "Success"
|
589 |
|
590 |
+
#: src/button/block.js:199 src/pr-content/block.js:159
|
591 |
msgid "Info"
|
592 |
msgstr "Info"
|
593 |
|
594 |
+
#: src/button/block.js:200 src/pr-content/block.js:160
|
595 |
msgid "Warning"
|
596 |
msgstr "Warning"
|
597 |
|
598 |
+
#: src/button/block.js:201 src/pr-content/block.js:161
|
599 |
msgid "Danger"
|
600 |
msgstr "Danger"
|
601 |
|
602 |
+
#: src/button/block.js:202 src/pr-content/block.js:162
|
603 |
msgid "Light"
|
604 |
msgstr "Light"
|
605 |
|
606 |
+
#: src/button/block.js:203 src/pr-content/block.js:163
|
607 |
msgid "Dark"
|
608 |
msgstr "Dark"
|
609 |
|
610 |
+
#: src/button/block.js:208
|
611 |
msgid "Custom Color"
|
612 |
msgstr "カスタムカラー"
|
613 |
|
614 |
+
#: src/button/block.js:209
|
615 |
msgid ""
|
616 |
"This custom color overrides the default color. If you want to use the "
|
617 |
"default color, click the clear button."
|
619 |
"このカスタムカラーはデフォルトのカラーを上書きします。 デフォルトの色を使用し"
|
620 |
"たい場合は、クリアボタンをクリックしてください。"
|
621 |
|
622 |
+
#: src/button/block.js:217 src/pr-content/block.js:174
|
623 |
msgid "Font Awesome:"
|
624 |
msgstr "Font Awesome:"
|
625 |
|
626 |
+
#: src/button/block.js:221 src/pr-content/block.js:178
|
627 |
msgid "Before text"
|
628 |
msgstr "文字の前"
|
629 |
|
630 |
+
#: src/button/block.js:222 src/pr-content/block.js:179
|
631 |
msgid ""
|
632 |
"Enter Font Awesome Class.This icon will appear before text. Ex) fas fa-arrow-"
|
633 |
"circle-right"
|
635 |
"Font Awesome の class 名を入力してください。このアイコンは文字の前に表示され"
|
636 |
"ます。 例) fas fa-arrow-circle-right"
|
637 |
|
638 |
+
#: src/button/block.js:228 src/pr-content/block.js:185
|
639 |
msgid "After text"
|
640 |
msgstr "文字の後"
|
641 |
|
642 |
+
#: src/button/block.js:229 src/pr-content/block.js:186
|
643 |
msgid ""
|
644 |
"Enter Font Awesome Class.This icon will appear after text. Ex) fas fa-"
|
645 |
"external-link-alt"
|
647 |
"Font Awesome の class 名を入力してください。このアイコンは文字の後に表示され"
|
648 |
"ます。 例) fas fa-external-link-alt"
|
649 |
|
650 |
+
#: src/button/block.js:264
|
651 |
msgid "Apply"
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: src/faq/block.js:100
|
655 |
+
msgid "Please enter a answer."
|
656 |
+
msgstr "回答を入力してください。"
|
657 |
+
|
658 |
+
#: src/faq/block.js:56
|
659 |
msgid "FAQ"
|
660 |
msgstr "質問と解答"
|
661 |
|
662 |
+
#: src/faq/block.js:93
|
663 |
msgid "Please enter a question."
|
664 |
msgstr "質問を入力してください。"
|
665 |
|
|
|
|
|
|
|
|
|
666 |
#: src/flow/block.js:28
|
667 |
msgid "Flow"
|
668 |
msgstr "フロー"
|
865 |
msgid "List Icon Color"
|
866 |
msgstr "リストアイコンの色"
|
867 |
|
868 |
+
#: src/pr-blocks/block.js:190
|
869 |
msgid "PR Block1 Setting"
|
870 |
msgstr "PR Block1 設定"
|
871 |
|
872 |
+
#: src/pr-blocks/block.js:205
|
873 |
msgid "Icon 1"
|
874 |
msgstr "アイコン 1"
|
875 |
|
876 |
+
#: src/pr-blocks/block.js:238
|
877 |
msgid "PR Image 1"
|
878 |
msgstr "PR 画像 1"
|
879 |
|
880 |
+
#: src/pr-blocks/block.js:239
|
881 |
msgid "When you have an image. Image is displayed with priority"
|
882 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
883 |
|
884 |
+
#: src/pr-blocks/block.js:256
|
885 |
msgid "PR Block2 Setting"
|
886 |
msgstr "PR Block2 設定"
|
887 |
|
888 |
+
#: src/pr-blocks/block.js:271
|
889 |
msgid "Icon 2"
|
890 |
msgstr "アイコン 2"
|
891 |
|
892 |
+
#: src/pr-blocks/block.js:303
|
893 |
msgid "PR Image 2"
|
894 |
msgstr "PR 画像 2"
|
895 |
|
896 |
+
#: src/pr-blocks/block.js:321
|
897 |
msgid "PR Block3 Setting"
|
898 |
msgstr "PR Block3 設定"
|
899 |
|
900 |
+
#: src/pr-blocks/block.js:323
|
901 |
msgid "Link URL:"
|
902 |
msgstr "リンクURL:"
|
903 |
|
904 |
+
#: src/pr-blocks/block.js:336
|
905 |
msgid "Icon 3"
|
906 |
msgstr "アイコン 3"
|
907 |
|
908 |
+
#: src/pr-blocks/block.js:339
|
909 |
msgid "Class name of the Font Awesome icon font you want to use:"
|
910 |
msgstr "アイコンを使う場合は Font Awesome のアイコンのclass名:"
|
911 |
|
912 |
+
#: src/pr-blocks/block.js:358
|
913 |
msgid "Icon Background:"
|
914 |
msgstr "アイコン背景:"
|
915 |
|
916 |
+
#: src/pr-blocks/block.js:368
|
917 |
msgid "PR Image 3"
|
918 |
msgstr "PR 画像 3"
|
919 |
|
920 |
+
#: src/pr-blocks/block.js:369
|
921 |
msgid "When you have an image. Image is displayed with priority."
|
922 |
msgstr "画像を設定した場合は画像が優先して表示されます。"
|
923 |
|
924 |
+
#: src/pr-blocks/block.js:95
|
925 |
msgid "PR Blocks"
|
926 |
msgstr "PR Blocks"
|
927 |
|
928 |
+
#: src/pr-blocks/component-block.js:164
|
929 |
#: src/pr-blocks/deprecated/component-block.js:144
|
930 |
msgid "Input Title"
|
931 |
msgstr "タイトルを入力"
|
932 |
|
933 |
+
#: src/pr-blocks/component-block.js:171
|
934 |
#: src/pr-blocks/deprecated/component-block.js:151
|
935 |
msgid "Input Content"
|
936 |
msgstr "文章を入力してください"
|
937 |
|
938 |
+
#: src/pr-content/block.js:100
|
939 |
+
msgid "Content Color"
|
940 |
+
msgstr "本文の色"
|
941 |
+
|
942 |
+
#: src/pr-content/block.js:107
|
943 |
msgid "Image Border Color"
|
944 |
msgstr "画像の線の色"
|
945 |
|
946 |
+
#: src/pr-content/block.js:116
|
947 |
msgid "Button Setting"
|
948 |
msgstr "ボタン設定"
|
949 |
|
950 |
+
#: src/pr-content/block.js:120
|
951 |
msgid "Button Text"
|
952 |
msgstr "ボタンの文字"
|
953 |
|
954 |
+
#: src/pr-content/block.js:129
|
955 |
msgid "Link URL"
|
956 |
msgstr "リンクURL"
|
957 |
|
958 |
+
#: src/pr-content/block.js:142
|
959 |
msgid "Button Type"
|
960 |
msgstr "ボタンタイプ"
|
961 |
|
962 |
+
#: src/pr-content/block.js:147
|
963 |
msgid "Ghost"
|
964 |
msgstr "ゴーストボタン"
|
965 |
|
966 |
+
#: src/pr-content/block.js:167
|
967 |
msgid "Button Color"
|
968 |
msgstr "ボタンの色"
|
969 |
|
970 |
+
#: src/pr-content/block.js:198
|
971 |
msgid "Layout Type"
|
972 |
msgstr "レイアウトタイプ"
|
973 |
|
974 |
+
#: src/pr-content/block.js:59
|
975 |
msgid "PR Content"
|
976 |
msgstr "PR Content"
|
977 |
|
978 |
+
#: src/pr-content/block.js:94
|
979 |
msgid "Title Color"
|
980 |
msgstr "見出しの色"
|
981 |
|
982 |
+
#: src/pr-content/component.js:194
|
|
|
|
|
|
|
|
|
983 |
#: src/pr-content/deprecated/component-deprecated.js:122
|
984 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:136
|
985 |
msgid "Input title."
|
986 |
msgstr "タイトルを入力してください。"
|
987 |
|
988 |
+
#: src/pr-content/component.js:202
|
989 |
#: src/pr-content/deprecated/component-deprecated.js:130
|
990 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:144
|
991 |
msgid "Input content."
|
992 |
msgstr "本文を入力してください。"
|
993 |
|
1083 |
msgid "Caption"
|
1084 |
msgstr "キャプション"
|
1085 |
|
1086 |
+
#, fuzzy
|
1087 |
+
#~| msgid "Icon setting"
|
1088 |
+
#~ msgid "Link settings"
|
1089 |
+
#~ msgstr "アイコン設定"
|
1090 |
+
|
1091 |
+
#~ msgid "This block is only for users who bought Lightning Pro."
|
1092 |
+
#~ msgstr "このブロックは Lightning Pro 専用です。"
|
1093 |
+
|
1094 |
#~ msgid "top-bottom-border"
|
1095 |
#~ msgstr "上下線"
|
1096 |
|
1160 |
#~ msgid "Label"
|
1161 |
#~ msgstr "ラベル"
|
1162 |
|
|
|
|
|
|
|
1163 |
#, fuzzy
|
1164 |
#~| msgid "Button Style:"
|
1165 |
#~ msgid "Icon Style:"
|
1226 |
#~ msgid "Use contents area default padding"
|
1227 |
#~ msgstr "コンテンツエリアの左右に標準の余白を使用"
|
1228 |
|
|
|
|
|
|
|
1229 |
#~ msgid "Open url in new window"
|
1230 |
#~ msgstr "リンクを別ウィンドウで開く"
|
1231 |
|
1244 |
|
1245 |
#~ msgid "Width Setting"
|
1246 |
#~ msgstr "幅設定"
|
|
|
|
|
|
inc/vk-blocks/build/languages/vk-blocks.pot
CHANGED
@@ -7,70 +7,79 @@ msgstr ""
|
|
7 |
msgid "Alert"
|
8 |
msgstr ""
|
9 |
|
10 |
-
#: src/balloon/block.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
#: src/flow/block.js:112
|
12 |
#: src/pr-blocks/block.js:179
|
13 |
-
#: src/pr-content/component.js:
|
14 |
#: src/pr-content/deprecated/component-deprecated.js:102
|
15 |
#: src/pr-content/deprecated/component-no-boder-color.js:116
|
16 |
#: src/staff/component.js:88
|
17 |
msgid "Select image"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: src/balloon/block.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
msgid "Balloon setting"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: src/balloon/block.js:
|
25 |
#: src/heading/block.js:176
|
26 |
msgid "Position"
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: src/balloon/block.js:
|
30 |
msgid "Please specify the layout of the balloon."
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: src/balloon/block.js:
|
34 |
#: src/button/block.js:175
|
35 |
#: src/pr-content/block.js:202
|
36 |
msgid "Left"
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: src/balloon/block.js:
|
40 |
#: src/button/block.js:177
|
41 |
#: src/pr-content/block.js:201
|
42 |
msgid "Right"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: src/balloon/block.js:135
|
46 |
-
msgid "Type"
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#: src/balloon/block.js:136
|
50 |
-
msgid "Please select the type of balloon."
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: src/balloon/block.js:139
|
54 |
-
msgid "Serif"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: src/balloon/block.js:140
|
58 |
-
msgid "Thinking"
|
59 |
-
msgstr ""
|
60 |
-
|
61 |
-
#: src/balloon/block.js:161
|
62 |
-
msgid "Icon Name"
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: src/balloon/block.js:170
|
66 |
-
#: src/button/block.js:250
|
67 |
-
msgid "Input text"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: src/balloon/block.js:32
|
71 |
-
msgid "Ballon"
|
72 |
-
msgstr ""
|
73 |
-
|
74 |
#: src/button/block.js:149
|
75 |
msgid "Button setting"
|
76 |
msgstr ""
|
@@ -229,24 +238,16 @@ msgstr ""
|
|
229 |
msgid "Button"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: src/faq/block.js:
|
233 |
-
msgid "
|
234 |
-
msgstr ""
|
235 |
-
|
236 |
-
#: src/faq/block.js:79
|
237 |
-
msgid "Please enter a question."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: src/faq/block.js:
|
241 |
-
msgid "
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: src/
|
245 |
-
|
246 |
-
#: src/pr-content/component.js:149
|
247 |
-
#: src/pr-content/deprecated/component-deprecated.js:106
|
248 |
-
#: src/pr-content/deprecated/component-no-boder-color.js:120
|
249 |
-
msgid "Upload image"
|
250 |
msgstr ""
|
251 |
|
252 |
#: src/flow/block.js:28
|
@@ -601,13 +602,13 @@ msgstr ""
|
|
601 |
msgid "Title Color"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: src/pr-content/component.js:
|
605 |
#: src/pr-content/deprecated/component-deprecated.js:122
|
606 |
#: src/pr-content/deprecated/component-no-boder-color.js:136
|
607 |
msgid "Input title."
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: src/pr-content/component.js:
|
611 |
#: src/pr-content/deprecated/component-deprecated.js:130
|
612 |
#: src/pr-content/deprecated/component-no-boder-color.js:144
|
613 |
msgid "Input content."
|
7 |
msgid "Alert"
|
8 |
msgstr ""
|
9 |
|
10 |
+
#: src/balloon/block.js:103
|
11 |
+
msgid "Type"
|
12 |
+
msgstr ""
|
13 |
+
|
14 |
+
#: src/balloon/block.js:104
|
15 |
+
msgid "Please select the type of balloon."
|
16 |
+
msgstr ""
|
17 |
+
|
18 |
+
#: src/balloon/block.js:107
|
19 |
+
msgid "Serif"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: src/balloon/block.js:108
|
23 |
+
msgid "Thinking"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: src/balloon/block.js:136
|
27 |
#: src/flow/block.js:112
|
28 |
#: src/pr-blocks/block.js:179
|
29 |
+
#: src/pr-content/component.js:157
|
30 |
#: src/pr-content/deprecated/component-deprecated.js:102
|
31 |
#: src/pr-content/deprecated/component-no-boder-color.js:116
|
32 |
#: src/staff/component.js:88
|
33 |
msgid "Select image"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: src/balloon/block.js:141
|
37 |
+
#: src/flow/block.js:113
|
38 |
+
#: src/pr-blocks/block.js:175
|
39 |
+
#: src/pr-content/component.js:164
|
40 |
+
#: src/pr-content/deprecated/component-deprecated.js:106
|
41 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:120
|
42 |
+
msgid "Upload image"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: src/balloon/block.js:152
|
46 |
+
msgid "Icon Name"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: src/balloon/block.js:161
|
50 |
+
#: src/button/block.js:250
|
51 |
+
msgid "Input text"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: src/balloon/block.js:38
|
55 |
+
msgid "Ballon"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: src/balloon/block.js:88
|
59 |
msgid "Balloon setting"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: src/balloon/block.js:90
|
63 |
#: src/heading/block.js:176
|
64 |
msgid "Position"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: src/balloon/block.js:91
|
68 |
msgid "Please specify the layout of the balloon."
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: src/balloon/block.js:97
|
72 |
#: src/button/block.js:175
|
73 |
#: src/pr-content/block.js:202
|
74 |
msgid "Left"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: src/balloon/block.js:98
|
78 |
#: src/button/block.js:177
|
79 |
#: src/pr-content/block.js:201
|
80 |
msgid "Right"
|
81 |
msgstr ""
|
82 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
#: src/button/block.js:149
|
84 |
msgid "Button setting"
|
85 |
msgstr ""
|
238 |
msgid "Button"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: src/faq/block.js:100
|
242 |
+
msgid "Please enter a answer."
|
|
|
|
|
|
|
|
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: src/faq/block.js:56
|
246 |
+
msgid "FAQ"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: src/faq/block.js:93
|
250 |
+
msgid "Please enter a question."
|
|
|
|
|
|
|
|
|
251 |
msgstr ""
|
252 |
|
253 |
#: src/flow/block.js:28
|
602 |
msgid "Title Color"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: src/pr-content/component.js:200
|
606 |
#: src/pr-content/deprecated/component-deprecated.js:122
|
607 |
#: src/pr-content/deprecated/component-no-boder-color.js:136
|
608 |
msgid "Input title."
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: src/pr-content/component.js:208
|
612 |
#: src/pr-content/deprecated/component-deprecated.js:130
|
613 |
#: src/pr-content/deprecated/component-no-boder-color.js:144
|
614 |
msgid "Input content."
|
inc/vk-blocks/build/languages/vk-blocks.pot~1b7af7e9d1f67f60cccba3c52bdf44197a3c0315
ADDED
@@ -0,0 +1,1067 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
4 |
+
"X-Generator: babel-plugin-makepot\n"
|
5 |
+
|
6 |
+
#: src/_helper/font-awesome.js:21
|
7 |
+
msgid "FontAwesome"
|
8 |
+
msgstr ""
|
9 |
+
|
10 |
+
#: src/_helper/font-awesome.js:23
|
11 |
+
msgid "Enter Font Awesome Class. Ex) fas fa-arrow-circle-right "
|
12 |
+
msgstr ""
|
13 |
+
|
14 |
+
#: src/_helper/font-awesome.js:25
|
15 |
+
#: src/button/block.js:218
|
16 |
+
#: src/pr-blocks/block.js:344
|
17 |
+
#: src/pr-content/block.js:175
|
18 |
+
msgid "Font Awesome icon list"
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: src/_helper/post-list.js:191
|
22 |
+
msgid "Filter by PostTypes"
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: src/_helper/post-list.js:194
|
26 |
+
msgid "Filter by Taxonomy Terms"
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: src/_helper/post-list.js:197
|
30 |
+
msgid "Number of Posts"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: src/_helper/post-list.js:269
|
34 |
+
msgid "Exsist Already Page"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: src/_helper/post-list.js:288
|
38 |
+
msgid "Current Page"
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: src/_helper/post-list.js:300
|
42 |
+
msgid "Display conditions"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: src/_helper/post-list.js:303
|
46 |
+
msgid "Parent"
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: src/_helper/post-list.js:319
|
50 |
+
msgid "Display type and columns"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: src/_helper/post-list.js:322
|
54 |
+
msgid "Display type"
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: src/_helper/post-list.js:329
|
58 |
+
msgid "Card"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: src/_helper/post-list.js:333
|
62 |
+
msgid "Card Horizontal"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: src/_helper/post-list.js:337
|
66 |
+
msgid "Media"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: src/_helper/post-list.js:343
|
70 |
+
msgid "Column ( Screen size : Extra small )"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: src/_helper/post-list.js:353
|
74 |
+
msgid "Column ( Screen size : Small )"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: src/_helper/post-list.js:363
|
78 |
+
msgid "Column ( Screen size : Medium )"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: src/_helper/post-list.js:373
|
82 |
+
msgid "Column ( Screen size : Large )"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: src/_helper/post-list.js:383
|
86 |
+
msgid "Column ( Screen size : Extra large )"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: src/_helper/post-list.js:398
|
90 |
+
msgid "Display item"
|
91 |
+
msgstr ""
|
92 |
+
|
93 |
+
#: src/_helper/post-list.js:400
|
94 |
+
msgid "Image"
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: src/_helper/post-list.js:405
|
98 |
+
msgid "Term name"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: src/_helper/post-list.js:412
|
102 |
+
msgid "Excerpt"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: src/_helper/post-list.js:417
|
106 |
+
msgid "Date"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: src/_helper/post-list.js:423
|
110 |
+
msgid "New mark"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: src/_helper/post-list.js:429
|
114 |
+
#: src/button/block.js:59
|
115 |
+
msgid "Button"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: src/_helper/post-list.js:433
|
119 |
+
msgid "New mark option"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: src/_helper/post-list.js:435
|
123 |
+
msgid "Number of days to display the new post mark"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: src/_helper/post-list.js:443
|
127 |
+
msgid "New post mark"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: src/_helper/post-list.js:448
|
131 |
+
msgid "Button option"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: src/_helper/post-list.js:450
|
135 |
+
msgid "Button text"
|
136 |
+
msgstr ""
|
137 |
+
|
138 |
+
#: src/_helper/post-list.js:455
|
139 |
+
msgid "Button align"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: src/_helper/post-list.js:462
|
143 |
+
#: src/balloon/block.js:129
|
144 |
+
#: src/button/block.js:175
|
145 |
+
#: src/pr-content/block.js:202
|
146 |
+
msgid "Left"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: src/_helper/post-list.js:466
|
150 |
+
#: src/button/block.js:176
|
151 |
+
msgid "Center"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: src/_helper/post-list.js:470
|
155 |
+
#: src/balloon/block.js:130
|
156 |
+
#: src/button/block.js:177
|
157 |
+
#: src/pr-content/block.js:201
|
158 |
+
msgid "Right"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: src/_pro/child-page/block.js:37
|
162 |
+
msgid "Child page list"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: src/_pro/outer/block.js:101
|
166 |
+
#: src/pr-content/block.js:91
|
167 |
+
msgid "Color Setting"
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: src/_pro/outer/block.js:102
|
171 |
+
msgid ""
|
172 |
+
"Color will overcome background image. If you want to display image, clear "
|
173 |
+
"background color or set opacity 0."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: src/_pro/outer/block.js:111
|
177 |
+
msgid "Opacity Setting"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: src/_pro/outer/block.js:123
|
181 |
+
msgid "Background Image"
|
182 |
+
msgstr ""
|
183 |
+
|
184 |
+
#: src/_pro/outer/block.js:135
|
185 |
+
#: src/balloon/block.js:111
|
186 |
+
#: src/flow/block.js:112
|
187 |
+
#: src/pr-blocks/block.js:179
|
188 |
+
#: src/pr-content/component.js:144
|
189 |
+
#: src/pr-content/deprecated/component-deprecated.js:102
|
190 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:116
|
191 |
+
#: src/staff/component.js:88
|
192 |
+
msgid "Select image"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: src/_pro/outer/block.js:137
|
196 |
+
#: src/flow/block.js:113
|
197 |
+
#: src/pr-blocks/block.js:175
|
198 |
+
#: src/pr-content/component.js:149
|
199 |
+
#: src/pr-content/deprecated/component-deprecated.js:106
|
200 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:120
|
201 |
+
msgid "Upload image"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: src/_pro/outer/block.js:144
|
205 |
+
msgid "Background image Position"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: src/_pro/outer/block.js:151
|
209 |
+
#: src/button/block.js:166
|
210 |
+
msgid "normal"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: src/_pro/outer/block.js:152
|
214 |
+
msgid "Fixed"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: src/_pro/outer/block.js:153
|
218 |
+
msgid "Parallax (It will not work in preview)"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: src/_pro/outer/block.js:161
|
222 |
+
#: src/pr-content/block.js:194
|
223 |
+
msgid "Layout Setting"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: src/_pro/outer/block.js:166
|
227 |
+
msgid "Outer width"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: src/_pro/outer/block.js:169
|
231 |
+
msgid "Normal"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: src/_pro/outer/block.js:170
|
235 |
+
msgid "Full Wide"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: src/_pro/outer/block.js:175
|
239 |
+
msgid "Contents area padding (left and right)"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: src/_pro/outer/block.js:179
|
243 |
+
msgid "Do not use padding"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: src/_pro/outer/block.js:183
|
247 |
+
msgid "Use padding"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: src/_pro/outer/block.js:190
|
251 |
+
msgid "Padding (top and bottom)"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: src/_pro/outer/block.js:193
|
255 |
+
msgid "Use default padding"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: src/_pro/outer/block.js:195
|
259 |
+
msgid "Do not use default padding (Set it yourself using a spacer block etc.)."
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: src/_pro/outer/block.js:204
|
263 |
+
msgid "Divider Setting"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: src/_pro/outer/block.js:209
|
267 |
+
#: src/balloon/block.js:135
|
268 |
+
msgid "Type"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: src/_pro/outer/block.js:215
|
272 |
+
msgid "Tilt"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: src/_pro/outer/block.js:219
|
276 |
+
msgid "Curve"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: src/_pro/outer/block.js:223
|
280 |
+
msgid "Wave"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: src/_pro/outer/block.js:227
|
284 |
+
#: src/list-style/block.js:113
|
285 |
+
msgid "Triangle"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: src/_pro/outer/block.js:233
|
289 |
+
msgid "Upper Divider Level"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: src/_pro/outer/block.js:249
|
293 |
+
msgid "Lower Divider Level"
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: src/_pro/outer/block.js:266
|
297 |
+
msgid "Border Setting"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: src/_pro/outer/block.js:272
|
301 |
+
msgid "Border will disappear when divider effect is applied."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: src/_pro/outer/block.js:274
|
305 |
+
msgid "Border type"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: src/_pro/outer/block.js:280
|
309 |
+
#: src/_pro/step-item/block.js:120
|
310 |
+
#: src/_pro/timeline-item/block.js:103
|
311 |
+
#: src/staff/block.js:109
|
312 |
+
msgid "None"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: src/_pro/outer/block.js:284
|
316 |
+
#: src/_pro/step-item/block.js:97
|
317 |
+
#: src/_pro/timeline-item/block.js:84
|
318 |
+
#: src/group-style/block.js:95
|
319 |
+
#: src/pr-content/block.js:146
|
320 |
+
msgid "Solid"
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: src/_pro/outer/block.js:288
|
324 |
+
#: src/group-style/block.js:103
|
325 |
+
msgid "Dotted"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: src/_pro/outer/block.js:292
|
329 |
+
#: src/group-style/block.js:107
|
330 |
+
msgid "Dashed"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: src/_pro/outer/block.js:296
|
334 |
+
#: src/group-style/block.js:111
|
335 |
+
msgid "Double"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: src/_pro/outer/block.js:300
|
339 |
+
msgid "Groove"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: src/_pro/outer/block.js:304
|
343 |
+
msgid "Ridge"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: src/_pro/outer/block.js:308
|
347 |
+
msgid "Inset"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: src/_pro/outer/block.js:312
|
351 |
+
msgid "Outset"
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: src/_pro/outer/block.js:324
|
355 |
+
msgid "Border width"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: src/_pro/outer/block.js:333
|
359 |
+
msgid "Border radius"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: src/_pro/outer/block.js:352
|
363 |
+
#: src/_pro/table-of-contents/block.js:178
|
364 |
+
msgid "This block is only for users who bought Lightning Pro."
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: src/_pro/outer/block.js:44
|
368 |
+
msgid "Outer"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: src/_pro/outer/block.js:97
|
372 |
+
msgid "Background Setting"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: src/_pro/post-list/block.js:53
|
376 |
+
msgid "Post list"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: src/_pro/step-item/block.js:101
|
380 |
+
#: src/_pro/timeline-item/block.js:80
|
381 |
+
msgid "Outlined"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: src/_pro/step-item/block.js:116
|
385 |
+
#: src/_pro/table-of-contents/block.js:160
|
386 |
+
#: src/_pro/timeline-item/block.js:99
|
387 |
+
#: src/heading-style/block.js:33
|
388 |
+
#: src/heading/block.js:124
|
389 |
+
#: src/list-style/block.js:104
|
390 |
+
#: src/staff/block.js:105
|
391 |
+
msgid "Default"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: src/_pro/step-item/block.js:33
|
395 |
+
msgid "Step Item"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: src/_pro/step-item/block.js:58
|
399 |
+
msgid "Step Mark"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: src/_pro/step-item/block.js:61
|
403 |
+
msgid "If FontAwesome class entered, it will overrides the number."
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: src/_pro/step-item/block.js:75
|
407 |
+
#: src/_pro/timeline-item/block.js:60
|
408 |
+
msgid "Ex,6:00AM"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: src/_pro/step-item/block.js:80
|
412 |
+
#: src/_pro/timeline-item/block.js:63
|
413 |
+
#: src/staff/block.js:124
|
414 |
+
msgid "Color"
|
415 |
+
msgstr ""
|
416 |
+
|
417 |
+
#: src/_pro/step-item/block.js:86
|
418 |
+
#: src/_pro/table-of-contents/block.js:153
|
419 |
+
#: src/_pro/timeline-item/block.js:69
|
420 |
+
msgid "Style"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: src/_pro/step/block.js:121
|
424 |
+
msgid "First Dot Number"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: src/_pro/step/block.js:53
|
428 |
+
msgid "Step"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: src/_pro/table-of-contents/TableOfContents.js:175
|
432 |
+
#: src/_pro/table-of-contents/block.js:80
|
433 |
+
msgid "Table of Contents"
|
434 |
+
msgstr ""
|
435 |
+
|
436 |
+
#: src/_pro/table-of-contents/block.js:164
|
437 |
+
msgid "No frame"
|
438 |
+
msgstr ""
|
439 |
+
|
440 |
+
#: src/_pro/timeline-item/block.js:31
|
441 |
+
msgid "Timeline Item"
|
442 |
+
msgstr ""
|
443 |
+
|
444 |
+
#: src/_pro/timeline-item/block.js:56
|
445 |
+
msgid "label"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#: src/_pro/timeline/block.js:54
|
449 |
+
msgid "Timeline"
|
450 |
+
msgstr ""
|
451 |
+
|
452 |
+
#: src/alert/block.js:14
|
453 |
+
msgid "Alert"
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: src/balloon/block.js:123
|
457 |
+
msgid "Balloon setting"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: src/balloon/block.js:125
|
461 |
+
#: src/heading/block.js:176
|
462 |
+
msgid "Position"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: src/balloon/block.js:126
|
466 |
+
msgid "Please specify the layout of the balloon."
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: src/balloon/block.js:136
|
470 |
+
msgid "Please select the type of balloon."
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: src/balloon/block.js:139
|
474 |
+
msgid "Serif"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: src/balloon/block.js:140
|
478 |
+
msgid "Thinking"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: src/balloon/block.js:161
|
482 |
+
msgid "Icon Name"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: src/balloon/block.js:170
|
486 |
+
#: src/button/block.js:250
|
487 |
+
msgid "Input text"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: src/balloon/block.js:32
|
491 |
+
msgid "Ballon"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: src/button/block.js:149
|
495 |
+
msgid "Button setting"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: src/button/block.js:151
|
499 |
+
msgid "Sub Caption"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: src/button/block.js:157
|
503 |
+
#: src/pr-blocks/block.js:330
|
504 |
+
#: src/pr-content/block.js:138
|
505 |
+
msgid "Open link new tab."
|
506 |
+
msgstr ""
|
507 |
+
|
508 |
+
#: src/button/block.js:162
|
509 |
+
msgid "Button Size:"
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: src/button/block.js:165
|
513 |
+
msgid "Large"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: src/button/block.js:167
|
517 |
+
msgid "Small"
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: src/button/block.js:172
|
521 |
+
msgid "Button Position:"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: src/button/block.js:178
|
525 |
+
msgid "Block"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: src/button/block.js:183
|
529 |
+
msgid "Button Style:"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: src/button/block.js:186
|
533 |
+
#: src/pr-blocks/block.js:361
|
534 |
+
msgid "Solid color"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: src/button/block.js:187
|
538 |
+
#: src/pr-blocks/block.js:362
|
539 |
+
msgid "No background"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: src/button/block.js:189
|
543 |
+
msgid "If you select \"No background\", that you need to select a Custom Color."
|
544 |
+
msgstr ""
|
545 |
+
|
546 |
+
#: src/button/block.js:193
|
547 |
+
#: src/pr-content/block.js:153
|
548 |
+
msgid "Default Color:"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: src/button/block.js:196
|
552 |
+
#: src/pr-content/block.js:156
|
553 |
+
msgid "Primary"
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: src/button/block.js:197
|
557 |
+
#: src/pr-content/block.js:157
|
558 |
+
msgid "Secondary"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: src/button/block.js:198
|
562 |
+
#: src/pr-content/block.js:158
|
563 |
+
msgid "Success"
|
564 |
+
msgstr ""
|
565 |
+
|
566 |
+
#: src/button/block.js:199
|
567 |
+
#: src/pr-content/block.js:159
|
568 |
+
msgid "Info"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: src/button/block.js:200
|
572 |
+
#: src/pr-content/block.js:160
|
573 |
+
msgid "Warning"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: src/button/block.js:201
|
577 |
+
#: src/pr-content/block.js:161
|
578 |
+
msgid "Danger"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: src/button/block.js:202
|
582 |
+
#: src/pr-content/block.js:162
|
583 |
+
msgid "Light"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: src/button/block.js:203
|
587 |
+
#: src/pr-content/block.js:163
|
588 |
+
msgid "Dark"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: src/button/block.js:208
|
592 |
+
msgid "Custom Color"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: src/button/block.js:209
|
596 |
+
msgid ""
|
597 |
+
"This custom color overrides the default color. If you want to use the "
|
598 |
+
"default color, click the clear button."
|
599 |
+
msgstr ""
|
600 |
+
|
601 |
+
#: src/button/block.js:217
|
602 |
+
#: src/pr-content/block.js:174
|
603 |
+
msgid "Font Awesome:"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: src/button/block.js:221
|
607 |
+
#: src/pr-content/block.js:178
|
608 |
+
msgid "Before text"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: src/button/block.js:222
|
612 |
+
#: src/pr-content/block.js:179
|
613 |
+
msgid ""
|
614 |
+
"Enter Font Awesome Class.This icon will appear before text. Ex) fas "
|
615 |
+
"fa-arrow-circle-right"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: src/button/block.js:228
|
619 |
+
#: src/pr-content/block.js:185
|
620 |
+
msgid "After text"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: src/button/block.js:229
|
624 |
+
#: src/pr-content/block.js:186
|
625 |
+
msgid ""
|
626 |
+
"Enter Font Awesome Class.This icon will appear after text. Ex) fas "
|
627 |
+
"fa-external-link-alt"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: src/button/block.js:264
|
631 |
+
msgid "Apply"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: src/faq/block.js:100
|
635 |
+
msgid "Please enter a answer."
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: src/faq/block.js:56
|
639 |
+
msgid "FAQ"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#: src/faq/block.js:93
|
643 |
+
msgid "Please enter a question."
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: src/flow/block.js:28
|
647 |
+
msgid "Flow"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: src/flow/block.js:71
|
651 |
+
msgid "Display of arrow"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: src/flow/block.js:75
|
655 |
+
msgid "Arrow display"
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: src/flow/block.js:76
|
659 |
+
msgid "Arrow hidden"
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: src/flow/block.js:91
|
663 |
+
msgid "Input title"
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: src/flow/block.js:98
|
667 |
+
msgid "Input content"
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: src/group-style/block.js:115
|
671 |
+
msgid "Stitch"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: src/group-style/block.js:119
|
675 |
+
msgid "Border Top Bottom"
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: src/group-style/block.js:123
|
679 |
+
msgid "Shadow"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: src/group-style/block.js:50
|
683 |
+
msgid "Border Color"
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: src/group-style/block.js:99
|
687 |
+
msgid "Solid Roundcorner"
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: src/heading-style/block.js:102
|
691 |
+
msgid "Dotted border bottom black"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: src/heading-style/block.js:106
|
695 |
+
msgid "Both ends"
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: src/heading-style/block.js:126
|
699 |
+
msgid "Brackets black"
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: src/heading-style/block.js:38
|
703 |
+
#: src/heading/block.js:125
|
704 |
+
msgid "Plain"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: src/heading-style/block.js:54
|
708 |
+
msgid "Background fill lightgray"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: src/heading-style/block.js:70
|
712 |
+
msgid "Double border top and bottom black"
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: src/heading-style/block.js:78
|
716 |
+
msgid "Double border bottom black"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: src/heading-style/block.js:86
|
720 |
+
msgid "Solid border top and bottom black"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: src/heading-style/block.js:94
|
724 |
+
msgid "Solid border bottom black"
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: src/heading/block.js:118
|
728 |
+
msgid "Style Settings"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: src/heading/block.js:120
|
732 |
+
msgid "Heading style"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: src/heading/block.js:128
|
736 |
+
msgid "Margin bottom size (rem)"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: src/heading/block.js:139
|
740 |
+
msgid "Heading Settings"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: src/heading/block.js:140
|
744 |
+
msgid "Level"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: src/heading/block.js:142
|
748 |
+
msgid "Text Alignment"
|
749 |
+
msgstr ""
|
750 |
+
|
751 |
+
#: src/heading/block.js:159
|
752 |
+
msgid "Heading margin bottom size (rem)"
|
753 |
+
msgstr ""
|
754 |
+
|
755 |
+
#: src/heading/block.js:174
|
756 |
+
msgid "Sub Text Settings"
|
757 |
+
msgstr ""
|
758 |
+
|
759 |
+
#: src/heading/block.js:179
|
760 |
+
msgid "Display"
|
761 |
+
msgstr ""
|
762 |
+
|
763 |
+
#: src/heading/block.js:180
|
764 |
+
msgid "Hide"
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
#: src/heading/block.js:184
|
768 |
+
msgid "Text size (rem)"
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: src/heading/block.js:65
|
772 |
+
msgid "Heading"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: src/heading/component.js:106
|
776 |
+
msgid "Input sub text…"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: src/heading/component.js:89
|
780 |
+
msgid "Input title…"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: src/heading/heading-toolbar.js:17
|
784 |
+
#. %s: heading level e.g: "1", "2", "3"
|
785 |
+
msgid "Heading %d"
|
786 |
+
msgstr ""
|
787 |
+
|
788 |
+
#: src/highlighter/block.js:81
|
789 |
+
msgid "Highlight Color"
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: src/highlighter/block.js:93
|
793 |
+
msgid "Highlighter"
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
#: src/image/block.js:10
|
797 |
+
msgid "Photo frame"
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#: src/image/block.js:6
|
801 |
+
msgid "Border"
|
802 |
+
msgstr ""
|
803 |
+
|
804 |
+
#: src/list-style/block.js:109
|
805 |
+
msgid "Arrow"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: src/list-style/block.js:117
|
809 |
+
msgid "Check"
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#: src/list-style/block.js:121
|
813 |
+
msgid "Check Square"
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
+
#: src/list-style/block.js:125
|
817 |
+
msgid "Check Circle"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: src/list-style/block.js:129
|
821 |
+
msgid "Handpoint"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: src/list-style/block.js:133
|
825 |
+
msgid "Pencil"
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: src/list-style/block.js:137
|
829 |
+
msgid "Smile"
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: src/list-style/block.js:141
|
833 |
+
msgid "Frown"
|
834 |
+
msgstr ""
|
835 |
+
|
836 |
+
#: src/list-style/block.js:145
|
837 |
+
msgid "Numbered Circle"
|
838 |
+
msgstr ""
|
839 |
+
|
840 |
+
#: src/list-style/block.js:149
|
841 |
+
msgid "Numbered Square"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: src/list-style/block.js:58
|
845 |
+
msgid "List Icon Color"
|
846 |
+
msgstr ""
|
847 |
+
|
848 |
+
#: src/pr-blocks/block.js:190
|
849 |
+
msgid "PR Block1 Setting"
|
850 |
+
msgstr ""
|
851 |
+
|
852 |
+
#: src/pr-blocks/block.js:205
|
853 |
+
msgid "Icon 1"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: src/pr-blocks/block.js:238
|
857 |
+
msgid "PR Image 1"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: src/pr-blocks/block.js:239
|
861 |
+
msgid "When you have an image. Image is displayed with priority"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: src/pr-blocks/block.js:256
|
865 |
+
msgid "PR Block2 Setting"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: src/pr-blocks/block.js:271
|
869 |
+
msgid "Icon 2"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: src/pr-blocks/block.js:303
|
873 |
+
msgid "PR Image 2"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: src/pr-blocks/block.js:321
|
877 |
+
msgid "PR Block3 Setting"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: src/pr-blocks/block.js:323
|
881 |
+
msgid "Link URL:"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: src/pr-blocks/block.js:336
|
885 |
+
msgid "Icon 3"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: src/pr-blocks/block.js:339
|
889 |
+
msgid "Class name of the Font Awesome icon font you want to use:"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: src/pr-blocks/block.js:358
|
893 |
+
msgid "Icon Background:"
|
894 |
+
msgstr ""
|
895 |
+
|
896 |
+
#: src/pr-blocks/block.js:368
|
897 |
+
msgid "PR Image 3"
|
898 |
+
msgstr ""
|
899 |
+
|
900 |
+
#: src/pr-blocks/block.js:369
|
901 |
+
msgid "When you have an image. Image is displayed with priority."
|
902 |
+
msgstr ""
|
903 |
+
|
904 |
+
#: src/pr-blocks/block.js:95
|
905 |
+
msgid "PR Blocks"
|
906 |
+
msgstr ""
|
907 |
+
|
908 |
+
#: src/pr-blocks/component-block.js:164
|
909 |
+
#: src/pr-blocks/deprecated/component-block.js:144
|
910 |
+
msgid "Input Title"
|
911 |
+
msgstr ""
|
912 |
+
|
913 |
+
#: src/pr-blocks/component-block.js:171
|
914 |
+
#: src/pr-blocks/deprecated/component-block.js:151
|
915 |
+
msgid "Input Content"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: src/pr-content/block.js:100
|
919 |
+
msgid "Content Color"
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: src/pr-content/block.js:107
|
923 |
+
msgid "Image Border Color"
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: src/pr-content/block.js:116
|
927 |
+
msgid "Button Setting"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: src/pr-content/block.js:120
|
931 |
+
msgid "Button Text"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: src/pr-content/block.js:129
|
935 |
+
msgid "Link URL"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: src/pr-content/block.js:142
|
939 |
+
msgid "Button Type"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: src/pr-content/block.js:147
|
943 |
+
msgid "Ghost"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: src/pr-content/block.js:167
|
947 |
+
msgid "Button Color"
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
+
#: src/pr-content/block.js:198
|
951 |
+
msgid "Layout Type"
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: src/pr-content/block.js:59
|
955 |
+
msgid "PR Content"
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: src/pr-content/block.js:94
|
959 |
+
msgid "Title Color"
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: src/pr-content/component.js:179
|
963 |
+
#: src/pr-content/deprecated/component-deprecated.js:122
|
964 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:136
|
965 |
+
msgid "Input title."
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: src/pr-content/component.js:187
|
969 |
+
#: src/pr-content/deprecated/component-deprecated.js:130
|
970 |
+
#: src/pr-content/deprecated/component-no-boder-color.js:144
|
971 |
+
msgid "Input content."
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: src/spacer/block.js:103
|
975 |
+
msgid "Tablet"
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: src/spacer/block.js:109
|
979 |
+
msgid "Mobile"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: src/spacer/block.js:41
|
983 |
+
msgid "Responsive Spacer"
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: src/spacer/block.js:73
|
987 |
+
msgid "Unit Type"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: src/spacer/block.js:79
|
991 |
+
msgid "px"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: src/spacer/block.js:83
|
995 |
+
msgid "em"
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
+
#: src/spacer/block.js:87
|
999 |
+
msgid "rem"
|
1000 |
+
msgstr ""
|
1001 |
+
|
1002 |
+
#: src/spacer/block.js:91
|
1003 |
+
msgid "vw"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: src/spacer/block.js:95
|
1007 |
+
msgid "Height for each device."
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: src/spacer/block.js:97
|
1011 |
+
msgid "PC"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: src/staff/block.js:114
|
1015 |
+
msgid "Alt text"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: src/staff/block.js:116
|
1019 |
+
msgid "Set the alt text for profile image"
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: src/staff/block.js:126
|
1023 |
+
msgid "Staff name"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: src/staff/block.js:134
|
1027 |
+
msgid "Name caption"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: src/staff/block.js:142
|
1031 |
+
#: src/staff/component.js:58
|
1032 |
+
msgid "Role position"
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: src/staff/block.js:150
|
1036 |
+
#: src/staff/component.js:66
|
1037 |
+
msgid "Profile title"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: src/staff/block.js:158
|
1041 |
+
#: src/staff/component.js:74
|
1042 |
+
msgid "Profile text"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: src/staff/block.js:54
|
1046 |
+
msgid "Staff"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: src/staff/block.js:82
|
1050 |
+
msgid "Layout"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: src/staff/block.js:93
|
1054 |
+
msgid "Image left"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: src/staff/block.js:98
|
1058 |
+
msgid "Image border"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: src/staff/component.js:42
|
1062 |
+
msgid "Your Name"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: src/staff/component.js:50
|
1066 |
+
msgid "Caption"
|
1067 |
+
msgstr ""
|
inc/vk-blocks/load-vk-components.php
CHANGED
@@ -2,6 +2,12 @@
|
|
2 |
// Boostrapの読み込み
|
3 |
function vkblocks_load_vk_components( $hook_suffix ) {
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
wp_register_style( 'vk-components-style', VK_BLOCKS_URL . '/build/vk-components.css', false );
|
6 |
|
7 |
// 管理画面
|
2 |
// Boostrapの読み込み
|
3 |
function vkblocks_load_vk_components( $hook_suffix ) {
|
4 |
|
5 |
+
$template = wp_get_theme()->Template;
|
6 |
+
// lightning 系(ベクトル)の場合 vk-components はテーマなどで読み込むので必要ない
|
7 |
+
if ( $template == 'lightning' || $template == 'lightning-pro' ) {
|
8 |
+
return;
|
9 |
+
}
|
10 |
+
|
11 |
wp_register_style( 'vk-components-style', VK_BLOCKS_URL . '/build/vk-components.css', false );
|
12 |
|
13 |
// 管理画面
|
inc/vk-blocks/view/post-list.php
CHANGED
@@ -12,21 +12,23 @@ class VkBlocksPostList {
|
|
12 |
*/
|
13 |
public function render_post_list( $attributes ) {
|
14 |
|
15 |
-
|
16 |
-
if( empty( $attributes['name'])){
|
17 |
-
$name = 'vk-blocks/post-list';
|
18 |
-
} else {
|
19 |
-
$name = esc_html( $attributes['name'] );
|
20 |
-
}
|
21 |
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
}
|
28 |
|
29 |
-
if ( $wp_query === false || $wp_query->posts === array() ) {
|
30 |
return $this->renderNoPost();
|
31 |
}
|
32 |
|
@@ -45,14 +47,13 @@ class VkBlocksPostList {
|
|
45 |
'new_date' => esc_html( $attributes['new_date'] ),
|
46 |
'btn_text' => esc_html( $attributes['btn_text'] ),
|
47 |
'btn_align' => esc_html( $attributes['btn_align'] ),
|
48 |
-
'class_outer' =>
|
49 |
'class_title' => '',
|
50 |
'body_prepend' => '',
|
51 |
'body_append' => '',
|
52 |
);
|
53 |
|
54 |
-
$
|
55 |
-
$elm = VK_Component_Posts::get_loop( $wp_query, $options, $options_loop );
|
56 |
|
57 |
wp_reset_query();
|
58 |
wp_reset_postdata();
|
@@ -111,7 +112,7 @@ class VkBlocksPostList {
|
|
111 |
public function get_loop_query_child( $attributes ) {
|
112 |
|
113 |
// ParentIdを指定
|
114 |
-
if ( isset( $attributes['selectId'] ) ) {
|
115 |
$args = array(
|
116 |
'post_type' => 'page',
|
117 |
'paged' => 0,
|
12 |
*/
|
13 |
public function render_post_list( $attributes ) {
|
14 |
|
15 |
+
if ( isset( $attributes['name'] ) ) {
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
+
$name = esc_html( $attributes['name'] );
|
18 |
+
if ( $name === 'vk-blocks/child-page' ) {
|
19 |
+
$wp_query = $this->get_loop_query_child( $attributes );
|
20 |
+
$options_loop = array( 'class_loop_outer' => 'vk_childPage' );
|
21 |
|
22 |
+
} elseif ( $name === 'vk-blocks/post-list' ) {
|
23 |
+
$wp_query = $this->get_loop_query( $attributes );
|
24 |
+
$options_loop = array( 'class_loop_outer' => 'vk_postList' );
|
25 |
+
}
|
26 |
+
} else {
|
27 |
+
$wp_query = $this->get_loop_query( $attributes );
|
28 |
+
$options_loop = array( 'class_loop_outer' => '' );
|
29 |
}
|
30 |
|
31 |
+
if ( $wp_query === false || $wp_query === 'false' || $wp_query->posts === array() ) {
|
32 |
return $this->renderNoPost();
|
33 |
}
|
34 |
|
47 |
'new_date' => esc_html( $attributes['new_date'] ),
|
48 |
'btn_text' => esc_html( $attributes['btn_text'] ),
|
49 |
'btn_align' => esc_html( $attributes['btn_align'] ),
|
50 |
+
'class_outer' => VK_Component_Posts::get_col_size_classes( $attributes ),
|
51 |
'class_title' => '',
|
52 |
'body_prepend' => '',
|
53 |
'body_append' => '',
|
54 |
);
|
55 |
|
56 |
+
$elm = VK_Component_Posts::get_loop( $wp_query, $options, $options_loop );
|
|
|
57 |
|
58 |
wp_reset_query();
|
59 |
wp_reset_postdata();
|
112 |
public function get_loop_query_child( $attributes ) {
|
113 |
|
114 |
// ParentIdを指定
|
115 |
+
if ( isset( $attributes['selectId'] ) && $attributes['selectId'] !== 'false' ) {
|
116 |
$args = array(
|
117 |
'post_type' => 'page',
|
118 |
'paged' => 0,
|
inc/vk-blocks/vk-blocks-functions.php
CHANGED
@@ -1,13 +1,42 @@
|
|
1 |
<?php
|
2 |
|
3 |
-
|
4 |
-
require_once
|
5 |
|
6 |
function vkblocks_active() {
|
7 |
return true;
|
8 |
}
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
function vkblocks_blocks_assets() {
|
|
|
11 |
wp_register_style( 'vk-blocks-build-css', VK_BLOCKS_URL . 'build/block-build.css', array(), VK_BLOCKS_VERSION );
|
12 |
wp_register_style( 'vk-blocks-build-editor-css', VK_BLOCKS_URL . 'build/block-build-editor.css', array(), VK_BLOCKS_VERSION );
|
13 |
|
@@ -29,7 +58,11 @@ function vkblocks_blocks_assets() {
|
|
29 |
);
|
30 |
}
|
31 |
wp_register_script(
|
32 |
-
'vk-blocks-build-js',
|
|
|
|
|
|
|
|
|
33 |
);
|
34 |
|
35 |
if ( function_exists( 'wp_set_script_translations' ) ) {
|
@@ -49,27 +82,28 @@ function vkblocks_blocks_assets() {
|
|
49 |
|
50 |
if ( defined( 'GUTENBERG_VERSION' ) || version_compare( $wp_version, '5.0', '>=' ) ) {
|
51 |
|
52 |
-
$arr = array( 'alert', 'balloon', 'button', 'faq', 'flow', 'pr-blocks', 'pr-content', 'spacer', 'heading', 'staff', 'highlighter', 'list-style', 'group-style'
|
53 |
|
54 |
foreach ( $arr as $value ) {
|
55 |
|
56 |
if ( $value === 'table-of-contents' ) {
|
57 |
|
58 |
register_block_type(
|
59 |
-
'vk-blocks/' . $value,
|
60 |
-
|
|
|
61 |
'editor_style' => 'vk-blocks-build-editor-css',
|
62 |
'editor_script' => 'vk-blocks-build-js',
|
63 |
-
'attributes' =>
|
64 |
-
'style' =>
|
65 |
'type' => 'string',
|
66 |
'default' => '',
|
67 |
-
|
68 |
-
'renderHtml' =>
|
69 |
'type' => 'string',
|
70 |
'default' => '',
|
71 |
-
|
72 |
-
|
73 |
'render_callback' => function ( $attributes ) {
|
74 |
return $attributes['renderHtml'];
|
75 |
},
|
@@ -82,10 +116,11 @@ function vkblocks_blocks_assets() {
|
|
82 |
} elseif ( $value == 'post-list' ) {
|
83 |
|
84 |
register_block_type(
|
85 |
-
'vk-blocks/' . $value,
|
|
|
86 |
'attributes' => array(
|
87 |
-
'name'
|
88 |
-
'type'
|
89 |
),
|
90 |
'layout' => array(
|
91 |
'type' => 'string',
|
@@ -121,11 +156,11 @@ function vkblocks_blocks_assets() {
|
|
121 |
),
|
122 |
'display_excerpt' => array(
|
123 |
'type' => 'boolean',
|
124 |
-
'default' =>
|
125 |
),
|
126 |
'display_date' => array(
|
127 |
'type' => 'boolean',
|
128 |
-
'default' =>
|
129 |
),
|
130 |
'display_new' => array(
|
131 |
'type' => 'boolean',
|
@@ -168,7 +203,7 @@ function vkblocks_blocks_assets() {
|
|
168 |
'default' => '[]',
|
169 |
),
|
170 |
),
|
171 |
-
'style' => 'vk-blocks-build-css',
|
172 |
'editor_style' => 'vk-blocks-build-editor-css',
|
173 |
'editor_script' => 'vk-blocks-build-js',
|
174 |
'render_callback' => 'vk_blocks_render_post_list',
|
@@ -177,39 +212,41 @@ function vkblocks_blocks_assets() {
|
|
177 |
} elseif ( $value == 'child-page' ) {
|
178 |
|
179 |
register_block_type(
|
180 |
-
'vk-blocks/' . $value,
|
|
|
181 |
'attributes' => array(
|
182 |
-
'selectId'
|
183 |
-
'type'
|
184 |
),
|
185 |
-
'name'
|
186 |
'type' => 'string',
|
|
|
187 |
),
|
188 |
-
'layout'
|
189 |
'type' => 'string',
|
190 |
-
'default' => 'card',
|
191 |
),
|
192 |
-
'col_xs'
|
193 |
'type' => 'number',
|
194 |
'default' => 1,
|
195 |
),
|
196 |
-
'col_sm'
|
197 |
'type' => 'number',
|
198 |
'default' => 2,
|
199 |
),
|
200 |
-
'col_md'
|
201 |
'type' => 'number',
|
202 |
-
'default' =>
|
203 |
),
|
204 |
-
'col_lg'
|
205 |
'type' => 'number',
|
206 |
-
'default' =>
|
207 |
),
|
208 |
-
'col_xl'
|
209 |
'type' => 'number',
|
210 |
-
'default' =>
|
211 |
),
|
212 |
-
'display_image'
|
213 |
'type' => 'boolean',
|
214 |
'default' => true,
|
215 |
),
|
@@ -217,56 +254,56 @@ function vkblocks_blocks_assets() {
|
|
217 |
'type' => 'boolean',
|
218 |
'default' => true,
|
219 |
),
|
220 |
-
'display_excerpt'
|
221 |
'type' => 'boolean',
|
222 |
'default' => true,
|
223 |
),
|
224 |
-
'display_date'
|
225 |
'type' => 'boolean',
|
226 |
'default' => false,
|
227 |
),
|
228 |
-
'display_new'
|
229 |
'type' => 'boolean',
|
230 |
-
'default' =>
|
231 |
),
|
232 |
-
'display_btn'
|
233 |
'type' => 'boolean',
|
234 |
'default' => true,
|
235 |
),
|
236 |
-
'new_date'
|
237 |
'type' => 'number',
|
238 |
'default' => 7,
|
239 |
),
|
240 |
-
'new_text'
|
241 |
'type' => 'string',
|
242 |
'default' => 'New!!',
|
243 |
),
|
244 |
-
'btn_text'
|
245 |
'type' => 'string',
|
246 |
'default' => 'Read more',
|
247 |
),
|
248 |
-
'btn_align'
|
249 |
'type' => 'string',
|
250 |
'default' => 'text-right',
|
251 |
),
|
252 |
-
'numberPosts'
|
253 |
'type' => 'number',
|
254 |
'default' => 6,
|
255 |
),
|
256 |
-
'isCheckedPostType'
|
257 |
'type' => 'string',
|
258 |
'default' => '["post"]',
|
259 |
),
|
260 |
-
'coreTerms'
|
261 |
'type' => 'string',
|
262 |
'default' => '{}',
|
263 |
),
|
264 |
-
'isCheckedTerms'
|
265 |
'type' => 'string',
|
266 |
'default' => '[]',
|
267 |
),
|
268 |
),
|
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',
|
@@ -275,8 +312,9 @@ function vkblocks_blocks_assets() {
|
|
275 |
} else {
|
276 |
|
277 |
register_block_type(
|
278 |
-
'vk-blocks/' . $value,
|
279 |
-
|
|
|
280 |
'editor_style' => 'vk-blocks-build-editor-css',
|
281 |
'editor_script' => 'vk-blocks-build-js',
|
282 |
)
|
1 |
<?php
|
2 |
|
3 |
+
// サーバーサイドレンダリングスクリプトを読み込み。
|
4 |
+
require_once dirname( __FILE__ ) . '/view/post-list.php';
|
5 |
|
6 |
function vkblocks_active() {
|
7 |
return true;
|
8 |
}
|
9 |
|
10 |
+
/*
|
11 |
+
Load css
|
12 |
+
---------------------------------------------------------- */
|
13 |
+
if ( ! function_exists( 'vkblocks_add_styles' ) ) {
|
14 |
+
function vkblocks_add_styles() {
|
15 |
+
wp_enqueue_style( 'vk-blocks-build-css' );
|
16 |
+
};
|
17 |
+
}
|
18 |
+
// Load css at footer
|
19 |
+
if ( ! function_exists( 'vkblocks_enqueue_point' ) ) {
|
20 |
+
function vkblocks_enqueue_point() {
|
21 |
+
$hook_point = apply_filters( 'vkblocks_enqueue_point', 'wp_enqueue_scripts' );
|
22 |
+
// Front css
|
23 |
+
add_action( $hook_point, 'vkblocks_add_styles' );
|
24 |
+
|
25 |
+
// Admin css
|
26 |
+
if ( is_admin() ) {
|
27 |
+
add_action( 'enqueue_block_assets', 'vkblocks_add_styles' );
|
28 |
+
}
|
29 |
+
};
|
30 |
+
}
|
31 |
+
|
32 |
+
/**
|
33 |
+
* Reason of Using through the after_setup_theme is
|
34 |
+
* to be able to change the action hook point of css load from theme..
|
35 |
+
*/
|
36 |
+
add_action( 'after_setup_theme', 'vkblocks_enqueue_point' );
|
37 |
+
|
38 |
function vkblocks_blocks_assets() {
|
39 |
+
|
40 |
wp_register_style( 'vk-blocks-build-css', VK_BLOCKS_URL . 'build/block-build.css', array(), VK_BLOCKS_VERSION );
|
41 |
wp_register_style( 'vk-blocks-build-editor-css', VK_BLOCKS_URL . 'build/block-build-editor.css', array(), VK_BLOCKS_VERSION );
|
42 |
|
58 |
);
|
59 |
}
|
60 |
wp_register_script(
|
61 |
+
'vk-blocks-build-js',
|
62 |
+
VK_BLOCKS_URL . 'build/block-build.js',
|
63 |
+
$dependency,
|
64 |
+
VK_BLOCKS_VERSION,
|
65 |
+
true
|
66 |
);
|
67 |
|
68 |
if ( function_exists( 'wp_set_script_translations' ) ) {
|
82 |
|
83 |
if ( defined( 'GUTENBERG_VERSION' ) || version_compare( $wp_version, '5.0', '>=' ) ) {
|
84 |
|
85 |
+
$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]を使っています。
|
86 |
|
87 |
foreach ( $arr as $value ) {
|
88 |
|
89 |
if ( $value === 'table-of-contents' ) {
|
90 |
|
91 |
register_block_type(
|
92 |
+
'vk-blocks/' . $value,
|
93 |
+
array(
|
94 |
+
// 'style' => 'vk-blocks-build-css',
|
95 |
'editor_style' => 'vk-blocks-build-editor-css',
|
96 |
'editor_script' => 'vk-blocks-build-js',
|
97 |
+
'attributes' => array(
|
98 |
+
'style' => array(
|
99 |
'type' => 'string',
|
100 |
'default' => '',
|
101 |
+
),
|
102 |
+
'renderHtml' => array(
|
103 |
'type' => 'string',
|
104 |
'default' => '',
|
105 |
+
),
|
106 |
+
),
|
107 |
'render_callback' => function ( $attributes ) {
|
108 |
return $attributes['renderHtml'];
|
109 |
},
|
116 |
} elseif ( $value == 'post-list' ) {
|
117 |
|
118 |
register_block_type(
|
119 |
+
'vk-blocks/' . $value,
|
120 |
+
array(
|
121 |
'attributes' => array(
|
122 |
+
'name' => array(
|
123 |
+
'type' => 'string',
|
124 |
),
|
125 |
'layout' => array(
|
126 |
'type' => 'string',
|
156 |
),
|
157 |
'display_excerpt' => array(
|
158 |
'type' => 'boolean',
|
159 |
+
'default' => false,
|
160 |
),
|
161 |
'display_date' => array(
|
162 |
'type' => 'boolean',
|
163 |
+
'default' => true,
|
164 |
),
|
165 |
'display_new' => array(
|
166 |
'type' => 'boolean',
|
203 |
'default' => '[]',
|
204 |
),
|
205 |
),
|
206 |
+
// 'style' => 'vk-blocks-build-css',
|
207 |
'editor_style' => 'vk-blocks-build-editor-css',
|
208 |
'editor_script' => 'vk-blocks-build-js',
|
209 |
'render_callback' => 'vk_blocks_render_post_list',
|
212 |
} elseif ( $value == 'child-page' ) {
|
213 |
|
214 |
register_block_type(
|
215 |
+
'vk-blocks/' . $value,
|
216 |
+
array(
|
217 |
'attributes' => array(
|
218 |
+
'selectId' => array(
|
219 |
+
'type' => 'number',
|
220 |
),
|
221 |
+
'name' => array(
|
222 |
'type' => 'string',
|
223 |
+
'default' => '',
|
224 |
),
|
225 |
+
'layout' => array(
|
226 |
'type' => 'string',
|
227 |
+
'default' => 'card-horizontal',
|
228 |
),
|
229 |
+
'col_xs' => array(
|
230 |
'type' => 'number',
|
231 |
'default' => 1,
|
232 |
),
|
233 |
+
'col_sm' => array(
|
234 |
'type' => 'number',
|
235 |
'default' => 2,
|
236 |
),
|
237 |
+
'col_md' => array(
|
238 |
'type' => 'number',
|
239 |
+
'default' => 2,
|
240 |
),
|
241 |
+
'col_lg' => array(
|
242 |
'type' => 'number',
|
243 |
+
'default' => 2,
|
244 |
),
|
245 |
+
'col_xl' => array(
|
246 |
'type' => 'number',
|
247 |
+
'default' => 2,
|
248 |
),
|
249 |
+
'display_image' => array(
|
250 |
'type' => 'boolean',
|
251 |
'default' => true,
|
252 |
),
|
254 |
'type' => 'boolean',
|
255 |
'default' => true,
|
256 |
),
|
257 |
+
'display_excerpt' => array(
|
258 |
'type' => 'boolean',
|
259 |
'default' => true,
|
260 |
),
|
261 |
+
'display_date' => array(
|
262 |
'type' => 'boolean',
|
263 |
'default' => false,
|
264 |
),
|
265 |
+
'display_new' => array(
|
266 |
'type' => 'boolean',
|
267 |
+
'default' => false,
|
268 |
),
|
269 |
+
'display_btn' => array(
|
270 |
'type' => 'boolean',
|
271 |
'default' => true,
|
272 |
),
|
273 |
+
'new_date' => array(
|
274 |
'type' => 'number',
|
275 |
'default' => 7,
|
276 |
),
|
277 |
+
'new_text' => array(
|
278 |
'type' => 'string',
|
279 |
'default' => 'New!!',
|
280 |
),
|
281 |
+
'btn_text' => array(
|
282 |
'type' => 'string',
|
283 |
'default' => 'Read more',
|
284 |
),
|
285 |
+
'btn_align' => array(
|
286 |
'type' => 'string',
|
287 |
'default' => 'text-right',
|
288 |
),
|
289 |
+
'numberPosts' => array(
|
290 |
'type' => 'number',
|
291 |
'default' => 6,
|
292 |
),
|
293 |
+
'isCheckedPostType' => array(
|
294 |
'type' => 'string',
|
295 |
'default' => '["post"]',
|
296 |
),
|
297 |
+
'coreTerms' => array(
|
298 |
'type' => 'string',
|
299 |
'default' => '{}',
|
300 |
),
|
301 |
+
'isCheckedTerms' => array(
|
302 |
'type' => 'string',
|
303 |
'default' => '[]',
|
304 |
),
|
305 |
),
|
306 |
+
// 'style' => 'vk-blocks-build-css',
|
307 |
'editor_style' => 'vk-blocks-build-editor-css',
|
308 |
'editor_script' => 'vk-blocks-build-js',
|
309 |
'render_callback' => 'vk_blocks_render_post_list',
|
312 |
} else {
|
313 |
|
314 |
register_block_type(
|
315 |
+
'vk-blocks/' . $value,
|
316 |
+
array(
|
317 |
+
// 'style' => 'vk-blocks-build-css',
|
318 |
'editor_style' => 'vk-blocks-build-editor-css',
|
319 |
'editor_script' => 'vk-blocks-build-js',
|
320 |
)
|
inc/vk-components/package/_scss/_vk-post.scss
CHANGED
@@ -1,16 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
/* Bootstrap Adjuster */
|
2 |
-
$border_primary
|
3 |
-
$color_font_default
|
4 |
|
5 |
-
$xs-max:575.98px;
|
6 |
-
$sm-max:767.98px;
|
7 |
-
$md-max:991.98px;
|
8 |
-
$lg-max:1199.98px;
|
9 |
|
10 |
-
$sm-min:576px;
|
11 |
-
$md-min:768px;
|
12 |
-
$lg-min:992px;
|
13 |
-
$xl-min:1200px;
|
14 |
|
15 |
/*-------------------------------------------*/
|
16 |
/* vk_post Layout
|
@@ -23,74 +29,117 @@ $xl-min:1200px;
|
|
23 |
/*-------------------------------------------*/
|
24 |
/* .card
|
25 |
/*-------------------------------------------*/
|
|
|
|
|
26 |
/* .media new type
|
27 |
/*-------------------------------------------*/
|
28 |
/* .media old type ( Lightning Default )
|
29 |
/*-------------------------------------------*/
|
30 |
|
31 |
-
|
32 |
/*-------------------------------------------*/
|
33 |
/* vk_post Layout
|
34 |
/*-------------------------------------------*/
|
35 |
/* If exclude the .vk_posts that, when you select the .media don't work */
|
36 |
.vk_posts .vk_post-col {
|
37 |
-
&-xs-3 {
|
38 |
-
|
39 |
-
|
40 |
-
&-xs-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
}
|
65 |
}
|
66 |
|
67 |
/*-------------------------------------------*/
|
68 |
/* vk_post common style
|
69 |
/*-------------------------------------------*/
|
70 |
-
.vk_posts{
|
71 |
-
margin-bottom:2em;
|
72 |
-
margin-left
|
73 |
-
margin-right
|
74 |
display: flex;
|
75 |
flex-wrap: wrap;
|
|
|
76 |
}
|
77 |
-
.vk_post{
|
78 |
-
margin-left:15px;
|
79 |
-
margin-right:15px;
|
80 |
a:hover {
|
81 |
text-decoration: none;
|
82 |
}
|
83 |
&_imgOuter {
|
84 |
position: relative;
|
85 |
a {
|
86 |
-
display:block;
|
|
|
87 |
}
|
88 |
-
&_singleTermLabel{
|
89 |
font-size: 10px;
|
90 |
padding: 0.3em 0.8em;
|
91 |
position: absolute;
|
92 |
-
right:0;
|
93 |
-
top:0;
|
94 |
z-index: 100;
|
95 |
}
|
96 |
}
|
@@ -98,16 +147,16 @@ $xl-min:1200px;
|
|
98 |
font-size: 14px;
|
99 |
line-height: 1.4;
|
100 |
font-weight: bold;
|
101 |
-
margin-bottom:0;
|
102 |
a {
|
103 |
-
color
|
104 |
}
|
105 |
}
|
106 |
&_title_new {
|
107 |
margin-left: 0.4em;
|
108 |
-
font-size:0.8em;
|
109 |
white-space: nowrap;
|
110 |
-
color:red;
|
111 |
}
|
112 |
& &_excerpt {
|
113 |
margin-top: 0.8em;
|
@@ -116,12 +165,13 @@ $xl-min:1200px;
|
|
116 |
opacity: 0.8;
|
117 |
}
|
118 |
& &_date {
|
119 |
-
font-size:11px;
|
120 |
margin-top: 0.5em;
|
121 |
-
color
|
122 |
}
|
123 |
-
& &_btn{
|
124 |
-
font-size:12px;
|
|
|
125 |
}
|
126 |
/*
|
127 |
Basicly wright to without .vk_post.
|
@@ -133,26 +183,27 @@ $xl-min:1200px;
|
|
133 |
box-sizing: border-box;
|
134 |
max-width: 100%;
|
135 |
.vk_post_btnOuter {
|
136 |
-
width: calc(
|
137 |
}
|
138 |
}
|
139 |
&.media {
|
140 |
-
width:100%;
|
141 |
padding: 1em 0;
|
142 |
-
margin:0 15px;
|
143 |
-
border-bottom
|
144 |
}
|
145 |
}
|
146 |
|
147 |
/*-------------------------------------------*/
|
148 |
/* image effect
|
149 |
/*-------------------------------------------*/
|
150 |
-
.vk_post{
|
151 |
&_imgOuter {
|
152 |
position: relative;
|
153 |
background-size: cover;
|
154 |
background-position: center 50%;
|
155 |
-
|
|
|
156 |
content: "";
|
157 |
position: absolute;
|
158 |
top: 0;
|
@@ -162,51 +213,50 @@ $xl-min:1200px;
|
|
162 |
background: rgba(0, 0, 0, 0);
|
163 |
transition-duration: 0.3s;
|
164 |
}
|
165 |
-
:hover::after{
|
166 |
background: rgba(0, 0, 0, 0.5);
|
167 |
}
|
168 |
a {
|
169 |
-
height:100%;
|
170 |
}
|
171 |
&_img {
|
172 |
position: absolute;
|
173 |
left: -9999px;
|
174 |
}
|
175 |
}
|
176 |
-
&:not(.card-horizontal){
|
177 |
.vk_post_imgOuter {
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
}
|
184 |
}
|
185 |
}
|
186 |
&.card-horizontal {
|
187 |
.vk_post_imgOuter {
|
188 |
-
height:100%;
|
|
|
189 |
}
|
190 |
}
|
191 |
}
|
192 |
|
193 |
-
|
194 |
/*-------------------------------------------*/
|
195 |
/* Button display
|
196 |
/*-------------------------------------------*/
|
197 |
.vk_post-btn-display {
|
198 |
.vk_post_body {
|
199 |
position: relative;
|
200 |
-
height:100%;
|
201 |
}
|
202 |
.vk_post_btnOuter {
|
203 |
-
margin-top:1em;
|
204 |
position: absolute;
|
205 |
-
bottom:0;
|
206 |
}
|
207 |
&.media {
|
208 |
.vk_post_body {
|
209 |
-
padding-bottom:45px;
|
210 |
}
|
211 |
.vk_post_btnOuter {
|
212 |
width: 100%;
|
@@ -214,20 +264,23 @@ $xl-min:1200px;
|
|
214 |
}
|
215 |
&.card {
|
216 |
.vk_post_body {
|
217 |
-
padding-bottom:65px;
|
218 |
}
|
219 |
.vk_post_btnOuter {
|
220 |
-
width: calc(
|
221 |
-
bottom:1.25rem
|
222 |
}
|
223 |
}
|
|
|
|
|
|
|
224 |
}
|
225 |
|
226 |
/*-------------------------------------------*/
|
227 |
/* Main section 1 column adjustment
|
228 |
/*-------------------------------------------*/
|
229 |
.mainSection .vk_post.vk_post-col-sm-12 {
|
230 |
-
@media (
|
231 |
.vk_post_title {
|
232 |
font-size: 16px;
|
233 |
}
|
@@ -236,7 +289,9 @@ $xl-min:1200px;
|
|
236 |
}
|
237 |
&.media {
|
238 |
padding: 1.5rem 0;
|
239 |
-
&:first-child {
|
|
|
|
|
240 |
.media-img {
|
241 |
margin-right: 1.4rem;
|
242 |
}
|
@@ -244,7 +299,7 @@ $xl-min:1200px;
|
|
244 |
}
|
245 |
}
|
246 |
.mainSection .vk_post.vk_post-col-md-12 {
|
247 |
-
@media (
|
248 |
.vk_post_title {
|
249 |
font-size: 18px;
|
250 |
}
|
@@ -254,7 +309,7 @@ $xl-min:1200px;
|
|
254 |
}
|
255 |
}
|
256 |
.mainSection .vk_post.vk_post-col-lg-12 {
|
257 |
-
@media (
|
258 |
.vk_post_title {
|
259 |
font-size: 18px;
|
260 |
}
|
@@ -270,7 +325,7 @@ $xl-min:1200px;
|
|
270 |
}
|
271 |
}
|
272 |
.mainSection .vk_post.vk_post-col-xl-12 {
|
273 |
-
@media (
|
274 |
.vk_post_title {
|
275 |
font-size: 21px;
|
276 |
}
|
@@ -284,8 +339,12 @@ $xl-min:1200px;
|
|
284 |
.vk_post.vk_post-col-md-12,
|
285 |
.vk_post.vk_post-col-lg-12,
|
286 |
.vk_post.vk_post-col-xl-12 {
|
287 |
-
.vk_post_title {
|
288 |
-
|
|
|
|
|
|
|
|
|
289 |
}
|
290 |
}
|
291 |
|
@@ -294,15 +353,12 @@ $xl-min:1200px;
|
|
294 |
/*-------------------------------------------*/
|
295 |
.card {
|
296 |
overflow: hidden;
|
297 |
-
|
298 |
-
&.card-noborder {
|
299 |
-
border: none;
|
300 |
-
}
|
301 |
&-meta {
|
302 |
-
font-size:12px;
|
303 |
}
|
304 |
&-img-use-bg {
|
305 |
-
position:relative;
|
306 |
left: -9999px;
|
307 |
}
|
308 |
a {
|
@@ -310,34 +366,74 @@ $xl-min:1200px;
|
|
310 |
}
|
311 |
}
|
312 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
/*-------------------------------------------*/
|
314 |
/* 1カラム カード の時の下部の余白を小さく変更
|
315 |
/*-------------------------------------------*/
|
316 |
.card.vk_post-col {
|
317 |
-
@media (
|
318 |
-
&-xs-12 {
|
|
|
|
|
319 |
}
|
320 |
-
@media (
|
321 |
-
&-sm-12 {
|
|
|
|
|
322 |
}
|
323 |
-
@media (
|
324 |
-
&-md-12 {
|
|
|
|
|
325 |
}
|
326 |
-
@media (
|
327 |
-
&-lg-12 {
|
|
|
|
|
328 |
}
|
329 |
-
@media (
|
330 |
-
&-xl-12 {
|
|
|
|
|
331 |
}
|
332 |
}
|
333 |
|
|
|
|
|
|
|
334 |
.card-horizontal {
|
335 |
&-inner {
|
336 |
height: 100%;
|
337 |
&::after {
|
338 |
content: "";
|
339 |
-
|
340 |
-
|
341 |
}
|
342 |
&-row {
|
343 |
height: 100%;
|
@@ -348,30 +444,30 @@ $xl-min:1200px;
|
|
348 |
flex-direction: row-reverse;
|
349 |
}
|
350 |
}
|
351 |
-
&-reverse{
|
352 |
.row {
|
353 |
flex-direction: row-reverse;
|
354 |
// text-align: right;
|
355 |
}
|
356 |
}
|
357 |
.card-body {
|
358 |
-
height:100%;
|
359 |
}
|
360 |
}
|
361 |
|
362 |
-
.card-sm{
|
363 |
.card-body {
|
364 |
padding: 1rem 1.2rem;
|
365 |
}
|
366 |
.card-title {
|
367 |
-
font-size:0.8rem;
|
368 |
}
|
369 |
-
.card-text{
|
370 |
-
font-size:0.8rem;
|
371 |
line-height: 1.4;
|
372 |
}
|
373 |
.card-meta {
|
374 |
-
font-size:0.7rem;
|
375 |
line-height: 1.1;
|
376 |
}
|
377 |
}
|
@@ -386,55 +482,66 @@ $xl-min:1200px;
|
|
386 |
/* .media new type
|
387 |
/*-------------------------------------------*/
|
388 |
.media {
|
389 |
-
&:first-child {
|
|
|
|
|
390 |
&-img {
|
391 |
-
border
|
392 |
padding: 1px;
|
393 |
margin-right: 1rem;
|
394 |
}
|
395 |
.vk_post &-img {
|
396 |
-
width:35%;
|
397 |
}
|
398 |
.vk_post &-body {
|
399 |
-
width:65%;
|
400 |
}
|
401 |
-
|
402 |
}
|
403 |
/* border-top control */
|
404 |
.media.vk_post-col {
|
405 |
&-xs-6:first-child,
|
406 |
-
&-xs-6:nth-child(2) {
|
407 |
-
|
|
|
|
|
408 |
&-sm-6:nth-child(2),
|
409 |
&-sm-4:nth-child(2),
|
410 |
&-sm-4:nth-child(3),
|
411 |
&-sm-3:nth-child(2),
|
412 |
&-sm-3:nth-child(3),
|
413 |
-
&-sm-3:nth-child(4) {
|
|
|
|
|
414 |
}
|
415 |
-
@media (
|
416 |
&-md-6:nth-child(2),
|
417 |
&-md-4:nth-child(2),
|
418 |
&-md-4:nth-child(3),
|
419 |
&-md-3:nth-child(2),
|
420 |
&-md-3:nth-child(3),
|
421 |
-
&-md-3:nth-child(4) {
|
|
|
|
|
422 |
}
|
423 |
-
@media (
|
424 |
&-lg-6:nth-child(2),
|
425 |
&-lg-4:nth-child(2),
|
426 |
&-lg-4:nth-child(3),
|
427 |
&-lg-3:nth-child(2),
|
428 |
&-lg-3:nth-child(3),
|
429 |
-
&-lg-3:nth-child(4) {
|
|
|
|
|
430 |
}
|
431 |
-
@media (
|
432 |
&-xl-6:nth-child(2),
|
433 |
&-xl-4:nth-child(2),
|
434 |
&-xl-4:nth-child(3),
|
435 |
&-xl-3:nth-child(2),
|
436 |
&-xl-3:nth-child(3),
|
437 |
-
&-xl-3:nth-child(4) {
|
|
|
|
|
438 |
}
|
439 |
}
|
440 |
|
@@ -442,44 +549,93 @@ $xl-min:1200px;
|
|
442 |
/* .media old type ( Lightning Default )
|
443 |
/*-------------------------------------------*/
|
444 |
|
445 |
-
.media {
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
|
457 |
-
|
458 |
-
|
459 |
-
font-size:20px;
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
472 |
}
|
473 |
-
@media (max-width: 767px){
|
474 |
-
.media {
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
480 |
} // @media (max-width: 767px){
|
481 |
-
@media (max-width: 500px){
|
482 |
-
.media {
|
483 |
-
|
484 |
-
|
|
|
|
|
485 |
} // @media (max-width: 767px){
|
1 |
+
/*
|
2 |
+
このファイルの元ファイルは
|
3 |
+
https://github.com/vektor-inc/vektor-wp-libraries
|
4 |
+
にあります。修正の際は上記リポジトリのデータを修正してください。
|
5 |
+
*/
|
6 |
+
|
7 |
/* Bootstrap Adjuster */
|
8 |
+
$border_primary: 1px solid #e5e5e5;
|
9 |
+
$color_font_default: #464646;
|
10 |
|
11 |
+
$xs-max: 575.98px;
|
12 |
+
$sm-max: 767.98px;
|
13 |
+
$md-max: 991.98px;
|
14 |
+
$lg-max: 1199.98px;
|
15 |
|
16 |
+
$sm-min: 576px;
|
17 |
+
$md-min: 768px;
|
18 |
+
$lg-min: 992px;
|
19 |
+
$xl-min: 1200px;
|
20 |
|
21 |
/*-------------------------------------------*/
|
22 |
/* vk_post Layout
|
29 |
/*-------------------------------------------*/
|
30 |
/* .card
|
31 |
/*-------------------------------------------*/
|
32 |
+
/* .card-noborder
|
33 |
+
/*-------------------------------------------*/
|
34 |
/* .media new type
|
35 |
/*-------------------------------------------*/
|
36 |
/* .media old type ( Lightning Default )
|
37 |
/*-------------------------------------------*/
|
38 |
|
|
|
39 |
/*-------------------------------------------*/
|
40 |
/* vk_post Layout
|
41 |
/*-------------------------------------------*/
|
42 |
/* If exclude the .vk_posts that, when you select the .media don't work */
|
43 |
.vk_posts .vk_post-col {
|
44 |
+
&-xs-3 {
|
45 |
+
width: calc(25% - 30px);
|
46 |
+
}
|
47 |
+
&-xs-4 {
|
48 |
+
width: calc(33.3% - 30px);
|
49 |
+
}
|
50 |
+
&-xs-6 {
|
51 |
+
width: calc(50% - 30px);
|
52 |
+
}
|
53 |
+
&-xs-12 {
|
54 |
+
width: calc(100% - 30px);
|
55 |
+
}
|
56 |
+
@media (min-width: $sm-min) {
|
57 |
+
&-sm-3 {
|
58 |
+
width: calc(25% - 30px);
|
59 |
+
}
|
60 |
+
&-sm-4 {
|
61 |
+
width: calc(33.3% - 30px);
|
62 |
+
}
|
63 |
+
&-sm-6 {
|
64 |
+
width: calc(50% - 30px);
|
65 |
+
}
|
66 |
+
&-sm-12 {
|
67 |
+
width: calc(100% - 30px);
|
68 |
+
}
|
69 |
+
}
|
70 |
+
@media (min-width: $md-min) {
|
71 |
+
&-md-3 {
|
72 |
+
width: calc(25% - 30px);
|
73 |
+
}
|
74 |
+
&-md-4 {
|
75 |
+
width: calc(33.3% - 30px);
|
76 |
+
}
|
77 |
+
&-md-6 {
|
78 |
+
width: calc(50% - 30px);
|
79 |
+
}
|
80 |
+
&-md-12 {
|
81 |
+
width: calc(100% - 30px);
|
82 |
+
}
|
83 |
+
}
|
84 |
+
@media (min-width: $lg-min) {
|
85 |
+
&-lg-3 {
|
86 |
+
width: calc(25% - 30px);
|
87 |
+
}
|
88 |
+
&-lg-4 {
|
89 |
+
width: calc(33.3% - 30px);
|
90 |
+
}
|
91 |
+
&-lg-6 {
|
92 |
+
width: calc(50% - 30px);
|
93 |
+
}
|
94 |
+
&-lg-12 {
|
95 |
+
width: calc(100% - 30px);
|
96 |
+
}
|
97 |
+
}
|
98 |
+
@media (min-width: $xl-min) {
|
99 |
+
&-xl-3 {
|
100 |
+
width: calc(25% - 30px);
|
101 |
+
}
|
102 |
+
&-xl-4 {
|
103 |
+
width: calc(33.3% - 30px);
|
104 |
+
}
|
105 |
+
&-xl-6 {
|
106 |
+
width: calc(50% - 30px);
|
107 |
+
}
|
108 |
+
&-xl-12 {
|
109 |
+
width: calc(100% - 30px);
|
110 |
+
}
|
111 |
}
|
112 |
}
|
113 |
|
114 |
/*-------------------------------------------*/
|
115 |
/* vk_post common style
|
116 |
/*-------------------------------------------*/
|
117 |
+
.vk_posts {
|
118 |
+
margin-bottom: 2em;
|
119 |
+
margin-left: -15px;
|
120 |
+
margin-right: -15px;
|
121 |
display: flex;
|
122 |
flex-wrap: wrap;
|
123 |
+
clear: both; /* To be cope with inline image float and so on. */
|
124 |
}
|
125 |
+
.vk_post {
|
126 |
+
margin-left: 15px;
|
127 |
+
margin-right: 15px;
|
128 |
a:hover {
|
129 |
text-decoration: none;
|
130 |
}
|
131 |
&_imgOuter {
|
132 |
position: relative;
|
133 |
a {
|
134 |
+
display: block;
|
135 |
+
overflow: hidden;
|
136 |
}
|
137 |
+
&_singleTermLabel {
|
138 |
font-size: 10px;
|
139 |
padding: 0.3em 0.8em;
|
140 |
position: absolute;
|
141 |
+
right: 0;
|
142 |
+
top: 0;
|
143 |
z-index: 100;
|
144 |
}
|
145 |
}
|
147 |
font-size: 14px;
|
148 |
line-height: 1.4;
|
149 |
font-weight: bold;
|
150 |
+
margin-bottom: 0;
|
151 |
a {
|
152 |
+
color: #333;
|
153 |
}
|
154 |
}
|
155 |
&_title_new {
|
156 |
margin-left: 0.4em;
|
157 |
+
font-size: 0.8em;
|
158 |
white-space: nowrap;
|
159 |
+
color: red;
|
160 |
}
|
161 |
& &_excerpt {
|
162 |
margin-top: 0.8em;
|
165 |
opacity: 0.8;
|
166 |
}
|
167 |
& &_date {
|
168 |
+
font-size: 11px;
|
169 |
margin-top: 0.5em;
|
170 |
+
color: #666;
|
171 |
}
|
172 |
+
& &_btn {
|
173 |
+
font-size: 12px;
|
174 |
+
text-decoration: none;
|
175 |
}
|
176 |
/*
|
177 |
Basicly wright to without .vk_post.
|
183 |
box-sizing: border-box;
|
184 |
max-width: 100%;
|
185 |
.vk_post_btnOuter {
|
186 |
+
width: calc(100% - 2.5rem);
|
187 |
}
|
188 |
}
|
189 |
&.media {
|
190 |
+
width: 100%;
|
191 |
padding: 1em 0;
|
192 |
+
margin: 0 15px;
|
193 |
+
border-bottom: $border_primary;
|
194 |
}
|
195 |
}
|
196 |
|
197 |
/*-------------------------------------------*/
|
198 |
/* image effect
|
199 |
/*-------------------------------------------*/
|
200 |
+
.vk_post {
|
201 |
&_imgOuter {
|
202 |
position: relative;
|
203 |
background-size: cover;
|
204 |
background-position: center 50%;
|
205 |
+
border-bottom: $border_primary;
|
206 |
+
::after {
|
207 |
content: "";
|
208 |
position: absolute;
|
209 |
top: 0;
|
213 |
background: rgba(0, 0, 0, 0);
|
214 |
transition-duration: 0.3s;
|
215 |
}
|
216 |
+
.card-img-overlay:hover::after {
|
217 |
background: rgba(0, 0, 0, 0.5);
|
218 |
}
|
219 |
a {
|
220 |
+
height: 100%;
|
221 |
}
|
222 |
&_img {
|
223 |
position: absolute;
|
224 |
left: -9999px;
|
225 |
}
|
226 |
}
|
227 |
+
&:not(.card-horizontal) {
|
228 |
.vk_post_imgOuter {
|
229 |
+
&:before {
|
230 |
+
content: "";
|
231 |
+
display: block;
|
232 |
+
padding-top: 62%;
|
233 |
+
}
|
|
|
234 |
}
|
235 |
}
|
236 |
&.card-horizontal {
|
237 |
.vk_post_imgOuter {
|
238 |
+
height: 100%;
|
239 |
+
border-bottom: none;
|
240 |
}
|
241 |
}
|
242 |
}
|
243 |
|
|
|
244 |
/*-------------------------------------------*/
|
245 |
/* Button display
|
246 |
/*-------------------------------------------*/
|
247 |
.vk_post-btn-display {
|
248 |
.vk_post_body {
|
249 |
position: relative;
|
250 |
+
height: 100%;
|
251 |
}
|
252 |
.vk_post_btnOuter {
|
253 |
+
margin-top: 1em;
|
254 |
position: absolute;
|
255 |
+
bottom: 0;
|
256 |
}
|
257 |
&.media {
|
258 |
.vk_post_body {
|
259 |
+
padding-bottom: 45px;
|
260 |
}
|
261 |
.vk_post_btnOuter {
|
262 |
width: 100%;
|
264 |
}
|
265 |
&.card {
|
266 |
.vk_post_body {
|
267 |
+
padding-bottom: 65px;
|
268 |
}
|
269 |
.vk_post_btnOuter {
|
270 |
+
width: calc(100% - 2.5rem);
|
271 |
+
bottom: 1.25rem;
|
272 |
}
|
273 |
}
|
274 |
+
.card-text:nth-last-child(2) {
|
275 |
+
margin-bottom: 0;
|
276 |
+
}
|
277 |
}
|
278 |
|
279 |
/*-------------------------------------------*/
|
280 |
/* Main section 1 column adjustment
|
281 |
/*-------------------------------------------*/
|
282 |
.mainSection .vk_post.vk_post-col-sm-12 {
|
283 |
+
@media (min-width: $sm-min) {
|
284 |
.vk_post_title {
|
285 |
font-size: 16px;
|
286 |
}
|
289 |
}
|
290 |
&.media {
|
291 |
padding: 1.5rem 0;
|
292 |
+
&:first-child {
|
293 |
+
border-top: $border_primary;
|
294 |
+
}
|
295 |
.media-img {
|
296 |
margin-right: 1.4rem;
|
297 |
}
|
299 |
}
|
300 |
}
|
301 |
.mainSection .vk_post.vk_post-col-md-12 {
|
302 |
+
@media (min-width: $md-min) {
|
303 |
.vk_post_title {
|
304 |
font-size: 18px;
|
305 |
}
|
309 |
}
|
310 |
}
|
311 |
.mainSection .vk_post.vk_post-col-lg-12 {
|
312 |
+
@media (min-width: $lg-min) {
|
313 |
.vk_post_title {
|
314 |
font-size: 18px;
|
315 |
}
|
325 |
}
|
326 |
}
|
327 |
.mainSection .vk_post.vk_post-col-xl-12 {
|
328 |
+
@media (min-width: $xl-min) {
|
329 |
.vk_post_title {
|
330 |
font-size: 21px;
|
331 |
}
|
339 |
.vk_post.vk_post-col-md-12,
|
340 |
.vk_post.vk_post-col-lg-12,
|
341 |
.vk_post.vk_post-col-xl-12 {
|
342 |
+
.vk_post_title {
|
343 |
+
font-size: 1rem;
|
344 |
+
}
|
345 |
+
.vk_post_excerpt {
|
346 |
+
font-size: 12px;
|
347 |
+
}
|
348 |
}
|
349 |
}
|
350 |
|
353 |
/*-------------------------------------------*/
|
354 |
.card {
|
355 |
overflow: hidden;
|
356 |
+
box-shadow: none;
|
|
|
|
|
|
|
357 |
&-meta {
|
358 |
+
font-size: 12px;
|
359 |
}
|
360 |
&-img-use-bg {
|
361 |
+
position: relative;
|
362 |
left: -9999px;
|
363 |
}
|
364 |
a {
|
366 |
}
|
367 |
}
|
368 |
|
369 |
+
/*-------------------------------------------*/
|
370 |
+
/* .card-noborder
|
371 |
+
/*-------------------------------------------*/
|
372 |
+
.card-noborder {
|
373 |
+
&.card {
|
374 |
+
/*.card.card-noborder にしないと負ける */
|
375 |
+
border: none;
|
376 |
+
background: none;
|
377 |
+
}
|
378 |
+
.vk_post_imgOuter {
|
379 |
+
border: none;
|
380 |
+
}
|
381 |
+
.card-body {
|
382 |
+
padding-left: 0;
|
383 |
+
padding-right: 0;
|
384 |
+
}
|
385 |
+
&.vk_post-btn-display {
|
386 |
+
.card-body {
|
387 |
+
padding-bottom: 2.8rem;
|
388 |
+
}
|
389 |
+
.vk_post_btnOuter {
|
390 |
+
width: 100%;
|
391 |
+
bottom: 0;
|
392 |
+
}
|
393 |
+
}
|
394 |
+
}
|
395 |
+
|
396 |
/*-------------------------------------------*/
|
397 |
/* 1カラム カード の時の下部の余白を小さく変更
|
398 |
/*-------------------------------------------*/
|
399 |
.card.vk_post-col {
|
400 |
+
@media (max-width: $xs-max) {
|
401 |
+
&-xs-12 {
|
402 |
+
margin-bottom: 15px;
|
403 |
+
}
|
404 |
}
|
405 |
+
@media (min-width: $sm-min) and (max-width: $sm-max) {
|
406 |
+
&-sm-12 {
|
407 |
+
margin-bottom: 15px;
|
408 |
+
}
|
409 |
}
|
410 |
+
@media (min-width: $md-min) and (max-width: $md-max) {
|
411 |
+
&-md-12 {
|
412 |
+
margin-bottom: 15px;
|
413 |
+
}
|
414 |
}
|
415 |
+
@media (min-width: $lg-min) and (max-width: $lg-max) {
|
416 |
+
&-lg-12 {
|
417 |
+
margin-bottom: 15px;
|
418 |
+
}
|
419 |
}
|
420 |
+
@media (min-width: $xl-min) {
|
421 |
+
&-xl-12 {
|
422 |
+
margin-bottom: 15px;
|
423 |
+
}
|
424 |
}
|
425 |
}
|
426 |
|
427 |
+
/*-------------------------------------------*/
|
428 |
+
/* .card-horizontal
|
429 |
+
/*-------------------------------------------*/
|
430 |
.card-horizontal {
|
431 |
&-inner {
|
432 |
height: 100%;
|
433 |
&::after {
|
434 |
content: "";
|
435 |
+
display: block;
|
436 |
+
clear: both;
|
437 |
}
|
438 |
&-row {
|
439 |
height: 100%;
|
444 |
flex-direction: row-reverse;
|
445 |
}
|
446 |
}
|
447 |
+
&-reverse {
|
448 |
.row {
|
449 |
flex-direction: row-reverse;
|
450 |
// text-align: right;
|
451 |
}
|
452 |
}
|
453 |
.card-body {
|
454 |
+
height: 100%;
|
455 |
}
|
456 |
}
|
457 |
|
458 |
+
.card-sm {
|
459 |
.card-body {
|
460 |
padding: 1rem 1.2rem;
|
461 |
}
|
462 |
.card-title {
|
463 |
+
font-size: 0.8rem;
|
464 |
}
|
465 |
+
.card-text {
|
466 |
+
font-size: 0.8rem;
|
467 |
line-height: 1.4;
|
468 |
}
|
469 |
.card-meta {
|
470 |
+
font-size: 0.7rem;
|
471 |
line-height: 1.1;
|
472 |
}
|
473 |
}
|
482 |
/* .media new type
|
483 |
/*-------------------------------------------*/
|
484 |
.media {
|
485 |
+
&:first-child {
|
486 |
+
border-top: $border_primary;
|
487 |
+
}
|
488 |
&-img {
|
489 |
+
border: $border_primary;
|
490 |
padding: 1px;
|
491 |
margin-right: 1rem;
|
492 |
}
|
493 |
.vk_post &-img {
|
494 |
+
width: 35%;
|
495 |
}
|
496 |
.vk_post &-body {
|
497 |
+
width: 65%;
|
498 |
}
|
|
|
499 |
}
|
500 |
/* border-top control */
|
501 |
.media.vk_post-col {
|
502 |
&-xs-6:first-child,
|
503 |
+
&-xs-6:nth-child(2) {
|
504 |
+
border-top: $border_primary;
|
505 |
+
}
|
506 |
+
@media (min-width: $sm-min) and (max-width: $sm-max) {
|
507 |
&-sm-6:nth-child(2),
|
508 |
&-sm-4:nth-child(2),
|
509 |
&-sm-4:nth-child(3),
|
510 |
&-sm-3:nth-child(2),
|
511 |
&-sm-3:nth-child(3),
|
512 |
+
&-sm-3:nth-child(4) {
|
513 |
+
border-top: $border_primary;
|
514 |
+
}
|
515 |
}
|
516 |
+
@media (min-width: $md-min) and (max-width: $md-max) {
|
517 |
&-md-6:nth-child(2),
|
518 |
&-md-4:nth-child(2),
|
519 |
&-md-4:nth-child(3),
|
520 |
&-md-3:nth-child(2),
|
521 |
&-md-3:nth-child(3),
|
522 |
+
&-md-3:nth-child(4) {
|
523 |
+
border-top: $border_primary;
|
524 |
+
}
|
525 |
}
|
526 |
+
@media (min-width: $lg-min) and (max-width: $lg-max) {
|
527 |
&-lg-6:nth-child(2),
|
528 |
&-lg-4:nth-child(2),
|
529 |
&-lg-4:nth-child(3),
|
530 |
&-lg-3:nth-child(2),
|
531 |
&-lg-3:nth-child(3),
|
532 |
+
&-lg-3:nth-child(4) {
|
533 |
+
border-top: $border_primary;
|
534 |
+
}
|
535 |
}
|
536 |
+
@media (min-width: $xl-min) {
|
537 |
&-xl-6:nth-child(2),
|
538 |
&-xl-4:nth-child(2),
|
539 |
&-xl-4:nth-child(3),
|
540 |
&-xl-3:nth-child(2),
|
541 |
&-xl-3:nth-child(3),
|
542 |
+
&-xl-3:nth-child(4) {
|
543 |
+
border-top: $border_primary;
|
544 |
+
}
|
545 |
}
|
546 |
}
|
547 |
|
549 |
/* .media old type ( Lightning Default )
|
550 |
/*-------------------------------------------*/
|
551 |
|
552 |
+
.media {
|
553 |
+
border-bottom: $border_primary;
|
554 |
+
padding: 1rem 0;
|
555 |
+
margin-top: 0;
|
556 |
+
& > div {
|
557 |
+
width: 100%;
|
558 |
+
}
|
559 |
+
.postList_thumbnail {
|
560 |
+
width: 160px;
|
561 |
+
margin-bottom: 0.5em;
|
562 |
+
padding-right: 30px;
|
563 |
+
display: block;
|
564 |
+
overflow: hidden;
|
565 |
+
float: left;
|
566 |
+
a {
|
567 |
+
position: relative;
|
568 |
+
display: block;
|
569 |
+
overflow: hidden;
|
570 |
+
border: 1px solid #e5e5e5;
|
571 |
+
}
|
572 |
+
img {
|
573 |
+
width: 100%;
|
574 |
+
height: auto;
|
575 |
+
border: 1px solid #fff;
|
576 |
+
}
|
577 |
+
.postList_cateLabel {
|
578 |
+
position: absolute;
|
579 |
+
bottom: 0;
|
580 |
+
left: 0;
|
581 |
+
}
|
582 |
+
}
|
583 |
|
584 |
+
.media-body {
|
585 |
+
.media-heading {
|
586 |
+
font-size: 20px;
|
587 |
+
line-height: 1.4em;
|
588 |
+
margin-top: 0;
|
589 |
+
margin-bottom: 0.4em;
|
590 |
+
font-weight: normal;
|
591 |
+
/* Begin heading style reset */
|
592 |
+
background: none;
|
593 |
+
box-shadow: none;
|
594 |
+
padding: 0;
|
595 |
+
/* End heading style reset */
|
596 |
+
a {
|
597 |
+
color: $color_font_default;
|
598 |
+
&:hover {
|
599 |
+
text-decoration: none;
|
600 |
+
}
|
601 |
+
}
|
602 |
+
}
|
603 |
+
}
|
604 |
+
p {
|
605 |
+
margin-bottom: 0;
|
606 |
+
font-size: 14px;
|
607 |
+
line-height: 150%;
|
608 |
+
}
|
609 |
+
.entry-meta_updated {
|
610 |
+
display: none;
|
611 |
+
}
|
612 |
+
.entry-meta_items_author {
|
613 |
+
display: none;
|
614 |
+
}
|
615 |
+
a.media-body_excerpt {
|
616 |
+
color: $color_font_default;
|
617 |
+
display: block;
|
618 |
+
overflow: hidden;
|
619 |
+
}
|
620 |
}
|
621 |
+
@media (max-width: 767px) {
|
622 |
+
.media {
|
623 |
+
.postList_thumbnail {
|
624 |
+
padding-right: 20px;
|
625 |
+
}
|
626 |
+
.media-body {
|
627 |
+
.media-heading {
|
628 |
+
font-size: 1.2em;
|
629 |
+
line-height: 1.3em;
|
630 |
+
margin-bottom: 0.5em;
|
631 |
+
}
|
632 |
+
} // .media-body
|
633 |
+
} // .media
|
634 |
} // @media (max-width: 767px){
|
635 |
+
@media (max-width: 500px) {
|
636 |
+
.media {
|
637 |
+
.postList_thumbnail {
|
638 |
+
width: 100px;
|
639 |
+
}
|
640 |
+
} // .media
|
641 |
} // @media (max-width: 767px){
|
inc/vk-components/package/_scss/vk-components.scss
CHANGED
@@ -1 +1,7 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
このファイルの元ファイルは
|
3 |
+
https://github.com/vektor-inc/vektor-wp-libraries
|
4 |
+
にあります。修正の際は上記リポジトリのデータを修正してください。
|
5 |
+
*/
|
6 |
+
|
7 |
+
@import "vk-post.scss";
|
inc/vk-components/package/class-vk-component-posts.php
CHANGED
@@ -9,20 +9,17 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
9 |
|
10 |
class VK_Component_Posts {
|
11 |
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
/* Layout patterns
|
18 |
-
/*-------------------------------------------*/
|
19 |
-
/* UI Helper method
|
20 |
/*-------------------------------------------*/
|
21 |
|
|
|
|
|
22 |
/*-------------------------------------------*/
|
23 |
-
|
24 |
-
/*-------------------------------------------*/
|
25 |
-
static public function get_loop_post_view_options( $options ) {
|
26 |
global $vk_components_textdomain;
|
27 |
$default = array(
|
28 |
'layout' => 'card',
|
@@ -44,15 +41,16 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
44 |
'body_prepend' => '',
|
45 |
'body_append' => '',
|
46 |
);
|
47 |
-
$return = wp_parse_args( $options, $default );
|
48 |
return $return;
|
49 |
}
|
50 |
|
51 |
/**
|
52 |
* [public description]
|
|
|
53 |
* @var [type]
|
54 |
*/
|
55 |
-
static
|
56 |
|
57 |
$options = self::get_loop_post_view_options( $options );
|
58 |
|
@@ -66,15 +64,16 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
66 |
return $html;
|
67 |
}
|
68 |
|
69 |
-
static
|
70 |
echo wp_kses_post( self::get_view( $post, $options ) );
|
71 |
}
|
72 |
|
73 |
/**
|
74 |
* [public description]
|
|
|
75 |
* @var [type]
|
76 |
*/
|
77 |
-
static
|
78 |
|
79 |
$options_loop_dafault = array(
|
80 |
'class_loop_outer' => '',
|
@@ -94,33 +93,36 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
94 |
while ( $wp_query->have_posts() ) {
|
95 |
$wp_query->the_post();
|
96 |
global $post;
|
97 |
-
$loop .=
|
98 |
} // while ( have_posts() ) {
|
99 |
endif;
|
100 |
|
101 |
$loop .= '</div>';
|
102 |
|
103 |
-
wp_reset_query();
|
104 |
wp_reset_postdata();
|
105 |
return $loop;
|
106 |
}
|
107 |
|
108 |
/**
|
109 |
* [public description]
|
|
|
110 |
* @var [type]
|
111 |
*/
|
112 |
-
static
|
113 |
echo self::get_loop( $wp_query, $options, $options_loop );
|
114 |
}
|
115 |
|
|
|
|
|
|
|
116 |
/*-------------------------------------------*/
|
117 |
-
|
118 |
-
/*-------------------------------------------*/
|
119 |
/**
|
120 |
* Common Part _ first DIV
|
|
|
121 |
* @var [type]
|
122 |
*/
|
123 |
-
static
|
124 |
if ( $options['layout'] == 'card-horizontal' ) {
|
125 |
$class_outer = 'card card-post card-horizontal';
|
126 |
} elseif ( $options['layout'] == 'media' ) {
|
@@ -140,12 +142,13 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
140 |
|
141 |
/**
|
142 |
* Common Part _ post thumbnail
|
|
|
143 |
* @param [type] $post [description]
|
144 |
* @param [type] $options [description]
|
145 |
* @param string $class [description]
|
146 |
* @return [type] [description]
|
147 |
*/
|
148 |
-
static
|
149 |
|
150 |
$default = array(
|
151 |
'class_outer' => '',
|
@@ -207,11 +210,12 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
207 |
|
208 |
/**
|
209 |
* Common Part _ post body
|
|
|
210 |
* @var [type]
|
211 |
*/
|
212 |
-
static
|
213 |
// $default = array(
|
214 |
-
//
|
215 |
// );
|
216 |
// $attr = wp_parse_args( $attr, $default );
|
217 |
|
@@ -280,7 +284,7 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
280 |
|
281 |
// $text_align = '';
|
282 |
// if ( $options['btn_align'] == 'right' ) {
|
283 |
-
//
|
284 |
// }
|
285 |
$html .= '<div class="vk_post_btnOuter ' . $options['btn_align'] . '">';
|
286 |
$html .= VK_Component_Button::get_view( $button_options );
|
@@ -296,14 +300,17 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
296 |
return $html;
|
297 |
}
|
298 |
|
|
|
|
|
|
|
299 |
/*-------------------------------------------*/
|
300 |
-
|
301 |
-
/*-------------------------------------------*/
|
302 |
/**
|
303 |
* Card
|
|
|
304 |
* @var [type]
|
305 |
*/
|
306 |
-
static
|
307 |
$html = '';
|
308 |
$html .= self::get_view_first_div( $post, $options );
|
309 |
|
@@ -321,9 +328,10 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
321 |
|
322 |
/**
|
323 |
* Card horizontal
|
|
|
324 |
* @var [type]
|
325 |
*/
|
326 |
-
static
|
327 |
$html = '';
|
328 |
$html .= self::get_view_first_div( $post, $options );
|
329 |
// $html .= '<a href="' . get_the_permalink( $post->ID ) . '" class="card-horizontal-inner">';
|
@@ -355,9 +363,10 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
355 |
|
356 |
/**
|
357 |
* Media
|
|
|
358 |
* @var [type]
|
359 |
*/
|
360 |
-
static
|
361 |
$html = '';
|
362 |
$html .= self::get_view_first_div( $post, $options );
|
363 |
if ( $options['display_image'] ) {
|
@@ -371,7 +380,7 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
371 |
}
|
372 |
|
373 |
// $attr = array(
|
374 |
-
//
|
375 |
// );
|
376 |
$html .= self::get_view_body( $post, $options );
|
377 |
|
@@ -379,11 +388,13 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
379 |
return $html;
|
380 |
}
|
381 |
|
|
|
|
|
382 |
/*-------------------------------------------*/
|
383 |
-
|
384 |
-
/*-------------------------------------------*/
|
385 |
/**
|
386 |
* Convert col-count from inputed column count.
|
|
|
387 |
* @param integer $input_col [description]
|
388 |
* @return [type] [description]
|
389 |
*/
|
@@ -402,6 +413,7 @@ if ( ! class_exists( 'VK_Component_Posts' ) ) {
|
|
402 |
|
403 |
/**
|
404 |
* Get all size col classes
|
|
|
405 |
* @param [type] $attributes inputed col numbers array
|
406 |
* @return [type] [description]
|
407 |
*/
|
9 |
|
10 |
class VK_Component_Posts {
|
11 |
|
12 |
+
/*-------------------------------------------
|
13 |
+
Basic method
|
14 |
+
Common Parts
|
15 |
+
Layout patterns
|
16 |
+
UI Helper method
|
|
|
|
|
|
|
17 |
/*-------------------------------------------*/
|
18 |
|
19 |
+
/*
|
20 |
+
Basic method
|
21 |
/*-------------------------------------------*/
|
22 |
+
public static function get_loop_post_view_options( $options ) {
|
|
|
|
|
23 |
global $vk_components_textdomain;
|
24 |
$default = array(
|
25 |
'layout' => 'card',
|
41 |
'body_prepend' => '',
|
42 |
'body_append' => '',
|
43 |
);
|
44 |
+
$return = apply_filters( 'vk_post_options', wp_parse_args( $options, $default ) );
|
45 |
return $return;
|
46 |
}
|
47 |
|
48 |
/**
|
49 |
* [public description]
|
50 |
+
*
|
51 |
* @var [type]
|
52 |
*/
|
53 |
+
public static function get_view( $post, $options ) {
|
54 |
|
55 |
$options = self::get_loop_post_view_options( $options );
|
56 |
|
64 |
return $html;
|
65 |
}
|
66 |
|
67 |
+
public static function the_view( $post, $options ) {
|
68 |
echo wp_kses_post( self::get_view( $post, $options ) );
|
69 |
}
|
70 |
|
71 |
/**
|
72 |
* [public description]
|
73 |
+
*
|
74 |
* @var [type]
|
75 |
*/
|
76 |
+
public static function get_loop( $wp_query, $options, $options_loop = array() ) {
|
77 |
|
78 |
$options_loop_dafault = array(
|
79 |
'class_loop_outer' => '',
|
93 |
while ( $wp_query->have_posts() ) {
|
94 |
$wp_query->the_post();
|
95 |
global $post;
|
96 |
+
$loop .= self::get_view( $post, $options );
|
97 |
} // while ( have_posts() ) {
|
98 |
endif;
|
99 |
|
100 |
$loop .= '</div>';
|
101 |
|
|
|
102 |
wp_reset_postdata();
|
103 |
return $loop;
|
104 |
}
|
105 |
|
106 |
/**
|
107 |
* [public description]
|
108 |
+
*
|
109 |
* @var [type]
|
110 |
*/
|
111 |
+
public static function the_loop( $wp_query, $options, $options_loop = array() ) {
|
112 |
echo self::get_loop( $wp_query, $options, $options_loop );
|
113 |
}
|
114 |
|
115 |
+
|
116 |
+
/*
|
117 |
+
Common Parts
|
118 |
/*-------------------------------------------*/
|
119 |
+
|
|
|
120 |
/**
|
121 |
* Common Part _ first DIV
|
122 |
+
*
|
123 |
* @var [type]
|
124 |
*/
|
125 |
+
public static function get_view_first_div( $post, $options ) {
|
126 |
if ( $options['layout'] == 'card-horizontal' ) {
|
127 |
$class_outer = 'card card-post card-horizontal';
|
128 |
} elseif ( $options['layout'] == 'media' ) {
|
142 |
|
143 |
/**
|
144 |
* Common Part _ post thumbnail
|
145 |
+
*
|
146 |
* @param [type] $post [description]
|
147 |
* @param [type] $options [description]
|
148 |
* @param string $class [description]
|
149 |
* @return [type] [description]
|
150 |
*/
|
151 |
+
public static function get_thumbnail_image( $post, $options, $attr = array() ) {
|
152 |
|
153 |
$default = array(
|
154 |
'class_outer' => '',
|
210 |
|
211 |
/**
|
212 |
* Common Part _ post body
|
213 |
+
*
|
214 |
* @var [type]
|
215 |
*/
|
216 |
+
public static function get_view_body( $post, $options ) {
|
217 |
// $default = array(
|
218 |
+
// 'textlink' => false,
|
219 |
// );
|
220 |
// $attr = wp_parse_args( $attr, $default );
|
221 |
|
284 |
|
285 |
// $text_align = '';
|
286 |
// if ( $options['btn_align'] == 'right' ) {
|
287 |
+
// $text_align = ' text-right';
|
288 |
// }
|
289 |
$html .= '<div class="vk_post_btnOuter ' . $options['btn_align'] . '">';
|
290 |
$html .= VK_Component_Button::get_view( $button_options );
|
300 |
return $html;
|
301 |
}
|
302 |
|
303 |
+
|
304 |
+
/*
|
305 |
+
Layout patterns
|
306 |
/*-------------------------------------------*/
|
307 |
+
|
|
|
308 |
/**
|
309 |
* Card
|
310 |
+
*
|
311 |
* @var [type]
|
312 |
*/
|
313 |
+
public static function get_view_type_card( $post, $options ) {
|
314 |
$html = '';
|
315 |
$html .= self::get_view_first_div( $post, $options );
|
316 |
|
328 |
|
329 |
/**
|
330 |
* Card horizontal
|
331 |
+
*
|
332 |
* @var [type]
|
333 |
*/
|
334 |
+
public static function get_view_type_card_horizontal( $post, $options ) {
|
335 |
$html = '';
|
336 |
$html .= self::get_view_first_div( $post, $options );
|
337 |
// $html .= '<a href="' . get_the_permalink( $post->ID ) . '" class="card-horizontal-inner">';
|
363 |
|
364 |
/**
|
365 |
* Media
|
366 |
+
*
|
367 |
* @var [type]
|
368 |
*/
|
369 |
+
public static function get_view_type_media( $post, $options ) {
|
370 |
$html = '';
|
371 |
$html .= self::get_view_first_div( $post, $options );
|
372 |
if ( $options['display_image'] ) {
|
380 |
}
|
381 |
|
382 |
// $attr = array(
|
383 |
+
// 'textlink' => true,
|
384 |
// );
|
385 |
$html .= self::get_view_body( $post, $options );
|
386 |
|
388 |
return $html;
|
389 |
}
|
390 |
|
391 |
+
/*
|
392 |
+
UI Helper method
|
393 |
/*-------------------------------------------*/
|
394 |
+
|
|
|
395 |
/**
|
396 |
* Convert col-count from inputed column count.
|
397 |
+
*
|
398 |
* @param integer $input_col [description]
|
399 |
* @return [type] [description]
|
400 |
*/
|
413 |
|
414 |
/**
|
415 |
* Get all size col classes
|
416 |
+
*
|
417 |
* @param [type] $attributes inputed col numbers array
|
418 |
* @return [type] [description]
|
419 |
*/
|
inc/vk-components/package/css/vk-components.css
ADDED
@@ -0,0 +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-bottom:2em;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.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)}.vk_post.media{width:100%;padding:1em 0;margin:0 15px;border-bottom:1px solid #e5e5e5}.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 .card-img-overlay:hover::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.vk_post-col-lg-12 .vk_post_title,.mainSection .wp-block-column .vk_post.vk_post-col-md-12 .vk_post_title,.mainSection .wp-block-column .vk_post.vk_post-col-sm-12 .vk_post_title,.mainSection .wp-block-column .vk_post.vk_post-col-xl-12 .vk_post_title{font-size:1rem}.mainSection .wp-block-column .vk_post.vk_post-col-lg-12 .vk_post_excerpt,.mainSection .wp-block-column .vk_post.vk_post-col-md-12 .vk_post_excerpt,.mainSection .wp-block-column .vk_post.vk_post-col-sm-12 .vk_post_excerpt,.mainSection .wp-block-column .vk_post.vk_post-col-xl-12 .vk_post_excerpt{font-size:12px}.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}.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}@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.vk_post-col-sm-12 .vk_post_title{font-size:16px}.mainSection .vk_post.vk_post-col-sm-12 .vk_post_excerpt{font-size:14px}.mainSection .vk_post.vk_post-col-sm-12.media{padding:1.5rem 0}.mainSection .vk_post.vk_post-col-sm-12.media:first-child{border-top:1px solid #e5e5e5}.mainSection .vk_post.vk_post-col-sm-12.media .media-img{margin-right:1.4rem}}@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.vk_post-col-md-12 .vk_post_title{font-size:18px}.mainSection .vk_post.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.vk_post-col-lg-12 .vk_post_title{font-size:18px}.mainSection .vk_post.vk_post-col-lg-12 .vk_post_excerpt{font-size:14px}.mainSection .vk_post.vk_post-col-lg-12.media{padding:1.8rem 0}.mainSection .vk_post.vk_post-col-lg-12.media .media-img{margin-right:1.8rem}}@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.vk_post-col-xl-12 .vk_post_title{font-size:21px}.mainSection .vk_post.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
@@ -682,6 +682,46 @@
|
|
682 |
"@babel/helper-plugin-utils": "^7.0.0"
|
683 |
}
|
684 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
685 |
"@babel/plugin-transform-shorthand-properties": {
|
686 |
"version": "7.7.4",
|
687 |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.7.4.tgz",
|
@@ -806,6 +846,16 @@
|
|
806 |
"regenerator-runtime": "^0.13.2"
|
807 |
}
|
808 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
809 |
"@babel/template": {
|
810 |
"version": "7.7.4",
|
811 |
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz",
|
@@ -845,6 +895,16 @@
|
|
845 |
"to-fast-properties": "^2.0.0"
|
846 |
}
|
847 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
848 |
"@gulp-sourcemaps/identity-map": {
|
849 |
"version": "1.0.2",
|
850 |
"resolved": "https://registry.npmjs.org/@gulp-sourcemaps/identity-map/-/identity-map-1.0.2.tgz",
|
@@ -902,6 +962,320 @@
|
|
902 |
}
|
903 |
}
|
904 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
905 |
"@sindresorhus/is": {
|
906 |
"version": "0.14.0",
|
907 |
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
|
@@ -944,6 +1318,207 @@
|
|
944 |
"resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.0.3.tgz",
|
945 |
"integrity": "sha512-80uoGtphTH3vDZlJgE2xJh3qBWMAlCXq8wN8WLOxHJjms0A38vkbXOXiYMIabgnIJVc1vCcZVQa2pHt+X3AF5Q=="
|
946 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
947 |
"@webassemblyjs/ast": {
|
948 |
"version": "1.8.5",
|
949 |
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz",
|
@@ -1120,6 +1695,12 @@
|
|
1120 |
"@xtuc/long": "4.2.2"
|
1121 |
}
|
1122 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
1123 |
"@wordpress/babel-plugin-makepot": {
|
1124 |
"version": "3.3.0",
|
1125 |
"resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-makepot/-/babel-plugin-makepot-3.3.0.tgz",
|
@@ -1131,6 +1712,31 @@
|
|
1131 |
"lodash": "^4.17.15"
|
1132 |
}
|
1133 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1134 |
"@wordpress/compose": {
|
1135 |
"version": "3.9.0",
|
1136 |
"resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-3.9.0.tgz",
|
@@ -1162,6 +1768,17 @@
|
|
1162 |
"turbo-combine-reducers": "^1.0.2"
|
1163 |
}
|
1164 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1165 |
"@wordpress/deprecated": {
|
1166 |
"version": "2.6.1",
|
1167 |
"resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-2.6.1.tgz",
|
@@ -1191,6 +1808,39 @@
|
|
1191 |
"@babel/runtime": "^7.4.4"
|
1192 |
}
|
1193 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1194 |
"@wordpress/hooks": {
|
1195 |
"version": "2.6.0",
|
1196 |
"resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-2.6.0.tgz",
|
@@ -1220,6 +1870,37 @@
|
|
1220 |
"@babel/runtime": "^7.4.4"
|
1221 |
}
|
1222 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1223 |
"@wordpress/priority-queue": {
|
1224 |
"version": "1.3.1",
|
1225 |
"resolved": "https://registry.npmjs.org/@wordpress/priority-queue/-/priority-queue-1.3.1.tgz",
|
@@ -1239,6 +1920,80 @@
|
|
1239 |
"rungen": "^0.3.2"
|
1240 |
}
|
1241 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1242 |
"@xtuc/ieee754": {
|
1243 |
"version": "1.2.0",
|
1244 |
"resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
|
@@ -1261,17 +2016,55 @@
|
|
1261 |
"through": ">=2.2.7 <3"
|
1262 |
}
|
1263 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
1264 |
"abbrev": {
|
1265 |
"version": "1.1.1",
|
1266 |
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
|
1267 |
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
|
1268 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1269 |
"acorn": {
|
1270 |
"version": "6.4.0",
|
1271 |
"resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.0.tgz",
|
1272 |
"integrity": "sha512-gac8OEcQ2Li1dxIEWGZzsp2BitJxwkwcOm0zHAJLcPJaVvm58FRnk6RkuLRpU1EujipU2ZFODv2P9DLMfnV8mw==",
|
1273 |
"dev": true
|
1274 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1275 |
"agent-base": {
|
1276 |
"version": "4.3.0",
|
1277 |
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz",
|
@@ -1290,6 +2083,24 @@
|
|
1290 |
"humanize-ms": "^1.2.1"
|
1291 |
}
|
1292 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1293 |
"ajv": {
|
1294 |
"version": "6.6.2",
|
1295 |
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.6.2.tgz",
|
@@ -1379,6 +2190,23 @@
|
|
1379 |
"ansi-wrap": "0.1.0"
|
1380 |
}
|
1381 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1382 |
"ansi-gray": {
|
1383 |
"version": "0.1.1",
|
1384 |
"resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz",
|
@@ -1483,9 +2311,9 @@
|
|
1483 |
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
|
1484 |
},
|
1485 |
"readable-stream": {
|
1486 |
-
"version": "2.3.
|
1487 |
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.
|
1488 |
-
"integrity": "sha512-
|
1489 |
"requires": {
|
1490 |
"core-util-is": "~1.0.0",
|
1491 |
"inherits": "~2.0.3",
|
@@ -1523,6 +2351,16 @@
|
|
1523 |
}
|
1524 |
}
|
1525 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1526 |
"arr-diff": {
|
1527 |
"version": "4.0.0",
|
1528 |
"resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
|
@@ -1565,11 +2403,40 @@
|
|
1565 |
"integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=",
|
1566 |
"dev": true
|
1567 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1568 |
"array-find-index": {
|
1569 |
"version": "1.0.2",
|
1570 |
"resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
|
1571 |
"integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E="
|
1572 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1573 |
"array-initial": {
|
1574 |
"version": "1.1.0",
|
1575 |
"resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz",
|
@@ -1630,12 +2497,50 @@
|
|
1630 |
}
|
1631 |
}
|
1632 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1633 |
"array-unique": {
|
1634 |
"version": "0.3.2",
|
1635 |
"resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
|
1636 |
"integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
|
1637 |
"dev": true
|
1638 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1639 |
"asap": {
|
1640 |
"version": "2.0.6",
|
1641 |
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
|
@@ -1698,6 +2603,27 @@
|
|
1698 |
"integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
|
1699 |
"dev": true
|
1700 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1701 |
"async-done": {
|
1702 |
"version": "1.3.2",
|
1703 |
"resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz",
|
@@ -1721,6 +2647,12 @@
|
|
1721 |
"resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz",
|
1722 |
"integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI="
|
1723 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
1724 |
"async-settle": {
|
1725 |
"version": "1.0.0",
|
1726 |
"resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz",
|
@@ -1807,6 +2739,58 @@
|
|
1807 |
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.0.tgz",
|
1808 |
"integrity": "sha512-Uvq6hVe90D0B2WEnUqtdgY1bATGz3mw33nH9Y+dmA+w5DHvUmBgkr5rM/KCHpCsiFNRUfokW/szpPPgMK2hm4A=="
|
1809 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1810 |
"babel-loader": {
|
1811 |
"version": "8.0.6",
|
1812 |
"resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.6.tgz",
|
@@ -1836,6 +2820,37 @@
|
|
1836 |
"object.assign": "^4.1.0"
|
1837 |
}
|
1838 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1839 |
"bach": {
|
1840 |
"version": "1.2.0",
|
1841 |
"resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz",
|
@@ -1853,6 +2868,12 @@
|
|
1853 |
"now-and-later": "^2.0.0"
|
1854 |
}
|
1855 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
1856 |
"balanced-match": {
|
1857 |
"version": "1.0.0",
|
1858 |
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
|
@@ -1927,12 +2948,34 @@
|
|
1927 |
"tweetnacl": "^0.14.3"
|
1928 |
}
|
1929 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1930 |
"big.js": {
|
1931 |
"version": "5.2.2",
|
1932 |
"resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
|
1933 |
"integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
|
1934 |
"dev": true
|
1935 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1936 |
"binary-extensions": {
|
1937 |
"version": "1.13.1",
|
1938 |
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
|
@@ -1959,46 +3002,123 @@
|
|
1959 |
"integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
|
1960 |
"dev": true
|
1961 |
},
|
1962 |
-
"
|
1963 |
-
"version": "
|
1964 |
-
"resolved": "https://registry.npmjs.org/
|
1965 |
-
"integrity": "
|
1966 |
"dev": true,
|
1967 |
"requires": {
|
1968 |
-
"
|
1969 |
-
"
|
1970 |
-
"
|
1971 |
-
"
|
1972 |
-
"string-width": "^3.0.0",
|
1973 |
-
"term-size": "^1.2.0",
|
1974 |
-
"type-fest": "^0.3.0",
|
1975 |
-
"widest-line": "^2.0.0"
|
1976 |
},
|
1977 |
"dependencies": {
|
1978 |
-
"
|
1979 |
-
"version": "
|
1980 |
-
"resolved": "https://registry.npmjs.org/
|
1981 |
-
"integrity": "
|
1982 |
-
"dev": true
|
1983 |
-
},
|
1984 |
-
"camelcase": {
|
1985 |
-
"version": "5.3.1",
|
1986 |
-
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
1987 |
-
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
|
1988 |
"dev": true
|
1989 |
},
|
1990 |
-
"
|
1991 |
-
"version": "
|
1992 |
-
"resolved": "https://registry.npmjs.org/
|
1993 |
-
"integrity": "
|
1994 |
"dev": true,
|
1995 |
"requires": {
|
1996 |
-
"
|
1997 |
-
"
|
1998 |
-
"supports-color": "^5.3.0"
|
1999 |
}
|
2000 |
-
}
|
2001 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002 |
"version": "2.0.0",
|
2003 |
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
|
2004 |
"integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
|
@@ -2070,6 +3190,29 @@
|
|
2070 |
"integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
|
2071 |
"dev": true
|
2072 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2073 |
"browserify-aes": {
|
2074 |
"version": "1.2.0",
|
2075 |
"resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
|
@@ -2152,6 +3295,15 @@
|
|
2152 |
"node-releases": "^1.1.42"
|
2153 |
}
|
2154 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2155 |
"buffer": {
|
2156 |
"version": "4.9.2",
|
2157 |
"resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
|
@@ -2189,6 +3341,12 @@
|
|
2189 |
"integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=",
|
2190 |
"dev": true
|
2191 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
2192 |
"builtin-modules": {
|
2193 |
"version": "1.1.1",
|
2194 |
"resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
|
@@ -2206,6 +3364,12 @@
|
|
2206 |
"integrity": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=",
|
2207 |
"dev": true
|
2208 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
2209 |
"cacache": {
|
2210 |
"version": "12.0.3",
|
2211 |
"resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.3.tgz",
|
@@ -2301,6 +3465,44 @@
|
|
2301 |
}
|
2302 |
}
|
2303 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2304 |
"camelcase": {
|
2305 |
"version": "2.1.1",
|
2306 |
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz",
|
@@ -2321,11 +3523,35 @@
|
|
2321 |
"integrity": "sha512-EDnZyOJ6eYh6lHmCvCdHAFbfV4KJ9lSdfv4h/ppEhrU/Yudkl7jujwMZ1we6RX7DXqBfT04pVMQ4J+1wcTlsKA==",
|
2322 |
"dev": true
|
2323 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2324 |
"caseless": {
|
2325 |
"version": "0.12.0",
|
2326 |
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
|
2327 |
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
|
2328 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2329 |
"chalk": {
|
2330 |
"version": "2.4.1",
|
2331 |
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
|
@@ -2342,6 +3568,82 @@
|
|
2342 |
"resolved": "https://registry.npmjs.org/char-props/-/char-props-0.1.5.tgz",
|
2343 |
"integrity": "sha1-W5UvniDqIc0Iyn/hNaEPb+kcEJ4="
|
2344 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2345 |
"chokidar": {
|
2346 |
"version": "2.1.6",
|
2347 |
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.6.tgz",
|
@@ -2451,6 +3753,15 @@
|
|
2451 |
"integrity": "sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w==",
|
2452 |
"dev": true
|
2453 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2454 |
"cli-table": {
|
2455 |
"version": "0.3.1",
|
2456 |
"resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz",
|
@@ -2460,6 +3771,12 @@
|
|
2460 |
"colors": "1.0.3"
|
2461 |
}
|
2462 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
2463 |
"cliui": {
|
2464 |
"version": "3.2.0",
|
2465 |
"resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
|
@@ -2493,6 +3810,16 @@
|
|
2493 |
"shallow-clone": "^3.0.0"
|
2494 |
}
|
2495 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2496 |
"clone-response": {
|
2497 |
"version": "1.0.2",
|
2498 |
"resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
|
@@ -2550,11 +3877,23 @@
|
|
2550 |
}
|
2551 |
}
|
2552 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
2553 |
"code-point-at": {
|
2554 |
"version": "1.1.0",
|
2555 |
"resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
|
2556 |
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
|
2557 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
2558 |
"collection-map": {
|
2559 |
"version": "1.0.0",
|
2560 |
"resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz",
|
@@ -2611,11 +3950,23 @@
|
|
2611 |
"delayed-stream": "~1.0.0"
|
2612 |
}
|
2613 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
2614 |
"commander": {
|
2615 |
"version": "2.19.0",
|
2616 |
"resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz",
|
2617 |
"integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg=="
|
2618 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
2619 |
"commondir": {
|
2620 |
"version": "1.0.1",
|
2621 |
"resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
|
@@ -2725,6 +4076,27 @@
|
|
2725 |
"integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=",
|
2726 |
"dev": true
|
2727 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2728 |
"convert-source-map": {
|
2729 |
"version": "1.6.0",
|
2730 |
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz",
|
@@ -2734,6 +4106,18 @@
|
|
2734 |
"safe-buffer": "~5.1.1"
|
2735 |
}
|
2736 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2737 |
"copy-concurrently": {
|
2738 |
"version": "1.0.5",
|
2739 |
"resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
|
@@ -2764,6 +4148,12 @@
|
|
2764 |
"is-plain-object": "^2.0.1"
|
2765 |
}
|
2766 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
2767 |
"core-js-compat": {
|
2768 |
"version": "3.6.1",
|
2769 |
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.1.tgz",
|
@@ -2782,6 +4172,12 @@
|
|
2782 |
}
|
2783 |
}
|
2784 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
2785 |
"core-util-is": {
|
2786 |
"version": "1.0.2",
|
2787 |
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
@@ -3039,12 +4435,45 @@
|
|
3039 |
"resolved": "https://registry.npmjs.org/css-mediaquery/-/css-mediaquery-0.1.2.tgz",
|
3040 |
"integrity": "sha1-aiw3NEkoYYYxxUvTPO3TAdoYvqA="
|
3041 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3042 |
"cssesc": {
|
3043 |
"version": "3.0.0",
|
3044 |
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
|
3045 |
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
|
3046 |
"dev": true
|
3047 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3048 |
"currently-unhandled": {
|
3049 |
"version": "0.4.1",
|
3050 |
"resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
|
@@ -3053,6 +4482,16 @@
|
|
3053 |
"array-find-index": "^1.0.1"
|
3054 |
}
|
3055 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3056 |
"cyclist": {
|
3057 |
"version": "1.0.1",
|
3058 |
"resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz",
|
@@ -3069,6 +4508,12 @@
|
|
3069 |
"type": "^1.0.1"
|
3070 |
}
|
3071 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
3072 |
"dashdash": {
|
3073 |
"version": "1.14.1",
|
3074 |
"resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
|
@@ -3077,6 +4522,30 @@
|
|
3077 |
"assert-plus": "^1.0.0"
|
3078 |
}
|
3079 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3080 |
"debug": {
|
3081 |
"version": "4.1.1",
|
3082 |
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
|
@@ -3113,6 +4582,16 @@
|
|
3113 |
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
|
3114 |
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
|
3115 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3116 |
"decode-uri-component": {
|
3117 |
"version": "0.2.0",
|
3118 |
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
|
@@ -3128,12 +4607,33 @@
|
|
3128 |
"mimic-response": "^1.0.0"
|
3129 |
}
|
3130 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3131 |
"deep-extend": {
|
3132 |
"version": "0.6.0",
|
3133 |
"resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
|
3134 |
"integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
|
3135 |
"dev": true
|
3136 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
3137 |
"default-compare": {
|
3138 |
"version": "1.0.0",
|
3139 |
"resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz",
|
@@ -3223,6 +4723,12 @@
|
|
3223 |
"resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
|
3224 |
"integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o="
|
3225 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
3226 |
"des.js": {
|
3227 |
"version": "1.0.1",
|
3228 |
"resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
|
@@ -3233,6 +4739,12 @@
|
|
3233 |
"minimalistic-assert": "^1.0.0"
|
3234 |
}
|
3235 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
3236 |
"detect-file": {
|
3237 |
"version": "1.0.0",
|
3238 |
"resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz",
|
@@ -3245,6 +4757,12 @@
|
|
3245 |
"integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=",
|
3246 |
"dev": true
|
3247 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
3248 |
"diffie-hellman": {
|
3249 |
"version": "5.0.3",
|
3250 |
"resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
|
@@ -3256,12 +4774,88 @@
|
|
3256 |
"randombytes": "^2.0.0"
|
3257 |
}
|
3258 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3259 |
"domain-browser": {
|
3260 |
"version": "1.2.0",
|
3261 |
"resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
|
3262 |
"integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
|
3263 |
"dev": true
|
3264 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3265 |
"dot-prop": {
|
3266 |
"version": "4.2.0",
|
3267 |
"resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz",
|
@@ -3271,6 +4865,12 @@
|
|
3271 |
"is-obj": "^1.0.0"
|
3272 |
}
|
3273 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
3274 |
"duplexer2": {
|
3275 |
"version": "0.0.2",
|
3276 |
"resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz",
|
@@ -3366,6 +4966,18 @@
|
|
3366 |
"safer-buffer": "^2.1.0"
|
3367 |
}
|
3368 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3369 |
"electron-to-chromium": {
|
3370 |
"version": "1.3.322",
|
3371 |
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.322.tgz",
|
@@ -3399,6 +5011,12 @@
|
|
3399 |
"integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
|
3400 |
"dev": true
|
3401 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
3402 |
"encoding": {
|
3403 |
"version": "0.1.12",
|
3404 |
"resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz",
|
@@ -3480,6 +5098,109 @@
|
|
3480 |
}
|
3481 |
}
|
3482 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3483 |
"equivalent-key-map": {
|
3484 |
"version": "0.2.2",
|
3485 |
"resolved": "https://registry.npmjs.org/equivalent-key-map/-/equivalent-key-map-0.2.2.tgz",
|
@@ -3500,6 +5221,15 @@
|
|
3500 |
"prr": "~1.0.1"
|
3501 |
}
|
3502 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3503 |
"error-ex": {
|
3504 |
"version": "1.3.2",
|
3505 |
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
|
@@ -3508,6 +5238,50 @@
|
|
3508 |
"is-arrayish": "^0.2.1"
|
3509 |
}
|
3510 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3511 |
"es5-ext": {
|
3512 |
"version": "0.10.50",
|
3513 |
"resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.50.tgz",
|
@@ -3567,118 +5341,447 @@
|
|
3567 |
"es6-symbol": "^3.1.1"
|
3568 |
}
|
3569 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
3570 |
"escape-string-regexp": {
|
3571 |
"version": "1.0.5",
|
3572 |
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
3573 |
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
|
3574 |
},
|
3575 |
-
"
|
3576 |
-
"version": "
|
3577 |
-
"resolved": "https://registry.npmjs.org/
|
3578 |
-
"integrity": "sha512-
|
3579 |
-
"dev": true,
|
3580 |
-
"requires": {
|
3581 |
-
"esrecurse": "^4.1.0",
|
3582 |
-
"estraverse": "^4.1.1"
|
3583 |
-
}
|
3584 |
-
},
|
3585 |
-
"esprima": {
|
3586 |
-
"version": "4.0.1",
|
3587 |
-
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
|
3588 |
-
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
|
3589 |
-
"dev": true
|
3590 |
-
},
|
3591 |
-
"esrecurse": {
|
3592 |
-
"version": "4.2.1",
|
3593 |
-
"resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz",
|
3594 |
-
"integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==",
|
3595 |
-
"dev": true,
|
3596 |
-
"requires": {
|
3597 |
-
"estraverse": "^4.1.0"
|
3598 |
-
}
|
3599 |
-
},
|
3600 |
-
"estraverse": {
|
3601 |
-
"version": "4.3.0",
|
3602 |
-
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
|
3603 |
-
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
|
3604 |
-
"dev": true
|
3605 |
-
},
|
3606 |
-
"esutils": {
|
3607 |
-
"version": "2.0.3",
|
3608 |
-
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
3609 |
-
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
|
3610 |
-
"dev": true
|
3611 |
-
},
|
3612 |
-
"event-emitter": {
|
3613 |
-
"version": "0.3.5",
|
3614 |
-
"resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz",
|
3615 |
-
"integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=",
|
3616 |
-
"dev": true,
|
3617 |
-
"requires": {
|
3618 |
-
"d": "1",
|
3619 |
-
"es5-ext": "~0.10.14"
|
3620 |
-
}
|
3621 |
-
},
|
3622 |
-
"events": {
|
3623 |
-
"version": "3.0.0",
|
3624 |
-
"resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz",
|
3625 |
-
"integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==",
|
3626 |
-
"dev": true
|
3627 |
-
},
|
3628 |
-
"evp_bytestokey": {
|
3629 |
-
"version": "1.0.3",
|
3630 |
-
"resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
|
3631 |
-
"integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
|
3632 |
"dev": true,
|
3633 |
"requires": {
|
3634 |
-
"
|
3635 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3636 |
}
|
3637 |
},
|
3638 |
-
"
|
3639 |
-
"version": "
|
3640 |
-
"resolved": "https://registry.npmjs.org/
|
3641 |
-
"integrity": "
|
3642 |
"dev": true,
|
3643 |
"requires": {
|
3644 |
-
"
|
3645 |
-
"
|
3646 |
-
"
|
3647 |
-
"
|
3648 |
-
"
|
3649 |
-
"
|
3650 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3651 |
},
|
3652 |
"dependencies": {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3653 |
"cross-spawn": {
|
3654 |
-
"version": "
|
3655 |
-
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-
|
3656 |
-
"integrity": "
|
3657 |
"dev": true,
|
3658 |
"requires": {
|
3659 |
-
"
|
|
|
|
|
3660 |
"shebang-command": "^1.2.0",
|
3661 |
"which": "^1.2.9"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3662 |
}
|
3663 |
},
|
3664 |
-
"
|
3665 |
"version": "3.0.0",
|
3666 |
-
"resolved": "https://registry.npmjs.org/
|
3667 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3668 |
"dev": true
|
3669 |
},
|
3670 |
-
"
|
3671 |
-
"version": "
|
3672 |
-
"resolved": "https://registry.npmjs.org/
|
3673 |
-
"integrity": "sha512-
|
3674 |
"dev": true,
|
3675 |
"requires": {
|
3676 |
-
"
|
3677 |
-
"yallist": "^2.1.2"
|
3678 |
}
|
3679 |
-
}
|
3680 |
-
|
3681 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3682 |
"expand-brackets": {
|
3683 |
"version": "2.1.4",
|
3684 |
"resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
|
@@ -3738,6 +5841,87 @@
|
|
3738 |
"homedir-polyfill": "^1.0.1"
|
3739 |
}
|
3740 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3741 |
"extend": {
|
3742 |
"version": "3.0.2",
|
3743 |
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
@@ -3764,6 +5948,17 @@
|
|
3764 |
}
|
3765 |
}
|
3766 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3767 |
"extglob": {
|
3768 |
"version": "2.0.4",
|
3769 |
"resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
|
@@ -3829,6 +6024,35 @@
|
|
3829 |
}
|
3830 |
}
|
3831 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3832 |
"extsprintf": {
|
3833 |
"version": "1.3.0",
|
3834 |
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
|
@@ -3857,10 +6081,119 @@
|
|
3857 |
"integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==",
|
3858 |
"dev": true
|
3859 |
},
|
3860 |
-
"fast-
|
3861 |
-
"version": "
|
3862 |
-
"resolved": "https://registry.npmjs.org/fast-
|
3863 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3864 |
},
|
3865 |
"figgy-pudding": {
|
3866 |
"version": "3.5.1",
|
@@ -3868,6 +6201,24 @@
|
|
3868 |
"integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==",
|
3869 |
"dev": true
|
3870 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3871 |
"filesize": {
|
3872 |
"version": "2.0.4",
|
3873 |
"resolved": "https://registry.npmjs.org/filesize/-/filesize-2.0.4.tgz",
|
@@ -3896,6 +6247,38 @@
|
|
3896 |
}
|
3897 |
}
|
3898 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3899 |
"find-cache-dir": {
|
3900 |
"version": "2.1.0",
|
3901 |
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
|
@@ -3925,6 +6308,108 @@
|
|
3925 |
}
|
3926 |
}
|
3927 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3928 |
"find-up": {
|
3929 |
"version": "3.0.0",
|
3930 |
"resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
|
@@ -4010,6 +6495,34 @@
|
|
4010 |
"integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==",
|
4011 |
"dev": true
|
4012 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4013 |
"flush-write-stream": {
|
4014 |
"version": "1.0.3",
|
4015 |
"resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz",
|
@@ -4082,6 +6595,12 @@
|
|
4082 |
"mime-types": "^2.1.12"
|
4083 |
}
|
4084 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
4085 |
"fragment-cache": {
|
4086 |
"version": "0.2.1",
|
4087 |
"resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
|
@@ -4091,6 +6610,12 @@
|
|
4091 |
"map-cache": "^0.2.2"
|
4092 |
}
|
4093 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
4094 |
"from2": {
|
4095 |
"version": "2.3.0",
|
4096 |
"resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
|
@@ -4133,6 +6658,12 @@
|
|
4133 |
}
|
4134 |
}
|
4135 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
4136 |
"fs-minipass": {
|
4137 |
"version": "1.2.7",
|
4138 |
"resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz",
|
@@ -4734,6 +7265,29 @@
|
|
4734 |
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
|
4735 |
"dev": true
|
4736 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4737 |
"gauge": {
|
4738 |
"version": "2.7.4",
|
4739 |
"resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz",
|
@@ -4897,6 +7451,12 @@
|
|
4897 |
}
|
4898 |
}
|
4899 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
4900 |
"glob-watcher": {
|
4901 |
"version": "5.0.3",
|
4902 |
"resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.3.tgz",
|
@@ -4950,6 +7510,42 @@
|
|
4950 |
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
|
4951 |
"dev": true
|
4952 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4953 |
"globule": {
|
4954 |
"version": "1.3.0",
|
4955 |
"resolved": "https://registry.npmjs.org/globule/-/globule-1.3.0.tgz",
|
@@ -4969,6 +7565,23 @@
|
|
4969 |
"sparkles": "^1.0.0"
|
4970 |
}
|
4971 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4972 |
"got": {
|
4973 |
"version": "9.6.0",
|
4974 |
"resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz",
|
@@ -5729,6 +8342,24 @@
|
|
5729 |
"glogg": "^1.0.0"
|
5730 |
}
|
5731 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5732 |
"har-schema": {
|
5733 |
"version": "2.0.0",
|
5734 |
"resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
|
@@ -5743,6 +8374,12 @@
|
|
5743 |
"har-schema": "^2.0.0"
|
5744 |
}
|
5745 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
5746 |
"has": {
|
5747 |
"version": "1.0.3",
|
5748 |
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
@@ -5864,17 +8501,114 @@
|
|
5864 |
"parse-passwd": "^1.0.0"
|
5865 |
}
|
5866 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
5867 |
"hosted-git-info": {
|
5868 |
"version": "2.7.1",
|
5869 |
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz",
|
5870 |
"integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w=="
|
5871 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5872 |
"http-cache-semantics": {
|
5873 |
"version": "3.8.1",
|
5874 |
"resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz",
|
5875 |
"integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==",
|
5876 |
"dev": true
|
5877 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5878 |
"http-proxy-agent": {
|
5879 |
"version": "2.1.0",
|
5880 |
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz",
|
@@ -6032,6 +8766,12 @@
|
|
6032 |
"integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=",
|
6033 |
"dev": true
|
6034 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
6035 |
"ignore-walk": {
|
6036 |
"version": "3.0.3",
|
6037 |
"resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz",
|
@@ -6050,6 +8790,24 @@
|
|
6050 |
"import-from": "^2.1.0"
|
6051 |
}
|
6052 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6053 |
"import-from": {
|
6054 |
"version": "2.1.0",
|
6055 |
"resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz",
|
@@ -6134,6 +8892,108 @@
|
|
6134 |
"css-in-js-utils": "^2.0.0"
|
6135 |
}
|
6136 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6137 |
"interpret": {
|
6138 |
"version": "1.2.0",
|
6139 |
"resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz",
|
@@ -6160,6 +9020,18 @@
|
|
6160 |
"integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=",
|
6161 |
"dev": true
|
6162 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6163 |
"is": {
|
6164 |
"version": "3.3.0",
|
6165 |
"resolved": "https://registry.npmjs.org/is/-/is-3.3.0.tgz",
|
@@ -6196,6 +9068,28 @@
|
|
6196 |
}
|
6197 |
}
|
6198 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6199 |
"is-arrayish": {
|
6200 |
"version": "0.2.1",
|
6201 |
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
|
@@ -6210,6 +9104,12 @@
|
|
6210 |
"binary-extensions": "^1.0.0"
|
6211 |
}
|
6212 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
6213 |
"is-buffer": {
|
6214 |
"version": "1.1.6",
|
6215 |
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
|
@@ -6224,6 +9124,12 @@
|
|
6224 |
"builtin-modules": "^1.0.0"
|
6225 |
}
|
6226 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
6227 |
"is-ci": {
|
6228 |
"version": "2.0.0",
|
6229 |
"resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
|
@@ -6253,6 +9159,18 @@
|
|
6253 |
}
|
6254 |
}
|
6255 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6256 |
"is-descriptor": {
|
6257 |
"version": "0.1.6",
|
6258 |
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
|
@@ -6306,6 +9224,12 @@
|
|
6306 |
"number-is-nan": "^1.0.0"
|
6307 |
}
|
6308 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
6309 |
"is-glob": {
|
6310 |
"version": "4.0.1",
|
6311 |
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
|
@@ -6315,6 +9239,12 @@
|
|
6315 |
"is-extglob": "^2.1.1"
|
6316 |
}
|
6317 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
6318 |
"is-installed-globally": {
|
6319 |
"version": "0.1.0",
|
6320 |
"resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz",
|
@@ -6357,6 +9287,12 @@
|
|
6357 |
}
|
6358 |
}
|
6359 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
6360 |
"is-obj": {
|
6361 |
"version": "1.0.1",
|
6362 |
"resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
|
@@ -6372,6 +9308,12 @@
|
|
6372 |
"path-is-inside": "^1.0.1"
|
6373 |
}
|
6374 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
6375 |
"is-plain-object": {
|
6376 |
"version": "2.0.4",
|
6377 |
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
|
@@ -6386,6 +9328,21 @@
|
|
6386 |
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz",
|
6387 |
"integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o="
|
6388 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6389 |
"is-relative": {
|
6390 |
"version": "1.0.0",
|
6391 |
"resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz",
|
@@ -6401,6 +9358,41 @@
|
|
6401 |
"integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
|
6402 |
"dev": true
|
6403 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6404 |
"is-typedarray": {
|
6405 |
"version": "1.0.0",
|
6406 |
"resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
|
@@ -6426,12 +9418,24 @@
|
|
6426 |
"integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=",
|
6427 |
"dev": true
|
6428 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
6429 |
"is-windows": {
|
6430 |
"version": "1.0.2",
|
6431 |
"resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
|
6432 |
"integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
|
6433 |
"dev": true
|
6434 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
6435 |
"is-wsl": {
|
6436 |
"version": "1.1.0",
|
6437 |
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
|
@@ -6464,1105 +9468,1248 @@
|
|
6464 |
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
|
6465 |
"integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
|
6466 |
},
|
6467 |
-
"
|
6468 |
-
"version": "
|
6469 |
-
"resolved": "https://registry.npmjs.org/
|
6470 |
-
"integrity": "
|
6471 |
-
"dev": true
|
6472 |
-
},
|
6473 |
-
"js-base64": {
|
6474 |
-
"version": "2.5.1",
|
6475 |
-
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz",
|
6476 |
-
"integrity": "sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw=="
|
6477 |
-
},
|
6478 |
-
"js-levenshtein": {
|
6479 |
-
"version": "1.1.6",
|
6480 |
-
"resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz",
|
6481 |
-
"integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==",
|
6482 |
"dev": true
|
6483 |
},
|
6484 |
-
"
|
6485 |
-
"version": "
|
6486 |
-
"resolved": "https://registry.npmjs.org/
|
6487 |
-
"integrity": "sha512-
|
6488 |
-
},
|
6489 |
-
"js-yaml": {
|
6490 |
-
"version": "3.13.1",
|
6491 |
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
|
6492 |
-
"integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==",
|
6493 |
"dev": true,
|
6494 |
"requires": {
|
6495 |
-
"
|
6496 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6497 |
}
|
6498 |
},
|
6499 |
-
"
|
6500 |
-
"version": "0.
|
6501 |
-
"resolved": "https://registry.npmjs.org/
|
6502 |
-
"integrity": "
|
6503 |
-
|
6504 |
-
"jsesc": {
|
6505 |
-
"version": "2.5.2",
|
6506 |
-
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
|
6507 |
-
"integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
|
6508 |
-
"dev": true
|
6509 |
-
},
|
6510 |
-
"jsmin-sourcemap": {
|
6511 |
-
"version": "0.16.0",
|
6512 |
-
"resolved": "https://registry.npmjs.org/jsmin-sourcemap/-/jsmin-sourcemap-0.16.0.tgz",
|
6513 |
-
"integrity": "sha1-1Z6Iobc7umcPw7OYzZ+Wf0v8zKo=",
|
6514 |
"requires": {
|
6515 |
-
"
|
6516 |
-
"
|
6517 |
-
|
6518 |
-
},
|
6519 |
-
"jsmin2": {
|
6520 |
-
"version": "1.1.9",
|
6521 |
-
"resolved": "https://registry.npmjs.org/jsmin2/-/jsmin2-1.1.9.tgz",
|
6522 |
-
"integrity": "sha1-qHyr7GatsX9RwMLvIkrvDGloaE8="
|
6523 |
-
},
|
6524 |
-
"json-buffer": {
|
6525 |
-
"version": "3.0.0",
|
6526 |
-
"resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
|
6527 |
-
"integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=",
|
6528 |
-
"dev": true
|
6529 |
-
},
|
6530 |
-
"json-parse-better-errors": {
|
6531 |
-
"version": "1.0.2",
|
6532 |
-
"resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
|
6533 |
-
"integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
|
6534 |
-
"dev": true
|
6535 |
-
},
|
6536 |
-
"json-parse-helpfulerror": {
|
6537 |
-
"version": "1.0.3",
|
6538 |
-
"resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz",
|
6539 |
-
"integrity": "sha1-E/FM4C7tTpgSl7ZOueO5MuLdE9w=",
|
6540 |
-
"dev": true,
|
6541 |
-
"requires": {
|
6542 |
-
"jju": "^1.1.0"
|
6543 |
-
}
|
6544 |
-
},
|
6545 |
-
"json-schema": {
|
6546 |
-
"version": "0.2.3",
|
6547 |
-
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
|
6548 |
-
"integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
|
6549 |
-
},
|
6550 |
-
"json-schema-traverse": {
|
6551 |
-
"version": "0.4.1",
|
6552 |
-
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
6553 |
-
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
|
6554 |
-
},
|
6555 |
-
"json-stable-stringify-without-jsonify": {
|
6556 |
-
"version": "1.0.1",
|
6557 |
-
"resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
|
6558 |
-
"integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
|
6559 |
-
"dev": true
|
6560 |
-
},
|
6561 |
-
"json-stringify-safe": {
|
6562 |
-
"version": "5.0.1",
|
6563 |
-
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
|
6564 |
-
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
|
6565 |
-
},
|
6566 |
-
"json5": {
|
6567 |
-
"version": "2.1.1",
|
6568 |
-
"resolved": "https://registry.npmjs.org/json5/-/json5-2.1.1.tgz",
|
6569 |
-
"integrity": "sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==",
|
6570 |
-
"dev": true,
|
6571 |
-
"requires": {
|
6572 |
-
"minimist": "^1.2.0"
|
6573 |
-
}
|
6574 |
-
},
|
6575 |
-
"jsonparse": {
|
6576 |
-
"version": "1.3.1",
|
6577 |
-
"resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
|
6578 |
-
"integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=",
|
6579 |
-
"dev": true
|
6580 |
-
},
|
6581 |
-
"jsprim": {
|
6582 |
-
"version": "1.4.1",
|
6583 |
-
"resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
|
6584 |
-
"integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
|
6585 |
-
"requires": {
|
6586 |
-
"assert-plus": "1.0.0",
|
6587 |
-
"extsprintf": "1.3.0",
|
6588 |
-
"json-schema": "0.2.3",
|
6589 |
-
"verror": "1.10.0"
|
6590 |
-
}
|
6591 |
-
},
|
6592 |
-
"just-debounce": {
|
6593 |
-
"version": "1.0.0",
|
6594 |
-
"resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.0.0.tgz",
|
6595 |
-
"integrity": "sha1-h/zPrv/AtozRnVX2cilD+SnqNeo=",
|
6596 |
-
"dev": true
|
6597 |
-
},
|
6598 |
-
"keyv": {
|
6599 |
-
"version": "3.1.0",
|
6600 |
-
"resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz",
|
6601 |
-
"integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==",
|
6602 |
-
"dev": true,
|
6603 |
-
"requires": {
|
6604 |
-
"json-buffer": "3.0.0"
|
6605 |
-
}
|
6606 |
-
},
|
6607 |
-
"kind-of": {
|
6608 |
-
"version": "6.0.2",
|
6609 |
-
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
|
6610 |
-
"integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
|
6611 |
-
"dev": true
|
6612 |
-
},
|
6613 |
-
"kleur": {
|
6614 |
-
"version": "3.0.3",
|
6615 |
-
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
|
6616 |
-
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
|
6617 |
-
"dev": true
|
6618 |
-
},
|
6619 |
-
"last-run": {
|
6620 |
-
"version": "1.1.1",
|
6621 |
-
"resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz",
|
6622 |
-
"integrity": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=",
|
6623 |
-
"dev": true,
|
6624 |
-
"requires": {
|
6625 |
-
"default-resolution": "^2.0.0",
|
6626 |
-
"es6-weak-map": "^2.0.1"
|
6627 |
-
}
|
6628 |
-
},
|
6629 |
-
"latest-version": {
|
6630 |
-
"version": "5.1.0",
|
6631 |
-
"resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz",
|
6632 |
-
"integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==",
|
6633 |
-
"dev": true,
|
6634 |
-
"requires": {
|
6635 |
-
"package-json": "^6.3.0"
|
6636 |
-
}
|
6637 |
-
},
|
6638 |
-
"lazystream": {
|
6639 |
-
"version": "1.0.0",
|
6640 |
-
"resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz",
|
6641 |
-
"integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=",
|
6642 |
-
"dev": true,
|
6643 |
-
"requires": {
|
6644 |
-
"readable-stream": "^2.0.5"
|
6645 |
},
|
6646 |
"dependencies": {
|
6647 |
-
"
|
6648 |
-
"version": "1.0
|
6649 |
-
"resolved": "https://registry.npmjs.org/
|
6650 |
-
"integrity": "
|
6651 |
-
"dev": true
|
6652 |
-
},
|
6653 |
-
"readable-stream": {
|
6654 |
-
"version": "2.3.6",
|
6655 |
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
|
6656 |
-
"integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
|
6657 |
"dev": true,
|
6658 |
"requires": {
|
6659 |
-
"
|
6660 |
-
"
|
6661 |
-
"isarray": "~1.0.0",
|
6662 |
-
"process-nextick-args": "~2.0.0",
|
6663 |
-
"safe-buffer": "~5.1.1",
|
6664 |
-
"string_decoder": "~1.1.1",
|
6665 |
-
"util-deprecate": "~1.0.1"
|
6666 |
}
|
6667 |
},
|
6668 |
-
"
|
6669 |
-
"version": "
|
6670 |
-
"resolved": "https://registry.npmjs.org/
|
6671 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
6672 |
"dev": true,
|
6673 |
"requires": {
|
6674 |
-
"
|
6675 |
}
|
6676 |
}
|
6677 |
}
|
6678 |
},
|
6679 |
-
"
|
6680 |
-
"version": "
|
6681 |
-
"resolved": "https://registry.npmjs.org/
|
6682 |
-
"integrity": "
|
6683 |
-
"requires": {
|
6684 |
-
"invert-kv": "^1.0.0"
|
6685 |
-
}
|
6686 |
-
},
|
6687 |
-
"lead": {
|
6688 |
-
"version": "1.0.0",
|
6689 |
-
"resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz",
|
6690 |
-
"integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=",
|
6691 |
"dev": true,
|
6692 |
"requires": {
|
6693 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6694 |
}
|
6695 |
},
|
6696 |
-
"
|
6697 |
-
"version": "
|
6698 |
-
"resolved": "https://registry.npmjs.org/
|
6699 |
-
"integrity": "sha512-
|
6700 |
"dev": true,
|
6701 |
"requires": {
|
6702 |
-
"
|
6703 |
-
"find-up": "^3.0.0",
|
6704 |
-
"ini": "^1.3.5"
|
6705 |
}
|
6706 |
},
|
6707 |
-
"
|
6708 |
-
"version": "
|
6709 |
-
"resolved": "https://registry.npmjs.org/
|
6710 |
-
"integrity": "sha512-
|
6711 |
"dev": true,
|
6712 |
"requires": {
|
6713 |
-
"
|
6714 |
-
"
|
6715 |
-
"fined": "^1.0.1",
|
6716 |
-
"flagged-respawn": "^1.0.0",
|
6717 |
-
"is-plain-object": "^2.0.4",
|
6718 |
-
"object.map": "^1.0.0",
|
6719 |
-
"rechoir": "^0.6.2",
|
6720 |
-
"resolve": "^1.1.7"
|
6721 |
-
}
|
6722 |
-
},
|
6723 |
-
"load-json-file": {
|
6724 |
-
"version": "1.1.0",
|
6725 |
-
"resolved": "http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
|
6726 |
-
"integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
|
6727 |
-
"requires": {
|
6728 |
-
"graceful-fs": "^4.1.2",
|
6729 |
-
"parse-json": "^2.2.0",
|
6730 |
-
"pify": "^2.0.0",
|
6731 |
-
"pinkie-promise": "^2.0.0",
|
6732 |
-
"strip-bom": "^2.0.0"
|
6733 |
},
|
6734 |
"dependencies": {
|
6735 |
-
"
|
6736 |
-
"version": "4.1.
|
6737 |
-
"resolved": "https://registry.npmjs.org/
|
6738 |
-
"integrity": "sha512-
|
6739 |
-
|
6740 |
-
"pify": {
|
6741 |
-
"version": "2.3.0",
|
6742 |
-
"resolved": "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
6743 |
-
"integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
|
6744 |
},
|
6745 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6746 |
"version": "2.0.0",
|
6747 |
-
"resolved": "https://registry.npmjs.org/
|
6748 |
-
"integrity": "sha1-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6749 |
"requires": {
|
6750 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6751 |
}
|
6752 |
}
|
6753 |
}
|
6754 |
},
|
6755 |
-
"
|
6756 |
-
"version": "
|
6757 |
-
"resolved": "https://registry.npmjs.org/
|
6758 |
-
"integrity": "sha512-
|
6759 |
-
"dev": true
|
6760 |
-
},
|
6761 |
-
"loader-utils": {
|
6762 |
-
"version": "1.2.1",
|
6763 |
-
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.1.tgz",
|
6764 |
-
"integrity": "sha512-3Zhx4qDqBQ9U8udWB3RMJ29nLu5a3ObNOSzk87woPvge01pi0wABowgv7F79Z4mL0DGtHRi/oOndT34EVhInoQ==",
|
6765 |
"dev": true,
|
6766 |
"requires": {
|
6767 |
-
"
|
6768 |
-
"
|
6769 |
-
"
|
6770 |
},
|
6771 |
"dependencies": {
|
6772 |
-
"
|
6773 |
-
"version": "
|
6774 |
-
"resolved": "
|
6775 |
-
"integrity": "sha512-
|
6776 |
"dev": true,
|
6777 |
"requires": {
|
6778 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6779 |
}
|
6780 |
}
|
6781 |
}
|
6782 |
},
|
6783 |
-
"
|
6784 |
-
"version": "
|
6785 |
-
"resolved": "https://registry.npmjs.org/
|
6786 |
-
"integrity": "sha512-
|
6787 |
"dev": true,
|
6788 |
"requires": {
|
6789 |
-
"
|
6790 |
-
"
|
6791 |
-
|
6792 |
-
|
6793 |
-
|
6794 |
-
|
6795 |
-
|
6796 |
-
|
6797 |
-
|
6798 |
-
|
6799 |
-
|
6800 |
-
|
6801 |
-
|
6802 |
-
|
6803 |
-
"
|
|
|
|
|
6804 |
}
|
6805 |
},
|
6806 |
-
"
|
6807 |
-
"version": "
|
6808 |
-
"resolved": "https://registry.npmjs.org/
|
6809 |
-
"integrity": "
|
6810 |
-
|
6811 |
-
"lodash._htmlescapes": {
|
6812 |
-
"version": "2.4.1",
|
6813 |
-
"resolved": "https://registry.npmjs.org/lodash._htmlescapes/-/lodash._htmlescapes-2.4.1.tgz",
|
6814 |
-
"integrity": "sha1-MtFL8IRLbeb4tioFG09nwii2JMs="
|
6815 |
-
},
|
6816 |
-
"lodash._isnative": {
|
6817 |
-
"version": "2.4.1",
|
6818 |
-
"resolved": "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz",
|
6819 |
-
"integrity": "sha1-PqZAS3hKe+g2x7V1gOHN95sUgyw="
|
6820 |
-
},
|
6821 |
-
"lodash._objecttypes": {
|
6822 |
-
"version": "2.4.1",
|
6823 |
-
"resolved": "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz",
|
6824 |
-
"integrity": "sha1-fAt/admKH3ZSn4kLDNsbTf7BHBE="
|
6825 |
-
},
|
6826 |
-
"lodash._reinterpolate": {
|
6827 |
-
"version": "3.0.0",
|
6828 |
-
"resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
|
6829 |
-
"integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=",
|
6830 |
-
"dev": true
|
6831 |
-
},
|
6832 |
-
"lodash._reunescapedhtml": {
|
6833 |
-
"version": "2.4.1",
|
6834 |
-
"resolved": "https://registry.npmjs.org/lodash._reunescapedhtml/-/lodash._reunescapedhtml-2.4.1.tgz",
|
6835 |
-
"integrity": "sha1-dHxPxAED6zu4oJduVx96JlnpO6c=",
|
6836 |
"requires": {
|
6837 |
-
"
|
6838 |
-
"
|
|
|
|
|
|
|
|
|
|
|
6839 |
},
|
6840 |
"dependencies": {
|
6841 |
-
"
|
6842 |
-
"version": "2.
|
6843 |
-
"resolved": "https://registry.npmjs.org/
|
6844 |
-
"integrity": "
|
|
|
6845 |
"requires": {
|
6846 |
-
"
|
6847 |
-
"
|
6848 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6849 |
}
|
6850 |
}
|
6851 |
}
|
6852 |
},
|
6853 |
-
"
|
6854 |
-
"version": "
|
6855 |
-
"resolved": "https://registry.npmjs.org/
|
6856 |
-
"integrity": "
|
|
|
6857 |
"requires": {
|
6858 |
-
"
|
|
|
|
|
|
|
6859 |
}
|
6860 |
},
|
6861 |
-
"
|
6862 |
-
"version": "
|
6863 |
-
"resolved": "https://registry.npmjs.org/
|
6864 |
-
"integrity": "
|
6865 |
-
"dev": true
|
6866 |
-
},
|
6867 |
-
"lodash.defaults": {
|
6868 |
-
"version": "2.4.1",
|
6869 |
-
"resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-2.4.1.tgz",
|
6870 |
-
"integrity": "sha1-p+iIXwXmiFEUS24SqPNngCa8TFQ=",
|
6871 |
"requires": {
|
6872 |
-
"
|
6873 |
-
"lodash.keys": "~2.4.1"
|
6874 |
-
},
|
6875 |
-
"dependencies": {
|
6876 |
-
"lodash.keys": {
|
6877 |
-
"version": "2.4.1",
|
6878 |
-
"resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz",
|
6879 |
-
"integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=",
|
6880 |
-
"requires": {
|
6881 |
-
"lodash._isnative": "~2.4.1",
|
6882 |
-
"lodash._shimkeys": "~2.4.1",
|
6883 |
-
"lodash.isobject": "~2.4.1"
|
6884 |
-
}
|
6885 |
-
}
|
6886 |
}
|
6887 |
},
|
6888 |
-
"
|
6889 |
-
"version": "
|
6890 |
-
"resolved": "https://registry.npmjs.org/
|
6891 |
-
"integrity": "
|
|
|
6892 |
"requires": {
|
6893 |
-
"
|
|
|
|
|
|
|
|
|
6894 |
}
|
6895 |
},
|
6896 |
-
"
|
6897 |
-
"version": "
|
6898 |
-
"resolved": "https://registry.npmjs.org/
|
6899 |
-
"integrity": "
|
6900 |
-
"dev": true
|
6901 |
-
},
|
6902 |
-
"lodash.template": {
|
6903 |
-
"version": "4.5.0",
|
6904 |
-
"resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
|
6905 |
-
"integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
|
6906 |
"dev": true,
|
6907 |
"requires": {
|
6908 |
-
"
|
6909 |
-
"
|
|
|
|
|
|
|
|
|
6910 |
}
|
6911 |
},
|
6912 |
-
"
|
6913 |
-
"version": "
|
6914 |
-
"resolved": "https://registry.npmjs.org/
|
6915 |
-
"integrity": "sha512-
|
6916 |
"dev": true,
|
6917 |
"requires": {
|
6918 |
-
"
|
|
|
|
|
|
|
|
|
6919 |
}
|
6920 |
},
|
6921 |
-
"
|
6922 |
-
"version": "
|
6923 |
-
"resolved": "https://registry.npmjs.org/
|
6924 |
-
"integrity": "
|
|
|
6925 |
"requires": {
|
6926 |
-
"
|
|
|
|
|
|
|
6927 |
},
|
6928 |
"dependencies": {
|
6929 |
-
"
|
6930 |
-
"version": "2.
|
6931 |
-
"resolved": "https://registry.npmjs.org/
|
6932 |
-
"integrity": "
|
|
|
6933 |
"requires": {
|
6934 |
-
"
|
6935 |
-
"
|
6936 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6937 |
}
|
6938 |
}
|
6939 |
}
|
6940 |
},
|
6941 |
-
"
|
6942 |
-
"version": "
|
6943 |
-
"resolved": "https://registry.npmjs.org/
|
6944 |
-
"integrity": "sha512-
|
6945 |
-
"
|
6946 |
-
"js-tokens": "^3.0.0 || ^4.0.0"
|
6947 |
-
}
|
6948 |
},
|
6949 |
-
"
|
6950 |
-
"version": "
|
6951 |
-
"resolved": "https://registry.npmjs.org/
|
6952 |
-
"integrity": "
|
|
|
6953 |
"requires": {
|
6954 |
-
"
|
6955 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6956 |
}
|
6957 |
},
|
6958 |
-
"
|
6959 |
-
"version": "
|
6960 |
-
"resolved": "https://registry.npmjs.org/
|
6961 |
-
"integrity": "sha512-
|
6962 |
-
"dev": true
|
6963 |
-
},
|
6964 |
-
"lru-cache": {
|
6965 |
-
"version": "5.1.1",
|
6966 |
-
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
6967 |
-
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
6968 |
"dev": true,
|
6969 |
"requires": {
|
6970 |
-
"
|
6971 |
-
|
6972 |
-
|
6973 |
-
"
|
6974 |
-
|
6975 |
-
|
6976 |
-
|
6977 |
-
|
6978 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6979 |
}
|
6980 |
},
|
6981 |
-
"
|
6982 |
-
"version": "
|
6983 |
-
"resolved": "https://registry.npmjs.org/
|
6984 |
-
"integrity": "
|
6985 |
"dev": true,
|
6986 |
"requires": {
|
6987 |
-
"
|
|
|
6988 |
}
|
6989 |
},
|
6990 |
-
"
|
6991 |
-
"version": "
|
6992 |
-
"resolved": "https://registry.npmjs.org/
|
6993 |
-
"integrity": "sha512-
|
6994 |
"dev": true,
|
6995 |
"requires": {
|
6996 |
-
"
|
|
|
|
|
|
|
6997 |
}
|
6998 |
},
|
6999 |
-
"
|
7000 |
-
"version": "
|
7001 |
-
"resolved": "https://registry.npmjs.org/
|
7002 |
-
"integrity": "sha512-
|
7003 |
"dev": true,
|
7004 |
"requires": {
|
7005 |
-
"
|
7006 |
-
"
|
7007 |
-
"
|
7008 |
-
"
|
7009 |
-
"
|
7010 |
-
"
|
7011 |
-
"
|
7012 |
-
"
|
7013 |
-
"promise-retry": "^1.1.1",
|
7014 |
-
"socks-proxy-agent": "^4.0.0",
|
7015 |
-
"ssri": "^6.0.0"
|
7016 |
}
|
7017 |
},
|
7018 |
-
"
|
7019 |
-
"version": "
|
7020 |
-
"resolved": "https://registry.npmjs.org/
|
7021 |
-
"integrity": "sha512-
|
7022 |
"dev": true,
|
7023 |
"requires": {
|
7024 |
-
"
|
7025 |
}
|
7026 |
},
|
7027 |
-
"
|
7028 |
-
"version": "
|
7029 |
-
"resolved": "https://registry.npmjs.org/
|
7030 |
-
"integrity": "sha512-
|
7031 |
"dev": true
|
7032 |
},
|
7033 |
-
"
|
7034 |
-
"version": "
|
7035 |
-
"resolved": "https://registry.npmjs.org/
|
7036 |
-
"integrity": "sha512-
|
7037 |
"dev": true,
|
7038 |
"requires": {
|
7039 |
-
"
|
|
|
7040 |
}
|
7041 |
},
|
7042 |
-
"
|
7043 |
-
"version": "
|
7044 |
-
"resolved": "https://registry.npmjs.org/
|
7045 |
-
"integrity": "
|
7046 |
"dev": true
|
7047 |
},
|
7048 |
-
"
|
7049 |
-
"version": "
|
7050 |
-
"resolved": "https://registry.npmjs.org/
|
7051 |
-
"integrity": "
|
7052 |
-
|
7053 |
-
|
7054 |
-
|
7055 |
-
|
7056 |
-
|
|
|
|
|
|
|
7057 |
},
|
7058 |
-
"
|
7059 |
-
"version": "
|
7060 |
-
"resolved": "https://registry.npmjs.org/
|
7061 |
-
"integrity": "
|
7062 |
"dev": true,
|
7063 |
"requires": {
|
7064 |
-
"
|
|
|
|
|
7065 |
}
|
7066 |
},
|
7067 |
-
"
|
7068 |
-
"version": "
|
7069 |
-
"resolved": "https://registry.npmjs.org/
|
7070 |
-
"integrity": "
|
7071 |
"dev": true,
|
7072 |
"requires": {
|
7073 |
-
"
|
7074 |
-
"
|
7075 |
-
"
|
7076 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7077 |
},
|
7078 |
"dependencies": {
|
7079 |
-
"
|
7080 |
-
"version": "2.
|
7081 |
-
"resolved": "https://registry.npmjs.org/
|
7082 |
-
"integrity": "
|
7083 |
-
"dev": true,
|
7084 |
-
"requires": {
|
7085 |
-
"detect-file": "^1.0.0",
|
7086 |
-
"is-glob": "^3.1.0",
|
7087 |
-
"micromatch": "^3.0.4",
|
7088 |
-
"resolve-dir": "^1.0.1"
|
7089 |
-
}
|
7090 |
-
},
|
7091 |
-
"is-glob": {
|
7092 |
-
"version": "3.1.0",
|
7093 |
-
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
|
7094 |
-
"integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
|
7095 |
"dev": true,
|
7096 |
"requires": {
|
7097 |
-
"
|
|
|
|
|
7098 |
}
|
7099 |
}
|
7100 |
}
|
7101 |
},
|
7102 |
-
"
|
7103 |
-
"version": "
|
7104 |
-
"resolved": "https://registry.npmjs.org/
|
7105 |
-
"integrity": "sha512-
|
7106 |
-
"requires": {
|
7107 |
-
"css-mediaquery": "^0.1.2"
|
7108 |
-
}
|
7109 |
-
},
|
7110 |
-
"md5.js": {
|
7111 |
-
"version": "1.3.5",
|
7112 |
-
"resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
|
7113 |
-
"integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
|
7114 |
-
"dev": true,
|
7115 |
-
"requires": {
|
7116 |
-
"hash-base": "^3.0.0",
|
7117 |
-
"inherits": "^2.0.1",
|
7118 |
-
"safe-buffer": "^5.1.2"
|
7119 |
-
}
|
7120 |
-
},
|
7121 |
-
"mem": {
|
7122 |
-
"version": "4.3.0",
|
7123 |
-
"resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz",
|
7124 |
-
"integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==",
|
7125 |
"dev": true,
|
7126 |
"requires": {
|
7127 |
-
"
|
7128 |
-
"
|
7129 |
-
"
|
7130 |
-
|
7131 |
-
|
7132 |
-
|
7133 |
-
|
7134 |
-
|
7135 |
-
|
7136 |
-
|
7137 |
-
|
7138 |
-
|
7139 |
-
|
7140 |
-
|
7141 |
-
|
7142 |
-
|
7143 |
-
"
|
7144 |
-
"
|
7145 |
-
"
|
7146 |
-
"
|
7147 |
-
"
|
7148 |
-
"
|
7149 |
-
"
|
7150 |
-
"timers-ext": "^0.1.5"
|
7151 |
-
}
|
7152 |
-
},
|
7153 |
-
"memory-fs": {
|
7154 |
-
"version": "0.4.1",
|
7155 |
-
"resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
|
7156 |
-
"integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
|
7157 |
-
"dev": true,
|
7158 |
-
"requires": {
|
7159 |
-
"errno": "^0.1.3",
|
7160 |
-
"readable-stream": "^2.0.1"
|
7161 |
},
|
7162 |
"dependencies": {
|
7163 |
-
"
|
7164 |
-
"version": "1.0
|
7165 |
-
"resolved": "https://registry.npmjs.org/
|
7166 |
-
"integrity": "
|
7167 |
"dev": true
|
7168 |
},
|
7169 |
-
"
|
7170 |
-
"version": "
|
7171 |
-
"resolved": "
|
7172 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
7173 |
"dev": true,
|
7174 |
"requires": {
|
7175 |
-
"
|
7176 |
-
"
|
7177 |
-
"
|
7178 |
-
"process-nextick-args": "~2.0.0",
|
7179 |
-
"safe-buffer": "~5.1.1",
|
7180 |
-
"string_decoder": "~1.1.1",
|
7181 |
-
"util-deprecate": "~1.0.1"
|
7182 |
}
|
7183 |
},
|
7184 |
-
"
|
7185 |
-
"version": "
|
7186 |
-
"resolved": "
|
7187 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7188 |
"dev": true,
|
7189 |
"requires": {
|
7190 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7191 |
}
|
7192 |
}
|
7193 |
}
|
7194 |
},
|
7195 |
-
"
|
7196 |
-
"version": "
|
7197 |
-
"resolved": "https://registry.npmjs.org/
|
7198 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7199 |
"requires": {
|
7200 |
-
"
|
7201 |
-
"
|
7202 |
-
"
|
7203 |
-
"
|
7204 |
-
"
|
7205 |
-
"
|
7206 |
-
"
|
7207 |
-
"
|
7208 |
-
"
|
7209 |
-
"
|
|
|
|
|
|
|
7210 |
},
|
7211 |
"dependencies": {
|
7212 |
-
"
|
7213 |
-
"version": "
|
7214 |
-
"resolved": "https://registry.npmjs.org/
|
7215 |
-
"integrity": "
|
|
|
7216 |
}
|
7217 |
}
|
7218 |
},
|
7219 |
-
"
|
7220 |
-
"version": "
|
7221 |
-
"resolved": "https://registry.npmjs.org/
|
7222 |
-
"integrity": "sha512-
|
7223 |
"dev": true,
|
7224 |
"requires": {
|
7225 |
-
"
|
7226 |
-
"
|
7227 |
-
"
|
7228 |
-
"
|
7229 |
-
"
|
7230 |
-
"
|
7231 |
-
"
|
7232 |
-
"
|
7233 |
-
"
|
7234 |
-
"
|
7235 |
-
"
|
7236 |
-
"
|
7237 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7238 |
}
|
7239 |
},
|
7240 |
-
"
|
7241 |
-
"version": "
|
7242 |
-
"resolved": "https://registry.npmjs.org/
|
7243 |
-
"integrity": "sha512-
|
7244 |
"dev": true,
|
7245 |
"requires": {
|
7246 |
-
"
|
7247 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7248 |
}
|
7249 |
},
|
7250 |
-
"
|
7251 |
-
"version": "
|
7252 |
-
"resolved": "https://registry.npmjs.org/
|
7253 |
-
"integrity": "sha512
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7254 |
},
|
7255 |
-
"
|
7256 |
-
"version": "
|
7257 |
-
"resolved": "https://registry.npmjs.org/
|
7258 |
-
"integrity": "sha512-
|
|
|
7259 |
"requires": {
|
7260 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7261 |
}
|
7262 |
},
|
7263 |
-
"
|
7264 |
-
"version": "
|
7265 |
-
"resolved": "https://registry.npmjs.org/
|
7266 |
-
"integrity": "
|
7267 |
"dev": true
|
7268 |
},
|
7269 |
-
"
|
7270 |
-
"version": "
|
7271 |
-
"resolved": "https://registry.npmjs.org/
|
7272 |
-
"integrity": "sha512-
|
7273 |
-
"dev": true
|
7274 |
},
|
7275 |
-
"
|
7276 |
-
"version": "1.
|
7277 |
-
"resolved": "https://registry.npmjs.org/
|
7278 |
-
"integrity": "sha512-
|
7279 |
"dev": true
|
7280 |
},
|
7281 |
-
"
|
7282 |
-
"version": "
|
7283 |
-
"resolved": "https://registry.npmjs.org/
|
7284 |
-
"integrity": "
|
7285 |
-
"dev": true
|
7286 |
},
|
7287 |
-
"
|
7288 |
-
"version": "3.
|
7289 |
-
"resolved": "https://registry.npmjs.org/
|
7290 |
-
"integrity": "sha512-
|
|
|
7291 |
"requires": {
|
7292 |
-
"
|
|
|
7293 |
}
|
7294 |
},
|
7295 |
-
"
|
7296 |
-
"version": "1.
|
7297 |
-
"resolved": "
|
7298 |
-
"integrity": "sha1-
|
7299 |
},
|
7300 |
-
"
|
7301 |
-
"version": "
|
7302 |
-
"resolved": "https://registry.npmjs.org/
|
7303 |
-
"integrity": "sha512-
|
7304 |
-
"dev": true
|
7305 |
-
|
7306 |
-
|
7307 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7308 |
},
|
7309 |
"dependencies": {
|
7310 |
-
"
|
7311 |
-
"version": "
|
7312 |
-
"resolved": "https://registry.npmjs.org/
|
7313 |
-
"integrity": "sha512-
|
7314 |
"dev": true
|
7315 |
}
|
7316 |
}
|
7317 |
},
|
7318 |
-
"
|
7319 |
-
"version": "
|
7320 |
-
"resolved": "https://registry.npmjs.org/
|
7321 |
-
"integrity": "sha512-
|
7322 |
-
"dev": true
|
|
|
|
|
|
|
|
|
|
|
7323 |
"requires": {
|
7324 |
-
"
|
|
|
7325 |
}
|
7326 |
},
|
7327 |
-
"
|
|
|
|
|
|
|
|
|
|
|
7328 |
"version": "3.0.0",
|
7329 |
-
"resolved": "https://registry.npmjs.org/
|
7330 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7331 |
"dev": true,
|
7332 |
"requires": {
|
7333 |
-
"
|
7334 |
-
"duplexify": "^3.4.2",
|
7335 |
-
"end-of-stream": "^1.1.0",
|
7336 |
-
"flush-write-stream": "^1.0.0",
|
7337 |
-
"from2": "^2.1.0",
|
7338 |
-
"parallel-transform": "^1.1.0",
|
7339 |
-
"pump": "^3.0.0",
|
7340 |
-
"pumpify": "^1.3.3",
|
7341 |
-
"stream-each": "^1.1.0",
|
7342 |
-
"through2": "^2.0.0"
|
7343 |
}
|
7344 |
},
|
7345 |
-
"
|
7346 |
-
"version": "
|
7347 |
-
"resolved": "https://registry.npmjs.org/
|
7348 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7349 |
"dev": true,
|
7350 |
"requires": {
|
7351 |
-
"
|
7352 |
-
"is-extendable": "^1.0.1"
|
7353 |
-
},
|
7354 |
-
"dependencies": {
|
7355 |
-
"is-extendable": {
|
7356 |
-
"version": "1.0.1",
|
7357 |
-
"resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
|
7358 |
-
"integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
|
7359 |
-
"dev": true,
|
7360 |
-
"requires": {
|
7361 |
-
"is-plain-object": "^2.0.4"
|
7362 |
-
}
|
7363 |
-
}
|
7364 |
}
|
7365 |
},
|
7366 |
-
"
|
7367 |
-
"version": "
|
7368 |
-
"resolved": "
|
7369 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7370 |
"requires": {
|
7371 |
-
"
|
7372 |
-
|
7373 |
-
|
7374 |
-
"
|
7375 |
-
"version": "0.0.8",
|
7376 |
-
"resolved": "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
|
7377 |
-
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
|
7378 |
-
}
|
7379 |
}
|
7380 |
},
|
7381 |
-
"
|
7382 |
-
"version": "
|
7383 |
-
"resolved": "https://registry.npmjs.org/
|
7384 |
-
"integrity": "
|
7385 |
"dev": true,
|
7386 |
"requires": {
|
7387 |
-
"
|
7388 |
-
"
|
7389 |
-
"fs-write-stream-atomic": "^1.0.8",
|
7390 |
-
"mkdirp": "^0.5.1",
|
7391 |
-
"rimraf": "^2.5.4",
|
7392 |
-
"run-queue": "^1.0.3"
|
7393 |
}
|
7394 |
},
|
7395 |
-
"
|
7396 |
-
"version": "
|
7397 |
-
"resolved": "https://registry.npmjs.org/
|
7398 |
-
"integrity": "
|
7399 |
"dev": true
|
7400 |
},
|
7401 |
-
"
|
7402 |
-
"version": "
|
7403 |
-
"resolved": "
|
7404 |
-
"integrity": "
|
|
|
7405 |
"requires": {
|
7406 |
-
"
|
7407 |
}
|
7408 |
},
|
7409 |
-
"
|
7410 |
-
"version": "
|
7411 |
-
"resolved": "https://registry.npmjs.org/
|
7412 |
-
"integrity": "sha512-
|
7413 |
"dev": true
|
7414 |
},
|
7415 |
-
"
|
7416 |
-
"version": "
|
7417 |
-
"resolved": "https://registry.npmjs.org/
|
7418 |
-
"integrity": "sha512-
|
|
|
7419 |
},
|
7420 |
-
"
|
7421 |
-
"version": "
|
7422 |
-
"resolved": "https://registry.npmjs.org/
|
7423 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
7424 |
"dev": true,
|
7425 |
"requires": {
|
7426 |
-
"
|
7427 |
-
"
|
7428 |
-
"define-property": "^2.0.2",
|
7429 |
-
"extend-shallow": "^3.0.2",
|
7430 |
-
"fragment-cache": "^0.2.1",
|
7431 |
-
"is-windows": "^1.0.2",
|
7432 |
-
"kind-of": "^6.0.2",
|
7433 |
-
"object.pick": "^1.3.0",
|
7434 |
-
"regex-not": "^1.0.0",
|
7435 |
-
"snapdragon": "^0.8.1",
|
7436 |
-
"to-regex": "^3.0.1"
|
7437 |
-
}
|
7438 |
-
},
|
7439 |
-
"neo-async": {
|
7440 |
-
"version": "2.6.1",
|
7441 |
-
"resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz",
|
7442 |
-
"integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==",
|
7443 |
-
"dev": true
|
7444 |
-
},
|
7445 |
-
"nested-error-stacks": {
|
7446 |
-
"version": "2.0.1",
|
7447 |
-
"resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-2.0.1.tgz",
|
7448 |
-
"integrity": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==",
|
7449 |
-
"dev": true
|
7450 |
-
},
|
7451 |
-
"next-tick": {
|
7452 |
-
"version": "1.0.0",
|
7453 |
-
"resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz",
|
7454 |
-
"integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=",
|
7455 |
-
"dev": true
|
7456 |
-
},
|
7457 |
-
"nice-try": {
|
7458 |
-
"version": "1.0.5",
|
7459 |
-
"resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
|
7460 |
-
"integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
|
7461 |
-
"dev": true
|
7462 |
-
},
|
7463 |
-
"node-alias": {
|
7464 |
-
"version": "1.0.4",
|
7465 |
-
"resolved": "https://registry.npmjs.org/node-alias/-/node-alias-1.0.4.tgz",
|
7466 |
-
"integrity": "sha1-HxuRa1a56iQcATX5fO1pQPVW8pI=",
|
7467 |
-
"dev": true,
|
7468 |
-
"requires": {
|
7469 |
-
"chalk": "^1.1.1",
|
7470 |
-
"lodash": "^4.2.0"
|
7471 |
-
},
|
7472 |
-
"dependencies": {
|
7473 |
-
"ansi-styles": {
|
7474 |
-
"version": "2.2.1",
|
7475 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
|
7476 |
-
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
|
7477 |
-
"dev": true
|
7478 |
-
},
|
7479 |
-
"chalk": {
|
7480 |
-
"version": "1.1.3",
|
7481 |
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
|
7482 |
-
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
|
7483 |
-
"dev": true,
|
7484 |
-
"requires": {
|
7485 |
-
"ansi-styles": "^2.2.1",
|
7486 |
-
"escape-string-regexp": "^1.0.2",
|
7487 |
-
"has-ansi": "^2.0.0",
|
7488 |
-
"strip-ansi": "^3.0.0",
|
7489 |
-
"supports-color": "^2.0.0"
|
7490 |
-
}
|
7491 |
-
},
|
7492 |
-
"supports-color": {
|
7493 |
-
"version": "2.0.0",
|
7494 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
|
7495 |
-
"integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
|
7496 |
-
"dev": true
|
7497 |
-
}
|
7498 |
}
|
7499 |
},
|
7500 |
-
"
|
7501 |
-
"version": "
|
7502 |
-
"resolved": "https://registry.npmjs.org/
|
7503 |
-
"integrity": "sha512-
|
7504 |
"dev": true,
|
7505 |
"requires": {
|
7506 |
-
"
|
7507 |
-
"json-parse-better-errors": "^1.0.0",
|
7508 |
-
"safe-buffer": "^5.1.1"
|
7509 |
}
|
7510 |
},
|
7511 |
-
"
|
7512 |
-
"version": "
|
7513 |
-
"resolved": "https://registry.npmjs.org/
|
7514 |
-
"integrity": "
|
7515 |
-
"
|
7516 |
-
"fstream": "^1.0.0",
|
7517 |
-
"glob": "^7.0.3",
|
7518 |
-
"graceful-fs": "^4.1.2",
|
7519 |
-
"mkdirp": "^0.5.0",
|
7520 |
-
"nopt": "2 || 3",
|
7521 |
-
"npmlog": "0 || 1 || 2 || 3 || 4",
|
7522 |
-
"osenv": "0",
|
7523 |
-
"request": "^2.87.0",
|
7524 |
-
"rimraf": "2",
|
7525 |
-
"semver": "~5.3.0",
|
7526 |
-
"tar": "^2.0.0",
|
7527 |
-
"which": "1"
|
7528 |
-
},
|
7529 |
-
"dependencies": {
|
7530 |
-
"semver": {
|
7531 |
-
"version": "5.3.0",
|
7532 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz",
|
7533 |
-
"integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8="
|
7534 |
-
}
|
7535 |
-
}
|
7536 |
},
|
7537 |
-
"
|
7538 |
-
"version": "
|
7539 |
-
"resolved": "https://registry.npmjs.org/
|
7540 |
-
"integrity": "
|
7541 |
"dev": true,
|
7542 |
"requires": {
|
7543 |
-
"
|
7544 |
-
"browserify-zlib": "^0.2.0",
|
7545 |
-
"buffer": "^4.3.0",
|
7546 |
-
"console-browserify": "^1.1.0",
|
7547 |
-
"constants-browserify": "^1.0.0",
|
7548 |
-
"crypto-browserify": "^3.11.0",
|
7549 |
-
"domain-browser": "^1.1.1",
|
7550 |
-
"events": "^3.0.0",
|
7551 |
-
"https-browserify": "^1.0.0",
|
7552 |
-
"os-browserify": "^0.3.0",
|
7553 |
-
"path-browserify": "0.0.1",
|
7554 |
-
"process": "^0.11.10",
|
7555 |
-
"punycode": "^1.2.4",
|
7556 |
-
"querystring-es3": "^0.2.0",
|
7557 |
-
"readable-stream": "^2.3.3",
|
7558 |
-
"stream-browserify": "^2.0.1",
|
7559 |
-
"stream-http": "^2.7.2",
|
7560 |
-
"string_decoder": "^1.0.0",
|
7561 |
-
"timers-browserify": "^2.0.4",
|
7562 |
-
"tty-browserify": "0.0.0",
|
7563 |
-
"url": "^0.11.0",
|
7564 |
-
"util": "^0.11.0",
|
7565 |
-
"vm-browserify": "^1.0.1"
|
7566 |
},
|
7567 |
"dependencies": {
|
7568 |
"isarray": {
|
@@ -7571,12 +10718,6 @@
|
|
7571 |
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
|
7572 |
"dev": true
|
7573 |
},
|
7574 |
-
"punycode": {
|
7575 |
-
"version": "1.4.1",
|
7576 |
-
"resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz",
|
7577 |
-
"integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=",
|
7578 |
-
"dev": true
|
7579 |
-
},
|
7580 |
"readable-stream": {
|
7581 |
"version": "2.3.6",
|
7582 |
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
|
@@ -7590,1450 +10731,1240 @@
|
|
7590 |
"safe-buffer": "~5.1.1",
|
7591 |
"string_decoder": "~1.1.1",
|
7592 |
"util-deprecate": "~1.0.1"
|
7593 |
-
},
|
7594 |
-
"dependencies": {
|
7595 |
-
"string_decoder": {
|
7596 |
-
"version": "1.1.1",
|
7597 |
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
7598 |
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
7599 |
-
"dev": true,
|
7600 |
-
"requires": {
|
7601 |
-
"safe-buffer": "~5.1.0"
|
7602 |
-
}
|
7603 |
-
}
|
7604 |
}
|
7605 |
},
|
7606 |
"string_decoder": {
|
7607 |
-
"version": "1.
|
7608 |
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.
|
7609 |
-
"integrity": "sha512-
|
7610 |
"dev": true,
|
7611 |
"requires": {
|
7612 |
-
"safe-buffer": "~5.
|
7613 |
-
},
|
7614 |
-
"dependencies": {
|
7615 |
-
"safe-buffer": {
|
7616 |
-
"version": "5.2.0",
|
7617 |
-
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz",
|
7618 |
-
"integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==",
|
7619 |
-
"dev": true
|
7620 |
-
}
|
7621 |
}
|
7622 |
}
|
7623 |
}
|
7624 |
},
|
7625 |
-
"
|
7626 |
-
"version": "
|
7627 |
-
"resolved": "https://registry.npmjs.org/
|
7628 |
-
"integrity": "
|
7629 |
-
"dev": true,
|
7630 |
"requires": {
|
7631 |
-
"
|
7632 |
-
"is-wsl": "^1.1.0",
|
7633 |
-
"semver": "^5.5.0",
|
7634 |
-
"shellwords": "^0.1.1",
|
7635 |
-
"which": "^1.3.0"
|
7636 |
}
|
7637 |
},
|
7638 |
-
"
|
7639 |
-
"version": "1.
|
7640 |
-
"resolved": "https://registry.npmjs.org/
|
7641 |
-
"integrity": "
|
7642 |
"dev": true,
|
7643 |
"requires": {
|
7644 |
-
"
|
7645 |
-
},
|
7646 |
-
"dependencies": {
|
7647 |
-
"semver": {
|
7648 |
-
"version": "6.3.0",
|
7649 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
7650 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
7651 |
-
"dev": true
|
7652 |
-
}
|
7653 |
}
|
7654 |
},
|
7655 |
-
"
|
7656 |
-
"version": "
|
7657 |
-
"resolved": "https://registry.npmjs.org/
|
7658 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7659 |
"requires": {
|
7660 |
-
"
|
7661 |
-
"
|
7662 |
-
"cross-spawn": "^3.0.0",
|
7663 |
-
"gaze": "^1.0.0",
|
7664 |
-
"get-stdin": "^4.0.1",
|
7665 |
-
"glob": "^7.0.3",
|
7666 |
-
"in-publish": "^2.0.0",
|
7667 |
-
"lodash": "^4.17.15",
|
7668 |
-
"meow": "^3.7.0",
|
7669 |
-
"mkdirp": "^0.5.1",
|
7670 |
-
"nan": "^2.13.2",
|
7671 |
-
"node-gyp": "^3.8.0",
|
7672 |
-
"npmlog": "^4.0.0",
|
7673 |
-
"request": "^2.88.0",
|
7674 |
-
"sass-graph": "^2.2.4",
|
7675 |
-
"stdout-stream": "^1.4.0",
|
7676 |
-
"true-case-path": "^1.0.2"
|
7677 |
-
},
|
7678 |
-
"dependencies": {
|
7679 |
-
"ansi-styles": {
|
7680 |
-
"version": "2.2.1",
|
7681 |
-
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
|
7682 |
-
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
|
7683 |
-
},
|
7684 |
-
"chalk": {
|
7685 |
-
"version": "1.1.3",
|
7686 |
-
"resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
|
7687 |
-
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
|
7688 |
-
"requires": {
|
7689 |
-
"ansi-styles": "^2.2.1",
|
7690 |
-
"escape-string-regexp": "^1.0.2",
|
7691 |
-
"has-ansi": "^2.0.0",
|
7692 |
-
"strip-ansi": "^3.0.0",
|
7693 |
-
"supports-color": "^2.0.0"
|
7694 |
-
}
|
7695 |
-
},
|
7696 |
-
"supports-color": {
|
7697 |
-
"version": "2.0.0",
|
7698 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
|
7699 |
-
"integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc="
|
7700 |
-
}
|
7701 |
}
|
7702 |
},
|
7703 |
-
"
|
7704 |
-
"version": "2.
|
7705 |
-
"resolved": "https://registry.npmjs.org/
|
7706 |
-
"integrity": "sha512-
|
7707 |
"dev": true,
|
7708 |
"requires": {
|
7709 |
-
"
|
7710 |
-
"
|
7711 |
-
|
7712 |
-
},
|
7713 |
-
"nopt": {
|
7714 |
-
"version": "3.0.6",
|
7715 |
-
"resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz",
|
7716 |
-
"integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=",
|
7717 |
-
"requires": {
|
7718 |
-
"abbrev": "1"
|
7719 |
}
|
7720 |
},
|
7721 |
-
"
|
7722 |
-
"version": "
|
7723 |
-
"resolved": "https://registry.npmjs.org/
|
7724 |
-
"integrity": "sha512-
|
|
|
7725 |
"requires": {
|
7726 |
-
"
|
7727 |
-
"
|
7728 |
-
"
|
7729 |
-
"
|
|
|
|
|
|
|
|
|
7730 |
}
|
7731 |
},
|
7732 |
-
"
|
7733 |
-
"version": "
|
7734 |
-
"resolved": "https://registry.npmjs.org/
|
7735 |
-
"integrity": "
|
7736 |
-
"dev": true
|
7737 |
-
},
|
7738 |
-
"normalize-range": {
|
7739 |
-
"version": "0.1.2",
|
7740 |
-
"resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
|
7741 |
-
"integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=",
|
7742 |
"dev": true
|
7743 |
},
|
7744 |
-
"
|
7745 |
-
"version": "4.
|
7746 |
-
"resolved": "https://registry.npmjs.org/
|
7747 |
-
"integrity": "sha512-
|
7748 |
"dev": true
|
7749 |
},
|
7750 |
-
"
|
7751 |
-
"version": "
|
7752 |
-
"resolved": "
|
7753 |
-
"integrity": "
|
7754 |
-
"dev": true,
|
7755 |
-
"requires": {
|
7756 |
-
"once": "^1.3.2"
|
7757 |
-
}
|
7758 |
-
},
|
7759 |
-
"npm-bundled": {
|
7760 |
-
"version": "1.1.1",
|
7761 |
-
"resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.1.tgz",
|
7762 |
-
"integrity": "sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA==",
|
7763 |
-
"dev": true,
|
7764 |
-
"requires": {
|
7765 |
-
"npm-normalize-package-bin": "^1.0.1"
|
7766 |
-
}
|
7767 |
-
},
|
7768 |
-
"npm-check-updates": {
|
7769 |
-
"version": "3.2.2",
|
7770 |
-
"resolved": "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-3.2.2.tgz",
|
7771 |
-
"integrity": "sha512-smZLGQWYbNOQVL787LwxTKakhTll/GZ4EwlKRfskD+eTCSpxdwpbkUHbT0QxyCf1uZw86TXeAFGw8ETzmW3Fqw==",
|
7772 |
-
"dev": true,
|
7773 |
"requires": {
|
7774 |
-
"
|
7775 |
-
"
|
7776 |
-
"
|
7777 |
-
"
|
7778 |
-
"
|
7779 |
-
"find-up": "4.1.0",
|
7780 |
-
"get-stdin": "^7.0.0",
|
7781 |
-
"json-parse-helpfulerror": "^1.0.3",
|
7782 |
-
"libnpmconfig": "^1.2.1",
|
7783 |
-
"lodash": "^4.17.15",
|
7784 |
-
"node-alias": "^1.0.4",
|
7785 |
-
"pacote": "^9.5.8",
|
7786 |
-
"progress": "^2.0.3",
|
7787 |
-
"prompts": "^2.2.1",
|
7788 |
-
"rc-config-loader": "^2.0.4",
|
7789 |
-
"requireg": "^0.2.2",
|
7790 |
-
"semver": "^6.3.0",
|
7791 |
-
"semver-utils": "^1.1.4",
|
7792 |
-
"spawn-please": "^0.3.0",
|
7793 |
-
"update-notifier": "^3.0.1"
|
7794 |
},
|
7795 |
"dependencies": {
|
7796 |
-
"
|
7797 |
-
"version": "
|
7798 |
-
"resolved": "https://registry.npmjs.org/
|
7799 |
-
"integrity": "sha512-
|
7800 |
-
"dev": true,
|
7801 |
-
"requires": {
|
7802 |
-
"ansi-styles": "^3.2.1",
|
7803 |
-
"escape-string-regexp": "^1.0.5",
|
7804 |
-
"supports-color": "^5.3.0"
|
7805 |
-
}
|
7806 |
-
},
|
7807 |
-
"commander": {
|
7808 |
-
"version": "3.0.2",
|
7809 |
-
"resolved": "https://registry.npmjs.org/commander/-/commander-3.0.2.tgz",
|
7810 |
-
"integrity": "sha512-Gar0ASD4BDyKC4hl4DwHqDrmvjoxWKZigVnAbn5H1owvm4CxCPdb0HQDehwNYMJpla5+M2tPmPARzhtYuwpHow==",
|
7811 |
-
"dev": true
|
7812 |
-
},
|
7813 |
-
"find-up": {
|
7814 |
-
"version": "4.1.0",
|
7815 |
-
"resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
|
7816 |
-
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
|
7817 |
-
"dev": true,
|
7818 |
-
"requires": {
|
7819 |
-
"locate-path": "^5.0.0",
|
7820 |
-
"path-exists": "^4.0.0"
|
7821 |
-
}
|
7822 |
-
},
|
7823 |
-
"get-stdin": {
|
7824 |
-
"version": "7.0.0",
|
7825 |
-
"resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-7.0.0.tgz",
|
7826 |
-
"integrity": "sha512-zRKcywvrXlXsA0v0i9Io4KDRaAw7+a1ZpjRwl9Wox8PFlVCCHra7E9c4kqXCoCM9nR5tBkaTTZRBoCm60bFqTQ==",
|
7827 |
-
"dev": true
|
7828 |
},
|
7829 |
-
"
|
7830 |
-
"version": "
|
7831 |
-
"resolved": "
|
7832 |
-
"integrity": "
|
7833 |
-
"dev": true,
|
7834 |
-
"requires": {
|
7835 |
-
"p-locate": "^4.1.0"
|
7836 |
-
}
|
7837 |
},
|
7838 |
-
"
|
7839 |
-
"version": "
|
7840 |
-
"resolved": "https://registry.npmjs.org/
|
7841 |
-
"integrity": "
|
7842 |
-
"dev": true,
|
7843 |
"requires": {
|
7844 |
-
"
|
7845 |
}
|
7846 |
-
},
|
7847 |
-
"path-exists": {
|
7848 |
-
"version": "4.0.0",
|
7849 |
-
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
7850 |
-
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
|
7851 |
-
"dev": true
|
7852 |
-
},
|
7853 |
-
"semver": {
|
7854 |
-
"version": "6.3.0",
|
7855 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
7856 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
7857 |
-
"dev": true
|
7858 |
}
|
7859 |
}
|
7860 |
},
|
7861 |
-
"
|
7862 |
-
"version": "
|
7863 |
-
"resolved": "https://registry.npmjs.org/
|
7864 |
-
"integrity": "sha512-
|
7865 |
"dev": true
|
7866 |
},
|
7867 |
-
"
|
7868 |
-
"version": "
|
7869 |
-
"resolved": "https://registry.npmjs.org/
|
7870 |
-
"integrity": "sha512-
|
7871 |
"dev": true,
|
7872 |
"requires": {
|
7873 |
-
"
|
7874 |
-
"
|
7875 |
-
"
|
7876 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7877 |
}
|
7878 |
},
|
7879 |
-
"
|
7880 |
-
"version": "
|
7881 |
-
"resolved": "https://registry.npmjs.org/
|
7882 |
-
"integrity": "sha512-
|
7883 |
"dev": true,
|
7884 |
"requires": {
|
7885 |
-
"
|
7886 |
-
"
|
7887 |
}
|
7888 |
},
|
7889 |
-
"
|
7890 |
-
"version": "
|
7891 |
-
"resolved": "https://registry.npmjs.org/
|
7892 |
-
"integrity": "sha512-
|
7893 |
-
|
|
|
|
|
|
|
|
|
7894 |
"requires": {
|
7895 |
-
"
|
7896 |
-
"npm-package-arg": "^6.0.0",
|
7897 |
-
"semver": "^5.4.1"
|
7898 |
}
|
7899 |
},
|
7900 |
-
"
|
7901 |
-
"version": "4.
|
7902 |
-
"resolved": "https://registry.npmjs.org/
|
7903 |
-
"integrity": "
|
7904 |
-
|
7905 |
-
|
7906 |
-
|
7907 |
-
|
7908 |
-
|
7909 |
-
|
7910 |
-
|
7911 |
-
|
7912 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7913 |
},
|
7914 |
"dependencies": {
|
7915 |
-
"
|
7916 |
-
"version": "
|
7917 |
-
"resolved": "https://registry.npmjs.org/
|
7918 |
-
"integrity": "
|
7919 |
-
"
|
|
|
|
|
|
|
|
|
7920 |
}
|
7921 |
}
|
7922 |
},
|
7923 |
-
"
|
7924 |
-
"version": "2.
|
7925 |
-
"resolved": "https://registry.npmjs.org/
|
7926 |
-
"integrity": "sha1-
|
7927 |
-
"dev": true,
|
7928 |
-
"requires": {
|
7929 |
-
"path-key": "^2.0.0"
|
7930 |
-
}
|
7931 |
-
},
|
7932 |
-
"npmlog": {
|
7933 |
-
"version": "4.1.2",
|
7934 |
-
"resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz",
|
7935 |
-
"integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==",
|
7936 |
"requires": {
|
7937 |
-
"
|
7938 |
-
"console-control-strings": "~1.1.0",
|
7939 |
-
"gauge": "~2.7.3",
|
7940 |
-
"set-blocking": "~2.0.0"
|
7941 |
}
|
7942 |
},
|
7943 |
-
"
|
7944 |
-
"version": "
|
7945 |
-
"resolved": "https://registry.npmjs.org/
|
7946 |
-
"integrity": "sha1-
|
7947 |
"dev": true
|
7948 |
},
|
7949 |
-
"
|
7950 |
-
"version": "
|
7951 |
-
"resolved": "https://registry.npmjs.org/
|
7952 |
-
"integrity": "sha1-
|
7953 |
-
},
|
7954 |
-
"oauth-sign": {
|
7955 |
-
"version": "0.9.0",
|
7956 |
-
"resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
|
7957 |
-
"integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="
|
7958 |
-
},
|
7959 |
-
"object-assign": {
|
7960 |
-
"version": "4.1.1",
|
7961 |
-
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
7962 |
-
"integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
|
7963 |
-
},
|
7964 |
-
"object-copy": {
|
7965 |
-
"version": "0.1.0",
|
7966 |
-
"resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz",
|
7967 |
-
"integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=",
|
7968 |
-
"dev": true,
|
7969 |
"requires": {
|
7970 |
-
"
|
7971 |
-
"
|
7972 |
-
"kind-of": "^3.0.3"
|
7973 |
},
|
7974 |
"dependencies": {
|
7975 |
-
"
|
7976 |
-
"version": "
|
7977 |
-
"resolved": "https://registry.npmjs.org/
|
7978 |
-
"integrity": "sha1-
|
7979 |
-
"dev": true,
|
7980 |
-
"requires": {
|
7981 |
-
"is-descriptor": "^0.1.0"
|
7982 |
-
}
|
7983 |
-
},
|
7984 |
-
"kind-of": {
|
7985 |
-
"version": "3.2.2",
|
7986 |
-
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
|
7987 |
-
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
|
7988 |
-
"dev": true,
|
7989 |
"requires": {
|
7990 |
-
"
|
|
|
|
|
7991 |
}
|
7992 |
}
|
7993 |
}
|
7994 |
},
|
7995 |
-
"
|
7996 |
-
"version": "
|
7997 |
-
"resolved": "https://registry.npmjs.org/
|
7998 |
-
"integrity": "
|
7999 |
"dev": true
|
8000 |
},
|
8001 |
-
"
|
8002 |
-
"version": "
|
8003 |
-
"resolved": "https://registry.npmjs.org/
|
8004 |
-
"integrity": "sha1
|
8005 |
-
"dev": true
|
8006 |
-
"requires": {
|
8007 |
-
"isobject": "^3.0.0"
|
8008 |
-
}
|
8009 |
},
|
8010 |
-
"
|
8011 |
-
"version": "4.
|
8012 |
-
"resolved": "https://registry.npmjs.org/
|
8013 |
-
"integrity": "
|
8014 |
-
"dev": true
|
8015 |
-
"requires": {
|
8016 |
-
"define-properties": "^1.1.2",
|
8017 |
-
"function-bind": "^1.1.1",
|
8018 |
-
"has-symbols": "^1.0.0",
|
8019 |
-
"object-keys": "^1.0.11"
|
8020 |
-
}
|
8021 |
},
|
8022 |
-
"
|
8023 |
-
"version": "
|
8024 |
-
"resolved": "https://registry.npmjs.org/
|
8025 |
-
"integrity": "sha1-
|
8026 |
-
"dev": true,
|
8027 |
"requires": {
|
8028 |
-
"
|
8029 |
-
"array-slice": "^1.0.0",
|
8030 |
-
"for-own": "^1.0.0",
|
8031 |
-
"isobject": "^3.0.0"
|
8032 |
}
|
8033 |
},
|
8034 |
-
"
|
8035 |
-
"version": "
|
8036 |
-
"resolved": "https://registry.npmjs.org/
|
8037 |
-
"integrity": "sha1-
|
8038 |
-
"dev": true
|
8039 |
-
"requires": {
|
8040 |
-
"for-own": "^1.0.0",
|
8041 |
-
"make-iterator": "^1.0.0"
|
8042 |
-
}
|
8043 |
},
|
8044 |
-
"
|
8045 |
-
"version": "
|
8046 |
-
"resolved": "https://registry.npmjs.org/
|
8047 |
-
"integrity": "sha1-
|
|
|
|
|
|
|
|
|
|
|
|
|
8048 |
"dev": true,
|
8049 |
"requires": {
|
8050 |
-
"
|
|
|
8051 |
}
|
8052 |
},
|
8053 |
-
"
|
8054 |
-
"version": "
|
8055 |
-
"resolved": "https://registry.npmjs.org/
|
8056 |
-
"integrity": "
|
8057 |
"dev": true,
|
8058 |
"requires": {
|
8059 |
-
"
|
8060 |
-
"make-iterator": "^1.0.0"
|
8061 |
}
|
8062 |
},
|
8063 |
-
"
|
8064 |
-
"version": "
|
8065 |
-
"resolved": "https://registry.npmjs.org/
|
8066 |
-
"integrity": "sha1-
|
|
|
|
|
|
|
|
|
|
|
|
|
8067 |
"requires": {
|
8068 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8069 |
}
|
8070 |
},
|
8071 |
-
"
|
8072 |
-
"version": "
|
8073 |
-
"resolved": "https://registry.npmjs.org/
|
8074 |
-
"integrity": "
|
8075 |
"dev": true,
|
8076 |
"requires": {
|
8077 |
-
"
|
8078 |
},
|
8079 |
"dependencies": {
|
8080 |
-
"
|
8081 |
-
"version": "
|
8082 |
-
"resolved": "https://registry.npmjs.org/
|
8083 |
-
"integrity": "
|
8084 |
-
"dev": true
|
8085 |
-
},
|
8086 |
-
"readable-stream": {
|
8087 |
-
"version": "2.3.6",
|
8088 |
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
|
8089 |
-
"integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
|
8090 |
"dev": true,
|
8091 |
"requires": {
|
8092 |
-
"
|
8093 |
-
"
|
8094 |
-
"
|
8095 |
-
"process-nextick-args": "~2.0.0",
|
8096 |
-
"safe-buffer": "~5.1.1",
|
8097 |
-
"string_decoder": "~1.1.1",
|
8098 |
-
"util-deprecate": "~1.0.1"
|
8099 |
-
}
|
8100 |
-
},
|
8101 |
-
"string_decoder": {
|
8102 |
-
"version": "1.1.1",
|
8103 |
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
8104 |
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
8105 |
-
"dev": true,
|
8106 |
-
"requires": {
|
8107 |
-
"safe-buffer": "~5.1.0"
|
8108 |
}
|
8109 |
}
|
8110 |
}
|
8111 |
},
|
8112 |
-
"
|
8113 |
-
"version": "0.
|
8114 |
-
"resolved": "https://registry.npmjs.org/
|
8115 |
-
"integrity": "
|
8116 |
"dev": true
|
8117 |
},
|
8118 |
-
"
|
8119 |
-
"version": "1.0.2",
|
8120 |
-
"resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz",
|
8121 |
-
"integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M="
|
8122 |
-
},
|
8123 |
-
"os-locale": {
|
8124 |
"version": "1.4.0",
|
8125 |
-
"resolved": "https://registry.npmjs.org/
|
8126 |
-
"integrity": "
|
8127 |
"requires": {
|
8128 |
-
"
|
8129 |
}
|
8130 |
},
|
8131 |
-
"
|
8132 |
-
"version": "1.0
|
8133 |
-
"resolved": "https://registry.npmjs.org/
|
8134 |
-
"integrity": "sha1-
|
8135 |
-
},
|
8136 |
-
"osenv": {
|
8137 |
-
"version": "0.1.5",
|
8138 |
-
"resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz",
|
8139 |
-
"integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==",
|
8140 |
"requires": {
|
8141 |
-
"
|
8142 |
-
"
|
8143 |
}
|
8144 |
},
|
8145 |
-
"
|
8146 |
-
"version": "1.1
|
8147 |
-
"resolved": "https://registry.npmjs.org/
|
8148 |
-
"integrity": "sha512-
|
8149 |
-
"dev": true
|
8150 |
-
},
|
8151 |
-
"p-defer": {
|
8152 |
-
"version": "1.0.0",
|
8153 |
-
"resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz",
|
8154 |
-
"integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=",
|
8155 |
-
"dev": true
|
8156 |
-
},
|
8157 |
-
"p-finally": {
|
8158 |
-
"version": "1.0.0",
|
8159 |
-
"resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
|
8160 |
-
"integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=",
|
8161 |
-
"dev": true
|
8162 |
-
},
|
8163 |
-
"p-is-promise": {
|
8164 |
-
"version": "2.1.0",
|
8165 |
-
"resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz",
|
8166 |
-
"integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==",
|
8167 |
"dev": true
|
8168 |
},
|
8169 |
-
"
|
8170 |
-
"version": "
|
8171 |
-
"resolved": "https://registry.npmjs.org/
|
8172 |
-
"integrity": "sha512-
|
8173 |
"dev": true,
|
8174 |
"requires": {
|
8175 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8176 |
}
|
8177 |
},
|
8178 |
-
"
|
8179 |
-
"version": "
|
8180 |
-
"resolved": "https://registry.npmjs.org/
|
8181 |
-
"integrity": "
|
8182 |
"dev": true,
|
8183 |
"requires": {
|
8184 |
-
"
|
8185 |
}
|
8186 |
},
|
8187 |
-
"
|
8188 |
-
"version": "
|
8189 |
-
"resolved": "https://registry.npmjs.org/
|
8190 |
-
"integrity": "sha512-
|
8191 |
-
"dev": true
|
8192 |
-
},
|
8193 |
-
"package-json": {
|
8194 |
-
"version": "6.5.0",
|
8195 |
-
"resolved": "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz",
|
8196 |
-
"integrity": "sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==",
|
8197 |
"dev": true,
|
8198 |
"requires": {
|
8199 |
-
"
|
8200 |
-
"registry-auth-token": "^4.0.0",
|
8201 |
-
"registry-url": "^5.0.0",
|
8202 |
-
"semver": "^6.2.0"
|
8203 |
-
},
|
8204 |
-
"dependencies": {
|
8205 |
-
"semver": {
|
8206 |
-
"version": "6.3.0",
|
8207 |
-
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
8208 |
-
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
8209 |
-
"dev": true
|
8210 |
-
}
|
8211 |
}
|
8212 |
},
|
8213 |
-
"
|
8214 |
-
"version": "
|
8215 |
-
"resolved": "https://registry.npmjs.org/
|
8216 |
-
"integrity": "sha512-
|
8217 |
"dev": true,
|
8218 |
"requires": {
|
8219 |
-
"
|
8220 |
-
"cacache": "^12.0.
|
8221 |
-
"
|
8222 |
-
"
|
8223 |
-
"
|
8224 |
-
"glob": "^7.1.3",
|
8225 |
-
"infer-owner": "^1.0.4",
|
8226 |
"lru-cache": "^5.1.1",
|
8227 |
-
"make-fetch-happen": "^5.0.0",
|
8228 |
-
"minimatch": "^3.0.4",
|
8229 |
-
"minipass": "^2.3.5",
|
8230 |
"mississippi": "^3.0.0",
|
8231 |
-
"
|
8232 |
-
"normalize-package-data": "^2.4.0",
|
8233 |
-
"npm-normalize-package-bin": "^1.0.0",
|
8234 |
-
"npm-package-arg": "^6.1.0",
|
8235 |
-
"npm-packlist": "^1.1.12",
|
8236 |
-
"npm-pick-manifest": "^3.0.0",
|
8237 |
-
"npm-registry-fetch": "^4.0.0",
|
8238 |
-
"osenv": "^0.1.5",
|
8239 |
-
"promise-inflight": "^1.0.1",
|
8240 |
"promise-retry": "^1.1.1",
|
8241 |
-
"
|
8242 |
-
"
|
8243 |
-
"safe-buffer": "^5.1.2",
|
8244 |
-
"semver": "^5.6.0",
|
8245 |
-
"ssri": "^6.0.1",
|
8246 |
-
"tar": "^4.4.10",
|
8247 |
-
"unique-filename": "^1.1.1",
|
8248 |
-
"which": "^1.3.1"
|
8249 |
-
},
|
8250 |
-
"dependencies": {
|
8251 |
-
"tar": {
|
8252 |
-
"version": "4.4.13",
|
8253 |
-
"resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz",
|
8254 |
-
"integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==",
|
8255 |
-
"dev": true,
|
8256 |
-
"requires": {
|
8257 |
-
"chownr": "^1.1.1",
|
8258 |
-
"fs-minipass": "^1.2.5",
|
8259 |
-
"minipass": "^2.8.6",
|
8260 |
-
"minizlib": "^1.2.1",
|
8261 |
-
"mkdirp": "^0.5.0",
|
8262 |
-
"safe-buffer": "^5.1.2",
|
8263 |
-
"yallist": "^3.0.3"
|
8264 |
-
}
|
8265 |
-
},
|
8266 |
-
"yallist": {
|
8267 |
-
"version": "3.1.1",
|
8268 |
-
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
8269 |
-
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
|
8270 |
-
"dev": true
|
8271 |
-
}
|
8272 |
}
|
8273 |
},
|
8274 |
-
"
|
8275 |
-
"version": "1.0.
|
8276 |
-
"resolved": "https://registry.npmjs.org/
|
8277 |
-
"integrity": "sha512-
|
8278 |
-
"dev": true
|
8279 |
-
},
|
8280 |
-
"parallel-transform": {
|
8281 |
-
"version": "1.2.0",
|
8282 |
-
"resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz",
|
8283 |
-
"integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==",
|
8284 |
"dev": true,
|
8285 |
"requires": {
|
8286 |
-
"
|
8287 |
-
"inherits": "^2.0.3",
|
8288 |
-
"readable-stream": "^2.1.5"
|
8289 |
-
},
|
8290 |
-
"dependencies": {
|
8291 |
-
"isarray": {
|
8292 |
-
"version": "1.0.0",
|
8293 |
-
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
8294 |
-
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
|
8295 |
-
"dev": true
|
8296 |
-
},
|
8297 |
-
"readable-stream": {
|
8298 |
-
"version": "2.3.6",
|
8299 |
-
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
|
8300 |
-
"integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
|
8301 |
-
"dev": true,
|
8302 |
-
"requires": {
|
8303 |
-
"core-util-is": "~1.0.0",
|
8304 |
-
"inherits": "~2.0.3",
|
8305 |
-
"isarray": "~1.0.0",
|
8306 |
-
"process-nextick-args": "~2.0.0",
|
8307 |
-
"safe-buffer": "~5.1.1",
|
8308 |
-
"string_decoder": "~1.1.1",
|
8309 |
-
"util-deprecate": "~1.0.1"
|
8310 |
-
}
|
8311 |
-
},
|
8312 |
-
"string_decoder": {
|
8313 |
-
"version": "1.1.1",
|
8314 |
-
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
8315 |
-
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
8316 |
-
"dev": true,
|
8317 |
-
"requires": {
|
8318 |
-
"safe-buffer": "~5.1.0"
|
8319 |
-
}
|
8320 |
-
}
|
8321 |
}
|
8322 |
},
|
8323 |
-
"
|
8324 |
-
"version": "
|
8325 |
-
"resolved": "https://registry.npmjs.org/
|
8326 |
-
"integrity": "
|
8327 |
"dev": true,
|
8328 |
"requires": {
|
8329 |
-
"
|
8330 |
-
"browserify-aes": "^1.0.0",
|
8331 |
-
"create-hash": "^1.1.0",
|
8332 |
-
"evp_bytestokey": "^1.0.0",
|
8333 |
-
"pbkdf2": "^3.0.3",
|
8334 |
-
"safe-buffer": "^5.1.1"
|
8335 |
}
|
8336 |
},
|
8337 |
-
"
|
8338 |
-
"version": "
|
8339 |
-
"resolved": "https://registry.npmjs.org/
|
8340 |
-
"integrity": "
|
8341 |
-
"dev": true
|
8342 |
-
"requires": {
|
8343 |
-
"is-absolute": "^1.0.0",
|
8344 |
-
"map-cache": "^0.2.0",
|
8345 |
-
"path-root": "^0.1.1"
|
8346 |
-
}
|
8347 |
},
|
8348 |
-
"
|
8349 |
-
"version": "
|
8350 |
-
"resolved": "https://registry.npmjs.org/
|
8351 |
-
"integrity": "
|
|
|
8352 |
"requires": {
|
8353 |
-
"
|
8354 |
}
|
8355 |
},
|
8356 |
-
"
|
8357 |
-
"version": "
|
8358 |
-
"resolved": "https://registry.npmjs.org/
|
8359 |
-
"integrity": "
|
8360 |
-
"dev": true
|
8361 |
-
},
|
8362 |
-
"parse-passwd": {
|
8363 |
-
"version": "1.0.0",
|
8364 |
-
"resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz",
|
8365 |
-
"integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=",
|
8366 |
-
"dev": true
|
8367 |
-
},
|
8368 |
-
"pascalcase": {
|
8369 |
-
"version": "0.1.1",
|
8370 |
-
"resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz",
|
8371 |
-
"integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=",
|
8372 |
-
"dev": true
|
8373 |
-
},
|
8374 |
-
"path-browserify": {
|
8375 |
-
"version": "0.0.1",
|
8376 |
-
"resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz",
|
8377 |
-
"integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==",
|
8378 |
-
"dev": true
|
8379 |
-
},
|
8380 |
-
"path-dirname": {
|
8381 |
-
"version": "1.0.2",
|
8382 |
-
"resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz",
|
8383 |
-
"integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=",
|
8384 |
-
"dev": true
|
8385 |
-
},
|
8386 |
-
"path-exists": {
|
8387 |
-
"version": "3.0.0",
|
8388 |
-
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
|
8389 |
-
"integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=",
|
8390 |
"dev": true
|
8391 |
},
|
8392 |
-
"
|
8393 |
"version": "1.0.1",
|
8394 |
-
"resolved": "
|
8395 |
-
"integrity": "sha1-
|
8396 |
-
},
|
8397 |
-
"path-is-inside": {
|
8398 |
-
"version": "1.0.2",
|
8399 |
-
"resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
|
8400 |
-
"integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=",
|
8401 |
-
"dev": true
|
8402 |
},
|
8403 |
-
"
|
8404 |
-
"version": "
|
8405 |
-
"resolved": "https://registry.npmjs.org/
|
8406 |
-
"integrity": "sha1-
|
8407 |
-
"dev": true
|
8408 |
},
|
8409 |
-
"
|
8410 |
-
"version": "1.0.
|
8411 |
-
"resolved": "https://registry.npmjs.org/
|
8412 |
-
"integrity": "
|
8413 |
"dev": true
|
8414 |
},
|
8415 |
-
"
|
8416 |
-
"version": "0.
|
8417 |
-
"resolved": "https://registry.npmjs.org/
|
8418 |
-
"integrity": "sha1-
|
8419 |
"dev": true,
|
8420 |
"requires": {
|
8421 |
-
"
|
8422 |
}
|
8423 |
},
|
8424 |
-
"
|
8425 |
-
"version": "0.
|
8426 |
-
"resolved": "https://registry.npmjs.org/
|
8427 |
-
"integrity": "
|
8428 |
"dev": true
|
8429 |
},
|
8430 |
-
"
|
8431 |
-
"version": "1.1.
|
8432 |
-
"resolved": "https://registry.npmjs.org/
|
8433 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8434 |
"requires": {
|
8435 |
-
"
|
8436 |
-
"
|
8437 |
-
"
|
|
|
8438 |
},
|
8439 |
"dependencies": {
|
8440 |
-
"
|
8441 |
-
"version": "
|
8442 |
-
"resolved": "https://registry.npmjs.org/
|
8443 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8444 |
},
|
8445 |
-
"
|
8446 |
-
"version": "
|
8447 |
-
"resolved": "
|
8448 |
-
"integrity": "sha1-
|
|
|
|
|
|
|
|
|
8449 |
}
|
8450 |
}
|
8451 |
},
|
8452 |
-
"
|
8453 |
-
"version": "3.0
|
8454 |
-
"resolved": "https://registry.npmjs.org/
|
8455 |
-
"integrity": "sha512-
|
8456 |
-
"dev": true,
|
8457 |
"requires": {
|
8458 |
-
"
|
8459 |
-
"create-hmac": "^1.1.4",
|
8460 |
-
"ripemd160": "^2.0.1",
|
8461 |
-
"safe-buffer": "^5.0.1",
|
8462 |
-
"sha.js": "^2.4.8"
|
8463 |
}
|
8464 |
},
|
8465 |
-
"
|
8466 |
-
"version": "2.1.
|
8467 |
-
"resolved": "https://registry.npmjs.org/
|
8468 |
-
"integrity": "
|
8469 |
-
},
|
8470 |
-
"picomatch": {
|
8471 |
-
"version": "2.1.1",
|
8472 |
-
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.1.1.tgz",
|
8473 |
-
"integrity": "sha512-OYMyqkKzK7blWO/+XZYP6w8hH0LDvkBvdvKukti+7kqYFCiEAk+gI3DWnryapc0Dau05ugGTy0foQ6mqn4AHYA==",
|
8474 |
-
"dev": true
|
8475 |
-
},
|
8476 |
-
"pify": {
|
8477 |
-
"version": "3.0.0",
|
8478 |
-
"resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz",
|
8479 |
-
"integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=",
|
8480 |
"dev": true
|
8481 |
},
|
8482 |
-
"
|
8483 |
-
"version": "
|
8484 |
-
"resolved": "https://registry.npmjs.org/
|
8485 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
8486 |
},
|
8487 |
-
"
|
8488 |
-
"version": "
|
8489 |
-
"resolved": "https://registry.npmjs.org/
|
8490 |
-
"integrity": "
|
|
|
8491 |
"requires": {
|
8492 |
-
"
|
8493 |
}
|
8494 |
},
|
8495 |
-
"
|
8496 |
-
"version": "3.0
|
8497 |
-
"resolved": "https://registry.npmjs.org/
|
8498 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
8499 |
"dev": true,
|
8500 |
"requires": {
|
8501 |
-
"
|
|
|
|
|
8502 |
}
|
8503 |
},
|
8504 |
-
"
|
8505 |
-
"version": "1.0.
|
8506 |
-
"resolved": "https://registry.npmjs.org/
|
8507 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
8508 |
"dev": true,
|
8509 |
"requires": {
|
8510 |
-
"
|
8511 |
-
"
|
8512 |
-
"
|
8513 |
-
"
|
|
|
|
|
|
|
|
|
8514 |
}
|
8515 |
},
|
8516 |
-
"
|
8517 |
-
"version": "
|
8518 |
-
"resolved": "https://registry.npmjs.org/
|
8519 |
-
"integrity": "
|
|
|
8520 |
"requires": {
|
8521 |
-
"
|
8522 |
-
"
|
8523 |
-
"gettext-to-messageformat": "^0.3.0"
|
8524 |
},
|
8525 |
"dependencies": {
|
8526 |
-
"
|
8527 |
-
"version": "
|
8528 |
-
"resolved": "https://registry.npmjs.org/
|
8529 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8530 |
"requires": {
|
8531 |
-
"
|
8532 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8533 |
}
|
8534 |
}
|
8535 |
}
|
8536 |
},
|
8537 |
-
"
|
8538 |
-
"version": "
|
8539 |
-
"resolved": "https://registry.npmjs.org/
|
8540 |
-
"integrity": "sha1-
|
8541 |
-
"dev": true
|
8542 |
-
},
|
8543 |
-
"postcss": {
|
8544 |
-
"version": "7.0.7",
|
8545 |
-
"resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.7.tgz",
|
8546 |
-
"integrity": "sha512-HThWSJEPkupqew2fnuQMEI2YcTj/8gMV3n80cMdJsKxfIh5tHf7nM5JigNX6LxVMqo6zkgQNAI88hyFvBk41Pg==",
|
8547 |
-
"dev": true,
|
8548 |
"requires": {
|
8549 |
-
"
|
8550 |
-
"
|
8551 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8552 |
},
|
8553 |
"dependencies": {
|
8554 |
-
"
|
8555 |
-
"version": "
|
8556 |
-
"resolved": "https://registry.npmjs.org/
|
8557 |
-
"integrity": "
|
8558 |
-
"dev": true
|
8559 |
}
|
8560 |
}
|
8561 |
},
|
8562 |
-
"
|
8563 |
-
"version": "2.0.0",
|
8564 |
-
"resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.0.0.tgz",
|
8565 |
-
"integrity": "sha512-V5JBLzw406BB8UIfsAWSK2KSwIJ5yoEIVFb4gVkXci0QdKgA24jLmHZ/ghe/GgX0lJ0/D1uUK1ejhzEY94MChQ==",
|
8566 |
-
"dev": true,
|
8567 |
-
"requires": {
|
8568 |
-
"cosmiconfig": "^4.0.0",
|
8569 |
-
"import-cwd": "^2.0.0"
|
8570 |
-
}
|
8571 |
-
},
|
8572 |
-
"postcss-loader": {
|
8573 |
-
"version": "3.0.0",
|
8574 |
-
"resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz",
|
8575 |
-
"integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==",
|
8576 |
-
"dev": true,
|
8577 |
-
"requires": {
|
8578 |
-
"loader-utils": "^1.1.0",
|
8579 |
-
"postcss": "^7.0.0",
|
8580 |
-
"postcss-load-config": "^2.0.0",
|
8581 |
-
"schema-utils": "^1.0.0"
|
8582 |
-
}
|
8583 |
-
},
|
8584 |
-
"postcss-modules-extract-imports": {
|
8585 |
-
"version": "2.0.0",
|
8586 |
-
"resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
|
8587 |
-
"integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==",
|
8588 |
-
"dev": true,
|
8589 |
-
"requires": {
|
8590 |
-
"postcss": "^7.0.5"
|
8591 |
-
}
|
8592 |
-
},
|
8593 |
-
"postcss-modules-local-by-default": {
|
8594 |
"version": "3.0.2",
|
8595 |
-
"resolved": "https://registry.npmjs.org/
|
8596 |
-
"integrity": "sha512-
|
8597 |
"dev": true,
|
8598 |
"requires": {
|
8599 |
-
"
|
8600 |
-
"
|
8601 |
-
"
|
8602 |
-
"postcss-value-parser": "^4.0.0"
|
8603 |
},
|
8604 |
"dependencies": {
|
8605 |
-
"
|
8606 |
-
"version": "2.4
|
8607 |
-
"resolved": "https://registry.npmjs.org/
|
8608 |
-
"integrity": "
|
8609 |
"dev": true,
|
8610 |
"requires": {
|
8611 |
-
"
|
8612 |
-
"
|
8613 |
-
"
|
8614 |
-
|
8615 |
-
|
8616 |
-
"supports-color": {
|
8617 |
-
"version": "5.5.0",
|
8618 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
8619 |
-
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
8620 |
-
"dev": true,
|
8621 |
-
"requires": {
|
8622 |
-
"has-flag": "^3.0.0"
|
8623 |
-
}
|
8624 |
-
}
|
8625 |
}
|
8626 |
},
|
8627 |
-
"
|
8628 |
-
"version": "
|
8629 |
-
"resolved": "https://registry.npmjs.org/
|
8630 |
-
"integrity": "
|
8631 |
"dev": true,
|
8632 |
"requires": {
|
8633 |
-
"
|
8634 |
-
"source-map": "^0.6.1",
|
8635 |
-
"supports-color": "^6.1.0"
|
8636 |
}
|
8637 |
},
|
8638 |
-
"
|
8639 |
-
"version": "
|
8640 |
-
"resolved": "https://registry.npmjs.org/
|
8641 |
-
"integrity": "
|
8642 |
"dev": true,
|
8643 |
"requires": {
|
8644 |
-
"
|
8645 |
-
"indexes-of": "^1.0.1",
|
8646 |
-
"uniq": "^1.0.1"
|
8647 |
}
|
8648 |
},
|
8649 |
-
"
|
8650 |
-
"version": "
|
8651 |
-
"resolved": "https://registry.npmjs.org/
|
8652 |
-
"integrity": "
|
8653 |
-
"dev": true
|
8654 |
-
},
|
8655 |
-
"source-map": {
|
8656 |
-
"version": "0.6.1",
|
8657 |
-
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
8658 |
-
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
8659 |
-
"dev": true
|
8660 |
-
},
|
8661 |
-
"supports-color": {
|
8662 |
-
"version": "6.1.0",
|
8663 |
-
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
|
8664 |
-
"integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
|
8665 |
"dev": true,
|
8666 |
"requires": {
|
8667 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8668 |
}
|
8669 |
}
|
8670 |
}
|
8671 |
},
|
8672 |
-
"
|
8673 |
-
"version": "
|
8674 |
-
"resolved": "https://registry.npmjs.org/
|
8675 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8676 |
"dev": true,
|
8677 |
"requires": {
|
8678 |
-
"
|
8679 |
-
"
|
8680 |
-
|
8681 |
-
|
8682 |
-
"
|
8683 |
-
|
8684 |
-
|
8685 |
-
|
8686 |
-
|
8687 |
-
|
8688 |
-
|
8689 |
-
|
8690 |
-
|
8691 |
-
}
|
8692 |
-
}
|
8693 |
}
|
8694 |
},
|
8695 |
-
"
|
8696 |
-
"version": "
|
8697 |
-
"resolved": "https://registry.npmjs.org/
|
8698 |
-
"integrity": "sha512-
|
8699 |
"dev": true,
|
8700 |
"requires": {
|
8701 |
-
"
|
8702 |
-
"
|
8703 |
}
|
8704 |
},
|
8705 |
-
"
|
8706 |
-
"version": "4.
|
8707 |
-
"resolved": "https://registry.npmjs.org/
|
8708 |
-
"integrity": "sha512-
|
8709 |
-
"dev": true
|
8710 |
-
},
|
8711 |
-
"prepend-http": {
|
8712 |
-
"version": "2.0.0",
|
8713 |
-
"resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz",
|
8714 |
-
"integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=",
|
8715 |
"dev": true
|
8716 |
},
|
8717 |
-
"
|
8718 |
-
"version": "1.0
|
8719 |
-
"resolved": "https://registry.npmjs.org/
|
8720 |
-
"integrity": "
|
8721 |
-
"dev": true
|
8722 |
},
|
8723 |
-
"
|
8724 |
-
"version": "
|
8725 |
-
"resolved": "https://registry.npmjs.org/
|
8726 |
-
"integrity": "sha512-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8727 |
"dev": true
|
8728 |
},
|
8729 |
-
"
|
8730 |
-
"version": "0.
|
8731 |
-
"resolved": "https://registry.npmjs.org/
|
8732 |
-
"integrity": "
|
8733 |
"dev": true
|
8734 |
},
|
8735 |
-
"
|
8736 |
-
"version": "
|
8737 |
-
"resolved": "https://registry.npmjs.org/
|
8738 |
-
"integrity": "
|
|
|
8739 |
},
|
8740 |
-
"
|
8741 |
-
"version": "
|
8742 |
-
"resolved": "https://registry.npmjs.org/
|
8743 |
-
"integrity": "sha512-
|
8744 |
"dev": true
|
8745 |
},
|
8746 |
-
"
|
8747 |
"version": "1.0.1",
|
8748 |
-
"resolved": "https://registry.npmjs.org/
|
8749 |
-
"integrity": "sha1-
|
8750 |
"dev": true
|
8751 |
},
|
8752 |
-
"
|
8753 |
-
"version": "
|
8754 |
-
"resolved": "https://registry.npmjs.org/
|
8755 |
-
"integrity": "
|
8756 |
-
"dev": true,
|
8757 |
"requires": {
|
8758 |
-
"
|
8759 |
-
"retry": "^0.10.0"
|
8760 |
}
|
8761 |
},
|
8762 |
-
"
|
8763 |
-
"version": "2.
|
8764 |
-
"resolved": "
|
8765 |
-
"integrity": "
|
8766 |
-
"dev": true,
|
8767 |
-
"requires": {
|
8768 |
-
"kleur": "^3.0.3",
|
8769 |
-
"sisteransi": "^1.0.3"
|
8770 |
-
}
|
8771 |
},
|
8772 |
-
"
|
8773 |
-
"version": "
|
8774 |
-
"resolved": "https://registry.npmjs.org/
|
8775 |
-
"integrity": "sha512-
|
|
|
8776 |
"requires": {
|
8777 |
-
"
|
8778 |
-
"
|
8779 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8780 |
}
|
8781 |
},
|
8782 |
-
"
|
8783 |
-
"version": "
|
8784 |
-
"resolved": "https://registry.npmjs.org/
|
8785 |
-
"integrity": "sha512-
|
8786 |
"dev": true,
|
8787 |
"requires": {
|
8788 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8789 |
}
|
8790 |
},
|
8791 |
-
"
|
8792 |
-
"version": "1.
|
8793 |
-
"resolved": "https://registry.npmjs.org/
|
8794 |
-
"integrity": "
|
8795 |
-
"dev": true
|
8796 |
-
},
|
8797 |
-
"pseudomap": {
|
8798 |
-
"version": "1.0.2",
|
8799 |
-
"resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz",
|
8800 |
-
"integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM="
|
8801 |
-
},
|
8802 |
-
"psl": {
|
8803 |
-
"version": "1.6.0",
|
8804 |
-
"resolved": "https://registry.npmjs.org/psl/-/psl-1.6.0.tgz",
|
8805 |
-
"integrity": "sha512-SYKKmVel98NCOYXpkwUqZqh0ahZeeKfmisiLIcEZdsb+WbLv02g/dI5BUmZnIyOe7RzZtLax81nnb2HbvC2tzA=="
|
8806 |
-
},
|
8807 |
-
"public-encrypt": {
|
8808 |
-
"version": "4.0.3",
|
8809 |
-
"resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz",
|
8810 |
-
"integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==",
|
8811 |
"dev": true,
|
8812 |
"requires": {
|
8813 |
-
"
|
8814 |
-
"browserify-rsa": "^4.0.0",
|
8815 |
-
"create-hash": "^1.1.0",
|
8816 |
-
"parse-asn1": "^5.0.0",
|
8817 |
-
"randombytes": "^2.0.1",
|
8818 |
-
"safe-buffer": "^5.1.2"
|
8819 |
}
|
8820 |
},
|
8821 |
-
"
|
8822 |
"version": "3.0.0",
|
8823 |
-
"resolved": "https://registry.npmjs.org/
|
8824 |
-
"integrity": "sha512-
|
8825 |
"dev": true,
|
8826 |
"requires": {
|
|
|
|
|
8827 |
"end-of-stream": "^1.1.0",
|
8828 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
8829 |
}
|
8830 |
},
|
8831 |
-
"
|
8832 |
-
"version": "1.
|
8833 |
-
"resolved": "https://registry.npmjs.org/
|
8834 |
-
"integrity": "sha512-
|
8835 |
"dev": true,
|
8836 |
"requires": {
|
8837 |
-
"
|
8838 |
-
"
|
8839 |
-
"pump": "^2.0.0"
|
8840 |
},
|
8841 |
"dependencies": {
|
8842 |
-
"
|
8843 |
-
"version": "1.
|
8844 |
-
"resolved": "https://registry.npmjs.org/
|
8845 |
-
"integrity": "sha512-
|
8846 |
-
"dev": true,
|
8847 |
-
"requires": {
|
8848 |
-
"once": "^1.4.0"
|
8849 |
-
},
|
8850 |
-
"dependencies": {
|
8851 |
-
"once": {
|
8852 |
-
"version": "1.4.0",
|
8853 |
-
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
8854 |
-
"integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
|
8855 |
-
"dev": true,
|
8856 |
-
"requires": {
|
8857 |
-
"wrappy": "1"
|
8858 |
-
}
|
8859 |
-
}
|
8860 |
-
}
|
8861 |
-
},
|
8862 |
-
"pump": {
|
8863 |
-
"version": "2.0.1",
|
8864 |
-
"resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz",
|
8865 |
-
"integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==",
|
8866 |
"dev": true,
|
8867 |
"requires": {
|
8868 |
-
"
|
8869 |
-
"once": "^1.3.1"
|
8870 |
}
|
8871 |
}
|
8872 |
}
|
8873 |
},
|
8874 |
-
"
|
8875 |
-
"version": "2.
|
8876 |
-
"resolved": "https://registry.npmjs.org/
|
8877 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8878 |
},
|
8879 |
-
"
|
8880 |
-
"version": "
|
8881 |
-
"resolved": "
|
8882 |
-
"integrity": "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8883 |
},
|
8884 |
-
"
|
8885 |
-
"version": "0.
|
8886 |
-
"resolved": "https://registry.npmjs.org/
|
8887 |
-
"integrity": "sha1-
|
8888 |
"dev": true
|
8889 |
},
|
8890 |
-
"
|
8891 |
-
"version": "0.
|
8892 |
-
"resolved": "https://registry.npmjs.org/
|
8893 |
-
"integrity": "
|
8894 |
"dev": true
|
8895 |
},
|
8896 |
-
"
|
8897 |
-
"
|
8898 |
-
"resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
|
8899 |
-
"integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
|
8900 |
-
"dev": true,
|
8901 |
-
"requires": {
|
8902 |
-
"safe-buffer": "^5.1.0"
|
8903 |
-
}
|
8904 |
-
},
|
8905 |
-
"randomfill": {
|
8906 |
-
"version": "1.0.4",
|
8907 |
-
"resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
|
8908 |
-
"integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
|
682 |
"@babel/helper-plugin-utils": "^7.0.0"
|
683 |
}
|
684 |
},
|
685 |
+
"@babel/plugin-transform-runtime": {
|
686 |
+
"version": "7.8.3",
|
687 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.8.3.tgz",
|
688 |
+
"integrity": "sha512-/vqUt5Yh+cgPZXXjmaG9NT8aVfThKk7G4OqkVhrXqwsC5soMn/qTCxs36rZ2QFhpfTJcjw4SNDIZ4RUb8OL4jQ==",
|
689 |
+
"dev": true,
|
690 |
+
"requires": {
|
691 |
+
"@babel/helper-module-imports": "^7.8.3",
|
692 |
+
"@babel/helper-plugin-utils": "^7.8.3",
|
693 |
+
"resolve": "^1.8.1",
|
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/types": {
|
713 |
+
"version": "7.8.3",
|
714 |
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz",
|
715 |
+
"integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==",
|
716 |
+
"dev": true,
|
717 |
+
"requires": {
|
718 |
+
"esutils": "^2.0.2",
|
719 |
+
"lodash": "^4.17.13",
|
720 |
+
"to-fast-properties": "^2.0.0"
|
721 |
+
}
|
722 |
+
}
|
723 |
+
}
|
724 |
+
},
|
725 |
"@babel/plugin-transform-shorthand-properties": {
|
726 |
"version": "7.7.4",
|
727 |
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.7.4.tgz",
|
846 |
"regenerator-runtime": "^0.13.2"
|
847 |
}
|
848 |
},
|
849 |
+
"@babel/runtime-corejs3": {
|
850 |
+
"version": "7.8.4",
|
851 |
+
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.8.4.tgz",
|
852 |
+
"integrity": "sha512-+wpLqy5+fbQhvbllvlJEVRIpYj+COUWnnsm+I4jZlA8Lo7/MJmBhGTCHyk1/RWfOqBRJ2MbadddG6QltTKTlrg==",
|
853 |
+
"dev": true,
|
854 |
+
"requires": {
|
855 |
+
"core-js-pure": "^3.0.0",
|
856 |
+
"regenerator-runtime": "^0.13.2"
|
857 |
+
}
|
858 |
+
},
|
859 |
"@babel/template": {
|
860 |
"version": "7.7.4",
|
861 |
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz",
|
895 |
"to-fast-properties": "^2.0.0"
|
896 |
}
|
897 |
},
|
898 |
+
"@cnakazawa/watch": {
|
899 |
+
"version": "1.0.3",
|
900 |
+
"resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.3.tgz",
|
901 |
+
"integrity": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==",
|
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",
|
962 |
}
|
963 |
}
|
964 |
},
|
965 |
+
"@hapi/address": {
|
966 |
+
"version": "2.1.4",
|
967 |
+
"resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz",
|
968 |
+
"integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==",
|
969 |
+
"dev": true
|
970 |
+
},
|
971 |
+
"@hapi/bourne": {
|
972 |
+
"version": "1.3.2",
|
973 |
+
"resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz",
|
974 |
+
"integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==",
|
975 |
+
"dev": true
|
976 |
+
},
|
977 |
+
"@hapi/hoek": {
|
978 |
+
"version": "8.5.0",
|
979 |
+
"resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.0.tgz",
|
980 |
+
"integrity": "sha512-7XYT10CZfPsH7j9F1Jmg1+d0ezOux2oM2GfArAzLwWe4mE2Dr3hVjsAL6+TFY49RRJlCdJDMw3nJsLFroTc8Kw==",
|
981 |
+
"dev": true
|
982 |
+
},
|
983 |
+
"@hapi/joi": {
|
984 |
+
"version": "15.1.1",
|
985 |
+
"resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz",
|
986 |
+
"integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==",
|
987 |
+
"dev": true,
|
988 |
+
"requires": {
|
989 |
+
"@hapi/address": "2.x.x",
|
990 |
+
"@hapi/bourne": "1.x.x",
|
991 |
+
"@hapi/hoek": "8.x.x",
|
992 |
+
"@hapi/topo": "3.x.x"
|
993 |
+
}
|
994 |
+
},
|
995 |
+
"@hapi/topo": {
|
996 |
+
"version": "3.1.6",
|
997 |
+
"resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz",
|
998 |
+
"integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==",
|
999 |
+
"dev": true,
|
1000 |
+
"requires": {
|
1001 |
+
"@hapi/hoek": "^8.3.0"
|
1002 |
+
}
|
1003 |
+
},
|
1004 |
+
"@jest/console": {
|
1005 |
+
"version": "24.9.0",
|
1006 |
+
"resolved": "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz",
|
1007 |
+
"integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==",
|
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 |
+
"@jest/console": "^24.7.1",
|
1022 |
+
"@jest/reporters": "^24.9.0",
|
1023 |
+
"@jest/test-result": "^24.9.0",
|
1024 |
+
"@jest/transform": "^24.9.0",
|
1025 |
+
"@jest/types": "^24.9.0",
|
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 |
+
"ansi-escapes": {
|
1052 |
+
"version": "3.2.0",
|
1053 |
+
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
|
1054 |
+
"integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
|
1055 |
+
"dev": true
|
1056 |
+
},
|
1057 |
+
"ansi-regex": {
|
1058 |
+
"version": "4.1.0",
|
1059 |
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
|
1060 |
+
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
|
1061 |
+
"dev": true
|
1062 |
+
},
|
1063 |
+
"strip-ansi": {
|
1064 |
+
"version": "5.2.0",
|
1065 |
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
|
1066 |
+
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
|
1067 |
+
"dev": true,
|
1068 |
+
"requires": {
|
1069 |
+
"ansi-regex": "^4.1.0"
|
1070 |
+
}
|
1071 |
+
}
|
1072 |
+
}
|
1073 |
+
},
|
1074 |
+
"@jest/environment": {
|
1075 |
+
"version": "24.9.0",
|
1076 |
+
"resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz",
|
1077 |
+
"integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==",
|
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/fake-timers": {
|
1087 |
+
"version": "24.9.0",
|
1088 |
+
"resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz",
|
1089 |
+
"integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==",
|
1090 |
+
"dev": true,
|
1091 |
+
"requires": {
|
1092 |
+
"@jest/types": "^24.9.0",
|
1093 |
+
"jest-message-util": "^24.9.0",
|
1094 |
+
"jest-mock": "^24.9.0"
|
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 |
+
"node-notifier": {
|
1127 |
+
"version": "5.4.3",
|
1128 |
+
"resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.3.tgz",
|
1129 |
+
"integrity": "sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q==",
|
1130 |
+
"dev": true,
|
1131 |
+
"requires": {
|
1132 |
+
"growly": "^1.3.0",
|
1133 |
+
"is-wsl": "^1.1.0",
|
1134 |
+
"semver": "^5.5.0",
|
1135 |
+
"shellwords": "^0.1.1",
|
1136 |
+
"which": "^1.3.0"
|
1137 |
+
}
|
1138 |
+
},
|
1139 |
+
"source-map": {
|
1140 |
+
"version": "0.6.1",
|
1141 |
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
1142 |
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
1143 |
+
"dev": true
|
1144 |
+
}
|
1145 |
+
}
|
1146 |
+
},
|
1147 |
+
"@jest/source-map": {
|
1148 |
+
"version": "24.9.0",
|
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/test-result": {
|
1167 |
+
"version": "24.9.0",
|
1168 |
+
"resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz",
|
1169 |
+
"integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==",
|
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 |
+
"@babel/core": "^7.1.0",
|
1196 |
+
"@jest/types": "^24.9.0",
|
1197 |
+
"babel-plugin-istanbul": "^5.1.0",
|
1198 |
+
"chalk": "^2.0.1",
|
1199 |
+
"convert-source-map": "^1.4.0",
|
1200 |
+
"fast-json-stable-stringify": "^2.0.0",
|
1201 |
+
"graceful-fs": "^4.1.15",
|
1202 |
+
"jest-haste-map": "^24.9.0",
|
1203 |
+
"jest-regex-util": "^24.9.0",
|
1204 |
+
"jest-util": "^24.9.0",
|
1205 |
+
"micromatch": "^3.1.10",
|
1206 |
+
"pirates": "^4.0.1",
|
1207 |
+
"realpath-native": "^1.1.0",
|
1208 |
+
"slash": "^2.0.0",
|
1209 |
+
"source-map": "^0.6.1",
|
1210 |
+
"write-file-atomic": "2.4.1"
|
1211 |
+
},
|
1212 |
+
"dependencies": {
|
1213 |
+
"source-map": {
|
1214 |
+
"version": "0.6.1",
|
1215 |
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
1216 |
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
1217 |
+
"dev": true
|
1218 |
+
},
|
1219 |
+
"write-file-atomic": {
|
1220 |
+
"version": "2.4.1",
|
1221 |
+
"resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz",
|
1222 |
+
"integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==",
|
1223 |
+
"dev": true,
|
1224 |
+
"requires": {
|
1225 |
+
"graceful-fs": "^4.1.11",
|
1226 |
+
"imurmurhash": "^0.1.4",
|
1227 |
+
"signal-exit": "^3.0.2"
|
1228 |
+
}
|
1229 |
+
}
|
1230 |
+
}
|
1231 |
+
},
|
1232 |
+
"@jest/types": {
|
1233 |
+
"version": "24.9.0",
|
1234 |
+
"resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz",
|
1235 |
+
"integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==",
|
1236 |
+
"dev": true,
|
1237 |
+
"requires": {
|
1238 |
+
"@types/istanbul-lib-coverage": "^2.0.0",
|
1239 |
+
"@types/istanbul-reports": "^1.1.1",
|
1240 |
+
"@types/yargs": "^13.0.0"
|
1241 |
+
}
|
1242 |
+
},
|
1243 |
+
"@mrmlnc/readdir-enhanced": {
|
1244 |
+
"version": "2.2.1",
|
1245 |
+
"resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
|
1246 |
+
"integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
|
1247 |
+
"dev": true,
|
1248 |
+
"requires": {
|
1249 |
+
"call-me-maybe": "^1.0.1",
|
1250 |
+
"glob-to-regexp": "^0.3.0"
|
1251 |
+
}
|
1252 |
+
},
|
1253 |
+
"@nodelib/fs.scandir": {
|
1254 |
+
"version": "2.1.3",
|
1255 |
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz",
|
1256 |
+
"integrity": "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==",
|
1257 |
+
"dev": true,
|
1258 |
+
"requires": {
|
1259 |
+
"@nodelib/fs.stat": "2.0.3",
|
1260 |
+
"run-parallel": "^1.1.9"
|
1261 |
+
}
|
1262 |
+
},
|
1263 |
+
"@nodelib/fs.stat": {
|
1264 |
+
"version": "2.0.3",
|
1265 |
+
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz",
|
1266 |
+
"integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==",
|
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 |
+
"@nodelib/fs.scandir": "2.1.3",
|
1276 |
+
"fastq": "^1.6.0"
|
1277 |
+
}
|
1278 |
+
},
|
1279 |
"@sindresorhus/is": {
|
1280 |
"version": "0.14.0",
|
1281 |
"resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz",
|
1318 |
"resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.0.3.tgz",
|
1319 |
"integrity": "sha512-80uoGtphTH3vDZlJgE2xJh3qBWMAlCXq8wN8WLOxHJjms0A38vkbXOXiYMIabgnIJVc1vCcZVQa2pHt+X3AF5Q=="
|
1320 |
},
|
1321 |
+
"@types/babel__core": {
|
1322 |
+
"version": "7.1.3",
|
1323 |
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.3.tgz",
|
1324 |
+
"integrity": "sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA==",
|
1325 |
+
"dev": true,
|
1326 |
+
"requires": {
|
1327 |
+
"@babel/parser": "^7.1.0",
|
1328 |
+
"@babel/types": "^7.0.0",
|
1329 |
+
"@types/babel__generator": "*",
|
1330 |
+
"@types/babel__template": "*",
|
1331 |
+
"@types/babel__traverse": "*"
|
1332 |
+
}
|
1333 |
+
},
|
1334 |
+
"@types/babel__generator": {
|
1335 |
+
"version": "7.6.1",
|
1336 |
+
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.1.tgz",
|
1337 |
+
"integrity": "sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew==",
|
1338 |
+
"dev": true,
|
1339 |
+
"requires": {
|
1340 |
+
"@babel/types": "^7.0.0"
|
1341 |
+
}
|
1342 |
+
},
|
1343 |
+
"@types/babel__template": {
|
1344 |
+
"version": "7.0.2",
|
1345 |
+
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz",
|
1346 |
+
"integrity": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==",
|
1347 |
+
"dev": true,
|
1348 |
+
"requires": {
|
1349 |
+
"@babel/parser": "^7.1.0",
|
1350 |
+
"@babel/types": "^7.0.0"
|
1351 |
+
}
|
1352 |
+
},
|
1353 |
+
"@types/babel__traverse": {
|
1354 |
+
"version": "7.0.8",
|
1355 |
+
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.8.tgz",
|
1356 |
+
"integrity": "sha512-yGeB2dHEdvxjP0y4UbRtQaSkXJ9649fYCmIdRoul5kfAoGCwxuCbMhag0k3RPfnuh9kPGm8x89btcfDEXdVWGw==",
|
1357 |
+
"dev": true,
|
1358 |
+
"requires": {
|
1359 |
+
"@babel/types": "^7.3.0"
|
1360 |
+
}
|
1361 |
+
},
|
1362 |
+
"@types/color-name": {
|
1363 |
+
"version": "1.1.1",
|
1364 |
+
"resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz",
|
1365 |
+
"integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==",
|
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 |
+
"@types/events": "*",
|
1381 |
+
"@types/minimatch": "*",
|
1382 |
+
"@types/node": "*"
|
1383 |
+
}
|
1384 |
+
},
|
1385 |
+
"@types/istanbul-lib-coverage": {
|
1386 |
+
"version": "2.0.1",
|
1387 |
+
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz",
|
1388 |
+
"integrity": "sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==",
|
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 |
+
"@types/istanbul-lib-coverage": "*"
|
1398 |
+
}
|
1399 |
+
},
|
1400 |
+
"@types/istanbul-reports": {
|
1401 |
+
"version": "1.1.1",
|
1402 |
+
"resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz",
|
1403 |
+
"integrity": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==",
|
1404 |
+
"dev": true,
|
1405 |
+
"requires": {
|
1406 |
+
"@types/istanbul-lib-coverage": "*",
|
1407 |
+
"@types/istanbul-lib-report": "*"
|
1408 |
+
}
|
1409 |
+
},
|
1410 |
+
"@types/json-schema": {
|
1411 |
+
"version": "7.0.4",
|
1412 |
+
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.4.tgz",
|
1413 |
+
"integrity": "sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==",
|
1414 |
+
"dev": true
|
1415 |
+
},
|
1416 |
+
"@types/mime-types": {
|
1417 |
+
"version": "2.1.0",
|
1418 |
+
"resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.0.tgz",
|
1419 |
+
"integrity": "sha1-nKUs2jY/aZxpRmwqbM2q2RPqenM=",
|
1420 |
+
"dev": true
|
1421 |
+
},
|
1422 |
+
"@types/minimatch": {
|
1423 |
+
"version": "3.0.3",
|
1424 |
+
"resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz",
|
1425 |
+
"integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==",
|
1426 |
+
"dev": true
|
1427 |
+
},
|
1428 |
+
"@types/minimist": {
|
1429 |
+
"version": "1.2.0",
|
1430 |
+
"resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.0.tgz",
|
1431 |
+
"integrity": "sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY=",
|
1432 |
+
"dev": true
|
1433 |
+
},
|
1434 |
+
"@types/node": {
|
1435 |
+
"version": "13.7.0",
|
1436 |
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-13.7.0.tgz",
|
1437 |
+
"integrity": "sha512-GnZbirvmqZUzMgkFn70c74OQpTTUcCzlhQliTzYjQMqg+hVKcDnxdL19Ne3UdYzdMA/+W3eb646FWn/ZaT1NfQ==",
|
1438 |
+
"dev": true
|
1439 |
+
},
|
1440 |
+
"@types/normalize-package-data": {
|
1441 |
+
"version": "2.4.0",
|
1442 |
+
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz",
|
1443 |
+
"integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==",
|
1444 |
+
"dev": true
|
1445 |
+
},
|
1446 |
+
"@types/stack-utils": {
|
1447 |
+
"version": "1.0.1",
|
1448 |
+
"resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz",
|
1449 |
+
"integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==",
|
1450 |
+
"dev": true
|
1451 |
+
},
|
1452 |
+
"@types/unist": {
|
1453 |
+
"version": "2.0.3",
|
1454 |
+
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz",
|
1455 |
+
"integrity": "sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ==",
|
1456 |
+
"dev": true
|
1457 |
+
},
|
1458 |
+
"@types/vfile": {
|
1459 |
+
"version": "3.0.2",
|
1460 |
+
"resolved": "https://registry.npmjs.org/@types/vfile/-/vfile-3.0.2.tgz",
|
1461 |
+
"integrity": "sha512-b3nLFGaGkJ9rzOcuXRfHkZMdjsawuDD0ENL9fzTophtBg8FJHSGbH7daXkEpcwy3v7Xol3pAvsmlYyFhR4pqJw==",
|
1462 |
+
"dev": true,
|
1463 |
+
"requires": {
|
1464 |
+
"@types/node": "*",
|
1465 |
+
"@types/unist": "*",
|
1466 |
+
"@types/vfile-message": "*"
|
1467 |
+
}
|
1468 |
+
},
|
1469 |
+
"@types/vfile-message": {
|
1470 |
+
"version": "2.0.0",
|
1471 |
+
"resolved": "https://registry.npmjs.org/@types/vfile-message/-/vfile-message-2.0.0.tgz",
|
1472 |
+
"integrity": "sha512-GpTIuDpb9u4zIO165fUy9+fXcULdD8HFRNli04GehoMVbeNq7D6OBnqSmg3lxZnC+UvgUhEWKxdKiwYUkGltIw==",
|
1473 |
+
"dev": true,
|
1474 |
+
"requires": {
|
1475 |
+
"vfile-message": "*"
|
1476 |
+
}
|
1477 |
+
},
|
1478 |
+
"@types/yargs": {
|
1479 |
+
"version": "13.0.8",
|
1480 |
+
"resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.8.tgz",
|
1481 |
+
"integrity": "sha512-XAvHLwG7UQ+8M4caKIH0ZozIOYay5fQkAgyIXegXT9jPtdIGdhga+sUEdAr1CiG46aB+c64xQEYyEzlwWVTNzA==",
|
1482 |
+
"dev": true,
|
1483 |
+
"requires": {
|
1484 |
+
"@types/yargs-parser": "*"
|
1485 |
+
}
|
1486 |
+
},
|
1487 |
+
"@types/yargs-parser": {
|
1488 |
+
"version": "15.0.0",
|
1489 |
+
"resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz",
|
1490 |
+
"integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==",
|
1491 |
+
"dev": true
|
1492 |
+
},
|
1493 |
+
"@typescript-eslint/experimental-utils": {
|
1494 |
+
"version": "1.13.0",
|
1495 |
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-1.13.0.tgz",
|
1496 |
+
"integrity": "sha512-zmpS6SyqG4ZF64ffaJ6uah6tWWWgZ8m+c54XXgwFtUv0jNz8aJAVx8chMCvnk7yl6xwn8d+d96+tWp7fXzTuDg==",
|
1497 |
+
"dev": true,
|
1498 |
+
"requires": {
|
1499 |
+
"@types/json-schema": "^7.0.3",
|
1500 |
+
"@typescript-eslint/typescript-estree": "1.13.0",
|
1501 |
+
"eslint-scope": "^4.0.0"
|
1502 |
+
}
|
1503 |
+
},
|
1504 |
+
"@typescript-eslint/typescript-estree": {
|
1505 |
+
"version": "1.13.0",
|
1506 |
+
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-1.13.0.tgz",
|
1507 |
+
"integrity": "sha512-b5rCmd2e6DCC6tCTN9GSUAuxdYwCM/k/2wdjHGrIRGPSJotWMCe/dGpi66u42bhuh8q3QBzqM4TMA1GUUCJvdw==",
|
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 |
"@webassemblyjs/ast": {
|
1523 |
"version": "1.8.5",
|
1524 |
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz",
|
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 |
"@wordpress/babel-plugin-makepot": {
|
1705 |
"version": "3.3.0",
|
1706 |
"resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-makepot/-/babel-plugin-makepot-3.3.0.tgz",
|
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 |
"@wordpress/compose": {
|
1741 |
"version": "3.9.0",
|
1742 |
"resolved": "https://registry.npmjs.org/@wordpress/compose/-/compose-3.9.0.tgz",
|
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 |
+
"json2php": "^0.0.4",
|
1778 |
+
"webpack": "^4.8.3",
|
1779 |
+
"webpack-sources": "^1.3.0"
|
1780 |
+
}
|
1781 |
+
},
|
1782 |
"@wordpress/deprecated": {
|
1783 |
"version": "2.6.1",
|
1784 |
"resolved": "https://registry.npmjs.org/@wordpress/deprecated/-/deprecated-2.6.1.tgz",
|
1808 |
"@babel/runtime": "^7.4.4"
|
1809 |
}
|
1810 |
},
|
1811 |
+
"@wordpress/eslint-plugin": {
|
1812 |
+
"version": "3.3.0",
|
1813 |
+
"resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-3.3.0.tgz",
|
1814 |
+
"integrity": "sha512-wS7eoHlOrsEN8HXRQw2WV2IpYRHv3rqCkfb/o9huuz66Tq2hi8xZDQGiDn7BSxQb5DYwOs2TJImCXwv3eKsPSg==",
|
1815 |
+
"dev": true,
|
1816 |
+
"requires": {
|
1817 |
+
"babel-eslint": "^10.0.2",
|
1818 |
+
"eslint-plugin-jest": "^22.15.1",
|
1819 |
+
"eslint-plugin-jsdoc": "^15.8.0",
|
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 |
+
"globals": {
|
1828 |
+
"version": "12.3.0",
|
1829 |
+
"resolved": "https://registry.npmjs.org/globals/-/globals-12.3.0.tgz",
|
1830 |
+
"integrity": "sha512-wAfjdLgFsPZsklLJvOBUBmzYE8/CwhEqSBEMRXA3qxIiNtyqvjYurAtIfDh6chlEPUfmTY3MnZh5Hfh4q0UlIw==",
|
1831 |
+
"dev": true,
|
1832 |
+
"requires": {
|
1833 |
+
"type-fest": "^0.8.1"
|
1834 |
+
}
|
1835 |
+
},
|
1836 |
+
"type-fest": {
|
1837 |
+
"version": "0.8.1",
|
1838 |
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
|
1839 |
+
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
|
1840 |
+
"dev": true
|
1841 |
+
}
|
1842 |
+
}
|
1843 |
+
},
|
1844 |
"@wordpress/hooks": {
|
1845 |
"version": "2.6.0",
|
1846 |
"resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-2.6.0.tgz",
|
1870 |
"@babel/runtime": "^7.4.4"
|
1871 |
}
|
1872 |
},
|
1873 |
+
"@wordpress/jest-console": {
|
1874 |
+
"version": "3.4.0",
|
1875 |
+
"resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-3.4.0.tgz",
|
1876 |
+
"integrity": "sha512-mYXMlNEfWG9IiV+VN+8zwQR/1oYnd+jjjd1YRsG7vlicCFgDD3KJonHePYV5UdUsJ6eqGXvmixxWjyr0LougxQ==",
|
1877 |
+
"dev": true,
|
1878 |
+
"requires": {
|
1879 |
+
"@babel/runtime": "^7.4.4",
|
1880 |
+
"jest-matcher-utils": "^24.7.0",
|
1881 |
+
"lodash": "^4.17.15"
|
1882 |
+
}
|
1883 |
+
},
|
1884 |
+
"@wordpress/jest-preset-default": {
|
1885 |
+
"version": "5.3.1",
|
1886 |
+
"resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-5.3.1.tgz",
|
1887 |
+
"integrity": "sha512-KXfdPPc9DwlZC3FYCPNLS4yTp4ezq7uRCPxC/SAdbx82omHgyScJYvAc0HF5sm3m6zFDQ3a8VBm74mvPZx9ONA==",
|
1888 |
+
"dev": true,
|
1889 |
+
"requires": {
|
1890 |
+
"@jest/reporters": "^24.8.0",
|
1891 |
+
"@wordpress/jest-console": "^3.4.0",
|
1892 |
+
"babel-jest": "^24.7.1",
|
1893 |
+
"enzyme": "^3.9.0",
|
1894 |
+
"enzyme-adapter-react-16": "^1.10.0",
|
1895 |
+
"enzyme-to-json": "^3.3.5"
|
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",
|
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 |
+
"chalk": {
|
1964 |
+
"version": "2.4.2",
|
1965 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
1966 |
+
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
1967 |
+
"dev": true,
|
1968 |
+
"requires": {
|
1969 |
+
"ansi-styles": "^3.2.1",
|
1970 |
+
"escape-string-regexp": "^1.0.5",
|
1971 |
+
"supports-color": "^5.3.0"
|
1972 |
+
}
|
1973 |
+
},
|
1974 |
+
"cross-spawn": {
|
1975 |
+
"version": "5.1.0",
|
1976 |
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
|
1977 |
+
"integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
|
1978 |
+
"dev": true,
|
1979 |
+
"requires": {
|
1980 |
+
"lru-cache": "^4.0.1",
|
1981 |
+
"shebang-command": "^1.2.0",
|
1982 |
+
"which": "^1.2.9"
|
1983 |
+
}
|
1984 |
+
},
|
1985 |
+
"lru-cache": {
|
1986 |
+
"version": "4.1.5",
|
1987 |
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
|
1988 |
+
"integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
|
1989 |
+
"dev": true,
|
1990 |
+
"requires": {
|
1991 |
+
"pseudomap": "^1.0.2",
|
1992 |
+
"yallist": "^2.1.2"
|
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",
|
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",
|
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",
|
2190 |
"ansi-wrap": "0.1.0"
|
2191 |
}
|
2192 |
},
|
2193 |
+
"ansi-escapes": {
|
2194 |
+
"version": "4.3.0",
|
2195 |
+
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.0.tgz",
|
2196 |
+
"integrity": "sha512-EiYhwo0v255HUL6eDyuLrXEkTi7WwVCLAw+SeOQ7M7qdun1z1pum4DEm/nuqIVbPvi9RPPc9k9LbyBv6H0DwVg==",
|
2197 |
+
"dev": true,
|
2198 |
+
"requires": {
|
2199 |
+
"type-fest": "^0.8.1"
|
2200 |
+
},
|
2201 |
+
"dependencies": {
|
2202 |
+
"type-fest": {
|
2203 |
+
"version": "0.8.1",
|
2204 |
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
|
2205 |
+
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
|
2206 |
+
"dev": true
|
2207 |
+
}
|
2208 |
+
}
|
2209 |
+
},
|
2210 |
"ansi-gray": {
|
2211 |
"version": "0.1.1",
|
2212 |
"resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz",
|
2311 |
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
|
2312 |
},
|
2313 |
"readable-stream": {
|
2314 |
+
"version": "2.3.7",
|
2315 |
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz",
|
2316 |
+
"integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==",
|
2317 |
"requires": {
|
2318 |
"core-util-is": "~1.0.0",
|
2319 |
"inherits": "~2.0.3",
|
2351 |
}
|
2352 |
}
|
2353 |
},
|
2354 |
+
"aria-query": {
|
2355 |
+
"version": "3.0.0",
|
2356 |
+
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz",
|
2357 |
+
"integrity": "sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=",
|
2358 |
+
"dev": true,
|
2359 |
+
"requires": {
|
2360 |
+
"ast-types-flow": "0.0.7",
|
2361 |
+
"commander": "^2.11.0"
|
2362 |
+
}
|
2363 |
+
},
|
2364 |
"arr-diff": {
|
2365 |
"version": "4.0.0",
|
2366 |
"resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
|
2403 |
"integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=",
|
2404 |
"dev": true
|
2405 |
},
|
2406 |
+
"array-equal": {
|
2407 |
+
"version": "1.0.0",
|
2408 |
+
"resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
|
2409 |
+
"integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=",
|
2410 |
+
"dev": true
|
2411 |
+
},
|
2412 |
+
"array-filter": {
|
2413 |
+
"version": "1.0.0",
|
2414 |
+
"resolved": "https://registry.npmjs.org/array-filter/-/array-filter-1.0.0.tgz",
|
2415 |
+
"integrity": "sha1-uveeYubvTCpMC4MSMtr/7CUfnYM=",
|
2416 |
+
"dev": true
|
2417 |
+
},
|
2418 |
"array-find-index": {
|
2419 |
"version": "1.0.2",
|
2420 |
"resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz",
|
2421 |
"integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E="
|
2422 |
},
|
2423 |
+
"array-flatten": {
|
2424 |
+
"version": "1.1.1",
|
2425 |
+
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
2426 |
+
"integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
|
2427 |
+
"dev": true
|
2428 |
+
},
|
2429 |
+
"array-includes": {
|
2430 |
+
"version": "3.1.1",
|
2431 |
+
"resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.1.tgz",
|
2432 |
+
"integrity": "sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ==",
|
2433 |
+
"dev": true,
|
2434 |
+
"requires": {
|
2435 |
+
"define-properties": "^1.1.3",
|
2436 |
+
"es-abstract": "^1.17.0",
|
2437 |
+
"is-string": "^1.0.5"
|
2438 |
+
}
|
2439 |
+
},
|
2440 |
"array-initial": {
|
2441 |
"version": "1.1.0",
|
2442 |
"resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz",
|
2497 |
}
|
2498 |
}
|
2499 |
},
|
2500 |
+
"array-union": {
|
2501 |
+
"version": "2.1.0",
|
2502 |
+
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
|
2503 |
+
"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
|
2504 |
+
"dev": true
|
2505 |
+
},
|
2506 |
+
"array-uniq": {
|
2507 |
+
"version": "1.0.3",
|
2508 |
+
"resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
|
2509 |
+
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
|
2510 |
+
"dev": true
|
2511 |
+
},
|
2512 |
"array-unique": {
|
2513 |
"version": "0.3.2",
|
2514 |
"resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
|
2515 |
"integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
|
2516 |
"dev": true
|
2517 |
},
|
2518 |
+
"array.prototype.find": {
|
2519 |
+
"version": "2.1.0",
|
2520 |
+
"resolved": "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.0.tgz",
|
2521 |
+
"integrity": "sha512-Wn41+K1yuO5p7wRZDl7890c3xvv5UBrfVXTVIe28rSQb6LS0fZMDrQB6PAcxQFRFy6vJTLDc3A2+3CjQdzVKRg==",
|
2522 |
+
"dev": true,
|
2523 |
+
"requires": {
|
2524 |
+
"define-properties": "^1.1.3",
|
2525 |
+
"es-abstract": "^1.13.0"
|
2526 |
+
}
|
2527 |
+
},
|
2528 |
+
"array.prototype.flat": {
|
2529 |
+
"version": "1.2.3",
|
2530 |
+
"resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz",
|
2531 |
+
"integrity": "sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ==",
|
2532 |
+
"dev": true,
|
2533 |
+
"requires": {
|
2534 |
+
"define-properties": "^1.1.3",
|
2535 |
+
"es-abstract": "^1.17.0-next.1"
|
2536 |
+
}
|
2537 |
+
},
|
2538 |
+
"arrify": {
|
2539 |
+
"version": "1.0.1",
|
2540 |
+
"resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
|
2541 |
+
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
|
2542 |
+
"dev": true
|
2543 |
+
},
|
2544 |
"asap": {
|
2545 |
"version": "2.0.6",
|
2546 |
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
|
2603 |
"integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
|
2604 |
"dev": true
|
2605 |
},
|
2606 |
+
"ast-types-flow": {
|
2607 |
+
"version": "0.0.7",
|
2608 |
+
"resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
|
2609 |
+
"integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=",
|
2610 |
+
"dev": true
|
2611 |
+
},
|
2612 |
+
"astral-regex": {
|
2613 |
+
"version": "1.0.0",
|
2614 |
+
"resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz",
|
2615 |
+
"integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==",
|
2616 |
+
"dev": true
|
2617 |
+
},
|
2618 |
+
"async": {
|
2619 |
+
"version": "2.6.3",
|
2620 |
+
"resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz",
|
2621 |
+
"integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==",
|
2622 |
+
"dev": true,
|
2623 |
+
"requires": {
|
2624 |
+
"lodash": "^4.17.14"
|
2625 |
+
}
|
2626 |
+
},
|
2627 |
"async-done": {
|
2628 |
"version": "1.3.2",
|
2629 |
"resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz",
|
2647 |
"resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz",
|
2648 |
"integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI="
|
2649 |
},
|
2650 |
+
"async-limiter": {
|
2651 |
+
"version": "1.0.1",
|
2652 |
+
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
|
2653 |
+
"integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
|
2654 |
+
"dev": true
|
2655 |
+
},
|
2656 |
"async-settle": {
|
2657 |
"version": "1.0.0",
|
2658 |
"resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz",
|
2739 |
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.9.0.tgz",
|
2740 |
"integrity": "sha512-Uvq6hVe90D0B2WEnUqtdgY1bATGz3mw33nH9Y+dmA+w5DHvUmBgkr5rM/KCHpCsiFNRUfokW/szpPPgMK2hm4A=="
|
2741 |
},
|
2742 |
+
"axobject-query": {
|
2743 |
+
"version": "2.1.1",
|
2744 |
+
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.1.1.tgz",
|
2745 |
+
"integrity": "sha512-lF98xa/yvy6j3fBHAgQXIYl+J4eZadOSqsPojemUqClzNbBV38wWGpUbQbVEyf4eUF5yF7eHmGgGA2JiHyjeqw==",
|
2746 |
+
"dev": true,
|
2747 |
+
"requires": {
|
2748 |
+
"@babel/runtime": "^7.7.4",
|
2749 |
+
"@babel/runtime-corejs3": "^7.7.4"
|
2750 |
+
}
|
2751 |
+
},
|
2752 |
+
"babel-eslint": {
|
2753 |
+
"version": "10.0.3",
|
2754 |
+
"resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.0.3.tgz",
|
2755 |
+
"integrity": "sha512-z3U7eMY6r/3f3/JB9mTsLjyxrv0Yb1zb8PCWCLpguxfCzBIZUwy23R1t/XKewP+8mEN2Ck8Dtr4q20z6ce6SoA==",
|
2756 |
+
"dev": true,
|
2757 |
+
"requires": {
|
2758 |
+
"@babel/code-frame": "^7.0.0",
|
2759 |
+
"@babel/parser": "^7.0.0",
|
2760 |
+
"@babel/traverse": "^7.0.0",
|
2761 |
+
"@babel/types": "^7.0.0",
|
2762 |
+
"eslint-visitor-keys": "^1.0.0",
|
2763 |
+
"resolve": "^1.12.0"
|
2764 |
+
}
|
2765 |
+
},
|
2766 |
+
"babel-jest": {
|
2767 |
+
"version": "24.9.0",
|
2768 |
+
"resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz",
|
2769 |
+
"integrity": "sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==",
|
2770 |
+
"dev": true,
|
2771 |
+
"requires": {
|
2772 |
+
"@jest/transform": "^24.9.0",
|
2773 |
+
"@jest/types": "^24.9.0",
|
2774 |
+
"@types/babel__core": "^7.1.0",
|
2775 |
+
"babel-plugin-istanbul": "^5.1.0",
|
2776 |
+
"babel-preset-jest": "^24.9.0",
|
2777 |
+
"chalk": "^2.4.2",
|
2778 |
+
"slash": "^2.0.0"
|
2779 |
+
},
|
2780 |
+
"dependencies": {
|
2781 |
+
"chalk": {
|
2782 |
+
"version": "2.4.2",
|
2783 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
2784 |
+
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
2785 |
+
"dev": true,
|
2786 |
+
"requires": {
|
2787 |
+
"ansi-styles": "^3.2.1",
|
2788 |
+
"escape-string-regexp": "^1.0.5",
|
2789 |
+
"supports-color": "^5.3.0"
|
2790 |
+
}
|
2791 |
+
}
|
2792 |
+
}
|
2793 |
+
},
|
2794 |
"babel-loader": {
|
2795 |
"version": "8.0.6",
|
2796 |
"resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.6.tgz",
|
2820 |
"object.assign": "^4.1.0"
|
2821 |
}
|
2822 |
},
|
2823 |
+
"babel-plugin-istanbul": {
|
2824 |
+
"version": "5.2.0",
|
2825 |
+
"resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz",
|
2826 |
+
"integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==",
|
2827 |
+
"dev": true,
|
2828 |
+
"requires": {
|
2829 |
+
"@babel/helper-plugin-utils": "^7.0.0",
|
2830 |
+
"find-up": "^3.0.0",
|
2831 |
+
"istanbul-lib-instrument": "^3.3.0",
|
2832 |
+
"test-exclude": "^5.2.3"
|
2833 |
+
}
|
2834 |
+
},
|
2835 |
+
"babel-plugin-jest-hoist": {
|
2836 |
+
"version": "24.9.0",
|
2837 |
+
"resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz",
|
2838 |
+
"integrity": "sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==",
|
2839 |
+
"dev": true,
|
2840 |
+
"requires": {
|
2841 |
+
"@types/babel__traverse": "^7.0.6"
|
2842 |
+
}
|
2843 |
+
},
|
2844 |
+
"babel-preset-jest": {
|
2845 |
+
"version": "24.9.0",
|
2846 |
+
"resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz",
|
2847 |
+
"integrity": "sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==",
|
2848 |
+
"dev": true,
|
2849 |
+
"requires": {
|
2850 |
+
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
|
2851 |
+
"babel-plugin-jest-hoist": "^24.9.0"
|
2852 |
+
}
|
2853 |
+
},
|
2854 |
"bach": {
|
2855 |
"version": "1.2.0",
|
2856 |
"resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz",
|
2868 |
"now-and-later": "^2.0.0"
|
2869 |
}
|
2870 |
},
|
2871 |
+
"bail": {
|
2872 |
+
"version": "1.0.5",
|
2873 |
+
"resolved": "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz",
|
2874 |
+
"integrity": "sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==",
|
2875 |
+
"dev": true
|
2876 |
+
},
|
2877 |
"balanced-match": {
|
2878 |
"version": "1.0.0",
|
2879 |
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
|
2948 |
"tweetnacl": "^0.14.3"
|
2949 |
}
|
2950 |
},
|
2951 |
+
"bfj": {
|
2952 |
+
"version": "6.1.2",
|
2953 |
+
"resolved": "https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz",
|
2954 |
+
"integrity": "sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==",
|
2955 |
+
"dev": true,
|
2956 |
+
"requires": {
|
2957 |
+
"bluebird": "^3.5.5",
|
2958 |
+
"check-types": "^8.0.3",
|
2959 |
+
"hoopy": "^0.1.4",
|
2960 |
+
"tryer": "^1.0.1"
|
2961 |
+
}
|
2962 |
+
},
|
2963 |
"big.js": {
|
2964 |
"version": "5.2.2",
|
2965 |
"resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
|
2966 |
"integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
|
2967 |
"dev": true
|
2968 |
},
|
2969 |
+
"binary": {
|
2970 |
+
"version": "0.3.0",
|
2971 |
+
"resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz",
|
2972 |
+
"integrity": "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk=",
|
2973 |
+
"dev": true,
|
2974 |
+
"requires": {
|
2975 |
+
"buffers": "~0.1.1",
|
2976 |
+
"chainsaw": "~0.1.0"
|
2977 |
+
}
|
2978 |
+
},
|
2979 |
"binary-extensions": {
|
2980 |
"version": "1.13.1",
|
2981 |
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
|
3002 |
"integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==",
|
3003 |
"dev": true
|
3004 |
},
|
3005 |
+
"body": {
|
3006 |
+
"version": "5.1.0",
|
3007 |
+
"resolved": "https://registry.npmjs.org/body/-/body-5.1.0.tgz",
|
3008 |
+
"integrity": "sha1-5LoM5BCkaTYyM2dgnstOZVMSUGk=",
|
3009 |
"dev": true,
|
3010 |
"requires": {
|
3011 |
+
"continuable-cache": "^0.3.1",
|
3012 |
+
"error": "^7.0.0",
|
3013 |
+
"raw-body": "~1.1.0",
|
3014 |
+
"safe-json-parse": "~1.0.1"
|
|
|
|
|
|
|
|
|
3015 |
},
|
3016 |
"dependencies": {
|
3017 |
+
"bytes": {
|
3018 |
+
"version": "1.0.0",
|
3019 |
+
"resolved": "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz",
|
3020 |
+
"integrity": "sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g=",
|
|
|
|
|
|
|
|
|
|
|
|
|
3021 |
"dev": true
|
3022 |
},
|
3023 |
+
"raw-body": {
|
3024 |
+
"version": "1.1.7",
|
3025 |
+
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz",
|
3026 |
+
"integrity": "sha1-HQJ8K/oRasxmI7yo8AAWVyqH1CU=",
|
3027 |
"dev": true,
|
3028 |
"requires": {
|
3029 |
+
"bytes": "1",
|
3030 |
+
"string_decoder": "0.10"
|
|
|
3031 |
}
|
3032 |
+
}
|
3033 |
+
}
|
3034 |
+
},
|
3035 |
+
"body-parser": {
|
3036 |
+
"version": "1.19.0",
|
3037 |
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
|
3038 |
+
"integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
|
3039 |
+
"dev": true,
|
3040 |
+
"requires": {
|
3041 |
+
"bytes": "3.1.0",
|
3042 |
+
"content-type": "~1.0.4",
|
3043 |
+
"debug": "2.6.9",
|
3044 |
+
"depd": "~1.1.2",
|
3045 |
+
"http-errors": "1.7.2",
|
3046 |
+
"iconv-lite": "0.4.24",
|
3047 |
+
"on-finished": "~2.3.0",
|
3048 |
+
"qs": "6.7.0",
|
3049 |
+
"raw-body": "2.4.0",
|
3050 |
+
"type-is": "~1.6.17"
|
3051 |
+
},
|
3052 |
+
"dependencies": {
|
3053 |
+
"debug": {
|
3054 |
+
"version": "2.6.9",
|
3055 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
3056 |
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
3057 |
+
"dev": true,
|
3058 |
+
"requires": {
|
3059 |
+
"ms": "2.0.0"
|
3060 |
+
}
|
3061 |
+
},
|
3062 |
+
"ms": {
|
3063 |
+
"version": "2.0.0",
|
3064 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
3065 |
+
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
3066 |
+
"dev": true
|
3067 |
+
},
|
3068 |
+
"qs": {
|
3069 |
+
"version": "6.7.0",
|
3070 |
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
|
3071 |
+
"integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==",
|
3072 |
+
"dev": true
|
3073 |
+
}
|
3074 |
+
}
|
3075 |
+
},
|
3076 |
+
"boolbase": {
|
3077 |
+
"version": "1.0.0",
|
3078 |
+
"resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz",
|
3079 |
+
"integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=",
|
3080 |
+
"dev": true
|
3081 |
+
},
|
3082 |
+
"boxen": {
|
3083 |
+
"version": "3.2.0",
|
3084 |
+
"resolved": "https://registry.npmjs.org/boxen/-/boxen-3.2.0.tgz",
|
3085 |
+
"integrity": "sha512-cU4J/+NodM3IHdSL2yN8bqYqnmlBTidDR4RC7nJs61ZmtGz8VZzM3HLQX0zY5mrSmPtR3xWwsq2jOUQqFZN8+A==",
|
3086 |
+
"dev": true,
|
3087 |
+
"requires": {
|
3088 |
+
"ansi-align": "^3.0.0",
|
3089 |
+
"camelcase": "^5.3.1",
|
3090 |
+
"chalk": "^2.4.2",
|
3091 |
+
"cli-boxes": "^2.2.0",
|
3092 |
+
"string-width": "^3.0.0",
|
3093 |
+
"term-size": "^1.2.0",
|
3094 |
+
"type-fest": "^0.3.0",
|
3095 |
+
"widest-line": "^2.0.0"
|
3096 |
+
},
|
3097 |
+
"dependencies": {
|
3098 |
+
"ansi-regex": {
|
3099 |
+
"version": "4.1.0",
|
3100 |
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
|
3101 |
+
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
|
3102 |
+
"dev": true
|
3103 |
+
},
|
3104 |
+
"camelcase": {
|
3105 |
+
"version": "5.3.1",
|
3106 |
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
3107 |
+
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
|
3108 |
+
"dev": true
|
3109 |
+
},
|
3110 |
+
"chalk": {
|
3111 |
+
"version": "2.4.2",
|
3112 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
3113 |
+
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
3114 |
+
"dev": true,
|
3115 |
+
"requires": {
|
3116 |
+
"ansi-styles": "^3.2.1",
|
3117 |
+
"escape-string-regexp": "^1.0.5",
|
3118 |
+
"supports-color": "^5.3.0"
|
3119 |
+
}
|
3120 |
+
},
|
3121 |
+
"is-fullwidth-code-point": {
|
3122 |
"version": "2.0.0",
|
3123 |
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
|
3124 |
"integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
|
3190 |
"integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=",
|
3191 |
"dev": true
|
3192 |
},
|
3193 |
+
"browser-process-hrtime": {
|
3194 |
+
"version": "0.1.3",
|
3195 |
+
"resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz",
|
3196 |
+
"integrity": "sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw==",
|
3197 |
+
"dev": true
|
3198 |
+
},
|
3199 |
+
"browser-resolve": {
|
3200 |
+
"version": "1.11.3",
|
3201 |
+
"resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz",
|
3202 |
+
"integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==",
|
3203 |
+
"dev": true,
|
3204 |
+
"requires": {
|
3205 |
+
"resolve": "1.1.7"
|
3206 |
+
},
|
3207 |
+
"dependencies": {
|
3208 |
+
"resolve": {
|
3209 |
+
"version": "1.1.7",
|
3210 |
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz",
|
3211 |
+
"integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=",
|
3212 |
+
"dev": true
|
3213 |
+
}
|
3214 |
+
}
|
3215 |
+
},
|
3216 |
"browserify-aes": {
|
3217 |
"version": "1.2.0",
|
3218 |
"resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
|
3295 |
"node-releases": "^1.1.42"
|
3296 |
}
|
3297 |
},
|
3298 |
+
"bser": {
|
3299 |
+
"version": "2.1.1",
|
3300 |
+
"resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
|
3301 |
+
"integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
|
3302 |
+
"dev": true,
|
3303 |
+
"requires": {
|
3304 |
+
"node-int64": "^0.4.0"
|
3305 |
+
}
|
3306 |
+
},
|
3307 |
"buffer": {
|
3308 |
"version": "4.9.2",
|
3309 |
"resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
|
3341 |
"integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=",
|
3342 |
"dev": true
|
3343 |
},
|
3344 |
+
"buffers": {
|
3345 |
+
"version": "0.1.1",
|
3346 |
+
"resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz",
|
3347 |
+
"integrity": "sha1-skV5w77U1tOWru5tmorn9Ugqt7s=",
|
3348 |
+
"dev": true
|
3349 |
+
},
|
3350 |
"builtin-modules": {
|
3351 |
"version": "1.1.1",
|
3352 |
"resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
|
3364 |
"integrity": "sha1-y5T662HIaWRR2zZTThQi+U8K7og=",
|
3365 |
"dev": true
|
3366 |
},
|
3367 |
+
"bytes": {
|
3368 |
+
"version": "3.1.0",
|
3369 |
+
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
|
3370 |
+
"integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==",
|
3371 |
+
"dev": true
|
3372 |
+
},
|
3373 |
"cacache": {
|
3374 |
"version": "12.0.3",
|
3375 |
"resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.3.tgz",
|
3465 |
}
|
3466 |
}
|
3467 |
},
|
3468 |
+
"call-me-maybe": {
|
3469 |
+
"version": "1.0.1",
|
3470 |
+
"resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz",
|
3471 |
+
"integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=",
|
3472 |
+
"dev": true
|
3473 |
+
},
|
3474 |
+
"caller-callsite": {
|
3475 |
+
"version": "2.0.0",
|
3476 |
+
"resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz",
|
3477 |
+
"integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=",
|
3478 |
+
"dev": true,
|
3479 |
+
"requires": {
|
3480 |
+
"callsites": "^2.0.0"
|
3481 |
+
},
|
3482 |
+
"dependencies": {
|
3483 |
+
"callsites": {
|
3484 |
+
"version": "2.0.0",
|
3485 |
+
"resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz",
|
3486 |
+
"integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=",
|
3487 |
+
"dev": true
|
3488 |
+
}
|
3489 |
+
}
|
3490 |
+
},
|
3491 |
+
"caller-path": {
|
3492 |
+
"version": "2.0.0",
|
3493 |
+
"resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz",
|
3494 |
+
"integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=",
|
3495 |
+
"dev": true,
|
3496 |
+
"requires": {
|
3497 |
+
"caller-callsite": "^2.0.0"
|
3498 |
+
}
|
3499 |
+
},
|
3500 |
+
"callsites": {
|
3501 |
+
"version": "3.1.0",
|
3502 |
+
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
|
3503 |
+
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
|
3504 |
+
"dev": true
|
3505 |
+
},
|
3506 |
"camelcase": {
|
3507 |
"version": "2.1.1",
|
3508 |
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz",
|
3523 |
"integrity": "sha512-EDnZyOJ6eYh6lHmCvCdHAFbfV4KJ9lSdfv4h/ppEhrU/Yudkl7jujwMZ1we6RX7DXqBfT04pVMQ4J+1wcTlsKA==",
|
3524 |
"dev": true
|
3525 |
},
|
3526 |
+
"capture-exit": {
|
3527 |
+
"version": "2.0.0",
|
3528 |
+
"resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz",
|
3529 |
+
"integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==",
|
3530 |
+
"dev": true,
|
3531 |
+
"requires": {
|
3532 |
+
"rsvp": "^4.8.4"
|
3533 |
+
}
|
3534 |
+
},
|
3535 |
"caseless": {
|
3536 |
"version": "0.12.0",
|
3537 |
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
|
3538 |
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
|
3539 |
},
|
3540 |
+
"ccount": {
|
3541 |
+
"version": "1.0.5",
|
3542 |
+
"resolved": "https://registry.npmjs.org/ccount/-/ccount-1.0.5.tgz",
|
3543 |
+
"integrity": "sha512-MOli1W+nfbPLlKEhInaxhRdp7KVLFxLN5ykwzHgLsLI3H3gs5jjFAK4Eoj3OzzcxCtumDaI8onoVDeQyWaNTkw==",
|
3544 |
+
"dev": true
|
3545 |
+
},
|
3546 |
+
"chainsaw": {
|
3547 |
+
"version": "0.1.0",
|
3548 |
+
"resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz",
|
3549 |
+
"integrity": "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg=",
|
3550 |
+
"dev": true,
|
3551 |
+
"requires": {
|
3552 |
+
"traverse": ">=0.3.0 <0.4"
|
3553 |
+
}
|
3554 |
+
},
|
3555 |
"chalk": {
|
3556 |
"version": "2.4.1",
|
3557 |
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
|
3568 |
"resolved": "https://registry.npmjs.org/char-props/-/char-props-0.1.5.tgz",
|
3569 |
"integrity": "sha1-W5UvniDqIc0Iyn/hNaEPb+kcEJ4="
|
3570 |
},
|
3571 |
+
"character-entities": {
|
3572 |
+
"version": "1.2.4",
|
3573 |
+
"resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz",
|
3574 |
+
"integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==",
|
3575 |
+
"dev": true
|
3576 |
+
},
|
3577 |
+
"character-entities-html4": {
|
3578 |
+
"version": "1.1.4",
|
3579 |
+
"resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.4.tgz",
|
3580 |
+
"integrity": "sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g==",
|
3581 |
+
"dev": true
|
3582 |
+
},
|
3583 |
+
"character-entities-legacy": {
|
3584 |
+
"version": "1.1.4",
|
3585 |
+
"resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz",
|
3586 |
+
"integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==",
|
3587 |
+
"dev": true
|
3588 |
+
},
|
3589 |
+
"character-reference-invalid": {
|
3590 |
+
"version": "1.1.4",
|
3591 |
+
"resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz",
|
3592 |
+
"integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==",
|
3593 |
+
"dev": true
|
3594 |
+
},
|
3595 |
+
"chardet": {
|
3596 |
+
"version": "0.7.0",
|
3597 |
+
"resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
|
3598 |
+
"integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==",
|
3599 |
+
"dev": true
|
3600 |
+
},
|
3601 |
+
"check-node-version": {
|
3602 |
+
"version": "3.3.0",
|
3603 |
+
"resolved": "https://registry.npmjs.org/check-node-version/-/check-node-version-3.3.0.tgz",
|
3604 |
+
"integrity": "sha512-OAtp7prQf+8YYKn2UB/fK1Ppb9OT+apW56atoKYUvucYLPq69VozOY0B295okBwCKymk2cictrS3qsdcZwyfzw==",
|
3605 |
+
"dev": true,
|
3606 |
+
"requires": {
|
3607 |
+
"chalk": "^2.3.0",
|
3608 |
+
"map-values": "^1.0.1",
|
3609 |
+
"minimist": "^1.2.0",
|
3610 |
+
"object-filter": "^1.0.2",
|
3611 |
+
"object.assign": "^4.0.4",
|
3612 |
+
"run-parallel": "^1.1.4",
|
3613 |
+
"semver": "^5.0.3"
|
3614 |
+
}
|
3615 |
+
},
|
3616 |
+
"check-types": {
|
3617 |
+
"version": "8.0.3",
|
3618 |
+
"resolved": "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz",
|
3619 |
+
"integrity": "sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==",
|
3620 |
+
"dev": true
|
3621 |
+
},
|
3622 |
+
"cheerio": {
|
3623 |
+
"version": "1.0.0-rc.3",
|
3624 |
+
"resolved": "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.3.tgz",
|
3625 |
+
"integrity": "sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA==",
|
3626 |
+
"dev": true,
|
3627 |
+
"requires": {
|
3628 |
+
"css-select": "~1.2.0",
|
3629 |
+
"dom-serializer": "~0.1.1",
|
3630 |
+
"entities": "~1.1.1",
|
3631 |
+
"htmlparser2": "^3.9.1",
|
3632 |
+
"lodash": "^4.15.0",
|
3633 |
+
"parse5": "^3.0.1"
|
3634 |
+
},
|
3635 |
+
"dependencies": {
|
3636 |
+
"parse5": {
|
3637 |
+
"version": "3.0.3",
|
3638 |
+
"resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz",
|
3639 |
+
"integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==",
|
3640 |
+
"dev": true,
|
3641 |
+
"requires": {
|
3642 |
+
"@types/node": "*"
|
3643 |
+
}
|
3644 |
+
}
|
3645 |
+
}
|
3646 |
+
},
|
3647 |
"chokidar": {
|
3648 |
"version": "2.1.6",
|
3649 |
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.6.tgz",
|
3753 |
"integrity": "sha512-gpaBrMAizVEANOpfZp/EEUixTXDyGt7DFzdK5hU+UbWt/J0lB0w20ncZj59Z9a93xHb9u12zF5BS6i9RKbtg4w==",
|
3754 |
"dev": true
|
3755 |
},
|
3756 |
+
"cli-cursor": {
|
3757 |
+
"version": "3.1.0",
|
3758 |
+
"resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
|
3759 |
+
"integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
|
3760 |
+
"dev": true,
|
3761 |
+
"requires": {
|
3762 |
+
"restore-cursor": "^3.1.0"
|
3763 |
+
}
|
3764 |
+
},
|
3765 |
"cli-table": {
|
3766 |
"version": "0.3.1",
|
3767 |
"resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz",
|
3771 |
"colors": "1.0.3"
|
3772 |
}
|
3773 |
},
|
3774 |
+
"cli-width": {
|
3775 |
+
"version": "2.2.0",
|
3776 |
+
"resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
|
3777 |
+
"integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=",
|
3778 |
+
"dev": true
|
3779 |
+
},
|
3780 |
"cliui": {
|
3781 |
"version": "3.2.0",
|
3782 |
"resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
|
3810 |
"shallow-clone": "^3.0.0"
|
3811 |
}
|
3812 |
},
|
3813 |
+
"clone-regexp": {
|
3814 |
+
"version": "1.0.1",
|
3815 |
+
"resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.1.tgz",
|
3816 |
+
"integrity": "sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw==",
|
3817 |
+
"dev": true,
|
3818 |
+
"requires": {
|
3819 |
+
"is-regexp": "^1.0.0",
|
3820 |
+
"is-supported-regexp-flag": "^1.0.0"
|
3821 |
+
}
|
3822 |
+
},
|
3823 |
"clone-response": {
|
3824 |
"version": "1.0.2",
|
3825 |
"resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz",
|
3877 |
}
|
3878 |
}
|
3879 |
},
|
3880 |
+
"co": {
|
3881 |
+
"version": "4.6.0",
|
3882 |
+
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
|
3883 |
+
"integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
|
3884 |
+
"dev": true
|
3885 |
+
},
|
3886 |
"code-point-at": {
|
3887 |
"version": "1.1.0",
|
3888 |
"resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
|
3889 |
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
|
3890 |
},
|
3891 |
+
"collapse-white-space": {
|
3892 |
+
"version": "1.0.6",
|
3893 |
+
"resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz",
|
3894 |
+
"integrity": "sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==",
|
3895 |
+
"dev": true
|
3896 |
+
},
|
3897 |
"collection-map": {
|
3898 |
"version": "1.0.0",
|
3899 |
"resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz",
|
3950 |
"delayed-stream": "~1.0.0"
|
3951 |
}
|
3952 |
},
|
3953 |
+
"command-exists": {
|
3954 |
+
"version": "1.2.8",
|
3955 |
+
"resolved": "https://registry.npmjs.org/command-exists/-/command-exists-1.2.8.tgz",
|
3956 |
+
"integrity": "sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw==",
|
3957 |
+
"dev": true
|
3958 |
+
},
|
3959 |
"commander": {
|
3960 |
"version": "2.19.0",
|
3961 |
"resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz",
|
3962 |
"integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg=="
|
3963 |
},
|
3964 |
+
"comment-parser": {
|
3965 |
+
"version": "0.6.2",
|
3966 |
+
"resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-0.6.2.tgz",
|
3967 |
+
"integrity": "sha512-Wdms0Q8d4vvb2Yk72OwZjwNWtMklbC5Re7lD9cjCP/AG1fhocmc0TrxGBBAXPLy8fZQPrfHGgyygwI0lA7pbzA==",
|
3968 |
+
"dev": true
|
3969 |
+
},
|
3970 |
"commondir": {
|
3971 |
"version": "1.0.1",
|
3972 |
"resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
|
4076 |
"integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=",
|
4077 |
"dev": true
|
4078 |
},
|
4079 |
+
"content-disposition": {
|
4080 |
+
"version": "0.5.3",
|
4081 |
+
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz",
|
4082 |
+
"integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==",
|
4083 |
+
"dev": true,
|
4084 |
+
"requires": {
|
4085 |
+
"safe-buffer": "5.1.2"
|
4086 |
+
}
|
4087 |
+
},
|
4088 |
+
"content-type": {
|
4089 |
+
"version": "1.0.4",
|
4090 |
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz",
|
4091 |
+
"integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==",
|
4092 |
+
"dev": true
|
4093 |
+
},
|
4094 |
+
"continuable-cache": {
|
4095 |
+
"version": "0.3.1",
|
4096 |
+
"resolved": "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz",
|
4097 |
+
"integrity": "sha1-vXJ6f67XfnH/OYWskzUakSczrQ8=",
|
4098 |
+
"dev": true
|
4099 |
+
},
|
4100 |
"convert-source-map": {
|
4101 |
"version": "1.6.0",
|
4102 |
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz",
|
4106 |
"safe-buffer": "~5.1.1"
|
4107 |
}
|
4108 |
},
|
4109 |
+
"cookie": {
|
4110 |
+
"version": "0.4.0",
|
4111 |
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz",
|
4112 |
+
"integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==",
|
4113 |
+
"dev": true
|
4114 |
+
},
|
4115 |
+
"cookie-signature": {
|
4116 |
+
"version": "1.0.6",
|
4117 |
+
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
|
4118 |
+
"integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=",
|
4119 |
+
"dev": true
|
4120 |
+
},
|
4121 |
"copy-concurrently": {
|
4122 |
"version": "1.0.5",
|
4123 |
"resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
|
4148 |
"is-plain-object": "^2.0.1"
|
4149 |
}
|
4150 |
},
|
4151 |
+
"core-js": {
|
4152 |
+
"version": "3.6.4",
|
4153 |
+
"resolved": "https://registry.npmjs.org/core-js/-/core-js-3.6.4.tgz",
|
4154 |
+
"integrity": "sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw==",
|
4155 |
+
"dev": true
|
4156 |
+
},
|
4157 |
"core-js-compat": {
|
4158 |
"version": "3.6.1",
|
4159 |
"resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.1.tgz",
|
4172 |
}
|
4173 |
}
|
4174 |
},
|
4175 |
+
"core-js-pure": {
|
4176 |
+
"version": "3.6.4",
|
4177 |
+
"resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.6.4.tgz",
|
4178 |
+
"integrity": "sha512-epIhRLkXdgv32xIUFaaAry2wdxZYBi6bgM7cB136dzzXXa+dFyRLTZeLUJxnd8ShrmyVXBub63n2NHo2JAt8Cw==",
|
4179 |
+
"dev": true
|
4180 |
+
},
|
4181 |
"core-util-is": {
|
4182 |
"version": "1.0.2",
|
4183 |
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
4435 |
"resolved": "https://registry.npmjs.org/css-mediaquery/-/css-mediaquery-0.1.2.tgz",
|
4436 |
"integrity": "sha1-aiw3NEkoYYYxxUvTPO3TAdoYvqA="
|
4437 |
},
|
4438 |
+
"css-select": {
|
4439 |
+
"version": "1.2.0",
|
4440 |
+
"resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz",
|
4441 |
+
"integrity": "sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=",
|
4442 |
+
"dev": true,
|
4443 |
+
"requires": {
|
4444 |
+
"boolbase": "~1.0.0",
|
4445 |
+
"css-what": "2.1",
|
4446 |
+
"domutils": "1.5.1",
|
4447 |
+
"nth-check": "~1.0.1"
|
4448 |
+
}
|
4449 |
+
},
|
4450 |
+
"css-what": {
|
4451 |
+
"version": "2.1.3",
|
4452 |
+
"resolved": "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz",
|
4453 |
+
"integrity": "sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==",
|
4454 |
+
"dev": true
|
4455 |
+
},
|
4456 |
"cssesc": {
|
4457 |
"version": "3.0.0",
|
4458 |
"resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
|
4459 |
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
|
4460 |
"dev": true
|
4461 |
},
|
4462 |
+
"cssom": {
|
4463 |
+
"version": "0.3.8",
|
4464 |
+
"resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
|
4465 |
+
"integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==",
|
4466 |
+
"dev": true
|
4467 |
+
},
|
4468 |
+
"cssstyle": {
|
4469 |
+
"version": "1.4.0",
|
4470 |
+
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz",
|
4471 |
+
"integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==",
|
4472 |
+
"dev": true,
|
4473 |
+
"requires": {
|
4474 |
+
"cssom": "0.3.x"
|
4475 |
+
}
|
4476 |
+
},
|
4477 |
"currently-unhandled": {
|
4478 |
"version": "0.4.1",
|
4479 |
"resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
|
4482 |
"array-find-index": "^1.0.1"
|
4483 |
}
|
4484 |
},
|
4485 |
+
"cwd": {
|
4486 |
+
"version": "0.10.0",
|
4487 |
+
"resolved": "https://registry.npmjs.org/cwd/-/cwd-0.10.0.tgz",
|
4488 |
+
"integrity": "sha1-FyQAaUBXwioTsM8WFix+S3p/5Wc=",
|
4489 |
+
"dev": true,
|
4490 |
+
"requires": {
|
4491 |
+
"find-pkg": "^0.1.2",
|
4492 |
+
"fs-exists-sync": "^0.1.0"
|
4493 |
+
}
|
4494 |
+
},
|
4495 |
"cyclist": {
|
4496 |
"version": "1.0.1",
|
4497 |
"resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz",
|
4508 |
"type": "^1.0.1"
|
4509 |
}
|
4510 |
},
|
4511 |
+
"damerau-levenshtein": {
|
4512 |
+
"version": "1.0.6",
|
4513 |
+
"resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz",
|
4514 |
+
"integrity": "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==",
|
4515 |
+
"dev": true
|
4516 |
+
},
|
4517 |
"dashdash": {
|
4518 |
"version": "1.14.1",
|
4519 |
"resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
|
4522 |
"assert-plus": "^1.0.0"
|
4523 |
}
|
4524 |
},
|
4525 |
+
"data-urls": {
|
4526 |
+
"version": "1.1.0",
|
4527 |
+
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz",
|
4528 |
+
"integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==",
|
4529 |
+
"dev": true,
|
4530 |
+
"requires": {
|
4531 |
+
"abab": "^2.0.0",
|
4532 |
+
"whatwg-mimetype": "^2.2.0",
|
4533 |
+
"whatwg-url": "^7.0.0"
|
4534 |
+
},
|
4535 |
+
"dependencies": {
|
4536 |
+
"whatwg-url": {
|
4537 |
+
"version": "7.1.0",
|
4538 |
+
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz",
|
4539 |
+
"integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==",
|
4540 |
+
"dev": true,
|
4541 |
+
"requires": {
|
4542 |
+
"lodash.sortby": "^4.7.0",
|
4543 |
+
"tr46": "^1.0.1",
|
4544 |
+
"webidl-conversions": "^4.0.2"
|
4545 |
+
}
|
4546 |
+
}
|
4547 |
+
}
|
4548 |
+
},
|
4549 |
"debug": {
|
4550 |
"version": "4.1.1",
|
4551 |
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
|
4582 |
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
|
4583 |
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
|
4584 |
},
|
4585 |
+
"decamelize-keys": {
|
4586 |
+
"version": "1.1.0",
|
4587 |
+
"resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz",
|
4588 |
+
"integrity": "sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=",
|
4589 |
+
"dev": true,
|
4590 |
+
"requires": {
|
4591 |
+
"decamelize": "^1.1.0",
|
4592 |
+
"map-obj": "^1.0.0"
|
4593 |
+
}
|
4594 |
+
},
|
4595 |
"decode-uri-component": {
|
4596 |
"version": "0.2.0",
|
4597 |
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
|
4607 |
"mimic-response": "^1.0.0"
|
4608 |
}
|
4609 |
},
|
4610 |
+
"decompress-zip": {
|
4611 |
+
"version": "0.2.2",
|
4612 |
+
"resolved": "https://registry.npmjs.org/decompress-zip/-/decompress-zip-0.2.2.tgz",
|
4613 |
+
"integrity": "sha512-v+Na3Ck86Px7s2ix+f77pMQC3GlkxHHN+YyvnkEW7+xX5F39pcDpIV/VFvGYk8MznTFcMoPjL3XNWEJLXWoSPw==",
|
4614 |
+
"dev": true,
|
4615 |
+
"requires": {
|
4616 |
+
"binary": "^0.3.0",
|
4617 |
+
"graceful-fs": "^4.1.3",
|
4618 |
+
"mkpath": "^0.1.0",
|
4619 |
+
"nopt": "^3.0.1",
|
4620 |
+
"q": "^1.1.2",
|
4621 |
+
"readable-stream": "^1.1.8",
|
4622 |
+
"touch": "0.0.3"
|
4623 |
+
}
|
4624 |
+
},
|
4625 |
"deep-extend": {
|
4626 |
"version": "0.6.0",
|
4627 |
"resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
|
4628 |
"integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
|
4629 |
"dev": true
|
4630 |
},
|
4631 |
+
"deep-is": {
|
4632 |
+
"version": "0.1.3",
|
4633 |
+
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
|
4634 |
+
"integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
|
4635 |
+
"dev": true
|
4636 |
+
},
|
4637 |
"default-compare": {
|
4638 |
"version": "1.0.0",
|
4639 |
"resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz",
|
4723 |
"resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz",
|
4724 |
"integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o="
|
4725 |
},
|
4726 |
+
"depd": {
|
4727 |
+
"version": "1.1.2",
|
4728 |
+
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
|
4729 |
+
"integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
|
4730 |
+
"dev": true
|
4731 |
+
},
|
4732 |
"des.js": {
|
4733 |
"version": "1.0.1",
|
4734 |
"resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
|
4739 |
"minimalistic-assert": "^1.0.0"
|
4740 |
}
|
4741 |
},
|
4742 |
+
"destroy": {
|
4743 |
+
"version": "1.0.4",
|
4744 |
+
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
|
4745 |
+
"integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=",
|
4746 |
+
"dev": true
|
4747 |
+
},
|
4748 |
"detect-file": {
|
4749 |
"version": "1.0.0",
|
4750 |
"resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz",
|
4757 |
"integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=",
|
4758 |
"dev": true
|
4759 |
},
|
4760 |
+
"diff-sequences": {
|
4761 |
+
"version": "24.9.0",
|
4762 |
+
"resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.9.0.tgz",
|
4763 |
+
"integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==",
|
4764 |
+
"dev": true
|
4765 |
+
},
|
4766 |
"diffie-hellman": {
|
4767 |
"version": "5.0.3",
|
4768 |
"resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
|
4774 |
"randombytes": "^2.0.0"
|
4775 |
}
|
4776 |
},
|
4777 |
+
"dir-glob": {
|
4778 |
+
"version": "3.0.1",
|
4779 |
+
"resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
|
4780 |
+
"integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
|
4781 |
+
"dev": true,
|
4782 |
+
"requires": {
|
4783 |
+
"path-type": "^4.0.0"
|
4784 |
+
},
|
4785 |
+
"dependencies": {
|
4786 |
+
"path-type": {
|
4787 |
+
"version": "4.0.0",
|
4788 |
+
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
|
4789 |
+
"integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
|
4790 |
+
"dev": true
|
4791 |
+
}
|
4792 |
+
}
|
4793 |
+
},
|
4794 |
+
"discontinuous-range": {
|
4795 |
+
"version": "1.0.0",
|
4796 |
+
"resolved": "https://registry.npmjs.org/discontinuous-range/-/discontinuous-range-1.0.0.tgz",
|
4797 |
+
"integrity": "sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=",
|
4798 |
+
"dev": true
|
4799 |
+
},
|
4800 |
+
"doctrine": {
|
4801 |
+
"version": "2.1.0",
|
4802 |
+
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
|
4803 |
+
"integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
|
4804 |
+
"dev": true,
|
4805 |
+
"requires": {
|
4806 |
+
"esutils": "^2.0.2"
|
4807 |
+
}
|
4808 |
+
},
|
4809 |
+
"dom-serializer": {
|
4810 |
+
"version": "0.1.1",
|
4811 |
+
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz",
|
4812 |
+
"integrity": "sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA==",
|
4813 |
+
"dev": true,
|
4814 |
+
"requires": {
|
4815 |
+
"domelementtype": "^1.3.0",
|
4816 |
+
"entities": "^1.1.1"
|
4817 |
+
}
|
4818 |
+
},
|
4819 |
"domain-browser": {
|
4820 |
"version": "1.2.0",
|
4821 |
"resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
|
4822 |
"integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
|
4823 |
"dev": true
|
4824 |
},
|
4825 |
+
"domelementtype": {
|
4826 |
+
"version": "1.3.1",
|
4827 |
+
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
|
4828 |
+
"integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==",
|
4829 |
+
"dev": true
|
4830 |
+
},
|
4831 |
+
"domexception": {
|
4832 |
+
"version": "1.0.1",
|
4833 |
+
"resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz",
|
4834 |
+
"integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==",
|
4835 |
+
"dev": true,
|
4836 |
+
"requires": {
|
4837 |
+
"webidl-conversions": "^4.0.2"
|
4838 |
+
}
|
4839 |
+
},
|
4840 |
+
"domhandler": {
|
4841 |
+
"version": "2.4.2",
|
4842 |
+
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
|
4843 |
+
"integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
|
4844 |
+
"dev": true,
|
4845 |
+
"requires": {
|
4846 |
+
"domelementtype": "1"
|
4847 |
+
}
|
4848 |
+
},
|
4849 |
+
"domutils": {
|
4850 |
+
"version": "1.5.1",
|
4851 |
+
"resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz",
|
4852 |
+
"integrity": "sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=",
|
4853 |
+
"dev": true,
|
4854 |
+
"requires": {
|
4855 |
+
"dom-serializer": "0",
|
4856 |
+
"domelementtype": "1"
|
4857 |
+
}
|
4858 |
+
},
|
4859 |
"dot-prop": {
|
4860 |
"version": "4.2.0",
|
4861 |
"resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz",
|
4865 |
"is-obj": "^1.0.0"
|
4866 |
}
|
4867 |
},
|
4868 |
+
"duplexer": {
|
4869 |
+
"version": "0.1.1",
|
4870 |
+
"resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz",
|
4871 |
+
"integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=",
|
4872 |
+
"dev": true
|
4873 |
+
},
|
4874 |
"duplexer2": {
|
4875 |
"version": "0.0.2",
|
4876 |
"resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz",
|
4966 |
"safer-buffer": "^2.1.0"
|
4967 |
}
|
4968 |
},
|
4969 |
+
"ee-first": {
|
4970 |
+
"version": "1.1.1",
|
4971 |
+
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
4972 |
+
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
|
4973 |
+
"dev": true
|
4974 |
+
},
|
4975 |
+
"ejs": {
|
4976 |
+
"version": "2.7.4",
|
4977 |
+
"resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz",
|
4978 |
+
"integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==",
|
4979 |
+
"dev": true
|
4980 |
+
},
|
4981 |
"electron-to-chromium": {
|
4982 |
"version": "1.3.322",
|
4983 |
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.322.tgz",
|
5011 |
"integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=",
|
5012 |
"dev": true
|
5013 |
},
|
5014 |
+
"encodeurl": {
|
5015 |
+
"version": "1.0.2",
|
5016 |
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
|
5017 |
+
"integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
|
5018 |
+
"dev": true
|
5019 |
+
},
|
5020 |
"encoding": {
|
5021 |
"version": "0.1.12",
|
5022 |
"resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz",
|
5098 |
}
|
5099 |
}
|
5100 |
},
|
5101 |
+
"entities": {
|
5102 |
+
"version": "1.1.2",
|
5103 |
+
"resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
|
5104 |
+
"integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==",
|
5105 |
+
"dev": true
|
5106 |
+
},
|
5107 |
+
"enzyme": {
|
5108 |
+
"version": "3.11.0",
|
5109 |
+
"resolved": "https://registry.npmjs.org/enzyme/-/enzyme-3.11.0.tgz",
|
5110 |
+
"integrity": "sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==",
|
5111 |
+
"dev": true,
|
5112 |
+
"requires": {
|
5113 |
+
"array.prototype.flat": "^1.2.3",
|
5114 |
+
"cheerio": "^1.0.0-rc.3",
|
5115 |
+
"enzyme-shallow-equal": "^1.0.1",
|
5116 |
+
"function.prototype.name": "^1.1.2",
|
5117 |
+
"has": "^1.0.3",
|
5118 |
+
"html-element-map": "^1.2.0",
|
5119 |
+
"is-boolean-object": "^1.0.1",
|
5120 |
+
"is-callable": "^1.1.5",
|
5121 |
+
"is-number-object": "^1.0.4",
|
5122 |
+
"is-regex": "^1.0.5",
|
5123 |
+
"is-string": "^1.0.5",
|
5124 |
+
"is-subset": "^0.1.1",
|
5125 |
+
"lodash.escape": "^4.0.1",
|
5126 |
+
"lodash.isequal": "^4.5.0",
|
5127 |
+
"object-inspect": "^1.7.0",
|
5128 |
+
"object-is": "^1.0.2",
|
5129 |
+
"object.assign": "^4.1.0",
|
5130 |
+
"object.entries": "^1.1.1",
|
5131 |
+
"object.values": "^1.1.1",
|
5132 |
+
"raf": "^3.4.1",
|
5133 |
+
"rst-selector-parser": "^2.2.3",
|
5134 |
+
"string.prototype.trim": "^1.2.1"
|
5135 |
+
}
|
5136 |
+
},
|
5137 |
+
"enzyme-adapter-react-16": {
|
5138 |
+
"version": "1.15.2",
|
5139 |
+
"resolved": "https://registry.npmjs.org/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.2.tgz",
|
5140 |
+
"integrity": "sha512-SkvDrb8xU3lSxID8Qic9rB8pvevDbLybxPK6D/vW7PrT0s2Cl/zJYuXvsd1EBTz0q4o3iqG3FJhpYz3nUNpM2Q==",
|
5141 |
+
"dev": true,
|
5142 |
+
"requires": {
|
5143 |
+
"enzyme-adapter-utils": "^1.13.0",
|
5144 |
+
"enzyme-shallow-equal": "^1.0.1",
|
5145 |
+
"has": "^1.0.3",
|
5146 |
+
"object.assign": "^4.1.0",
|
5147 |
+
"object.values": "^1.1.1",
|
5148 |
+
"prop-types": "^15.7.2",
|
5149 |
+
"react-is": "^16.12.0",
|
5150 |
+
"react-test-renderer": "^16.0.0-0",
|
5151 |
+
"semver": "^5.7.0"
|
5152 |
+
},
|
5153 |
+
"dependencies": {
|
5154 |
+
"semver": {
|
5155 |
+
"version": "5.7.1",
|
5156 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
|
5157 |
+
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
|
5158 |
+
"dev": true
|
5159 |
+
}
|
5160 |
+
}
|
5161 |
+
},
|
5162 |
+
"enzyme-adapter-utils": {
|
5163 |
+
"version": "1.13.0",
|
5164 |
+
"resolved": "https://registry.npmjs.org/enzyme-adapter-utils/-/enzyme-adapter-utils-1.13.0.tgz",
|
5165 |
+
"integrity": "sha512-YuEtfQp76Lj5TG1NvtP2eGJnFKogk/zT70fyYHXK2j3v6CtuHqc8YmgH/vaiBfL8K1SgVVbQXtTcgQZFwzTVyQ==",
|
5166 |
+
"dev": true,
|
5167 |
+
"requires": {
|
5168 |
+
"airbnb-prop-types": "^2.15.0",
|
5169 |
+
"function.prototype.name": "^1.1.2",
|
5170 |
+
"object.assign": "^4.1.0",
|
5171 |
+
"object.fromentries": "^2.0.2",
|
5172 |
+
"prop-types": "^15.7.2",
|
5173 |
+
"semver": "^5.7.1"
|
5174 |
+
},
|
5175 |
+
"dependencies": {
|
5176 |
+
"semver": {
|
5177 |
+
"version": "5.7.1",
|
5178 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
|
5179 |
+
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
|
5180 |
+
"dev": true
|
5181 |
+
}
|
5182 |
+
}
|
5183 |
+
},
|
5184 |
+
"enzyme-shallow-equal": {
|
5185 |
+
"version": "1.0.1",
|
5186 |
+
"resolved": "https://registry.npmjs.org/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.1.tgz",
|
5187 |
+
"integrity": "sha512-hGA3i1so8OrYOZSM9whlkNmVHOicJpsjgTzC+wn2JMJXhq1oO4kA4bJ5MsfzSIcC71aLDKzJ6gZpIxrqt3QTAQ==",
|
5188 |
+
"dev": true,
|
5189 |
+
"requires": {
|
5190 |
+
"has": "^1.0.3",
|
5191 |
+
"object-is": "^1.0.2"
|
5192 |
+
}
|
5193 |
+
},
|
5194 |
+
"enzyme-to-json": {
|
5195 |
+
"version": "3.4.4",
|
5196 |
+
"resolved": "https://registry.npmjs.org/enzyme-to-json/-/enzyme-to-json-3.4.4.tgz",
|
5197 |
+
"integrity": "sha512-50LELP/SCPJJGic5rAARvU7pgE3m1YaNj7JLM+Qkhl5t7PAs6fiyc8xzc50RnkKPFQCv0EeFVjEWdIFRGPWMsA==",
|
5198 |
+
"dev": true,
|
5199 |
+
"requires": {
|
5200 |
+
"lodash": "^4.17.15",
|
5201 |
+
"react-is": "^16.12.0"
|
5202 |
+
}
|
5203 |
+
},
|
5204 |
"equivalent-key-map": {
|
5205 |
"version": "0.2.2",
|
5206 |
"resolved": "https://registry.npmjs.org/equivalent-key-map/-/equivalent-key-map-0.2.2.tgz",
|
5221 |
"prr": "~1.0.1"
|
5222 |
}
|
5223 |
},
|
5224 |
+
"error": {
|
5225 |
+
"version": "7.2.1",
|
5226 |
+
"resolved": "https://registry.npmjs.org/error/-/error-7.2.1.tgz",
|
5227 |
+
"integrity": "sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==",
|
5228 |
+
"dev": true,
|
5229 |
+
"requires": {
|
5230 |
+
"string-template": "~0.2.1"
|
5231 |
+
}
|
5232 |
+
},
|
5233 |
"error-ex": {
|
5234 |
"version": "1.3.2",
|
5235 |
"resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
|
5238 |
"is-arrayish": "^0.2.1"
|
5239 |
}
|
5240 |
},
|
5241 |
+
"es-abstract": {
|
5242 |
+
"version": "1.17.4",
|
5243 |
+
"resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.4.tgz",
|
5244 |
+
"integrity": "sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ==",
|
5245 |
+
"dev": true,
|
5246 |
+
"requires": {
|
5247 |
+
"es-to-primitive": "^1.2.1",
|
5248 |
+
"function-bind": "^1.1.1",
|
5249 |
+
"has": "^1.0.3",
|
5250 |
+
"has-symbols": "^1.0.1",
|
5251 |
+
"is-callable": "^1.1.5",
|
5252 |
+
"is-regex": "^1.0.5",
|
5253 |
+
"object-inspect": "^1.7.0",
|
5254 |
+
"object-keys": "^1.1.1",
|
5255 |
+
"object.assign": "^4.1.0",
|
5256 |
+
"string.prototype.trimleft": "^2.1.1",
|
5257 |
+
"string.prototype.trimright": "^2.1.1"
|
5258 |
+
},
|
5259 |
+
"dependencies": {
|
5260 |
+
"has-symbols": {
|
5261 |
+
"version": "1.0.1",
|
5262 |
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
|
5263 |
+
"integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
|
5264 |
+
"dev": true
|
5265 |
+
},
|
5266 |
+
"object-keys": {
|
5267 |
+
"version": "1.1.1",
|
5268 |
+
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
|
5269 |
+
"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
|
5270 |
+
"dev": true
|
5271 |
+
}
|
5272 |
+
}
|
5273 |
+
},
|
5274 |
+
"es-to-primitive": {
|
5275 |
+
"version": "1.2.1",
|
5276 |
+
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
|
5277 |
+
"integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
|
5278 |
+
"dev": true,
|
5279 |
+
"requires": {
|
5280 |
+
"is-callable": "^1.1.4",
|
5281 |
+
"is-date-object": "^1.0.1",
|
5282 |
+
"is-symbol": "^1.0.2"
|
5283 |
+
}
|
5284 |
+
},
|
5285 |
"es5-ext": {
|
5286 |
"version": "0.10.50",
|
5287 |
"resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.50.tgz",
|
5341 |
"es6-symbol": "^3.1.1"
|
5342 |
}
|
5343 |
},
|
5344 |
+
"escape-html": {
|
5345 |
+
"version": "1.0.3",
|
5346 |
+
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
5347 |
+
"integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
|
5348 |
+
"dev": true
|
5349 |
+
},
|
5350 |
"escape-string-regexp": {
|
5351 |
"version": "1.0.5",
|
5352 |
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
5353 |
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
|
5354 |
},
|
5355 |
+
"escodegen": {
|
5356 |
+
"version": "1.13.0",
|
5357 |
+
"resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.13.0.tgz",
|
5358 |
+
"integrity": "sha512-eYk2dCkxR07DsHA/X2hRBj0CFAZeri/LyDMc0C8JT1Hqi6JnVpMhJ7XFITbb0+yZS3lVkaPL2oCkZ3AVmeVbMw==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5359 |
"dev": true,
|
5360 |
"requires": {
|
5361 |
+
"esprima": "^4.0.1",
|
5362 |
+
"estraverse": "^4.2.0",
|
5363 |
+
"esutils": "^2.0.2",
|
5364 |
+
"optionator": "^0.8.1",
|
5365 |
+
"source-map": "~0.6.1"
|
5366 |
+
},
|
5367 |
+
"dependencies": {
|
5368 |
+
"source-map": {
|
5369 |
+
"version": "0.6.1",
|
5370 |
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
5371 |
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
5372 |
+
"dev": true,
|
5373 |
+
"optional": true
|
5374 |
+
}
|
5375 |
}
|
5376 |
},
|
5377 |
+
"eslint": {
|
5378 |
+
"version": "6.8.0",
|
5379 |
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz",
|
5380 |
+
"integrity": "sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig==",
|
5381 |
"dev": true,
|
5382 |
"requires": {
|
5383 |
+
"@babel/code-frame": "^7.0.0",
|
5384 |
+
"ajv": "^6.10.0",
|
5385 |
+
"chalk": "^2.1.0",
|
5386 |
+
"cross-spawn": "^6.0.5",
|
5387 |
+
"debug": "^4.0.1",
|
5388 |
+
"doctrine": "^3.0.0",
|
5389 |
+
"eslint-scope": "^5.0.0",
|
5390 |
+
"eslint-utils": "^1.4.3",
|
5391 |
+
"eslint-visitor-keys": "^1.1.0",
|
5392 |
+
"espree": "^6.1.2",
|
5393 |
+
"esquery": "^1.0.1",
|
5394 |
+
"esutils": "^2.0.2",
|
5395 |
+
"file-entry-cache": "^5.0.1",
|
5396 |
+
"functional-red-black-tree": "^1.0.1",
|
5397 |
+
"glob-parent": "^5.0.0",
|
5398 |
+
"globals": "^12.1.0",
|
5399 |
+
"ignore": "^4.0.6",
|
5400 |
+
"import-fresh": "^3.0.0",
|
5401 |
+
"imurmurhash": "^0.1.4",
|
5402 |
+
"inquirer": "^7.0.0",
|
5403 |
+
"is-glob": "^4.0.0",
|
5404 |
+
"js-yaml": "^3.13.1",
|
5405 |
+
"json-stable-stringify-without-jsonify": "^1.0.1",
|
5406 |
+
"levn": "^0.3.0",
|
5407 |
+
"lodash": "^4.17.14",
|
5408 |
+
"minimatch": "^3.0.4",
|
5409 |
+
"mkdirp": "^0.5.1",
|
5410 |
+
"natural-compare": "^1.4.0",
|
5411 |
+
"optionator": "^0.8.3",
|
5412 |
+
"progress": "^2.0.0",
|
5413 |
+
"regexpp": "^2.0.1",
|
5414 |
+
"semver": "^6.1.2",
|
5415 |
+
"strip-ansi": "^5.2.0",
|
5416 |
+
"strip-json-comments": "^3.0.1",
|
5417 |
+
"table": "^5.2.3",
|
5418 |
+
"text-table": "^0.2.0",
|
5419 |
+
"v8-compile-cache": "^2.0.3"
|
5420 |
},
|
5421 |
"dependencies": {
|
5422 |
+
"ajv": {
|
5423 |
+
"version": "6.11.0",
|
5424 |
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.11.0.tgz",
|
5425 |
+
"integrity": "sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA==",
|
5426 |
+
"dev": true,
|
5427 |
+
"requires": {
|
5428 |
+
"fast-deep-equal": "^3.1.1",
|
5429 |
+
"fast-json-stable-stringify": "^2.0.0",
|
5430 |
+
"json-schema-traverse": "^0.4.1",
|
5431 |
+
"uri-js": "^4.2.2"
|
5432 |
+
}
|
5433 |
+
},
|
5434 |
+
"ansi-regex": {
|
5435 |
+
"version": "4.1.0",
|
5436 |
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
|
5437 |
+
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
|
5438 |
+
"dev": true
|
5439 |
+
},
|
5440 |
"cross-spawn": {
|
5441 |
+
"version": "6.0.5",
|
5442 |
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
|
5443 |
+
"integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
|
5444 |
"dev": true,
|
5445 |
"requires": {
|
5446 |
+
"nice-try": "^1.0.4",
|
5447 |
+
"path-key": "^2.0.1",
|
5448 |
+
"semver": "^5.5.0",
|
5449 |
"shebang-command": "^1.2.0",
|
5450 |
"which": "^1.2.9"
|
5451 |
+
},
|
5452 |
+
"dependencies": {
|
5453 |
+
"semver": {
|
5454 |
+
"version": "5.7.1",
|
5455 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
|
5456 |
+
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
|
5457 |
+
"dev": true
|
5458 |
+
}
|
5459 |
}
|
5460 |
},
|
5461 |
+
"doctrine": {
|
5462 |
"version": "3.0.0",
|
5463 |
+
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
|
5464 |
+
"integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
|
5465 |
+
"dev": true,
|
5466 |
+
"requires": {
|
5467 |
+
"esutils": "^2.0.2"
|
5468 |
+
}
|
5469 |
+
},
|
5470 |
+
"eslint-scope": {
|
5471 |
+
"version": "5.0.0",
|
5472 |
+
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.0.0.tgz",
|
5473 |
+
"integrity": "sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw==",
|
5474 |
+
"dev": true,
|
5475 |
+
"requires": {
|
5476 |
+
"esrecurse": "^4.1.0",
|
5477 |
+
"estraverse": "^4.1.1"
|
5478 |
+
}
|
5479 |
+
},
|
5480 |
+
"fast-deep-equal": {
|
5481 |
+
"version": "3.1.1",
|
5482 |
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz",
|
5483 |
+
"integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==",
|
5484 |
"dev": true
|
5485 |
},
|
5486 |
+
"glob-parent": {
|
5487 |
+
"version": "5.1.0",
|
5488 |
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.0.tgz",
|
5489 |
+
"integrity": "sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==",
|
5490 |
"dev": true,
|
5491 |
"requires": {
|
5492 |
+
"is-glob": "^4.0.1"
|
|
|
5493 |
}
|
5494 |
+
},
|
5495 |
+
"globals": {
|
5496 |
+
"version": "12.3.0",
|
5497 |
+
"resolved": "https://registry.npmjs.org/globals/-/globals-12.3.0.tgz",
|
5498 |
+
"integrity": "sha512-wAfjdLgFsPZsklLJvOBUBmzYE8/CwhEqSBEMRXA3qxIiNtyqvjYurAtIfDh6chlEPUfmTY3MnZh5Hfh4q0UlIw==",
|
5499 |
+
"dev": true,
|
5500 |
+
"requires": {
|
5501 |
+
"type-fest": "^0.8.1"
|
5502 |
+
}
|
5503 |
+
},
|
5504 |
+
"semver": {
|
5505 |
+
"version": "6.3.0",
|
5506 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
5507 |
+
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
5508 |
+
"dev": true
|
5509 |
+
},
|
5510 |
+
"strip-ansi": {
|
5511 |
+
"version": "5.2.0",
|
5512 |
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
|
5513 |
+
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
|
5514 |
+
"dev": true,
|
5515 |
+
"requires": {
|
5516 |
+
"ansi-regex": "^4.1.0"
|
5517 |
+
}
|
5518 |
+
},
|
5519 |
+
"strip-json-comments": {
|
5520 |
+
"version": "3.0.1",
|
5521 |
+
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz",
|
5522 |
+
"integrity": "sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==",
|
5523 |
+
"dev": true
|
5524 |
+
},
|
5525 |
+
"type-fest": {
|
5526 |
+
"version": "0.8.1",
|
5527 |
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
|
5528 |
+
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
|
5529 |
+
"dev": true
|
5530 |
+
}
|
5531 |
+
}
|
5532 |
+
},
|
5533 |
+
"eslint-plugin-jest": {
|
5534 |
+
"version": "22.21.0",
|
5535 |
+
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-22.21.0.tgz",
|
5536 |
+
"integrity": "sha512-OaqnSS7uBgcGiqXUiEnjoqxPNKvR4JWG5mSRkzVoR6+vDwlqqp11beeql1hYs0HTbdhiwrxWLxbX0Vx7roG3Ew==",
|
5537 |
+
"dev": true,
|
5538 |
+
"requires": {
|
5539 |
+
"@typescript-eslint/experimental-utils": "^1.13.0"
|
5540 |
+
}
|
5541 |
+
},
|
5542 |
+
"eslint-plugin-jsdoc": {
|
5543 |
+
"version": "15.12.2",
|
5544 |
+
"resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-15.12.2.tgz",
|
5545 |
+
"integrity": "sha512-QHzPc3VKTEbTn369/HpqDjl/czv3fCei/bZg5NA5tu9Od10MfpTH4kc1xnRDobhQoDs3AMz9wuaI4coHWRzMQw==",
|
5546 |
+
"dev": true,
|
5547 |
+
"requires": {
|
5548 |
+
"comment-parser": "^0.6.2",
|
5549 |
+
"debug": "^4.1.1",
|
5550 |
+
"jsdoctypeparser": "^5.1.1",
|
5551 |
+
"lodash": "^4.17.15",
|
5552 |
+
"object.entries-ponyfill": "^1.0.1",
|
5553 |
+
"regextras": "^0.6.1"
|
5554 |
+
}
|
5555 |
+
},
|
5556 |
+
"eslint-plugin-jsx-a11y": {
|
5557 |
+
"version": "6.2.3",
|
5558 |
+
"resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz",
|
5559 |
+
"integrity": "sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg==",
|
5560 |
+
"dev": true,
|
5561 |
+
"requires": {
|
5562 |
+
"@babel/runtime": "^7.4.5",
|
5563 |
+
"aria-query": "^3.0.0",
|
5564 |
+
"array-includes": "^3.0.3",
|
5565 |
+
"ast-types-flow": "^0.0.7",
|
5566 |
+
"axobject-query": "^2.0.2",
|
5567 |
+
"damerau-levenshtein": "^1.0.4",
|
5568 |
+
"emoji-regex": "^7.0.2",
|
5569 |
+
"has": "^1.0.3",
|
5570 |
+
"jsx-ast-utils": "^2.2.1"
|
5571 |
+
}
|
5572 |
+
},
|
5573 |
+
"eslint-plugin-react": {
|
5574 |
+
"version": "7.18.3",
|
5575 |
+
"resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.18.3.tgz",
|
5576 |
+
"integrity": "sha512-Bt56LNHAQCoou88s8ViKRjMB2+36XRejCQ1VoLj716KI1MoE99HpTVvIThJ0rvFmG4E4Gsq+UgToEjn+j044Bg==",
|
5577 |
+
"dev": true,
|
5578 |
+
"requires": {
|
5579 |
+
"array-includes": "^3.1.1",
|
5580 |
+
"doctrine": "^2.1.0",
|
5581 |
+
"has": "^1.0.3",
|
5582 |
+
"jsx-ast-utils": "^2.2.3",
|
5583 |
+
"object.entries": "^1.1.1",
|
5584 |
+
"object.fromentries": "^2.0.2",
|
5585 |
+
"object.values": "^1.1.1",
|
5586 |
+
"prop-types": "^15.7.2",
|
5587 |
+
"resolve": "^1.14.2",
|
5588 |
+
"string.prototype.matchall": "^4.0.2"
|
5589 |
+
},
|
5590 |
+
"dependencies": {
|
5591 |
+
"resolve": {
|
5592 |
+
"version": "1.15.0",
|
5593 |
+
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.0.tgz",
|
5594 |
+
"integrity": "sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw==",
|
5595 |
+
"dev": true,
|
5596 |
+
"requires": {
|
5597 |
+
"path-parse": "^1.0.6"
|
5598 |
+
}
|
5599 |
+
}
|
5600 |
+
}
|
5601 |
+
},
|
5602 |
+
"eslint-plugin-react-hooks": {
|
5603 |
+
"version": "1.7.0",
|
5604 |
+
"resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz",
|
5605 |
+
"integrity": "sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==",
|
5606 |
+
"dev": true
|
5607 |
+
},
|
5608 |
+
"eslint-scope": {
|
5609 |
+
"version": "4.0.3",
|
5610 |
+
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz",
|
5611 |
+
"integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==",
|
5612 |
+
"dev": true,
|
5613 |
+
"requires": {
|
5614 |
+
"esrecurse": "^4.1.0",
|
5615 |
+
"estraverse": "^4.1.1"
|
5616 |
+
}
|
5617 |
+
},
|
5618 |
+
"eslint-utils": {
|
5619 |
+
"version": "1.4.3",
|
5620 |
+
"resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz",
|
5621 |
+
"integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==",
|
5622 |
+
"dev": true,
|
5623 |
+
"requires": {
|
5624 |
+
"eslint-visitor-keys": "^1.1.0"
|
5625 |
+
}
|
5626 |
+
},
|
5627 |
+
"eslint-visitor-keys": {
|
5628 |
+
"version": "1.1.0",
|
5629 |
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz",
|
5630 |
+
"integrity": "sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==",
|
5631 |
+
"dev": true
|
5632 |
+
},
|
5633 |
+
"espree": {
|
5634 |
+
"version": "6.1.2",
|
5635 |
+
"resolved": "https://registry.npmjs.org/espree/-/espree-6.1.2.tgz",
|
5636 |
+
"integrity": "sha512-2iUPuuPP+yW1PZaMSDM9eyVf8D5P0Hi8h83YtZ5bPc/zHYjII5khoixIUTMO794NOY8F/ThF1Bo8ncZILarUTA==",
|
5637 |
+
"dev": true,
|
5638 |
+
"requires": {
|
5639 |
+
"acorn": "^7.1.0",
|
5640 |
+
"acorn-jsx": "^5.1.0",
|
5641 |
+
"eslint-visitor-keys": "^1.1.0"
|
5642 |
+
},
|
5643 |
+
"dependencies": {
|
5644 |
+
"acorn": {
|
5645 |
+
"version": "7.1.0",
|
5646 |
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.1.0.tgz",
|
5647 |
+
"integrity": "sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==",
|
5648 |
+
"dev": true
|
5649 |
+
}
|
5650 |
+
}
|
5651 |
+
},
|
5652 |
+
"esprima": {
|
5653 |
+
"version": "4.0.1",
|
5654 |
+
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
|
5655 |
+
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
|
5656 |
+
"dev": true
|
5657 |
+
},
|
5658 |
+
"esquery": {
|
5659 |
+
"version": "1.0.1",
|
5660 |
+
"resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz",
|
5661 |
+
"integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==",
|
5662 |
+
"dev": true,
|
5663 |
+
"requires": {
|
5664 |
+
"estraverse": "^4.0.0"
|
5665 |
+
}
|
5666 |
+
},
|
5667 |
+
"esrecurse": {
|
5668 |
+
"version": "4.2.1",
|
5669 |
+
"resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz",
|
5670 |
+
"integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==",
|
5671 |
+
"dev": true,
|
5672 |
+
"requires": {
|
5673 |
+
"estraverse": "^4.1.0"
|
5674 |
+
}
|
5675 |
+
},
|
5676 |
+
"estraverse": {
|
5677 |
+
"version": "4.3.0",
|
5678 |
+
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
|
5679 |
+
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
|
5680 |
+
"dev": true
|
5681 |
+
},
|
5682 |
+
"esutils": {
|
5683 |
+
"version": "2.0.3",
|
5684 |
+
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
5685 |
+
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
|
5686 |
+
"dev": true
|
5687 |
+
},
|
5688 |
+
"etag": {
|
5689 |
+
"version": "1.8.1",
|
5690 |
+
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
5691 |
+
"integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=",
|
5692 |
+
"dev": true
|
5693 |
+
},
|
5694 |
+
"event-emitter": {
|
5695 |
+
"version": "0.3.5",
|
5696 |
+
"resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz",
|
5697 |
+
"integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=",
|
5698 |
+
"dev": true,
|
5699 |
+
"requires": {
|
5700 |
+
"d": "1",
|
5701 |
+
"es5-ext": "~0.10.14"
|
5702 |
+
}
|
5703 |
+
},
|
5704 |
+
"events": {
|
5705 |
+
"version": "3.0.0",
|
5706 |
+
"resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz",
|
5707 |
+
"integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==",
|
5708 |
+
"dev": true
|
5709 |
+
},
|
5710 |
+
"evp_bytestokey": {
|
5711 |
+
"version": "1.0.3",
|
5712 |
+
"resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
|
5713 |
+
"integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
|
5714 |
+
"dev": true,
|
5715 |
+
"requires": {
|
5716 |
+
"md5.js": "^1.3.4",
|
5717 |
+
"safe-buffer": "^5.1.1"
|
5718 |
+
}
|
5719 |
+
},
|
5720 |
+
"exec-sh": {
|
5721 |
+
"version": "0.3.4",
|
5722 |
+
"resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz",
|
5723 |
+
"integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==",
|
5724 |
+
"dev": true
|
5725 |
+
},
|
5726 |
+
"execa": {
|
5727 |
+
"version": "0.7.0",
|
5728 |
+
"resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz",
|
5729 |
+
"integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=",
|
5730 |
+
"dev": true,
|
5731 |
+
"requires": {
|
5732 |
+
"cross-spawn": "^5.0.1",
|
5733 |
+
"get-stream": "^3.0.0",
|
5734 |
+
"is-stream": "^1.1.0",
|
5735 |
+
"npm-run-path": "^2.0.0",
|
5736 |
+
"p-finally": "^1.0.0",
|
5737 |
+
"signal-exit": "^3.0.0",
|
5738 |
+
"strip-eof": "^1.0.0"
|
5739 |
+
},
|
5740 |
+
"dependencies": {
|
5741 |
+
"cross-spawn": {
|
5742 |
+
"version": "5.1.0",
|
5743 |
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
|
5744 |
+
"integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
|
5745 |
+
"dev": true,
|
5746 |
+
"requires": {
|
5747 |
+
"lru-cache": "^4.0.1",
|
5748 |
+
"shebang-command": "^1.2.0",
|
5749 |
+
"which": "^1.2.9"
|
5750 |
+
}
|
5751 |
+
},
|
5752 |
+
"get-stream": {
|
5753 |
+
"version": "3.0.0",
|
5754 |
+
"resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz",
|
5755 |
+
"integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=",
|
5756 |
+
"dev": true
|
5757 |
+
},
|
5758 |
+
"lru-cache": {
|
5759 |
+
"version": "4.1.5",
|
5760 |
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
|
5761 |
+
"integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
|
5762 |
+
"dev": true,
|
5763 |
+
"requires": {
|
5764 |
+
"pseudomap": "^1.0.2",
|
5765 |
+
"yallist": "^2.1.2"
|
5766 |
+
}
|
5767 |
+
}
|
5768 |
+
}
|
5769 |
+
},
|
5770 |
+
"execall": {
|
5771 |
+
"version": "1.0.0",
|
5772 |
+
"resolved": "https://registry.npmjs.org/execall/-/execall-1.0.0.tgz",
|
5773 |
+
"integrity": "sha1-c9CQTjlbPKsGWLCNCewlMH8pu3M=",
|
5774 |
+
"dev": true,
|
5775 |
+
"requires": {
|
5776 |
+
"clone-regexp": "^1.0.0"
|
5777 |
+
}
|
5778 |
+
},
|
5779 |
+
"exit": {
|
5780 |
+
"version": "0.1.2",
|
5781 |
+
"resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
|
5782 |
+
"integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=",
|
5783 |
+
"dev": true
|
5784 |
+
},
|
5785 |
"expand-brackets": {
|
5786 |
"version": "2.1.4",
|
5787 |
"resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz",
|
5841 |
"homedir-polyfill": "^1.0.1"
|
5842 |
}
|
5843 |
},
|
5844 |
+
"expect": {
|
5845 |
+
"version": "24.9.0",
|
5846 |
+
"resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz",
|
5847 |
+
"integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==",
|
5848 |
+
"dev": true,
|
5849 |
+
"requires": {
|
5850 |
+
"@jest/types": "^24.9.0",
|
5851 |
+
"ansi-styles": "^3.2.0",
|
5852 |
+
"jest-get-type": "^24.9.0",
|
5853 |
+
"jest-matcher-utils": "^24.9.0",
|
5854 |
+
"jest-message-util": "^24.9.0",
|
5855 |
+
"jest-regex-util": "^24.9.0"
|
5856 |
+
}
|
5857 |
+
},
|
5858 |
+
"expect-puppeteer": {
|
5859 |
+
"version": "4.4.0",
|
5860 |
+
"resolved": "https://registry.npmjs.org/expect-puppeteer/-/expect-puppeteer-4.4.0.tgz",
|
5861 |
+
"integrity": "sha512-6Ey4Xy2xvmuQu7z7YQtMsaMV0EHJRpVxIDOd5GRrm04/I3nkTKIutELfECsLp6le+b3SSa3cXhPiw6PgqzxYWA==",
|
5862 |
+
"dev": true
|
5863 |
+
},
|
5864 |
+
"express": {
|
5865 |
+
"version": "4.17.1",
|
5866 |
+
"resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz",
|
5867 |
+
"integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==",
|
5868 |
+
"dev": true,
|
5869 |
+
"requires": {
|
5870 |
+
"accepts": "~1.3.7",
|
5871 |
+
"array-flatten": "1.1.1",
|
5872 |
+
"body-parser": "1.19.0",
|
5873 |
+
"content-disposition": "0.5.3",
|
5874 |
+
"content-type": "~1.0.4",
|
5875 |
+
"cookie": "0.4.0",
|
5876 |
+
"cookie-signature": "1.0.6",
|
5877 |
+
"debug": "2.6.9",
|
5878 |
+
"depd": "~1.1.2",
|
5879 |
+
"encodeurl": "~1.0.2",
|
5880 |
+
"escape-html": "~1.0.3",
|
5881 |
+
"etag": "~1.8.1",
|
5882 |
+
"finalhandler": "~1.1.2",
|
5883 |
+
"fresh": "0.5.2",
|
5884 |
+
"merge-descriptors": "1.0.1",
|
5885 |
+
"methods": "~1.1.2",
|
5886 |
+
"on-finished": "~2.3.0",
|
5887 |
+
"parseurl": "~1.3.3",
|
5888 |
+
"path-to-regexp": "0.1.7",
|
5889 |
+
"proxy-addr": "~2.0.5",
|
5890 |
+
"qs": "6.7.0",
|
5891 |
+
"range-parser": "~1.2.1",
|
5892 |
+
"safe-buffer": "5.1.2",
|
5893 |
+
"send": "0.17.1",
|
5894 |
+
"serve-static": "1.14.1",
|
5895 |
+
"setprototypeof": "1.1.1",
|
5896 |
+
"statuses": "~1.5.0",
|
5897 |
+
"type-is": "~1.6.18",
|
5898 |
+
"utils-merge": "1.0.1",
|
5899 |
+
"vary": "~1.1.2"
|
5900 |
+
},
|
5901 |
+
"dependencies": {
|
5902 |
+
"debug": {
|
5903 |
+
"version": "2.6.9",
|
5904 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
5905 |
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
5906 |
+
"dev": true,
|
5907 |
+
"requires": {
|
5908 |
+
"ms": "2.0.0"
|
5909 |
+
}
|
5910 |
+
},
|
5911 |
+
"ms": {
|
5912 |
+
"version": "2.0.0",
|
5913 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
5914 |
+
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
5915 |
+
"dev": true
|
5916 |
+
},
|
5917 |
+
"qs": {
|
5918 |
+
"version": "6.7.0",
|
5919 |
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
|
5920 |
+
"integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==",
|
5921 |
+
"dev": true
|
5922 |
+
}
|
5923 |
+
}
|
5924 |
+
},
|
5925 |
"extend": {
|
5926 |
"version": "3.0.2",
|
5927 |
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
5948 |
}
|
5949 |
}
|
5950 |
},
|
5951 |
+
"external-editor": {
|
5952 |
+
"version": "3.1.0",
|
5953 |
+
"resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz",
|
5954 |
+
"integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==",
|
5955 |
+
"dev": true,
|
5956 |
+
"requires": {
|
5957 |
+
"chardet": "^0.7.0",
|
5958 |
+
"iconv-lite": "^0.4.24",
|
5959 |
+
"tmp": "^0.0.33"
|
5960 |
+
}
|
5961 |
+
},
|
5962 |
"extglob": {
|
5963 |
"version": "2.0.4",
|
5964 |
"resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
|
6024 |
}
|
6025 |
}
|
6026 |
},
|
6027 |
+
"extract-zip": {
|
6028 |
+
"version": "1.6.7",
|
6029 |
+
"resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz",
|
6030 |
+
"integrity": "sha1-qEC0uK9kAyZMjbV/Txp0Mz74H+k=",
|
6031 |
+
"dev": true,
|
6032 |
+
"requires": {
|
6033 |
+
"concat-stream": "1.6.2",
|
6034 |
+
"debug": "2.6.9",
|
6035 |
+
"mkdirp": "0.5.1",
|
6036 |
+
"yauzl": "2.4.1"
|
6037 |
+
},
|
6038 |
+
"dependencies": {
|
6039 |
+
"debug": {
|
6040 |
+
"version": "2.6.9",
|
6041 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
6042 |
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
6043 |
+
"dev": true,
|
6044 |
+
"requires": {
|
6045 |
+
"ms": "2.0.0"
|
6046 |
+
}
|
6047 |
+
},
|
6048 |
+
"ms": {
|
6049 |
+
"version": "2.0.0",
|
6050 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
6051 |
+
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
6052 |
+
"dev": true
|
6053 |
+
}
|
6054 |
+
}
|
6055 |
+
},
|
6056 |
"extsprintf": {
|
6057 |
"version": "1.3.0",
|
6058 |
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
|
6081 |
"integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==",
|
6082 |
"dev": true
|
6083 |
},
|
6084 |
+
"fast-glob": {
|
6085 |
+
"version": "3.1.1",
|
6086 |
+
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.1.1.tgz",
|
6087 |
+
"integrity": "sha512-nTCREpBY8w8r+boyFYAx21iL6faSsQynliPHM4Uf56SbkyohCNxpVPEH9xrF5TXKy+IsjkPUHDKiUkzBVRXn9g==",
|
6088 |
+
"dev": true,
|
6089 |
+
"requires": {
|
6090 |
+
"@nodelib/fs.stat": "^2.0.2",
|
6091 |
+
"@nodelib/fs.walk": "^1.2.3",
|
6092 |
+
"glob-parent": "^5.1.0",
|
6093 |
+
"merge2": "^1.3.0",
|
6094 |
+
"micromatch": "^4.0.2"
|
6095 |
+
},
|
6096 |
+
"dependencies": {
|
6097 |
+
"braces": {
|
6098 |
+
"version": "3.0.2",
|
6099 |
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
|
6100 |
+
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
|
6101 |
+
"dev": true,
|
6102 |
+
"requires": {
|
6103 |
+
"fill-range": "^7.0.1"
|
6104 |
+
}
|
6105 |
+
},
|
6106 |
+
"fill-range": {
|
6107 |
+
"version": "7.0.1",
|
6108 |
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
|
6109 |
+
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
|
6110 |
+
"dev": true,
|
6111 |
+
"requires": {
|
6112 |
+
"to-regex-range": "^5.0.1"
|
6113 |
+
}
|
6114 |
+
},
|
6115 |
+
"glob-parent": {
|
6116 |
+
"version": "5.1.0",
|
6117 |
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.0.tgz",
|
6118 |
+
"integrity": "sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==",
|
6119 |
+
"dev": true,
|
6120 |
+
"requires": {
|
6121 |
+
"is-glob": "^4.0.1"
|
6122 |
+
}
|
6123 |
+
},
|
6124 |
+
"is-number": {
|
6125 |
+
"version": "7.0.0",
|
6126 |
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
6127 |
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
6128 |
+
"dev": true
|
6129 |
+
},
|
6130 |
+
"micromatch": {
|
6131 |
+
"version": "4.0.2",
|
6132 |
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz",
|
6133 |
+
"integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==",
|
6134 |
+
"dev": true,
|
6135 |
+
"requires": {
|
6136 |
+
"braces": "^3.0.1",
|
6137 |
+
"picomatch": "^2.0.5"
|
6138 |
+
}
|
6139 |
+
},
|
6140 |
+
"to-regex-range": {
|
6141 |
+
"version": "5.0.1",
|
6142 |
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
6143 |
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
6144 |
+
"dev": true,
|
6145 |
+
"requires": {
|
6146 |
+
"is-number": "^7.0.0"
|
6147 |
+
}
|
6148 |
+
}
|
6149 |
+
}
|
6150 |
+
},
|
6151 |
+
"fast-json-stable-stringify": {
|
6152 |
+
"version": "2.0.0",
|
6153 |
+
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz",
|
6154 |
+
"integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I="
|
6155 |
+
},
|
6156 |
+
"fast-levenshtein": {
|
6157 |
+
"version": "2.0.6",
|
6158 |
+
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
|
6159 |
+
"integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=",
|
6160 |
+
"dev": true
|
6161 |
+
},
|
6162 |
+
"fastq": {
|
6163 |
+
"version": "1.6.0",
|
6164 |
+
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.6.0.tgz",
|
6165 |
+
"integrity": "sha512-jmxqQ3Z/nXoeyDmWAzF9kH1aGZSis6e/SbfPmJpUnyZ0ogr6iscHQaml4wsEepEWSdtmpy+eVXmCRIMpxaXqOA==",
|
6166 |
+
"dev": true,
|
6167 |
+
"requires": {
|
6168 |
+
"reusify": "^1.0.0"
|
6169 |
+
}
|
6170 |
+
},
|
6171 |
+
"faye-websocket": {
|
6172 |
+
"version": "0.10.0",
|
6173 |
+
"resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz",
|
6174 |
+
"integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=",
|
6175 |
+
"dev": true,
|
6176 |
+
"requires": {
|
6177 |
+
"websocket-driver": ">=0.5.1"
|
6178 |
+
}
|
6179 |
+
},
|
6180 |
+
"fb-watchman": {
|
6181 |
+
"version": "2.0.1",
|
6182 |
+
"resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz",
|
6183 |
+
"integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==",
|
6184 |
+
"dev": true,
|
6185 |
+
"requires": {
|
6186 |
+
"bser": "2.1.1"
|
6187 |
+
}
|
6188 |
+
},
|
6189 |
+
"fd-slicer": {
|
6190 |
+
"version": "1.0.1",
|
6191 |
+
"resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz",
|
6192 |
+
"integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=",
|
6193 |
+
"dev": true,
|
6194 |
+
"requires": {
|
6195 |
+
"pend": "~1.2.0"
|
6196 |
+
}
|
6197 |
},
|
6198 |
"figgy-pudding": {
|
6199 |
"version": "3.5.1",
|
6201 |
"integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==",
|
6202 |
"dev": true
|
6203 |
},
|
6204 |
+
"figures": {
|
6205 |
+
"version": "3.1.0",
|
6206 |
+
"resolved": "https://registry.npmjs.org/figures/-/figures-3.1.0.tgz",
|
6207 |
+
"integrity": "sha512-ravh8VRXqHuMvZt/d8GblBeqDMkdJMBdv/2KntFH+ra5MXkO7nxNKpzQ3n6QD/2da1kH0aWmNISdvhM7gl2gVg==",
|
6208 |
+
"dev": true,
|
6209 |
+
"requires": {
|
6210 |
+
"escape-string-regexp": "^1.0.5"
|
6211 |
+
}
|
6212 |
+
},
|
6213 |
+
"file-entry-cache": {
|
6214 |
+
"version": "5.0.1",
|
6215 |
+
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz",
|
6216 |
+
"integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==",
|
6217 |
+
"dev": true,
|
6218 |
+
"requires": {
|
6219 |
+
"flat-cache": "^2.0.1"
|
6220 |
+
}
|
6221 |
+
},
|
6222 |
"filesize": {
|
6223 |
"version": "2.0.4",
|
6224 |
"resolved": "https://registry.npmjs.org/filesize/-/filesize-2.0.4.tgz",
|
6247 |
}
|
6248 |
}
|
6249 |
},
|
6250 |
+
"finalhandler": {
|
6251 |
+
"version": "1.1.2",
|
6252 |
+
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz",
|
6253 |
+
"integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==",
|
6254 |
+
"dev": true,
|
6255 |
+
"requires": {
|
6256 |
+
"debug": "2.6.9",
|
6257 |
+
"encodeurl": "~1.0.2",
|
6258 |
+
"escape-html": "~1.0.3",
|
6259 |
+
"on-finished": "~2.3.0",
|
6260 |
+
"parseurl": "~1.3.3",
|
6261 |
+
"statuses": "~1.5.0",
|
6262 |
+
"unpipe": "~1.0.0"
|
6263 |
+
},
|
6264 |
+
"dependencies": {
|
6265 |
+
"debug": {
|
6266 |
+
"version": "2.6.9",
|
6267 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
6268 |
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
6269 |
+
"dev": true,
|
6270 |
+
"requires": {
|
6271 |
+
"ms": "2.0.0"
|
6272 |
+
}
|
6273 |
+
},
|
6274 |
+
"ms": {
|
6275 |
+
"version": "2.0.0",
|
6276 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
6277 |
+
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
6278 |
+
"dev": true
|
6279 |
+
}
|
6280 |
+
}
|
6281 |
+
},
|
6282 |
"find-cache-dir": {
|
6283 |
"version": "2.1.0",
|
6284 |
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
|
6308 |
}
|
6309 |
}
|
6310 |
},
|
6311 |
+
"find-file-up": {
|
6312 |
+
"version": "0.1.3",
|
6313 |
+
"resolved": "https://registry.npmjs.org/find-file-up/-/find-file-up-0.1.3.tgz",
|
6314 |
+
"integrity": "sha1-z2gJG8+fMApA2kEbN9pczlovvqA=",
|
6315 |
+
"dev": true,
|
6316 |
+
"requires": {
|
6317 |
+
"fs-exists-sync": "^0.1.0",
|
6318 |
+
"resolve-dir": "^0.1.0"
|
6319 |
+
},
|
6320 |
+
"dependencies": {
|
6321 |
+
"expand-tilde": {
|
6322 |
+
"version": "1.2.2",
|
6323 |
+
"resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz",
|
6324 |
+
"integrity": "sha1-C4HrqJflo9MdHD0QL48BRB5VlEk=",
|
6325 |
+
"dev": true,
|
6326 |
+
"requires": {
|
6327 |
+
"os-homedir": "^1.0.1"
|
6328 |
+
}
|
6329 |
+
},
|
6330 |
+
"global-modules": {
|
6331 |
+
"version": "0.2.3",
|
6332 |
+
"resolved": "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz",
|
6333 |
+
"integrity": "sha1-6lo77ULG1s6ZWk+KEmm12uIjgo0=",
|
6334 |
+
"dev": true,
|
6335 |
+
"requires": {
|
6336 |
+
"global-prefix": "^0.1.4",
|
6337 |
+
"is-windows": "^0.2.0"
|
6338 |
+
}
|
6339 |
+
},
|
6340 |
+
"global-prefix": {
|
6341 |
+
"version": "0.1.5",
|
6342 |
+
"resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz",
|
6343 |
+
"integrity": "sha1-jTvGuNo8qBEqFg2NSW/wRiv+948=",
|
6344 |
+
"dev": true,
|
6345 |
+
"requires": {
|
6346 |
+
"homedir-polyfill": "^1.0.0",
|
6347 |
+
"ini": "^1.3.4",
|
6348 |
+
"is-windows": "^0.2.0",
|
6349 |
+
"which": "^1.2.12"
|
6350 |
+
}
|
6351 |
+
},
|
6352 |
+
"is-windows": {
|
6353 |
+
"version": "0.2.0",
|
6354 |
+
"resolved": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz",
|
6355 |
+
"integrity": "sha1-3hqm1j6indJIc3tp8f+LgALSEIw=",
|
6356 |
+
"dev": true
|
6357 |
+
},
|
6358 |
+
"resolve-dir": {
|
6359 |
+
"version": "0.1.1",
|
6360 |
+
"resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-0.1.1.tgz",
|
6361 |
+
"integrity": "sha1-shklmlYC+sXFxJatiUpujMQwJh4=",
|
6362 |
+
"dev": true,
|
6363 |
+
"requires": {
|
6364 |
+
"expand-tilde": "^1.2.2",
|
6365 |
+
"global-modules": "^0.2.3"
|
6366 |
+
}
|
6367 |
+
}
|
6368 |
+
}
|
6369 |
+
},
|
6370 |
+
"find-parent-dir": {
|
6371 |
+
"version": "0.3.0",
|
6372 |
+
"resolved": "https://registry.npmjs.org/find-parent-dir/-/find-parent-dir-0.3.0.tgz",
|
6373 |
+
"integrity": "sha1-M8RLQpqysvBkYpnF+fcY83b/jVQ=",
|
6374 |
+
"dev": true
|
6375 |
+
},
|
6376 |
+
"find-pkg": {
|
6377 |
+
"version": "0.1.2",
|
6378 |
+
"resolved": "https://registry.npmjs.org/find-pkg/-/find-pkg-0.1.2.tgz",
|
6379 |
+
"integrity": "sha1-G9wiwG42NlUy4qJIBGhUuXiNpVc=",
|
6380 |
+
"dev": true,
|
6381 |
+
"requires": {
|
6382 |
+
"find-file-up": "^0.1.2"
|
6383 |
+
}
|
6384 |
+
},
|
6385 |
+
"find-process": {
|
6386 |
+
"version": "1.4.3",
|
6387 |
+
"resolved": "https://registry.npmjs.org/find-process/-/find-process-1.4.3.tgz",
|
6388 |
+
"integrity": "sha512-+IA+AUsQCf3uucawyTwMWcY+2M3FXq3BRvw3S+j5Jvydjk31f/+NPWpYZOJs+JUs2GvxH4Yfr6Wham0ZtRLlPA==",
|
6389 |
+
"dev": true,
|
6390 |
+
"requires": {
|
6391 |
+
"chalk": "^2.0.1",
|
6392 |
+
"commander": "^2.11.0",
|
6393 |
+
"debug": "^2.6.8"
|
6394 |
+
},
|
6395 |
+
"dependencies": {
|
6396 |
+
"debug": {
|
6397 |
+
"version": "2.6.9",
|
6398 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
6399 |
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
6400 |
+
"dev": true,
|
6401 |
+
"requires": {
|
6402 |
+
"ms": "2.0.0"
|
6403 |
+
}
|
6404 |
+
},
|
6405 |
+
"ms": {
|
6406 |
+
"version": "2.0.0",
|
6407 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
6408 |
+
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
|
6409 |
+
"dev": true
|
6410 |
+
}
|
6411 |
+
}
|
6412 |
+
},
|
6413 |
"find-up": {
|
6414 |
"version": "3.0.0",
|
6415 |
"resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
|
6495 |
"integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==",
|
6496 |
"dev": true
|
6497 |
},
|
6498 |
+
"flat-cache": {
|
6499 |
+
"version": "2.0.1",
|
6500 |
+
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz",
|
6501 |
+
"integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==",
|
6502 |
+
"dev": true,
|
6503 |
+
"requires": {
|
6504 |
+
"flatted": "^2.0.0",
|
6505 |
+
"rimraf": "2.6.3",
|
6506 |
+
"write": "1.0.3"
|
6507 |
+
},
|
6508 |
+
"dependencies": {
|
6509 |
+
"rimraf": {
|
6510 |
+
"version": "2.6.3",
|
6511 |
+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
|
6512 |
+
"integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
|
6513 |
+
"dev": true,
|
6514 |
+
"requires": {
|
6515 |
+
"glob": "^7.1.3"
|
6516 |
+
}
|
6517 |
+
}
|
6518 |
+
}
|
6519 |
+
},
|
6520 |
+
"flatted": {
|
6521 |
+
"version": "2.0.1",
|
6522 |
+
"resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.1.tgz",
|
6523 |
+
"integrity": "sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg==",
|
6524 |
+
"dev": true
|
6525 |
+
},
|
6526 |
"flush-write-stream": {
|
6527 |
"version": "1.0.3",
|
6528 |
"resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.3.tgz",
|
6595 |
"mime-types": "^2.1.12"
|
6596 |
}
|
6597 |
},
|
6598 |
+
"forwarded": {
|
6599 |
+
"version": "0.1.2",
|
6600 |
+
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz",
|
6601 |
+
"integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=",
|
6602 |
+
"dev": true
|
6603 |
+
},
|
6604 |
"fragment-cache": {
|
6605 |
"version": "0.2.1",
|
6606 |
"resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz",
|
6610 |
"map-cache": "^0.2.2"
|
6611 |
}
|
6612 |
},
|
6613 |
+
"fresh": {
|
6614 |
+
"version": "0.5.2",
|
6615 |
+
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
|
6616 |
+
"integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=",
|
6617 |
+
"dev": true
|
6618 |
+
},
|
6619 |
"from2": {
|
6620 |
"version": "2.3.0",
|
6621 |
"resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz",
|
6658 |
}
|
6659 |
}
|
6660 |
},
|
6661 |
+
"fs-exists-sync": {
|
6662 |
+
"version": "0.1.0",
|
6663 |
+
"resolved": "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz",
|
6664 |
+
"integrity": "sha1-mC1ok6+RjnLQjeyehnP/K1qNat0=",
|
6665 |
+
"dev": true
|
6666 |
+
},
|
6667 |
"fs-minipass": {
|
6668 |
"version": "1.2.7",
|
6669 |
"resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz",
|
7265 |
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
|
7266 |
"dev": true
|
7267 |
},
|
7268 |
+
"function.prototype.name": {
|
7269 |
+
"version": "1.1.2",
|
7270 |
+
"resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.2.tgz",
|
7271 |
+
"integrity": "sha512-C8A+LlHBJjB2AdcRPorc5JvJ5VUoWlXdEHLOJdCI7kjHEtGTpHQUiqMvCIKUwIsGwZX2jZJy761AXsn356bJQg==",
|
7272 |
+
"dev": true,
|
7273 |
+
"requires": {
|
7274 |
+
"define-properties": "^1.1.3",
|
7275 |
+
"es-abstract": "^1.17.0-next.1",
|
7276 |
+
"functions-have-names": "^1.2.0"
|
7277 |
+
}
|
7278 |
+
},
|
7279 |
+
"functional-red-black-tree": {
|
7280 |
+
"version": "1.0.1",
|
7281 |
+
"resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz",
|
7282 |
+
"integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=",
|
7283 |
+
"dev": true
|
7284 |
+
},
|
7285 |
+
"functions-have-names": {
|
7286 |
+
"version": "1.2.1",
|
7287 |
+
"resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.1.tgz",
|
7288 |
+
"integrity": "sha512-j48B/ZI7VKs3sgeI2cZp7WXWmZXu7Iq5pl5/vptV5N2mq+DGFuS/ulaDjtaoLpYzuD6u8UgrUKHfgo7fDTSiBA==",
|
7289 |
+
"dev": true
|
7290 |
+
},
|
7291 |
"gauge": {
|
7292 |
"version": "2.7.4",
|
7293 |
"resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz",
|
7451 |
}
|
7452 |
}
|
7453 |
},
|
7454 |
+
"glob-to-regexp": {
|
7455 |
+
"version": "0.3.0",
|
7456 |
+
"resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz",
|
7457 |
+
"integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=",
|
7458 |
+
"dev": true
|
7459 |
+
},
|
7460 |
"glob-watcher": {
|
7461 |
"version": "5.0.3",
|
7462 |
"resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.3.tgz",
|
7510 |
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
|
7511 |
"dev": true
|
7512 |
},
|
7513 |
+
"globby": {
|
7514 |
+
"version": "10.0.2",
|
7515 |
+
"resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz",
|
7516 |
+
"integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==",
|
7517 |
+
"dev": true,
|
7518 |
+
"requires": {
|
7519 |
+
"@types/glob": "^7.1.1",
|
7520 |
+
"array-union": "^2.1.0",
|
7521 |
+
"dir-glob": "^3.0.1",
|
7522 |
+
"fast-glob": "^3.0.3",
|
7523 |
+
"glob": "^7.1.3",
|
7524 |
+
"ignore": "^5.1.1",
|
7525 |
+
"merge2": "^1.2.3",
|
7526 |
+
"slash": "^3.0.0"
|
7527 |
+
},
|
7528 |
+
"dependencies": {
|
7529 |
+
"ignore": {
|
7530 |
+
"version": "5.1.4",
|
7531 |
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.4.tgz",
|
7532 |
+
"integrity": "sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==",
|
7533 |
+
"dev": true
|
7534 |
+
},
|
7535 |
+
"slash": {
|
7536 |
+
"version": "3.0.0",
|
7537 |
+
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
7538 |
+
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
|
7539 |
+
"dev": true
|
7540 |
+
}
|
7541 |
+
}
|
7542 |
+
},
|
7543 |
+
"globjoin": {
|
7544 |
+
"version": "0.1.4",
|
7545 |
+
"resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz",
|
7546 |
+
"integrity": "sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=",
|
7547 |
+
"dev": true
|
7548 |
+
},
|
7549 |
"globule": {
|
7550 |
"version": "1.3.0",
|
7551 |
"resolved": "https://registry.npmjs.org/globule/-/globule-1.3.0.tgz",
|
7565 |
"sparkles": "^1.0.0"
|
7566 |
}
|
7567 |
},
|
7568 |
+
"gonzales-pe": {
|
7569 |
+
"version": "4.2.4",
|
7570 |
+
"resolved": "https://registry.npmjs.org/gonzales-pe/-/gonzales-pe-4.2.4.tgz",
|
7571 |
+
"integrity": "sha512-v0Ts/8IsSbh9n1OJRnSfa7Nlxi4AkXIsWB6vPept8FDbL4bXn3FNuxjYtO/nmBGu7GDkL9MFeGebeSu6l55EPQ==",
|
7572 |
+
"dev": true,
|
7573 |
+
"requires": {
|
7574 |
+
"minimist": "1.1.x"
|
7575 |
+
},
|
7576 |
+
"dependencies": {
|
7577 |
+
"minimist": {
|
7578 |
+
"version": "1.1.3",
|
7579 |
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.1.3.tgz",
|
7580 |
+
"integrity": "sha1-O+39kaktOQFvz6ocaB6Pqhoe/ag=",
|
7581 |
+
"dev": true
|
7582 |
+
}
|
7583 |
+
}
|
7584 |
+
},
|
7585 |
"got": {
|
7586 |
"version": "9.6.0",
|
7587 |
"resolved": "https://registry.npmjs.org/got/-/got-9.6.0.tgz",
|
8342 |
"glogg": "^1.0.0"
|
8343 |
}
|
8344 |
},
|
8345 |
+
"gzip-size": {
|
8346 |
+
"version": "5.1.1",
|
8347 |
+
"resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz",
|
8348 |
+
"integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==",
|
8349 |
+
"dev": true,
|
8350 |
+
"requires": {
|
8351 |
+
"duplexer": "^0.1.1",
|
8352 |
+
"pify": "^4.0.1"
|
8353 |
+
},
|
8354 |
+
"dependencies": {
|
8355 |
+
"pify": {
|
8356 |
+
"version": "4.0.1",
|
8357 |
+
"resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
|
8358 |
+
"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
|
8359 |
+
"dev": true
|
8360 |
+
}
|
8361 |
+
}
|
8362 |
+
},
|
8363 |
"har-schema": {
|
8364 |
"version": "2.0.0",
|
8365 |
"resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
|
8374 |
"har-schema": "^2.0.0"
|
8375 |
}
|
8376 |
},
|
8377 |
+
"hard-rejection": {
|
8378 |
+
"version": "2.1.0",
|
8379 |
+
"resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz",
|
8380 |
+
"integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==",
|
8381 |
+
"dev": true
|
8382 |
+
},
|
8383 |
"has": {
|
8384 |
"version": "1.0.3",
|
8385 |
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
8501 |
"parse-passwd": "^1.0.0"
|
8502 |
}
|
8503 |
},
|
8504 |
+
"hoopy": {
|
8505 |
+
"version": "0.1.4",
|
8506 |
+
"resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz",
|
8507 |
+
"integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==",
|
8508 |
+
"dev": true
|
8509 |
+
},
|
8510 |
"hosted-git-info": {
|
8511 |
"version": "2.7.1",
|
8512 |
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz",
|
8513 |
"integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w=="
|
8514 |
},
|
8515 |
+
"html-element-map": {
|
8516 |
+
"version": "1.2.0",
|
8517 |
+
"resolved": "https://registry.npmjs.org/html-element-map/-/html-element-map-1.2.0.tgz",
|
8518 |
+
"integrity": "sha512-0uXq8HsuG1v2TmQ8QkIhzbrqeskE4kn52Q18QJ9iAA/SnHoEKXWiUxHQtclRsCFWEUD2So34X+0+pZZu862nnw==",
|
8519 |
+
"dev": true,
|
8520 |
+
"requires": {
|
8521 |
+
"array-filter": "^1.0.0"
|
8522 |
+
}
|
8523 |
+
},
|
8524 |
+
"html-encoding-sniffer": {
|
8525 |
+
"version": "1.0.2",
|
8526 |
+
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz",
|
8527 |
+
"integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==",
|
8528 |
+
"dev": true,
|
8529 |
+
"requires": {
|
8530 |
+
"whatwg-encoding": "^1.0.1"
|
8531 |
+
}
|
8532 |
+
},
|
8533 |
+
"html-escaper": {
|
8534 |
+
"version": "2.0.0",
|
8535 |
+
"resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.0.tgz",
|
8536 |
+
"integrity": "sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig==",
|
8537 |
+
"dev": true
|
8538 |
+
},
|
8539 |
+
"html-tags": {
|
8540 |
+
"version": "2.0.0",
|
8541 |
+
"resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz",
|
8542 |
+
"integrity": "sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos=",
|
8543 |
+
"dev": true
|
8544 |
+
},
|
8545 |
+
"htmlparser2": {
|
8546 |
+
"version": "3.10.1",
|
8547 |
+
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz",
|
8548 |
+
"integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==",
|
8549 |
+
"dev": true,
|
8550 |
+
"requires": {
|
8551 |
+
"domelementtype": "^1.3.1",
|
8552 |
+
"domhandler": "^2.3.0",
|
8553 |
+
"domutils": "^1.5.1",
|
8554 |
+
"entities": "^1.1.1",
|
8555 |
+
"inherits": "^2.0.1",
|
8556 |
+
"readable-stream": "^3.1.1"
|
8557 |
+
},
|
8558 |
+
"dependencies": {
|
8559 |
+
"readable-stream": {
|
8560 |
+
"version": "3.5.0",
|
8561 |
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.5.0.tgz",
|
8562 |
+
"integrity": "sha512-gSz026xs2LfxBPudDuI41V1lka8cxg64E66SGe78zJlsUofOg/yqwezdIcdfwik6B4h8LFmWPA9ef9X3FiNFLA==",
|
8563 |
+
"dev": true,
|
8564 |
+
"requires": {
|
8565 |
+
"inherits": "^2.0.3",
|
8566 |
+
"string_decoder": "^1.1.1",
|
8567 |
+
"util-deprecate": "^1.0.1"
|
8568 |
+
}
|
8569 |
+
},
|
8570 |
+
"safe-buffer": {
|
8571 |
+
"version": "5.2.0",
|
8572 |
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz",
|
8573 |
+
"integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==",
|
8574 |
+
"dev": true
|
8575 |
+
},
|
8576 |
+
"string_decoder": {
|
8577 |
+
"version": "1.3.0",
|
8578 |
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
|
8579 |
+
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
|
8580 |
+
"dev": true,
|
8581 |
+
"requires": {
|
8582 |
+
"safe-buffer": "~5.2.0"
|
8583 |
+
}
|
8584 |
+
}
|
8585 |
+
}
|
8586 |
+
},
|
8587 |
"http-cache-semantics": {
|
8588 |
"version": "3.8.1",
|
8589 |
"resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz",
|
8590 |
"integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==",
|
8591 |
"dev": true
|
8592 |
},
|
8593 |
+
"http-errors": {
|
8594 |
+
"version": "1.7.2",
|
8595 |
+
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz",
|
8596 |
+
"integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==",
|
8597 |
+
"dev": true,
|
8598 |
+
"requires": {
|
8599 |
+
"depd": "~1.1.2",
|
8600 |
+
"inherits": "2.0.3",
|
8601 |
+
"setprototypeof": "1.1.1",
|
8602 |
+
"statuses": ">= 1.5.0 < 2",
|
8603 |
+
"toidentifier": "1.0.0"
|
8604 |
+
}
|
8605 |
+
},
|
8606 |
+
"http-parser-js": {
|
8607 |
+
"version": "0.4.10",
|
8608 |
+
"resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.10.tgz",
|
8609 |
+
"integrity": "sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=",
|
8610 |
+
"dev": true
|
8611 |
+
},
|
8612 |
"http-proxy-agent": {
|
8613 |
"version": "2.1.0",
|
8614 |
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz",
|
8766 |
"integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=",
|
8767 |
"dev": true
|
8768 |
},
|
8769 |
+
"ignore": {
|
8770 |
+
"version": "4.0.6",
|
8771 |
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
|
8772 |
+
"integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
|
8773 |
+
"dev": true
|
8774 |
+
},
|
8775 |
"ignore-walk": {
|
8776 |
"version": "3.0.3",
|
8777 |
"resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz",
|
8790 |
"import-from": "^2.1.0"
|
8791 |
}
|
8792 |
},
|
8793 |
+
"import-fresh": {
|
8794 |
+
"version": "3.2.1",
|
8795 |
+
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz",
|
8796 |
+
"integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==",
|
8797 |
+
"dev": true,
|
8798 |
+
"requires": {
|
8799 |
+
"parent-module": "^1.0.0",
|
8800 |
+
"resolve-from": "^4.0.0"
|
8801 |
+
},
|
8802 |
+
"dependencies": {
|
8803 |
+
"resolve-from": {
|
8804 |
+
"version": "4.0.0",
|
8805 |
+
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
|
8806 |
+
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
|
8807 |
+
"dev": true
|
8808 |
+
}
|
8809 |
+
}
|
8810 |
+
},
|
8811 |
"import-from": {
|
8812 |
"version": "2.1.0",
|
8813 |
"resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz",
|
8892 |
"css-in-js-utils": "^2.0.0"
|
8893 |
}
|
8894 |
},
|
8895 |
+
"inquirer": {
|
8896 |
+
"version": "7.0.4",
|
8897 |
+
"resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.0.4.tgz",
|
8898 |
+
"integrity": "sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ==",
|
8899 |
+
"dev": true,
|
8900 |
+
"requires": {
|
8901 |
+
"ansi-escapes": "^4.2.1",
|
8902 |
+
"chalk": "^2.4.2",
|
8903 |
+
"cli-cursor": "^3.1.0",
|
8904 |
+
"cli-width": "^2.0.0",
|
8905 |
+
"external-editor": "^3.0.3",
|
8906 |
+
"figures": "^3.0.0",
|
8907 |
+
"lodash": "^4.17.15",
|
8908 |
+
"mute-stream": "0.0.8",
|
8909 |
+
"run-async": "^2.2.0",
|
8910 |
+
"rxjs": "^6.5.3",
|
8911 |
+
"string-width": "^4.1.0",
|
8912 |
+
"strip-ansi": "^5.1.0",
|
8913 |
+
"through": "^2.3.6"
|
8914 |
+
},
|
8915 |
+
"dependencies": {
|
8916 |
+
"ansi-regex": {
|
8917 |
+
"version": "5.0.0",
|
8918 |
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz",
|
8919 |
+
"integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==",
|
8920 |
+
"dev": true
|
8921 |
+
},
|
8922 |
+
"chalk": {
|
8923 |
+
"version": "2.4.2",
|
8924 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
8925 |
+
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
8926 |
+
"dev": true,
|
8927 |
+
"requires": {
|
8928 |
+
"ansi-styles": "^3.2.1",
|
8929 |
+
"escape-string-regexp": "^1.0.5",
|
8930 |
+
"supports-color": "^5.3.0"
|
8931 |
+
}
|
8932 |
+
},
|
8933 |
+
"emoji-regex": {
|
8934 |
+
"version": "8.0.0",
|
8935 |
+
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
|
8936 |
+
"integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
|
8937 |
+
"dev": true
|
8938 |
+
},
|
8939 |
+
"is-fullwidth-code-point": {
|
8940 |
+
"version": "3.0.0",
|
8941 |
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
|
8942 |
+
"integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
|
8943 |
+
"dev": true
|
8944 |
+
},
|
8945 |
+
"string-width": {
|
8946 |
+
"version": "4.2.0",
|
8947 |
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz",
|
8948 |
+
"integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==",
|
8949 |
+
"dev": true,
|
8950 |
+
"requires": {
|
8951 |
+
"emoji-regex": "^8.0.0",
|
8952 |
+
"is-fullwidth-code-point": "^3.0.0",
|
8953 |
+
"strip-ansi": "^6.0.0"
|
8954 |
+
},
|
8955 |
+
"dependencies": {
|
8956 |
+
"strip-ansi": {
|
8957 |
+
"version": "6.0.0",
|
8958 |
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz",
|
8959 |
+
"integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==",
|
8960 |
+
"dev": true,
|
8961 |
+
"requires": {
|
8962 |
+
"ansi-regex": "^5.0.0"
|
8963 |
+
}
|
8964 |
+
}
|
8965 |
+
}
|
8966 |
+
},
|
8967 |
+
"strip-ansi": {
|
8968 |
+
"version": "5.2.0",
|
8969 |
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
|
8970 |
+
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
|
8971 |
+
"dev": true,
|
8972 |
+
"requires": {
|
8973 |
+
"ansi-regex": "^4.1.0"
|
8974 |
+
},
|
8975 |
+
"dependencies": {
|
8976 |
+
"ansi-regex": {
|
8977 |
+
"version": "4.1.0",
|
8978 |
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
|
8979 |
+
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
|
8980 |
+
"dev": true
|
8981 |
+
}
|
8982 |
+
}
|
8983 |
+
}
|
8984 |
+
}
|
8985 |
+
},
|
8986 |
+
"internal-slot": {
|
8987 |
+
"version": "1.0.2",
|
8988 |
+
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.2.tgz",
|
8989 |
+
"integrity": "sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g==",
|
8990 |
+
"dev": true,
|
8991 |
+
"requires": {
|
8992 |
+
"es-abstract": "^1.17.0-next.1",
|
8993 |
+
"has": "^1.0.3",
|
8994 |
+
"side-channel": "^1.0.2"
|
8995 |
+
}
|
8996 |
+
},
|
8997 |
"interpret": {
|
8998 |
"version": "1.2.0",
|
8999 |
"resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz",
|
9020 |
"integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=",
|
9021 |
"dev": true
|
9022 |
},
|
9023 |
+
"ipaddr.js": {
|
9024 |
+
"version": "1.9.0",
|
9025 |
+
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz",
|
9026 |
+
"integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==",
|
9027 |
+
"dev": true
|
9028 |
+
},
|
9029 |
+
"irregular-plurals": {
|
9030 |
+
"version": "2.0.0",
|
9031 |
+
"resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-2.0.0.tgz",
|
9032 |
+
"integrity": "sha512-Y75zBYLkh0lJ9qxeHlMjQ7bSbyiSqNW/UOPWDmzC7cXskL1hekSITh1Oc6JV0XCWWZ9DE8VYSB71xocLk3gmGw==",
|
9033 |
+
"dev": true
|
9034 |
+
},
|
9035 |
"is": {
|
9036 |
"version": "3.3.0",
|
9037 |
"resolved": "https://registry.npmjs.org/is/-/is-3.3.0.tgz",
|
9068 |
}
|
9069 |
}
|
9070 |
},
|
9071 |
+
"is-alphabetical": {
|
9072 |
+
"version": "1.0.4",
|
9073 |
+
"resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz",
|
9074 |
+
"integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==",
|
9075 |
+
"dev": true
|
9076 |
+
},
|
9077 |
+
"is-alphanumeric": {
|
9078 |
+
"version": "1.0.0",
|
9079 |
+
"resolved": "https://registry.npmjs.org/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz",
|
9080 |
+
"integrity": "sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ=",
|
9081 |
+
"dev": true
|
9082 |
+
},
|
9083 |
+
"is-alphanumerical": {
|
9084 |
+
"version": "1.0.4",
|
9085 |
+
"resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz",
|
9086 |
+
"integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==",
|
9087 |
+
"dev": true,
|
9088 |
+
"requires": {
|
9089 |
+
"is-alphabetical": "^1.0.0",
|
9090 |
+
"is-decimal": "^1.0.0"
|
9091 |
+
}
|
9092 |
+
},
|
9093 |
"is-arrayish": {
|
9094 |
"version": "0.2.1",
|
9095 |
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
|
9104 |
"binary-extensions": "^1.0.0"
|
9105 |
}
|
9106 |
},
|
9107 |
+
"is-boolean-object": {
|
9108 |
+
"version": "1.0.1",
|
9109 |
+
"resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.0.1.tgz",
|
9110 |
+
"integrity": "sha512-TqZuVwa/sppcrhUCAYkGBk7w0yxfQQnxq28fjkO53tnK9FQXmdwz2JS5+GjsWQ6RByES1K40nI+yDic5c9/aAQ==",
|
9111 |
+
"dev": true
|
9112 |
+
},
|
9113 |
"is-buffer": {
|
9114 |
"version": "1.1.6",
|
9115 |
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
|
9124 |
"builtin-modules": "^1.0.0"
|
9125 |
}
|
9126 |
},
|
9127 |
+
"is-callable": {
|
9128 |
+
"version": "1.1.5",
|
9129 |
+
"resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.5.tgz",
|
9130 |
+
"integrity": "sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q==",
|
9131 |
+
"dev": true
|
9132 |
+
},
|
9133 |
"is-ci": {
|
9134 |
"version": "2.0.0",
|
9135 |
"resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz",
|
9159 |
}
|
9160 |
}
|
9161 |
},
|
9162 |
+
"is-date-object": {
|
9163 |
+
"version": "1.0.2",
|
9164 |
+
"resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz",
|
9165 |
+
"integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==",
|
9166 |
+
"dev": true
|
9167 |
+
},
|
9168 |
+
"is-decimal": {
|
9169 |
+
"version": "1.0.4",
|
9170 |
+
"resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz",
|
9171 |
+
"integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==",
|
9172 |
+
"dev": true
|
9173 |
+
},
|
9174 |
"is-descriptor": {
|
9175 |
"version": "0.1.6",
|
9176 |
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
|
9224 |
"number-is-nan": "^1.0.0"
|
9225 |
}
|
9226 |
},
|
9227 |
+
"is-generator-fn": {
|
9228 |
+
"version": "2.1.0",
|
9229 |
+
"resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
|
9230 |
+
"integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
|
9231 |
+
"dev": true
|
9232 |
+
},
|
9233 |
"is-glob": {
|
9234 |
"version": "4.0.1",
|
9235 |
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
|
9239 |
"is-extglob": "^2.1.1"
|
9240 |
}
|
9241 |
},
|
9242 |
+
"is-hexadecimal": {
|
9243 |
+
"version": "1.0.4",
|
9244 |
+
"resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz",
|
9245 |
+
"integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==",
|
9246 |
+
"dev": true
|
9247 |
+
},
|
9248 |
"is-installed-globally": {
|
9249 |
"version": "0.1.0",
|
9250 |
"resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz",
|
9287 |
}
|
9288 |
}
|
9289 |
},
|
9290 |
+
"is-number-object": {
|
9291 |
+
"version": "1.0.4",
|
9292 |
+
"resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.4.tgz",
|
9293 |
+
"integrity": "sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw==",
|
9294 |
+
"dev": true
|
9295 |
+
},
|
9296 |
"is-obj": {
|
9297 |
"version": "1.0.1",
|
9298 |
"resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz",
|
9308 |
"path-is-inside": "^1.0.1"
|
9309 |
}
|
9310 |
},
|
9311 |
+
"is-plain-obj": {
|
9312 |
+
"version": "2.1.0",
|
9313 |
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
|
9314 |
+
"integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
|
9315 |
+
"dev": true
|
9316 |
+
},
|
9317 |
"is-plain-object": {
|
9318 |
"version": "2.0.4",
|
9319 |
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
|
9328 |
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz",
|
9329 |
"integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o="
|
9330 |
},
|
9331 |
+
"is-regex": {
|
9332 |
+
"version": "1.0.5",
|
9333 |
+
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz",
|
9334 |
+
"integrity": "sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ==",
|
9335 |
+
"dev": true,
|
9336 |
+
"requires": {
|
9337 |
+
"has": "^1.0.3"
|
9338 |
+
}
|
9339 |
+
},
|
9340 |
+
"is-regexp": {
|
9341 |
+
"version": "1.0.0",
|
9342 |
+
"resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz",
|
9343 |
+
"integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=",
|
9344 |
+
"dev": true
|
9345 |
+
},
|
9346 |
"is-relative": {
|
9347 |
"version": "1.0.0",
|
9348 |
"resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz",
|
9358 |
"integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=",
|
9359 |
"dev": true
|
9360 |
},
|
9361 |
+
"is-string": {
|
9362 |
+
"version": "1.0.5",
|
9363 |
+
"resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz",
|
9364 |
+
"integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==",
|
9365 |
+
"dev": true
|
9366 |
+
},
|
9367 |
+
"is-subset": {
|
9368 |
+
"version": "0.1.1",
|
9369 |
+
"resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz",
|
9370 |
+
"integrity": "sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=",
|
9371 |
+
"dev": true
|
9372 |
+
},
|
9373 |
+
"is-supported-regexp-flag": {
|
9374 |
+
"version": "1.0.1",
|
9375 |
+
"resolved": "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz",
|
9376 |
+
"integrity": "sha512-3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ==",
|
9377 |
+
"dev": true
|
9378 |
+
},
|
9379 |
+
"is-symbol": {
|
9380 |
+
"version": "1.0.3",
|
9381 |
+
"resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz",
|
9382 |
+
"integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==",
|
9383 |
+
"dev": true,
|
9384 |
+
"requires": {
|
9385 |
+
"has-symbols": "^1.0.1"
|
9386 |
+
},
|
9387 |
+
"dependencies": {
|
9388 |
+
"has-symbols": {
|
9389 |
+
"version": "1.0.1",
|
9390 |
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz",
|
9391 |
+
"integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==",
|
9392 |
+
"dev": true
|
9393 |
+
}
|
9394 |
+
}
|
9395 |
+
},
|
9396 |
"is-typedarray": {
|
9397 |
"version": "1.0.0",
|
9398 |
"resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
|
9418 |
"integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=",
|
9419 |
"dev": true
|
9420 |
},
|
9421 |
+
"is-whitespace-character": {
|
9422 |
+
"version": "1.0.4",
|
9423 |
+
"resolved": "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz",
|
9424 |
+
"integrity": "sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==",
|
9425 |
+
"dev": true
|
9426 |
+
},
|
9427 |
"is-windows": {
|
9428 |
"version": "1.0.2",
|
9429 |
"resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
|
9430 |
"integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
|
9431 |
"dev": true
|
9432 |
},
|
9433 |
+
"is-word-character": {
|
9434 |
+
"version": "1.0.4",
|
9435 |
+
"resolved": "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.4.tgz",
|
9436 |
+
"integrity": "sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==",
|
9437 |
+
"dev": true
|
9438 |
+
},
|
9439 |
"is-wsl": {
|
9440 |
"version": "1.1.0",
|
9441 |
"resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz",
|
9468 |
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
|
9469 |
"integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
|
9470 |
},
|
9471 |
+
"istanbul-lib-coverage": {
|
9472 |
+
"version": "2.0.5",
|
9473 |
+
"resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz",
|
9474 |
+
"integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9475 |
"dev": true
|
9476 |
},
|
9477 |
+
"istanbul-lib-instrument": {
|
9478 |
+
"version": "3.3.0",
|
9479 |
+
"resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz",
|
9480 |
+
"integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==",
|
|
|
|
|
|
|
|
|
|
|
9481 |
"dev": true,
|
9482 |
"requires": {
|
9483 |
+
"@babel/generator": "^7.4.0",
|
9484 |
+
"@babel/parser": "^7.4.3",
|
9485 |
+
"@babel/template": "^7.4.0",
|
9486 |
+
"@babel/traverse": "^7.4.3",
|
9487 |
+
"@babel/types": "^7.4.0",
|
9488 |
+
"istanbul-lib-coverage": "^2.0.5",
|
9489 |
+
"semver": "^6.0.0"
|
9490 |
+
},
|
9491 |
+
"dependencies": {
|
9492 |
+
"semver": {
|
9493 |
+
"version": "6.3.0",
|
9494 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
9495 |
+
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
9496 |
+
"dev": true
|
9497 |
+
}
|
9498 |
}
|
9499 |
},
|
9500 |
+
"istanbul-lib-report": {
|
9501 |
+
"version": "2.0.8",
|
9502 |
+
"resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz",
|
9503 |
+
"integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==",
|
9504 |
+
"dev": true,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9505 |
"requires": {
|
9506 |
+
"istanbul-lib-coverage": "^2.0.5",
|
9507 |
+
"make-dir": "^2.1.0",
|
9508 |
+
"supports-color": "^6.1.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9509 |
},
|
9510 |
"dependencies": {
|
9511 |
+
"make-dir": {
|
9512 |
+
"version": "2.1.0",
|
9513 |
+
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
|
9514 |
+
"integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
|
|
|
|
|
|
|
|
|
|
|
|
|
9515 |
"dev": true,
|
9516 |
"requires": {
|
9517 |
+
"pify": "^4.0.1",
|
9518 |
+
"semver": "^5.6.0"
|
|
|
|
|
|
|
|
|
|
|
9519 |
}
|
9520 |
},
|
9521 |
+
"pify": {
|
9522 |
+
"version": "4.0.1",
|
9523 |
+
"resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
|
9524 |
+
"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
|
9525 |
+
"dev": true
|
9526 |
+
},
|
9527 |
+
"supports-color": {
|
9528 |
+
"version": "6.1.0",
|
9529 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
|
9530 |
+
"integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
|
9531 |
"dev": true,
|
9532 |
"requires": {
|
9533 |
+
"has-flag": "^3.0.0"
|
9534 |
}
|
9535 |
}
|
9536 |
}
|
9537 |
},
|
9538 |
+
"istanbul-lib-source-maps": {
|
9539 |
+
"version": "3.0.6",
|
9540 |
+
"resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz",
|
9541 |
+
"integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9542 |
"dev": true,
|
9543 |
"requires": {
|
9544 |
+
"debug": "^4.1.1",
|
9545 |
+
"istanbul-lib-coverage": "^2.0.5",
|
9546 |
+
"make-dir": "^2.1.0",
|
9547 |
+
"rimraf": "^2.6.3",
|
9548 |
+
"source-map": "^0.6.1"
|
9549 |
+
},
|
9550 |
+
"dependencies": {
|
9551 |
+
"make-dir": {
|
9552 |
+
"version": "2.1.0",
|
9553 |
+
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
|
9554 |
+
"integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
|
9555 |
+
"dev": true,
|
9556 |
+
"requires": {
|
9557 |
+
"pify": "^4.0.1",
|
9558 |
+
"semver": "^5.6.0"
|
9559 |
+
}
|
9560 |
+
},
|
9561 |
+
"pify": {
|
9562 |
+
"version": "4.0.1",
|
9563 |
+
"resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
|
9564 |
+
"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
|
9565 |
+
"dev": true
|
9566 |
+
},
|
9567 |
+
"rimraf": {
|
9568 |
+
"version": "2.7.1",
|
9569 |
+
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
|
9570 |
+
"integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
|
9571 |
+
"dev": true,
|
9572 |
+
"requires": {
|
9573 |
+
"glob": "^7.1.3"
|
9574 |
+
}
|
9575 |
+
},
|
9576 |
+
"source-map": {
|
9577 |
+
"version": "0.6.1",
|
9578 |
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
9579 |
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
9580 |
+
"dev": true
|
9581 |
+
}
|
9582 |
}
|
9583 |
},
|
9584 |
+
"istanbul-reports": {
|
9585 |
+
"version": "2.2.7",
|
9586 |
+
"resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.7.tgz",
|
9587 |
+
"integrity": "sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg==",
|
9588 |
"dev": true,
|
9589 |
"requires": {
|
9590 |
+
"html-escaper": "^2.0.0"
|
|
|
|
|
9591 |
}
|
9592 |
},
|
9593 |
+
"jest": {
|
9594 |
+
"version": "24.9.0",
|
9595 |
+
"resolved": "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz",
|
9596 |
+
"integrity": "sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==",
|
9597 |
"dev": true,
|
9598 |
"requires": {
|
9599 |
+
"import-local": "^2.0.0",
|
9600 |
+
"jest-cli": "^24.9.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9601 |
},
|
9602 |
"dependencies": {
|
9603 |
+
"ansi-regex": {
|
9604 |
+
"version": "4.1.0",
|
9605 |
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
|
9606 |
+
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
|
9607 |
+
"dev": true
|
|
|
|
|
|
|
|
|
9608 |
},
|
9609 |
+
"camelcase": {
|
9610 |
+
"version": "5.3.1",
|
9611 |
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
9612 |
+
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
|
9613 |
+
"dev": true
|
9614 |
+
},
|
9615 |
+
"cliui": {
|
9616 |
+
"version": "5.0.0",
|
9617 |
+
"resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
|
9618 |
+
"integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==",
|
9619 |
+
"dev": true,
|
9620 |
+
"requires": {
|
9621 |
+
"string-width": "^3.1.0",
|
9622 |
+
"strip-ansi": "^5.2.0",
|
9623 |
+
"wrap-ansi": "^5.1.0"
|
9624 |
+
}
|
9625 |
+
},
|
9626 |
+
"get-caller-file": {
|
9627 |
+
"version": "2.0.5",
|
9628 |
+
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
|
9629 |
+
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
|
9630 |
+
"dev": true
|
9631 |
+
},
|
9632 |
+
"is-fullwidth-code-point": {
|
9633 |
"version": "2.0.0",
|
9634 |
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
|
9635 |
+
"integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
|
9636 |
+
"dev": true
|
9637 |
+
},
|
9638 |
+
"jest-cli": {
|
9639 |
+
"version": "24.9.0",
|
9640 |
+
"resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz",
|
9641 |
+
"integrity": "sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==",
|
9642 |
+
"dev": true,
|
9643 |
"requires": {
|
9644 |
+
"@jest/core": "^24.9.0",
|
9645 |
+
"@jest/test-result": "^24.9.0",
|
9646 |
+
"@jest/types": "^24.9.0",
|
9647 |
+
"chalk": "^2.0.1",
|
9648 |
+
"exit": "^0.1.2",
|
9649 |
+
"import-local": "^2.0.0",
|
9650 |
+
"is-ci": "^2.0.0",
|
9651 |
+
"jest-config": "^24.9.0",
|
9652 |
+
"jest-util": "^24.9.0",
|
9653 |
+
"jest-validate": "^24.9.0",
|
9654 |
+
"prompts": "^2.0.1",
|
9655 |
+
"realpath-native": "^1.1.0",
|
9656 |
+
"yargs": "^13.3.0"
|
9657 |
+
}
|
9658 |
+
},
|
9659 |
+
"require-main-filename": {
|
9660 |
+
"version": "2.0.0",
|
9661 |
+
"resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
|
9662 |
+
"integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
|
9663 |
+
"dev": true
|
9664 |
+
},
|
9665 |
+
"string-width": {
|
9666 |
+
"version": "3.1.0",
|
9667 |
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
|
9668 |
+
"integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
|
9669 |
+
"dev": true,
|
9670 |
+
"requires": {
|
9671 |
+
"emoji-regex": "^7.0.1",
|
9672 |
+
"is-fullwidth-code-point": "^2.0.0",
|
9673 |
+
"strip-ansi": "^5.1.0"
|
9674 |
+
}
|
9675 |
+
},
|
9676 |
+
"strip-ansi": {
|
9677 |
+
"version": "5.2.0",
|
9678 |
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
|
9679 |
+
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
|
9680 |
+
"dev": true,
|
9681 |
+
"requires": {
|
9682 |
+
"ansi-regex": "^4.1.0"
|
9683 |
+
}
|
9684 |
+
},
|
9685 |
+
"which-module": {
|
9686 |
+
"version": "2.0.0",
|
9687 |
+
"resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
|
9688 |
+
"integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
|
9689 |
+
"dev": true
|
9690 |
+
},
|
9691 |
+
"wrap-ansi": {
|
9692 |
+
"version": "5.1.0",
|
9693 |
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
|
9694 |
+
"integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
|
9695 |
+
"dev": true,
|
9696 |
+
"requires": {
|
9697 |
+
"ansi-styles": "^3.2.0",
|
9698 |
+
"string-width": "^3.0.0",
|
9699 |
+
"strip-ansi": "^5.0.0"
|
9700 |
+
}
|
9701 |
+
},
|
9702 |
+
"y18n": {
|
9703 |
+
"version": "4.0.0",
|
9704 |
+
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
|
9705 |
+
"integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
|
9706 |
+
"dev": true
|
9707 |
+
},
|
9708 |
+
"yargs": {
|
9709 |
+
"version": "13.3.0",
|
9710 |
+
"resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz",
|
9711 |
+
"integrity": "sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==",
|
9712 |
+
"dev": true,
|
9713 |
+
"requires": {
|
9714 |
+
"cliui": "^5.0.0",
|
9715 |
+
"find-up": "^3.0.0",
|
9716 |
+
"get-caller-file": "^2.0.1",
|
9717 |
+
"require-directory": "^2.1.1",
|
9718 |
+
"require-main-filename": "^2.0.0",
|
9719 |
+
"set-blocking": "^2.0.0",
|
9720 |
+
"string-width": "^3.0.0",
|
9721 |
+
"which-module": "^2.0.0",
|
9722 |
+
"y18n": "^4.0.0",
|
9723 |
+
"yargs-parser": "^13.1.1"
|
9724 |
+
}
|
9725 |
+
},
|
9726 |
+
"yargs-parser": {
|
9727 |
+
"version": "13.1.1",
|
9728 |
+
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz",
|
9729 |
+
"integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==",
|
9730 |
+
"dev": true,
|
9731 |
+
"requires": {
|
9732 |
+
"camelcase": "^5.0.0",
|
9733 |
+
"decamelize": "^1.2.0"
|
9734 |
}
|
9735 |
}
|
9736 |
}
|
9737 |
},
|
9738 |
+
"jest-changed-files": {
|
9739 |
+
"version": "24.9.0",
|
9740 |
+
"resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.9.0.tgz",
|
9741 |
+
"integrity": "sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==",
|
|
|
|
|
|
|
|
|
|
|
|
|
9742 |
"dev": true,
|
9743 |
"requires": {
|
9744 |
+
"@jest/types": "^24.9.0",
|
9745 |
+
"execa": "^1.0.0",
|
9746 |
+
"throat": "^4.0.0"
|
9747 |
},
|
9748 |
"dependencies": {
|
9749 |
+
"cross-spawn": {
|
9750 |
+
"version": "6.0.5",
|
9751 |
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
|
9752 |
+
"integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
|
9753 |
"dev": true,
|
9754 |
"requires": {
|
9755 |
+
"nice-try": "^1.0.4",
|
9756 |
+
"path-key": "^2.0.1",
|
9757 |
+
"semver": "^5.5.0",
|
9758 |
+
"shebang-command": "^1.2.0",
|
9759 |
+
"which": "^1.2.9"
|
9760 |
+
}
|
9761 |
+
},
|
9762 |
+
"execa": {
|
9763 |
+
"version": "1.0.0",
|
9764 |
+
"resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
|
9765 |
+
"integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
|
9766 |
+
"dev": true,
|
9767 |
+
"requires": {
|
9768 |
+
"cross-spawn": "^6.0.0",
|
9769 |
+
"get-stream": "^4.0.0",
|
9770 |
+
"is-stream": "^1.1.0",
|
9771 |
+
"npm-run-path": "^2.0.0",
|
9772 |
+
"p-finally": "^1.0.0",
|
9773 |
+
"signal-exit": "^3.0.0",
|
9774 |
+
"strip-eof": "^1.0.0"
|
9775 |
}
|
9776 |
}
|
9777 |
}
|
9778 |
},
|
9779 |
+
"jest-config": {
|
9780 |
+
"version": "24.9.0",
|
9781 |
+
"resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.9.0.tgz",
|
9782 |
+
"integrity": "sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==",
|
9783 |
"dev": true,
|
9784 |
"requires": {
|
9785 |
+
"@babel/core": "^7.1.0",
|
9786 |
+
"@jest/test-sequencer": "^24.9.0",
|
9787 |
+
"@jest/types": "^24.9.0",
|
9788 |
+
"babel-jest": "^24.9.0",
|
9789 |
+
"chalk": "^2.0.1",
|
9790 |
+
"glob": "^7.1.1",
|
9791 |
+
"jest-environment-jsdom": "^24.9.0",
|
9792 |
+
"jest-environment-node": "^24.9.0",
|
9793 |
+
"jest-get-type": "^24.9.0",
|
9794 |
+
"jest-jasmine2": "^24.9.0",
|
9795 |
+
"jest-regex-util": "^24.3.0",
|
9796 |
+
"jest-resolve": "^24.9.0",
|
9797 |
+
"jest-util": "^24.9.0",
|
9798 |
+
"jest-validate": "^24.9.0",
|
9799 |
+
"micromatch": "^3.1.10",
|
9800 |
+
"pretty-format": "^24.9.0",
|
9801 |
+
"realpath-native": "^1.1.0"
|
9802 |
}
|
9803 |
},
|
9804 |
+
"jest-dev-server": {
|
9805 |
+
"version": "4.4.0",
|
9806 |
+
"resolved": "https://registry.npmjs.org/jest-dev-server/-/jest-dev-server-4.4.0.tgz",
|
9807 |
+
"integrity": "sha512-STEHJ3iPSC8HbrQ3TME0ozGX2KT28lbT4XopPxUm2WimsX3fcB3YOptRh12YphQisMhfqNSNTZUmWyT3HEXS2A==",
|
9808 |
+
"dev": true,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9809 |
"requires": {
|
9810 |
+
"chalk": "^3.0.0",
|
9811 |
+
"cwd": "^0.10.0",
|
9812 |
+
"find-process": "^1.4.3",
|
9813 |
+
"prompts": "^2.3.0",
|
9814 |
+
"spawnd": "^4.4.0",
|
9815 |
+
"tree-kill": "^1.2.2",
|
9816 |
+
"wait-on": "^3.3.0"
|
9817 |
},
|
9818 |
"dependencies": {
|
9819 |
+
"ansi-styles": {
|
9820 |
+
"version": "4.2.1",
|
9821 |
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
|
9822 |
+
"integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
|
9823 |
+
"dev": true,
|
9824 |
"requires": {
|
9825 |
+
"@types/color-name": "^1.1.1",
|
9826 |
+
"color-convert": "^2.0.1"
|
9827 |
+
}
|
9828 |
+
},
|
9829 |
+
"chalk": {
|
9830 |
+
"version": "3.0.0",
|
9831 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
|
9832 |
+
"integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
|
9833 |
+
"dev": true,
|
9834 |
+
"requires": {
|
9835 |
+
"ansi-styles": "^4.1.0",
|
9836 |
+
"supports-color": "^7.1.0"
|
9837 |
+
}
|
9838 |
+
},
|
9839 |
+
"color-convert": {
|
9840 |
+
"version": "2.0.1",
|
9841 |
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
9842 |
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
9843 |
+
"dev": true,
|
9844 |
+
"requires": {
|
9845 |
+
"color-name": "~1.1.4"
|
9846 |
+
}
|
9847 |
+
},
|
9848 |
+
"color-name": {
|
9849 |
+
"version": "1.1.4",
|
9850 |
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
9851 |
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
9852 |
+
"dev": true
|
9853 |
+
},
|
9854 |
+
"has-flag": {
|
9855 |
+
"version": "4.0.0",
|
9856 |
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
9857 |
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
9858 |
+
"dev": true
|
9859 |
+
},
|
9860 |
+
"supports-color": {
|
9861 |
+
"version": "7.1.0",
|
9862 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
9863 |
+
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
9864 |
+
"dev": true,
|
9865 |
+
"requires": {
|
9866 |
+
"has-flag": "^4.0.0"
|
9867 |
}
|
9868 |
}
|
9869 |
}
|
9870 |
},
|
9871 |
+
"jest-diff": {
|
9872 |
+
"version": "24.9.0",
|
9873 |
+
"resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.9.0.tgz",
|
9874 |
+
"integrity": "sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==",
|
9875 |
+
"dev": true,
|
9876 |
"requires": {
|
9877 |
+
"chalk": "^2.0.1",
|
9878 |
+
"diff-sequences": "^24.9.0",
|
9879 |
+
"jest-get-type": "^24.9.0",
|
9880 |
+
"pretty-format": "^24.9.0"
|
9881 |
}
|
9882 |
},
|
9883 |
+
"jest-docblock": {
|
9884 |
+
"version": "24.9.0",
|
9885 |
+
"resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.9.0.tgz",
|
9886 |
+
"integrity": "sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==",
|
9887 |
+
"dev": true,
|
|
|
|
|
|
|
|
|
|
|
9888 |
"requires": {
|
9889 |
+
"detect-newline": "^2.1.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9890 |
}
|
9891 |
},
|
9892 |
+
"jest-each": {
|
9893 |
+
"version": "24.9.0",
|
9894 |
+
"resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.9.0.tgz",
|
9895 |
+
"integrity": "sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==",
|
9896 |
+
"dev": true,
|
9897 |
"requires": {
|
9898 |
+
"@jest/types": "^24.9.0",
|
9899 |
+
"chalk": "^2.0.1",
|
9900 |
+
"jest-get-type": "^24.9.0",
|
9901 |
+
"jest-util": "^24.9.0",
|
9902 |
+
"pretty-format": "^24.9.0"
|
9903 |
}
|
9904 |
},
|
9905 |
+
"jest-environment-jsdom": {
|
9906 |
+
"version": "24.9.0",
|
9907 |
+
"resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz",
|
9908 |
+
"integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==",
|
|
|
|
|
|
|
|
|
|
|
|
|
9909 |
"dev": true,
|
9910 |
"requires": {
|
9911 |
+
"@jest/environment": "^24.9.0",
|
9912 |
+
"@jest/fake-timers": "^24.9.0",
|
9913 |
+
"@jest/types": "^24.9.0",
|
9914 |
+
"jest-mock": "^24.9.0",
|
9915 |
+
"jest-util": "^24.9.0",
|
9916 |
+
"jsdom": "^11.5.1"
|
9917 |
}
|
9918 |
},
|
9919 |
+
"jest-environment-node": {
|
9920 |
+
"version": "24.9.0",
|
9921 |
+
"resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.9.0.tgz",
|
9922 |
+
"integrity": "sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==",
|
9923 |
"dev": true,
|
9924 |
"requires": {
|
9925 |
+
"@jest/environment": "^24.9.0",
|
9926 |
+
"@jest/fake-timers": "^24.9.0",
|
9927 |
+
"@jest/types": "^24.9.0",
|
9928 |
+
"jest-mock": "^24.9.0",
|
9929 |
+
"jest-util": "^24.9.0"
|
9930 |
}
|
9931 |
},
|
9932 |
+
"jest-environment-puppeteer": {
|
9933 |
+
"version": "4.4.0",
|
9934 |
+
"resolved": "https://registry.npmjs.org/jest-environment-puppeteer/-/jest-environment-puppeteer-4.4.0.tgz",
|
9935 |
+
"integrity": "sha512-iV8S8+6qkdTM6OBR/M9gKywEk8GDSOe05hspCs5D8qKSwtmlUfdtHfB4cakdc68lC6YfK3AUsLirpfgodCHjzQ==",
|
9936 |
+
"dev": true,
|
9937 |
"requires": {
|
9938 |
+
"chalk": "^3.0.0",
|
9939 |
+
"cwd": "^0.10.0",
|
9940 |
+
"jest-dev-server": "^4.4.0",
|
9941 |
+
"merge-deep": "^3.0.2"
|
9942 |
},
|
9943 |
"dependencies": {
|
9944 |
+
"ansi-styles": {
|
9945 |
+
"version": "4.2.1",
|
9946 |
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz",
|
9947 |
+
"integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==",
|
9948 |
+
"dev": true,
|
9949 |
"requires": {
|
9950 |
+
"@types/color-name": "^1.1.1",
|
9951 |
+
"color-convert": "^2.0.1"
|
9952 |
+
}
|
9953 |
+
},
|
9954 |
+
"chalk": {
|
9955 |
+
"version": "3.0.0",
|
9956 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz",
|
9957 |
+
"integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==",
|
9958 |
+
"dev": true,
|
9959 |
+
"requires": {
|
9960 |
+
"ansi-styles": "^4.1.0",
|
9961 |
+
"supports-color": "^7.1.0"
|
9962 |
+
}
|
9963 |
+
},
|
9964 |
+
"color-convert": {
|
9965 |
+
"version": "2.0.1",
|
9966 |
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
9967 |
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
9968 |
+
"dev": true,
|
9969 |
+
"requires": {
|
9970 |
+
"color-name": "~1.1.4"
|
9971 |
+
}
|
9972 |
+
},
|
9973 |
+
"color-name": {
|
9974 |
+
"version": "1.1.4",
|
9975 |
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
9976 |
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
9977 |
+
"dev": true
|
9978 |
+
},
|
9979 |
+
"has-flag": {
|
9980 |
+
"version": "4.0.0",
|
9981 |
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
9982 |
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
9983 |
+
"dev": true
|
9984 |
+
},
|
9985 |
+
"supports-color": {
|
9986 |
+
"version": "7.1.0",
|
9987 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz",
|
9988 |
+
"integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==",
|
9989 |
+
"dev": true,
|
9990 |
+
"requires": {
|
9991 |
+
"has-flag": "^4.0.0"
|
9992 |
}
|
9993 |
}
|
9994 |
}
|
9995 |
},
|
9996 |
+
"jest-get-type": {
|
9997 |
+
"version": "24.9.0",
|
9998 |
+
"resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz",
|
9999 |
+
"integrity": "sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==",
|
10000 |
+
"dev": true
|
|
|
|
|
10001 |
},
|
10002 |
+
"jest-haste-map": {
|
10003 |
+
"version": "24.9.0",
|
10004 |
+
"resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz",
|
10005 |
+
"integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==",
|
10006 |
+
"dev": true,
|
10007 |
"requires": {
|
10008 |
+
"@jest/types": "^24.9.0",
|
10009 |
+
"anymatch": "^2.0.0",
|
10010 |
+
"fb-watchman": "^2.0.0",
|
10011 |
+
"fsevents": "^1.2.7",
|
10012 |
+
"graceful-fs": "^4.1.15",
|
10013 |
+
"invariant": "^2.2.4",
|
10014 |
+
"jest-serializer": "^24.9.0",
|
10015 |
+
"jest-util": "^24.9.0",
|
10016 |
+
"jest-worker": "^24.9.0",
|
10017 |
+
"micromatch": "^3.1.10",
|
10018 |
+
"sane": "^4.0.3",
|
10019 |
+
"walker": "^1.0.7"
|
10020 |
}
|
10021 |
},
|
10022 |
+
"jest-jasmine2": {
|
10023 |
+
"version": "24.9.0",
|
10024 |
+
"resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz",
|
10025 |
+
"integrity": "sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==",
|
|
|
|
|
|
|
|
|
|
|
|
|
10026 |
"dev": true,
|
10027 |
"requires": {
|
10028 |
+
"@babel/traverse": "^7.1.0",
|
10029 |
+
"@jest/environment": "^24.9.0",
|
10030 |
+
"@jest/test-result": "^24.9.0",
|
10031 |
+
"@jest/types": "^24.9.0",
|
10032 |
+
"chalk": "^2.0.1",
|
10033 |
+
"co": "^4.6.0",
|
10034 |
+
"expect": "^24.9.0",
|
10035 |
+
"is-generator-fn": "^2.0.0",
|
10036 |
+
"jest-each": "^24.9.0",
|
10037 |
+
"jest-matcher-utils": "^24.9.0",
|
10038 |
+
"jest-message-util": "^24.9.0",
|
10039 |
+
"jest-runtime": "^24.9.0",
|
10040 |
+
"jest-snapshot": "^24.9.0",
|
10041 |
+
"jest-util": "^24.9.0",
|
10042 |
+
"pretty-format": "^24.9.0",
|
10043 |
+
"throat": "^4.0.0"
|
10044 |
}
|
10045 |
},
|
10046 |
+
"jest-leak-detector": {
|
10047 |
+
"version": "24.9.0",
|
10048 |
+
"resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz",
|
10049 |
+
"integrity": "sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==",
|
10050 |
"dev": true,
|
10051 |
"requires": {
|
10052 |
+
"jest-get-type": "^24.9.0",
|
10053 |
+
"pretty-format": "^24.9.0"
|
10054 |
}
|
10055 |
},
|
10056 |
+
"jest-matcher-utils": {
|
10057 |
+
"version": "24.9.0",
|
10058 |
+
"resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz",
|
10059 |
+
"integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==",
|
10060 |
"dev": true,
|
10061 |
"requires": {
|
10062 |
+
"chalk": "^2.0.1",
|
10063 |
+
"jest-diff": "^24.9.0",
|
10064 |
+
"jest-get-type": "^24.9.0",
|
10065 |
+
"pretty-format": "^24.9.0"
|
10066 |
}
|
10067 |
},
|
10068 |
+
"jest-message-util": {
|
10069 |
+
"version": "24.9.0",
|
10070 |
+
"resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz",
|
10071 |
+
"integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==",
|
10072 |
"dev": true,
|
10073 |
"requires": {
|
10074 |
+
"@babel/code-frame": "^7.0.0",
|
10075 |
+
"@jest/test-result": "^24.9.0",
|
10076 |
+
"@jest/types": "^24.9.0",
|
10077 |
+
"@types/stack-utils": "^1.0.1",
|
10078 |
+
"chalk": "^2.0.1",
|
10079 |
+
"micromatch": "^3.1.10",
|
10080 |
+
"slash": "^2.0.0",
|
10081 |
+
"stack-utils": "^1.0.1"
|
|
|
|
|
|
|
10082 |
}
|
10083 |
},
|
10084 |
+
"jest-mock": {
|
10085 |
+
"version": "24.9.0",
|
10086 |
+
"resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz",
|
10087 |
+
"integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==",
|
10088 |
"dev": true,
|
10089 |
"requires": {
|
10090 |
+
"@jest/types": "^24.9.0"
|
10091 |
}
|
10092 |
},
|
10093 |
+
"jest-pnp-resolver": {
|
10094 |
+
"version": "1.2.1",
|
10095 |
+
"resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz",
|
10096 |
+
"integrity": "sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==",
|
10097 |
"dev": true
|
10098 |
},
|
10099 |
+
"jest-puppeteer": {
|
10100 |
+
"version": "4.4.0",
|
10101 |
+
"resolved": "https://registry.npmjs.org/jest-puppeteer/-/jest-puppeteer-4.4.0.tgz",
|
10102 |
+
"integrity": "sha512-ZaiCTlPZ07B9HW0erAWNX6cyzBqbXMM7d2ugai4epBDKpKvRDpItlRQC6XjERoJELKZsPziFGS0OhhUvTvQAXA==",
|
10103 |
"dev": true,
|
10104 |
"requires": {
|
10105 |
+
"expect-puppeteer": "^4.4.0",
|
10106 |
+
"jest-environment-puppeteer": "^4.4.0"
|
10107 |
}
|
10108 |
},
|
10109 |
+
"jest-regex-util": {
|
10110 |
+
"version": "24.9.0",
|
10111 |
+
"resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz",
|
10112 |
+
"integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==",
|
10113 |
"dev": true
|
10114 |
},
|
10115 |
+
"jest-resolve": {
|
10116 |
+
"version": "24.9.0",
|
10117 |
+
"resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.9.0.tgz",
|
10118 |
+
"integrity": "sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==",
|
10119 |
+
"dev": true,
|
10120 |
+
"requires": {
|
10121 |
+
"@jest/types": "^24.9.0",
|
10122 |
+
"browser-resolve": "^1.11.3",
|
10123 |
+
"chalk": "^2.0.1",
|
10124 |
+
"jest-pnp-resolver": "^1.2.1",
|
10125 |
+
"realpath-native": "^1.1.0"
|
10126 |
+
}
|
10127 |
},
|
10128 |
+
"jest-resolve-dependencies": {
|
10129 |
+
"version": "24.9.0",
|
10130 |
+
"resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz",
|
10131 |
+
"integrity": "sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==",
|
10132 |
"dev": true,
|
10133 |
"requires": {
|
10134 |
+
"@jest/types": "^24.9.0",
|
10135 |
+
"jest-regex-util": "^24.3.0",
|
10136 |
+
"jest-snapshot": "^24.9.0"
|
10137 |
}
|
10138 |
},
|
10139 |
+
"jest-runner": {
|
10140 |
+
"version": "24.9.0",
|
10141 |
+
"resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.9.0.tgz",
|
10142 |
+
"integrity": "sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==",
|
10143 |
"dev": true,
|
10144 |
"requires": {
|
10145 |
+
"@jest/console": "^24.7.1",
|
10146 |
+
"@jest/environment": "^24.9.0",
|
10147 |
+
"@jest/test-result": "^24.9.0",
|
10148 |
+
"@jest/types": "^24.9.0",
|
10149 |
+
"chalk": "^2.4.2",
|
10150 |
+
"exit": "^0.1.2",
|
10151 |
+
"graceful-fs": "^4.1.15",
|
10152 |
+
"jest-config": "^24.9.0",
|
10153 |
+
"jest-docblock": "^24.3.0",
|
10154 |
+
"jest-haste-map": "^24.9.0",
|
10155 |
+
"jest-jasmine2": "^24.9.0",
|
10156 |
+
"jest-leak-detector": "^24.9.0",
|
10157 |
+
"jest-message-util": "^24.9.0",
|
10158 |
+
"jest-resolve": "^24.9.0",
|
10159 |
+
"jest-runtime": "^24.9.0",
|
10160 |
+
"jest-util": "^24.9.0",
|
10161 |
+
"jest-worker": "^24.6.0",
|
10162 |
+
"source-map-support": "^0.5.6",
|
10163 |
+
"throat": "^4.0.0"
|
10164 |
},
|
10165 |
"dependencies": {
|
10166 |
+
"chalk": {
|
10167 |
+
"version": "2.4.2",
|
10168 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
10169 |
+
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10170 |
"dev": true,
|
10171 |
"requires": {
|
10172 |
+
"ansi-styles": "^3.2.1",
|
10173 |
+
"escape-string-regexp": "^1.0.5",
|
10174 |
+
"supports-color": "^5.3.0"
|
10175 |
}
|
10176 |
}
|
10177 |
}
|
10178 |
},
|
10179 |
+
"jest-runtime": {
|
10180 |
+
"version": "24.9.0",
|
10181 |
+
"resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz",
|
10182 |
+
"integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10183 |
"dev": true,
|
10184 |
"requires": {
|
10185 |
+
"@jest/console": "^24.7.1",
|
10186 |
+
"@jest/environment": "^24.9.0",
|
10187 |
+
"@jest/source-map": "^24.3.0",
|
10188 |
+
"@jest/transform": "^24.9.0",
|
10189 |
+
"@jest/types": "^24.9.0",
|
10190 |
+
"@types/yargs": "^13.0.0",
|
10191 |
+
"chalk": "^2.0.1",
|
10192 |
+
"exit": "^0.1.2",
|
10193 |
+
"glob": "^7.1.3",
|
10194 |
+
"graceful-fs": "^4.1.15",
|
10195 |
+
"jest-config": "^24.9.0",
|
10196 |
+
"jest-haste-map": "^24.9.0",
|
10197 |
+
"jest-message-util": "^24.9.0",
|
10198 |
+
"jest-mock": "^24.9.0",
|
10199 |
+
"jest-regex-util": "^24.3.0",
|
10200 |
+
"jest-resolve": "^24.9.0",
|
10201 |
+
"jest-snapshot": "^24.9.0",
|
10202 |
+
"jest-util": "^24.9.0",
|
10203 |
+
"jest-validate": "^24.9.0",
|
10204 |
+
"realpath-native": "^1.1.0",
|
10205 |
+
"slash": "^2.0.0",
|
10206 |
+
"strip-bom": "^3.0.0",
|
10207 |
+
"yargs": "^13.3.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10208 |
},
|
10209 |
"dependencies": {
|
10210 |
+
"ansi-regex": {
|
10211 |
+
"version": "4.1.0",
|
10212 |
+
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
|
10213 |
+
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
|
10214 |
"dev": true
|
10215 |
},
|
10216 |
+
"camelcase": {
|
10217 |
+
"version": "5.3.1",
|
10218 |
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
10219 |
+
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
|
10220 |
+
"dev": true
|
10221 |
+
},
|
10222 |
+
"cliui": {
|
10223 |
+
"version": "5.0.0",
|
10224 |
+
"resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
|
10225 |
+
"integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==",
|
10226 |
"dev": true,
|
10227 |
"requires": {
|
10228 |
+
"string-width": "^3.1.0",
|
10229 |
+
"strip-ansi": "^5.2.0",
|
10230 |
+
"wrap-ansi": "^5.1.0"
|
|
|
|
|
|
|
|
|
10231 |
}
|
10232 |
},
|
10233 |
+
"get-caller-file": {
|
10234 |
+
"version": "2.0.5",
|
10235 |
+
"resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
|
10236 |
+
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
|
10237 |
+
"dev": true
|
10238 |
+
},
|
10239 |
+
"is-fullwidth-code-point": {
|
10240 |
+
"version": "2.0.0",
|
10241 |
+
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
|
10242 |
+
"integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=",
|
10243 |
+
"dev": true
|
10244 |
+
},
|
10245 |
+
"require-main-filename": {
|
10246 |
+
"version": "2.0.0",
|
10247 |
+
"resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
|
10248 |
+
"integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
|
10249 |
+
"dev": true
|
10250 |
+
},
|
10251 |
+
"string-width": {
|
10252 |
+
"version": "3.1.0",
|
10253 |
+
"resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
|
10254 |
+
"integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
|
10255 |
"dev": true,
|
10256 |
"requires": {
|
10257 |
+
"emoji-regex": "^7.0.1",
|
10258 |
+
"is-fullwidth-code-point": "^2.0.0",
|
10259 |
+
"strip-ansi": "^5.1.0"
|
10260 |
+
}
|
10261 |
+
},
|
10262 |
+
"strip-ansi": {
|
10263 |
+
"version": "5.2.0",
|
10264 |
+
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
|
10265 |
+
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
|
10266 |
+
"dev": true,
|
10267 |
+
"requires": {
|
10268 |
+
"ansi-regex": "^4.1.0"
|
10269 |
+
}
|
10270 |
+
},
|
10271 |
+
"which-module": {
|
10272 |
+
"version": "2.0.0",
|
10273 |
+
"resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz",
|
10274 |
+
"integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=",
|
10275 |
+
"dev": true
|
10276 |
+
},
|
10277 |
+
"wrap-ansi": {
|
10278 |
+
"version": "5.1.0",
|
10279 |
+
"resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
|
10280 |
+
"integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
|
10281 |
+
"dev": true,
|
10282 |
+
"requires": {
|
10283 |
+
"ansi-styles": "^3.2.0",
|
10284 |
+
"string-width": "^3.0.0",
|
10285 |
+
"strip-ansi": "^5.0.0"
|
10286 |
+
}
|
10287 |
+
},
|
10288 |
+
"y18n": {
|
10289 |
+
"version": "4.0.0",
|
10290 |
+
"resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz",
|
10291 |
+
"integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==",
|
10292 |
+
"dev": true
|
10293 |
+
},
|
10294 |
+
"yargs": {
|
10295 |
+
"version": "13.3.0",
|
10296 |
+
"resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz",
|
10297 |
+
"integrity": "sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==",
|
10298 |
+
"dev": true,
|
10299 |
+
"requires": {
|
10300 |
+
"cliui": "^5.0.0",
|
10301 |
+
"find-up": "^3.0.0",
|
10302 |
+
"get-caller-file": "^2.0.1",
|
10303 |
+
"require-directory": "^2.1.1",
|
10304 |
+
"require-main-filename": "^2.0.0",
|
10305 |
+
"set-blocking": "^2.0.0",
|
10306 |
+
"string-width": "^3.0.0",
|
10307 |
+
"which-module": "^2.0.0",
|
10308 |
+
"y18n": "^4.0.0",
|
10309 |
+
"yargs-parser": "^13.1.1"
|
10310 |
+
}
|
10311 |
+
},
|
10312 |
+
"yargs-parser": {
|
10313 |
+
"version": "13.1.1",
|
10314 |
+
"resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz",
|
10315 |
+
"integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==",
|
10316 |
+
"dev": true,
|
10317 |
+
"requires": {
|
10318 |
+
"camelcase": "^5.0.0",
|
10319 |
+
"decamelize": "^1.2.0"
|
10320 |
}
|
10321 |
}
|
10322 |
}
|
10323 |
},
|
10324 |
+
"jest-serializer": {
|
10325 |
+
"version": "24.9.0",
|
10326 |
+
"resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz",
|
10327 |
+
"integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==",
|
10328 |
+
"dev": true
|
10329 |
+
},
|
10330 |
+
"jest-snapshot": {
|
10331 |
+
"version": "24.9.0",
|
10332 |
+
"resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz",
|
10333 |
+
"integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==",
|
10334 |
+
"dev": true,
|
10335 |
"requires": {
|
10336 |
+
"@babel/types": "^7.0.0",
|
10337 |
+
"@jest/types": "^24.9.0",
|
10338 |
+
"chalk": "^2.0.1",
|
10339 |
+
"expect": "^24.9.0",
|
10340 |
+
"jest-diff": "^24.9.0",
|
10341 |
+
"jest-get-type": "^24.9.0",
|
10342 |
+
"jest-matcher-utils": "^24.9.0",
|
10343 |
+
"jest-message-util": "^24.9.0",
|
10344 |
+
"jest-resolve": "^24.9.0",
|
10345 |
+
"mkdirp": "^0.5.1",
|
10346 |
+
"natural-compare": "^1.4.0",
|
10347 |
+
"pretty-format": "^24.9.0",
|
10348 |
+
"semver": "^6.2.0"
|
10349 |
},
|
10350 |
"dependencies": {
|
10351 |
+
"semver": {
|
10352 |
+
"version": "6.3.0",
|
10353 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
|
10354 |
+
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
|
10355 |
+
"dev": true
|
10356 |
}
|
10357 |
}
|
10358 |
},
|
10359 |
+
"jest-util": {
|
10360 |
+
"version": "24.9.0",
|
10361 |
+
"resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz",
|
10362 |
+
"integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==",
|
10363 |
"dev": true,
|
10364 |
"requires": {
|
10365 |
+
"@jest/console": "^24.9.0",
|
10366 |
+
"@jest/fake-timers": "^24.9.0",
|
10367 |
+
"@jest/source-map": "^24.9.0",
|
10368 |
+
"@jest/test-result": "^24.9.0",
|
10369 |
+
"@jest/types": "^24.9.0",
|
10370 |
+
"callsites": "^3.0.0",
|
10371 |
+
"chalk": "^2.0.1",
|
10372 |
+
"graceful-fs": "^4.1.15",
|
10373 |
+
"is-ci": "^2.0.0",
|
10374 |
+
"mkdirp": "^0.5.1",
|
10375 |
+
"slash": "^2.0.0",
|
10376 |
+
"source-map": "^0.6.0"
|
10377 |
+
},
|
10378 |
+
"dependencies": {
|
10379 |
+
"source-map": {
|
10380 |
+
"version": "0.6.1",
|
10381 |
+
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
10382 |
+
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
10383 |
+
"dev": true
|
10384 |
+
}
|
10385 |
}
|
10386 |
},
|
10387 |
+
"jest-validate": {
|
10388 |
+
"version": "24.9.0",
|
10389 |
+
"resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz",
|
10390 |
+
"integrity": "sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==",
|
10391 |
"dev": true,
|
10392 |
"requires": {
|
10393 |
+
"@jest/types": "^24.9.0",
|
10394 |
+
"camelcase": "^5.3.1",
|
10395 |
+
"chalk": "^2.0.1",
|
10396 |
+
"jest-get-type": "^24.9.0",
|
10397 |
+
"leven": "^3.1.0",
|
10398 |
+
"pretty-format": "^24.9.0"
|
10399 |
+
},
|
10400 |
+
"dependencies": {
|
10401 |
+
"camelcase": {
|
10402 |
+
"version": "5.3.1",
|
10403 |
+
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
|
10404 |
+
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
|
10405 |
+
"dev": true
|
10406 |
+
}
|
10407 |
}
|
10408 |
},
|
10409 |
+
"jest-watcher": {
|
10410 |
+
"version": "24.9.0",
|
10411 |
+
"resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.9.0.tgz",
|
10412 |
+
"integrity": "sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==",
|
10413 |
+
"dev": true,
|
10414 |
+
"requires": {
|
10415 |
+
"@jest/test-result": "^24.9.0",
|
10416 |
+
"@jest/types": "^24.9.0",
|
10417 |
+
"@types/yargs": "^13.0.0",
|
10418 |
+
"ansi-escapes": "^3.0.0",
|
10419 |
+
"chalk": "^2.0.1",
|
10420 |
+
"jest-util": "^24.9.0",
|
10421 |
+
"string-length": "^2.0.0"
|
10422 |
+
},
|
10423 |
+
"dependencies": {
|
10424 |
+
"ansi-escapes": {
|
10425 |
+
"version": "3.2.0",
|
10426 |
+
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
|
10427 |
+
"integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
|
10428 |
+
"dev": true
|
10429 |
+
}
|
10430 |
+
}
|
10431 |
},
|
10432 |
+
"jest-worker": {
|
10433 |
+
"version": "24.9.0",
|
10434 |
+
"resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz",
|
10435 |
+
"integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==",
|
10436 |
+
"dev": true,
|
10437 |
"requires": {
|
10438 |
+
"merge-stream": "^2.0.0",
|
10439 |
+
"supports-color": "^6.1.0"
|
10440 |
+
},
|
10441 |
+
"dependencies": {
|
10442 |
+
"supports-color": {
|
10443 |
+
"version": "6.1.0",
|
10444 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
|
10445 |
+
"integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
|
10446 |
+
"dev": true,
|
10447 |
+
"requires": {
|
10448 |
+
"has-flag": "^3.0.0"
|
10449 |
+
}
|
10450 |
+
}
|
10451 |
}
|
10452 |
},
|
10453 |
+
"jju": {
|
10454 |
+
"version": "1.4.0",
|
10455 |
+
"resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz",
|
10456 |
+
"integrity": "sha1-o6vicYryQaKykE+EpiWXDzia4yo=",
|
10457 |
"dev": true
|
10458 |
},
|
10459 |
+
"js-base64": {
|
10460 |
+
"version": "2.5.1",
|
10461 |
+
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz",
|
10462 |
+
"integrity": "sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw=="
|
|
|
10463 |
},
|
10464 |
+
"js-levenshtein": {
|
10465 |
+
"version": "1.1.6",
|
10466 |
+
"resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz",
|
10467 |
+
"integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==",
|
10468 |
"dev": true
|
10469 |
},
|
10470 |
+
"js-tokens": {
|
10471 |
+
"version": "4.0.0",
|
10472 |
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
10473 |
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
|
|
|
10474 |
},
|
10475 |
+
"js-yaml": {
|
10476 |
+
"version": "3.13.1",
|
10477 |
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz",
|
10478 |
+
"integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==",
|
10479 |
+
"dev": true,
|
10480 |
"requires": {
|
10481 |
+
"argparse": "^1.0.7",
|
10482 |
+
"esprima": "^4.0.0"
|
10483 |
}
|
10484 |
},
|
10485 |
+
"jsbn": {
|
10486 |
+
"version": "0.1.1",
|
10487 |
+
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
|
10488 |
+
"integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM="
|
10489 |
},
|
10490 |
+
"jsdoctypeparser": {
|
10491 |
+
"version": "5.1.1",
|
10492 |
+
"resolved": "https://registry.npmjs.org/jsdoctypeparser/-/jsdoctypeparser-5.1.1.tgz",
|
10493 |
+
"integrity": "sha512-APGygIJrT5bbz5lsVt8vyLJC0miEbQf/z9ZBfTr4RYvdia8AhWMRlYgivvwHG5zKD/VW3d6qpChCy64hpQET3A==",
|
10494 |
+
"dev": true
|
10495 |
+
},
|
10496 |
+
"jsdom": {
|
10497 |
+
"version": "11.12.0",
|
10498 |
+
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz",
|
10499 |
+
"integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==",
|
10500 |
+
"dev": true,
|
10501 |
+
"requires": {
|
10502 |
+
"abab": "^2.0.0",
|
10503 |
+
"acorn": "^5.5.3",
|
10504 |
+
"acorn-globals": "^4.1.0",
|
10505 |
+
"array-equal": "^1.0.0",
|
10506 |
+
"cssom": ">= 0.3.2 < 0.4.0",
|
10507 |
+
"cssstyle": "^1.0.0",
|
10508 |
+
"data-urls": "^1.0.0",
|
10509 |
+
"domexception": "^1.0.1",
|
10510 |
+
"escodegen": "^1.9.1",
|
10511 |
+
"html-encoding-sniffer": "^1.0.2",
|
10512 |
+
"left-pad": "^1.3.0",
|
10513 |
+
"nwsapi": "^2.0.7",
|
10514 |
+
"parse5": "4.0.0",
|
10515 |
+
"pn": "^1.1.0",
|
10516 |
+
"request": "^2.87.0",
|
10517 |
+
"request-promise-native": "^1.0.5",
|
10518 |
+
"sax": "^1.2.4",
|
10519 |
+
"symbol-tree": "^3.2.2",
|
10520 |
+
"tough-cookie": "^2.3.4",
|
10521 |
+
"w3c-hr-time": "^1.0.1",
|
10522 |
+
"webidl-conversions": "^4.0.2",
|
10523 |
+
"whatwg-encoding": "^1.0.3",
|
10524 |
+
"whatwg-mimetype": "^2.1.0",
|
10525 |
+
"whatwg-url": "^6.4.1",
|
10526 |
+
"ws": "^5.2.0",
|
10527 |
+
"xml-name-validator": "^3.0.0"
|
10528 |
},
|
10529 |
"dependencies": {
|
10530 |
+
"acorn": {
|
10531 |
+
"version": "5.7.3",
|
10532 |
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz",
|
10533 |
+
"integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==",
|
10534 |
"dev": true
|
10535 |
}
|
10536 |
}
|
10537 |
},
|
10538 |
+
"jsesc": {
|
10539 |
+
"version": "2.5.2",
|
10540 |
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
|
10541 |
+
"integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
|
10542 |
+
"dev": true
|
10543 |
+
},
|
10544 |
+
"jsmin-sourcemap": {
|
10545 |
+
"version": "0.16.0",
|
10546 |
+
"resolved": "https://registry.npmjs.org/jsmin-sourcemap/-/jsmin-sourcemap-0.16.0.tgz",
|
10547 |
+
"integrity": "sha1-1Z6Iobc7umcPw7OYzZ+Wf0v8zKo=",
|
10548 |
"requires": {
|
10549 |
+
"jsmin2": "~1.1.1",
|
10550 |
+
"source-map-index-generator": "~0.1.1"
|
10551 |
}
|
10552 |
},
|
10553 |
+
"jsmin2": {
|
10554 |
+
"version": "1.1.9",
|
10555 |
+
"resolved": "https://registry.npmjs.org/jsmin2/-/jsmin2-1.1.9.tgz",
|
10556 |
+
"integrity": "sha1-qHyr7GatsX9RwMLvIkrvDGloaE8="
|
10557 |
+
},
|
10558 |
+
"json-buffer": {
|
10559 |
"version": "3.0.0",
|
10560 |
+
"resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz",
|
10561 |
+
"integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=",
|
10562 |
+
"dev": true
|
10563 |
+
},
|
10564 |
+
"json-parse-better-errors": {
|
10565 |
+
"version": "1.0.2",
|
10566 |
+
"resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
|
10567 |
+
"integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
|
10568 |
+
"dev": true
|
10569 |
+
},
|
10570 |
+
"json-parse-helpfulerror": {
|
10571 |
+
"version": "1.0.3",
|
10572 |
+
"resolved": "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz",
|
10573 |
+
"integrity": "sha1-E/FM4C7tTpgSl7ZOueO5MuLdE9w=",
|
10574 |
"dev": true,
|
10575 |
"requires": {
|
10576 |
+
"jju": "^1.1.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10577 |
}
|
10578 |
},
|
10579 |
+
"json-schema": {
|
10580 |
+
"version": "0.2.3",
|
10581 |
+
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
|
10582 |
+
"integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
|
10583 |
+
},
|
10584 |
+
"json-schema-traverse": {
|
10585 |
+
"version": "0.4.1",
|
10586 |
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
10587 |
+
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
|
10588 |
+
},
|
10589 |
+
"json-stable-stringify-without-jsonify": {
|
10590 |
+
"version": "1.0.1",
|
10591 |
+
"resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
|
10592 |
+
"integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=",
|
10593 |
+
"dev": true
|
10594 |
+
},
|
10595 |
+
"json-stringify-safe": {
|
10596 |
+
"version": "5.0.1",
|
10597 |
+
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
|
10598 |
+
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
|
10599 |
+
},
|
10600 |
+
"json2php": {
|
10601 |
+
"version": "0.0.4",
|
10602 |
+
"resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.4.tgz",
|
10603 |
+
"integrity": "sha1-a9haHdpqXdfpECK7JEA8wbfC7jQ=",
|
10604 |
+
"dev": true
|
10605 |
+
},
|
10606 |
+
"json5": {
|
10607 |
+
"version": "2.1.1",
|
10608 |
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.1.1.tgz",
|
10609 |
+
"integrity": "sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==",
|
10610 |
"dev": true,
|
10611 |
"requires": {
|
10612 |
+
"minimist": "^1.2.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10613 |
}
|
10614 |
},
|
10615 |
+
"jsonc-parser": {
|
10616 |
+
"version": "2.2.0",
|
10617 |
+
"resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.2.0.tgz",
|
10618 |
+
"integrity": "sha512-4fLQxW1j/5fWj6p78vAlAafoCKtuBm6ghv+Ij5W2DrDx0qE+ZdEl2c6Ko1mgJNF5ftX1iEWQQ4Ap7+3GlhjkOA==",
|
10619 |
+
"dev": true
|
10620 |
+
},
|
10621 |
+
"jsonparse": {
|
10622 |
+
"version": "1.3.1",
|
10623 |
+
"resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz",
|
10624 |
+
"integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=",
|
10625 |
+
"dev": true
|
10626 |
+
},
|
10627 |
+
"jsprim": {
|
10628 |
+
"version": "1.4.1",
|
10629 |
+
"resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
|
10630 |
+
"integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
|
10631 |
"requires": {
|
10632 |
+
"assert-plus": "1.0.0",
|
10633 |
+
"extsprintf": "1.3.0",
|
10634 |
+
"json-schema": "0.2.3",
|
10635 |
+
"verror": "1.10.0"
|
|
|
|
|
|
|
|
|
10636 |
}
|
10637 |
},
|
10638 |
+
"jsx-ast-utils": {
|
10639 |
+
"version": "2.2.3",
|
10640 |
+
"resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz",
|
10641 |
+
"integrity": "sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA==",
|
10642 |
"dev": true,
|
10643 |
"requires": {
|
10644 |
+
"array-includes": "^3.0.3",
|
10645 |
+
"object.assign": "^4.1.0"
|
|
|
|
|
|
|
|
|
10646 |
}
|
10647 |
},
|
10648 |
+
"just-debounce": {
|
10649 |
+
"version": "1.0.0",
|
10650 |
+
"resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.0.0.tgz",
|
10651 |
+
"integrity": "sha1-h/zPrv/AtozRnVX2cilD+SnqNeo=",
|
10652 |
"dev": true
|
10653 |
},
|
10654 |
+
"keyv": {
|
10655 |
+
"version": "3.1.0",
|
10656 |
+
"resolved": "https://registry.npmjs.org/keyv/-/keyv-3.1.0.tgz",
|
10657 |
+
"integrity": "sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==",
|
10658 |
+
"dev": true,
|
10659 |
"requires": {
|
10660 |
+
"json-buffer": "3.0.0"
|
10661 |
}
|
10662 |
},
|
10663 |
+
"kind-of": {
|
10664 |
+
"version": "6.0.2",
|
10665 |
+
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
|
10666 |
+
"integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
|
10667 |
"dev": true
|
10668 |
},
|
10669 |
+
"kleur": {
|
10670 |
+
"version": "3.0.3",
|
10671 |
+
"resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
|
10672 |
+
"integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
|
10673 |
+
"dev": true
|
10674 |
},
|
10675 |
+
"known-css-properties": {
|
10676 |
+
"version": "0.11.0",
|
10677 |
+
"resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.11.0.tgz",
|
10678 |
+
"integrity": "sha512-bEZlJzXo5V/ApNNa5z375mJC6Nrz4vG43UgcSCrg2OHC+yuB6j0iDSrY7RQ/+PRofFB03wNIIt9iXIVLr4wc7w==",
|
10679 |
+
"dev": true
|
10680 |
+
},
|
10681 |
+
"last-run": {
|
10682 |
+
"version": "1.1.1",
|
10683 |
+
"resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz",
|
10684 |
+
"integrity": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=",
|
10685 |
"dev": true,
|
10686 |
"requires": {
|
10687 |
+
"default-resolution": "^2.0.0",
|
10688 |
+
"es6-weak-map": "^2.0.1"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10689 |
}
|
10690 |
},
|
10691 |
+
"latest-version": {
|
10692 |
+
"version": "5.1.0",
|
10693 |
+
"resolved": "https://registry.npmjs.org/latest-version/-/latest-version-5.1.0.tgz",
|
10694 |
+
"integrity": "sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==",
|
10695 |
"dev": true,
|
10696 |
"requires": {
|
10697 |
+
"package-json": "^6.3.0"
|
|
|
|
|
10698 |
}
|
10699 |
},
|
10700 |
+
"lazy-cache": {
|
10701 |
+
"version": "1.0.4",
|
10702 |
+
"resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz",
|
10703 |
+
"integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=",
|
10704 |
+
"dev": true
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10705 |
},
|
10706 |
+
"lazystream": {
|
10707 |
+
"version": "1.0.0",
|
10708 |
+
"resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz",
|
10709 |
+
"integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=",
|
10710 |
"dev": true,
|
10711 |
"requires": {
|
10712 |
+
"readable-stream": "^2.0.5"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10713 |
},
|
10714 |
"dependencies": {
|
10715 |
"isarray": {
|
10718 |
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
|
10719 |
"dev": true
|
10720 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
10721 |
"readable-stream": {
|
10722 |
"version": "2.3.6",
|
10723 |
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
|
10731 |
"safe-buffer": "~5.1.1",
|
10732 |
"string_decoder": "~1.1.1",
|
10733 |
"util-deprecate": "~1.0.1"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10734 |
}
|
10735 |
},
|
10736 |
"string_decoder": {
|
10737 |
+
"version": "1.1.1",
|
10738 |
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
10739 |
+
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
10740 |
"dev": true,
|
10741 |
"requires": {
|
10742 |
+
"safe-buffer": "~5.1.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10743 |
}
|
10744 |
}
|
10745 |
}
|
10746 |
},
|
10747 |
+
"lcid": {
|
10748 |
+
"version": "1.0.0",
|
10749 |
+
"resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz",
|
10750 |
+
"integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=",
|
|
|
10751 |
"requires": {
|
10752 |
+
"invert-kv": "^1.0.0"
|
|
|
|
|
|
|
|
|
10753 |
}
|
10754 |
},
|
10755 |
+
"lead": {
|
10756 |
+
"version": "1.0.0",
|
10757 |
+
"resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz",
|
10758 |
+
"integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=",
|
10759 |
"dev": true,
|
10760 |
"requires": {
|
10761 |
+
"flush-write-stream": "^1.0.2"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10762 |
}
|
10763 |
},
|
10764 |
+
"left-pad": {
|
10765 |
+
"version": "1.3.0",
|
10766 |
+
"resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz",
|
10767 |
+
"integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==",
|
10768 |
+
"dev": true
|
10769 |
+
},
|
10770 |
+
"leven": {
|
10771 |
+
"version": "3.1.0",
|
10772 |
+
"resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
|
10773 |
+
"integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
|
10774 |
+
"dev": true
|
10775 |
+
},
|
10776 |
+
"levn": {
|
10777 |
+
"version": "0.3.0",
|
10778 |
+
"resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz",
|
10779 |
+
"integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=",
|
10780 |
+
"dev": true,
|
10781 |
"requires": {
|
10782 |
+
"prelude-ls": "~1.1.2",
|
10783 |
+
"type-check": "~0.3.2"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10784 |
}
|
10785 |
},
|
10786 |
+
"libnpmconfig": {
|
10787 |
+
"version": "1.2.1",
|
10788 |
+
"resolved": "https://registry.npmjs.org/libnpmconfig/-/libnpmconfig-1.2.1.tgz",
|
10789 |
+
"integrity": "sha512-9esX8rTQAHqarx6qeZqmGQKBNZR5OIbl/Ayr0qQDy3oXja2iFVQQI81R6GZ2a02bSNZ9p3YOGX1O6HHCb1X7kA==",
|
10790 |
"dev": true,
|
10791 |
"requires": {
|
10792 |
+
"figgy-pudding": "^3.5.1",
|
10793 |
+
"find-up": "^3.0.0",
|
10794 |
+
"ini": "^1.3.5"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10795 |
}
|
10796 |
},
|
10797 |
+
"liftoff": {
|
10798 |
+
"version": "3.1.0",
|
10799 |
+
"resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz",
|
10800 |
+
"integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==",
|
10801 |
+
"dev": true,
|
10802 |
"requires": {
|
10803 |
+
"extend": "^3.0.0",
|
10804 |
+
"findup-sync": "^3.0.0",
|
10805 |
+
"fined": "^1.0.1",
|
10806 |
+
"flagged-respawn": "^1.0.0",
|
10807 |
+
"is-plain-object": "^2.0.4",
|
10808 |
+
"object.map": "^1.0.0",
|
10809 |
+
"rechoir": "^0.6.2",
|
10810 |
+
"resolve": "^1.1.7"
|
10811 |
}
|
10812 |
},
|
10813 |
+
"lines-and-columns": {
|
10814 |
+
"version": "1.1.6",
|
10815 |
+
"resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz",
|
10816 |
+
"integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=",
|
|
|
|
|
|
|
|
|
|
|
|
|
10817 |
"dev": true
|
10818 |
},
|
10819 |
+
"livereload-js": {
|
10820 |
+
"version": "2.4.0",
|
10821 |
+
"resolved": "https://registry.npmjs.org/livereload-js/-/livereload-js-2.4.0.tgz",
|
10822 |
+
"integrity": "sha512-XPQH8Z2GDP/Hwz2PCDrh2mth4yFejwA1OZ/81Ti3LgKyhDcEjsSsqFWZojHG0va/duGd+WyosY7eXLDoOyqcPw==",
|
10823 |
"dev": true
|
10824 |
},
|
10825 |
+
"load-json-file": {
|
10826 |
+
"version": "1.1.0",
|
10827 |
+
"resolved": "http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz",
|
10828 |
+
"integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10829 |
"requires": {
|
10830 |
+
"graceful-fs": "^4.1.2",
|
10831 |
+
"parse-json": "^2.2.0",
|
10832 |
+
"pify": "^2.0.0",
|
10833 |
+
"pinkie-promise": "^2.0.0",
|
10834 |
+
"strip-bom": "^2.0.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10835 |
},
|
10836 |
"dependencies": {
|
10837 |
+
"graceful-fs": {
|
10838 |
+
"version": "4.1.15",
|
10839 |
+
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz",
|
10840 |
+
"integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA=="
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10841 |
},
|
10842 |
+
"pify": {
|
10843 |
+
"version": "2.3.0",
|
10844 |
+
"resolved": "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
|
10845 |
+
"integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw="
|
|
|
|
|
|
|
|
|
10846 |
},
|
10847 |
+
"strip-bom": {
|
10848 |
+
"version": "2.0.0",
|
10849 |
+
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz",
|
10850 |
+
"integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=",
|
|
|
10851 |
"requires": {
|
10852 |
+
"is-utf8": "^0.2.0"
|
10853 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10854 |
}
|
10855 |
}
|
10856 |
},
|
10857 |
+
"loader-runner": {
|
10858 |
+
"version": "2.4.0",
|
10859 |
+
"resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz",
|
10860 |
+
"integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==",
|
10861 |
"dev": true
|
10862 |
},
|
10863 |
+
"loader-utils": {
|
10864 |
+
"version": "1.2.1",
|
10865 |
+
"resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.1.tgz",
|
10866 |
+
"integrity": "sha512-3Zhx4qDqBQ9U8udWB3RMJ29nLu5a3ObNOSzk87woPvge01pi0wABowgv7F79Z4mL0DGtHRi/oOndT34EVhInoQ==",
|
10867 |
"dev": true,
|
10868 |
"requires": {
|
10869 |
+
"big.js": "^5.2.2",
|
10870 |
+
"emojis-list": "^2.0.0",
|
10871 |
+
"json5": "^1.0.1"
|
10872 |
+
},
|
10873 |
+
"dependencies": {
|
10874 |
+
"json5": {
|
10875 |
+
"version": "1.0.1",
|
10876 |
+
"resolved": "http://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
|
10877 |
+
"integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
|
10878 |
+
"dev": true,
|
10879 |
+
"requires": {
|
10880 |
+
"minimist": "^1.2.0"
|
10881 |
+
}
|
10882 |
+
}
|
10883 |
}
|
10884 |
},
|
10885 |
+
"locate-path": {
|
10886 |
+
"version": "3.0.0",
|
10887 |
+
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
|
10888 |
+
"integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
|
10889 |
"dev": true,
|
10890 |
"requires": {
|
10891 |
+
"p-locate": "^3.0.0",
|
10892 |
+
"path-exists": "^3.0.0"
|
10893 |
}
|
10894 |
},
|
10895 |
+
"lodash": {
|
10896 |
+
"version": "4.17.15",
|
10897 |
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz",
|
10898 |
+
"integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="
|
10899 |
+
},
|
10900 |
+
"lodash._escapehtmlchar": {
|
10901 |
+
"version": "2.4.1",
|
10902 |
+
"resolved": "https://registry.npmjs.org/lodash._escapehtmlchar/-/lodash._escapehtmlchar-2.4.1.tgz",
|
10903 |
+
"integrity": "sha1-32fDu2t+jh6DGrSL+geVuSr+iZ0=",
|
10904 |
"requires": {
|
10905 |
+
"lodash._htmlescapes": "~2.4.1"
|
|
|
|
|
10906 |
}
|
10907 |
},
|
10908 |
+
"lodash._escapestringchar": {
|
10909 |
+
"version": "2.4.1",
|
10910 |
+
"resolved": "https://registry.npmjs.org/lodash._escapestringchar/-/lodash._escapestringchar-2.4.1.tgz",
|
10911 |
+
"integrity": "sha1-7P4iYYoq3lC/7qQ5N+Ud9m8O23I="
|
10912 |
+
},
|
10913 |
+
"lodash._htmlescapes": {
|
10914 |
+
"version": "2.4.1",
|
10915 |
+
"resolved": "https://registry.npmjs.org/lodash._htmlescapes/-/lodash._htmlescapes-2.4.1.tgz",
|
10916 |
+
"integrity": "sha1-MtFL8IRLbeb4tioFG09nwii2JMs="
|
10917 |
+
},
|
10918 |
+
"lodash._isnative": {
|
10919 |
+
"version": "2.4.1",
|
10920 |
+
"resolved": "https://registry.npmjs.org/lodash._isnative/-/lodash._isnative-2.4.1.tgz",
|
10921 |
+
"integrity": "sha1-PqZAS3hKe+g2x7V1gOHN95sUgyw="
|
10922 |
+
},
|
10923 |
+
"lodash._objecttypes": {
|
10924 |
+
"version": "2.4.1",
|
10925 |
+
"resolved": "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz",
|
10926 |
+
"integrity": "sha1-fAt/admKH3ZSn4kLDNsbTf7BHBE="
|
10927 |
+
},
|
10928 |
+
"lodash._reinterpolate": {
|
10929 |
+
"version": "3.0.0",
|
10930 |
+
"resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz",
|
10931 |
+
"integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=",
|
10932 |
+
"dev": true
|
10933 |
+
},
|
10934 |
+
"lodash._reunescapedhtml": {
|
10935 |
+
"version": "2.4.1",
|
10936 |
+
"resolved": "https://registry.npmjs.org/lodash._reunescapedhtml/-/lodash._reunescapedhtml-2.4.1.tgz",
|
10937 |
+
"integrity": "sha1-dHxPxAED6zu4oJduVx96JlnpO6c=",
|
10938 |
+
"requires": {
|
10939 |
+
"lodash._htmlescapes": "~2.4.1",
|
10940 |
+
"lodash.keys": "~2.4.1"
|
10941 |
},
|
10942 |
"dependencies": {
|
10943 |
+
"lodash.keys": {
|
10944 |
+
"version": "2.4.1",
|
10945 |
+
"resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz",
|
10946 |
+
"integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=",
|
10947 |
+
"requires": {
|
10948 |
+
"lodash._isnative": "~2.4.1",
|
10949 |
+
"lodash._shimkeys": "~2.4.1",
|
10950 |
+
"lodash.isobject": "~2.4.1"
|
10951 |
+
}
|
10952 |
}
|
10953 |
}
|
10954 |
},
|
10955 |
+
"lodash._shimkeys": {
|
10956 |
+
"version": "2.4.1",
|
10957 |
+
"resolved": "https://registry.npmjs.org/lodash._shimkeys/-/lodash._shimkeys-2.4.1.tgz",
|
10958 |
+
"integrity": "sha1-bpzJZm/wgfC1psl4uD4kLmlJ0gM=",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10959 |
"requires": {
|
10960 |
+
"lodash._objecttypes": "~2.4.1"
|
|
|
|
|
|
|
10961 |
}
|
10962 |
},
|
10963 |
+
"lodash.clone": {
|
10964 |
+
"version": "4.5.0",
|
10965 |
+
"resolved": "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.5.0.tgz",
|
10966 |
+
"integrity": "sha1-GVhwRQ9aExkkeN9Lw9I9LeoZB7Y=",
|
10967 |
"dev": true
|
10968 |
},
|
10969 |
+
"lodash.defaults": {
|
10970 |
+
"version": "2.4.1",
|
10971 |
+
"resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-2.4.1.tgz",
|
10972 |
+
"integrity": "sha1-p+iIXwXmiFEUS24SqPNngCa8TFQ=",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10973 |
"requires": {
|
10974 |
+
"lodash._objecttypes": "~2.4.1",
|
10975 |
+
"lodash.keys": "~2.4.1"
|
|
|
10976 |
},
|
10977 |
"dependencies": {
|
10978 |
+
"lodash.keys": {
|
10979 |
+
"version": "2.4.1",
|
10980 |
+
"resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz",
|
10981 |
+
"integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10982 |
"requires": {
|
10983 |
+
"lodash._isnative": "~2.4.1",
|
10984 |
+
"lodash._shimkeys": "~2.4.1",
|
10985 |
+
"lodash.isobject": "~2.4.1"
|
10986 |
}
|
10987 |
}
|
10988 |
}
|
10989 |
},
|
10990 |
+
"lodash.escape": {
|
10991 |
+
"version": "4.0.1",
|
10992 |
+
"resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz",
|
10993 |
+
"integrity": "sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg=",
|
10994 |
"dev": true
|
10995 |
},
|
10996 |
+
"lodash.flattendeep": {
|
10997 |
+
"version": "4.4.0",
|
10998 |
+
"resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz",
|
10999 |
+
"integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=",
|
11000 |
+
"dev": true
|
|
|
|
|
|
|
11001 |
},
|
11002 |
+
"lodash.isequal": {
|
11003 |
+
"version": "4.5.0",
|
11004 |
+
"resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
|
11005 |
+
"integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=",
|
11006 |
+
"dev": true
|
|
|
|
|
|
|
|
|
|
|
|
|
11007 |
},
|
11008 |
+
"lodash.isobject": {
|
11009 |
+
"version": "2.4.1",
|
11010 |
+
"resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz",
|
11011 |
+
"integrity": "sha1-Wi5H/mmVPx7mMafrof5k0tBlWPU=",
|
|
|
11012 |
"requires": {
|
11013 |
+
"lodash._objecttypes": "~2.4.1"
|
|
|
|
|
|
|
11014 |
}
|
11015 |
},
|
11016 |
+
"lodash.some": {
|
11017 |
+
"version": "4.6.0",
|
11018 |
+
"resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz",
|
11019 |
+
"integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=",
|
11020 |
+
"dev": true
|
|
|
|
|
|
|
|
|
11021 |
},
|
11022 |
+
"lodash.sortby": {
|
11023 |
+
"version": "4.7.0",
|
11024 |
+
"resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz",
|
11025 |
+
"integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=",
|
11026 |
+
"dev": true
|
11027 |
+
},
|
11028 |
+
"lodash.template": {
|
11029 |
+
"version": "4.5.0",
|
11030 |
+
"resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
|
11031 |
+
"integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
|
11032 |
"dev": true,
|
11033 |
"requires": {
|
11034 |
+
"lodash._reinterpolate": "^3.0.0",
|
11035 |
+
"lodash.templatesettings": "^4.0.0"
|
11036 |
}
|
11037 |
},
|
11038 |
+
"lodash.templatesettings": {
|
11039 |
+
"version": "4.2.0",
|
11040 |
+
"resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
|
11041 |
+
"integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==",
|
11042 |
"dev": true,
|
11043 |
"requires": {
|
11044 |
+
"lodash._reinterpolate": "^3.0.0"
|
|
|
11045 |
}
|
11046 |
},
|
11047 |
+
"lodash.unescape": {
|
11048 |
+
"version": "4.0.1",
|
11049 |
+
"resolved": "https://registry.npmjs.org/lodash.unescape/-/lodash.unescape-4.0.1.tgz",
|
11050 |
+
"integrity": "sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw=",
|
11051 |
+
"dev": true
|
11052 |
+
},
|
11053 |
+
"lodash.values": {
|
11054 |
+
"version": "2.4.1",
|
11055 |
+
"resolved": "https://registry.npmjs.org/lodash.values/-/lodash.values-2.4.1.tgz",
|
11056 |
+
"integrity": "sha1-q/UUQ2s8twUAFieXjLzzCxKA7qQ=",
|
11057 |
"requires": {
|
11058 |
+
"lodash.keys": "~2.4.1"
|
11059 |
+
},
|
11060 |
+
"dependencies": {
|
11061 |
+
"lodash.keys": {
|
11062 |
+
"version": "2.4.1",
|
11063 |
+
"resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-2.4.1.tgz",
|
11064 |
+
"integrity": "sha1-SN6kbfj/djKxDXBrissmWR4rNyc=",
|
11065 |
+
"requires": {
|
11066 |
+
"lodash._isnative": "~2.4.1",
|
11067 |
+
"lodash._shimkeys": "~2.4.1",
|
11068 |
+
"lodash.isobject": "~2.4.1"
|
11069 |
+
}
|
11070 |
+
}
|
11071 |
}
|
11072 |
},
|
11073 |
+
"log-symbols": {
|
11074 |
+
"version": "3.0.0",
|
11075 |
+
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz",
|
11076 |
+
"integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==",
|
11077 |
"dev": true,
|
11078 |
"requires": {
|
11079 |
+
"chalk": "^2.4.2"
|
11080 |
},
|
11081 |
"dependencies": {
|
11082 |
+
"chalk": {
|
11083 |
+
"version": "2.4.2",
|
11084 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
11085 |
+
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
|
|
|
|
|
|
|
|
|
|
|
|
11086 |
"dev": true,
|
11087 |
"requires": {
|
11088 |
+
"ansi-styles": "^3.2.1",
|
11089 |
+
"escape-string-regexp": "^1.0.5",
|
11090 |
+
"supports-color": "^5.3.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11091 |
}
|
11092 |
}
|
11093 |
}
|
11094 |
},
|
11095 |
+
"longest-streak": {
|
11096 |
+
"version": "2.0.4",
|
11097 |
+
"resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-2.0.4.tgz",
|
11098 |
+
"integrity": "sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg==",
|
11099 |
"dev": true
|
11100 |
},
|
11101 |
+
"loose-envify": {
|
|
|
|
|
|
|
|
|
|
|
11102 |
"version": "1.4.0",
|
11103 |
+
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
11104 |
+
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
|
11105 |
"requires": {
|
11106 |
+
"js-tokens": "^3.0.0 || ^4.0.0"
|
11107 |
}
|
11108 |
},
|
11109 |
+
"loud-rejection": {
|
11110 |
+
"version": "1.6.0",
|
11111 |
+
"resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz",
|
11112 |
+
"integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=",
|
|
|
|
|
|
|
|
|
|
|
11113 |
"requires": {
|
11114 |
+
"currently-unhandled": "^0.4.1",
|
11115 |
+
"signal-exit": "^3.0.0"
|
11116 |
}
|
11117 |
},
|
11118 |
+
"lowercase-keys": {
|
11119 |
+
"version": "1.0.1",
|
11120 |
+
"resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
|
11121 |
+
"integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11122 |
"dev": true
|
11123 |
},
|
11124 |
+
"lru-cache": {
|
11125 |
+
"version": "5.1.1",
|
11126 |
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
11127 |
+
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
11128 |
"dev": true,
|
11129 |
"requires": {
|
11130 |
+
"yallist": "^3.0.2"
|
11131 |
+
},
|
11132 |
+
"dependencies": {
|
11133 |
+
"yallist": {
|
11134 |
+
"version": "3.1.1",
|
11135 |
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
11136 |
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
|
11137 |
+
"dev": true
|
11138 |
+
}
|
11139 |
}
|
11140 |
},
|
11141 |
+
"lru-queue": {
|
11142 |
+
"version": "0.1.0",
|
11143 |
+
"resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz",
|
11144 |
+
"integrity": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=",
|
11145 |
"dev": true,
|
11146 |
"requires": {
|
11147 |
+
"es5-ext": "~0.10.2"
|
11148 |
}
|
11149 |
},
|
11150 |
+
"make-dir": {
|
11151 |
+
"version": "1.3.0",
|
11152 |
+
"resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz",
|
11153 |
+
"integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==",
|
|
|
|
|
|
|
|
|
|
|
|
|
11154 |
"dev": true,
|
11155 |
"requires": {
|
11156 |
+
"pify": "^3.0.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11157 |
}
|
11158 |
},
|
11159 |
+
"make-fetch-happen": {
|
11160 |
+
"version": "5.0.2",
|
11161 |
+
"resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-5.0.2.tgz",
|
11162 |
+
"integrity": "sha512-07JHC0r1ykIoruKO8ifMXu+xEU8qOXDFETylktdug6vJDACnP+HKevOu3PXyNPzFyTSlz8vrBYlBO1JZRe8Cag==",
|
11163 |
"dev": true,
|
11164 |
"requires": {
|
11165 |
+
"agentkeepalive": "^3.4.1",
|
11166 |
+
"cacache": "^12.0.0",
|
11167 |
+
"http-cache-semantics": "^3.8.1",
|
11168 |
+
"http-proxy-agent": "^2.1.0",
|
11169 |
+
"https-proxy-agent": "^2.2.3",
|
|
|
|
|
11170 |
"lru-cache": "^5.1.1",
|
|
|
|
|
|
|
11171 |
"mississippi": "^3.0.0",
|
11172 |
+
"node-fetch-npm": "^2.0.2",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11173 |
"promise-retry": "^1.1.1",
|
11174 |
+
"socks-proxy-agent": "^4.0.0",
|
11175 |
+
"ssri": "^6.0.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11176 |
}
|
11177 |
},
|
11178 |
+
"make-iterator": {
|
11179 |
+
"version": "1.0.1",
|
11180 |
+
"resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz",
|
11181 |
+
"integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==",
|
|
|
|
|
|
|
|
|
|
|
|
|
11182 |
"dev": true,
|
11183 |
"requires": {
|
11184 |
+
"kind-of": "^6.0.2"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11185 |
}
|
11186 |
},
|
11187 |
+
"makeerror": {
|
11188 |
+
"version": "1.0.11",
|
11189 |
+
"resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz",
|
11190 |
+
"integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=",
|
11191 |
"dev": true,
|
11192 |
"requires": {
|
11193 |
+
"tmpl": "1.0.x"
|
|
|
|
|
|
|
|
|
|
|
11194 |
}
|
11195 |
},
|
11196 |
+
"mamacro": {
|
11197 |
+
"version": "0.0.3",
|
11198 |
+
"resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz",
|
11199 |
+
"integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==",
|
11200 |
+
"dev": true
|
|
|
|
|
|
|
|
|
|
|
11201 |
},
|
11202 |
+
"map-age-cleaner": {
|
11203 |
+
"version": "0.1.3",
|
11204 |
+
"resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz",
|
11205 |
+
"integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==",
|
11206 |
+
"dev": true,
|
11207 |
"requires": {
|
11208 |
+
"p-defer": "^1.0.0"
|
11209 |
}
|
11210 |
},
|
11211 |
+
"map-cache": {
|
11212 |
+
"version": "0.2.2",
|
11213 |
+
"resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz",
|
11214 |
+
"integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11215 |
"dev": true
|
11216 |
},
|
11217 |
+
"map-obj": {
|
11218 |
"version": "1.0.1",
|
11219 |
+
"resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz",
|
11220 |
+
"integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0="
|
|
|
|
|
|
|
|
|
|
|
|
|
11221 |
},
|
11222 |
+
"map-stream": {
|
11223 |
+
"version": "0.0.4",
|
11224 |
+
"resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.4.tgz",
|
11225 |
+
"integrity": "sha1-XsbekCE+9sey65Nn6a3o2k79tos="
|
|
|
11226 |
},
|
11227 |
+
"map-values": {
|
11228 |
+
"version": "1.0.1",
|
11229 |
+
"resolved": "https://registry.npmjs.org/map-values/-/map-values-1.0.1.tgz",
|
11230 |
+
"integrity": "sha1-douOecAJvytk/ugG4ip7HEGQyZA=",
|
11231 |
"dev": true
|
11232 |
},
|
11233 |
+
"map-visit": {
|
11234 |
+
"version": "1.0.0",
|
11235 |
+
"resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz",
|
11236 |
+
"integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=",
|
11237 |
"dev": true,
|
11238 |
"requires": {
|
11239 |
+
"object-visit": "^1.0.0"
|
11240 |
}
|
11241 |
},
|
11242 |
+
"markdown-escapes": {
|
11243 |
+
"version": "1.0.4",
|
11244 |
+
"resolved": "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.4.tgz",
|
11245 |
+
"integrity": "sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==",
|
11246 |
"dev": true
|
11247 |
},
|
11248 |
+
"markdown-table": {
|
11249 |
+
"version": "1.1.3",
|
11250 |
+
"resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-1.1.3.tgz",
|
11251 |
+
"integrity": "sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q==",
|
11252 |
+
"dev": true
|
11253 |
+
},
|
11254 |
+
"matchdep": {
|
11255 |
+
"version": "2.0.0",
|
11256 |
+
"resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz",
|
11257 |
+
"integrity": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=",
|
11258 |
+
"dev": true,
|
11259 |
"requires": {
|
11260 |
+
"findup-sync": "^2.0.0",
|
11261 |
+
"micromatch": "^3.0.4",
|
11262 |
+
"resolve": "^1.4.0",
|
11263 |
+
"stack-trace": "0.0.10"
|
11264 |
},
|
11265 |
"dependencies": {
|
11266 |
+
"findup-sync": {
|
11267 |
+
"version": "2.0.0",
|
11268 |
+
"resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz",
|
11269 |
+
"integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=",
|
11270 |
+
"dev": true,
|
11271 |
+
"requires": {
|
11272 |
+
"detect-file": "^1.0.0",
|
11273 |
+
"is-glob": "^3.1.0",
|
11274 |
+
"micromatch": "^3.0.4",
|
11275 |
+
"resolve-dir": "^1.0.1"
|
11276 |
+
}
|
11277 |
},
|
11278 |
+
"is-glob": {
|
11279 |
+
"version": "3.1.0",
|
11280 |
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz",
|
11281 |
+
"integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=",
|
11282 |
+
"dev": true,
|
11283 |
+
"requires": {
|
11284 |
+
"is-extglob": "^2.1.0"
|
11285 |
+
}
|
11286 |
}
|
11287 |
}
|
11288 |
},
|
11289 |
+
"matchmediaquery": {
|
11290 |
+
"version": "0.3.0",
|
11291 |
+
"resolved": "https://registry.npmjs.org/matchmediaquery/-/matchmediaquery-0.3.0.tgz",
|
11292 |
+
"integrity": "sha512-u0dlv+VENJ+3YepvwSPBieuvnA6DWfaYa/ctwysAR13y4XLJNyt7bEVKzNj/Nvjo+50d88Pj+xL9xaSo6JmX/w==",
|
|
|
11293 |
"requires": {
|
11294 |
+
"css-mediaquery": "^0.1.2"
|
|
|
|
|
|
|
|
|
11295 |
}
|
11296 |
},
|
11297 |
+
"mathml-tag-names": {
|
11298 |
+
"version": "2.1.3",
|
11299 |
+
"resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz",
|
11300 |
+
"integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11301 |
"dev": true
|
11302 |
},
|
11303 |
+
"md5.js": {
|
11304 |
+
"version": "1.3.5",
|
11305 |
+
"resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
|
11306 |
+
"integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
|
11307 |
+
"dev": true,
|
11308 |
+
"requires": {
|
11309 |
+
"hash-base": "^3.0.0",
|
11310 |
+
"inherits": "^2.0.1",
|
11311 |
+
"safe-buffer": "^5.1.2"
|
11312 |
+
}
|
11313 |
},
|
11314 |
+
"mdast-util-compact": {
|
11315 |
+
"version": "1.0.4",
|
11316 |
+
"resolved": "https://registry.npmjs.org/mdast-util-compact/-/mdast-util-compact-1.0.4.tgz",
|
11317 |
+
"integrity": "sha512-3YDMQHI5vRiS2uygEFYaqckibpJtKq5Sj2c8JioeOQBU6INpKbdWzfyLqFFnDwEcEnRFIdMsguzs5pC1Jp4Isg==",
|
11318 |
+
"dev": true,
|
11319 |
"requires": {
|
11320 |
+
"unist-util-visit": "^1.1.0"
|
11321 |
}
|
11322 |
},
|
11323 |
+
"media-typer": {
|
11324 |
+
"version": "0.3.0",
|
11325 |
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
|
11326 |
+
"integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=",
|
11327 |
+
"dev": true
|
11328 |
+
},
|
11329 |
+
"mem": {
|
11330 |
+
"version": "4.3.0",
|
11331 |
+
"resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz",
|
11332 |
+
"integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==",
|
11333 |
"dev": true,
|
11334 |
"requires": {
|
11335 |
+
"map-age-cleaner": "^0.1.1",
|
11336 |
+
"mimic-fn": "^2.0.0",
|
11337 |
+
"p-is-promise": "^2.0.0"
|
11338 |
}
|
11339 |
},
|
11340 |
+
"memize": {
|
11341 |
+
"version": "1.0.5",
|
11342 |
+
"resolved": "https://registry.npmjs.org/memize/-/memize-1.0.5.tgz",
|
11343 |
+
"integrity": "sha512-Dm8Jhb5kiC4+ynYsVR4QDXKt+o2dfqGuY4hE2x+XlXZkdndlT80bJxfcMv5QGp/FCy6MhG7f5ElpmKPFKOSEpg=="
|
11344 |
+
},
|
11345 |
+
"memoizee": {
|
11346 |
+
"version": "0.4.14",
|
11347 |
+
"resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.4.14.tgz",
|
11348 |
+
"integrity": "sha512-/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg==",
|
11349 |
"dev": true,
|
11350 |
"requires": {
|
11351 |
+
"d": "1",
|
11352 |
+
"es5-ext": "^0.10.45",
|
11353 |
+
"es6-weak-map": "^2.0.2",
|
11354 |
+
"event-emitter": "^0.3.5",
|
11355 |
+
"is-promise": "^2.1",
|
11356 |
+
"lru-queue": "0.1",
|
11357 |
+
"next-tick": "1",
|
11358 |
+
"timers-ext": "^0.1.5"
|
11359 |
}
|
11360 |
},
|
11361 |
+
"memory-fs": {
|
11362 |
+
"version": "0.4.1",
|
11363 |
+
"resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz",
|
11364 |
+
"integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=",
|
11365 |
+
"dev": true,
|
11366 |
"requires": {
|
11367 |
+
"errno": "^0.1.3",
|
11368 |
+
"readable-stream": "^2.0.1"
|
|
|
11369 |
},
|
11370 |
"dependencies": {
|
11371 |
+
"isarray": {
|
11372 |
+
"version": "1.0.0",
|
11373 |
+
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
11374 |
+
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
|
11375 |
+
"dev": true
|
11376 |
+
},
|
11377 |
+
"readable-stream": {
|
11378 |
+
"version": "2.3.6",
|
11379 |
+
"resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
|
11380 |
+
"integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
|
11381 |
+
"dev": true,
|
11382 |
"requires": {
|
11383 |
+
"core-util-is": "~1.0.0",
|
11384 |
+
"inherits": "~2.0.3",
|
11385 |
+
"isarray": "~1.0.0",
|
11386 |
+
"process-nextick-args": "~2.0.0",
|
11387 |
+
"safe-buffer": "~5.1.1",
|
11388 |
+
"string_decoder": "~1.1.1",
|
11389 |
+
"util-deprecate": "~1.0.1"
|
11390 |
+
}
|
11391 |
+
},
|
11392 |
+
"string_decoder": {
|
11393 |
+
"version": "1.1.1",
|
11394 |
+
"resolved": "http://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
11395 |
+
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
11396 |
+
"dev": true,
|
11397 |
+
"requires": {
|
11398 |
+
"safe-buffer": "~5.1.0"
|
11399 |
}
|
11400 |
}
|
11401 |
}
|
11402 |
},
|
11403 |
+
"meow": {
|
11404 |
+
"version": "3.7.0",
|
11405 |
+
"resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz",
|
11406 |
+
"integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11407 |
"requires": {
|
11408 |
+
"camelcase-keys": "^2.0.0",
|
11409 |
+
"decamelize": "^1.1.2",
|
11410 |
+
"loud-rejection": "^1.0.0",
|
11411 |
+
"map-obj": "^1.0.1",
|
11412 |
+
"minimist": "^1.1.3",
|
11413 |
+
"normalize-package-data": "^2.3.4",
|
11414 |
+
"object-assign": "^4.0.1",
|
11415 |
+
"read-pkg-up": "^1.0.1",
|
11416 |
+
"redent": "^1.0.0",
|
11417 |
+
"trim-newlines": "^1.0.0"
|
11418 |
},
|
11419 |
"dependencies": {
|
11420 |
+
"object-assign": {
|
11421 |
+
"version": "4.1.1",
|
11422 |
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
11423 |
+
"integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
|
|
|
11424 |
}
|
11425 |
}
|
11426 |
},
|
11427 |
+
"merge-deep": {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11428 |
"version": "3.0.2",
|
11429 |
+
"resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.2.tgz",
|
11430 |
+
"integrity": "sha512-T7qC8kg4Zoti1cFd8Cr0M+qaZfOwjlPDEdZIIPPB2JZctjaPM4fX+i7HOId69tAti2fvO6X5ldfYUONDODsrkA==",
|
11431 |
"dev": true,
|
11432 |
"requires": {
|
11433 |
+
"arr-union": "^3.1.0",
|
11434 |
+
"clone-deep": "^0.2.4",
|
11435 |
+
"kind-of": "^3.0.2"
|
|
|
11436 |
},
|
11437 |
"dependencies": {
|
11438 |
+
"clone-deep": {
|
11439 |
+
"version": "0.2.4",
|
11440 |
+
"resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz",
|
11441 |
+
"integrity": "sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY=",
|
11442 |
"dev": true,
|
11443 |
"requires": {
|
11444 |
+
"for-own": "^0.1.3",
|
11445 |
+
"is-plain-object": "^2.0.1",
|
11446 |
+
"kind-of": "^3.0.2",
|
11447 |
+
"lazy-cache": "^1.0.3",
|
11448 |
+
"shallow-clone": "^0.1.2"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11449 |
}
|
11450 |
},
|
11451 |
+
"for-own": {
|
11452 |
+
"version": "0.1.5",
|
11453 |
+
"resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz",
|
11454 |
+
"integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=",
|
11455 |
"dev": true,
|
11456 |
"requires": {
|
11457 |
+
"for-in": "^1.0.1"
|
|
|
|
|
11458 |
}
|
11459 |
},
|
11460 |
+
"kind-of": {
|
11461 |
+
"version": "3.2.2",
|
11462 |
+
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
|
11463 |
+
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
|
11464 |
"dev": true,
|
11465 |
"requires": {
|
11466 |
+
"is-buffer": "^1.1.5"
|
|
|
|
|
11467 |
}
|
11468 |
},
|
11469 |
+
"shallow-clone": {
|
11470 |
+
"version": "0.1.2",
|
11471 |
+
"resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz",
|
11472 |
+
"integrity": "sha1-WQnodLp3EG1zrEFM/sH/yofZcGA=",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11473 |
"dev": true,
|
11474 |
"requires": {
|
11475 |
+
"is-extendable": "^0.1.1",
|
11476 |
+
"kind-of": "^2.0.1",
|
11477 |
+
"lazy-cache": "^0.2.3",
|
11478 |
+
"mixin-object": "^2.0.1"
|
11479 |
+
},
|
11480 |
+
"dependencies": {
|
11481 |
+
"kind-of": {
|
11482 |
+
"version": "2.0.1",
|
11483 |
+
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz",
|
11484 |
+
"integrity": "sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU=",
|
11485 |
+
"dev": true,
|
11486 |
+
"requires": {
|
11487 |
+
"is-buffer": "^1.0.2"
|
11488 |
+
}
|
11489 |
+
},
|
11490 |
+
"lazy-cache": {
|
11491 |
+
"version": "0.2.7",
|
11492 |
+
"resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz",
|
11493 |
+
"integrity": "sha1-f+3fLctu23fRHvHRF6tf/fCrG2U=",
|
11494 |
+
"dev": true
|
11495 |
+
}
|
11496 |
}
|
11497 |
}
|
11498 |
}
|
11499 |
},
|
11500 |
+
"merge-descriptors": {
|
11501 |
+
"version": "1.0.1",
|
11502 |
+
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
|
11503 |
+
"integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=",
|
11504 |
+
"dev": true
|
11505 |
+
},
|
11506 |
+
"merge-stream": {
|
11507 |
+
"version": "2.0.0",
|
11508 |
+
"resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
|
11509 |
+
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
|
11510 |
+
"dev": true
|
11511 |
+
},
|
11512 |
+
"merge2": {
|
11513 |
+
"version": "1.3.0",
|
11514 |
+
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.3.0.tgz",
|
11515 |
+
"integrity": "sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw==",
|
11516 |
+
"dev": true
|
11517 |
+
},
|
11518 |
+
"methods": {
|
11519 |
+
"version": "1.1.2",
|
11520 |
+
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
11521 |
+
"integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=",
|
11522 |
+
"dev": true
|
11523 |
+
},
|
11524 |
+
"micromatch": {
|
11525 |
+
"version": "3.1.10",
|
11526 |
+
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
|
11527 |
+
"integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
|
11528 |
"dev": true,
|
11529 |
"requires": {
|
11530 |
+
"arr-diff": "^4.0.0",
|
11531 |
+
"array-unique": "^0.3.2",
|
11532 |
+
"braces": "^2.3.1",
|
11533 |
+
"define-property": "^2.0.2",
|
11534 |
+
"extend-shallow": "^3.0.2",
|
11535 |
+
"extglob": "^2.0.4",
|
11536 |
+
"fragment-cache": "^0.2.1",
|
11537 |
+
"kind-of": "^6.0.2",
|
11538 |
+
"nanomatch": "^1.2.9",
|
11539 |
+
"object.pick": "^1.3.0",
|
11540 |
+
"regex-not": "^1.0.0",
|
11541 |
+
"snapdragon": "^0.8.1",
|
11542 |
+
"to-regex": "^3.0.2"
|
|
|
|
|
11543 |
}
|
11544 |
},
|
11545 |
+
"miller-rabin": {
|
11546 |
+
"version": "4.0.1",
|
11547 |
+
"resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
|
11548 |
+
"integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
|
11549 |
"dev": true,
|
11550 |
"requires": {
|
11551 |
+
"bn.js": "^4.0.0",
|
11552 |
+
"brorand": "^1.0.1"
|
11553 |
}
|
11554 |
},
|
11555 |
+
"mime": {
|
11556 |
+
"version": "2.4.4",
|
11557 |
+
"resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz",
|
11558 |
+
"integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==",
|
|
|
|
|
|
|
|
|
|
|
|
|
11559 |
"dev": true
|
11560 |
},
|
11561 |
+
"mime-db": {
|
11562 |
+
"version": "1.42.0",
|
11563 |
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.42.0.tgz",
|
11564 |
+
"integrity": "sha512-UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ=="
|
|
|
11565 |
},
|
11566 |
+
"mime-types": {
|
11567 |
+
"version": "2.1.25",
|
11568 |
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.25.tgz",
|
11569 |
+
"integrity": "sha512-5KhStqB5xpTAeGqKBAMgwaYMnQik7teQN4IAzC7npDv6kzeU6prfkR67bc87J1kWMPGkoaZSq1npmexMgkmEVg==",
|
11570 |
+
"requires": {
|
11571 |
+
"mime-db": "1.42.0"
|
11572 |
+
}
|
11573 |
+
},
|
11574 |
+
"mimic-fn": {
|
11575 |
+
"version": "2.1.0",
|
11576 |
+
"resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
|
11577 |
+
"integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
|
11578 |
"dev": true
|
11579 |
},
|
11580 |
+
"mimic-response": {
|
11581 |
+
"version": "1.0.1",
|
11582 |
+
"resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
|
11583 |
+
"integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==",
|
11584 |
"dev": true
|
11585 |
},
|
11586 |
+
"min-indent": {
|
11587 |
+
"version": "1.0.0",
|
11588 |
+
"resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.0.tgz",
|
11589 |
+
"integrity": "sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY=",
|
11590 |
+
"dev": true
|
11591 |
},
|
11592 |
+
"minimalistic-assert": {
|
11593 |
+
"version": "1.0.1",
|
11594 |
+
"resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
|
11595 |
+
"integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
|
11596 |
"dev": true
|
11597 |
},
|
11598 |
+
"minimalistic-crypto-utils": {
|
11599 |
"version": "1.0.1",
|
11600 |
+
"resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz",
|
11601 |
+
"integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=",
|
11602 |
"dev": true
|
11603 |
},
|
11604 |
+
"minimatch": {
|
11605 |
+
"version": "3.0.4",
|
11606 |
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
|
11607 |
+
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
|
|
|
11608 |
"requires": {
|
11609 |
+
"brace-expansion": "^1.1.7"
|
|
|
11610 |
}
|
11611 |
},
|
11612 |
+
"minimist": {
|
11613 |
+
"version": "1.2.0",
|
11614 |
+
"resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
|
11615 |
+
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
|
|
|
|
|
|
|
|
|
|
|
11616 |
},
|
11617 |
+
"minimist-options": {
|
11618 |
+
"version": "4.0.2",
|
11619 |
+
"resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.0.2.tgz",
|
11620 |
+
"integrity": "sha512-seq4hpWkYSUh1y7NXxzucwAN9yVlBc3Upgdjz8vLCP97jG8kaOmzYrVH/m7tQ1NYD1wdtZbSLfdy4zFmRWuc/w==",
|
11621 |
+
"dev": true,
|
11622 |
"requires": {
|
11623 |
+
"arrify": "^1.0.1",
|
11624 |
+
"is-plain-obj": "^1.1.0"
|
11625 |
+
},
|
11626 |
+
"dependencies": {
|
11627 |
+
"is-plain-obj": {
|
11628 |
+
"version": "1.1.0",
|
11629 |
+
"resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz",
|
11630 |
+
"integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=",
|
11631 |
+
"dev": true
|
11632 |
+
}
|
11633 |
}
|
11634 |
},
|
11635 |
+
"minipass": {
|
11636 |
+
"version": "2.9.0",
|
11637 |
+
"resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz",
|
11638 |
+
"integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==",
|
11639 |
"dev": true,
|
11640 |
"requires": {
|
11641 |
+
"safe-buffer": "^5.1.2",
|
11642 |
+
"yallist": "^3.0.0"
|
11643 |
+
},
|
11644 |
+
"dependencies": {
|
11645 |
+
"yallist": {
|
11646 |
+
"version": "3.1.1",
|
11647 |
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
11648 |
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
|
11649 |
+
"dev": true
|
11650 |
+
}
|
11651 |
}
|
11652 |
},
|
11653 |
+
"minizlib": {
|
11654 |
+
"version": "1.3.3",
|
11655 |
+
"resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz",
|
11656 |
+
"integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11657 |
"dev": true,
|
11658 |
"requires": {
|
11659 |
+
"minipass": "^2.9.0"
|
|
|
|
|
|
|
|
|
|
|
11660 |
}
|
11661 |
},
|
11662 |
+
"mississippi": {
|
11663 |
"version": "3.0.0",
|
11664 |
+
"resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz",
|
11665 |
+
"integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==",
|
11666 |
"dev": true,
|
11667 |
"requires": {
|
11668 |
+
"concat-stream": "^1.5.0",
|
11669 |
+
"duplexify": "^3.4.2",
|
11670 |
"end-of-stream": "^1.1.0",
|
11671 |
+
"flush-write-stream": "^1.0.0",
|
11672 |
+
"from2": "^2.1.0",
|
11673 |
+
"parallel-transform": "^1.1.0",
|
11674 |
+
"pump": "^3.0.0",
|
11675 |
+
"pumpify": "^1.3.3",
|
11676 |
+
"stream-each": "^1.1.0",
|
11677 |
+
"through2": "^2.0.0"
|
11678 |
}
|
11679 |
},
|
11680 |
+
"mixin-deep": {
|
11681 |
+
"version": "1.3.2",
|
11682 |
+
"resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
|
11683 |
+
"integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
|
11684 |
"dev": true,
|
11685 |
"requires": {
|
11686 |
+
"for-in": "^1.0.2",
|
11687 |
+
"is-extendable": "^1.0.1"
|
|
|
11688 |
},
|
11689 |
"dependencies": {
|
11690 |
+
"is-extendable": {
|
11691 |
+
"version": "1.0.1",
|
11692 |
+
"resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
|
11693 |
+
"integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11694 |
"dev": true,
|
11695 |
"requires": {
|
11696 |
+
"is-plain-object": "^2.0.4"
|
|
|
11697 |
}
|
11698 |
}
|
11699 |
}
|
11700 |
},
|
11701 |
+
"mixin-object": {
|
11702 |
+
"version": "2.0.1",
|
11703 |
+
"resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz",
|
11704 |
+
"integrity": "sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=",
|
11705 |
+
"dev": true,
|
11706 |
+
"requires": {
|
11707 |
+
"for-in": "^0.1.3",
|
11708 |
+
"is-extendable": "^0.1.1"
|
11709 |
+
},
|
11710 |
+
"dependencies": {
|
11711 |
+
"for-in": {
|
11712 |
+
"version": "0.1.8",
|
11713 |
+
"resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz",
|
11714 |
+
"integrity": "sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=",
|
11715 |
+
"dev": true
|
11716 |
+
}
|
11717 |
+
}
|
11718 |
},
|
11719 |
+
"mkdirp": {
|
11720 |
+
"version": "0.5.1",
|
11721 |
+
"resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
|
11722 |
+
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
|
11723 |
+
"requires": {
|
11724 |
+
"minimist": "0.0.8"
|
11725 |
+
},
|
11726 |
+
"dependencies": {
|
11727 |
+
"minimist": {
|
11728 |
+
"version": "0.0.8",
|
11729 |
+
"resolved": "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
|
11730 |
+
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
|
11731 |
+
}
|
11732 |
+
}
|
11733 |
},
|
11734 |
+
"mkpath": {
|
11735 |
+
"version": "0.1.0",
|
11736 |
+
"resolved": "https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz",
|
11737 |
+
"integrity": "sha1-dVSm+Nhxg0zJe1RisSLEwSTW3pE=",
|
11738 |
"dev": true
|
11739 |
},
|
11740 |
+
"moo": {
|
11741 |
+
"version": "0.5.1",
|
11742 |
+
"resolved": "https://registry.npmjs.org/moo/-/moo-0.5.1.tgz",
|
11743 |
+
"integrity": "sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==",
|
11744 |
"dev": true
|
11745 |
},
|
11746 |
+
"move-concurrently": {
|
11747 |
+
"versi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|