Version Description
- New: Forms Block. Read More.
- Improvement: Block Templates - Added filter to disable the Block Templates. Read More
- Improvement: Post Layouts - Now all the selected categories can be displayed in each post layout.
- Improvement: Table of Contents - Now Table of Contents stores minimal data in databases and calculates the contents dynamically on page load.
- Fix: Advanced Column - Reverse column and stack issue on tablet/mobile.
- Fix: BuddyBoss Platform plugin conflicting with Content Timeline and Post Timeline.
- Fix: Block Conditions - Resolved some conflicts with the WPForms.
- Fix: Block Conditions - Deactivating all the blocks resulting to few console errors on admin page.
Download this release
Release Info
Developer | brainstormworg |
Plugin | Gutenberg Blocks – Ultimate Addons for Gutenberg |
Version | 1.22.0 |
Comparing to | |
See all releases |
Code changes from version 1.21.1 to 1.22.0
- admin/uagb-general.php +13 -0
- assets/css/blocks/columns.css +1 -1
- assets/css/blocks/extensions.css +0 -1
- assets/css/blocks/forms.css +1 -0
- assets/css/blocks/lottie.css +0 -0
- assets/css/blocks/table-of-contents.css +1 -1
- assets/js/forms.js +213 -0
- assets/js/table-of-contents.js +66 -16
- classes/class-uagb-block-helper.php +268 -36
- classes/class-uagb-block-js.php +67 -1
- classes/class-uagb-config.php +212 -11
- classes/class-uagb-helper.php +15 -1
- classes/class-uagb-init-blocks.php +10 -0
- classes/class-uagb-loader.php +3 -1
- dist/blocks.build.js +6295 -3804
admin/uagb-general.php
CHANGED
@@ -95,6 +95,19 @@ array_multisort(
|
|
95 |
'social-share-child',
|
96 |
'buttons-child',
|
97 |
'faq-child',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
'post-title',
|
99 |
'post-image',
|
100 |
'post-button',
|
95 |
'social-share-child',
|
96 |
'buttons-child',
|
97 |
'faq-child',
|
98 |
+
'forms-name',
|
99 |
+
'forms-email',
|
100 |
+
'forms-hidden',
|
101 |
+
'forms-phone',
|
102 |
+
'forms-textarea',
|
103 |
+
'forms-url',
|
104 |
+
'forms-select',
|
105 |
+
'forms-radio',
|
106 |
+
'forms-checkbox',
|
107 |
+
'forms-upload',
|
108 |
+
'forms-toggle',
|
109 |
+
'forms-date',
|
110 |
+
'forms-accept',
|
111 |
'post-title',
|
112 |
'post-image',
|
113 |
'post-button',
|
assets/css/blocks/columns.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.uagb-columns__wrap{position:relative}.uagb-columns__wrap .uagb-columns__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-columns__wrap .uagb-columns__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-columns__wrap .uagb-columns__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-columns__wrap .uagb-columns__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.uagb-columns__wrap .uagb-column__wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.uagb-columns__wrap .uagb-columns__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr;z-index:1}.uagb-columns__wrap .uagb-columns__shape-top{top:-3px}.uagb-columns__wrap .uagb-columns__shape-bottom{bottom:-3px}.uagb-columns__wrap .uagb-columns__shape[data-negative="false"].uagb-columns__shape-bottom{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape[data-negative="true"].uagb-columns__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-columns__wrap .uagb-columns__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-columns__wrap .uagb-columns__shape .uagb-columns__shape-fill{fill:#333;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-above-content{z-index:9;pointer-events:none}.uagb-columns__valign-center .uagb-column__wrap,.uagb-columns__valign-middle .uagb-column__wrap{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.uagb-columns__valign-top .uagb-column__wrap{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.uagb-columns__valign-bottom .uagb-column__wrap{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.uagb-columns__inner-wrap{display:flex;flex-wrap:nowrap}.uagb-columns__columns-1>.uagb-column__wrap{width:100%}.uagb-columns__columns-2>.uagb-column__wrap{width:50%}.uagb-columns__columns-3>.uagb-column__wrap{width:33.33%}.uagb-columns__columns-4>.uagb-column__wrap{width:25%}.uagb-columns__columns-5>.uagb-column__wrap{width:20%}.uagb-columns__columns-6>.uagb-column__wrap{width:16.66%}.uagb-columns__gap-nogap>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:0}.uagb-columns__gap-default>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:10px}.uagb-columns__gap-narrow>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:5px}.uagb-columns__gap-extended>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:15px}.uagb-columns__gap-wide>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:20px}.uagb-columns__gap-wider>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:30px}@media (max-width:
|
1 |
+
.uagb-columns__wrap{position:relative}.uagb-columns__wrap .uagb-columns__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-columns__wrap .uagb-columns__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-columns__wrap .uagb-columns__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-columns__wrap .uagb-columns__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.uagb-columns__wrap .uagb-column__wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.uagb-columns__wrap .uagb-columns__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr;z-index:1}.uagb-columns__wrap .uagb-columns__shape-top{top:-3px}.uagb-columns__wrap .uagb-columns__shape-bottom{bottom:-3px}.uagb-columns__wrap .uagb-columns__shape[data-negative="false"].uagb-columns__shape-bottom{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape[data-negative="true"].uagb-columns__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-columns__wrap .uagb-columns__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-columns__wrap .uagb-columns__shape .uagb-columns__shape-fill{fill:#333;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-above-content{z-index:9;pointer-events:none}.uagb-columns__valign-center .uagb-column__wrap,.uagb-columns__valign-middle .uagb-column__wrap{-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center}.uagb-columns__valign-top .uagb-column__wrap{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.uagb-columns__valign-bottom .uagb-column__wrap{-webkit-box-align:flex-end;-webkit-align-items:flex-end;-ms-flex-align:flex-end;align-items:flex-end}.uagb-columns__inner-wrap{display:flex;flex-wrap:nowrap}.uagb-columns__columns-1>.uagb-column__wrap{width:100%}.uagb-columns__columns-2>.uagb-column__wrap{width:50%}.uagb-columns__columns-3>.uagb-column__wrap{width:33.33%}.uagb-columns__columns-4>.uagb-column__wrap{width:25%}.uagb-columns__columns-5>.uagb-column__wrap{width:20%}.uagb-columns__columns-6>.uagb-column__wrap{width:16.66%}.uagb-columns__gap-nogap>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:0}.uagb-columns__gap-default>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:10px}.uagb-columns__gap-narrow>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:5px}.uagb-columns__gap-extended>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:15px}.uagb-columns__gap-wide>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:20px}.uagb-columns__gap-wider>.wp-block[data-type="uagb/column"] .uagb-column__inner-wrap{padding:30px}@media (min-width: 768px) and (max-width: 1024px){.uagb-columns__stack-tablet>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-tablet>.uagb-columns__inner-wrap{display:block}.uagb-columns__stack-tablet.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:row-reverse}}@media (max-width: 767px){.uagb-columns__stack-mobile>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-mobile>.uagb-columns__inner-wrap{display:block}.uagb-columns__stack-mobile.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:row-reverse}}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-columns.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll}}@media (max-width: 449px){.uagb-columns__wrap .uagb-column__wrap.uagb-column__background-image{background-attachment:scroll !important}}
|
assets/css/blocks/extensions.css
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
@media (min-width: 1025px){.entry-content .uag-hide-desktop.uagb-google-map__wrap,.entry-content .uag-hide-desktop{display:none}}@media (min-width: 768px) and (max-width: 1024px){.entry-content .uag-hide-tab.uagb-google-map__wrap,.entry-content .uag-hide-tab{display:none}}@media (max-width: 767px){.entry-content .uag-hide-mob.uagb-google-map__wrap,.entry-content .uag-hide-mob{display:none}}
|
|
assets/css/blocks/forms.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
.uagb-forms__outer-wrap .uagb-forms-main-form input:not([type=checkbox]):not([type=radio]):not([type=file]),.uagb-forms__outer-wrap .uagb-forms-main-form textarea,.uagb-forms__outer-wrap .uagb-forms-main-form select{width:100%}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-form-phone-country{width:23%;margin-right:5px}.uagb-forms__outer-wrap .uagb-forms-main-form input.uagb-forms-phone-input.uagb-forms-input{width:75% !important}.uagb-forms__outer-wrap .uagb-forms-main-form .required:after{content:" *";color:#ff0000}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-form-hidden-data{display:none}.uagb-forms__outer-wrap .uagb-forms-submit-message-hide{display:none}.uagb-forms__outer-wrap .uagb-forms-success-message{padding:20px 20px}.uagb-forms__outer-wrap .uagb-forms-failed-message{padding:20px 20px}.uagb-forms__outer-wrap span.components-spinner{float:none}.uagb-forms__outer-wrap .uag-col-2-wrap{display:grid;grid-template-columns:1fr 1fr;column-gap:15px}.uagb-forms__outer-wrap .uag-col-3-wrap{display:grid;grid-template-columns:1fr 1fr 1fr;column-gap:15px}.uagb-forms__outer-wrap .uag-col-4-wrap{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;column-gap:15px}.uagb-forms-radio-wrap input[type=radio]:checked+label:before{content:" ";line-height:1.2;box-shadow:inset 0px 0px 0px 4px #fafafa}.uagb-forms-radio-wrap input[type=radio]+label:before{box-sizing:content-box;content:'';border-radius:100%;display:inline-block;vertical-align:middle;margin-right:10px;margin-bottom:5px;text-align:center;line-height:1.2}select:after,select:before{padding:10px}.uagb-forms-radio-wrap input[type=radio],.uagb-forms-checkbox-wrap input[type=checkbox],.uagb-forms-accept-wrap input[type=checkbox]{display:none}.uagb-forms-checkbox-wrap input[type=checkbox]:checked+label:before,.uagb-forms-accept-wrap input[type=checkbox]:checked+label:before{content:"\2714";line-height:1.2}.uagb-forms-checkbox-wrap input[type=checkbox]+label:before,.uagb-forms-accept-wrap input[type=checkbox]+label:before{box-sizing:content-box;display:inline-block;vertical-align:middle;margin-right:10px;margin-bottom:5px;text-align:center;line-height:1.2;content:" "}.uagb-forms__small-btn .uagb-forms-main-submit-button{padding:5px 10px}.uagb-forms__medium-btn .uagb-forms-main-submit-button{padding:12px 24px}.uagb-forms__large-btn .uagb-forms-main-submit-button{padding:20px 30px}.uagb-forms__extralarge-btn .uagb-forms-main-submit-button{padding:30px 65px}.uagb-forms__full-btn .uagb-forms-main-submit-button{padding:10px 15px;width:100%}.uagb-forms__outer-wrap .uagb-switch{position:relative;display:inline-block;width:50px;height:25px}.uagb-forms__outer-wrap .uagb-switch input{opacity:0;width:0;height:0}.uagb-forms__outer-wrap .uagb-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;-webkit-transition:.4s;background-color:#ffffff;transition:.4s}.uagb-forms__outer-wrap .uagb-slider:before{position:absolute;content:"";height:20px;width:20px;left:4px;top:3px;bottom:3px;background-color:#000000;-webkit-transition:.4s;transition:.4s}.uagb-forms__outer-wrap .uagb-switch input:checked+.uagb-slider:before{background-color:#ffffff;-webkit-transform:translateX(22px);-ms-transform:translateX(22px);transform:translateX(22px)}.uagb-forms__outer-wrap .uagb-slider.round{border-radius:34px}.uagb-forms__outer-wrap .uagb-slider.round:before{border-radius:50%}
|
assets/css/blocks/lottie.css
DELETED
File without changes
|
assets/css/blocks/table-of-contents.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:
|
1 |
+
.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block}.wp-block-uagb-table-of-contents ul.uagb-toc__list{margin-left:2.2em;padding-left:0px;margin-bottom:0}.wp-block-uagb-table-of-contents ul.uagb-toc__list li{margin:0}.wp-block-uagb-table-of-contents.uagb-toc__align-left{text-align:left}.wp-block-uagb-table-of-contents.uagb-toc__align-center{text-align:center}.wp-block-uagb-table-of-contents.uagb-toc__align-right{text-align:right}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{margin-left:10px;display:flex;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.uagb-toc__list ul{list-style-type:circle}.uagb-toc__scroll-top.dashicons{display:none;position:fixed;bottom:50px;right:50px;padding:10px;background:#ccd0d4;cursor:pointer}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}
|
assets/js/forms.js
ADDED
@@ -0,0 +1,213 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
( function( $ ) {
|
3 |
+
|
4 |
+
UAGBForms = {
|
5 |
+
|
6 |
+
init: function( attr, id ) {
|
7 |
+
|
8 |
+
$scope = $( id );
|
9 |
+
$form = $scope.find( '.uagb-forms-main-form' );
|
10 |
+
|
11 |
+
$submitButtonWrap = $form.find( '.uagb-forms-main-submit-button-wrap' );
|
12 |
+
$submitButton = $form.find( '.uagb-forms-main-submit-button' );
|
13 |
+
|
14 |
+
$phoneinput = $form.find( '.uagb-forms-phone-input' );
|
15 |
+
$phoneinput.on( 'keypress', function( e ) {
|
16 |
+
|
17 |
+
var charCode = (e.which) ? e.which : e.keyCode
|
18 |
+
if(charCode == 45){
|
19 |
+
return true
|
20 |
+
}
|
21 |
+
if (charCode > 31 && (charCode < 48 || charCode > 57 )){
|
22 |
+
return false;
|
23 |
+
}
|
24 |
+
return true;
|
25 |
+
} );
|
26 |
+
|
27 |
+
var toggleinput = $form.find( '.uagb-forms-toggle-input' );
|
28 |
+
|
29 |
+
toggleinput.on('change', function(e) {
|
30 |
+
if(this.checked) {
|
31 |
+
$(this).val($(this).attr("data-truestate"));
|
32 |
+
}else {
|
33 |
+
$(this).val($(this).attr("data-falsestate"));
|
34 |
+
}
|
35 |
+
});
|
36 |
+
|
37 |
+
//validation for checkbox if required.
|
38 |
+
var requiredCheckboxes = $('.uagb-forms-checkbox-wrap :checkbox[required]');
|
39 |
+
requiredCheckboxes.on('change', function(e) {
|
40 |
+
var checkboxGroup = requiredCheckboxes.filter('[name="' + $(this).attr('name') + '"]');
|
41 |
+
var isChecked = checkboxGroup.is(':checked');
|
42 |
+
checkboxGroup.each(function() {
|
43 |
+
this.setCustomValidity(''); //remove all custom validity messages
|
44 |
+
});
|
45 |
+
checkboxGroup.prop('required', !isChecked);
|
46 |
+
});
|
47 |
+
requiredCheckboxes.trigger('change');
|
48 |
+
|
49 |
+
//append recaptcha js when enabled.
|
50 |
+
if(attr['reCaptchaEnable'] == true && attr['reCaptchaType'] == "v2" && attr['reCaptchaSiteKeyV2'] ){
|
51 |
+
|
52 |
+
$('head').append(' <script src="https://www.google.com/recaptcha/api.js"></script>');
|
53 |
+
|
54 |
+
}else if(attr['reCaptchaEnable'] == true && attr['reCaptchaType'] == "v3" && attr['reCaptchaSiteKeyV3'] ){
|
55 |
+
if(attr['hidereCaptchaBatch']){
|
56 |
+
if(document.getElementsByClassName("grecaptcha-badge")[0] === undefined){
|
57 |
+
return
|
58 |
+
}
|
59 |
+
var badge = document.getElementsByClassName("grecaptcha-badge")[0];
|
60 |
+
badge.style.visibility = 'hidden';
|
61 |
+
}
|
62 |
+
var api = document.createElement("script");
|
63 |
+
api.type = "text/javascript";
|
64 |
+
api.src = "https://www.google.com/recaptcha/api.js?render="+attr['reCaptchaSiteKeyV3'];
|
65 |
+
$('head').append(api);
|
66 |
+
}
|
67 |
+
|
68 |
+
|
69 |
+
//Ready Classes.
|
70 |
+
var formscope = document.getElementsByClassName('uagb-block-' + attr['block_id']);
|
71 |
+
var formWrapper = formscope[0].children;
|
72 |
+
var sibling = formWrapper[0].children;
|
73 |
+
|
74 |
+
for (let index = 0; index < sibling.length; index++) {
|
75 |
+
|
76 |
+
if( sibling[index].classList.contains("uag-col-2") && sibling[index+1].classList.contains("uag-col-2") ){
|
77 |
+
let div = document.createElement('div');
|
78 |
+
div.className = 'uag-col-2-wrap uag-col-wrap-' + index;
|
79 |
+
sibling[index+1].after(div)
|
80 |
+
let wrapper_div = formscope[0].getElementsByClassName('uag-col-wrap-' + index)
|
81 |
+
wrapper_div[0].appendChild(sibling[index])
|
82 |
+
wrapper_div[0].appendChild(sibling[index])
|
83 |
+
}
|
84 |
+
|
85 |
+
if( (sibling[index].classList.contains("uag-col-3")) && (sibling[index+1].classList.contains("uag-col-3") && (sibling[index+2].classList.contains("uag-col-3"))) ){
|
86 |
+
let div = document.createElement('div');
|
87 |
+
div.className = 'uag-col-3-wrap uag-col-wrap-' + index;
|
88 |
+
sibling[index+2].after(div)
|
89 |
+
let wrapper_div = formscope[0].getElementsByClassName('uag-col-wrap-' + index)
|
90 |
+
wrapper_div[0].appendChild(sibling[index])
|
91 |
+
wrapper_div[0].appendChild(sibling[index])
|
92 |
+
wrapper_div[0].appendChild(sibling[index])
|
93 |
+
|
94 |
+
}
|
95 |
+
|
96 |
+
if( (sibling[index].classList.contains("uag-col-4")) && (sibling[index+1].classList.contains("uag-col-4") && (sibling[index+2].classList.contains("uag-col-4")) && (sibling[index+3].classList.contains("uag-col-4"))) ){
|
97 |
+
let div = document.createElement('div');
|
98 |
+
div.className = 'uag-col-4-wrap uag-col-wrap-' + index;
|
99 |
+
sibling[index+3].after(div)
|
100 |
+
let wrapper_div = formscope[0].getElementsByClassName('uag-col-wrap-' + index)
|
101 |
+
wrapper_div[0].appendChild(sibling[index])
|
102 |
+
wrapper_div[0].appendChild(sibling[index])
|
103 |
+
wrapper_div[0].appendChild(sibling[index])
|
104 |
+
wrapper_div[0].appendChild(sibling[index])
|
105 |
+
|
106 |
+
}
|
107 |
+
}
|
108 |
+
|
109 |
+
|
110 |
+
$form.on( 'submit', function( e ) {
|
111 |
+
UAGBForms._formSubmit( e, $( this ), attr )
|
112 |
+
} );
|
113 |
+
},
|
114 |
+
|
115 |
+
_formSubmit: function ( e, $form, attr ) {
|
116 |
+
|
117 |
+
e.preventDefault();
|
118 |
+
var uagab_captcha_keys,captcha_response;
|
119 |
+
if(attr['reCaptchaEnable'] == true && attr['reCaptchaType'] == "v2" && attr['reCaptchaSiteKeyV2'] ){
|
120 |
+
|
121 |
+
captcha_response = $form[0].getElementsByClassName("uagb-forms-recaptcha")[0].value;
|
122 |
+
if (!captcha_response) {
|
123 |
+
$('.uagb-form-reacaptcha-error-'+attr['block_id']).html('<p style="color:red !important" class="error-captcha">'+attr['captchaMessage']+'</p>');
|
124 |
+
return false;
|
125 |
+
} else {
|
126 |
+
$('.uagb-form-reacaptcha-error-'+attr['block_id']).html('');
|
127 |
+
uagab_captcha_keys = { 'secret':attr['reCaptchaSecretKeyV2'],'sitekey':attr['reCaptchaSiteKeyV2'] }
|
128 |
+
}
|
129 |
+
}
|
130 |
+
|
131 |
+
if(attr['reCaptchaEnable'] == true && attr['reCaptchaType'] == "v3" && attr['reCaptchaSiteKeyV3'] ){
|
132 |
+
grecaptcha.ready(function() {
|
133 |
+
grecaptcha.execute(attr['reCaptchaSiteKeyV3'], {action: 'submit'}).then(function(token) {
|
134 |
+
document.getElementById('g-recaptcha-response').value = token;
|
135 |
+
});
|
136 |
+
});
|
137 |
+
|
138 |
+
captcha_response = $form[0].getElementsByClassName("uagb-forms-recaptcha")[0].value;
|
139 |
+
if (!captcha_response) {
|
140 |
+
$('.uagb-form-reacaptcha-error-'+attr['block_id']).html('<p style="color:red !important" class="error-captcha">'+attr['captchaMessage']+'</p>');
|
141 |
+
return false;
|
142 |
+
} else {
|
143 |
+
$('.uagb-form-reacaptcha-error-'+attr['block_id']).html('');
|
144 |
+
uagab_captcha_keys = { 'secret':attr['reCaptchaSecretKeyV3'],'sitekey':attr['reCaptchaSiteKeyV3'] }
|
145 |
+
}
|
146 |
+
}
|
147 |
+
var originalSerialized = $($form).serializeArray();
|
148 |
+
var postData = {};
|
149 |
+
for (var i = 0; i < originalSerialized.length; i++) {
|
150 |
+
let inputname = originalSerialized[i].name;
|
151 |
+
if (originalSerialized[i]['name'].endsWith('[]')) { //For checkbox element
|
152 |
+
var name = originalSerialized[i]['name'];
|
153 |
+
name = name.substring(0, name.length - 2);
|
154 |
+
if (!(name in postData)) {
|
155 |
+
postData[name] = [];
|
156 |
+
}
|
157 |
+
postData[name].push(originalSerialized[i]['value']);
|
158 |
+
} else if(originalSerialized[i]['value'].startsWith('+')){ //For phone element.
|
159 |
+
|
160 |
+
var name = originalSerialized[i]['name'];
|
161 |
+
name = name.substring(0, name.length - 2);
|
162 |
+
if (!(name in postData)) {
|
163 |
+
postData[name] = [];
|
164 |
+
}
|
165 |
+
postData[$("#"+name).html()].push(originalSerialized[i]['value']);
|
166 |
+
} else {
|
167 |
+
postData[$("#"+inputname).html()] = originalSerialized[i]['value'];
|
168 |
+
}
|
169 |
+
}
|
170 |
+
|
171 |
+
var after_submit_data = { "to": attr['afterSubmitToEmail'], "cc": attr['afterSubmitCcEmail'], "bcc": attr['afterSubmitBccEmail'], "subject": attr['afterSubmitEmailSubject']};
|
172 |
+
|
173 |
+
//add spiner to form button to show processing.
|
174 |
+
$( '<span class="components-spinner"></span>' ).appendTo( $form.find(".uagb-forms-main-submit-button-wrap") );
|
175 |
+
|
176 |
+
$.ajax({
|
177 |
+
type: 'POST',
|
178 |
+
url: uagb_forms_data.ajax_url,
|
179 |
+
data: {
|
180 |
+
action: 'uagb_process_forms',
|
181 |
+
nonce : uagb_forms_data.uagb_forms_ajax_nonce,
|
182 |
+
form_data:postData,
|
183 |
+
sendAfterSubmitEmail : attr['sendAfterSubmitEmail'],
|
184 |
+
after_submit_data:after_submit_data,
|
185 |
+
uagab_captcha_keys : uagab_captcha_keys,
|
186 |
+
captcha_response : captcha_response,
|
187 |
+
},
|
188 |
+
|
189 |
+
success: function( response ) {
|
190 |
+
|
191 |
+
if( 200 === response.data ) {
|
192 |
+
if ( 'message' === attr['confirmationType'] ) {
|
193 |
+
$('[name="uagb-form-'+attr['block_id']+'"]').hide();
|
194 |
+
$('.uagb-forms-success-message-'+attr['block_id']).removeClass('uagb-forms-submit-message-hide').addClass('uagb-forms-success-message')
|
195 |
+
}
|
196 |
+
|
197 |
+
if ( 'url' === attr['confirmationType'] ) {
|
198 |
+
window.location.replace(attr.confirmationUrl);
|
199 |
+
}
|
200 |
+
|
201 |
+
}else if( 400 === response.data ){
|
202 |
+
if ( 'message' === attr['confirmationType'] ) {
|
203 |
+
$('[name="uagb-form-'+attr['block_id']+'"]').hide();
|
204 |
+
$('.uagb-forms-failed-message-'+attr['block_id']).removeClass('uagb-forms-submit-message-hide').addClass('uagb-forms-failed-message')
|
205 |
+
}
|
206 |
+
}
|
207 |
+
|
208 |
+
}
|
209 |
+
});
|
210 |
+
|
211 |
+
},
|
212 |
+
}
|
213 |
+
} )( jQuery );
|
assets/js/table-of-contents.js
CHANGED
@@ -28,7 +28,6 @@
|
|
28 |
return decodeURI( encodeURIComponent( parsedSlug ) );
|
29 |
};
|
30 |
|
31 |
-
|
32 |
UAGBTableOfContents = {
|
33 |
|
34 |
init: function() {
|
@@ -117,34 +116,86 @@
|
|
117 |
if ( $this_scope.find( '.uag-toc__collapsible-wrap' ).length > 0 ) {
|
118 |
$this_scope.find( '.uagb-toc__title-wrap' ).addClass( 'uagb-toc__is-collapsible' );
|
119 |
}
|
120 |
-
|
121 |
-
var $headers = JSON.parse(attr.headerLinks);
|
122 |
|
123 |
var allowed_h_tags = [];
|
124 |
-
|
125 |
if ( undefined !== attr.mappingHeaders ) {
|
126 |
|
127 |
attr.mappingHeaders.forEach(function(h_tag, index) { (h_tag === true ? allowed_h_tags.push('h' + (index+1)) : null);});
|
128 |
var allowed_h_tags_str = ( null !== allowed_h_tags ) ? allowed_h_tags.join( ',' ) : '';
|
|
|
|
|
129 |
}
|
130 |
|
131 |
var all_header = ( undefined !== allowed_h_tags_str && '' !== allowed_h_tags_str ) ? $( 'body' ).find( allowed_h_tags_str ) : $( 'body' ).find('h1, h2, h3, h4, h5, h6' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
|
133 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
-
|
138 |
-
|
139 |
|
140 |
-
|
141 |
-
let header_text = parseTocSlug(header.text());
|
142 |
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
|
|
|
|
|
|
|
|
|
|
148 |
}
|
149 |
|
150 |
scroll_to_top = attr.scrollToTop
|
@@ -169,5 +220,4 @@
|
|
169 |
UAGBTableOfContents.init()
|
170 |
})
|
171 |
|
172 |
-
|
173 |
} )( jQuery )
|
28 |
return decodeURI( encodeURIComponent( parsedSlug ) );
|
29 |
};
|
30 |
|
|
|
31 |
UAGBTableOfContents = {
|
32 |
|
33 |
init: function() {
|
116 |
if ( $this_scope.find( '.uag-toc__collapsible-wrap' ).length > 0 ) {
|
117 |
$this_scope.find( '.uagb-toc__title-wrap' ).addClass( 'uagb-toc__is-collapsible' );
|
118 |
}
|
|
|
|
|
119 |
|
120 |
var allowed_h_tags = [];
|
121 |
+
let headerMappingHeaders = [];
|
122 |
if ( undefined !== attr.mappingHeaders ) {
|
123 |
|
124 |
attr.mappingHeaders.forEach(function(h_tag, index) { (h_tag === true ? allowed_h_tags.push('h' + (index+1)) : null);});
|
125 |
var allowed_h_tags_str = ( null !== allowed_h_tags ) ? allowed_h_tags.join( ',' ) : '';
|
126 |
+
|
127 |
+
headerMappingHeaders = attr.mappingHeaders.filter(header => header).length;
|
128 |
}
|
129 |
|
130 |
var all_header = ( undefined !== allowed_h_tags_str && '' !== allowed_h_tags_str ) ? $( 'body' ).find( allowed_h_tags_str ) : $( 'body' ).find('h1, h2, h3, h4, h5, h6' );
|
131 |
+
var headerTable = '';
|
132 |
+
var level = 0;
|
133 |
+
|
134 |
+
if ( 0 !== all_header.length ) {
|
135 |
+
|
136 |
+
all_header.each( function (){
|
137 |
+
let header = $( this );
|
138 |
+
let header_text = parseTocSlug(header.text());
|
139 |
+
$( this ).before('<span id="'+ header_text +'" class="uag-toc__heading-anchor"></span>');
|
140 |
+
});
|
141 |
+
}
|
142 |
+
let blockId = attr.block_id;
|
143 |
+
var headerArray = $( 'div.entry-content' ).find( all_header )
|
144 |
+
if ( 0 !== headerArray.length && ( headerMappingHeaders > 0 && undefined !== attr.mappingHeaders ) ) {
|
145 |
+
headerArray.each( function (index,value){
|
146 |
+
let header = $( this );
|
147 |
+
let excludeHeading ;
|
148 |
+
|
149 |
+
if ( value.className.includes('uagb-toc-hide-heading') ) {
|
150 |
+
excludeHeading = true;
|
151 |
+
} else if ( 0 < header.parents('.uagb-toc-hide-heading').length ) {
|
152 |
+
excludeHeading = true;
|
153 |
+
} else {
|
154 |
+
excludeHeading = false;
|
155 |
+
}
|
156 |
+
|
157 |
+
let headerText = parseTocSlug(header.text());
|
158 |
|
159 |
+
if ( !excludeHeading ) {
|
160 |
+
|
161 |
+
let openLevel = header[0].localName.replace(/^h+/, '');
|
162 |
+
let titleText = header.text();
|
163 |
+
|
164 |
+
if (openLevel > level) {
|
165 |
+
let arrayOpenLevel = new Array(openLevel - level + 1)
|
166 |
+
if( 2 == (arrayOpenLevel).length ){
|
167 |
+
headerTable += (arrayOpenLevel).join("<ul class='uagb-toc__list'>");
|
168 |
+
} else{
|
169 |
+
headerTable += "<ul class='uagb-toc__list'>"
|
170 |
+
}
|
171 |
|
172 |
+
} else if (openLevel < level) {
|
173 |
+
let arrayLevel = new Array(level - openLevel + 1)
|
174 |
+
if( 0 !== (arrayLevel).length ){
|
175 |
+
headerTable += (arrayLevel).join("</ul>");
|
176 |
+
} else{
|
177 |
+
headerTable += "</ul>"
|
178 |
+
}
|
179 |
+
|
180 |
+
}
|
181 |
+
level = parseInt(openLevel);
|
182 |
+
headerTable += "<li><a href='#" + headerText + "'>" + titleText + "</a></li>";
|
183 |
|
184 |
+
}
|
185 |
+
});
|
186 |
|
187 |
+
$(".uagb_table-of-contents-placeholder").remove();
|
|
|
188 |
|
189 |
+
$(`.uagb-block-${blockId} .uagb-toc__list-wrap`).prepend(headerTable);
|
190 |
+
|
191 |
+
} else{
|
192 |
+
|
193 |
+
headerTable += attr.emptyHeadingTeaxt;
|
194 |
+
|
195 |
+
$(`.uagb-block-${blockId} .uagb-toc__list-wrap`).remove();
|
196 |
+
|
197 |
+
$(".uagb_table-of-contents-placeholder").prepend(headerTable);
|
198 |
+
|
199 |
}
|
200 |
|
201 |
scroll_to_top = attr.scrollToTop
|
220 |
UAGBTableOfContents.init()
|
221 |
})
|
222 |
|
|
|
223 |
} )( jQuery )
|
classes/class-uagb-block-helper.php
CHANGED
@@ -2494,10 +2494,10 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
2494 |
'color' => $attr['dateColor'],
|
2495 |
'font-size' => UAGB_Helper::get_css_value( $attr['dateFontsize'], $attr['dateFontsizeType'] ),
|
2496 |
),
|
2497 |
-
' .uagb-timeline__right-block .uagb-timeline__date-hide.uagb-timeline__date-inner'
|
2498 |
'font-size' => UAGB_Helper::get_css_value( $attr['dateFontsize'], $attr['dateFontsizeType'] ),
|
2499 |
),
|
2500 |
-
' .uagb-timeline__left-block .uagb-timeline__date-hide.uagb-timeline__date-inner'
|
2501 |
'font-size' => UAGB_Helper::get_css_value( $attr['dateFontsize'], $attr['dateFontsizeType'] ),
|
2502 |
),
|
2503 |
' .uagb-timeline__events-inner-new' => array(
|
@@ -3194,7 +3194,7 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
3194 |
' .uagb-tabs__panel .uagb-tab.uagb-tabs__active span' => array(
|
3195 |
'color' => $attr['activeTabTextColor'],
|
3196 |
),
|
3197 |
-
|
3198 |
'fill' => $attr['activeiconColor'],
|
3199 |
),
|
3200 |
|
@@ -3235,57 +3235,57 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
3235 |
);
|
3236 |
$m_selectors = array();
|
3237 |
$t_selectors = array();
|
3238 |
-
|
3239 |
-
//Desktop
|
3240 |
-
if ( 'hstyle5' === $attr['tabsStyleD'] ){
|
3241 |
$selectors['.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop'] = array(
|
3242 |
-
|
3243 |
-
|
3244 |
-
|
3245 |
);
|
3246 |
}
|
3247 |
-
if(
|
3248 |
$selectors['.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop'] = array(
|
3249 |
-
'background'
|
3250 |
'border-color' => $attr['borderColor'],
|
3251 |
-
'border-width'
|
3252 |
);
|
3253 |
}
|
3254 |
-
//Mobile
|
3255 |
-
if( 'hstyle5' === $attr['tabsStyleM'] ){
|
3256 |
$m_selectors['.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile '] = array(
|
3257 |
-
|
3258 |
-
|
3259 |
-
'border-width'
|
3260 |
);
|
3261 |
}
|
3262 |
-
if('vstyle10' === $attr['tabsStyleM'] ){
|
3263 |
-
$m_selectors['.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile '
|
3264 |
'background' => $attr['bodyBgColor'],
|
3265 |
'border-color' => $attr['borderColor'],
|
3266 |
-
'border-width'
|
3267 |
);
|
3268 |
}
|
3269 |
-
if( 'stack4' === $attr['tabsStyleM']){
|
3270 |
$m_selectors['.uagb-tabs__wrap.uagb-tabs__stack4-mobile'] = array(
|
3271 |
'background' => $attr['bodyBgColor'],
|
3272 |
'border-color' => $attr['borderColor'],
|
3273 |
-
'border-width'
|
3274 |
);
|
3275 |
}
|
3276 |
-
//Tablet.
|
3277 |
-
if( 'hstyle5' === $attr['tabsStyleT'] ){
|
3278 |
$t_selectors['.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet '] = array(
|
3279 |
-
'background'
|
3280 |
'border-color' => $attr['borderColor'],
|
3281 |
-
'border-width'
|
3282 |
);
|
3283 |
}
|
3284 |
-
if( 'vstyle10' === $attr['tabsStyleT']){
|
3285 |
$t_selectors['.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet'] = array(
|
3286 |
-
'background'
|
3287 |
'border-color' => $attr['borderColor'],
|
3288 |
-
'border-width'
|
3289 |
);
|
3290 |
}
|
3291 |
$combined_selectors = array(
|
@@ -4585,20 +4585,20 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
4585 |
$alignment = ( 'left' === $attr['headingAlignment'] ) ? 'flex-start' : ( ( 'right' === $attr['headingAlignment'] ) ? 'flex-end' : 'center' );
|
4586 |
|
4587 |
$selectors = array(
|
4588 |
-
' .uagb-toc__list-wrap
|
4589 |
'color' => $attr['linkHoverColor'],
|
4590 |
),
|
4591 |
-
' .uagb-toc__list-wrap
|
4592 |
'color' => $attr['linkColor'],
|
4593 |
),
|
4594 |
-
' .uagb-toc__title-wrap'
|
4595 |
'justify-content' => $alignment,
|
4596 |
'margin-bottom' => UAGB_Helper::get_css_value( $attr['headingBottom'], 'px' ),
|
4597 |
),
|
4598 |
-
' .uagb-toc__title'
|
4599 |
'color' => $attr['headingColor'],
|
4600 |
),
|
4601 |
-
' .uagb-toc__wrap'
|
4602 |
'border-style' => $attr['borderStyle'],
|
4603 |
'border-width' => UAGB_Helper::get_css_value( $attr['borderWidth'], 'px' ),
|
4604 |
'border-color' => $attr['borderColor'],
|
@@ -4609,7 +4609,7 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
4609 |
'padding-bottom' => UAGB_Helper::get_css_value( $attr['vPaddingDesktop'], $attr['paddingTypeDesktop'] ),
|
4610 |
'background' => $attr['backgroundColor'],
|
4611 |
),
|
4612 |
-
' .uagb-toc__list-wrap'
|
4613 |
'column-count' => $attr['tColumnsDesktop'],
|
4614 |
'overflow' => 'hidden',
|
4615 |
),
|
@@ -4619,6 +4619,9 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
4619 |
' .uagb-toc__list-wrap > ul.uagb-toc__list li' => array(
|
4620 |
'color' => $attr['bulletColor'],
|
4621 |
),
|
|
|
|
|
|
|
4622 |
' .uagb-toc__list-wrap ul.uagb-toc__list:first-child' => array(
|
4623 |
'margin-left' => UAGB_Helper::get_css_value( $attr['hMarginDesktop'], $attr['marginTypeDesktop'] ),
|
4624 |
'margin-right' => UAGB_Helper::get_css_value( $attr['hMarginDesktop'], $attr['marginTypeDesktop'] ),
|
@@ -4628,7 +4631,7 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
4628 |
' .uagb-toc__list-wrap ul.uagb-toc__list:last-child > li:last-child' => array(
|
4629 |
'padding-bottom' => 0,
|
4630 |
),
|
4631 |
-
' .uag-toc__collapsible-wrap svg'
|
4632 |
'width' => UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ),
|
4633 |
'height' => UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ),
|
4634 |
'fill' => $attr['iconColor'],
|
@@ -5219,6 +5222,225 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
5219 |
return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
|
5220 |
}
|
5221 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5222 |
/**
|
5223 |
* Get Lottie CSS.
|
5224 |
*
|
@@ -5271,5 +5493,15 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
5271 |
|
5272 |
return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
|
5273 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5274 |
}
|
5275 |
}
|
2494 |
'color' => $attr['dateColor'],
|
2495 |
'font-size' => UAGB_Helper::get_css_value( $attr['dateFontsize'], $attr['dateFontsizeType'] ),
|
2496 |
),
|
2497 |
+
' .uagb-timeline__right-block .uagb-timeline__date-hide.uagb-timeline__date-inner' => array(
|
2498 |
'font-size' => UAGB_Helper::get_css_value( $attr['dateFontsize'], $attr['dateFontsizeType'] ),
|
2499 |
),
|
2500 |
+
' .uagb-timeline__left-block .uagb-timeline__date-hide.uagb-timeline__date-inner' => array(
|
2501 |
'font-size' => UAGB_Helper::get_css_value( $attr['dateFontsize'], $attr['dateFontsizeType'] ),
|
2502 |
),
|
2503 |
' .uagb-timeline__events-inner-new' => array(
|
3194 |
' .uagb-tabs__panel .uagb-tab.uagb-tabs__active span' => array(
|
3195 |
'color' => $attr['activeTabTextColor'],
|
3196 |
),
|
3197 |
+
' .uagb-tabs__panel .uagb-tab.uagb-tabs__active .uagb-tabs__icon svg' => array(
|
3198 |
'fill' => $attr['activeiconColor'],
|
3199 |
),
|
3200 |
|
3235 |
);
|
3236 |
$m_selectors = array();
|
3237 |
$t_selectors = array();
|
3238 |
+
|
3239 |
+
// Desktop.
|
3240 |
+
if ( 'hstyle5' === $attr['tabsStyleD'] ) {
|
3241 |
$selectors['.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop'] = array(
|
3242 |
+
'background' => $attr['bodyBgColor'],
|
3243 |
+
'border-color' => $attr['borderColor'],
|
3244 |
+
'border-width' => UAGB_Helper::get_css_value( $attr['borderWidth'], 'px' ),
|
3245 |
);
|
3246 |
}
|
3247 |
+
if ( 'vstyle10' === $attr['tabsStyleD'] ) {
|
3248 |
$selectors['.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop'] = array(
|
3249 |
+
'background' => $attr['bodyBgColor'],
|
3250 |
'border-color' => $attr['borderColor'],
|
3251 |
+
'border-width' => UAGB_Helper::get_css_value( $attr['borderWidth'], 'px' ),
|
3252 |
);
|
3253 |
}
|
3254 |
+
// Mobile.
|
3255 |
+
if ( 'hstyle5' === $attr['tabsStyleM'] ) {
|
3256 |
$m_selectors['.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile '] = array(
|
3257 |
+
'background' => $attr['bodyBgColor'],
|
3258 |
+
'border-color' => $attr['borderColor'],
|
3259 |
+
'border-width' => UAGB_Helper::get_css_value( $attr['borderWidth'], 'px' ),
|
3260 |
);
|
3261 |
}
|
3262 |
+
if ( 'vstyle10' === $attr['tabsStyleM'] ) {
|
3263 |
+
$m_selectors['.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile '] = array(
|
3264 |
'background' => $attr['bodyBgColor'],
|
3265 |
'border-color' => $attr['borderColor'],
|
3266 |
+
'border-width' => UAGB_Helper::get_css_value( $attr['borderWidth'], 'px' ),
|
3267 |
);
|
3268 |
}
|
3269 |
+
if ( 'stack4' === $attr['tabsStyleM'] ) {
|
3270 |
$m_selectors['.uagb-tabs__wrap.uagb-tabs__stack4-mobile'] = array(
|
3271 |
'background' => $attr['bodyBgColor'],
|
3272 |
'border-color' => $attr['borderColor'],
|
3273 |
+
'border-width' => UAGB_Helper::get_css_value( $attr['borderWidth'], 'px' ),
|
3274 |
);
|
3275 |
}
|
3276 |
+
// Tablet.
|
3277 |
+
if ( 'hstyle5' === $attr['tabsStyleT'] ) {
|
3278 |
$t_selectors['.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet '] = array(
|
3279 |
+
'background' => $attr['bodyBgColor'],
|
3280 |
'border-color' => $attr['borderColor'],
|
3281 |
+
'border-width' => UAGB_Helper::get_css_value( $attr['borderWidth'], 'px' ),
|
3282 |
);
|
3283 |
}
|
3284 |
+
if ( 'vstyle10' === $attr['tabsStyleT'] ) {
|
3285 |
$t_selectors['.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet'] = array(
|
3286 |
+
'background' => $attr['bodyBgColor'],
|
3287 |
'border-color' => $attr['borderColor'],
|
3288 |
+
'border-width' => UAGB_Helper::get_css_value( $attr['borderWidth'], 'px' ),
|
3289 |
);
|
3290 |
}
|
3291 |
$combined_selectors = array(
|
4585 |
$alignment = ( 'left' === $attr['headingAlignment'] ) ? 'flex-start' : ( ( 'right' === $attr['headingAlignment'] ) ? 'flex-end' : 'center' );
|
4586 |
|
4587 |
$selectors = array(
|
4588 |
+
' .uagb-toc__list-wrap li a:hover' => array(
|
4589 |
'color' => $attr['linkHoverColor'],
|
4590 |
),
|
4591 |
+
' .uagb-toc__list-wrap li a' => array(
|
4592 |
'color' => $attr['linkColor'],
|
4593 |
),
|
4594 |
+
' .uagb-toc__title-wrap' => array(
|
4595 |
'justify-content' => $alignment,
|
4596 |
'margin-bottom' => UAGB_Helper::get_css_value( $attr['headingBottom'], 'px' ),
|
4597 |
),
|
4598 |
+
' .uagb-toc__title' => array(
|
4599 |
'color' => $attr['headingColor'],
|
4600 |
),
|
4601 |
+
' .uagb-toc__wrap' => array(
|
4602 |
'border-style' => $attr['borderStyle'],
|
4603 |
'border-width' => UAGB_Helper::get_css_value( $attr['borderWidth'], 'px' ),
|
4604 |
'border-color' => $attr['borderColor'],
|
4609 |
'padding-bottom' => UAGB_Helper::get_css_value( $attr['vPaddingDesktop'], $attr['paddingTypeDesktop'] ),
|
4610 |
'background' => $attr['backgroundColor'],
|
4611 |
),
|
4612 |
+
' .uagb-toc__list-wrap' => array(
|
4613 |
'column-count' => $attr['tColumnsDesktop'],
|
4614 |
'overflow' => 'hidden',
|
4615 |
),
|
4619 |
' .uagb-toc__list-wrap > ul.uagb-toc__list li' => array(
|
4620 |
'color' => $attr['bulletColor'],
|
4621 |
),
|
4622 |
+
' .uagb-toc__list-wrap > li' => array(
|
4623 |
+
'color' => $attr['bulletColor'],
|
4624 |
+
),
|
4625 |
' .uagb-toc__list-wrap ul.uagb-toc__list:first-child' => array(
|
4626 |
'margin-left' => UAGB_Helper::get_css_value( $attr['hMarginDesktop'], $attr['marginTypeDesktop'] ),
|
4627 |
'margin-right' => UAGB_Helper::get_css_value( $attr['hMarginDesktop'], $attr['marginTypeDesktop'] ),
|
4631 |
' .uagb-toc__list-wrap ul.uagb-toc__list:last-child > li:last-child' => array(
|
4632 |
'padding-bottom' => 0,
|
4633 |
),
|
4634 |
+
' .uag-toc__collapsible-wrap svg' => array(
|
4635 |
'width' => UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ),
|
4636 |
'height' => UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ),
|
4637 |
'fill' => $attr['iconColor'],
|
5222 |
return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
|
5223 |
}
|
5224 |
|
5225 |
+
/**
|
5226 |
+
* Get Forms Block Parent CSS
|
5227 |
+
*
|
5228 |
+
* @since 1.22.0
|
5229 |
+
* @param array $attr The block attributes.
|
5230 |
+
* @param string $id The selector ID.
|
5231 |
+
* @return array The Widget List.
|
5232 |
+
*/
|
5233 |
+
public static function get_forms_css( $attr, $id ) {
|
5234 |
+
|
5235 |
+
$defaults = UAGB_Helper::$block_list['uagb/forms']['attributes'];
|
5236 |
+
|
5237 |
+
$attr = array_merge( $defaults, (array) $attr );
|
5238 |
+
$selectors = array();
|
5239 |
+
$m_selectors = array();
|
5240 |
+
$t_selectors = array();
|
5241 |
+
$selectors = array(
|
5242 |
+
' form.uagb-forms-main-form, form.uagb-forms-main-form .uagb-forms-input, form.uagb-forms-main-form textarea' => array(
|
5243 |
+
'text-align' => $attr['overallAlignment'],
|
5244 |
+
),
|
5245 |
+
' .uagb-forms-main-form .uagb-forms-field-set' => array(
|
5246 |
+
'margin-bottom' => UAGB_Helper::get_css_value( $attr['fieldGap'], 'px' ),
|
5247 |
+
),
|
5248 |
+
' .uagb-forms-main-form .uagb-forms-input-label' => array(
|
5249 |
+
'color' => $attr['labelColor'],
|
5250 |
+
'font-size' => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
|
5251 |
+
),
|
5252 |
+
' .uagb-forms-success-message' => array(
|
5253 |
+
'border' => UAGB_Helper::get_css_value( $attr['successMessageBorderWidth'], 'px' ) . ' ' . $attr['successMessageBorderStyle'] . ' ' . $attr['successMessageBorderColor'],
|
5254 |
+
'background-color' => $attr['successMessageBGColor'],
|
5255 |
+
'color' => $attr['successMessageTextColor'],
|
5256 |
+
),
|
5257 |
+
' .uagb-forms-failed-message' => array(
|
5258 |
+
'border' => UAGB_Helper::get_css_value( $attr['failedMessageBorderWidth'], 'px' ) . ' ' . $attr['failedMessageBorderStyle'] . ' ' . $attr['failedMessageBorderColor'],
|
5259 |
+
'background-color' => $attr['failedMessageBGColor'],
|
5260 |
+
'color' => $attr['failedMessageTextColor'],
|
5261 |
+
),
|
5262 |
+
' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap' => array(
|
5263 |
+
'text-align' => $attr['buttonAlign'],
|
5264 |
+
|
5265 |
+
),
|
5266 |
+
' .uagb-forms-main-form .uagb-forms-input:focus' => array(
|
5267 |
+
'outline' => ' none !important',
|
5268 |
+
'border-color' => $attr['inputactiveColor'],
|
5269 |
+
),
|
5270 |
+
' .uagb-forms-main-form .uagb-forms-main-submit-button' => array(
|
5271 |
+
'font-size' => UAGB_Helper::get_css_value( $attr['submitTextFontSize'], $attr['submitTextFontSizeType'] ),
|
5272 |
+
'color' => $attr['submitColor'],
|
5273 |
+
'background-color' => $attr['submitBgColor'],
|
5274 |
+
'border' => UAGB_Helper::get_css_value( $attr['submitborderWidth'], 'px' ) . ' ' . $attr['submitborderStyle'] . ' ' . $attr['submitborderColor'],
|
5275 |
+
'border-radius' => UAGB_Helper::get_css_value( $attr['submitborderRadius'], 'px' ),
|
5276 |
+
'padding' => UAGB_Helper::get_css_value( $attr['vPaddingSubmit'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['hPaddingSubmit'], 'px' ),
|
5277 |
+
),
|
5278 |
+
' .uagb-forms-main-form .uagb-forms-main-submit-button:hover' => array(
|
5279 |
+
'color' => $attr['submitColorHover'],
|
5280 |
+
'background-color' => $attr['submitBgColorHover'],
|
5281 |
+
'border-color' => $attr['submitborderHoverColor'],
|
5282 |
+
),
|
5283 |
+
|
5284 |
+
);
|
5285 |
+
|
5286 |
+
// Checkbox Field css.
|
5287 |
+
$selectors[' .uagb-forms-checkbox-wrap input[type=checkbox]:checked + label:before'] = array(
|
5288 |
+
'color' => $attr['inputColor'],
|
5289 |
+
'font-size' => 'calc(' . $attr['toggleSize'] . 'px / 1.2)',
|
5290 |
+
);
|
5291 |
+
$selectors[' .uagb-forms-checkbox-wrap input[type=checkbox] + label:before'] = array(
|
5292 |
+
'background-color' => $attr['bgColor'],
|
5293 |
+
'width' => UAGB_Helper::get_css_value( $attr['toggleSize'], 'px' ),
|
5294 |
+
'height' => UAGB_Helper::get_css_value( $attr['toggleSize'], 'px' ),
|
5295 |
+
);
|
5296 |
+
$selectors[' .uagb-forms-checkbox-wrap > label'] = array(
|
5297 |
+
'color' => $attr['inputColor'],
|
5298 |
+
);
|
5299 |
+
|
5300 |
+
// Radio Button Field css.
|
5301 |
+
$selectors[' .uagb-forms-radio-wrap input[type=radio]:checked + label:before'] = array(
|
5302 |
+
'background-color' => $attr['inputColor'],
|
5303 |
+
'font-size' => 'calc(' . $attr['toggleSize'] . 'px / 1.2)',
|
5304 |
+
);
|
5305 |
+
$selectors[' .uagb-forms-radio-wrap input[type=radio] + label:before'] = array(
|
5306 |
+
'background-color' => $attr['bgColor'],
|
5307 |
+
'width' => UAGB_Helper::get_css_value( $attr['toggleSize'], 'px' ),
|
5308 |
+
'height' => UAGB_Helper::get_css_value( $attr['toggleSize'], 'px' ),
|
5309 |
+
);
|
5310 |
+
$selectors[' .uagb-forms-radio-wrap > label'] = array(
|
5311 |
+
'color' => $attr['inputColor'],
|
5312 |
+
);
|
5313 |
+
|
5314 |
+
// Toggle Field css.
|
5315 |
+
$selectors[' .uagb-slider'] = array(
|
5316 |
+
'background-color' => $attr['bgColor'],
|
5317 |
+
);
|
5318 |
+
$selectors[' .uagb-forms-main-form .uagb-switch'] = array(
|
5319 |
+
'width' => UAGB_Helper::get_css_value( '50' + $attr['toggleWidthSize'] + $attr['inputborderWidth'], 'px' ),
|
5320 |
+
'height' => UAGB_Helper::get_css_value( '25' + $attr['toggleHeightSize'] + $attr['inputborderWidth'], 'px' ),
|
5321 |
+
);
|
5322 |
+
$selectors[' .uagb-forms-main-form .uagb-slider:before'] = array(
|
5323 |
+
'width' => UAGB_Helper::get_css_value( '20' + $attr['toggleWidthSize'] - $attr['inputborderWidth'] / 2, 'px' ),
|
5324 |
+
'height' => UAGB_Helper::get_css_value( '20' + $attr['toggleHeightSize'] - $attr['inputborderWidth'], 'px' ),
|
5325 |
+
);
|
5326 |
+
$selectors[' .uagb-switch input:checked + .uagb-slider'] = array(
|
5327 |
+
'background-color' => $attr['toggleActiveColor'],
|
5328 |
+
);
|
5329 |
+
$selectors[' .uagb-switch input:focus + .uagb-slider'] = array(
|
5330 |
+
'box-shadow' => '0 0 1px' . $attr['toggleActiveColor'],
|
5331 |
+
);
|
5332 |
+
|
5333 |
+
// Accept Field css.
|
5334 |
+
$selectors[' .uagb-forms-accept-wrap input[type=checkbox]:checked + label:before'] = array(
|
5335 |
+
'color' => $attr['inputColor'],
|
5336 |
+
'font-size' => 'calc(' . $attr['toggleSize'] . 'px / 1.2)',
|
5337 |
+
);
|
5338 |
+
$selectors[' .uagb-forms-accept-wrap input[type=checkbox] + label:before'] = array(
|
5339 |
+
'background-color' => $attr['bgColor'],
|
5340 |
+
'width' => UAGB_Helper::get_css_value( $attr['toggleSize'], 'px' ),
|
5341 |
+
'height' => UAGB_Helper::get_css_value( $attr['toggleSize'], 'px' ),
|
5342 |
+
);
|
5343 |
+
$selectors[' .uagb-forms-accept-wrap > label'] = array(
|
5344 |
+
'color' => $attr['inputColor'],
|
5345 |
+
);
|
5346 |
+
|
5347 |
+
if ( 'boxed' === $attr['formStyle'] ) {
|
5348 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-checkbox-wrap input[type=checkbox] + label:before'] = array(
|
5349 |
+
'border' => UAGB_Helper::get_css_value( $attr['inputborderWidth'], 'px' ) . ' ' . $attr['inputborderStyle'] . ' ' . $attr['inputborderColor'],
|
5350 |
+
'border-radius' => UAGB_Helper::get_css_value( $attr['inputborderRadius'], 'px' ),
|
5351 |
+
);
|
5352 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-checkbox-wrap > input'] = array(
|
5353 |
+
'color' => $attr['inputColor'],
|
5354 |
+
);
|
5355 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-radio-wrap input[type=radio] + label:before'] = array(
|
5356 |
+
'border' => UAGB_Helper::get_css_value( $attr['inputborderWidth'], 'px' ) . ' ' . $attr['inputborderStyle'] . ' ' . $attr['inputborderColor'],
|
5357 |
+
);
|
5358 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-radio-wrap > input'] = array(
|
5359 |
+
'color' => $attr['inputColor'],
|
5360 |
+
);
|
5361 |
+
$selectors[' .uagb-forms-main-form .uagb-slider'] = array(
|
5362 |
+
'border' => UAGB_Helper::get_css_value( $attr['inputborderWidth'], 'px' ) . ' ' . $attr['inputborderStyle'] . ' ' . $attr['inputborderColor'],
|
5363 |
+
);
|
5364 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-accept-wrap input[type=checkbox] + label:before'] = array(
|
5365 |
+
'border' => UAGB_Helper::get_css_value( $attr['inputborderWidth'], 'px' ) . ' ' . $attr['inputborderStyle'] . ' ' . $attr['inputborderColor'],
|
5366 |
+
'border-radius' => UAGB_Helper::get_css_value( $attr['inputborderRadius'], 'px' ),
|
5367 |
+
);
|
5368 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-accept-wrap > input'] = array(
|
5369 |
+
'color' => $attr['inputColor'],
|
5370 |
+
);
|
5371 |
+
|
5372 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-input'] = array(
|
5373 |
+
'background-color' => $attr['bgColor'],
|
5374 |
+
'border' => UAGB_Helper::get_css_value( $attr['inputborderWidth'], 'px' ) . ' ' . $attr['inputborderStyle'] . ' ' . $attr['inputborderColor'],
|
5375 |
+
'border-radius' => UAGB_Helper::get_css_value( $attr['inputborderRadius'], 'px' ),
|
5376 |
+
'color' => $attr['inputColor'],
|
5377 |
+
'padding' => UAGB_Helper::get_css_value( $attr['vPaddingField'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['hPaddingField'], 'px' ),
|
5378 |
+
|
5379 |
+
);
|
5380 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-input.uagb-form-phone-country'] = array(
|
5381 |
+
'padding' => UAGB_Helper::get_css_value( $attr['vPaddingField'] - 1, 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['hPaddingField'], 'px' ),
|
5382 |
+
);
|
5383 |
+
|
5384 |
+
$selectors[' .uagb-forms-input:hover'] = array(
|
5385 |
+
'border-color' => $attr['inputborderHoverColor'],
|
5386 |
+
);
|
5387 |
+
$selectors[' .uagb-forms-input::placeholder'] = array(
|
5388 |
+
'color' => $attr['inputplaceholderColor'],
|
5389 |
+
);
|
5390 |
+
}
|
5391 |
+
|
5392 |
+
if ( 'underlined' === $attr['formStyle'] ) {
|
5393 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-accept-wrap input[type=checkbox] + label:before'] = array(
|
5394 |
+
'border-bottom' => UAGB_Helper::get_css_value( $attr['inputborderWidth'], 'px' ) . ' ' . $attr['inputborderStyle'] . ' ' . $attr['inputborderColor'],
|
5395 |
+
);
|
5396 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-checkbox-wrap input[type=checkbox] + label:before'] = array(
|
5397 |
+
'border-bottom' => UAGB_Helper::get_css_value( $attr['inputborderWidth'], 'px' ) . ' ' . $attr['inputborderStyle'] . ' ' . $attr['inputborderColor'],
|
5398 |
+
);
|
5399 |
+
$selectors[' .uagb-forms-main-form .uagb-slider'] = array(
|
5400 |
+
'border-bottom' => UAGB_Helper::get_css_value( $attr['inputborderWidth'], 'px' ) . ' ' . $attr['inputborderStyle'] . ' ' . $attr['inputborderColor'],
|
5401 |
+
);
|
5402 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-radio-wrap input[type=radio] + label:before'] = array(
|
5403 |
+
'border-bottom' => UAGB_Helper::get_css_value( $attr['inputborderWidth'], 'px' ) . ' ' . $attr['inputborderStyle'] . ' ' . $attr['inputborderColor'],
|
5404 |
+
);
|
5405 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-input'] = array(
|
5406 |
+
'border' => 0,
|
5407 |
+
'outline' => 0,
|
5408 |
+
'border-radius' => 0,
|
5409 |
+
'background' => 'transparent',
|
5410 |
+
'border-bottom' => UAGB_Helper::get_css_value( $attr['inputborderWidth'], 'px' ) . ' ' . $attr['inputborderStyle'] . ' ' . $attr['inputborderColor'],
|
5411 |
+
'color' => $attr['inputColor'],
|
5412 |
+
'padding' => UAGB_Helper::get_css_value( $attr['vPaddingField'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['hPaddingField'], 'px' ),
|
5413 |
+
|
5414 |
+
);
|
5415 |
+
$selectors[' .uagb-forms-main-form .uagb-forms-input.uagb-form-phone-country'] = array(
|
5416 |
+
'padding' => UAGB_Helper::get_css_value( $attr['vPaddingField'] - 1, 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['hPaddingField'], 'px' ),
|
5417 |
+
);
|
5418 |
+
|
5419 |
+
$selectors[' .uagb-forms-input:hover'] = array(
|
5420 |
+
'border-color' => $attr['inputborderHoverColor'],
|
5421 |
+
);
|
5422 |
+
$selectors[' .uagb-forms-input::placeholder'] = array(
|
5423 |
+
'color' => $attr['inputplaceholderColor'],
|
5424 |
+
);
|
5425 |
+
}
|
5426 |
+
|
5427 |
+
$combined_selectors = array(
|
5428 |
+
'desktop' => $selectors,
|
5429 |
+
'tablet' => $t_selectors,
|
5430 |
+
'mobile' => $m_selectors,
|
5431 |
+
);
|
5432 |
+
|
5433 |
+
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'submitText', ' .uagb-forms-main-form .uagb-forms-main-submit-button', $combined_selectors );
|
5434 |
+
|
5435 |
+
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'label', ' .uagb-forms-main-form .uagb-forms-input-label', $combined_selectors );
|
5436 |
+
|
5437 |
+
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' .uagb-forms-main-form .uagb-forms-input::placeholder', $combined_selectors );
|
5438 |
+
|
5439 |
+
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' .uagb-forms-main-form .uagb-forms-input', $combined_selectors );
|
5440 |
+
|
5441 |
+
return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
|
5442 |
+
}
|
5443 |
+
|
5444 |
/**
|
5445 |
* Get Lottie CSS.
|
5446 |
*
|
5493 |
|
5494 |
return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
|
5495 |
}
|
5496 |
+
|
5497 |
+
/**
|
5498 |
+
* Get Condition block CSS.
|
5499 |
+
*
|
5500 |
+
* @since 1.22.0
|
5501 |
+
*/
|
5502 |
+
public static function get_condition_block_css() {
|
5503 |
+
|
5504 |
+
return '@media (min-width: 1025px){.entry-content .uag-hide-desktop.uagb-google-map__wrap,.entry-content .uag-hide-desktop{display:none}}@media (min-width: 768px) and (max-width: 1024px){.entry-content .uag-hide-tab.uagb-google-map__wrap,.entry-content .uag-hide-tab{display:none}}@media (max-width: 767px){.entry-content .uag-hide-mob.uagb-google-map__wrap,.entry-content .uag-hide-mob{display:none}}';
|
5505 |
+
}
|
5506 |
}
|
5507 |
}
|
classes/class-uagb-block-js.php
CHANGED
@@ -211,7 +211,46 @@ if ( ! class_exists( 'UAGB_Block_JS' ) ) {
|
|
211 |
return ob_get_clean();
|
212 |
|
213 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
|
|
|
215 |
/**
|
216 |
* Get UAGB Lottie Js
|
217 |
*
|
@@ -797,7 +836,7 @@ if ( ! class_exists( 'UAGB_Block_JS' ) ) {
|
|
797 |
}
|
798 |
|
799 |
/**
|
800 |
-
* Adds Google fonts for Taxonomy List.
|
801 |
*
|
802 |
* @since 1.18.0
|
803 |
* @param array $attr the blocks attr.
|
@@ -825,5 +864,32 @@ if ( ! class_exists( 'UAGB_Block_JS' ) ) {
|
|
825 |
|
826 |
}
|
827 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
828 |
}
|
829 |
}
|
211 |
return ob_get_clean();
|
212 |
|
213 |
}
|
214 |
+
/**
|
215 |
+
* Get Forms Js
|
216 |
+
*
|
217 |
+
* @since 1.22.0
|
218 |
+
* @param array $attr The block attributes.
|
219 |
+
* @param string $id The selector ID.
|
220 |
+
*/
|
221 |
+
public static function get_forms_js( $attr, $id ) {
|
222 |
+
|
223 |
+
$defaults = UAGB_Helper::$block_list['uagb/forms']['attributes'];
|
224 |
+
|
225 |
+
$attr = array_merge( $defaults, (array) $attr );
|
226 |
+
$selector = '.uagb-block-' . $id;
|
227 |
+
$js_attr = array(
|
228 |
+
'block_id' => $attr['block_id'],
|
229 |
+
'reCaptchaEnable' => $attr['reCaptchaEnable'],
|
230 |
+
'reCaptchaType' => $attr['reCaptchaType'],
|
231 |
+
'reCaptchaSiteKeyV2' => $attr['reCaptchaSiteKeyV2'],
|
232 |
+
'reCaptchaSecretKeyV2' => $attr['reCaptchaSecretKeyV2'],
|
233 |
+
'reCaptchaSiteKeyV3' => $attr['reCaptchaSiteKeyV3'],
|
234 |
+
'reCaptchaSecretKeyV3' => $attr['reCaptchaSecretKeyV3'],
|
235 |
+
'afterSubmitToEmail' => $attr['afterSubmitToEmail'],
|
236 |
+
'afterSubmitCcEmail' => $attr['afterSubmitCcEmail'],
|
237 |
+
'afterSubmitBccEmail' => $attr['afterSubmitBccEmail'],
|
238 |
+
'afterSubmitEmailSubject' => $attr['afterSubmitEmailSubject'],
|
239 |
+
'sendAfterSubmitEmail' => $attr['sendAfterSubmitEmail'],
|
240 |
+
'confirmationType' => $attr['confirmationType'],
|
241 |
+
'hidereCaptchaBatch' => $attr['hidereCaptchaBatch'],
|
242 |
+
'captchaMessage' => $attr['captchaMessage'],
|
243 |
+
'confirmationUrl' => $attr['confirmationUrl'],
|
244 |
+
);
|
245 |
+
ob_start();
|
246 |
+
?>
|
247 |
+
jQuery( document ).ready(function() {
|
248 |
+
UAGBForms.init( <?php echo wp_json_encode( $js_attr ); ?>, '<?php echo esc_attr( $selector ); ?>' );
|
249 |
+
});
|
250 |
+
<?php
|
251 |
+
return ob_get_clean();
|
252 |
|
253 |
+
}
|
254 |
/**
|
255 |
* Get UAGB Lottie Js
|
256 |
*
|
836 |
}
|
837 |
|
838 |
/**
|
839 |
+
* Adds Google fonts for Taxonomy List block.
|
840 |
*
|
841 |
* @since 1.18.0
|
842 |
* @param array $attr the blocks attr.
|
864 |
|
865 |
}
|
866 |
|
867 |
+
/**
|
868 |
+
* Adds Google fonts for Forms block.
|
869 |
+
*
|
870 |
+
* @since 1.22.0
|
871 |
+
* @param array $attr the blocks attr.
|
872 |
+
*/
|
873 |
+
public static function blocks_forms_gfont( $attr ) {
|
874 |
+
|
875 |
+
$submitText_load_google_font = isset( $attr['submitTextloadGoogleFonts'] ) ? $attr['submitTextloadGoogleFonts'] : '';
|
876 |
+
$submitText_font_family = isset( $attr['submitTextFontFamily'] ) ? $attr['submitTextFontFamily'] : '';
|
877 |
+
$submitText_font_weight = isset( $attr['submitTextFontWeight'] ) ? $attr['submitTextFontWeight'] : '';
|
878 |
+
$submitText_font_subset = isset( $attr['submitTextFontSubset'] ) ? $attr['submitTextFontSubset'] : '';
|
879 |
+
|
880 |
+
$label_load_google_font = isset( $attr['labelloadGoogleFonts'] ) ? $attr['labelloadGoogleFonts'] : '';
|
881 |
+
$label_font_family = isset( $attr['labelFontFamily'] ) ? $attr['labelFontFamily'] : '';
|
882 |
+
$label_font_weight = isset( $attr['labelFontWeight'] ) ? $attr['labelFontWeight'] : '';
|
883 |
+
$label_font_subset = isset( $attr['labelFontSubset'] ) ? $attr['labelFontSubset'] : '';
|
884 |
+
|
885 |
+
$input_load_google_font = isset( $attr['inputloadGoogleFonts'] ) ? $attr['inputloadGoogleFonts'] : '';
|
886 |
+
$input_font_family = isset( $attr['inputFontFamily'] ) ? $attr['inputFontFamily'] : '';
|
887 |
+
$input_font_weight = isset( $attr['inputFontWeight'] ) ? $attr['inputFontWeight'] : '';
|
888 |
+
$input_font_subset = isset( $attr['inputFontSubset'] ) ? $attr['inputFontSubset'] : '';
|
889 |
+
|
890 |
+
UAGB_Helper::blocks_google_font( $submitText_load_google_font, $submitText_font_family, $submitText_font_weight, $submitText_font_subset );
|
891 |
+
UAGB_Helper::blocks_google_font( $label_load_google_font, $label_font_family, $label_font_weight, $label_font_subset );
|
892 |
+
UAGB_Helper::blocks_google_font( $input_load_google_font, $input_font_family, $input_font_weight, $input_font_subset );
|
893 |
+
}
|
894 |
}
|
895 |
}
|
classes/class-uagb-config.php
CHANGED
@@ -1377,7 +1377,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
1377 |
'js_assets' => array( 'uagb-slick-js', 'uagb-post-js', 'uagb-imagesloaded' ),
|
1378 |
'css_assets' => array( 'uagb-slick-css' ),
|
1379 |
'attributes' => array(
|
1380 |
-
'post_type'
|
1381 |
'inheritFromTheme' => false,
|
1382 |
'align' => 'left',
|
1383 |
'rowGap' => '20',
|
@@ -1478,7 +1478,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
1478 |
'default' => true,
|
1479 |
'extension' => false,
|
1480 |
'attributes' => array(
|
1481 |
-
'post_type'
|
1482 |
'inheritFromTheme' => false,
|
1483 |
'align' => 'left',
|
1484 |
'rowGap' => '20',
|
@@ -1591,7 +1591,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
1591 |
'extension' => false,
|
1592 |
'js_assets' => array( 'uagb-masonry', 'uagb-imagesloaded', 'uagb-post-js' ),
|
1593 |
'attributes' => array(
|
1594 |
-
'post_type'
|
1595 |
'postType' => 'post',
|
1596 |
'inheritFromTheme' => false,
|
1597 |
'align' => 'left',
|
@@ -1701,7 +1701,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
1701 |
array( 'uagb/post-excerpt' ),
|
1702 |
array( 'uagb/post-button' ),
|
1703 |
),
|
1704 |
-
|
1705 |
),
|
1706 |
),
|
1707 |
'uagb/post-title' => array(
|
@@ -2241,11 +2241,11 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
2241 |
'title' => __( 'Tabs child', 'ultimate-addons-for-gutenberg' ),
|
2242 |
'description' => __( 'This block allows you to display your content in tabs layout.', 'ultimate-addons-for-gutenberg' ),
|
2243 |
'default' => true,
|
2244 |
-
'extension'
|
2245 |
'is_child' => true,
|
2246 |
'attributes' => array(
|
2247 |
'block_id' => '',
|
2248 |
-
'id' => 0, //Unique Tab Body ID
|
2249 |
'header' => '',
|
2250 |
'tabActive' => 0,
|
2251 |
'tabHeaders' => '',
|
@@ -2261,7 +2261,8 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
2261 |
'attributes' => array(
|
2262 |
'classMigrate' => false,
|
2263 |
'block_id' => '',
|
2264 |
-
'heading' => 'Table Of Contents',
|
|
|
2265 |
'disableBullets' => false,
|
2266 |
'smoothScroll' => true,
|
2267 |
'smoothScrollOffset' => 30,
|
@@ -2281,6 +2282,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
2281 |
'tColumnsDesktop' => 1,
|
2282 |
'tColumnsTablet' => 1,
|
2283 |
'tColumnsMobile' => 1,
|
|
|
2284 |
'widthTypeDesktop' => '%',
|
2285 |
'widthTypeTablet' => '%',
|
2286 |
'widthTypeMobile' => '%',
|
@@ -2669,12 +2671,207 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
2669 |
'listDisplayStyle' => 'list',
|
2670 |
),
|
2671 |
),
|
2672 |
-
'uagb/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2673 |
'slug' => '',
|
2674 |
-
'title' => __( '
|
2675 |
-
'description' => __( 'This block helps
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2676 |
'default' => true,
|
2677 |
-
'extension' => true,
|
2678 |
'attributes' => array(),
|
2679 |
),
|
2680 |
'uagb/lottie' => array(
|
@@ -2764,6 +2961,10 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
2764 |
'src' => UAGB_URL . 'assets/js/tabs.js',
|
2765 |
'dep' => array( 'jquery' ),
|
2766 |
),
|
|
|
|
|
|
|
|
|
2767 |
'uagb-bodymovin-min' => array(
|
2768 |
'src' => UAGB_URL . 'assets/js/uagb-bodymovin.min.js',
|
2769 |
'dep' => array(),
|
1377 |
'js_assets' => array( 'uagb-slick-js', 'uagb-post-js', 'uagb-imagesloaded' ),
|
1378 |
'css_assets' => array( 'uagb-slick-css' ),
|
1379 |
'attributes' => array(
|
1380 |
+
'post_type' => 'carousel',
|
1381 |
'inheritFromTheme' => false,
|
1382 |
'align' => 'left',
|
1383 |
'rowGap' => '20',
|
1478 |
'default' => true,
|
1479 |
'extension' => false,
|
1480 |
'attributes' => array(
|
1481 |
+
'post_type' => 'grid',
|
1482 |
'inheritFromTheme' => false,
|
1483 |
'align' => 'left',
|
1484 |
'rowGap' => '20',
|
1591 |
'extension' => false,
|
1592 |
'js_assets' => array( 'uagb-masonry', 'uagb-imagesloaded', 'uagb-post-js' ),
|
1593 |
'attributes' => array(
|
1594 |
+
'post_type' => 'masonry',
|
1595 |
'postType' => 'post',
|
1596 |
'inheritFromTheme' => false,
|
1597 |
'align' => 'left',
|
1701 |
array( 'uagb/post-excerpt' ),
|
1702 |
array( 'uagb/post-button' ),
|
1703 |
),
|
1704 |
+
|
1705 |
),
|
1706 |
),
|
1707 |
'uagb/post-title' => array(
|
2241 |
'title' => __( 'Tabs child', 'ultimate-addons-for-gutenberg' ),
|
2242 |
'description' => __( 'This block allows you to display your content in tabs layout.', 'ultimate-addons-for-gutenberg' ),
|
2243 |
'default' => true,
|
2244 |
+
'extension' => false,
|
2245 |
'is_child' => true,
|
2246 |
'attributes' => array(
|
2247 |
'block_id' => '',
|
2248 |
+
'id' => 0, // Unique Tab Body ID.
|
2249 |
'header' => '',
|
2250 |
'tabActive' => 0,
|
2251 |
'tabHeaders' => '',
|
2261 |
'attributes' => array(
|
2262 |
'classMigrate' => false,
|
2263 |
'block_id' => '',
|
2264 |
+
'heading' => __( 'Table Of Contents', 'ultimate-addons-for-gutenberg' ),
|
2265 |
+
'emptyHeadingTeaxt' => __( 'Add a header to begin generating the table of contents', 'ultimate-addons-for-gutenberg' ),
|
2266 |
'disableBullets' => false,
|
2267 |
'smoothScroll' => true,
|
2268 |
'smoothScrollOffset' => 30,
|
2282 |
'tColumnsDesktop' => 1,
|
2283 |
'tColumnsTablet' => 1,
|
2284 |
'tColumnsMobile' => 1,
|
2285 |
+
'mappingHeaders' => array_fill_keys( array( 0, 1, 2, 3, 4, 5 ), true ),
|
2286 |
'widthTypeDesktop' => '%',
|
2287 |
'widthTypeTablet' => '%',
|
2288 |
'widthTypeMobile' => '%',
|
2671 |
'listDisplayStyle' => 'list',
|
2672 |
),
|
2673 |
),
|
2674 |
+
'uagb/forms' => array(
|
2675 |
+
'slug' => '',
|
2676 |
+
'title' => __( 'Forms', 'ultimate-addons-for-gutenberg' ),
|
2677 |
+
'description' => __( 'This block allow you to create interactive contact form, newsletter, suggestion, etc easily.', 'ultimate-addons-for-gutenberg' ),
|
2678 |
+
'default' => true,
|
2679 |
+
'js_assets' => array( 'uagb-forms-js' ),
|
2680 |
+
'attributes' => array(
|
2681 |
+
'block_id' => '',
|
2682 |
+
'submitButtonText' => __( 'Submit', 'ultimate-addons-for-gutenberg' ),
|
2683 |
+
'formLabel' => __( 'UAG Form', 'ultimate-addons-for-gutenberg' ),
|
2684 |
+
'buttonAlign' => 'left',
|
2685 |
+
'confirmationType' => 'message',
|
2686 |
+
'confirmationMessage' => __( 'The form has been submitted Successfully!', 'ultimate-addons-for-gutenberg' ),
|
2687 |
+
'confirmationUrl' => '',
|
2688 |
+
'buttonSize' => 'medium',
|
2689 |
+
'submitColor' => '#ffffff',
|
2690 |
+
'submitColorHover' => '#000000',
|
2691 |
+
'submitBgColor' => '#000000',
|
2692 |
+
'submitBgColorHover' => '#ffffff',
|
2693 |
+
'submitborderStyle' => '',
|
2694 |
+
'toggleSize' => 15,
|
2695 |
+
'toggleActiveColor' => '#000000',
|
2696 |
+
'toggleWidthSize' => 0,
|
2697 |
+
'toggleHeightSize' => 0,
|
2698 |
+
'submitborderWidth' => 0,
|
2699 |
+
'submitborderRadius' => 3,
|
2700 |
+
'submitborderColor' => '',
|
2701 |
+
'submitborderHoverColor' => '',
|
2702 |
+
'vPaddingSubmit' => '',
|
2703 |
+
'hPaddingSubmit' => '',
|
2704 |
+
'submitTextloadGoogleFonts' => false,
|
2705 |
+
'sendAfterSubmitEmail' => true,
|
2706 |
+
'afterSubmitToEmail' => '',
|
2707 |
+
'afterSubmitBccEmail' => '',
|
2708 |
+
'afterSubmitCcEmail' => '',
|
2709 |
+
'afterSubmitEmailSubject' => '',
|
2710 |
+
'submitTextFontFamily' => 'Default',
|
2711 |
+
'submitTextFontWeight' => '',
|
2712 |
+
'submitTextFontSubset' => '',
|
2713 |
+
'submitTextFontSize' => 15,
|
2714 |
+
'submitTextFontSizeType' => 'px',
|
2715 |
+
'submitTextFontSizeTablet' => 15,
|
2716 |
+
'submitTextFontSizeMobile' => 15,
|
2717 |
+
'submitTextLineHeight' => '',
|
2718 |
+
'submitTextLineHeightType' => 'em',
|
2719 |
+
'submitTextLineHeightTablet' => '',
|
2720 |
+
'submitTextLineHeightMobile' => '',
|
2721 |
+
'labelloadGoogleFonts' => false,
|
2722 |
+
'labelFontFamily' => 'Default',
|
2723 |
+
'labelFontWeight' => '',
|
2724 |
+
'labelFontSubset' => '',
|
2725 |
+
'labelFontSize' => 15,
|
2726 |
+
'labelFontSizeType' => 'px',
|
2727 |
+
'labelFontSizeTablet' => 15,
|
2728 |
+
'labelFontSizeMobile' => 15,
|
2729 |
+
'labelLineHeight' => '',
|
2730 |
+
'labelLineHeightType' => 'em',
|
2731 |
+
'labelLineHeightTablet' => '',
|
2732 |
+
'labelLineHeightMobile' => '',
|
2733 |
+
'inputloadGoogleFonts' => false,
|
2734 |
+
'inputFontFamily' => 'Default',
|
2735 |
+
'inputFontWeight' => '',
|
2736 |
+
'inputFontSubset' => '',
|
2737 |
+
'inputFontSize' => '',
|
2738 |
+
'inputFontSizeType' => 'px',
|
2739 |
+
'inputFontSizeTablet' => '',
|
2740 |
+
'inputFontSizeMobile' => '',
|
2741 |
+
'inputLineHeight' => '',
|
2742 |
+
'inputLineHeightType' => 'em',
|
2743 |
+
'inputLineHeightTablet' => '',
|
2744 |
+
'inputLineHeightMobile' => '',
|
2745 |
+
'labelColor' => '#000000',
|
2746 |
+
'inputColor' => '#000000',
|
2747 |
+
'bgColor' => '',
|
2748 |
+
'inputplaceholderColor' => '#abb8c3',
|
2749 |
+
'inputactiveColor' => '#000000',
|
2750 |
+
'inputborderStyle' => 'solid',
|
2751 |
+
'inputborderWidth' => 1,
|
2752 |
+
'inputborderRadius' => 3,
|
2753 |
+
'inputborderColor' => '#BDBDBD',
|
2754 |
+
'inputborderHoverColor' => '',
|
2755 |
+
'vPaddingField' => 10,
|
2756 |
+
'hPaddingField' => 10,
|
2757 |
+
'fieldGap' => 20,
|
2758 |
+
'formStyle' => 'boxed',
|
2759 |
+
'overallAlignment' => 'left',
|
2760 |
+
'successMessageTextColor' => '#000000',
|
2761 |
+
'successMessageBGColor' => '#00800030',
|
2762 |
+
'successMessageBorderColor' => 'green',
|
2763 |
+
'successMessageBorderStyle' => 'solid',
|
2764 |
+
'successMessageBorderWidth' => 2,
|
2765 |
+
'failedMessage' => __( 'There has been some error while submitting the form. Please verify all form fields again.', 'ultimate-addons-for-gutenberg' ),
|
2766 |
+
'failedMessageTextColor' => '#000000',
|
2767 |
+
'failedMessageBorderColor' => 'red',
|
2768 |
+
'failedMessageBGColor' => '#f5f5f',
|
2769 |
+
'failedMessageBorderStyle' => 'solid',
|
2770 |
+
'failedMessageBorderWidth' => 2,
|
2771 |
+
'reCaptchaEnable' => false,
|
2772 |
+
'reCaptchaType' => 'v2',
|
2773 |
+
'reCaptchaSiteKeyV2' => '',
|
2774 |
+
'reCaptchaSecretKeyV2' => '',
|
2775 |
+
'reCaptchaSiteKeyV3' => '',
|
2776 |
+
'reCaptchaSecretKeyV3' => '',
|
2777 |
+
'hidereCaptchaBatch' => false,
|
2778 |
+
'captchaMessage' => __( 'Please fill up the above captcha.', 'ultimate-addons-for-gutenberg' ),
|
2779 |
+
),
|
2780 |
+
),
|
2781 |
+
'uagb/forms-name' => array(
|
2782 |
+
'slug' => '',
|
2783 |
+
'title' => __( 'Name', 'ultimate-addons-for-gutenberg' ),
|
2784 |
+
'description' => __( 'This block helps to add Name field.', 'ultimate-addons-for-gutenberg' ),
|
2785 |
+
'default' => true,
|
2786 |
+
'attributes' => array(),
|
2787 |
+
),
|
2788 |
+
'uagb/forms-email' => array(
|
2789 |
+
'slug' => '',
|
2790 |
+
'title' => __( 'Email', 'ultimate-addons-for-gutenberg' ),
|
2791 |
+
'description' => __( 'This block helps to add Email field.', 'ultimate-addons-for-gutenberg' ),
|
2792 |
+
'default' => true,
|
2793 |
+
'attributes' => array(),
|
2794 |
+
),
|
2795 |
+
'uagb/forms-hidden' => array(
|
2796 |
+
'slug' => '',
|
2797 |
+
'title' => __( 'Hidden', 'ultimate-addons-for-gutenberg' ),
|
2798 |
+
'description' => __( 'This block helps to add Hidden field.', 'ultimate-addons-for-gutenberg' ),
|
2799 |
+
'default' => true,
|
2800 |
+
'attributes' => array(
|
2801 |
+
'block_id' => '',
|
2802 |
+
'hidden_field_name' => __( 'Hidden Field Name', 'ultimate-addons-for-gutenberg' ),
|
2803 |
+
'hidden_field_value' => '',
|
2804 |
+
|
2805 |
+
),
|
2806 |
+
),
|
2807 |
+
'uagb/forms-phone' => array(
|
2808 |
+
'slug' => '',
|
2809 |
+
'title' => __( 'Phone', 'ultimate-addons-for-gutenberg' ),
|
2810 |
+
'description' => __( 'This block helps to add Phone field.', 'ultimate-addons-for-gutenberg' ),
|
2811 |
+
'default' => true,
|
2812 |
+
'attributes' => array(),
|
2813 |
+
),
|
2814 |
+
'uagb/forms-textarea' => array(
|
2815 |
+
'slug' => '',
|
2816 |
+
'title' => __( 'Textarea', 'ultimate-addons-for-gutenberg' ),
|
2817 |
+
'description' => __( 'This block helps to add Textarea field.', 'ultimate-addons-for-gutenberg' ),
|
2818 |
+
'default' => true,
|
2819 |
+
'attributes' => array(
|
2820 |
+
'block_id' => '',
|
2821 |
+
'textareaName' => __( 'Message', 'ultimate-addons-for-gutenberg' ),
|
2822 |
+
'rows' => '4',
|
2823 |
+
),
|
2824 |
+
),
|
2825 |
+
'uagb/forms-checkbox' => array(
|
2826 |
+
'slug' => '',
|
2827 |
+
'title' => __( 'Checkbox', 'ultimate-addons-for-gutenberg' ),
|
2828 |
+
'description' => __( 'This block helps to add Checkbox field.', 'ultimate-addons-for-gutenberg' ),
|
2829 |
+
'default' => true,
|
2830 |
+
'attributes' => array(),
|
2831 |
+
),
|
2832 |
+
'uagb/forms-radio' => array(
|
2833 |
+
'slug' => '',
|
2834 |
+
'title' => __( 'Radio', 'ultimate-addons-for-gutenberg' ),
|
2835 |
+
'description' => __( 'This block helps to add Radio field.', 'ultimate-addons-for-gutenberg' ),
|
2836 |
+
'default' => true,
|
2837 |
+
'attributes' => array(),
|
2838 |
+
),
|
2839 |
+
'uagb/forms-url' => array(
|
2840 |
+
'slug' => '',
|
2841 |
+
'title' => __( 'URL', 'ultimate-addons-for-gutenberg' ),
|
2842 |
+
'description' => __( 'This block helps to add URL field.', 'ultimate-addons-for-gutenberg' ),
|
2843 |
+
'default' => true,
|
2844 |
+
'attributes' => array(
|
2845 |
+
'block_id' => '',
|
2846 |
+
'name' => __( 'URL', 'ultimate-addons-for-gutenberg' ),
|
2847 |
+
),
|
2848 |
+
),
|
2849 |
+
'uagb/forms-select' => array(
|
2850 |
'slug' => '',
|
2851 |
+
'title' => __( 'Select', 'ultimate-addons-for-gutenberg' ),
|
2852 |
+
'description' => __( 'This block helps to add Select field.', 'ultimate-addons-for-gutenberg' ),
|
2853 |
+
'default' => true,
|
2854 |
+
'attributes' => array(),
|
2855 |
+
),
|
2856 |
+
'uagb/forms-toggle' => array(
|
2857 |
+
'slug' => '',
|
2858 |
+
'title' => __( 'Toggle', 'ultimate-addons-for-gutenberg' ),
|
2859 |
+
'description' => __( 'This block helps to add Toggle field.', 'ultimate-addons-for-gutenberg' ),
|
2860 |
+
'default' => true,
|
2861 |
+
'attributes' => array(),
|
2862 |
+
),
|
2863 |
+
'uagb/forms-date' => array(
|
2864 |
+
'slug' => '',
|
2865 |
+
'title' => __( 'Datepicker', 'ultimate-addons-for-gutenberg' ),
|
2866 |
+
'description' => __( 'This block helps to add Datepicker field.', 'ultimate-addons-for-gutenberg' ),
|
2867 |
+
'default' => true,
|
2868 |
+
'attributes' => array(),
|
2869 |
+
),
|
2870 |
+
'uagb/forms-accept' => array(
|
2871 |
+
'slug' => '',
|
2872 |
+
'title' => __( 'Accept', 'ultimate-addons-for-gutenberg' ),
|
2873 |
+
'description' => __( 'This block helps to add Accept field.', 'ultimate-addons-for-gutenberg' ),
|
2874 |
'default' => true,
|
|
|
2875 |
'attributes' => array(),
|
2876 |
),
|
2877 |
'uagb/lottie' => array(
|
2961 |
'src' => UAGB_URL . 'assets/js/tabs.js',
|
2962 |
'dep' => array( 'jquery' ),
|
2963 |
),
|
2964 |
+
'uagb-forms-js' => array(
|
2965 |
+
'src' => UAGB_URL . 'assets/js/forms.js',
|
2966 |
+
'dep' => array( 'jquery' ),
|
2967 |
+
),
|
2968 |
'uagb-bodymovin-min' => array(
|
2969 |
'src' => UAGB_URL . 'assets/js/uagb-bodymovin.min.js',
|
2970 |
'dep' => array(),
|
classes/class-uagb-helper.php
CHANGED
@@ -263,6 +263,14 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
263 |
*/
|
264 |
public function print_stylesheet() {
|
265 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
if ( 'enabled' === self::$file_generation && ! self::$fallback_css ) {
|
267 |
return;
|
268 |
}
|
@@ -590,6 +598,12 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
590 |
UAGB_Block_JS::blocks_wp_search_gfont( $blockattr );
|
591 |
break;
|
592 |
|
|
|
|
|
|
|
|
|
|
|
|
|
593 |
case 'uagb/taxonomy-list':
|
594 |
$css += UAGB_Block_Helper::get_taxonomy_list_css( $blockattr, $block_id );
|
595 |
UAGB_Block_JS::blocks_taxonomy_list_gfont( $blockattr );
|
@@ -818,6 +832,7 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
818 |
if ( '' === $block['blockName'] ) {
|
819 |
continue;
|
820 |
}
|
|
|
821 |
if ( 'core/block' === $block['blockName'] ) {
|
822 |
$id = ( isset( $block['attrs']['ref'] ) ) ? $block['attrs']['ref'] : 0;
|
823 |
|
@@ -843,7 +858,6 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
843 |
$tablet .= $css['tablet'];
|
844 |
$mobile .= $css['mobile'];
|
845 |
}
|
846 |
-
|
847 |
$js .= $block_assets['js'];
|
848 |
}
|
849 |
}
|
263 |
*/
|
264 |
public function print_stylesheet() {
|
265 |
|
266 |
+
$conditional_block_css = UAGB_Block_Helper::get_condition_block_css();
|
267 |
+
|
268 |
+
ob_start();
|
269 |
+
?>
|
270 |
+
<style id="uagb-style-conditional-extension"><?php echo $conditional_block_css; //phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped ?></style>
|
271 |
+
<?php
|
272 |
+
ob_end_flush();
|
273 |
+
|
274 |
if ( 'enabled' === self::$file_generation && ! self::$fallback_css ) {
|
275 |
return;
|
276 |
}
|
598 |
UAGB_Block_JS::blocks_wp_search_gfont( $blockattr );
|
599 |
break;
|
600 |
|
601 |
+
case 'uagb/forms':
|
602 |
+
$css += UAGB_Block_Helper::get_forms_css( $blockattr, $block_id );
|
603 |
+
$js .= UAGB_Block_JS::get_forms_js( $blockattr, $block_id );
|
604 |
+
UAGB_Block_JS::blocks_forms_gfont( $blockattr );
|
605 |
+
break;
|
606 |
+
|
607 |
case 'uagb/taxonomy-list':
|
608 |
$css += UAGB_Block_Helper::get_taxonomy_list_css( $blockattr, $block_id );
|
609 |
UAGB_Block_JS::blocks_taxonomy_list_gfont( $blockattr );
|
832 |
if ( '' === $block['blockName'] ) {
|
833 |
continue;
|
834 |
}
|
835 |
+
|
836 |
if ( 'core/block' === $block['blockName'] ) {
|
837 |
$id = ( isset( $block['attrs']['ref'] ) ) ? $block['attrs']['ref'] : 0;
|
838 |
|
858 |
$tablet .= $css['tablet'];
|
859 |
$mobile .= $css['mobile'];
|
860 |
}
|
|
|
861 |
$js .= $block_assets['js'];
|
862 |
}
|
863 |
}
|
classes/class-uagb-init-blocks.php
CHANGED
@@ -400,6 +400,16 @@ class UAGB_Init_Blocks {
|
|
400 |
)
|
401 |
);
|
402 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
403 |
} // End function editor_assets().
|
404 |
|
405 |
/**
|
400 |
)
|
401 |
);
|
402 |
|
403 |
+
$uagb_forms_ajax_nonce = wp_create_nonce( 'uagb_forms_ajax_nonce' );
|
404 |
+
wp_localize_script(
|
405 |
+
'uagb-forms-js',
|
406 |
+
'uagb_forms_data',
|
407 |
+
array(
|
408 |
+
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
409 |
+
'uagb_forms_ajax_nonce' => $uagb_forms_ajax_nonce,
|
410 |
+
)
|
411 |
+
);
|
412 |
+
|
413 |
} // End function editor_assets().
|
414 |
|
415 |
/**
|
classes/class-uagb-loader.php
CHANGED
@@ -85,7 +85,7 @@ if ( ! class_exists( 'UAGB_Loader' ) ) {
|
|
85 |
define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
|
86 |
define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
|
87 |
define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
|
88 |
-
define( 'UAGB_VER', '1.
|
89 |
define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
|
90 |
define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
|
91 |
define( 'UAGB_SLUG', 'uag' );
|
@@ -117,6 +117,8 @@ if ( ! class_exists( 'UAGB_Loader' ) ) {
|
|
117 |
require_once UAGB_DIR . 'dist/blocks/cf7-styler/class-uagb-cf7-styler.php';
|
118 |
require_once UAGB_DIR . 'dist/blocks/gf-styler/class-uagb-gf-styler.php';
|
119 |
require_once UAGB_DIR . 'dist/blocks/taxonomy-list/class-uagb-taxonomy-list.php';
|
|
|
|
|
120 |
require_once UAGB_DIR . 'dist/blocks/lottie/class-uagb-lottie.php';
|
121 |
|
122 |
}
|
85 |
define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
|
86 |
define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
|
87 |
define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
|
88 |
+
define( 'UAGB_VER', '1.22.0' );
|
89 |
define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
|
90 |
define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
|
91 |
define( 'UAGB_SLUG', 'uag' );
|
117 |
require_once UAGB_DIR . 'dist/blocks/cf7-styler/class-uagb-cf7-styler.php';
|
118 |
require_once UAGB_DIR . 'dist/blocks/gf-styler/class-uagb-gf-styler.php';
|
119 |
require_once UAGB_DIR . 'dist/blocks/taxonomy-list/class-uagb-taxonomy-list.php';
|
120 |
+
require_once UAGB_DIR . 'dist/blocks/table-of-content/class-uagb-table-of-content.php';
|
121 |
+
require_once UAGB_DIR . 'dist/blocks/forms/class-uagb-forms.php';
|
122 |
require_once UAGB_DIR . 'dist/blocks/lottie/class-uagb-lottie.php';
|
123 |
|
124 |
}
|
dist/blocks.build.js
CHANGED
@@ -60,7 +60,7 @@
|
|
60 |
/******/ __webpack_require__.p = "";
|
61 |
/******/
|
62 |
/******/ // Load entry module and return exports
|
63 |
-
/******/ return __webpack_require__(__webpack_require__.s =
|
64 |
/******/ })
|
65 |
/************************************************************************/
|
66 |
/******/ ([
|
@@ -190,12 +190,28 @@ var UAGB_Block_Icons = {
|
|
190 |
"marketing_button": el("svg", { width: 20, height: 20 }, el("path", { fill: "#4a00e0", d: "M12.997 2.99c-0.050-0.153-0.158-0.28-0.302-0.353s-0.31-0.086-0.463-0.036l-2.54 0.825c-0.319 0.104-0.493 0.446-0.39 0.765l0.127 0.391-6.461 4.746-2.549 0.828c-0.153 0.050-0.28 0.158-0.353 0.302s-0.086 0.31-0.036 0.463l1.548 4.765c0.083 0.257 0.321 0.42 0.577 0.42 0.062 0 0.125-0.010 0.188-0.030l2.548-0.828 1.309 0.007c0.263 1.241 1.367 2.176 2.686 2.176 1.308 0 2.405-0.92 2.679-2.148l1.343 0.007 0.127 0.391c0.050 0.153 0.158 0.28 0.302 0.353 0.086 0.044 0.181 0.066 0.276 0.066 0.063 0 0.127-0.010 0.188-0.030l2.54-0.825c0.319-0.104 0.493-0.446 0.39-0.765l-3.733-11.489zM2.545 14.732l-1.173-3.61 1.487-0.483 1.173 3.61-1.486 0.483zM8.886 16.215c-0.64 0-1.189-0.396-1.418-0.955l2.83 0.015c-0.232 0.552-0.777 0.94-1.412 0.94zM5.239 14.034l-1.277-3.93 5.862-4.306 2.689 8.275-7.274-0.038zM14.002 14.727l-0.075-0.229c-0-0-0-0.001-0-0.001l-3.283-10.104 1.385-0.45 3.358 10.335-1.385 0.45z" }), el("path", { fill: "#4a00e0", d: "M15.041 5.941c0.088 0.045 0.182 0.066 0.275 0.066 0.221 0 0.434-0.121 0.541-0.332l1.090-2.138c0.152-0.299 0.034-0.664-0.265-0.817s-0.664-0.034-0.817 0.265l-1.090 2.138c-0.152 0.299-0.034 0.664 0.265 0.817z" }), el("path", { fill: "#4a00e0", d: "M19.604 11.714l-2.138-1.089c-0.299-0.152-0.664-0.033-0.817 0.265s-0.033 0.664 0.265 0.817l2.138 1.089c0.088 0.045 0.182 0.066 0.275 0.066 0.221 0 0.434-0.121 0.541-0.332 0.152-0.299 0.033-0.664-0.265-0.817z" }), el("path", { fill: "#4a00e0", d: "M16.533 8.193c0.083 0.257 0.321 0.42 0.577 0.42 0.062 0 0.125-0.010 0.188-0.030l2.282-0.742c0.319-0.104 0.493-0.446 0.39-0.765s-0.446-0.493-0.765-0.39l-2.282 0.742c-0.319 0.104-0.493 0.446-0.39 0.765z" })),
|
191 |
"table_of_contents": el("svg", { width: 20, height: 20 }, el("path", { fill: "#4a00e0", d: "M0 0h1.25v20h-1.25v-20zM18.75 0h1.25v20h-1.25v-20zM1.25 1.25v-1.25h17.5v1.25h-17.5zM1.25 20v-1.25h17.5v1.25h-17.5zM1.25 4.063v-1.25h17.5v1.25h-17.5zM13.75 1.25h1.25v1.563h-1.25v-1.563zM4.375 5c-0.938 0-1.875 0.938-1.875 1.875s0.938 1.875 1.875 1.875c0.938 0 1.875-0.938 1.875-1.875s-0.938-1.875-1.875-1.875zM4.375 5.938c0.625 0 0.938 0.313 0.938 0.938s-0.313 0.938-0.938 0.938c-0.625 0-0.938-0.313-0.938-0.938s0.313-0.938 0.938-0.938zM7.813 7.5h9.688v-1.25h-9.688v1.25zM4.375 9.688c-0.938 0-1.875 0.625-1.875 1.875 0 0.938 0.938 1.875 1.875 1.875s1.875-0.938 1.875-1.875c0-1.25-0.938-1.875-1.875-1.875zM4.375 10.313c0.625 0 0.938 0.625 0.938 1.25 0 0.313-0.313 0.938-0.938 0.938s-0.938-0.625-0.938-0.938c0-0.625 0.313-1.25 0.938-1.25zM7.813 12.188h9.688v-1.25h-9.688v1.25zM4.375 14.063c0.938 0 1.875 0.938 1.875 1.875s-0.938 1.875-1.875 1.875c-0.938 0-1.875-0.938-1.875-1.875s0.938-1.875 1.875-1.875zM4.375 15c-0.625 0-0.938 0.313-0.938 0.938s0.313 0.938 0.938 0.938c0.625 0 0.938-0.313 0.938-0.938s-0.313-0.938-0.938-0.938zM7.813 16.563h9.688v-1.25h-9.688v1.25z" })),
|
192 |
"faq": el("svg", { width: 20, height: 20 }, el("path", { fill: "#4a00e0", d: "M10.95 14.645c0 0.524-0.425 0.949-0.949 0.949s-0.949-0.425-0.949-0.949c0-0.524 0.425-0.949 0.949-0.949s0.949 0.425 0.949 0.949z" }), el("path", { fill: "#4a00e0", d: "M10.001 0.292c-5.366 0-9.709 4.342-9.709 9.708s4.342 9.708 9.709 9.708c5.365 0 9.707-4.342 9.707-9.708 0-5.365-4.342-9.708-9.707-9.708zM10.001 18.643c-4.777 0-8.644-3.864-8.644-8.643 0-4.776 3.865-8.643 8.644-8.643 4.777 0 8.642 3.865 8.642 8.643s-3.865 8.643-8.642 8.643z" }), el("path", { fill: "#4a00e0", d: "M10.001 5.165c-1.674 0-3.034 1.361-3.034 3.033 0 0.42 0.339 0.76 0.758 0.76s0.759-0.34 0.759-0.76c0-0.836 0.68-1.516 1.518-1.516 0.835 0 1.516 0.68 1.516 1.516s-0.681 1.519-1.516 1.519c-0.421 0-0.759 0.339-0.759 0.757v1.897c0 0.417 0.338 0.757 0.759 0.757 0.418 0 0.758-0.34 0.758-0.757v-1.234c1.308-0.337 2.275-1.527 2.275-2.938-0.001-1.673-1.363-3.034-3.034-3.034z" })),
|
|
|
193 |
"how_to": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M29.539 1.258l-27.674 9.042c-0.782 0.256-0.894 1.318-0.182 1.733l10.458 6.082c0.33 0.189 0.742 0.166 1.048-0.059l2.939-2.182-2.182 2.939c-0.229 0.306-0.251 0.72-0.059 1.048l6.082 10.458c0.413 0.71 1.477 0.598 1.733-0.184l9.040-27.672c0.243-0.742-0.461-1.445-1.202-1.203v0zM20.549 27.518l-4.696-8.075 5.661-7.622c0.282-0.381 0.243-0.909-0.091-1.243-0.336-0.334-0.864-0.373-1.245-0.091l-7.622 5.662-8.074-4.696 23.862-7.798-7.795 23.864zM11.229 22.122l-6.336 6.338c-0.373 0.37-0.978 0.37-1.349 0-0.373-0.374-0.373-0.978 0-1.35l6.334-6.336c0.373-0.374 0.978-0.374 1.35 0 0.371 0.371 0.371 0.976 0 1.349zM2.858 22.362c-0.371-0.371-0.371-0.978 0-1.349l2.501-2.501c0.373-0.374 0.976-0.374 1.349 0 0.373 0.371 0.373 0.974 0 1.349l-2.501 2.501c-0.373 0.373-0.976 0.373-1.349 0zM13.49 25.293c0.371 0.373 0.371 0.978 0 1.35l-2.501 2.501c-0.186 0.184-0.43 0.278-0.675 0.278-0.842 0-1.277-1.027-0.674-1.63l2.501-2.501c0.37-0.371 0.976-0.371 1.349 0.002v0z" })),
|
194 |
"inline_notice": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M30.69 25.701l-13.094-21.389c-0.35-0.571-0.96-0.912-1.63-0.912h-0.002c-0.67 0-1.28 0.344-1.629 0.915l-13.026 21.389c-0.352 0.578-0.374 1.28-0.064 1.882 0.304 0.59 0.878 0.966 1.534 1.013 0.045 0.003 0.090 0.005 0.134 0.005h26.168c0.045 0 0.093-0.002 0.134-0.005 0.658-0.045 1.232-0.422 1.538-1.013 0.312-0.606 0.288-1.307-0.064-1.885zM3.458 26.403l12.507-20.541 12.576 20.541h-25.083z" }), el("path", { fill: "#4a00e0", d: "M15.966 11.242c-0.533 0-0.965 0.432-0.965 0.965v8.037c0 0.531 0.432 0.966 0.965 0.966s0.965-0.432 0.965-0.966v-8.037c0-0.533-0.432-0.965-0.965-0.965z" }), el("path", { fill: "#4a00e0", d: "M16.946 23.702c0 0.532-0.431 0.963-0.963 0.963s-0.963-0.431-0.963-0.963c0-0.532 0.431-0.963 0.963-0.963s0.963 0.431 0.963 0.963z" })),
|
195 |
"wp_search": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M20.433 1.068c-5.789 0-10.499 4.71-10.499 10.5 0 2.58 0.936 4.945 2.486 6.775l-1.187 1.187-0.618-0.618c-0.342-0.342-0.896-0.342-1.238 0l-7.542 7.54c-1.024 1.024-1.024 2.689 0 3.713s2.689 1.023 3.712 0l7.541-7.541c0.341-0.342 0.341-0.895 0-1.237l-0.619-0.62 1.187-1.187c1.83 1.55 4.196 2.486 6.776 2.486 5.791 0 10.499-4.71 10.499-10.499s-4.708-10.499-10.499-10.499zM4.311 28.927c-0.341 0.34-0.897 0.34-1.238 0s-0.341-0.896 0-1.238l4.447-4.447 1.238 1.238-4.447 4.447zM9.996 23.242l-1.238-1.238 1.238-1.238 1.238 1.238-1.238 1.238zM20.433 20.317c-4.824 0-8.749-3.924-8.749-8.749s3.925-8.75 8.749-8.75c4.826 0 8.749 3.925 8.749 8.75s-3.924 8.749-8.749 8.749z" })),
|
196 |
"taxonomy_list": el("svg", { width: 20, height: 20, viewBox: "0 0 38 32" }, el("path", { fill: "#4a00e0", d: "M14 24.68h-2.4c-0.24-0.96-0.72-1.84-1.4-2.52l1.28-2c0.44-0.68 0.24-1.6-0.44-2.040s-1.6-0.24-2.040 0.44l-1.28 2c-0.56-0.2-1.2-0.28-1.8-0.28-3.24 0-5.88 2.64-5.88 5.88s2.68 5.84 5.92 5.84c2.72 0 5.040-1.88 5.68-4.4h2.4c0.8 0 1.48-0.64 1.48-1.48-0.040-0.8-0.68-1.44-1.52-1.44zM5.96 29.080c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92 2.92 1.32 2.92 2.92c0 1.6-1.32 2.92-2.92 2.92z" }), el("path", { fill: "#4a00e0", d: "M31.76 20.24c-0.64 0-1.24 0.12-1.8 0.28l-1.28-2c-0.44-0.68-1.36-0.88-2.040-0.44s-0.88 1.36-0.44 2.040l1.28 2c-0.64 0.72-1.16 1.56-1.4 2.52h-2.4c-0.8 0-1.48 0.64-1.48 1.48 0 0.8 0.64 1.48 1.48 1.48h2.4c0.64 2.52 2.96 4.4 5.68 4.4 3.24 0 5.88-2.64 5.88-5.88s-2.64-5.88-5.88-5.88zM31.76 29.080c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92c1.6 0 2.92 1.32 2.92 2.92 0.040 1.6-1.28 2.92-2.92 2.92z" }), el("path", { fill: "#4a00e0", d: "M24 13.92c0.68-0.44 0.88-1.36 0.44-2.040l-1.28-2c0.96-1.040 1.56-2.44 1.56-4 0-3.24-2.64-5.88-5.84-5.88s-5.88 2.64-5.88 5.88c0 1.56 0.6 2.96 1.56 4l-1.28 2c-0.44 0.68-0.24 1.6 0.44 2.040s1.6 0.24 2.040-0.44l1.28-2c0.56 0.2 1.2 0.28 1.8 0.28s1.24-0.12 1.8-0.28l1.28 2c0.48 0.68 1.4 0.88 2.080 0.44zM18.88 8.8c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92 2.92 1.32 2.92 2.92c0 1.6-1.32 2.92-2.92 2.92z" })),
|
197 |
"review": el("svg", { width: 20, height: 20, viewBox: "0 0 29 29" }, el("path", { fill: "#4a00e0", d: "M20.48 16.187l0.4-0.4-0.533-0.053-0.107-0.027-0.053-0.080-0.24-0.507v1.493l0.080 0.053 0.507 0.267-0.080-0.56-0.027-0.107 0.053-0.080zM21.2 15.787l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.027-0.027-0.053-0.053-0.027-0.080 0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053-0.027 0-0.053 0.053-0.080 0.080z" }), el("path", { fill: "#4a00e0", d: "M8.16 16.187l0.4-0.4-0.56-0.053-0.107-0.027-0.053-0.080-0.24-0.507v1.493l0.080 0.053 0.507 0.267-0.080-0.56-0.027-0.107 0.080-0.080zM8.853 15.787l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.027-0.027-0.053-0.053-0.027-0.080s0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s-0.027 0.053-0.080 0.080z" }), el("path", { fill: "#4a00e0", d: "M7.147 16.267l-0.027 0.107-0.080 0.56 0.507-0.267 0.080-0.053v-1.493l-0.24 0.507-0.053 0.080-0.133 0.027-0.533 0.080 0.4 0.4 0.080 0.053zM6.32 15.68c0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s0 0.053-0.027 0.080l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.080 0-0.080-0.053-0.080-0.080z" }), el("path", { fill: "#4a00e0", d: "M11.333 16.187l0.4-0.4-0.533-0.053-0.107-0.027-0.053-0.080-0.24-0.507v1.493l0.080 0.053 0.507 0.267-0.080-0.56-0.053-0.107 0.080-0.080zM12.053 15.787l-0.587 0.533 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.027-0.027-0.053-0.053-0.027-0.080s0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053-0.027 0.027-0.027 0.080-0.053 0.107z" }), el("path", { fill: "#4a00e0", d: "M10.32 16.267l-0.027 0.107-0.080 0.56 0.507-0.267 0.080-0.053v-1.493l-0.24 0.507-0.053 0.080-0.107 0.027-0.56 0.080 0.4 0.4 0.080 0.053zM9.493 15.68c0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s0 0.053-0.027 0.080l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.080 0-0.080-0.053-0.080-0.080z" }), el("path", { fill: "#4a00e0", d: "M14.4 16.187l0.4-0.4-0.56-0.053-0.107-0.027-0.053-0.080-0.24-0.507v1.493l0.080 0.053 0.507 0.267-0.080-0.56-0.027-0.107 0.080-0.080zM15.093 15.787l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.027-0.027-0.053-0.053-0.027-0.080 0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s-0.053 0.053-0.080 0.080z" }), el("path", { fill: "#4a00e0", d: "M13.36 16.267l-0.027 0.107-0.080 0.56 0.507-0.267 0.080-0.053v-1.493l-0.24 0.48-0.053 0.080-0.107 0.053-0.56 0.080 0.4 0.4 0.080 0.053zM12.56 15.68c0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s0 0.053-0.027 0.080l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.080 0-0.107-0.053-0.080-0.080z" }), el("path", { fill: "#4a00e0", d: "M17.493 16.187l0.4-0.4-0.56-0.053-0.107-0.027-0.053-0.080-0.24-0.507v1.493l0.080 0.053 0.507 0.267-0.080-0.56-0.027-0.107 0.080-0.080zM18.187 15.787l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.027-0.027-0.053-0.053-0.027-0.080s0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053-0.027 0-0.027 0.053-0.080 0.080z" }), el("path", { fill: "#4a00e0", d: "M16.48 16.267l-0.027 0.107-0.080 0.56 0.507-0.267 0.080-0.053v-1.493l-0.24 0.507-0.053 0.080-0.133 0.027-0.533 0.080 0.4 0.4 0.080 0.053zM15.653 15.68c0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s0 0.053-0.027 0.080l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.080 0-0.080-0.053-0.080-0.080z" }), el("path", { fill: "none", stroke: "#4a00e0", linejoin: "miter", linecap: "butt", miterlimit: "10", width: "1.3333", d: "M18.8 25.733h-15.147v-21.867h25.227v14.293" }), el("path", { fill: "none", stroke: "#4a00e0", linejoin: "miter", linecap: "butt", miterlimit: "10", width: "1.3333", d: "M3.653 8.907h25.227" }), el("path", { fill: "none", stroke: "#4a00e0", linejoin: "miter", linecap: "butt", miterlimit: "10", width: "1.3333", d: "M6.187 6.4h1.68" }), el("path", { fill: "none", stroke: "#4a00e0", linejoin: "miter", linecap: "butt", miterlimit: "10", width: "1.3333", d: "M9.547 6.4h1.68" }), el("path", { fill: "#4a00e0", d: "M23.147 26.373c-2.613-0.133-4.613-2.347-4.48-4.96s2.347-4.613 4.933-4.48c2.613 0.133 4.613 2.347 4.48 4.933-0.107 2.613-2.32 4.613-4.933 4.507zM23.547 17.867c-2.080-0.107-3.867 1.52-3.947 3.6-0.107 2.080 1.493 3.867 3.6 3.947s3.867-1.52 3.947-3.6-1.52-3.84-3.6-3.947z" }), el("path", { fill: "#4a00e0", d: "M30.080 29.547c-0.133 0-0.24-0.053-0.32-0.16l-3.6-3.947c-0.187-0.187-0.16-0.507 0.027-0.667 0.187-0.187 0.507-0.16 0.667 0.027l3.6 3.947c0.187 0.187 0.16 0.48-0.027 0.667 0 0 0 0 0 0-0.107 0.080-0.213 0.133-0.347 0.133z" }), el("path", { fill: "#4a00e0", d: "M23.947 11.573h-17.040c-0.373 0-0.667 0.293-0.667 0.667s0.293 0.667 0.667 0.667h17.040c0.373 0 0.667-0.293 0.667-0.667s-0.293-0.667-0.667-0.667z" })),
|
198 |
-
"lottie": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 120 120" }, el("rect", { x: "8.1", y: "11.8", fill: "none", stroke: "#4a00e0", strokeWidth: "10", miterlimit: "10", width: "102.9", height: "99.9" }), el("ellipse", { transform: "matrix(0.9666 -0.2562 0.2562 0.9666 -22.8642 11.8718)", fill: "none", stroke: "#4a00e0", strokeWidth: "10", miterlimit: "10", cx: "34.1", cy: "93.7", rx: "0.1", ry: "0" }), el("ellipse", { transform: "matrix(-0.9666 0.2562 -0.2562 -0.9666 174.7596 36.9626)", fill: "none", stroke: "#4a00e0", strokeWidth: "10", miterlimit: "10", cx: "85", cy: "29.9", rx: "0.1", ry: "0" }), el("path", { fill: "none", stroke: "#4a00e0", strokeWidth: "10", miterlimit: "10", d: "M84.4,29.7c0,0-18-4.9-23.4,32.2S34.1,93.7,34.1,93.7" }))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
};
|
200 |
|
201 |
/* harmony default export */ __webpack_exports__["a"] = (UAGB_Block_Icons);
|
@@ -212,7 +228,7 @@ var UAGB_Block_Icons = {
|
|
212 |
"use strict";
|
213 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon__ = __webpack_require__(/*! ./UAGBIcon */ 9);
|
214 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__UAGBIcon__);
|
215 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__parseIcon__ = __webpack_require__(/*! ./parseIcon */
|
216 |
/**
|
217 |
* Set inline CSS class.
|
218 |
* @param {object} props - The block object.
|
@@ -355,9 +371,9 @@ function generateCSS(selectors, id) {
|
|
355 |
/* WEBPACK VAR INJECTION */(function(process) {
|
356 |
|
357 |
if (process.env.NODE_ENV === 'production') {
|
358 |
-
module.exports = __webpack_require__(/*! ./cjs/react.production.min.js */
|
359 |
} else {
|
360 |
-
module.exports = __webpack_require__(/*! ./cjs/react.development.js */
|
361 |
}
|
362 |
|
363 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
@@ -567,10 +583,10 @@ process.umask = function() { return 0; };
|
|
567 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
568 |
|
569 |
"use strict";
|
570 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__font_typography__ = __webpack_require__(/*! ./font-typography */
|
571 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__range_typography__ = __webpack_require__(/*! ./range-typography */
|
572 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
573 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
574 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
575 |
/* unused harmony reexport TypographyStyles */
|
576 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
@@ -814,7 +830,7 @@ var TypographyControl = function (_Component) {
|
|
814 |
"use strict";
|
815 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
816 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__);
|
817 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader__ = __webpack_require__(/*! webfontloader */
|
818 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_webfontloader__);
|
819 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
820 |
|
@@ -966,7 +982,7 @@ module.exports = {"500px":{"changes":["4.4","5.0.0"],"ligatures":[],"search":{"t
|
|
966 |
* https://opensource.org/licenses/MIT
|
967 |
*
|
968 |
*/
|
969 |
-
!function(e,t){ true?module.exports=t(__webpack_require__(/*! prop-types */ 15),__webpack_require__(/*! react */ 5),__webpack_require__(/*! classnames */ 0),__webpack_require__(/*! react-dom */ 33),__webpack_require__(/*! react-transition-group */ 509)):"function"==typeof define&&define.amd?define(["prop-types","react","classnames","react-dom","react-transition-group"],t):"object"==typeof exports?exports.FontIconPicker=t(require("prop-types"),require("react"),require("classnames"),require("react-dom"),require("react-transition-group")):e.FontIconPicker=t(e.PropTypes,e.React,e.classNames,e.ReactDOM,e.ReactTransitionGroup)}(window,function(e,t,r,n,a){return function(e){var t={};function r(n){if(t[n])return t[n].exports;var a=t[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,r),a.l=!0,a.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},r.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=15)}([function(t,r){t.exports=e},function(e,r){e.exports=t},function(e,t,r){"use strict";function n(e){return(n="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 a(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function o(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}Object.defineProperty(t,"__esModule",{value:!0}),t.flattenPossiblyCategorizedSource=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(Array.isArray(e))return o(e);if(null!==t)return void 0!==e[t]?o(e[t]):[];var r=[],n=function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{},n=Object.keys(r);"function"==typeof Object.getOwnPropertySymbols&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(e){return Object.getOwnPropertyDescriptor(r,e).enumerable}))),n.forEach(function(t){a(e,t,r[t])})}return e}({},e);return Object.keys(n).forEach(function(e){r=o(r).concat(o(n[e]))}),r},t.getPossibleCategories=function(e){return Array.isArray(e)?null:Object.keys(e)},t.convertToHex=function(e){return String.fromCodePoint(parseInt(e,10))},t.isArrayEqual=function(e,t){if(!Array.isArray(e)||!Array.isArray(t))return!1;var r=o(e);r.sort();var n=o(t);return n.sort(),JSON.stringify(r)===JSON.stringify(n)},t.getOffset=function(e){var t=e.getBoundingClientRect(),r=window.pageXOffset||document.documentElement.scrollLeft,n=window.pageYOffset||document.documentElement.scrollTop;return{top:t.top+n,left:t.left+r}},t.getSourceType=function(e){return null===e?"null":"object"!==n(e)||Array.isArray(e)?Array.isArray(e)?"array":n(e):"object"},t.InvalidSourceException=function(e,t){this.givenType=e,this.requiredType=t,this.message="Expected of type: ".concat(this.requiredType,", found: ").concat(this.givenType),this.toString=function(){return"Invalid Source Exception: ".concat(this.message)}},t.fuzzySearch=function(e,t){e=e.toLowerCase();var r=(t=t.toLowerCase()).length,n=e.length;if(n>r)return!1;if(n===r)return e===t;e:for(var a=0,o=0;a<n;a++){for(var l=e.codePointAt(a);o<r;)if(t.codePointAt(o++)===l)continue e;return!1}return!0},t.debounce=void 0,t.debounce=function(e,t){var r;return function(){var n=this,a=arguments;clearTimeout(r),r=setTimeout(function(){return e.apply(n,a)},t)}}},function(e,t){e.exports=r},,,function(e,t){e.exports=n},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=u(r(1)),a=r(6),o=u(r(0)),l=u(r(3)),i=r(2);function u(e){return e&&e.__esModule?e:{default:e}}function c(e){return(c="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 s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function f(e,t,r){return t&&s(e.prototype,t),r&&s(e,r),e}function d(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var p=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==c(n)&&"function"!=typeof n?d(this):n,Object.defineProperty(d(r),"syncPortalPosition",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.resetPortalPosition(),r.fixWindowOverflow()}}),Object.defineProperty(d(r),"fixWindowOverflow",{configurable:!0,enumerable:!0,writable:!0,value:function(){var e=r.props.domRef.current.offsetWidth,t=r.props.domRef.current.offsetHeight,n=window,a=n.innerWidth,o=n.pageYOffset,l=document.documentElement.clientHeight,u=(0,i.getOffset)(r.props.domRef.current),c=u.left,s=u.top,f="self"===r.state.appendRoot?r.props.domRef.current:r.state.appendRoot,d=(0,i.getOffset)(f),p=r.props.btnRef.current,h=r.props.domRef.current,y=(0,i.getOffset)(p),b=getComputedStyle(p),g=(parseInt(b.borderTop,10)||0)+(parseInt(b.borderBottom,10)||0);if(c+e>a-20){var m=y.left+r.props.btnRef.current.offsetWidth-(e+d.left);m+d.left<0&&(m=10-d.left),h.style.left="".concat(m,"px")}t+s-o>l&&y.top-t>0&&("self"===r.state.appendRoot?h.style.top="-".concat(t-g,"px"):h.style.top="".concat(y.top+g-t,"px"))}}),r.state={},r.debouncedSyncPortalPosition=(0,i.debounce)(r.syncPortalPosition,250),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,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),f(t,null,[{key:"getDerivedStateFromProps",value:function(e){var r=t.calculateAppendAndClass(e.appendRoot);return{appendRoot:r.appendRoot,portalClasses:r.portalClasses}}},{key:"calculateAppendAndClass",value:function(e){var t="self",r=(0,l.default)({"rfipdropdown--portal":!1!==e});return!1!==e&&(t=document.querySelector(e)),{portalClasses:r,appendRoot:t}}}]),f(t,[{key:"componentDidMount",value:function(){window.addEventListener("resize",this.debouncedSyncPortalPosition),window.addEventListener("scroll",this.debouncedSyncPortalPosition),this.syncPortalPosition()}},{key:"componentDidUpdate",value:function(){this.syncPortalPosition()}},{key:"componentWillUnmount",value:function(){window.removeEventListener("resize",this.debouncedSyncPortalPosition),window.removeEventListener("scroll",this.debouncedSyncPortalPosition)}},{key:"positionPortal",value:function(){var e=this.props.domRef.current.style.display;this.props.domRef.current.style.display="none";var t=this.props.btnRef.current,r=(0,i.getOffset)(t),n=(0,i.getOffset)(this.state.appendRoot),a=t.offsetHeight;this.props.domRef.current.style.left="".concat(r.left-n.left,"px"),this.props.domRef.current.style.top="".concat(r.top+a,"px"),this.props.domRef.current.style.display=e}},{key:"resetPortalPosition",value:function(){var e=this.props.domRef.current;"self"===this.state.appendRoot?e.style.top="":this.positionPortal()}},{key:"render",value:function(){var e=(0,l.default)(this.props.className,this.state.portalClasses),t=n.default.createElement("div",{className:e,ref:this.props.domRef},this.props.children);return"self"===this.state.appendRoot?t:(0,a.createPortal)(t,this.state.appendRoot)}}]),t}();Object.defineProperty(p,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{appendRoot:o.default.oneOfType([o.default.bool,o.default.string]),children:o.default.node.isRequired,domRef:o.default.object.isRequired,btnRef:o.default.object.isRequired,className:o.default.string.isRequired}}),Object.defineProperty(p,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{appendRoot:!1}});var h=p;t.default=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=i(r(1)),a=i(r(0)),o=i(r(3)),l=r(2);function i(e){return e&&e.__esModule?e:{default:e}}function u(e){return(u="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 c(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function f(e,t,r){return t&&s(e.prototype,t),r&&s(e,r),e}function d(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var p=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==u(n)&&"function"!=typeof n?d(this):n,Object.defineProperty(d(r),"handleChangePage",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,a=r.props.currentPage,o=r.state.totalPage;null!==n?"next"===n?a+=1:a-=1:a=parseInt(e.target.value,10)-1,a<0&&(a=0),a>o-1&&(a=o-1),t=a+1,null===n&&Number.isNaN(a)&&(a=0,t=""),r.setState({viewPage:t}),r.props.handleChangePage(a)}}),Object.defineProperty(d(r),"handlePageKeyBoard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){13!==e.keyCode&&32!==e.keyCode||r.handleChangePage({},t)}}),Object.defineProperty(d(r),"handleChangeValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.props.handleChangeValue(e)}}),Object.defineProperty(d(r),"handleValueKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){13!==e.keyCode&&32!==e.keyCode||r.handleChangeValue(t)}}),r.state={viewPage:r.props.currentPage+1},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,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),f(t,null,[{key:"getDerivedStateFromProps",value:function(e,r){var n=t.getCategoryFilteredState(e.currentCategory,e.categories,e.icons),a=t.getCategoryFilteredState(e.currentCategory,e.categories,null===e.search?e.icons:e.search),o=t.getActiveIcons(n,a,e.currentSearch),l=o.activeIcons,i=o.activeTitles,u=e.currentPage,c=e.iconsPerPage,s={iconView:t.getCurrentViewIcons(l,c,u),titleView:t.getCurrentViewIcons(i,c,u),totalPage:Math.ceil(l.length/c)};return""!==r.viewPage&&(s.viewPage=e.currentPage+1),s}},{key:"getActiveIcons",value:function(e,t,r){var n=c(e),a=c(t);if(""===r||null===r)return{activeIcons:n,activeTitles:a};var o=[],i=[];return n.forEach(function(e,n){(0,l.fuzzySearch)(r,t[n])&&(o.push(e),i.push(t[n]))}),{activeIcons:o,activeTitles:i}}},{key:"getCategoryFilteredState",value:function(e,t,r){var n=null,a=(0,l.getSourceType)(r);if(Array.isArray(t)){if("object"!==a)throw new l.InvalidSourceException(a,"object")}else if("array"!==a)throw new l.InvalidSourceException(a,"array");return 0!==e&&Array.isArray(t)&&(n=t[e]||null),(0,l.flattenPossiblyCategorizedSource)(r,n)}},{key:"getCurrentViewIcons",value:function(e,t,r){var n=r*t,a=(r+1)*t;return e.slice(n,a)}}]),f(t,[{key:"renderPager",value:function(){var e=this;if(this.state.totalPage<1)return null;var t=this.props.currentPage>0?n.default.createElement("span",{className:"rfipicons__left",role:"button",tabIndex:0,onKeyDown:function(t){return e.handlePageKeyBoard(t,"prev")},onClick:function(t){return e.handleChangePage(t,"prev")}},n.default.createElement("span",{role:"presentation",className:"rfipicons__label","aria-label":"Left"},n.default.createElement("i",{className:"fipicon-angle-left"}))):null,r=this.props.currentPage<this.state.totalPage-1?n.default.createElement("span",{className:"rfipicons__right",role:"button",tabIndex:0,onKeyDown:function(t){return e.handlePageKeyBoard(t,"next")},onClick:function(t){return e.handleChangePage(t,"next")}},n.default.createElement("span",{role:"presentation",className:"rfipicons__label","aria-label":"Right"},n.default.createElement("i",{className:"fipicon-angle-right"}))):null;return n.default.createElement("div",{className:"rfipicons__pager"},n.default.createElement("div",{className:"rfipicons__num"},n.default.createElement("input",{value:this.state.viewPage,onChange:this.handleChangePage,className:"rfipicons__cp",type:"tel",min:1}),n.default.createElement("span",{className:"rfipicons__sp"},"/"),n.default.createElement("span",{className:"rfipicons__tp"},this.state.totalPage)),n.default.createElement("div",{className:"rfipicons__arrow"},t,r))}},{key:"renderIconView",value:function(){var e=this;return this.state.totalPage>0?this.state.iconView.map(function(t,r){var a=(0,o.default)("rfipicons__icon",{"rfipicons__icon--selected":e.props.value===t||Array.isArray(e.props.value)&&e.props.value.includes(t)});return n.default.createElement("span",{className:a,key:t,title:e.state.titleView[r]},n.default.createElement("span",{className:"rfipicons__ibox",tabIndex:0,role:"button",onClick:function(){return e.handleChangeValue(t)},onKeyDown:function(r){return e.handleValueKeyboard(r,t)}},e.props.renderIcon(t)))}):n.default.createElement("span",{className:"rfipicons__icon--error"},n.default.createElement("span",{className:"rfipicons__ibox--error"},this.props.noIconPlaceholder))}},{key:"render",value:function(){return n.default.createElement("div",{className:"rfipicons"},this.renderPager(),n.default.createElement("div",{className:"rfipicons__selector"},this.renderIconView()))}}]),t}();Object.defineProperty(p,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{categories:a.default.arrayOf(a.default.string),currentCategory:a.default.number,isMulti:a.default.bool.isRequired,icons:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.objectOf(a.default.arrayOf(a.default.string)),a.default.arrayOf(a.default.string)]),value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.oneOfType([a.default.number,a.default.string]))]).isRequired,currentSearch:a.default.string.isRequired,handleChangeValue:a.default.func.isRequired,currentPage:a.default.number.isRequired,iconsPerPage:a.default.number.isRequired,handleChangePage:a.default.func.isRequired,renderIcon:a.default.func.isRequired,noIconPlaceholder:a.default.string.isRequired}}),Object.defineProperty(p,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{categories:null,currentCategory:null,search:null}});var h=p;t.default=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=o(r(1)),a=o(r(0));function o(e){return e&&e.__esModule?e:{default:e}}var l=function(e){return n.default.createElement("div",{className:"rfipsearch"},n.default.createElement("input",{type:"text",className:"rfipsearch__input",value:e.value,onChange:e.handleSearch,placeholder:e.placeholder}))};l.propTypes={handleSearch:a.default.func.isRequired,value:a.default.string.isRequired,placeholder:a.default.string.isRequired};var i=l;t.default=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=o(r(1)),a=o(r(0));function o(e){return e&&e.__esModule?e:{default:e}}function l(e){return(l="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 i(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var u=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){return!t||"object"!==l(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}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),r=t,(a=[{key:"render",value:function(){return n.default.createElement("div",{className:"rfipcategory"},n.default.createElement("select",{className:"rfipcategory__select",onChange:this.props.handleCategory,value:this.props.value},this.props.categories.map(function(e,t){return n.default.createElement("option",{className:"rfipcategory__select__option",key:e,value:t},e)})),n.default.createElement("i",{className:"fipicon-angle-down",role:"presentation","aria-label":"Open"}))}}])&&i(r.prototype,a),t}();Object.defineProperty(u,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{handleCategory:a.default.func.isRequired,value:a.default.number.isRequired,categories:a.default.arrayOf(a.default.string).isRequired}});var c=u;t.default=c},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=c(r(1)),a=c(r(0)),o=c(r(10)),l=c(r(9)),i=c(r(8)),u=r(2);function c(e){return e&&e.__esModule?e:{default:e}}function s(e){return(s="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 f(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function d(e,t,r){return t&&f(e.prototype,t),r&&f(e,r),e}function p(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var h=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==s(n)&&"function"!=typeof n?p(this):n,Object.defineProperty(p(r),"handleCategory",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=parseInt(e.target.value,10);Number.isNaN(t)&&(t=0),r.props.handleChangeCategory(t),r.props.handleChangePage(0)}}),Object.defineProperty(p(r),"handleSearch",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.target.value;r.props.handleChangeSearch(t)}}),r.state={},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,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),d(t,null,[{key:"getDerivedStateFromProps",value:function(e){var t=(0,u.getPossibleCategories)(e.icons);return null!==t&&(t=[e.allCatPlaceholder].concat(function(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}(t))),{categories:t,searchString:e.currentSearch}}}]),d(t,[{key:"render",value:function(){return n.default.createElement("div",{className:"rfipdropdown__selector"},this.props.showSearch?n.default.createElement(l.default,{handleSearch:this.handleSearch,value:this.state.searchString,placeholder:this.props.searchPlaceholder}):null,this.props.showCategory&&this.state.categories&&this.state.categories.length?n.default.createElement(o.default,{handleCategory:this.handleCategory,value:this.props.currentCategory,categories:this.state.categories}):null,n.default.createElement(i.default,{categories:this.state.categories,currentCategory:this.props.currentCategory,isMulti:this.props.isMulti,icons:this.props.icons,search:this.props.search,value:this.props.value,currentSearch:this.props.currentSearch,handleChangeValue:this.props.handleChangeValue,currentPage:this.props.currentPage,iconsPerPage:this.props.iconsPerPage,handleChangePage:this.props.handleChangePage,renderIcon:this.props.renderIcon,noIconPlaceholder:this.props.noIconPlaceholder}))}}]),t}();Object.defineProperty(h,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{isMulti:a.default.bool.isRequired,value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.any)]).isRequired,currentCategory:a.default.number.isRequired,currentPage:a.default.number.isRequired,currentSearch:a.default.string.isRequired,icons:a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.object,a.default.arrayOf(a.default.string)]),showCategory:a.default.bool.isRequired,showSearch:a.default.bool.isRequired,iconsPerPage:a.default.number.isRequired,allCatPlaceholder:a.default.string.isRequired,searchPlaceholder:a.default.string.isRequired,noIconPlaceholder:a.default.string.isRequired,renderIcon:a.default.func.isRequired,handleChangeValue:a.default.func.isRequired,handleChangeCategory:a.default.func.isRequired,handleChangePage:a.default.func.isRequired,handleChangeSearch:a.default.func.isRequired}}),Object.defineProperty(h,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{search:null}});var y=h;t.default=y},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=l(r(1)),a=l(r(0)),o=l(r(3));function l(e){return e&&e.__esModule?e:{default:e}}function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(){return(u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}function c(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function s(e,t){return!t||"object"!==i(t)&&"function"!=typeof t?f(e):t}function f(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var d=function(e){function t(){var e,r,a;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var o=arguments.length,l=new Array(o),i=0;i<o;i++)l[i]=arguments[i];return s(a,(r=a=s(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(l))),Object.defineProperty(f(a),"handleClick",{configurable:!0,enumerable:!0,writable:!0,value:function(){a.props.onClick()}}),Object.defineProperty(f(a),"handleKeyDown",{configurable:!0,enumerable:!0,writable:!0,value:function(e){32!==e.keyCode&&13!==e.keyCode||a.props.onClick()}}),Object.defineProperty(f(a),"handleDelete",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){e.stopPropagation(),a.props.handleDeleteValue(t)}}),Object.defineProperty(f(a),"handleDeleteKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){32!==e.keyCode&&13!==e.keyCode||a.props.handleDeleteValue(t)}}),Object.defineProperty(f(a),"renderEmptyIcon",{configurable:!0,enumerable:!0,writable:!0,value:function(){return n.default.createElement("span",{className:"rfipbtn__icon--empty"},a.props.noSelectedPlaceholder)}}),r))}var r,a;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),r=t,(a=[{key:"renderIcon",value:function(e){var t=this;return""===e||null===e||void 0===e?this.renderEmptyIcon():n.default.createElement("span",{className:"rfipbtn__icon",key:e},n.default.createElement("span",{className:"rfipbtn__elm"},this.props.renderIcon(e)),n.default.createElement("span",{className:"rfipbtn__del",onClick:function(r){return t.handleDelete(r,e)},onKeyDown:function(r){return t.handleDeleteKeyboard(r,e)},tabIndex:0,role:"button"},"×"))}},{key:"renderCurrentIcons",value:function(){var e=this;return this.props.isMulti?this.props.value.length?this.props.value.map(function(t){return e.renderIcon(t)}):this.renderEmptyIcon():this.renderIcon(this.props.value)}},{key:"render",value:function(){var e={onClick:this.handleClick,onKeyDown:this.handleKeyDown,onFocus:this.handleFocus,onBlur:this.handleBlur,tabIndex:0},t=(0,o.default)("rfipbtn__button","rfipbtn__button--".concat(this.props.isOpen?"open":"close")),r=(0,o.default)(this.props.className);return n.default.createElement("div",u({className:r,ref:this.props.domRef},e),n.default.createElement("div",{className:"rfipbtn__current"},this.renderCurrentIcons()),n.default.createElement("div",{className:t},n.default.createElement("i",{className:"fipicon-angle-down",role:"presentation","aria-label":"Open"})))}}])&&c(r.prototype,a),t}();Object.defineProperty(d,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{className:a.default.string.isRequired,isOpen:a.default.bool.isRequired,onClick:a.default.func.isRequired,domRef:a.default.object.isRequired,isMulti:a.default.bool.isRequired,value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.oneOfType([a.default.number,a.default.string]))]).isRequired,renderIcon:a.default.func.isRequired,handleDeleteValue:a.default.func.isRequired,noSelectedPlaceholder:a.default.string.isRequired}});var p=d;t.default=p},function(e,t){e.exports=a},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=f(r(1)),a=f(r(0)),o=f(r(3)),l=r(13),i=f(r(12)),u=f(r(11)),c=f(r(7)),s=r(2);function f(e){return e&&e.__esModule?e:{default:e}}function d(e){return(d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function p(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function h(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function y(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function b(e,t,r){return t&&y(e.prototype,t),r&&y(e,r),e}function g(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var m=[],v="",P=function(e){function t(e){var r,a;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,a=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!a||"object"!==d(a)&&"function"!=typeof a?g(this):a,Object.defineProperty(g(r),"handleOuterClick",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.target;r.isClickWithin(t)||r.closeDropdown()}}),Object.defineProperty(g(r),"handleEscapeKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e){27===e.keyCode&&r.closeDropdown()}}),Object.defineProperty(g(r),"isClickWithin",{configurable:!0,enumerable:!0,writable:!0,value:function(e){return r.fipButtonRef.current.contains(e)||r.fipDropDownRef.current&&r.fipDropDownRef.current.contains(e)}}),Object.defineProperty(g(r),"handleToggle",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.setState(function(e){return r.handleDropDown(!e.isOpen,!1)})}}),Object.defineProperty(g(r),"closeDropdown",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.handleDropDown(!1)}}),Object.defineProperty(g(r),"handleDropDown",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],a={isOpen:e};return a.elemClass=t.getDerivedClassName("rfip",r.props.theme,r.props.isMulti,e),a.btnClass=t.getDerivedClassName("rfipbtn",r.props.theme,r.props.isMulti,e),a.ddClass=t.getDerivedClassName("rfipdropdown",r.props.theme,r.props.isMulti,e),n&&r.setState(a),a}}),Object.defineProperty(g(r),"handleChangeValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t;r.props.isMulti?(t=p(r.state.value)).includes(e)?(t=t.filter(function(t){return t!==e})).length||(t=m):t.push(e):t=e===r.state.value?v:e,r.setState({value:t,isOpen:!r.props.closeOnSelect}),r.props.onChange(t)}}),Object.defineProperty(g(r),"handleDeleteValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var n;n=r.props.isMulti?r.state.value.filter(function(t){return t!==e}):t.getDerivedValue(n,r.props.isMulti),r.setState({value:n}),r.props.onChange(n)}}),Object.defineProperty(g(r),"handleChangePage",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentPage:e})}}),Object.defineProperty(g(r),"handleChangeCategory",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentCategory:e,currentPage:0})}}),Object.defineProperty(g(r),"handleChangeSearch",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentSearch:e,currentPage:0})}}),Object.defineProperty(g(r),"resetPortalStyle",{configurable:!0,enumerable:!0,writable:!0,value:function(e){["maxHeight","paddingTop","paddingBottom"].forEach(function(t){e.style[t]=null})}}),Object.defineProperty(g(r),"handlePortalEnter",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t);var n=getComputedStyle(t);r.fipPortalComputedStyle={height:n.height,paddingTop:n.paddingTop,paddingBottom:n.paddingBottom},["maxHeight","paddingTop","paddingBottom"].forEach(function(e){t.style[e]="0px"})}}),Object.defineProperty(g(r),"handlePortalEntering",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];t.style.maxHeight=r.fipPortalComputedStyle.height,t.style.paddingTop=r.fipPortalComputedStyle.paddingTop,t.style.paddingBottom=r.fipPortalComputedStyle.paddingBottom}}),Object.defineProperty(g(r),"handlePortalEntered",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t),r.props.showSearch&&void 0===window.orientation&&-1===navigator.userAgent.indexOf("IEMobile")&&t.querySelector(".rfipsearch__input").focus()}}),Object.defineProperty(g(r),"handlePortalExit",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t);var n=getComputedStyle(t).height;t.style.maxHeight=n}}),Object.defineProperty(g(r),"handlePortalExiting",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];t.style.maxHeight="0px",t.style.paddingTop="0px",t.style.paddingBottom="0px"}}),Object.defineProperty(g(r),"renderIcon",{configurable:!0,enumerable:!0,writable:!0,value:function(e){if("function"==typeof r.props.renderFunc)return r.props.renderFunc(e);if("class"===r.props.renderUsing)return n.default.createElement("i",{className:e});var t=h({},r.props.renderUsing,r.props.convertHex?(0,s.convertToHex)(e):e);return n.default.createElement("i",t)}}),r.fipButtonRef=n.default.createRef(),r.fipDropDownRef=n.default.createRef(),r.state={currentCategory:0,currentPage:0,isOpen:!1,currentSearch:""},r.fipPortalComputedStyle=null,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,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),b(t,null,[{key:"getDerivedStateFromProps",value:function(e,r){var n={};return n.elemClass=t.getDerivedClassName("rfip",e.theme,e.isMulti,r.isOpen),n.btnClass=t.getDerivedClassName("rfipbtn",e.theme,e.isMulti,r.isOpen),n.ddClass=t.getDerivedClassName("rfipdropdown",e.theme,e.isMulti,r.isOpen),n.value=t.getDerivedValue(e.value,e.isMulti),e.showCategory||(n.currentCategory=0,n.currentPage=0),e.showSearch||(n.currentSearch="",n.currentPage=0),n}},{key:"getDerivedClassName",value:function(e,t,r,n){return(0,o.default)(e,"".concat(e,"--").concat(t),h({},"".concat(e,"--multi"),r),"".concat(e,"--").concat(n?"open":"close"))}},{key:"getDerivedValue",value:function(e,t){var r=e;return t?r=Array.isArray(e)?p(e):m:"number"!=typeof e&&"string"!=typeof e&&(r=v),r}}]),b(t,[{key:"componentDidMount",value:function(){var e=this;["click"].forEach(function(t){document.addEventListener(t,e.handleOuterClick,!1)}),document.addEventListener("keydown",this.handleEscapeKeyboard,!1),this.props.onChange(this.state.value)}},{key:"componentWillUnmount",value:function(){var e=this;["click"].forEach(function(t){document.removeEventListener(t,e.handleOuterClick,!1)}),document.removeEventListener("keydown",this.handleEscapeKeyboard,!1)}},{key:"render",value:function(){var e={currentCategory:this.state.currentCategory,currentPage:this.state.currentPage,currentSearch:this.state.currentSearch,value:this.state.value,isMulti:this.props.isMulti,icons:this.props.icons,search:this.props.search,showCategory:this.props.showCategory,showSearch:this.props.showSearch,iconsPerPage:this.props.iconsPerPage,allCatPlaceholder:this.props.allCatPlaceholder,searchPlaceholder:this.props.searchPlaceholder,noIconPlaceholder:this.props.noIconPlaceholder,renderIcon:this.renderIcon,handleChangeValue:this.handleChangeValue,handleChangeCategory:this.handleChangeCategory,handleChangePage:this.handleChangePage,handleChangeSearch:this.handleChangeSearch};return n.default.createElement("div",{className:this.state.elemClass,ref:this.fipRef},n.default.createElement(i.default,{className:this.state.btnClass,isOpen:this.state.isOpen,onClick:this.handleToggle,domRef:this.fipButtonRef,isMulti:this.props.isMulti,value:this.state.value,renderIcon:this.renderIcon,handleDeleteValue:this.handleDeleteValue,noSelectedPlaceholder:this.props.noSelectedPlaceholder}),n.default.createElement(l.CSSTransition,{classNames:"fipappear",timeout:300,in:this.state.isOpen,unmountOnExit:!0,onEnter:this.handlePortalEnter,onEntering:this.handlePortalEntering,onEntered:this.handlePortalEntered,onExit:this.handlePortalExit,onExiting:this.handlePortalExiting},n.default.createElement(c.default,{appendRoot:this.props.appendTo,domRef:this.fipDropDownRef,btnRef:this.fipButtonRef,className:this.state.ddClass},n.default.createElement(u.default,e))))}}]),t}();Object.defineProperty(P,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{icons:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.objectOf(a.default.arrayOf(a.default.string)),a.default.arrayOf(a.default.string)]),iconsPerPage:a.default.number,theme:a.default.string,onChange:a.default.func.isRequired,showCategory:a.default.bool,showSearch:a.default.bool,value:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.number,a.default.string]),isMulti:a.default.bool,renderUsing:a.default.string,convertHex:a.default.bool,renderFunc:a.default.func,appendTo:a.default.oneOfType([a.default.bool,a.default.string]),allCatPlaceholder:a.default.string,searchPlaceholder:a.default.string,noIconPlaceholder:a.default.string,noSelectedPlaceholder:a.default.string,closeOnSelect:a.default.bool}}),Object.defineProperty(P,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{search:null,iconsPerPage:20,theme:"default",showCategory:!0,showSearch:!0,value:null,isMulti:!1,renderUsing:"class",convertHex:!0,renderFunc:null,appendTo:!1,allCatPlaceholder:"Show from all",searchPlaceholder:"Search Icons",noIconPlaceholder:"No icons found",noSelectedPlaceholder:"Select icon",closeOnSelect:!1}}),Object.defineProperty(P,"displayName",{configurable:!0,enumerable:!0,writable:!0,value:"FontIconPicker"});var O=P;t.default=O},function(e,t,r){"use strict";var n;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=((n=r(14))&&n.__esModule?n:{default:n}).default;t.default=a}]).default});
|
970 |
//# sourceMappingURL=fonticonpicker.react.js.map
|
971 |
|
972 |
/***/ }),
|
@@ -978,9 +994,9 @@ module.exports = {"500px":{"changes":["4.4","5.0.0"],"ligatures":[],"search":{"t
|
|
978 |
/*! exports used: default */
|
979 |
/***/ (function(module, exports, __webpack_require__) {
|
980 |
|
981 |
-
var baseTimes = __webpack_require__(/*! ./_baseTimes */
|
982 |
-
castFunction = __webpack_require__(/*! ./_castFunction */
|
983 |
-
toInteger = __webpack_require__(/*! ./toInteger */
|
984 |
|
985 |
/** Used as references for various `Number` constants. */
|
986 |
var MAX_SAFE_INTEGER = 9007199254740991;
|
@@ -1040,7 +1056,7 @@ module.exports = times;
|
|
1040 |
/*! all exports used */
|
1041 |
/***/ (function(module, exports, __webpack_require__) {
|
1042 |
|
1043 |
-
var freeGlobal = __webpack_require__(/*! ./_freeGlobal */
|
1044 |
|
1045 |
/** Detect free variable `self`. */
|
1046 |
var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
|
@@ -1147,35 +1163,22 @@ module.exports = isArray;
|
|
1147 |
*/
|
1148 |
|
1149 |
if (process.env.NODE_ENV !== 'production') {
|
1150 |
-
var ReactIs = __webpack_require__(/*! react-is */
|
1151 |
|
1152 |
// By explicitly using `prop-types` you are opting into new development behavior.
|
1153 |
// http://fb.me/prop-types-in-prod
|
1154 |
var throwOnDirectAccess = true;
|
1155 |
-
module.exports = __webpack_require__(/*! ./factoryWithTypeCheckers */
|
1156 |
} else {
|
1157 |
// By explicitly using `prop-types` you are opting into new production behavior.
|
1158 |
// http://fb.me/prop-types-in-prod
|
1159 |
-
module.exports = __webpack_require__(/*! ./factoryWithThrowingShims */
|
1160 |
}
|
1161 |
|
1162 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
1163 |
|
1164 |
/***/ }),
|
1165 |
/* 16 */
|
1166 |
-
/*!*******************************************************!*\
|
1167 |
-
!*** ./node_modules/core-js/library/modules/_core.js ***!
|
1168 |
-
\*******************************************************/
|
1169 |
-
/*! dynamic exports provided */
|
1170 |
-
/*! all exports used */
|
1171 |
-
/***/ (function(module, exports) {
|
1172 |
-
|
1173 |
-
var core = module.exports = { version: '2.5.6' };
|
1174 |
-
if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef
|
1175 |
-
|
1176 |
-
|
1177 |
-
/***/ }),
|
1178 |
-
/* 17 */
|
1179 |
/*!************************************!*\
|
1180 |
!*** ./node_modules/lodash/map.js ***!
|
1181 |
\************************************/
|
@@ -1183,9 +1186,9 @@ if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef
|
|
1183 |
/*! exports used: default */
|
1184 |
/***/ (function(module, exports, __webpack_require__) {
|
1185 |
|
1186 |
-
var arrayMap = __webpack_require__(/*! ./_arrayMap */
|
1187 |
-
baseIteratee = __webpack_require__(/*! ./_baseIteratee */
|
1188 |
-
baseMap = __webpack_require__(/*! ./_baseMap */
|
1189 |
isArray = __webpack_require__(/*! ./isArray */ 14);
|
1190 |
|
1191 |
/**
|
@@ -1238,6 +1241,19 @@ function map(collection, iteratee) {
|
|
1238 |
module.exports = map;
|
1239 |
|
1240 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1241 |
/***/ }),
|
1242 |
/* 18 */
|
1243 |
/*!*********************************************!*\
|
@@ -1483,8 +1499,8 @@ if (typeof __g == 'number') __g = global; // eslint-disable-line no-undef
|
|
1483 |
/*! all exports used */
|
1484 |
/***/ (function(module, exports, __webpack_require__) {
|
1485 |
|
1486 |
-
var baseIsNative = __webpack_require__(/*! ./_baseIsNative */
|
1487 |
-
getValue = __webpack_require__(/*! ./_getValue */
|
1488 |
|
1489 |
/**
|
1490 |
* Gets the native function at `key` of `object`.
|
@@ -1512,8 +1528,8 @@ module.exports = getNative;
|
|
1512 |
/***/ (function(module, exports, __webpack_require__) {
|
1513 |
|
1514 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 27),
|
1515 |
-
getRawTag = __webpack_require__(/*! ./_getRawTag */
|
1516 |
-
objectToString = __webpack_require__(/*! ./_objectToString */
|
1517 |
|
1518 |
/** `Object#toString` result references. */
|
1519 |
var nullTag = '[object Null]',
|
@@ -1551,8 +1567,8 @@ module.exports = baseGetTag;
|
|
1551 |
/***/ (function(module, exports, __webpack_require__) {
|
1552 |
|
1553 |
var global = __webpack_require__(/*! ./_global */ 20);
|
1554 |
-
var core = __webpack_require__(/*! ./_core */
|
1555 |
-
var ctx = __webpack_require__(/*! ./_ctx */
|
1556 |
var hide = __webpack_require__(/*! ./_hide */ 36);
|
1557 |
var has = __webpack_require__(/*! ./_has */ 26);
|
1558 |
var PROTOTYPE = 'prototype';
|
@@ -1623,9 +1639,9 @@ module.exports = $export;
|
|
1623 |
/*! all exports used */
|
1624 |
/***/ (function(module, exports, __webpack_require__) {
|
1625 |
|
1626 |
-
var anObject = __webpack_require__(/*! ./_an-object */
|
1627 |
-
var IE8_DOM_DEFINE = __webpack_require__(/*! ./_ie8-dom-define */
|
1628 |
-
var toPrimitive = __webpack_require__(/*! ./_to-primitive */
|
1629 |
var dP = Object.defineProperty;
|
1630 |
|
1631 |
exports.f = __webpack_require__(/*! ./_descriptors */ 25) ? Object.defineProperty : function defineProperty(O, P, Attributes) {
|
@@ -1697,8 +1713,8 @@ module.exports = Symbol;
|
|
1697 |
/*! all exports used */
|
1698 |
/***/ (function(module, exports, __webpack_require__) {
|
1699 |
|
1700 |
-
var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */
|
1701 |
-
baseKeys = __webpack_require__(/*! ./_baseKeys */
|
1702 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 29);
|
1703 |
|
1704 |
/**
|
@@ -1745,8 +1761,8 @@ module.exports = keys;
|
|
1745 |
/*! all exports used */
|
1746 |
/***/ (function(module, exports, __webpack_require__) {
|
1747 |
|
1748 |
-
var isFunction = __webpack_require__(/*! ./isFunction */
|
1749 |
-
isLength = __webpack_require__(/*! ./isLength */
|
1750 |
|
1751 |
/**
|
1752 |
* Checks if `value` is array-like. A value is considered array-like if it's
|
@@ -1790,9 +1806,9 @@ module.exports = isArrayLike;
|
|
1790 |
/***/ (function(module, exports, __webpack_require__) {
|
1791 |
|
1792 |
var isArray = __webpack_require__(/*! ./isArray */ 14),
|
1793 |
-
isKey = __webpack_require__(/*! ./_isKey */
|
1794 |
-
stringToPath = __webpack_require__(/*! ./_stringToPath */
|
1795 |
-
toString = __webpack_require__(/*! ./toString */
|
1796 |
|
1797 |
/**
|
1798 |
* Casts `value` to a path array if it's not one.
|
@@ -1821,7 +1837,7 @@ module.exports = castPath;
|
|
1821 |
/*! all exports used */
|
1822 |
/***/ (function(module, exports, __webpack_require__) {
|
1823 |
|
1824 |
-
var isSymbol = __webpack_require__(/*! ./isSymbol */
|
1825 |
|
1826 |
/** Used as references for various `Number` constants. */
|
1827 |
var INFINITY = 1 / 0;
|
@@ -1990,9 +2006,9 @@ if (process.env.NODE_ENV === 'production') {
|
|
1990 |
// DCE check should happen before ReactDOM bundle executes so that
|
1991 |
// DevTools can report bad minification during injection.
|
1992 |
checkDCE();
|
1993 |
-
module.exports = __webpack_require__(/*! ./cjs/react-dom.production.min.js */
|
1994 |
} else {
|
1995 |
-
module.exports = __webpack_require__(/*! ./cjs/react-dom.development.js */
|
1996 |
}
|
1997 |
|
1998 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
@@ -2016,11 +2032,11 @@ if (process.env.NODE_ENV === 'production') {
|
|
2016 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return getBlockMap; });
|
2017 |
/* unused harmony export getRegisteredBlockComponents */
|
2018 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return getPostLayoutConfig; });
|
2019 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__post_title_edit__ = __webpack_require__(/*! ./post-title/edit */
|
2020 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_meta_edit__ = __webpack_require__(/*! ./post-meta/edit */
|
2021 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__post_image_edit__ = __webpack_require__(/*! ./post-image/edit */
|
2022 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__post_excerpt_edit__ = __webpack_require__(/*! ./post-excerpt/edit */
|
2023 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__post_button_edit__ = __webpack_require__(/*! ./post-button/edit */
|
2024 |
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
2025 |
|
2026 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
@@ -2212,8 +2228,8 @@ var getPostLayoutConfig = function getPostLayoutConfig(innerBlocks) {
|
|
2212 |
/*! all exports used */
|
2213 |
/***/ (function(module, exports, __webpack_require__) {
|
2214 |
|
2215 |
-
var assignValue = __webpack_require__(/*! ./_assignValue */
|
2216 |
-
baseAssignValue = __webpack_require__(/*! ./_baseAssignValue */
|
2217 |
|
2218 |
/**
|
2219 |
* Copies properties of `source` to `object`.
|
@@ -2264,7 +2280,7 @@ module.exports = copyObject;
|
|
2264 |
/***/ (function(module, exports, __webpack_require__) {
|
2265 |
|
2266 |
var dP = __webpack_require__(/*! ./_object-dp */ 24);
|
2267 |
-
var createDesc = __webpack_require__(/*! ./_property-desc */
|
2268 |
module.exports = __webpack_require__(/*! ./_descriptors */ 25) ? function (object, key, value) {
|
2269 |
return dP.f(object, key, createDesc(1, value));
|
2270 |
} : function (object, key, value) {
|
@@ -2315,8 +2331,8 @@ module.exports = function (exec) {
|
|
2315 |
/***/ (function(module, exports, __webpack_require__) {
|
2316 |
|
2317 |
// to indexed object, toObject with fallback for non-array-like ES3 strings
|
2318 |
-
var IObject = __webpack_require__(/*! ./_iobject */
|
2319 |
-
var defined = __webpack_require__(/*! ./_defined */
|
2320 |
module.exports = function (it) {
|
2321 |
return IObject(defined(it));
|
2322 |
};
|
@@ -2331,8 +2347,8 @@ module.exports = function (it) {
|
|
2331 |
/*! all exports used */
|
2332 |
/***/ (function(module, exports, __webpack_require__) {
|
2333 |
|
2334 |
-
var store = __webpack_require__(/*! ./_shared */
|
2335 |
-
var uid = __webpack_require__(/*! ./_uid */
|
2336 |
var Symbol = __webpack_require__(/*! ./_global */ 20).Symbol;
|
2337 |
var USE_SYMBOL = typeof Symbol == 'function';
|
2338 |
|
@@ -2354,7 +2370,7 @@ $exports.store = store;
|
|
2354 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
2355 |
|
2356 |
"use strict";
|
2357 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */
|
2358 |
|
2359 |
|
2360 |
function css() {
|
@@ -3320,6 +3336,25 @@ exports.canUseDOM = canUseDOM;
|
|
3320 |
|
3321 |
/***/ }),
|
3322 |
/* 43 */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3323 |
/*!************************************************************!*\
|
3324 |
!*** ./node_modules/core-js/library/modules/_an-object.js ***!
|
3325 |
\************************************************************/
|
@@ -3335,7 +3370,7 @@ module.exports = function (it) {
|
|
3335 |
|
3336 |
|
3337 |
/***/ }),
|
3338 |
-
/*
|
3339 |
/*!******************************************!*\
|
3340 |
!*** ./node_modules/lodash/_arrayMap.js ***!
|
3341 |
\******************************************/
|
@@ -3367,7 +3402,7 @@ module.exports = arrayMap;
|
|
3367 |
|
3368 |
|
3369 |
/***/ }),
|
3370 |
-
/*
|
3371 |
/*!*******************************************!*\
|
3372 |
!*** ./node_modules/lodash/_ListCache.js ***!
|
3373 |
\*******************************************/
|
@@ -3375,11 +3410,11 @@ module.exports = arrayMap;
|
|
3375 |
/*! all exports used */
|
3376 |
/***/ (function(module, exports, __webpack_require__) {
|
3377 |
|
3378 |
-
var listCacheClear = __webpack_require__(/*! ./_listCacheClear */
|
3379 |
-
listCacheDelete = __webpack_require__(/*! ./_listCacheDelete */
|
3380 |
-
listCacheGet = __webpack_require__(/*! ./_listCacheGet */
|
3381 |
-
listCacheHas = __webpack_require__(/*! ./_listCacheHas */
|
3382 |
-
listCacheSet = __webpack_require__(/*! ./_listCacheSet */
|
3383 |
|
3384 |
/**
|
3385 |
* Creates an list cache object.
|
@@ -3410,7 +3445,7 @@ module.exports = ListCache;
|
|
3410 |
|
3411 |
|
3412 |
/***/ }),
|
3413 |
-
/*
|
3414 |
/*!**********************************************!*\
|
3415 |
!*** ./node_modules/lodash/_assocIndexOf.js ***!
|
3416 |
\**********************************************/
|
@@ -3418,7 +3453,7 @@ module.exports = ListCache;
|
|
3418 |
/*! all exports used */
|
3419 |
/***/ (function(module, exports, __webpack_require__) {
|
3420 |
|
3421 |
-
var eq = __webpack_require__(/*! ./eq */
|
3422 |
|
3423 |
/**
|
3424 |
* Gets the index at which the `key` is found in `array` of key-value pairs.
|
@@ -3442,7 +3477,7 @@ module.exports = assocIndexOf;
|
|
3442 |
|
3443 |
|
3444 |
/***/ }),
|
3445 |
-
/*
|
3446 |
/*!***********************************!*\
|
3447 |
!*** ./node_modules/lodash/eq.js ***!
|
3448 |
\***********************************/
|
@@ -3490,7 +3525,7 @@ module.exports = eq;
|
|
3490 |
|
3491 |
|
3492 |
/***/ }),
|
3493 |
-
/*
|
3494 |
/*!**********************************************!*\
|
3495 |
!*** ./node_modules/lodash/_nativeCreate.js ***!
|
3496 |
\**********************************************/
|
@@ -3507,7 +3542,7 @@ module.exports = nativeCreate;
|
|
3507 |
|
3508 |
|
3509 |
/***/ }),
|
3510 |
-
/*
|
3511 |
/*!********************************************!*\
|
3512 |
!*** ./node_modules/lodash/_getMapData.js ***!
|
3513 |
\********************************************/
|
@@ -3515,7 +3550,7 @@ module.exports = nativeCreate;
|
|
3515 |
/*! all exports used */
|
3516 |
/***/ (function(module, exports, __webpack_require__) {
|
3517 |
|
3518 |
-
var isKeyable = __webpack_require__(/*! ./_isKeyable */
|
3519 |
|
3520 |
/**
|
3521 |
* Gets the data for `map`.
|
@@ -3536,7 +3571,7 @@ module.exports = getMapData;
|
|
3536 |
|
3537 |
|
3538 |
/***/ }),
|
3539 |
-
/*
|
3540 |
/*!*****************************************!*\
|
3541 |
!*** ./node_modules/lodash/_isIndex.js ***!
|
3542 |
\*****************************************/
|
@@ -3572,7 +3607,7 @@ module.exports = isIndex;
|
|
3572 |
|
3573 |
|
3574 |
/***/ }),
|
3575 |
-
/*
|
3576 |
/*!*******************************************!*\
|
3577 |
!*** ./node_modules/lodash/_baseUnary.js ***!
|
3578 |
\*******************************************/
|
@@ -3597,7 +3632,7 @@ module.exports = baseUnary;
|
|
3597 |
|
3598 |
|
3599 |
/***/ }),
|
3600 |
-
/*
|
3601 |
/*!******************************************!*\
|
3602 |
!*** ./node_modules/lodash/_nodeUtil.js ***!
|
3603 |
\******************************************/
|
@@ -3605,7 +3640,7 @@ module.exports = baseUnary;
|
|
3605 |
/*! all exports used */
|
3606 |
/***/ (function(module, exports, __webpack_require__) {
|
3607 |
|
3608 |
-
/* WEBPACK VAR INJECTION */(function(module) {var freeGlobal = __webpack_require__(/*! ./_freeGlobal */
|
3609 |
|
3610 |
/** Detect free variable `exports`. */
|
3611 |
var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
|
@@ -3636,10 +3671,10 @@ var nodeUtil = (function() {
|
|
3636 |
|
3637 |
module.exports = nodeUtil;
|
3638 |
|
3639 |
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */
|
3640 |
|
3641 |
/***/ }),
|
3642 |
-
/*
|
3643 |
/*!*********************************************!*\
|
3644 |
!*** ./node_modules/lodash/_isPrototype.js ***!
|
3645 |
\*********************************************/
|
@@ -3668,7 +3703,7 @@ module.exports = isPrototype;
|
|
3668 |
|
3669 |
|
3670 |
/***/ }),
|
3671 |
-
/*
|
3672 |
/*!****************************************!*\
|
3673 |
!*** ./node_modules/lodash/_getTag.js ***!
|
3674 |
\****************************************/
|
@@ -3676,13 +3711,13 @@ module.exports = isPrototype;
|
|
3676 |
/*! all exports used */
|
3677 |
/***/ (function(module, exports, __webpack_require__) {
|
3678 |
|
3679 |
-
var DataView = __webpack_require__(/*! ./_DataView */
|
3680 |
-
Map = __webpack_require__(/*! ./_Map */
|
3681 |
-
Promise = __webpack_require__(/*! ./_Promise */
|
3682 |
-
Set = __webpack_require__(/*! ./_Set */
|
3683 |
-
WeakMap = __webpack_require__(/*! ./_WeakMap */
|
3684 |
baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 22),
|
3685 |
-
toSource = __webpack_require__(/*! ./_toSource */
|
3686 |
|
3687 |
/** `Object#toString` result references. */
|
3688 |
var mapTag = '[object Map]',
|
@@ -3737,7 +3772,7 @@ module.exports = getTag;
|
|
3737 |
|
3738 |
|
3739 |
/***/ }),
|
3740 |
-
/*
|
3741 |
/*!*****************************************!*\
|
3742 |
!*** ./node_modules/lodash/_baseGet.js ***!
|
3743 |
\*****************************************/
|
@@ -3772,7 +3807,7 @@ module.exports = baseGet;
|
|
3772 |
|
3773 |
|
3774 |
/***/ }),
|
3775 |
-
/*
|
3776 |
/*!*****************************************!*\
|
3777 |
!*** ./node_modules/lodash/isSymbol.js ***!
|
3778 |
\*****************************************/
|
@@ -3812,7 +3847,7 @@ module.exports = isSymbol;
|
|
3812 |
|
3813 |
|
3814 |
/***/ }),
|
3815 |
-
/*
|
3816 |
/*!*****************************************!*\
|
3817 |
!*** ./node_modules/lodash/identity.js ***!
|
3818 |
\*****************************************/
|
@@ -3844,7 +3879,7 @@ module.exports = identity;
|
|
3844 |
|
3845 |
|
3846 |
/***/ }),
|
3847 |
-
/*
|
3848 |
/*!*********************************************************************************************!*\
|
3849 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
3850 |
\*********************************************************************************************/
|
@@ -3861,7 +3896,7 @@ function _classCallCheck(instance, Constructor) {
|
|
3861 |
}
|
3862 |
|
3863 |
/***/ }),
|
3864 |
-
/*
|
3865 |
/*!******************************************************************************************!*\
|
3866 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
3867 |
\******************************************************************************************/
|
@@ -3888,7 +3923,7 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
3888 |
}
|
3889 |
|
3890 |
/***/ }),
|
3891 |
-
/*
|
3892 |
/*!***************************************************************************************!*\
|
3893 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/inherits.js ***!
|
3894 |
\***************************************************************************************/
|
@@ -3898,7 +3933,7 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
3898 |
|
3899 |
"use strict";
|
3900 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _inherits;
|
3901 |
-
/* harmony import */ var
|
3902 |
|
3903 |
function _inherits(subClass, superClass) {
|
3904 |
if (typeof superClass !== "function" && superClass !== null) {
|
@@ -3912,11 +3947,11 @@ function _inherits(subClass, superClass) {
|
|
3912 |
configurable: true
|
3913 |
}
|
3914 |
});
|
3915 |
-
if (superClass) Object(
|
3916 |
}
|
3917 |
|
3918 |
/***/ }),
|
3919 |
-
/*
|
3920 |
/*!********************************************************************************************************!*\
|
3921 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js ***!
|
3922 |
\********************************************************************************************************/
|
@@ -3926,20 +3961,21 @@ function _inherits(subClass, superClass) {
|
|
3926 |
|
3927 |
"use strict";
|
3928 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _possibleConstructorReturn;
|
3929 |
-
/* harmony import */ var
|
3930 |
-
/* harmony import */ var
|
|
|
3931 |
|
3932 |
|
3933 |
function _possibleConstructorReturn(self, call) {
|
3934 |
-
if (call && (
|
3935 |
return call;
|
3936 |
}
|
3937 |
|
3938 |
-
return Object(
|
3939 |
}
|
3940 |
|
3941 |
/***/ }),
|
3942 |
-
/*
|
3943 |
/*!*********************************************************************************************!*\
|
3944 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js ***!
|
3945 |
\*********************************************************************************************/
|
@@ -3957,7 +3993,7 @@ function _getPrototypeOf(o) {
|
|
3957 |
}
|
3958 |
|
3959 |
/***/ }),
|
3960 |
-
/*
|
3961 |
/*!*********************************************!*\
|
3962 |
!*** ./node_modules/lodash/_assignValue.js ***!
|
3963 |
\*********************************************/
|
@@ -3965,8 +4001,8 @@ function _getPrototypeOf(o) {
|
|
3965 |
/*! all exports used */
|
3966 |
/***/ (function(module, exports, __webpack_require__) {
|
3967 |
|
3968 |
-
var baseAssignValue = __webpack_require__(/*! ./_baseAssignValue */
|
3969 |
-
eq = __webpack_require__(/*! ./eq */
|
3970 |
|
3971 |
/** Used for built-in method references. */
|
3972 |
var objectProto = Object.prototype;
|
@@ -3996,7 +4032,7 @@ module.exports = assignValue;
|
|
3996 |
|
3997 |
|
3998 |
/***/ }),
|
3999 |
-
/*
|
4000 |
/*!********************************************!*\
|
4001 |
!*** ./src/components/box-shadow/index.js ***!
|
4002 |
\********************************************/
|
@@ -4244,7 +4280,33 @@ var BoxShadowControl = function (_Component) {
|
|
4244 |
/* harmony default export */ __webpack_exports__["a"] = (BoxShadowControl);
|
4245 |
|
4246 |
/***/ }),
|
4247 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4248 |
/*!******************************************!*\
|
4249 |
!*** ./src/blocks/price-list/classes.js ***!
|
4250 |
\******************************************/
|
@@ -4302,7 +4364,7 @@ function PositionClasses(attributes) {
|
|
4302 |
/* harmony default export */ __webpack_exports__["a"] = (PositionClasses);
|
4303 |
|
4304 |
/***/ }),
|
4305 |
-
/*
|
4306 |
/*!****************************************!*\
|
4307 |
!*** ./src/blocks/timeline/classes.js ***!
|
4308 |
\****************************************/
|
@@ -4341,7 +4403,7 @@ function ContentTmClasses(attributes) {
|
|
4341 |
/* harmony default export */ __webpack_exports__["a"] = (ContentTmClasses);
|
4342 |
|
4343 |
/***/ }),
|
4344 |
-
/*
|
4345 |
/*!****************************************************************!*\
|
4346 |
!*** ./node_modules/core-js/library/modules/_property-desc.js ***!
|
4347 |
\****************************************************************/
|
@@ -4360,7 +4422,7 @@ module.exports = function (bitmap, value) {
|
|
4360 |
|
4361 |
|
4362 |
/***/ }),
|
4363 |
-
/*
|
4364 |
/*!**************************************************************!*\
|
4365 |
!*** ./node_modules/core-js/library/modules/_object-keys.js ***!
|
4366 |
\**************************************************************/
|
@@ -4369,8 +4431,8 @@ module.exports = function (bitmap, value) {
|
|
4369 |
/***/ (function(module, exports, __webpack_require__) {
|
4370 |
|
4371 |
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
4372 |
-
var $keys = __webpack_require__(/*! ./_object-keys-internal */
|
4373 |
-
var enumBugKeys = __webpack_require__(/*! ./_enum-bug-keys */
|
4374 |
|
4375 |
module.exports = Object.keys || function keys(O) {
|
4376 |
return $keys(O, enumBugKeys);
|
@@ -4378,7 +4440,7 @@ module.exports = Object.keys || function keys(O) {
|
|
4378 |
|
4379 |
|
4380 |
/***/ }),
|
4381 |
-
/*
|
4382 |
/*!**********************************************************!*\
|
4383 |
!*** ./node_modules/core-js/library/modules/_library.js ***!
|
4384 |
\**********************************************************/
|
@@ -4390,7 +4452,7 @@ module.exports = true;
|
|
4390 |
|
4391 |
|
4392 |
/***/ }),
|
4393 |
-
/*
|
4394 |
/*!******************************************************!*\
|
4395 |
!*** ./node_modules/core-js/library/modules/_uid.js ***!
|
4396 |
\******************************************************/
|
@@ -4406,7 +4468,7 @@ module.exports = function (key) {
|
|
4406 |
|
4407 |
|
4408 |
/***/ }),
|
4409 |
-
/*
|
4410 |
/*!*************************************************************!*\
|
4411 |
!*** ./node_modules/core-js/library/modules/_object-pie.js ***!
|
4412 |
\*************************************************************/
|
@@ -4418,7 +4480,7 @@ exports.f = {}.propertyIsEnumerable;
|
|
4418 |
|
4419 |
|
4420 |
/***/ }),
|
4421 |
-
/*
|
4422 |
/*!***************************************!*\
|
4423 |
!*** ./node_modules/lodash/_Stack.js ***!
|
4424 |
\***************************************/
|
@@ -4426,12 +4488,12 @@ exports.f = {}.propertyIsEnumerable;
|
|
4426 |
/*! all exports used */
|
4427 |
/***/ (function(module, exports, __webpack_require__) {
|
4428 |
|
4429 |
-
var ListCache = __webpack_require__(/*! ./_ListCache */
|
4430 |
-
stackClear = __webpack_require__(/*! ./_stackClear */
|
4431 |
-
stackDelete = __webpack_require__(/*! ./_stackDelete */
|
4432 |
-
stackGet = __webpack_require__(/*! ./_stackGet */
|
4433 |
-
stackHas = __webpack_require__(/*! ./_stackHas */
|
4434 |
-
stackSet = __webpack_require__(/*! ./_stackSet */
|
4435 |
|
4436 |
/**
|
4437 |
* Creates a stack cache object to store key-value pairs.
|
@@ -4456,7 +4518,7 @@ module.exports = Stack;
|
|
4456 |
|
4457 |
|
4458 |
/***/ }),
|
4459 |
-
/*
|
4460 |
/*!*************************************!*\
|
4461 |
!*** ./node_modules/lodash/_Map.js ***!
|
4462 |
\*************************************/
|
@@ -4474,7 +4536,7 @@ module.exports = Map;
|
|
4474 |
|
4475 |
|
4476 |
/***/ }),
|
4477 |
-
/*
|
4478 |
/*!***********************************!*\
|
4479 |
!*** (webpack)/buildin/global.js ***!
|
4480 |
\***********************************/
|
@@ -4506,7 +4568,7 @@ module.exports = g;
|
|
4506 |
|
4507 |
|
4508 |
/***/ }),
|
4509 |
-
/*
|
4510 |
/*!******************************************!*\
|
4511 |
!*** ./node_modules/lodash/_MapCache.js ***!
|
4512 |
\******************************************/
|
@@ -4514,11 +4576,11 @@ module.exports = g;
|
|
4514 |
/*! all exports used */
|
4515 |
/***/ (function(module, exports, __webpack_require__) {
|
4516 |
|
4517 |
-
var mapCacheClear = __webpack_require__(/*! ./_mapCacheClear */
|
4518 |
-
mapCacheDelete = __webpack_require__(/*! ./_mapCacheDelete */
|
4519 |
-
mapCacheGet = __webpack_require__(/*! ./_mapCacheGet */
|
4520 |
-
mapCacheHas = __webpack_require__(/*! ./_mapCacheHas */
|
4521 |
-
mapCacheSet = __webpack_require__(/*! ./_mapCacheSet */
|
4522 |
|
4523 |
/**
|
4524 |
* Creates a map cache object to store key-value pairs.
|
@@ -4549,7 +4611,7 @@ module.exports = MapCache;
|
|
4549 |
|
4550 |
|
4551 |
/***/ }),
|
4552 |
-
/*
|
4553 |
/*!*******************************************!*\
|
4554 |
!*** ./node_modules/lodash/_arrayPush.js ***!
|
4555 |
\*******************************************/
|
@@ -4580,7 +4642,7 @@ module.exports = arrayPush;
|
|
4580 |
|
4581 |
|
4582 |
/***/ }),
|
4583 |
-
/*
|
4584 |
/*!********************************************!*\
|
4585 |
!*** ./node_modules/lodash/_getSymbols.js ***!
|
4586 |
\********************************************/
|
@@ -4588,8 +4650,8 @@ module.exports = arrayPush;
|
|
4588 |
/*! all exports used */
|
4589 |
/***/ (function(module, exports, __webpack_require__) {
|
4590 |
|
4591 |
-
var arrayFilter = __webpack_require__(/*! ./_arrayFilter */
|
4592 |
-
stubArray = __webpack_require__(/*! ./stubArray */
|
4593 |
|
4594 |
/** Used for built-in method references. */
|
4595 |
var objectProto = Object.prototype;
|
@@ -4621,7 +4683,7 @@ module.exports = getSymbols;
|
|
4621 |
|
4622 |
|
4623 |
/***/ }),
|
4624 |
-
/*
|
4625 |
/*!********************************************!*\
|
4626 |
!*** ./node_modules/lodash/isArguments.js ***!
|
4627 |
\********************************************/
|
@@ -4629,7 +4691,7 @@ module.exports = getSymbols;
|
|
4629 |
/*! all exports used */
|
4630 |
/***/ (function(module, exports, __webpack_require__) {
|
4631 |
|
4632 |
-
var baseIsArguments = __webpack_require__(/*! ./_baseIsArguments */
|
4633 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
4634 |
|
4635 |
/** Used for built-in method references. */
|
@@ -4668,7 +4730,7 @@ module.exports = isArguments;
|
|
4668 |
|
4669 |
|
4670 |
/***/ }),
|
4671 |
-
/*
|
4672 |
/*!*****************************************!*\
|
4673 |
!*** ./node_modules/lodash/isBuffer.js ***!
|
4674 |
\*****************************************/
|
@@ -4677,7 +4739,7 @@ module.exports = isArguments;
|
|
4677 |
/***/ (function(module, exports, __webpack_require__) {
|
4678 |
|
4679 |
/* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(/*! ./_root */ 12),
|
4680 |
-
stubFalse = __webpack_require__(/*! ./stubFalse */
|
4681 |
|
4682 |
/** Detect free variable `exports`. */
|
4683 |
var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
|
@@ -4715,10 +4777,10 @@ var isBuffer = nativeIsBuffer || stubFalse;
|
|
4715 |
|
4716 |
module.exports = isBuffer;
|
4717 |
|
4718 |
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */
|
4719 |
|
4720 |
/***/ }),
|
4721 |
-
/*
|
4722 |
/*!***********************************!*\
|
4723 |
!*** (webpack)/buildin/module.js ***!
|
4724 |
\***********************************/
|
@@ -4751,7 +4813,7 @@ module.exports = function(module) {
|
|
4751 |
|
4752 |
|
4753 |
/***/ }),
|
4754 |
-
/*
|
4755 |
/*!*****************************************!*\
|
4756 |
!*** ./node_modules/lodash/isLength.js ***!
|
4757 |
\*****************************************/
|
@@ -4797,7 +4859,7 @@ module.exports = isLength;
|
|
4797 |
|
4798 |
|
4799 |
/***/ }),
|
4800 |
-
/*
|
4801 |
/*!***************************************!*\
|
4802 |
!*** ./node_modules/lodash/_isKey.js ***!
|
4803 |
\***************************************/
|
@@ -4806,7 +4868,7 @@ module.exports = isLength;
|
|
4806 |
/***/ (function(module, exports, __webpack_require__) {
|
4807 |
|
4808 |
var isArray = __webpack_require__(/*! ./isArray */ 14),
|
4809 |
-
isSymbol = __webpack_require__(/*! ./isSymbol */
|
4810 |
|
4811 |
/** Used to match property names within property paths. */
|
4812 |
var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,
|
@@ -4837,7 +4899,7 @@ module.exports = isKey;
|
|
4837 |
|
4838 |
|
4839 |
/***/ }),
|
4840 |
-
/*
|
4841 |
/*!***************************************************!*\
|
4842 |
!*** ./node_modules/prop-types/checkPropTypes.js ***!
|
4843 |
\***************************************************/
|
@@ -4858,7 +4920,7 @@ module.exports = isKey;
|
|
4858 |
var printWarning = function() {};
|
4859 |
|
4860 |
if (process.env.NODE_ENV !== 'production') {
|
4861 |
-
var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */
|
4862 |
var loggedTypeFailures = {};
|
4863 |
var has = Function.call.bind(Object.prototype.hasOwnProperty);
|
4864 |
|
@@ -4952,7 +5014,7 @@ module.exports = checkPropTypes;
|
|
4952 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
4953 |
|
4954 |
/***/ }),
|
4955 |
-
/*
|
4956 |
/*!*************************************************************!*\
|
4957 |
!*** ./node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
|
4958 |
\*************************************************************/
|
@@ -4976,7 +5038,7 @@ module.exports = ReactPropTypesSecret;
|
|
4976 |
|
4977 |
|
4978 |
/***/ }),
|
4979 |
-
/*
|
4980 |
/*!*************************************************************!*\
|
4981 |
!*** ./node_modules/@emotion/core/dist/core.browser.esm.js ***!
|
4982 |
\*************************************************************/
|
@@ -4990,17 +5052,17 @@ module.exports = ReactPropTypesSecret;
|
|
4990 |
/* unused harmony export createElement */
|
4991 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return jsx; });
|
4992 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return keyframes; });
|
4993 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inheritsLoose */
|
4994 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 5);
|
4995 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
4996 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_cache__ = __webpack_require__(/*! @emotion/cache */
|
4997 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__emotion_element_57a3a7a3_browser_esm_js__ = __webpack_require__(/*! ./emotion-element-57a3a7a3.browser.esm.js */
|
4998 |
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_3__emotion_element_57a3a7a3_browser_esm_js__["a"]; });
|
4999 |
/* unused harmony reexport ThemeContext */
|
5000 |
/* unused harmony reexport withEmotionCache */
|
5001 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__emotion_utils__ = __webpack_require__(/*! @emotion/utils */
|
5002 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */
|
5003 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */
|
5004 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__emotion_css__ = __webpack_require__(/*! @emotion/css */ 41);
|
5005 |
/* unused harmony reexport css */
|
5006 |
|
@@ -5254,7 +5316,7 @@ var ClassNames = Object(__WEBPACK_IMPORTED_MODULE_3__emotion_element_57a3a7a3_br
|
|
5254 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 6)))
|
5255 |
|
5256 |
/***/ }),
|
5257 |
-
/*
|
5258 |
/*!***************************************************************!*\
|
5259 |
!*** ./node_modules/@emotion/cache/dist/cache.browser.esm.js ***!
|
5260 |
\***************************************************************/
|
@@ -5263,9 +5325,9 @@ var ClassNames = Object(__WEBPACK_IMPORTED_MODULE_3__emotion_element_57a3a7a3_br
|
|
5263 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
5264 |
|
5265 |
"use strict";
|
5266 |
-
/* WEBPACK VAR INJECTION */(function(process) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */
|
5267 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_stylis__ = __webpack_require__(/*! @emotion/stylis */
|
5268 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_weak_memoize__ = __webpack_require__(/*! @emotion/weak-memoize */
|
5269 |
|
5270 |
|
5271 |
|
@@ -5480,7 +5542,7 @@ var createCache = function createCache(options) {
|
|
5480 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 6)))
|
5481 |
|
5482 |
/***/ }),
|
5483 |
-
/*
|
5484 |
/*!***********************************************************************!*\
|
5485 |
!*** ./node_modules/@emotion/serialize/dist/serialize.browser.esm.js ***!
|
5486 |
\***********************************************************************/
|
@@ -5490,9 +5552,9 @@ var createCache = function createCache(options) {
|
|
5490 |
|
5491 |
"use strict";
|
5492 |
/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return serializeStyles; });
|
5493 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_hash__ = __webpack_require__(/*! @emotion/hash */
|
5494 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_unitless__ = __webpack_require__(/*! @emotion/unitless */
|
5495 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_memoize__ = __webpack_require__(/*! @emotion/memoize */
|
5496 |
|
5497 |
|
5498 |
|
@@ -5819,7 +5881,7 @@ var serializeStyles = function serializeStyles(args, registered, mergedProps) {
|
|
5819 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 6)))
|
5820 |
|
5821 |
/***/ }),
|
5822 |
-
/*
|
5823 |
/*!******************************************************************************************************!*\
|
5824 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js ***!
|
5825 |
\******************************************************************************************************/
|
@@ -5829,11 +5891,11 @@ var serializeStyles = function serializeStyles(args, registered, mergedProps) {
|
|
5829 |
|
5830 |
"use strict";
|
5831 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _objectWithoutProperties;
|
5832 |
-
/* harmony import */ var
|
5833 |
|
5834 |
function _objectWithoutProperties(source, excluded) {
|
5835 |
if (source == null) return {};
|
5836 |
-
var target = Object(
|
5837 |
var key, i;
|
5838 |
|
5839 |
if (Object.getOwnPropertySymbols) {
|
@@ -5851,7 +5913,7 @@ function _objectWithoutProperties(source, excluded) {
|
|
5851 |
}
|
5852 |
|
5853 |
/***/ }),
|
5854 |
-
/*
|
5855 |
/*!**************************************************************************************!*\
|
5856 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/extends.js ***!
|
5857 |
\**************************************************************************************/
|
@@ -5880,7 +5942,7 @@ function _extends() {
|
|
5880 |
}
|
5881 |
|
5882 |
/***/ }),
|
5883 |
-
/*
|
5884 |
/*!*******************************************!*\
|
5885 |
!*** ./node_modules/lodash/_baseSlice.js ***!
|
5886 |
\*******************************************/
|
@@ -5922,7 +5984,7 @@ module.exports = baseSlice;
|
|
5922 |
|
5923 |
|
5924 |
/***/ }),
|
5925 |
-
/*
|
5926 |
/*!********************************************!*\
|
5927 |
!*** ./node_modules/lodash/_hasUnicode.js ***!
|
5928 |
\********************************************/
|
@@ -5959,7 +6021,7 @@ module.exports = hasUnicode;
|
|
5959 |
|
5960 |
|
5961 |
/***/ }),
|
5962 |
-
/*
|
5963 |
/*!******************************************!*\
|
5964 |
!*** ./node_modules/lodash/toInteger.js ***!
|
5965 |
\******************************************/
|
@@ -5967,7 +6029,7 @@ module.exports = hasUnicode;
|
|
5967 |
/*! all exports used */
|
5968 |
/***/ (function(module, exports, __webpack_require__) {
|
5969 |
|
5970 |
-
var toFinite = __webpack_require__(/*! ./toFinite */
|
5971 |
|
5972 |
/**
|
5973 |
* Converts `value` to an integer.
|
@@ -6006,7 +6068,7 @@ module.exports = toInteger;
|
|
6006 |
|
6007 |
|
6008 |
/***/ }),
|
6009 |
-
/*
|
6010 |
/*!************************************!*\
|
6011 |
!*** ./src/blocks/post/styling.js ***!
|
6012 |
\************************************/
|
@@ -6499,7 +6561,7 @@ function styling(props) {
|
|
6499 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
6500 |
|
6501 |
/***/ }),
|
6502 |
-
/*
|
6503 |
/*!************************************!*\
|
6504 |
!*** ./src/blocks/post/style.scss ***!
|
6505 |
\************************************/
|
@@ -6509,7 +6571,7 @@ function styling(props) {
|
|
6509 |
// removed by extract-text-webpack-plugin
|
6510 |
|
6511 |
/***/ }),
|
6512 |
-
/*
|
6513 |
/*!*************************************!*\
|
6514 |
!*** ./src/blocks/post/editor.scss ***!
|
6515 |
\*************************************/
|
@@ -6519,7 +6581,7 @@ function styling(props) {
|
|
6519 |
// removed by extract-text-webpack-plugin
|
6520 |
|
6521 |
/***/ }),
|
6522 |
-
/*
|
6523 |
/*!***********************************************!*\
|
6524 |
!*** ./node_modules/ev-emitter/ev-emitter.js ***!
|
6525 |
\***********************************************/
|
@@ -6646,7 +6708,7 @@ return EvEmitter;
|
|
6646 |
|
6647 |
|
6648 |
/***/ }),
|
6649 |
-
/*
|
6650 |
/*!*******************************************!*\
|
6651 |
!*** ./node_modules/get-size/get-size.js ***!
|
6652 |
\*******************************************/
|
@@ -6868,7 +6930,7 @@ return getSize;
|
|
6868 |
|
6869 |
|
6870 |
/***/ }),
|
6871 |
-
/*
|
6872 |
/*!**********************************************!*\
|
6873 |
!*** ./node_modules/lodash/_getPrototype.js ***!
|
6874 |
\**********************************************/
|
@@ -6876,7 +6938,7 @@ return getSize;
|
|
6876 |
/*! all exports used */
|
6877 |
/***/ (function(module, exports, __webpack_require__) {
|
6878 |
|
6879 |
-
var overArg = __webpack_require__(/*! ./_overArg */
|
6880 |
|
6881 |
/** Built-in value references. */
|
6882 |
var getPrototype = overArg(Object.getPrototypeOf, Object);
|
@@ -6885,7 +6947,7 @@ module.exports = getPrototype;
|
|
6885 |
|
6886 |
|
6887 |
/***/ }),
|
6888 |
-
/*
|
6889 |
/*!**********************************************!*\
|
6890 |
!*** ./node_modules/lodash/_getAllKeysIn.js ***!
|
6891 |
\**********************************************/
|
@@ -6893,9 +6955,9 @@ module.exports = getPrototype;
|
|
6893 |
/*! all exports used */
|
6894 |
/***/ (function(module, exports, __webpack_require__) {
|
6895 |
|
6896 |
-
var baseGetAllKeys = __webpack_require__(/*! ./_baseGetAllKeys */
|
6897 |
-
getSymbolsIn = __webpack_require__(/*! ./_getSymbolsIn */
|
6898 |
-
keysIn = __webpack_require__(/*! ./keysIn */
|
6899 |
|
6900 |
/**
|
6901 |
* Creates an array of own and inherited enumerable property names and
|
@@ -6913,7 +6975,7 @@ module.exports = getAllKeysIn;
|
|
6913 |
|
6914 |
|
6915 |
/***/ }),
|
6916 |
-
/*
|
6917 |
/*!**************************************************!*\
|
6918 |
!*** ./node_modules/lodash/_cloneArrayBuffer.js ***!
|
6919 |
\**************************************************/
|
@@ -6921,7 +6983,7 @@ module.exports = getAllKeysIn;
|
|
6921 |
/*! all exports used */
|
6922 |
/***/ (function(module, exports, __webpack_require__) {
|
6923 |
|
6924 |
-
var Uint8Array = __webpack_require__(/*! ./_Uint8Array */
|
6925 |
|
6926 |
/**
|
6927 |
* Creates a clone of `arrayBuffer`.
|
@@ -6940,7 +7002,7 @@ module.exports = cloneArrayBuffer;
|
|
6940 |
|
6941 |
|
6942 |
/***/ }),
|
6943 |
-
/*
|
6944 |
/*!***************************************************!*\
|
6945 |
!*** ./src/components/gradient-settings/index.js ***!
|
6946 |
\***************************************************/
|
@@ -6949,7 +7011,7 @@ module.exports = cloneArrayBuffer;
|
|
6949 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
6950 |
|
6951 |
"use strict";
|
6952 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */
|
6953 |
|
6954 |
var __ = wp.i18n.__;
|
6955 |
var __experimentalPanelColorGradientSettings = wp.blockEditor.__experimentalPanelColorGradientSettings;
|
@@ -7001,7 +7063,7 @@ function GradientSettings(_ref) {
|
|
7001 |
/* harmony default export */ __webpack_exports__["a"] = (GradientSettings);
|
7002 |
|
7003 |
/***/ }),
|
7004 |
-
/*
|
7005 |
/*!************************************************!*\
|
7006 |
!*** ./dist/blocks/uagb-controls/hexToRgba.js ***!
|
7007 |
\************************************************/
|
@@ -7050,7 +7112,663 @@ function hexToRgba(color, opacity) {
|
|
7050 |
/* harmony default export */ __webpack_exports__["a"] = (hexToRgba);
|
7051 |
|
7052 |
/***/ }),
|
7053 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7054 |
/*!**************************************************!*\
|
7055 |
!*** ./src/blocks/info-box/components/Prefix.js ***!
|
7056 |
\**************************************************/
|
@@ -7131,7 +7849,7 @@ var Prefix = function (_React$Component) {
|
|
7131 |
/* harmony default export */ __webpack_exports__["a"] = (Prefix);
|
7132 |
|
7133 |
/***/ }),
|
7134 |
-
/*
|
7135 |
/*!*************************************************!*\
|
7136 |
!*** ./src/blocks/info-box/components/Title.js ***!
|
7137 |
\*************************************************/
|
@@ -7211,7 +7929,7 @@ var Title = function (_React$Component) {
|
|
7211 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
7212 |
|
7213 |
/***/ }),
|
7214 |
-
/*
|
7215 |
/*!************************************************!*\
|
7216 |
!*** ./src/blocks/info-box/components/Icon.js ***!
|
7217 |
\************************************************/
|
@@ -7271,7 +7989,7 @@ var Icon = function (_React$Component) {
|
|
7271 |
/* harmony default export */ __webpack_exports__["a"] = (Icon);
|
7272 |
|
7273 |
/***/ }),
|
7274 |
-
/*
|
7275 |
/*!*******************************************************!*\
|
7276 |
!*** ./src/blocks/info-box/components/InfoBoxDesc.js ***!
|
7277 |
\*******************************************************/
|
@@ -7350,7 +8068,7 @@ var InfoBoxDesc = function (_React$Component) {
|
|
7350 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxDesc);
|
7351 |
|
7352 |
/***/ }),
|
7353 |
-
/*
|
7354 |
/*!****************************************!*\
|
7355 |
!*** ./src/blocks/info-box/classes.js ***!
|
7356 |
\****************************************/
|
@@ -7407,7 +8125,7 @@ function InfoBoxPositionClasses(attributes) {
|
|
7407 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxPositionClasses);
|
7408 |
|
7409 |
/***/ }),
|
7410 |
-
/*
|
7411 |
/*!************************************************************!*\
|
7412 |
!*** ./src/blocks/info-box/components/InfoBoxSeparator.js ***!
|
7413 |
\************************************************************/
|
@@ -7453,7 +8171,7 @@ var InfoBoxSeparator = function (_React$Component) {
|
|
7453 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxSeparator);
|
7454 |
|
7455 |
/***/ }),
|
7456 |
-
/*
|
7457 |
/*!********************************************************!*\
|
7458 |
!*** ./src/blocks/info-box/components/CallToAction.js ***!
|
7459 |
\********************************************************/
|
@@ -7597,7 +8315,7 @@ var InfoBoxCta = function (_React$Component) {
|
|
7597 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxCta);
|
7598 |
|
7599 |
/***/ }),
|
7600 |
-
/*
|
7601 |
/*!*********************************************************!*\
|
7602 |
!*** ./src/blocks/testimonial/components/AuthorName.js ***!
|
7603 |
\*********************************************************/
|
@@ -7687,7 +8405,7 @@ var AuthorName = function (_React$Component) {
|
|
7687 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorName);
|
7688 |
|
7689 |
/***/ }),
|
7690 |
-
/*
|
7691 |
/*!******************************************************!*\
|
7692 |
!*** ./src/blocks/testimonial/components/Company.js ***!
|
7693 |
\******************************************************/
|
@@ -7778,7 +8496,7 @@ var Company = function (_React$Component) {
|
|
7778 |
/* harmony default export */ __webpack_exports__["a"] = (Company);
|
7779 |
|
7780 |
/***/ }),
|
7781 |
-
/*
|
7782 |
/*!**********************************************************!*\
|
7783 |
!*** ./src/blocks/testimonial/components/Description.js ***!
|
7784 |
\**********************************************************/
|
@@ -7869,7 +8587,7 @@ var Description = function (_React$Component) {
|
|
7869 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
7870 |
|
7871 |
/***/ }),
|
7872 |
-
/*
|
7873 |
/*!*******************************************!*\
|
7874 |
!*** ./src/blocks/testimonial/classes.js ***!
|
7875 |
\*******************************************/
|
@@ -7906,7 +8624,7 @@ function PositionClasses(attributes) {
|
|
7906 |
/* harmony default export */ __webpack_exports__["a"] = (PositionClasses);
|
7907 |
|
7908 |
/***/ }),
|
7909 |
-
/*
|
7910 |
/*!******************************************!*\
|
7911 |
!*** ./src/blocks/social-share/links.js ***!
|
7912 |
\******************************************/
|
@@ -7933,7 +8651,7 @@ var links = {
|
|
7933 |
/* harmony default export */ __webpack_exports__["a"] = (links);
|
7934 |
|
7935 |
/***/ }),
|
7936 |
-
/*
|
7937 |
/*!*********************************************************!*\
|
7938 |
!*** ./src/blocks/price-list-child/components/Title.js ***!
|
7939 |
\*********************************************************/
|
@@ -8010,7 +8728,7 @@ var Title = function (_React$Component) {
|
|
8010 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
8011 |
|
8012 |
/***/ }),
|
8013 |
-
/*
|
8014 |
/*!*********************************************************!*\
|
8015 |
!*** ./src/blocks/price-list-child/components/Price.js ***!
|
8016 |
\*********************************************************/
|
@@ -8086,7 +8804,7 @@ var Price = function (_React$Component) {
|
|
8086 |
/* harmony default export */ __webpack_exports__["a"] = (Price);
|
8087 |
|
8088 |
/***/ }),
|
8089 |
-
/*
|
8090 |
/*!***************************************************************!*\
|
8091 |
!*** ./src/blocks/price-list-child/components/Description.js ***!
|
8092 |
\***************************************************************/
|
@@ -8162,7 +8880,7 @@ var Description = function (_React$Component) {
|
|
8162 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
8163 |
|
8164 |
/***/ }),
|
8165 |
-
/*
|
8166 |
/*!*****************************************************************!*\
|
8167 |
!*** ./src/blocks/price-list-child/components/RestMenuImage.js ***!
|
8168 |
\*****************************************************************/
|
@@ -8259,7 +8977,7 @@ var RestMenuImage = function (_React$Component) {
|
|
8259 |
/* harmony default export */ __webpack_exports__["a"] = (RestMenuImage);
|
8260 |
|
8261 |
/***/ }),
|
8262 |
-
/*
|
8263 |
/*!****************************************!*\
|
8264 |
!*** ./src/blocks/timeline/style.scss ***!
|
8265 |
\****************************************/
|
@@ -8269,7 +8987,7 @@ var RestMenuImage = function (_React$Component) {
|
|
8269 |
// removed by extract-text-webpack-plugin
|
8270 |
|
8271 |
/***/ }),
|
8272 |
-
/*
|
8273 |
/*!*******************************************************!*\
|
8274 |
!*** ./src/blocks/call-to-action/components/Title.js ***!
|
8275 |
\*******************************************************/
|
@@ -8347,7 +9065,7 @@ var Title = function (_React$Component) {
|
|
8347 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
8348 |
|
8349 |
/***/ }),
|
8350 |
-
/*
|
8351 |
/*!*************************************************************!*\
|
8352 |
!*** ./src/blocks/call-to-action/components/Description.js ***!
|
8353 |
\*************************************************************/
|
@@ -8424,7 +9142,7 @@ var Description = function (_React$Component) {
|
|
8424 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
8425 |
|
8426 |
/***/ }),
|
8427 |
-
/*
|
8428 |
/*!**********************************************!*\
|
8429 |
!*** ./src/blocks/call-to-action/classes.js ***!
|
8430 |
\**********************************************/
|
@@ -8466,7 +9184,7 @@ function CtaPositionClasses(attributes) {
|
|
8466 |
/* harmony default export */ __webpack_exports__["a"] = (CtaPositionClasses);
|
8467 |
|
8468 |
/***/ }),
|
8469 |
-
/*
|
8470 |
/*!*****************************************************!*\
|
8471 |
!*** ./src/blocks/call-to-action/components/CTA.js ***!
|
8472 |
\*****************************************************/
|
@@ -8567,7 +9285,7 @@ var CTA = function (_React$Component) {
|
|
8567 |
/* harmony default export */ __webpack_exports__["a"] = (CTA);
|
8568 |
|
8569 |
/***/ }),
|
8570 |
-
/*
|
8571 |
/*!**************************************!*\
|
8572 |
!*** ./src/blocks/columns/shapes.js ***!
|
8573 |
\**************************************/
|
@@ -8602,7 +9320,7 @@ var shapes = {
|
|
8602 |
/* harmony default export */ __webpack_exports__["a"] = (shapes);
|
8603 |
|
8604 |
/***/ }),
|
8605 |
-
/*
|
8606 |
/*!************************************************************!*\
|
8607 |
!*** ./src/blocks/blockquote/components/TweetButtonCTA.js ***!
|
8608 |
\************************************************************/
|
@@ -8676,7 +9394,7 @@ var TweetButtonCTA = function (_React$Component) {
|
|
8676 |
/* harmony default export */ __webpack_exports__["a"] = (TweetButtonCTA);
|
8677 |
|
8678 |
/***/ }),
|
8679 |
-
/*
|
8680 |
/*!*********************************************************!*\
|
8681 |
!*** ./src/blocks/blockquote/components/Description.js ***!
|
8682 |
\*********************************************************/
|
@@ -8753,7 +9471,7 @@ var Description = function (_React$Component) {
|
|
8753 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
8754 |
|
8755 |
/***/ }),
|
8756 |
-
/*
|
8757 |
/*!********************************************************!*\
|
8758 |
!*** ./src/blocks/blockquote/components/AuthorText.js ***!
|
8759 |
\********************************************************/
|
@@ -8830,7 +9548,7 @@ var AuthorText = function (_React$Component) {
|
|
8830 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorText);
|
8831 |
|
8832 |
/***/ }),
|
8833 |
-
/*
|
8834 |
/*!*********************************************************!*\
|
8835 |
!*** ./src/blocks/blockquote/components/AuthorImage.js ***!
|
8836 |
\*********************************************************/
|
@@ -8899,7 +9617,7 @@ var AuthorImage = function (_React$Component) {
|
|
8899 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorImage);
|
8900 |
|
8901 |
/***/ }),
|
8902 |
-
/*
|
8903 |
/*!***************************************************************!*\
|
8904 |
!*** ./node_modules/core-js/library/modules/_to-primitive.js ***!
|
8905 |
\***************************************************************/
|
@@ -8922,7 +9640,7 @@ module.exports = function (it, S) {
|
|
8922 |
|
8923 |
|
8924 |
/***/ }),
|
8925 |
-
/*
|
8926 |
/*!**********************************************************!*\
|
8927 |
!*** ./node_modules/core-js/library/modules/_defined.js ***!
|
8928 |
\**********************************************************/
|
@@ -8938,7 +9656,7 @@ module.exports = function (it) {
|
|
8938 |
|
8939 |
|
8940 |
/***/ }),
|
8941 |
-
/*
|
8942 |
/*!*************************************************************!*\
|
8943 |
!*** ./node_modules/core-js/library/modules/_to-integer.js ***!
|
8944 |
\*************************************************************/
|
@@ -8955,7 +9673,7 @@ module.exports = function (it) {
|
|
8955 |
|
8956 |
|
8957 |
/***/ }),
|
8958 |
-
/*
|
8959 |
/*!*************************************************************!*\
|
8960 |
!*** ./node_modules/core-js/library/modules/_shared-key.js ***!
|
8961 |
\*************************************************************/
|
@@ -8963,15 +9681,15 @@ module.exports = function (it) {
|
|
8963 |
/*! all exports used */
|
8964 |
/***/ (function(module, exports, __webpack_require__) {
|
8965 |
|
8966 |
-
var shared = __webpack_require__(/*! ./_shared */
|
8967 |
-
var uid = __webpack_require__(/*! ./_uid */
|
8968 |
module.exports = function (key) {
|
8969 |
return shared[key] || (shared[key] = uid(key));
|
8970 |
};
|
8971 |
|
8972 |
|
8973 |
/***/ }),
|
8974 |
-
/*
|
8975 |
/*!*********************************************************!*\
|
8976 |
!*** ./node_modules/core-js/library/modules/_shared.js ***!
|
8977 |
\*********************************************************/
|
@@ -8979,7 +9697,7 @@ module.exports = function (key) {
|
|
8979 |
/*! all exports used */
|
8980 |
/***/ (function(module, exports, __webpack_require__) {
|
8981 |
|
8982 |
-
var core = __webpack_require__(/*! ./_core */
|
8983 |
var global = __webpack_require__(/*! ./_global */ 20);
|
8984 |
var SHARED = '__core-js_shared__';
|
8985 |
var store = global[SHARED] || (global[SHARED] = {});
|
@@ -8988,13 +9706,13 @@ var store = global[SHARED] || (global[SHARED] = {});
|
|
8988 |
return store[key] || (store[key] = value !== undefined ? value : {});
|
8989 |
})('versions', []).push({
|
8990 |
version: core.version,
|
8991 |
-
mode: __webpack_require__(/*! ./_library */
|
8992 |
copyright: '© 2018 Denis Pushkarev (zloirock.ru)'
|
8993 |
});
|
8994 |
|
8995 |
|
8996 |
/***/ }),
|
8997 |
-
/*
|
8998 |
/*!****************************************************************!*\
|
8999 |
!*** ./node_modules/core-js/library/modules/_enum-bug-keys.js ***!
|
9000 |
\****************************************************************/
|
@@ -9009,7 +9727,7 @@ module.exports = (
|
|
9009 |
|
9010 |
|
9011 |
/***/ }),
|
9012 |
-
/*
|
9013 |
/*!**************************************************************!*\
|
9014 |
!*** ./node_modules/core-js/library/modules/_object-gops.js ***!
|
9015 |
\**************************************************************/
|
@@ -9021,7 +9739,7 @@ exports.f = Object.getOwnPropertySymbols;
|
|
9021 |
|
9022 |
|
9023 |
/***/ }),
|
9024 |
-
/*
|
9025 |
/*!************************************************************!*\
|
9026 |
!*** ./node_modules/core-js/library/modules/_to-object.js ***!
|
9027 |
\************************************************************/
|
@@ -9030,14 +9748,14 @@ exports.f = Object.getOwnPropertySymbols;
|
|
9030 |
/***/ (function(module, exports, __webpack_require__) {
|
9031 |
|
9032 |
// 7.1.13 ToObject(argument)
|
9033 |
-
var defined = __webpack_require__(/*! ./_defined */
|
9034 |
module.exports = function (it) {
|
9035 |
return Object(defined(it));
|
9036 |
};
|
9037 |
|
9038 |
|
9039 |
/***/ }),
|
9040 |
-
/*
|
9041 |
/*!************************************************************!*\
|
9042 |
!*** ./node_modules/core-js/library/modules/_iterators.js ***!
|
9043 |
\************************************************************/
|
@@ -9049,7 +9767,7 @@ module.exports = {};
|
|
9049 |
|
9050 |
|
9051 |
/***/ }),
|
9052 |
-
/*
|
9053 |
/*!****************************************************************!*\
|
9054 |
!*** ./node_modules/core-js/library/modules/_object-create.js ***!
|
9055 |
\****************************************************************/
|
@@ -9058,23 +9776,23 @@ module.exports = {};
|
|
9058 |
/***/ (function(module, exports, __webpack_require__) {
|
9059 |
|
9060 |
// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
|
9061 |
-
var anObject = __webpack_require__(/*! ./_an-object */
|
9062 |
-
var dPs = __webpack_require__(/*! ./_object-dps */
|
9063 |
-
var enumBugKeys = __webpack_require__(/*! ./_enum-bug-keys */
|
9064 |
-
var IE_PROTO = __webpack_require__(/*! ./_shared-key */
|
9065 |
var Empty = function () { /* empty */ };
|
9066 |
var PROTOTYPE = 'prototype';
|
9067 |
|
9068 |
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
9069 |
var createDict = function () {
|
9070 |
// Thrash, waste and sodomy: IE GC bug
|
9071 |
-
var iframe = __webpack_require__(/*! ./_dom-create */
|
9072 |
var i = enumBugKeys.length;
|
9073 |
var lt = '<';
|
9074 |
var gt = '>';
|
9075 |
var iframeDocument;
|
9076 |
iframe.style.display = 'none';
|
9077 |
-
__webpack_require__(/*! ./_html */
|
9078 |
iframe.src = 'javascript:'; // eslint-disable-line no-script-url
|
9079 |
// createDict = iframe.contentWindow.Object;
|
9080 |
// html.removeChild(iframe);
|
@@ -9101,7 +9819,7 @@ module.exports = Object.create || function create(O, Properties) {
|
|
9101 |
|
9102 |
|
9103 |
/***/ }),
|
9104 |
-
/*
|
9105 |
/*!********************************************************************!*\
|
9106 |
!*** ./node_modules/core-js/library/modules/_set-to-string-tag.js ***!
|
9107 |
\********************************************************************/
|
@@ -9119,7 +9837,7 @@ module.exports = function (it, tag, stat) {
|
|
9119 |
|
9120 |
|
9121 |
/***/ }),
|
9122 |
-
/*
|
9123 |
/*!**********************************************************!*\
|
9124 |
!*** ./node_modules/core-js/library/modules/_wks-ext.js ***!
|
9125 |
\**********************************************************/
|
@@ -9131,7 +9849,7 @@ exports.f = __webpack_require__(/*! ./_wks */ 40);
|
|
9131 |
|
9132 |
|
9133 |
/***/ }),
|
9134 |
-
/*
|
9135 |
/*!*************************************************************!*\
|
9136 |
!*** ./node_modules/core-js/library/modules/_wks-define.js ***!
|
9137 |
\*************************************************************/
|
@@ -9140,9 +9858,9 @@ exports.f = __webpack_require__(/*! ./_wks */ 40);
|
|
9140 |
/***/ (function(module, exports, __webpack_require__) {
|
9141 |
|
9142 |
var global = __webpack_require__(/*! ./_global */ 20);
|
9143 |
-
var core = __webpack_require__(/*! ./_core */
|
9144 |
-
var LIBRARY = __webpack_require__(/*! ./_library */
|
9145 |
-
var wksExt = __webpack_require__(/*! ./_wks-ext */
|
9146 |
var defineProperty = __webpack_require__(/*! ./_object-dp */ 24).f;
|
9147 |
module.exports = function (name) {
|
9148 |
var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {});
|
@@ -9151,7 +9869,7 @@ module.exports = function (name) {
|
|
9151 |
|
9152 |
|
9153 |
/***/ }),
|
9154 |
-
/*
|
9155 |
/*!***************************************************!*\
|
9156 |
!*** ./src/blocks/advanced-heading/attributes.js ***!
|
9157 |
\***************************************************/
|
@@ -9308,7 +10026,7 @@ var attributes = {
|
|
9308 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
9309 |
|
9310 |
/***/ }),
|
9311 |
-
/*
|
9312 |
/*!**********************************************!*\
|
9313 |
!*** ./node_modules/lodash/_baseIteratee.js ***!
|
9314 |
\**********************************************/
|
@@ -9316,11 +10034,11 @@ var attributes = {
|
|
9316 |
/*! all exports used */
|
9317 |
/***/ (function(module, exports, __webpack_require__) {
|
9318 |
|
9319 |
-
var baseMatches = __webpack_require__(/*! ./_baseMatches */
|
9320 |
-
baseMatchesProperty = __webpack_require__(/*! ./_baseMatchesProperty */
|
9321 |
-
identity = __webpack_require__(/*! ./identity */
|
9322 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
9323 |
-
property = __webpack_require__(/*! ./property */
|
9324 |
|
9325 |
/**
|
9326 |
* The base implementation of `_.iteratee`.
|
@@ -9350,7 +10068,7 @@ module.exports = baseIteratee;
|
|
9350 |
|
9351 |
|
9352 |
/***/ }),
|
9353 |
-
/*
|
9354 |
/*!*******************************************!*\
|
9355 |
!*** ./node_modules/lodash/isFunction.js ***!
|
9356 |
\*******************************************/
|
@@ -9398,7 +10116,7 @@ module.exports = isFunction;
|
|
9398 |
|
9399 |
|
9400 |
/***/ }),
|
9401 |
-
/*
|
9402 |
/*!********************************************!*\
|
9403 |
!*** ./node_modules/lodash/_freeGlobal.js ***!
|
9404 |
\********************************************/
|
@@ -9411,10 +10129,10 @@ var freeGlobal = typeof global == 'object' && global && global.Object === Object
|
|
9411 |
|
9412 |
module.exports = freeGlobal;
|
9413 |
|
9414 |
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */
|
9415 |
|
9416 |
/***/ }),
|
9417 |
-
/*
|
9418 |
/*!******************************************!*\
|
9419 |
!*** ./node_modules/lodash/_toSource.js ***!
|
9420 |
\******************************************/
|
@@ -9451,7 +10169,7 @@ module.exports = toSource;
|
|
9451 |
|
9452 |
|
9453 |
/***/ }),
|
9454 |
-
/*
|
9455 |
/*!*********************************************!*\
|
9456 |
!*** ./node_modules/lodash/_baseIsEqual.js ***!
|
9457 |
\*********************************************/
|
@@ -9459,7 +10177,7 @@ module.exports = toSource;
|
|
9459 |
/*! all exports used */
|
9460 |
/***/ (function(module, exports, __webpack_require__) {
|
9461 |
|
9462 |
-
var baseIsEqualDeep = __webpack_require__(/*! ./_baseIsEqualDeep */
|
9463 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
9464 |
|
9465 |
/**
|
@@ -9490,7 +10208,7 @@ module.exports = baseIsEqual;
|
|
9490 |
|
9491 |
|
9492 |
/***/ }),
|
9493 |
-
/*
|
9494 |
/*!*********************************************!*\
|
9495 |
!*** ./node_modules/lodash/_equalArrays.js ***!
|
9496 |
\*********************************************/
|
@@ -9498,9 +10216,9 @@ module.exports = baseIsEqual;
|
|
9498 |
/*! all exports used */
|
9499 |
/***/ (function(module, exports, __webpack_require__) {
|
9500 |
|
9501 |
-
var SetCache = __webpack_require__(/*! ./_SetCache */
|
9502 |
-
arraySome = __webpack_require__(/*! ./_arraySome */
|
9503 |
-
cacheHas = __webpack_require__(/*! ./_cacheHas */
|
9504 |
|
9505 |
/** Used to compose bitmasks for value comparisons. */
|
9506 |
var COMPARE_PARTIAL_FLAG = 1,
|
@@ -9584,7 +10302,7 @@ module.exports = equalArrays;
|
|
9584 |
|
9585 |
|
9586 |
/***/ }),
|
9587 |
-
/*
|
9588 |
/*!********************************************!*\
|
9589 |
!*** ./node_modules/lodash/_Uint8Array.js ***!
|
9590 |
\********************************************/
|
@@ -9601,7 +10319,7 @@ module.exports = Uint8Array;
|
|
9601 |
|
9602 |
|
9603 |
/***/ }),
|
9604 |
-
/*
|
9605 |
/*!********************************************!*\
|
9606 |
!*** ./node_modules/lodash/_getAllKeys.js ***!
|
9607 |
\********************************************/
|
@@ -9609,8 +10327,8 @@ module.exports = Uint8Array;
|
|
9609 |
/*! all exports used */
|
9610 |
/***/ (function(module, exports, __webpack_require__) {
|
9611 |
|
9612 |
-
var baseGetAllKeys = __webpack_require__(/*! ./_baseGetAllKeys */
|
9613 |
-
getSymbols = __webpack_require__(/*! ./_getSymbols */
|
9614 |
keys = __webpack_require__(/*! ./keys */ 28);
|
9615 |
|
9616 |
/**
|
@@ -9628,7 +10346,7 @@ module.exports = getAllKeys;
|
|
9628 |
|
9629 |
|
9630 |
/***/ }),
|
9631 |
-
/*
|
9632 |
/*!************************************************!*\
|
9633 |
!*** ./node_modules/lodash/_baseGetAllKeys.js ***!
|
9634 |
\************************************************/
|
@@ -9636,7 +10354,7 @@ module.exports = getAllKeys;
|
|
9636 |
/*! all exports used */
|
9637 |
/***/ (function(module, exports, __webpack_require__) {
|
9638 |
|
9639 |
-
var arrayPush = __webpack_require__(/*! ./_arrayPush */
|
9640 |
isArray = __webpack_require__(/*! ./isArray */ 14);
|
9641 |
|
9642 |
/**
|
@@ -9659,7 +10377,7 @@ module.exports = baseGetAllKeys;
|
|
9659 |
|
9660 |
|
9661 |
/***/ }),
|
9662 |
-
/*
|
9663 |
/*!******************************************!*\
|
9664 |
!*** ./node_modules/lodash/stubArray.js ***!
|
9665 |
\******************************************/
|
@@ -9693,7 +10411,7 @@ module.exports = stubArray;
|
|
9693 |
|
9694 |
|
9695 |
/***/ }),
|
9696 |
-
/*
|
9697 |
/*!***********************************************!*\
|
9698 |
!*** ./node_modules/lodash/_arrayLikeKeys.js ***!
|
9699 |
\***********************************************/
|
@@ -9701,12 +10419,12 @@ module.exports = stubArray;
|
|
9701 |
/*! all exports used */
|
9702 |
/***/ (function(module, exports, __webpack_require__) {
|
9703 |
|
9704 |
-
var baseTimes = __webpack_require__(/*! ./_baseTimes */
|
9705 |
-
isArguments = __webpack_require__(/*! ./isArguments */
|
9706 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
9707 |
-
isBuffer = __webpack_require__(/*! ./isBuffer */
|
9708 |
-
isIndex = __webpack_require__(/*! ./_isIndex */
|
9709 |
-
isTypedArray = __webpack_require__(/*! ./isTypedArray */
|
9710 |
|
9711 |
/** Used for built-in method references. */
|
9712 |
var objectProto = Object.prototype;
|
@@ -9753,7 +10471,7 @@ module.exports = arrayLikeKeys;
|
|
9753 |
|
9754 |
|
9755 |
/***/ }),
|
9756 |
-
/*
|
9757 |
/*!*******************************************!*\
|
9758 |
!*** ./node_modules/lodash/_baseTimes.js ***!
|
9759 |
\*******************************************/
|
@@ -9784,7 +10502,7 @@ module.exports = baseTimes;
|
|
9784 |
|
9785 |
|
9786 |
/***/ }),
|
9787 |
-
/*
|
9788 |
/*!*********************************************!*\
|
9789 |
!*** ./node_modules/lodash/isTypedArray.js ***!
|
9790 |
\*********************************************/
|
@@ -9792,9 +10510,9 @@ module.exports = baseTimes;
|
|
9792 |
/*! all exports used */
|
9793 |
/***/ (function(module, exports, __webpack_require__) {
|
9794 |
|
9795 |
-
var baseIsTypedArray = __webpack_require__(/*! ./_baseIsTypedArray */
|
9796 |
-
baseUnary = __webpack_require__(/*! ./_baseUnary */
|
9797 |
-
nodeUtil = __webpack_require__(/*! ./_nodeUtil */
|
9798 |
|
9799 |
/* Node.js helper references. */
|
9800 |
var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
|
@@ -9822,7 +10540,7 @@ module.exports = isTypedArray;
|
|
9822 |
|
9823 |
|
9824 |
/***/ }),
|
9825 |
-
/*
|
9826 |
/*!*****************************************!*\
|
9827 |
!*** ./node_modules/lodash/_overArg.js ***!
|
9828 |
\*****************************************/
|
@@ -9848,7 +10566,7 @@ module.exports = overArg;
|
|
9848 |
|
9849 |
|
9850 |
/***/ }),
|
9851 |
-
/*
|
9852 |
/*!****************************************************!*\
|
9853 |
!*** ./node_modules/lodash/_isStrictComparable.js ***!
|
9854 |
\****************************************************/
|
@@ -9874,7 +10592,7 @@ module.exports = isStrictComparable;
|
|
9874 |
|
9875 |
|
9876 |
/***/ }),
|
9877 |
-
/*
|
9878 |
/*!*********************************************************!*\
|
9879 |
!*** ./node_modules/lodash/_matchesStrictComparable.js ***!
|
9880 |
\*********************************************************/
|
@@ -9905,7 +10623,7 @@ module.exports = matchesStrictComparable;
|
|
9905 |
|
9906 |
|
9907 |
/***/ }),
|
9908 |
-
/*
|
9909 |
/*!************************************!*\
|
9910 |
!*** ./node_modules/lodash/get.js ***!
|
9911 |
\************************************/
|
@@ -9913,7 +10631,7 @@ module.exports = matchesStrictComparable;
|
|
9913 |
/*! all exports used */
|
9914 |
/***/ (function(module, exports, __webpack_require__) {
|
9915 |
|
9916 |
-
var baseGet = __webpack_require__(/*! ./_baseGet */
|
9917 |
|
9918 |
/**
|
9919 |
* Gets the value at `path` of `object`. If the resolved value is
|
@@ -9949,7 +10667,7 @@ module.exports = get;
|
|
9949 |
|
9950 |
|
9951 |
/***/ }),
|
9952 |
-
/*
|
9953 |
/*!*****************************************!*\
|
9954 |
!*** ./node_modules/lodash/toString.js ***!
|
9955 |
\*****************************************/
|
@@ -9957,7 +10675,7 @@ module.exports = get;
|
|
9957 |
/*! all exports used */
|
9958 |
/***/ (function(module, exports, __webpack_require__) {
|
9959 |
|
9960 |
-
var baseToString = __webpack_require__(/*! ./_baseToString */
|
9961 |
|
9962 |
/**
|
9963 |
* Converts `value` to a string. An empty string is returned for `null`
|
@@ -9988,7 +10706,7 @@ module.exports = toString;
|
|
9988 |
|
9989 |
|
9990 |
/***/ }),
|
9991 |
-
/*
|
9992 |
/*!**********************************************!*\
|
9993 |
!*** ./node_modules/lodash/_baseToString.js ***!
|
9994 |
\**********************************************/
|
@@ -9997,9 +10715,9 @@ module.exports = toString;
|
|
9997 |
/***/ (function(module, exports, __webpack_require__) {
|
9998 |
|
9999 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 27),
|
10000 |
-
arrayMap = __webpack_require__(/*! ./_arrayMap */
|
10001 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
10002 |
-
isSymbol = __webpack_require__(/*! ./isSymbol */
|
10003 |
|
10004 |
/** Used as references for various `Number` constants. */
|
10005 |
var INFINITY = 1 / 0;
|
@@ -10036,7 +10754,7 @@ module.exports = baseToString;
|
|
10036 |
|
10037 |
|
10038 |
/***/ }),
|
10039 |
-
/*
|
10040 |
/*!**********************************************!*\
|
10041 |
!*** ./node_modules/lodash/_baseProperty.js ***!
|
10042 |
\**********************************************/
|
@@ -10061,7 +10779,7 @@ module.exports = baseProperty;
|
|
10061 |
|
10062 |
|
10063 |
/***/ }),
|
10064 |
-
/*
|
10065 |
/*!*****************************************************************************************************!*\
|
10066 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***!
|
10067 |
\*****************************************************************************************************/
|
@@ -10069,7 +10787,7 @@ module.exports = baseProperty;
|
|
10069 |
/*! all exports used */
|
10070 |
/***/ (function(module, exports, __webpack_require__) {
|
10071 |
|
10072 |
-
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray */
|
10073 |
|
10074 |
function _unsupportedIterableToArray(o, minLen) {
|
10075 |
if (!o) return;
|
@@ -10081,9 +10799,10 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
10081 |
}
|
10082 |
|
10083 |
module.exports = _unsupportedIterableToArray;
|
|
|
10084 |
|
10085 |
/***/ }),
|
10086 |
-
/*
|
10087 |
/*!*******************************************************************************************!*\
|
10088 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***!
|
10089 |
\*******************************************************************************************/
|
@@ -10102,36 +10821,42 @@ function _arrayLikeToArray(arr, len) {
|
|
10102 |
}
|
10103 |
|
10104 |
module.exports = _arrayLikeToArray;
|
|
|
10105 |
|
10106 |
/***/ }),
|
10107 |
-
/*
|
10108 |
-
|
10109 |
-
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/
|
10110 |
-
|
10111 |
-
/*! exports provided
|
10112 |
/*! exports used: default */
|
10113 |
-
/***/ (function(module,
|
10114 |
|
10115 |
-
"use strict";
|
10116 |
-
/* harmony export (immutable) */ __webpack_exports__["a"] = _typeof;
|
10117 |
function _typeof(obj) {
|
10118 |
"@babel/helpers - typeof";
|
10119 |
|
10120 |
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
10121 |
-
_typeof = function _typeof(obj) {
|
10122 |
return typeof obj;
|
10123 |
};
|
|
|
|
|
10124 |
} else {
|
10125 |
-
_typeof = function _typeof(obj) {
|
10126 |
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
10127 |
};
|
|
|
|
|
10128 |
}
|
10129 |
|
10130 |
return _typeof(obj);
|
10131 |
}
|
10132 |
|
|
|
|
|
|
|
10133 |
/***/ }),
|
10134 |
-
/*
|
10135 |
/*!****************************************************************************************************!*\
|
10136 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js ***!
|
10137 |
\****************************************************************************************************/
|
@@ -10150,7 +10875,7 @@ function _assertThisInitialized(self) {
|
|
10150 |
}
|
10151 |
|
10152 |
/***/ }),
|
10153 |
-
/*
|
10154 |
/*!************************************************************************************!*\
|
10155 |
!*** ./node_modules/react-select/node_modules/memoize-one/dist/memoize-one.esm.js ***!
|
10156 |
\************************************************************************************/
|
@@ -10198,7 +10923,7 @@ function memoizeOne(resultFn, isEqual) {
|
|
10198 |
|
10199 |
|
10200 |
/***/ }),
|
10201 |
-
/*
|
10202 |
/*!***************************************************************!*\
|
10203 |
!*** ./node_modules/@emotion/sheet/dist/sheet.browser.esm.js ***!
|
10204 |
\***************************************************************/
|
@@ -10347,7 +11072,7 @@ function () {
|
|
10347 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 6)))
|
10348 |
|
10349 |
/***/ }),
|
10350 |
-
/*
|
10351 |
/*!*********************************************************************************!*\
|
10352 |
!*** ./node_modules/@emotion/core/dist/emotion-element-57a3a7a3.browser.esm.js ***!
|
10353 |
\*********************************************************************************/
|
@@ -10362,13 +11087,13 @@ function () {
|
|
10362 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return createEmotionProps; });
|
10363 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return hasOwnProperty; });
|
10364 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return withEmotionCache; });
|
10365 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/inheritsLoose */
|
10366 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__);
|
10367 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 5);
|
10368 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
10369 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_cache__ = __webpack_require__(/*! @emotion/cache */
|
10370 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__emotion_utils__ = __webpack_require__(/*! @emotion/utils */
|
10371 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */
|
10372 |
|
10373 |
|
10374 |
|
@@ -10509,7 +11234,7 @@ if (process.env.NODE_ENV !== 'production') {
|
|
10509 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 6)))
|
10510 |
|
10511 |
/***/ }),
|
10512 |
-
/*
|
10513 |
/*!***************************************************************!*\
|
10514 |
!*** ./node_modules/@emotion/utils/dist/utils.browser.esm.js ***!
|
10515 |
\***************************************************************/
|
@@ -10563,7 +11288,7 @@ var insertStyles = function insertStyles(cache, serialized, isStringTag) {
|
|
10563 |
|
10564 |
|
10565 |
/***/ }),
|
10566 |
-
/*
|
10567 |
/*!*****************************************!*\
|
10568 |
!*** ./node_modules/scheduler/index.js ***!
|
10569 |
\*****************************************/
|
@@ -10575,27 +11300,27 @@ var insertStyles = function insertStyles(cache, serialized, isStringTag) {
|
|
10575 |
/* WEBPACK VAR INJECTION */(function(process) {
|
10576 |
|
10577 |
if (process.env.NODE_ENV === 'production') {
|
10578 |
-
module.exports = __webpack_require__(/*! ./cjs/scheduler.production.min.js */
|
10579 |
} else {
|
10580 |
-
module.exports = __webpack_require__(/*! ./cjs/scheduler.development.js */
|
10581 |
}
|
10582 |
|
10583 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
10584 |
|
10585 |
/***/ }),
|
10586 |
-
/*
|
10587 |
/*!**********************************************************************!*\
|
10588 |
-
!*** ./node_modules/react-select/dist/index-
|
10589 |
\**********************************************************************/
|
10590 |
/*! exports provided: A, B, C, D, E, F, G, M, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z */
|
10591 |
/*! exports used: A, B, C, D, E, M, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z */
|
10592 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
10593 |
|
10594 |
"use strict";
|
10595 |
-
/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return
|
10596 |
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return
|
10597 |
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return
|
10598 |
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return
|
10599 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return noop; });
|
10600 |
/* unused harmony export F */
|
10601 |
/* unused harmony export G */
|
@@ -10625,24 +11350,24 @@ if (process.env.NODE_ENV === 'production') {
|
|
10625 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return isTouchCapable; });
|
10626 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return isMobileDevice; });
|
10627 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return defaultComponents; });
|
10628 |
-
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return
|
10629 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutProperties__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutProperties */
|
10630 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */
|
10631 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_esm_defineProperty__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */
|
10632 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_esm_classCallCheck__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */
|
10633 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_esm_createClass__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */
|
10634 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__babel_runtime_helpers_esm_inherits__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */
|
10635 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__babel_runtime_helpers_esm_possibleConstructorReturn__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */
|
10636 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_esm_getPrototypeOf__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */
|
10637 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react__ = __webpack_require__(/*! react */ 5);
|
10638 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_react__);
|
10639 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__emotion_core__ = __webpack_require__(/*! @emotion/core */
|
10640 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10_react_dom__ = __webpack_require__(/*! react-dom */ 33);
|
10641 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_10_react_dom__);
|
10642 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__babel_runtime_helpers_esm_typeof__ = __webpack_require__(/*! @babel/runtime/helpers/esm/typeof */
|
10643 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__emotion_css__ = __webpack_require__(/*! @emotion/css */ 41);
|
10644 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__babel_runtime_helpers_esm_taggedTemplateLiteral__ = __webpack_require__(/*! @babel/runtime/helpers/esm/taggedTemplateLiteral */
|
10645 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */
|
10646 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_14_react_input_autosize__);
|
10647 |
|
10648 |
|
@@ -11167,15 +11892,16 @@ var MenuList = function MenuList(props) {
|
|
11167 |
cx = props.cx,
|
11168 |
getStyles = props.getStyles,
|
11169 |
isMulti = props.isMulti,
|
11170 |
-
innerRef = props.innerRef
|
11171 |
-
|
|
|
11172 |
css: getStyles('menuList', props),
|
11173 |
className: cx({
|
11174 |
'menu-list': true,
|
11175 |
'menu-list--is-multi': isMulti
|
11176 |
}, className),
|
11177 |
ref: innerRef
|
11178 |
-
}, children);
|
11179 |
}; // ==============================
|
11180 |
// Menu Notices
|
11181 |
// ==============================
|
@@ -12132,7 +12858,7 @@ var defaultComponents = function defaultComponents(props) {
|
|
12132 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
12133 |
|
12134 |
/***/ }),
|
12135 |
-
/*
|
12136 |
/*!*********************************************************************************************!*\
|
12137 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
12138 |
\*********************************************************************************************/
|
@@ -12158,7 +12884,7 @@ function _defineProperty(obj, key, value) {
|
|
12158 |
}
|
12159 |
|
12160 |
/***/ }),
|
12161 |
-
/*
|
12162 |
/*!****************************************************************!*\
|
12163 |
!*** ./node_modules/react-input-autosize/lib/AutosizeInput.js ***!
|
12164 |
\****************************************************************/
|
@@ -12234,6 +12960,15 @@ var generateId = function generateId() {
|
|
12234 |
var AutosizeInput = function (_Component) {
|
12235 |
_inherits(AutosizeInput, _Component);
|
12236 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12237 |
function AutosizeInput(props) {
|
12238 |
_classCallCheck(this, AutosizeInput);
|
12239 |
|
@@ -12256,7 +12991,8 @@ var AutosizeInput = function (_Component) {
|
|
12256 |
|
12257 |
_this.state = {
|
12258 |
inputWidth: props.minWidth,
|
12259 |
-
inputId: props.id || generateId()
|
|
|
12260 |
};
|
12261 |
return _this;
|
12262 |
}
|
@@ -12268,15 +13004,6 @@ var AutosizeInput = function (_Component) {
|
|
12268 |
this.copyInputStyles();
|
12269 |
this.updateInputWidth();
|
12270 |
}
|
12271 |
-
}, {
|
12272 |
-
key: 'UNSAFE_componentWillReceiveProps',
|
12273 |
-
value: function UNSAFE_componentWillReceiveProps(nextProps) {
|
12274 |
-
var id = nextProps.id;
|
12275 |
-
|
12276 |
-
if (id !== this.props.id) {
|
12277 |
-
this.setState({ inputId: id || generateId() });
|
12278 |
-
}
|
12279 |
-
}
|
12280 |
}, {
|
12281 |
key: 'componentDidUpdate',
|
12282 |
value: function componentDidUpdate(prevProps, prevState) {
|
@@ -12437,7 +13164,7 @@ AutosizeInput.defaultProps = {
|
|
12437 |
exports.default = AutosizeInput;
|
12438 |
|
12439 |
/***/ }),
|
12440 |
-
/*
|
12441 |
/*!****************************************!*\
|
12442 |
!*** ./node_modules/react-is/index.js ***!
|
12443 |
\****************************************/
|
@@ -12449,17 +13176,17 @@ exports.default = AutosizeInput;
|
|
12449 |
/* WEBPACK VAR INJECTION */(function(process) {
|
12450 |
|
12451 |
if (process.env.NODE_ENV === 'production') {
|
12452 |
-
module.exports = __webpack_require__(/*! ./cjs/react-is.production.min.js */
|
12453 |
} else {
|
12454 |
-
module.exports = __webpack_require__(/*! ./cjs/react-is.development.js */
|
12455 |
}
|
12456 |
|
12457 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
12458 |
|
12459 |
/***/ }),
|
12460 |
-
/*
|
12461 |
/*!***********************************************************************!*\
|
12462 |
-
!*** ./node_modules/react-select/dist/Select-
|
12463 |
\***********************************************************************/
|
12464 |
/*! exports provided: S, a, c, d, m */
|
12465 |
/*! exports used: S */
|
@@ -12471,24 +13198,24 @@ if (process.env.NODE_ENV === 'production') {
|
|
12471 |
/* unused harmony export c */
|
12472 |
/* unused harmony export d */
|
12473 |
/* unused harmony export m */
|
12474 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutProperties__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutProperties */
|
12475 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */
|
12476 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_esm_slicedToArray__ = __webpack_require__(/*! @babel/runtime/helpers/esm/slicedToArray */
|
12477 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_esm_toConsumableArray__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toConsumableArray */
|
12478 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_esm_defineProperty__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */
|
12479 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__babel_runtime_helpers_esm_classCallCheck__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */
|
12480 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__babel_runtime_helpers_esm_createClass__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */
|
12481 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_esm_assertThisInitialized__ = __webpack_require__(/*! @babel/runtime/helpers/esm/assertThisInitialized */
|
12482 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__babel_runtime_helpers_esm_inherits__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */
|
12483 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__babel_runtime_helpers_esm_possibleConstructorReturn__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */
|
12484 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__babel_runtime_helpers_esm_getPrototypeOf__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */
|
12485 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11_react__ = __webpack_require__(/*! react */ 5);
|
12486 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_11_react__);
|
12487 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12_memoize_one__ = __webpack_require__(/*! memoize-one */
|
12488 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__emotion_core__ = __webpack_require__(/*! @emotion/core */
|
12489 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_dom__ = __webpack_require__(/*! react-dom */ 33);
|
12490 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_14_react_dom__);
|
12491 |
-
/* harmony import */ var
|
12492 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__emotion_css__ = __webpack_require__(/*! @emotion/css */ 41);
|
12493 |
|
12494 |
|
@@ -12832,7 +13559,7 @@ var _ref = process.env.NODE_ENV === "production" ? {
|
|
12832 |
} : {
|
12833 |
name: "1laao21-a11yText",
|
12834 |
styles: "label:a11yText;z-index:9999;border:0;clip:rect(1px, 1px, 1px, 1px);height:1px;width:1px;position:absolute;overflow:hidden;padding:0;white-space:nowrap;",
|
12835 |
-
map: "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
12836 |
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
12837 |
};
|
12838 |
|
@@ -13297,7 +14024,8 @@ var ScrollCaptor = /*#__PURE__*/function (_Component) {
|
|
13297 |
}, {
|
13298 |
key: "stopListening",
|
13299 |
value: function stopListening(el) {
|
13300 |
-
// all the if statements are to appease Flow 😢
|
|
|
13301 |
if (typeof el.removeEventListener === 'function') {
|
13302 |
el.removeEventListener('wheel', this.onWheel, false);
|
13303 |
}
|
@@ -13335,11 +14063,12 @@ var instructionsAriaMessage = function instructionsAriaMessage(event) {
|
|
13335 |
var isSearchable = context.isSearchable,
|
13336 |
isMulti = context.isMulti,
|
13337 |
label = context.label,
|
13338 |
-
isDisabled = context.isDisabled
|
|
|
13339 |
|
13340 |
switch (event) {
|
13341 |
case 'menu':
|
13342 |
-
return "Use Up and Down to choose options".concat(isDisabled ? '' : ', press Enter to select the currently focused option', ", press Escape to exit the menu, press Tab to select the option and exit the menu.");
|
13343 |
|
13344 |
case 'input':
|
13345 |
return "".concat(label ? label : 'Select', " is focused ").concat(isSearchable ? ',type to refine list' : '', ", press Down to open the menu, ").concat(isMulti ? ' press left to focus selected values' : '');
|
@@ -13398,28 +14127,28 @@ function ownKeys$1(object, enumerableOnly) { var keys = Object.keys(object); if
|
|
13398 |
|
13399 |
function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$1(Object(source), true).forEach(function (key) { Object(__WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_esm_defineProperty__["a" /* default */])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$1(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
13400 |
var defaultStyles = {
|
13401 |
-
clearIndicator:
|
13402 |
-
container:
|
13403 |
-
control:
|
13404 |
-
dropdownIndicator:
|
13405 |
-
group:
|
13406 |
-
groupHeading:
|
13407 |
-
indicatorsContainer:
|
13408 |
-
indicatorSeparator:
|
13409 |
-
input:
|
13410 |
-
loadingIndicator:
|
13411 |
-
loadingMessage:
|
13412 |
-
menu:
|
13413 |
-
menuList:
|
13414 |
-
menuPortal:
|
13415 |
-
multiValue:
|
13416 |
-
multiValueLabel:
|
13417 |
-
multiValueRemove:
|
13418 |
-
noOptionsMessage:
|
13419 |
-
option:
|
13420 |
-
placeholder:
|
13421 |
-
singleValue:
|
13422 |
-
valueContainer:
|
13423 |
}; // Merge Utility
|
13424 |
// Allows consumers to extend a base Select with additional styles
|
13425 |
|
@@ -13488,8 +14217,8 @@ function _createSuper$4(Derived) { var hasNativeReflectConstruct = _isNativeRefl
|
|
13488 |
function _isNativeReflectConstruct$4() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
13489 |
var defaultProps = {
|
13490 |
backspaceRemovesValue: true,
|
13491 |
-
blurInputOnSelect: Object(
|
13492 |
-
captureMenuScroll: !Object(
|
13493 |
closeMenuOnSelect: true,
|
13494 |
closeMenuOnScroll: false,
|
13495 |
components: {},
|
@@ -13514,7 +14243,7 @@ var defaultProps = {
|
|
13514 |
menuPlacement: 'bottom',
|
13515 |
menuPosition: 'absolute',
|
13516 |
menuShouldBlockScroll: false,
|
13517 |
-
menuShouldScrollIntoView: !Object(
|
13518 |
noOptionsMessage: function noOptionsMessage() {
|
13519 |
return 'No options';
|
13520 |
},
|
@@ -13602,7 +14331,7 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
13602 |
};
|
13603 |
|
13604 |
_this.cacheComponents = function (components) {
|
13605 |
-
_this.components = Object(
|
13606 |
components: components
|
13607 |
});
|
13608 |
};
|
@@ -13738,9 +14467,7 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
13738 |
};
|
13739 |
|
13740 |
_this.clearValue = function () {
|
13741 |
-
|
13742 |
-
|
13743 |
-
_this.onChange(isMulti ? [] : null, {
|
13744 |
action: 'clear'
|
13745 |
});
|
13746 |
};
|
@@ -13763,6 +14490,18 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
13763 |
});
|
13764 |
};
|
13765 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13766 |
_this.getOptionLabel = function (data) {
|
13767 |
return _this.props.getOptionLabel(data);
|
13768 |
};
|
@@ -13901,7 +14640,7 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
13901 |
|
13902 |
_this.onScroll = function (event) {
|
13903 |
if (typeof _this.props.closeMenuOnScroll === 'boolean') {
|
13904 |
-
if (event.target instanceof HTMLElement && Object(
|
13905 |
_this.props.onMenuClose();
|
13906 |
}
|
13907 |
} else if (typeof _this.props.closeMenuOnScroll === 'function') {
|
@@ -14325,13 +15064,13 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14325 |
};
|
14326 |
|
14327 |
var _value = _props.value;
|
14328 |
-
_this.cacheComponents = Object(__WEBPACK_IMPORTED_MODULE_12_memoize_one__["a" /* default */])(_this.cacheComponents,
|
14329 |
|
14330 |
_this.cacheComponents(_props.components);
|
14331 |
|
14332 |
_this.instancePrefix = 'react-select-' + (_this.props.instanceId || ++instanceId);
|
14333 |
|
14334 |
-
var _selectValue = Object(
|
14335 |
|
14336 |
_this.buildMenuOptions = Object(__WEBPACK_IMPORTED_MODULE_12_memoize_one__["a" /* default */])(_this.buildMenuOptions, function (newArgs, lastArgs) {
|
14337 |
var _ref6 = newArgs,
|
@@ -14344,7 +15083,7 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14344 |
lastProps = _ref9[0],
|
14345 |
lastSelectValue = _ref9[1];
|
14346 |
|
14347 |
-
return
|
14348 |
}).bind(Object(__WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_esm_assertThisInitialized__["a" /* default */])(_this));
|
14349 |
|
14350 |
var _menuOptions = _props.menuIsOpen ? _this.buildMenuOptions(_props, _selectValue) : {
|
@@ -14384,7 +15123,7 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14384 |
this.cacheComponents(nextProps.components); // rebuild the menu options
|
14385 |
|
14386 |
if (nextProps.value !== value || nextProps.options !== options || nextProps.menuIsOpen !== menuIsOpen || nextProps.inputValue !== inputValue) {
|
14387 |
-
var selectValue = Object(
|
14388 |
var menuOptions = nextProps.menuIsOpen ? this.buildMenuOptions(nextProps, selectValue) : {
|
14389 |
render: [],
|
14390 |
focusable: []
|
@@ -14419,11 +15158,18 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14419 |
isFocused && !isDisabled && prevProps.isDisabled || // ensure focus is on the Input when the menu opens
|
14420 |
isFocused && menuIsOpen && !prevProps.menuIsOpen) {
|
14421 |
this.focusInput();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14422 |
} // scroll the focused option into view if necessary
|
14423 |
|
14424 |
|
14425 |
if (this.menuListRef && this.focusedOptionRef && this.scrollToFocusedOptionOnUpdate) {
|
14426 |
-
Object(
|
14427 |
this.scrollToFocusedOptionOnUpdate = false;
|
14428 |
}
|
14429 |
}
|
@@ -14490,7 +15236,9 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14490 |
selectValue = _this$state3.selectValue,
|
14491 |
isFocused = _this$state3.isFocused;
|
14492 |
var menuOptions = this.buildMenuOptions(this.props, selectValue);
|
14493 |
-
var
|
|
|
|
|
14494 |
var openAtIndex = focusOption === 'first' ? 0 : menuOptions.focusable.length - 1;
|
14495 |
|
14496 |
if (!isMulti) {
|
@@ -14512,16 +15260,19 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14512 |
_this2.onMenuOpen();
|
14513 |
|
14514 |
_this2.announceAriaLiveContext({
|
14515 |
-
event: 'menu'
|
|
|
|
|
|
|
14516 |
});
|
14517 |
});
|
14518 |
}
|
14519 |
}, {
|
14520 |
key: "focusValue",
|
14521 |
value: function focusValue(direction) {
|
14522 |
-
var _this$
|
14523 |
-
isMulti = _this$
|
14524 |
-
isSearchable = _this$
|
14525 |
var _this$state4 = this.state,
|
14526 |
selectValue = _this$state4.selectValue,
|
14527 |
focusedValue = _this$state4.focusedValue; // Only multiselects support value focusing
|
@@ -14584,7 +15335,9 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14584 |
key: "focusOption",
|
14585 |
value: function focusOption() {
|
14586 |
var direction = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'first';
|
14587 |
-
var
|
|
|
|
|
14588 |
var _this$state5 = this.state,
|
14589 |
focusedOption = _this$state5.focusedOption,
|
14590 |
menuOptions = _this$state5.menuOptions;
|
@@ -14597,7 +15350,10 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14597 |
if (!focusedOption) {
|
14598 |
focusedIndex = -1;
|
14599 |
this.announceAriaLiveContext({
|
14600 |
-
event: 'menu'
|
|
|
|
|
|
|
14601 |
});
|
14602 |
}
|
14603 |
|
@@ -14623,7 +15379,8 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14623 |
this.announceAriaLiveContext({
|
14624 |
event: 'menu',
|
14625 |
context: {
|
14626 |
-
isDisabled: isOptionDisabled(options[nextFocus])
|
|
|
14627 |
}
|
14628 |
});
|
14629 |
}
|
@@ -14653,22 +15410,16 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14653 |
key: "getCommonProps",
|
14654 |
value: function getCommonProps() {
|
14655 |
var clearValue = this.clearValue,
|
|
|
14656 |
getStyles = this.getStyles,
|
|
|
14657 |
setValue = this.setValue,
|
14658 |
selectOption = this.selectOption,
|
14659 |
props = this.props;
|
14660 |
-
var
|
14661 |
-
isMulti = props.isMulti,
|
14662 |
isRtl = props.isRtl,
|
14663 |
options = props.options;
|
14664 |
-
var selectValue = this.state.selectValue;
|
14665 |
var hasValue = this.hasValue();
|
14666 |
-
|
14667 |
-
var getValue = function getValue() {
|
14668 |
-
return selectValue;
|
14669 |
-
};
|
14670 |
-
|
14671 |
-
var cx = __WEBPACK_IMPORTED_MODULE_15__index_4b37608a_browser_esm_js__["d" /* D */].bind(null, classNamePrefix);
|
14672 |
return {
|
14673 |
cx: cx,
|
14674 |
clearValue: clearValue,
|
@@ -14737,9 +15488,9 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14737 |
}, {
|
14738 |
key: "isClearable",
|
14739 |
value: function isClearable() {
|
14740 |
-
var _this$
|
14741 |
-
isClearable = _this$
|
14742 |
-
isMulti = _this$
|
14743 |
// multi select, by default, IS clearable
|
14744 |
|
14745 |
if (isClearable === undefined) return isMulti;
|
@@ -14845,11 +15596,11 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14845 |
selectValue = _this$state7.selectValue,
|
14846 |
focusedValue = _this$state7.focusedValue,
|
14847 |
focusedOption = _this$state7.focusedOption;
|
14848 |
-
var _this$
|
14849 |
-
options = _this$
|
14850 |
-
menuIsOpen = _this$
|
14851 |
-
inputValue = _this$
|
14852 |
-
screenReaderStatus = _this$
|
14853 |
|
14854 |
var focusedValueMsg = focusedValue ? valueFocusAriaMessage({
|
14855 |
focusedValue: focusedValue,
|
@@ -14874,13 +15625,13 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14874 |
}, {
|
14875 |
key: "renderInput",
|
14876 |
value: function renderInput() {
|
14877 |
-
var _this$
|
14878 |
-
isDisabled = _this$
|
14879 |
-
isSearchable = _this$
|
14880 |
-
inputId = _this$
|
14881 |
-
inputValue = _this$
|
14882 |
-
tabIndex = _this$
|
14883 |
-
form = _this$
|
14884 |
var Input = this.components.Input;
|
14885 |
var inputIsHidden = this.state.inputIsHidden;
|
14886 |
var id = inputId || this.getElementId('input'); // aria attributes makes the JSX "noisy", separated for clarity
|
@@ -14897,7 +15648,7 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14897 |
id: id,
|
14898 |
innerRef: this.getInputRef,
|
14899 |
onBlur: this.onInputBlur,
|
14900 |
-
onChange:
|
14901 |
onFocus: this.onInputFocus,
|
14902 |
readOnly: true,
|
14903 |
disabled: isDisabled,
|
@@ -14946,12 +15697,12 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14946 |
SingleValue = _this$components.SingleValue,
|
14947 |
Placeholder = _this$components.Placeholder;
|
14948 |
var commonProps = this.commonProps;
|
14949 |
-
var _this$
|
14950 |
-
controlShouldRenderValue = _this$
|
14951 |
-
isDisabled = _this$
|
14952 |
-
isMulti = _this$
|
14953 |
-
inputValue = _this$
|
14954 |
-
placeholder = _this$
|
14955 |
var _this$state8 = this.state,
|
14956 |
selectValue = _this$state8.selectValue,
|
14957 |
focusedValue = _this$state8.focusedValue,
|
@@ -14976,7 +15727,7 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
14976 |
},
|
14977 |
isFocused: isOptionFocused,
|
14978 |
isDisabled: isDisabled,
|
14979 |
-
key: _this4.getOptionValue(opt),
|
14980 |
index: index,
|
14981 |
removeProps: {
|
14982 |
onClick: function onClick() {
|
@@ -15011,9 +15762,9 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
15011 |
value: function renderClearIndicator() {
|
15012 |
var ClearIndicator = this.components.ClearIndicator;
|
15013 |
var commonProps = this.commonProps;
|
15014 |
-
var _this$
|
15015 |
-
isDisabled = _this$
|
15016 |
-
isLoading = _this$
|
15017 |
var isFocused = this.state.isFocused;
|
15018 |
|
15019 |
if (!this.isClearable() || !ClearIndicator || isDisabled || !this.hasValue() || isLoading) {
|
@@ -15035,9 +15786,9 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
15035 |
value: function renderLoadingIndicator() {
|
15036 |
var LoadingIndicator = this.components.LoadingIndicator;
|
15037 |
var commonProps = this.commonProps;
|
15038 |
-
var _this$
|
15039 |
-
isDisabled = _this$
|
15040 |
-
isLoading = _this$
|
15041 |
var isFocused = this.state.isFocused;
|
15042 |
if (!LoadingIndicator || !isLoading) return null;
|
15043 |
var innerProps = {
|
@@ -15102,22 +15853,22 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
15102 |
var _this$state9 = this.state,
|
15103 |
focusedOption = _this$state9.focusedOption,
|
15104 |
menuOptions = _this$state9.menuOptions;
|
15105 |
-
var _this$
|
15106 |
-
captureMenuScroll = _this$
|
15107 |
-
inputValue = _this$
|
15108 |
-
isLoading = _this$
|
15109 |
-
loadingMessage = _this$
|
15110 |
-
minMenuHeight = _this$
|
15111 |
-
maxMenuHeight = _this$
|
15112 |
-
menuIsOpen = _this$
|
15113 |
-
menuPlacement = _this$
|
15114 |
-
menuPosition = _this$
|
15115 |
-
menuPortalTarget = _this$
|
15116 |
-
menuShouldBlockScroll = _this$
|
15117 |
-
menuShouldScrollIntoView = _this$
|
15118 |
-
noOptionsMessage = _this$
|
15119 |
-
onMenuScrollToTop = _this$
|
15120 |
-
onMenuScrollToBottom = _this$
|
15121 |
if (!menuIsOpen) return null; // TODO: Internal Option Type here
|
15122 |
|
15123 |
var render = function render(props) {
|
@@ -15142,7 +15893,8 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
15142 |
return /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_11_react___default.a.createElement(Group, Object(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__["a" /* default */])({}, commonProps, group, {
|
15143 |
Heading: GroupHeading,
|
15144 |
headingProps: {
|
15145 |
-
id: headingId
|
|
|
15146 |
},
|
15147 |
label: _this5.formatGroupLabel(item.data)
|
15148 |
}), item.options.map(function (option) {
|
@@ -15174,7 +15926,7 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
15174 |
menuPosition: menuPosition,
|
15175 |
menuShouldScrollIntoView: menuShouldScrollIntoView
|
15176 |
};
|
15177 |
-
var menuElement = /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_11_react___default.a.createElement(
|
15178 |
var ref = _ref10.ref,
|
15179 |
_ref10$placerProps = _ref10.placerProps,
|
15180 |
placement = _ref10$placerProps.placement,
|
@@ -15214,11 +15966,11 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
15214 |
value: function renderFormField() {
|
15215 |
var _this6 = this;
|
15216 |
|
15217 |
-
var _this$
|
15218 |
-
delimiter = _this$
|
15219 |
-
isDisabled = _this$
|
15220 |
-
isMulti = _this$
|
15221 |
-
name = _this$
|
15222 |
var selectValue = this.state.selectValue;
|
15223 |
if (!name || isDisabled) return;
|
15224 |
|
@@ -15276,11 +16028,11 @@ var Select = /*#__PURE__*/function (_Component) {
|
|
15276 |
IndicatorsContainer = _this$components4.IndicatorsContainer,
|
15277 |
SelectContainer = _this$components4.SelectContainer,
|
15278 |
ValueContainer = _this$components4.ValueContainer;
|
15279 |
-
var _this$
|
15280 |
-
className = _this$
|
15281 |
-
id = _this$
|
15282 |
-
isDisabled = _this$
|
15283 |
-
menuIsOpen = _this$
|
15284 |
var isFocused = this.state.isFocused;
|
15285 |
var commonProps = this.commonProps = this.getCommonProps();
|
15286 |
return /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_11_react___default.a.createElement(SelectContainer, Object(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__["a" /* default */])({}, commonProps, {
|
@@ -15318,7 +16070,7 @@ Select.defaultProps = defaultProps;
|
|
15318 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
15319 |
|
15320 |
/***/ }),
|
15321 |
-
/*
|
15322 |
/*!*********************************************************************************************************!*\
|
15323 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***!
|
15324 |
\*********************************************************************************************************/
|
@@ -15328,19 +16080,19 @@ Select.defaultProps = defaultProps;
|
|
15328 |
|
15329 |
"use strict";
|
15330 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _unsupportedIterableToArray;
|
15331 |
-
/* harmony import */ var
|
15332 |
|
15333 |
function _unsupportedIterableToArray(o, minLen) {
|
15334 |
if (!o) return;
|
15335 |
-
if (typeof o === "string") return Object(
|
15336 |
var n = Object.prototype.toString.call(o).slice(8, -1);
|
15337 |
if (n === "Object" && o.constructor) n = o.constructor.name;
|
15338 |
if (n === "Map" || n === "Set") return Array.from(o);
|
15339 |
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return Object(
|
15340 |
}
|
15341 |
|
15342 |
/***/ }),
|
15343 |
-
/*
|
15344 |
/*!***********************************************************************************************!*\
|
15345 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
|
15346 |
\***********************************************************************************************/
|
@@ -15361,7 +16113,7 @@ function _arrayLikeToArray(arr, len) {
|
|
15361 |
}
|
15362 |
|
15363 |
/***/ }),
|
15364 |
-
/*
|
15365 |
/*!************************************************!*\
|
15366 |
!*** ./src/blocks/advanced-heading/style.scss ***!
|
15367 |
\************************************************/
|
@@ -15371,7 +16123,7 @@ function _arrayLikeToArray(arr, len) {
|
|
15371 |
// removed by extract-text-webpack-plugin
|
15372 |
|
15373 |
/***/ }),
|
15374 |
-
/*
|
15375 |
/*!********************************************!*\
|
15376 |
!*** ./src/blocks/post/post-title/edit.js ***!
|
15377 |
\********************************************/
|
@@ -15419,7 +16171,7 @@ var PostTitle = function PostTitle(props) {
|
|
15419 |
};
|
15420 |
|
15421 |
/***/ }),
|
15422 |
-
/*
|
15423 |
/*!*******************************************!*\
|
15424 |
!*** ./src/blocks/post/post-meta/edit.js ***!
|
15425 |
\*******************************************/
|
@@ -15443,13 +16195,19 @@ var PostMeta = function PostMeta(props) {
|
|
15443 |
|
15444 |
var dateFormat = __experimentalGetSettings().formats.date;
|
15445 |
|
15446 |
-
var
|
|
|
|
|
15447 |
|
15448 |
-
|
15449 |
-
|
15450 |
-
|
|
|
|
|
|
|
|
|
15451 |
}
|
15452 |
-
}
|
15453 |
|
15454 |
return wp.element.createElement(
|
15455 |
'div',
|
@@ -15479,18 +16237,18 @@ var PostMeta = function PostMeta(props) {
|
|
15479 |
wp.element.createElement('span', { className: 'dashicons-admin-comments dashicons' }),
|
15480 |
post.uagb_comment_info
|
15481 |
),
|
15482 |
-
attributes.displayPostTaxonomy &&
|
15483 |
'span',
|
15484 |
{ className: 'uagb-post__taxonomy' },
|
15485 |
wp.element.createElement('span', { className: 'dashicons-tag dashicons' }),
|
15486 |
-
|
15487 |
)
|
15488 |
)
|
15489 |
);
|
15490 |
};
|
15491 |
|
15492 |
/***/ }),
|
15493 |
-
/*
|
15494 |
/*!********************************************!*\
|
15495 |
!*** ./src/blocks/post/post-image/edit.js ***!
|
15496 |
\********************************************/
|
@@ -15533,7 +16291,7 @@ var PostImage = function PostImage(props) {
|
|
15533 |
};
|
15534 |
|
15535 |
/***/ }),
|
15536 |
-
/*
|
15537 |
/*!**********************************************!*\
|
15538 |
!*** ./src/blocks/post/post-excerpt/edit.js ***!
|
15539 |
\**********************************************/
|
@@ -15543,7 +16301,7 @@ var PostImage = function PostImage(props) {
|
|
15543 |
|
15544 |
"use strict";
|
15545 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return PostExcerpt; });
|
15546 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate__ = __webpack_require__(/*! lodash/truncate */
|
15547 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_truncate__);
|
15548 |
|
15549 |
|
@@ -15598,7 +16356,7 @@ var PostExcerpt = function PostExcerpt(props) {
|
|
15598 |
};
|
15599 |
|
15600 |
/***/ }),
|
15601 |
-
/*
|
15602 |
/*!*****************************************!*\
|
15603 |
!*** ./node_modules/lodash/toNumber.js ***!
|
15604 |
\*****************************************/
|
@@ -15607,7 +16365,7 @@ var PostExcerpt = function PostExcerpt(props) {
|
|
15607 |
/***/ (function(module, exports, __webpack_require__) {
|
15608 |
|
15609 |
var isObject = __webpack_require__(/*! ./isObject */ 13),
|
15610 |
-
isSymbol = __webpack_require__(/*! ./isSymbol */
|
15611 |
|
15612 |
/** Used as references for various `Number` constants. */
|
15613 |
var NAN = 0 / 0;
|
@@ -15675,7 +16433,7 @@ module.exports = toNumber;
|
|
15675 |
|
15676 |
|
15677 |
/***/ }),
|
15678 |
-
/*
|
15679 |
/*!*********************************************!*\
|
15680 |
!*** ./src/blocks/post/post-button/edit.js ***!
|
15681 |
\*********************************************/
|
@@ -15729,7 +16487,7 @@ var PostButton = function PostButton(props) {
|
|
15729 |
};
|
15730 |
|
15731 |
/***/ }),
|
15732 |
-
/*
|
15733 |
/*!*************************************************!*\
|
15734 |
!*** ./node_modules/lodash/_baseAssignValue.js ***!
|
15735 |
\*************************************************/
|
@@ -15737,7 +16495,7 @@ var PostButton = function PostButton(props) {
|
|
15737 |
/*! all exports used */
|
15738 |
/***/ (function(module, exports, __webpack_require__) {
|
15739 |
|
15740 |
-
var defineProperty = __webpack_require__(/*! ./_defineProperty */
|
15741 |
|
15742 |
/**
|
15743 |
* The base implementation of `assignValue` and `assignMergeValue` without
|
@@ -15765,7 +16523,7 @@ module.exports = baseAssignValue;
|
|
15765 |
|
15766 |
|
15767 |
/***/ }),
|
15768 |
-
/*
|
15769 |
/*!************************************************!*\
|
15770 |
!*** ./node_modules/lodash/_defineProperty.js ***!
|
15771 |
\************************************************/
|
@@ -15787,7 +16545,7 @@ module.exports = defineProperty;
|
|
15787 |
|
15788 |
|
15789 |
/***/ }),
|
15790 |
-
/*
|
15791 |
/*!******************************************!*\
|
15792 |
!*** ./node_modules/lodash/_overRest.js ***!
|
15793 |
\******************************************/
|
@@ -15795,7 +16553,7 @@ module.exports = defineProperty;
|
|
15795 |
/*! all exports used */
|
15796 |
/***/ (function(module, exports, __webpack_require__) {
|
15797 |
|
15798 |
-
var apply = __webpack_require__(/*! ./_apply */
|
15799 |
|
15800 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
15801 |
var nativeMax = Math.max;
|
@@ -15834,7 +16592,7 @@ module.exports = overRest;
|
|
15834 |
|
15835 |
|
15836 |
/***/ }),
|
15837 |
-
/*
|
15838 |
/*!*********************************************!*\
|
15839 |
!*** ./node_modules/lodash/_setToString.js ***!
|
15840 |
\*********************************************/
|
@@ -15842,8 +16600,8 @@ module.exports = overRest;
|
|
15842 |
/*! all exports used */
|
15843 |
/***/ (function(module, exports, __webpack_require__) {
|
15844 |
|
15845 |
-
var baseSetToString = __webpack_require__(/*! ./_baseSetToString */
|
15846 |
-
shortOut = __webpack_require__(/*! ./_shortOut */
|
15847 |
|
15848 |
/**
|
15849 |
* Sets the `toString` method of `func` to return `string`.
|
@@ -15859,7 +16617,7 @@ module.exports = setToString;
|
|
15859 |
|
15860 |
|
15861 |
/***/ }),
|
15862 |
-
/*
|
15863 |
/*!**********************************************************************!*\
|
15864 |
!*** ./node_modules/element-resize-detector/src/collection-utils.js ***!
|
15865 |
\**********************************************************************/
|
@@ -15890,7 +16648,7 @@ utils.forEach = function(collection, callback) {
|
|
15890 |
|
15891 |
|
15892 |
/***/ }),
|
15893 |
-
/*
|
15894 |
/*!**********************************************************************!*\
|
15895 |
!*** ./node_modules/element-resize-detector/src/browser-detector.js ***!
|
15896 |
\**********************************************************************/
|
@@ -15941,7 +16699,7 @@ detector.isLegacyOpera = function() {
|
|
15941 |
|
15942 |
|
15943 |
/***/ }),
|
15944 |
-
/*
|
15945 |
/*!***************************************!*\
|
15946 |
!*** ./node_modules/lodash/keysIn.js ***!
|
15947 |
\***************************************/
|
@@ -15949,8 +16707,8 @@ detector.isLegacyOpera = function() {
|
|
15949 |
/*! all exports used */
|
15950 |
/***/ (function(module, exports, __webpack_require__) {
|
15951 |
|
15952 |
-
var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */
|
15953 |
-
baseKeysIn = __webpack_require__(/*! ./_baseKeysIn */
|
15954 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 29);
|
15955 |
|
15956 |
/**
|
@@ -15984,7 +16742,7 @@ module.exports = keysIn;
|
|
15984 |
|
15985 |
|
15986 |
/***/ }),
|
15987 |
-
/*
|
15988 |
/*!**********************************************!*\
|
15989 |
!*** ./node_modules/lodash/_getSymbolsIn.js ***!
|
15990 |
\**********************************************/
|
@@ -15992,10 +16750,10 @@ module.exports = keysIn;
|
|
15992 |
/*! all exports used */
|
15993 |
/***/ (function(module, exports, __webpack_require__) {
|
15994 |
|
15995 |
-
var arrayPush = __webpack_require__(/*! ./_arrayPush */
|
15996 |
-
getPrototype = __webpack_require__(/*! ./_getPrototype */
|
15997 |
-
getSymbols = __webpack_require__(/*! ./_getSymbols */
|
15998 |
-
stubArray = __webpack_require__(/*! ./stubArray */
|
15999 |
|
16000 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
16001 |
var nativeGetSymbols = Object.getOwnPropertySymbols;
|
@@ -16020,7 +16778,7 @@ module.exports = getSymbolsIn;
|
|
16020 |
|
16021 |
|
16022 |
/***/ }),
|
16023 |
-
/*
|
16024 |
/*!***********************************************!*\
|
16025 |
!*** ./node_modules/react-slick/lib/index.js ***!
|
16026 |
\***********************************************/
|
@@ -16036,7 +16794,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
16036 |
});
|
16037 |
exports["default"] = void 0;
|
16038 |
|
16039 |
-
var _slider = _interopRequireDefault(__webpack_require__(/*! ./slider */
|
16040 |
|
16041 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
16042 |
|
@@ -16044,7 +16802,7 @@ var _default = _slider["default"];
|
|
16044 |
exports["default"] = _default;
|
16045 |
|
16046 |
/***/ }),
|
16047 |
-
/*
|
16048 |
/*!*********************************************!*\
|
16049 |
!*** ./node_modules/enquire.js/src/Util.js ***!
|
16050 |
\*********************************************/
|
@@ -16099,7 +16857,7 @@ module.exports = {
|
|
16099 |
|
16100 |
|
16101 |
/***/ }),
|
16102 |
-
/*
|
16103 |
/*!******************************************!*\
|
16104 |
!*** ./src/blocks/section/attributes.js ***!
|
16105 |
\******************************************/
|
@@ -16410,7 +17168,7 @@ var attributes = {
|
|
16410 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
16411 |
|
16412 |
/***/ }),
|
16413 |
-
/*
|
16414 |
/*!*********************************************!*\
|
16415 |
!*** ./src/blocks/section/inline-styles.js ***!
|
16416 |
\*********************************************/
|
@@ -16521,7 +17279,7 @@ function inlineStyles(props, isEditor) {
|
|
16521 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
16522 |
|
16523 |
/***/ }),
|
16524 |
-
/*
|
16525 |
/*!******************************************!*\
|
16526 |
!*** ./src/blocks/buttons/attributes.js ***!
|
16527 |
\******************************************/
|
@@ -16614,7 +17372,7 @@ var attributes = {
|
|
16614 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
16615 |
|
16616 |
/***/ }),
|
16617 |
-
/*
|
16618 |
/*!************************************************!*\
|
16619 |
!*** ./src/blocks/buttons-child/attributes.js ***!
|
16620 |
\************************************************/
|
@@ -16768,870 +17526,110 @@ var attributes = {
|
|
16768 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
16769 |
|
16770 |
/***/ }),
|
16771 |
-
/*
|
16772 |
-
|
16773 |
-
!*** ./node_modules/react-transition-group/
|
16774 |
-
|
16775 |
-
/*!
|
16776 |
-
/*!
|
16777 |
-
/***/ (function(module,
|
16778 |
|
16779 |
"use strict";
|
16780 |
-
/*
|
16781 |
-
|
16782 |
-
|
16783 |
-
|
16784 |
-
|
16785 |
-
var PropTypes = _interopRequireWildcard(__webpack_require__(/*! prop-types */ 15));
|
16786 |
-
|
16787 |
-
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 5));
|
16788 |
-
|
16789 |
-
var _reactDom = _interopRequireDefault(__webpack_require__(/*! react-dom */ 33));
|
16790 |
-
|
16791 |
-
var _reactLifecyclesCompat = __webpack_require__(/*! react-lifecycles-compat */ 201);
|
16792 |
-
|
16793 |
-
var _PropTypes = __webpack_require__(/*! ./utils/PropTypes */ 202);
|
16794 |
-
|
16795 |
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
16796 |
-
|
16797 |
-
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
|
16798 |
-
|
16799 |
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
16800 |
-
|
16801 |
-
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
16802 |
-
|
16803 |
-
var UNMOUNTED = 'unmounted';
|
16804 |
-
exports.UNMOUNTED = UNMOUNTED;
|
16805 |
-
var EXITED = 'exited';
|
16806 |
-
exports.EXITED = EXITED;
|
16807 |
-
var ENTERING = 'entering';
|
16808 |
-
exports.ENTERING = ENTERING;
|
16809 |
-
var ENTERED = 'entered';
|
16810 |
-
exports.ENTERED = ENTERED;
|
16811 |
-
var EXITING = 'exiting';
|
16812 |
-
/**
|
16813 |
-
* The Transition component lets you describe a transition from one component
|
16814 |
-
* state to another _over time_ with a simple declarative API. Most commonly
|
16815 |
-
* it's used to animate the mounting and unmounting of a component, but can also
|
16816 |
-
* be used to describe in-place transition states as well.
|
16817 |
-
*
|
16818 |
-
* ---
|
16819 |
-
*
|
16820 |
-
* **Note**: `Transition` is a platform-agnostic base component. If you're using
|
16821 |
-
* transitions in CSS, you'll probably want to use
|
16822 |
-
* [`CSSTransition`](https://reactcommunity.org/react-transition-group/css-transition)
|
16823 |
-
* instead. It inherits all the features of `Transition`, but contains
|
16824 |
-
* additional features necessary to play nice with CSS transitions (hence the
|
16825 |
-
* name of the component).
|
16826 |
-
*
|
16827 |
-
* ---
|
16828 |
-
*
|
16829 |
-
* By default the `Transition` component does not alter the behavior of the
|
16830 |
-
* component it renders, it only tracks "enter" and "exit" states for the
|
16831 |
-
* components. It's up to you to give meaning and effect to those states. For
|
16832 |
-
* example we can add styles to a component when it enters or exits:
|
16833 |
-
*
|
16834 |
-
* ```jsx
|
16835 |
-
* import { Transition } from 'react-transition-group';
|
16836 |
-
*
|
16837 |
-
* const duration = 300;
|
16838 |
-
*
|
16839 |
-
* const defaultStyle = {
|
16840 |
-
* transition: `opacity ${duration}ms ease-in-out`,
|
16841 |
-
* opacity: 0,
|
16842 |
-
* }
|
16843 |
-
*
|
16844 |
-
* const transitionStyles = {
|
16845 |
-
* entering: { opacity: 0 },
|
16846 |
-
* entered: { opacity: 1 },
|
16847 |
-
* };
|
16848 |
-
*
|
16849 |
-
* const Fade = ({ in: inProp }) => (
|
16850 |
-
* <Transition in={inProp} timeout={duration}>
|
16851 |
-
* {state => (
|
16852 |
-
* <div style={{
|
16853 |
-
* ...defaultStyle,
|
16854 |
-
* ...transitionStyles[state]
|
16855 |
-
* }}>
|
16856 |
-
* I'm a fade Transition!
|
16857 |
-
* </div>
|
16858 |
-
* )}
|
16859 |
-
* </Transition>
|
16860 |
-
* );
|
16861 |
-
* ```
|
16862 |
-
*
|
16863 |
-
* There are 4 main states a Transition can be in:
|
16864 |
-
* - `'entering'`
|
16865 |
-
* - `'entered'`
|
16866 |
-
* - `'exiting'`
|
16867 |
-
* - `'exited'`
|
16868 |
-
*
|
16869 |
-
* Transition state is toggled via the `in` prop. When `true` the component
|
16870 |
-
* begins the "Enter" stage. During this stage, the component will shift from
|
16871 |
-
* its current transition state, to `'entering'` for the duration of the
|
16872 |
-
* transition and then to the `'entered'` stage once it's complete. Let's take
|
16873 |
-
* the following example (we'll use the
|
16874 |
-
* [useState](https://reactjs.org/docs/hooks-reference.html#usestate) hook):
|
16875 |
-
*
|
16876 |
-
* ```jsx
|
16877 |
-
* function App() {
|
16878 |
-
* const [inProp, setInProp] = useState(false);
|
16879 |
-
* return (
|
16880 |
-
* <div>
|
16881 |
-
* <Transition in={inProp} timeout={500}>
|
16882 |
-
* {state => (
|
16883 |
-
* // ...
|
16884 |
-
* )}
|
16885 |
-
* </Transition>
|
16886 |
-
* <button onClick={() => setInProp(true)}>
|
16887 |
-
* Click to Enter
|
16888 |
-
* </button>
|
16889 |
-
* </div>
|
16890 |
-
* );
|
16891 |
-
* }
|
16892 |
-
* ```
|
16893 |
-
*
|
16894 |
-
* When the button is clicked the component will shift to the `'entering'` state
|
16895 |
-
* and stay there for 500ms (the value of `timeout`) before it finally switches
|
16896 |
-
* to `'entered'`.
|
16897 |
-
*
|
16898 |
-
* When `in` is `false` the same thing happens except the state moves from
|
16899 |
-
* `'exiting'` to `'exited'`.
|
16900 |
-
*/
|
16901 |
-
|
16902 |
-
exports.EXITING = EXITING;
|
16903 |
-
|
16904 |
-
var Transition =
|
16905 |
-
/*#__PURE__*/
|
16906 |
-
function (_React$Component) {
|
16907 |
-
_inheritsLoose(Transition, _React$Component);
|
16908 |
-
|
16909 |
-
function Transition(props, context) {
|
16910 |
-
var _this;
|
16911 |
-
|
16912 |
-
_this = _React$Component.call(this, props, context) || this;
|
16913 |
-
var parentGroup = context.transitionGroup; // In the context of a TransitionGroup all enters are really appears
|
16914 |
-
|
16915 |
-
var appear = parentGroup && !parentGroup.isMounting ? props.enter : props.appear;
|
16916 |
-
var initialStatus;
|
16917 |
-
_this.appearStatus = null;
|
16918 |
-
|
16919 |
-
if (props.in) {
|
16920 |
-
if (appear) {
|
16921 |
-
initialStatus = EXITED;
|
16922 |
-
_this.appearStatus = ENTERING;
|
16923 |
-
} else {
|
16924 |
-
initialStatus = ENTERED;
|
16925 |
-
}
|
16926 |
-
} else {
|
16927 |
-
if (props.unmountOnExit || props.mountOnEnter) {
|
16928 |
-
initialStatus = UNMOUNTED;
|
16929 |
-
} else {
|
16930 |
-
initialStatus = EXITED;
|
16931 |
-
}
|
16932 |
-
}
|
16933 |
-
|
16934 |
-
_this.state = {
|
16935 |
-
status: initialStatus
|
16936 |
-
};
|
16937 |
-
_this.nextCallback = null;
|
16938 |
-
return _this;
|
16939 |
-
}
|
16940 |
-
|
16941 |
-
var _proto = Transition.prototype;
|
16942 |
-
|
16943 |
-
_proto.getChildContext = function getChildContext() {
|
16944 |
-
return {
|
16945 |
-
transitionGroup: null // allows for nested Transitions
|
16946 |
-
|
16947 |
-
};
|
16948 |
-
};
|
16949 |
-
|
16950 |
-
Transition.getDerivedStateFromProps = function getDerivedStateFromProps(_ref, prevState) {
|
16951 |
-
var nextIn = _ref.in;
|
16952 |
-
|
16953 |
-
if (nextIn && prevState.status === UNMOUNTED) {
|
16954 |
-
return {
|
16955 |
-
status: EXITED
|
16956 |
-
};
|
16957 |
-
}
|
16958 |
-
|
16959 |
-
return null;
|
16960 |
-
}; // getSnapshotBeforeUpdate(prevProps) {
|
16961 |
-
// let nextStatus = null
|
16962 |
-
// if (prevProps !== this.props) {
|
16963 |
-
// const { status } = this.state
|
16964 |
-
// if (this.props.in) {
|
16965 |
-
// if (status !== ENTERING && status !== ENTERED) {
|
16966 |
-
// nextStatus = ENTERING
|
16967 |
-
// }
|
16968 |
-
// } else {
|
16969 |
-
// if (status === ENTERING || status === ENTERED) {
|
16970 |
-
// nextStatus = EXITING
|
16971 |
-
// }
|
16972 |
-
// }
|
16973 |
-
// }
|
16974 |
-
// return { nextStatus }
|
16975 |
-
// }
|
16976 |
-
|
16977 |
-
|
16978 |
-
_proto.componentDidMount = function componentDidMount() {
|
16979 |
-
this.updateStatus(true, this.appearStatus);
|
16980 |
-
};
|
16981 |
-
|
16982 |
-
_proto.componentDidUpdate = function componentDidUpdate(prevProps) {
|
16983 |
-
var nextStatus = null;
|
16984 |
-
|
16985 |
-
if (prevProps !== this.props) {
|
16986 |
-
var status = this.state.status;
|
16987 |
|
16988 |
-
|
16989 |
-
if (
|
16990 |
-
|
16991 |
-
}
|
16992 |
-
} else {
|
16993 |
-
if (status === ENTERING || status === ENTERED) {
|
16994 |
-
nextStatus = EXITING;
|
16995 |
}
|
16996 |
}
|
16997 |
}
|
16998 |
|
16999 |
-
|
17000 |
-
};
|
17001 |
-
|
17002 |
-
_proto.componentWillUnmount = function componentWillUnmount() {
|
17003 |
-
this.cancelNextCallback();
|
17004 |
-
};
|
17005 |
-
|
17006 |
-
_proto.getTimeouts = function getTimeouts() {
|
17007 |
-
var timeout = this.props.timeout;
|
17008 |
-
var exit, enter, appear;
|
17009 |
-
exit = enter = appear = timeout;
|
17010 |
-
|
17011 |
-
if (timeout != null && typeof timeout !== 'number') {
|
17012 |
-
exit = timeout.exit;
|
17013 |
-
enter = timeout.enter; // TODO: remove fallback for next major
|
17014 |
-
|
17015 |
-
appear = timeout.appear !== undefined ? timeout.appear : enter;
|
17016 |
-
}
|
17017 |
-
|
17018 |
-
return {
|
17019 |
-
exit: exit,
|
17020 |
-
enter: enter,
|
17021 |
-
appear: appear
|
17022 |
-
};
|
17023 |
-
};
|
17024 |
-
|
17025 |
-
_proto.updateStatus = function updateStatus(mounting, nextStatus) {
|
17026 |
-
if (mounting === void 0) {
|
17027 |
-
mounting = false;
|
17028 |
-
}
|
17029 |
-
|
17030 |
-
if (nextStatus !== null) {
|
17031 |
-
// nextStatus will always be ENTERING or EXITING.
|
17032 |
-
this.cancelNextCallback();
|
17033 |
-
|
17034 |
-
var node = _reactDom.default.findDOMNode(this);
|
17035 |
-
|
17036 |
-
if (nextStatus === ENTERING) {
|
17037 |
-
this.performEnter(node, mounting);
|
17038 |
-
} else {
|
17039 |
-
this.performExit(node);
|
17040 |
-
}
|
17041 |
-
} else if (this.props.unmountOnExit && this.state.status === EXITED) {
|
17042 |
-
this.setState({
|
17043 |
-
status: UNMOUNTED
|
17044 |
-
});
|
17045 |
-
}
|
17046 |
-
};
|
17047 |
-
|
17048 |
-
_proto.performEnter = function performEnter(node, mounting) {
|
17049 |
-
var _this2 = this;
|
17050 |
-
|
17051 |
-
var enter = this.props.enter;
|
17052 |
-
var appearing = this.context.transitionGroup ? this.context.transitionGroup.isMounting : mounting;
|
17053 |
-
var timeouts = this.getTimeouts();
|
17054 |
-
var enterTimeout = appearing ? timeouts.appear : timeouts.enter; // no enter animation skip right to ENTERED
|
17055 |
-
// if we are mounting and running this it means appear _must_ be set
|
17056 |
-
|
17057 |
-
if (!mounting && !enter) {
|
17058 |
-
this.safeSetState({
|
17059 |
-
status: ENTERED
|
17060 |
-
}, function () {
|
17061 |
-
_this2.props.onEntered(node);
|
17062 |
-
});
|
17063 |
-
return;
|
17064 |
-
}
|
17065 |
-
|
17066 |
-
this.props.onEnter(node, appearing);
|
17067 |
-
this.safeSetState({
|
17068 |
-
status: ENTERING
|
17069 |
-
}, function () {
|
17070 |
-
_this2.props.onEntering(node, appearing);
|
17071 |
-
|
17072 |
-
_this2.onTransitionEnd(node, enterTimeout, function () {
|
17073 |
-
_this2.safeSetState({
|
17074 |
-
status: ENTERED
|
17075 |
-
}, function () {
|
17076 |
-
_this2.props.onEntered(node, appearing);
|
17077 |
-
});
|
17078 |
-
});
|
17079 |
-
});
|
17080 |
-
};
|
17081 |
-
|
17082 |
-
_proto.performExit = function performExit(node) {
|
17083 |
-
var _this3 = this;
|
17084 |
-
|
17085 |
-
var exit = this.props.exit;
|
17086 |
-
var timeouts = this.getTimeouts(); // no exit animation skip right to EXITED
|
17087 |
-
|
17088 |
-
if (!exit) {
|
17089 |
-
this.safeSetState({
|
17090 |
-
status: EXITED
|
17091 |
-
}, function () {
|
17092 |
-
_this3.props.onExited(node);
|
17093 |
-
});
|
17094 |
-
return;
|
17095 |
-
}
|
17096 |
-
|
17097 |
-
this.props.onExit(node);
|
17098 |
-
this.safeSetState({
|
17099 |
-
status: EXITING
|
17100 |
-
}, function () {
|
17101 |
-
_this3.props.onExiting(node);
|
17102 |
-
|
17103 |
-
_this3.onTransitionEnd(node, timeouts.exit, function () {
|
17104 |
-
_this3.safeSetState({
|
17105 |
-
status: EXITED
|
17106 |
-
}, function () {
|
17107 |
-
_this3.props.onExited(node);
|
17108 |
-
});
|
17109 |
-
});
|
17110 |
-
});
|
17111 |
-
};
|
17112 |
-
|
17113 |
-
_proto.cancelNextCallback = function cancelNextCallback() {
|
17114 |
-
if (this.nextCallback !== null) {
|
17115 |
-
this.nextCallback.cancel();
|
17116 |
-
this.nextCallback = null;
|
17117 |
-
}
|
17118 |
-
};
|
17119 |
-
|
17120 |
-
_proto.safeSetState = function safeSetState(nextState, callback) {
|
17121 |
-
// This shouldn't be necessary, but there are weird race conditions with
|
17122 |
-
// setState callbacks and unmounting in testing, so always make sure that
|
17123 |
-
// we can cancel any pending setState callbacks after we unmount.
|
17124 |
-
callback = this.setNextCallback(callback);
|
17125 |
-
this.setState(nextState, callback);
|
17126 |
-
};
|
17127 |
-
|
17128 |
-
_proto.setNextCallback = function setNextCallback(callback) {
|
17129 |
-
var _this4 = this;
|
17130 |
-
|
17131 |
-
var active = true;
|
17132 |
-
|
17133 |
-
this.nextCallback = function (event) {
|
17134 |
-
if (active) {
|
17135 |
-
active = false;
|
17136 |
-
_this4.nextCallback = null;
|
17137 |
-
callback(event);
|
17138 |
-
}
|
17139 |
-
};
|
17140 |
-
|
17141 |
-
this.nextCallback.cancel = function () {
|
17142 |
-
active = false;
|
17143 |
-
};
|
17144 |
-
|
17145 |
-
return this.nextCallback;
|
17146 |
-
};
|
17147 |
-
|
17148 |
-
_proto.onTransitionEnd = function onTransitionEnd(node, timeout, handler) {
|
17149 |
-
this.setNextCallback(handler);
|
17150 |
-
var doesNotHaveTimeoutOrListener = timeout == null && !this.props.addEndListener;
|
17151 |
-
|
17152 |
-
if (!node || doesNotHaveTimeoutOrListener) {
|
17153 |
-
setTimeout(this.nextCallback, 0);
|
17154 |
-
return;
|
17155 |
-
}
|
17156 |
-
|
17157 |
-
if (this.props.addEndListener) {
|
17158 |
-
this.props.addEndListener(node, this.nextCallback);
|
17159 |
-
}
|
17160 |
-
|
17161 |
-
if (timeout != null) {
|
17162 |
-
setTimeout(this.nextCallback, timeout);
|
17163 |
-
}
|
17164 |
-
};
|
17165 |
-
|
17166 |
-
_proto.render = function render() {
|
17167 |
-
var status = this.state.status;
|
17168 |
-
|
17169 |
-
if (status === UNMOUNTED) {
|
17170 |
-
return null;
|
17171 |
-
}
|
17172 |
-
|
17173 |
-
var _this$props = this.props,
|
17174 |
-
children = _this$props.children,
|
17175 |
-
childProps = _objectWithoutPropertiesLoose(_this$props, ["children"]); // filter props for Transtition
|
17176 |
-
|
17177 |
-
|
17178 |
-
delete childProps.in;
|
17179 |
-
delete childProps.mountOnEnter;
|
17180 |
-
delete childProps.unmountOnExit;
|
17181 |
-
delete childProps.appear;
|
17182 |
-
delete childProps.enter;
|
17183 |
-
delete childProps.exit;
|
17184 |
-
delete childProps.timeout;
|
17185 |
-
delete childProps.addEndListener;
|
17186 |
-
delete childProps.onEnter;
|
17187 |
-
delete childProps.onEntering;
|
17188 |
-
delete childProps.onEntered;
|
17189 |
-
delete childProps.onExit;
|
17190 |
-
delete childProps.onExiting;
|
17191 |
-
delete childProps.onExited;
|
17192 |
-
|
17193 |
-
if (typeof children === 'function') {
|
17194 |
-
return children(status, childProps);
|
17195 |
-
}
|
17196 |
-
|
17197 |
-
var child = _react.default.Children.only(children);
|
17198 |
-
|
17199 |
-
return _react.default.cloneElement(child, childProps);
|
17200 |
};
|
17201 |
|
17202 |
-
return
|
17203 |
-
}
|
17204 |
-
|
17205 |
-
Transition.contextTypes = {
|
17206 |
-
transitionGroup: PropTypes.object
|
17207 |
-
};
|
17208 |
-
Transition.childContextTypes = {
|
17209 |
-
transitionGroup: function transitionGroup() {}
|
17210 |
-
};
|
17211 |
-
Transition.propTypes = process.env.NODE_ENV !== "production" ? {
|
17212 |
-
/**
|
17213 |
-
* A `function` child can be used instead of a React element. This function is
|
17214 |
-
* called with the current transition status (`'entering'`, `'entered'`,
|
17215 |
-
* `'exiting'`, `'exited'`, `'unmounted'`), which can be used to apply context
|
17216 |
-
* specific props to a component.
|
17217 |
-
*
|
17218 |
-
* ```jsx
|
17219 |
-
* <Transition in={this.state.in} timeout={150}>
|
17220 |
-
* {state => (
|
17221 |
-
* <MyComponent className={`fade fade-${state}`} />
|
17222 |
-
* )}
|
17223 |
-
* </Transition>
|
17224 |
-
* ```
|
17225 |
-
*/
|
17226 |
-
children: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,
|
17227 |
-
|
17228 |
-
/**
|
17229 |
-
* Show the component; triggers the enter or exit states
|
17230 |
-
*/
|
17231 |
-
in: PropTypes.bool,
|
17232 |
-
|
17233 |
-
/**
|
17234 |
-
* By default the child component is mounted immediately along with
|
17235 |
-
* the parent `Transition` component. If you want to "lazy mount" the component on the
|
17236 |
-
* first `in={true}` you can set `mountOnEnter`. After the first enter transition the component will stay
|
17237 |
-
* mounted, even on "exited", unless you also specify `unmountOnExit`.
|
17238 |
-
*/
|
17239 |
-
mountOnEnter: PropTypes.bool,
|
17240 |
-
|
17241 |
-
/**
|
17242 |
-
* By default the child component stays mounted after it reaches the `'exited'` state.
|
17243 |
-
* Set `unmountOnExit` if you'd prefer to unmount the component after it finishes exiting.
|
17244 |
-
*/
|
17245 |
-
unmountOnExit: PropTypes.bool,
|
17246 |
-
|
17247 |
-
/**
|
17248 |
-
* Normally a component is not transitioned if it is shown when the `<Transition>` component mounts.
|
17249 |
-
* If you want to transition on the first mount set `appear` to `true`, and the
|
17250 |
-
* component will transition in as soon as the `<Transition>` mounts.
|
17251 |
-
*
|
17252 |
-
* > Note: there are no specific "appear" states. `appear` only adds an additional `enter` transition.
|
17253 |
-
*/
|
17254 |
-
appear: PropTypes.bool,
|
17255 |
-
|
17256 |
-
/**
|
17257 |
-
* Enable or disable enter transitions.
|
17258 |
-
*/
|
17259 |
-
enter: PropTypes.bool,
|
17260 |
-
|
17261 |
-
/**
|
17262 |
-
* Enable or disable exit transitions.
|
17263 |
-
*/
|
17264 |
-
exit: PropTypes.bool,
|
17265 |
-
|
17266 |
-
/**
|
17267 |
-
* The duration of the transition, in milliseconds.
|
17268 |
-
* Required unless `addEndListener` is provided.
|
17269 |
-
*
|
17270 |
-
* You may specify a single timeout for all transitions:
|
17271 |
-
*
|
17272 |
-
* ```jsx
|
17273 |
-
* timeout={500}
|
17274 |
-
* ```
|
17275 |
-
*
|
17276 |
-
* or individually:
|
17277 |
-
*
|
17278 |
-
* ```jsx
|
17279 |
-
* timeout={{
|
17280 |
-
* appear: 500,
|
17281 |
-
* enter: 300,
|
17282 |
-
* exit: 500,
|
17283 |
-
* }}
|
17284 |
-
* ```
|
17285 |
-
*
|
17286 |
-
* - `appear` defaults to the value of `enter`
|
17287 |
-
* - `enter` defaults to `0`
|
17288 |
-
* - `exit` defaults to `0`
|
17289 |
-
*
|
17290 |
-
* @type {number | { enter?: number, exit?: number, appear?: number }}
|
17291 |
-
*/
|
17292 |
-
timeout: function timeout(props) {
|
17293 |
-
var pt = _PropTypes.timeoutsShape;
|
17294 |
-
if (!props.addEndListener) pt = pt.isRequired;
|
17295 |
-
|
17296 |
-
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
17297 |
-
args[_key - 1] = arguments[_key];
|
17298 |
-
}
|
17299 |
-
|
17300 |
-
return pt.apply(void 0, [props].concat(args));
|
17301 |
-
},
|
17302 |
-
|
17303 |
-
/**
|
17304 |
-
* Add a custom transition end trigger. Called with the transitioning
|
17305 |
-
* DOM node and a `done` callback. Allows for more fine grained transition end
|
17306 |
-
* logic. **Note:** Timeouts are still used as a fallback if provided.
|
17307 |
-
*
|
17308 |
-
* ```jsx
|
17309 |
-
* addEndListener={(node, done) => {
|
17310 |
-
* // use the css transitionend event to mark the finish of a transition
|
17311 |
-
* node.addEventListener('transitionend', done, false);
|
17312 |
-
* }}
|
17313 |
-
* ```
|
17314 |
-
*/
|
17315 |
-
addEndListener: PropTypes.func,
|
17316 |
-
|
17317 |
-
/**
|
17318 |
-
* Callback fired before the "entering" status is applied. An extra parameter
|
17319 |
-
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
|
17320 |
-
*
|
17321 |
-
* @type Function(node: HtmlElement, isAppearing: bool) -> void
|
17322 |
-
*/
|
17323 |
-
onEnter: PropTypes.func,
|
17324 |
-
|
17325 |
-
/**
|
17326 |
-
* Callback fired after the "entering" status is applied. An extra parameter
|
17327 |
-
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
|
17328 |
-
*
|
17329 |
-
* @type Function(node: HtmlElement, isAppearing: bool)
|
17330 |
-
*/
|
17331 |
-
onEntering: PropTypes.func,
|
17332 |
-
|
17333 |
-
/**
|
17334 |
-
* Callback fired after the "entered" status is applied. An extra parameter
|
17335 |
-
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
|
17336 |
-
*
|
17337 |
-
* @type Function(node: HtmlElement, isAppearing: bool) -> void
|
17338 |
-
*/
|
17339 |
-
onEntered: PropTypes.func,
|
17340 |
-
|
17341 |
-
/**
|
17342 |
-
* Callback fired before the "exiting" status is applied.
|
17343 |
-
*
|
17344 |
-
* @type Function(node: HtmlElement) -> void
|
17345 |
-
*/
|
17346 |
-
onExit: PropTypes.func,
|
17347 |
-
|
17348 |
-
/**
|
17349 |
-
* Callback fired after the "exiting" status is applied.
|
17350 |
-
*
|
17351 |
-
* @type Function(node: HtmlElement) -> void
|
17352 |
-
*/
|
17353 |
-
onExiting: PropTypes.func,
|
17354 |
-
|
17355 |
-
/**
|
17356 |
-
* Callback fired after the "exited" status is applied.
|
17357 |
-
*
|
17358 |
-
* @type Function(node: HtmlElement) -> void
|
17359 |
-
*/
|
17360 |
-
onExited: PropTypes.func // Name the function so it is clearer in the documentation
|
17361 |
-
|
17362 |
-
} : {};
|
17363 |
-
|
17364 |
-
function noop() {}
|
17365 |
-
|
17366 |
-
Transition.defaultProps = {
|
17367 |
-
in: false,
|
17368 |
-
mountOnEnter: false,
|
17369 |
-
unmountOnExit: false,
|
17370 |
-
appear: false,
|
17371 |
-
enter: true,
|
17372 |
-
exit: true,
|
17373 |
-
onEnter: noop,
|
17374 |
-
onEntering: noop,
|
17375 |
-
onEntered: noop,
|
17376 |
-
onExit: noop,
|
17377 |
-
onExiting: noop,
|
17378 |
-
onExited: noop
|
17379 |
-
};
|
17380 |
-
Transition.UNMOUNTED = 0;
|
17381 |
-
Transition.EXITED = 1;
|
17382 |
-
Transition.ENTERING = 2;
|
17383 |
-
Transition.ENTERED = 3;
|
17384 |
-
Transition.EXITING = 4;
|
17385 |
-
|
17386 |
-
var _default = (0, _reactLifecyclesCompat.polyfill)(Transition);
|
17387 |
-
|
17388 |
-
exports.default = _default;
|
17389 |
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
17390 |
|
17391 |
/***/ }),
|
17392 |
-
/*
|
17393 |
-
|
17394 |
-
!*** ./node_modules/react-
|
17395 |
-
|
17396 |
-
/*! exports provided:
|
17397 |
-
/*!
|
17398 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
17399 |
|
17400 |
"use strict";
|
17401 |
-
|
17402 |
-
|
17403 |
-
|
17404 |
-
* Copyright (c) 2013-present, Facebook, Inc.
|
17405 |
-
*
|
17406 |
-
* This source code is licensed under the MIT license found in the
|
17407 |
-
* LICENSE file in the root directory of this source tree.
|
17408 |
-
*/
|
17409 |
-
|
17410 |
-
function componentWillMount() {
|
17411 |
-
// Call this.constructor.gDSFP to support sub-classes.
|
17412 |
-
var state = this.constructor.getDerivedStateFromProps(this.props, this.state);
|
17413 |
-
if (state !== null && state !== undefined) {
|
17414 |
-
this.setState(state);
|
17415 |
-
}
|
17416 |
-
}
|
17417 |
-
|
17418 |
-
function componentWillReceiveProps(nextProps) {
|
17419 |
-
// Call this.constructor.gDSFP to support sub-classes.
|
17420 |
-
// Use the setState() updater to ensure state isn't stale in certain edge cases.
|
17421 |
-
function updater(prevState) {
|
17422 |
-
var state = this.constructor.getDerivedStateFromProps(nextProps, prevState);
|
17423 |
-
return state !== null && state !== undefined ? state : null;
|
17424 |
-
}
|
17425 |
-
// Binding "this" is important for shallow renderer support.
|
17426 |
-
this.setState(updater.bind(this));
|
17427 |
-
}
|
17428 |
-
|
17429 |
-
function componentWillUpdate(nextProps, nextState) {
|
17430 |
-
try {
|
17431 |
-
var prevProps = this.props;
|
17432 |
-
var prevState = this.state;
|
17433 |
-
this.props = nextProps;
|
17434 |
-
this.state = nextState;
|
17435 |
-
this.__reactInternalSnapshotFlag = true;
|
17436 |
-
this.__reactInternalSnapshot = this.getSnapshotBeforeUpdate(
|
17437 |
-
prevProps,
|
17438 |
-
prevState
|
17439 |
-
);
|
17440 |
-
} finally {
|
17441 |
-
this.props = prevProps;
|
17442 |
-
this.state = prevState;
|
17443 |
-
}
|
17444 |
-
}
|
17445 |
-
|
17446 |
-
// React may warn about cWM/cWRP/cWU methods being deprecated.
|
17447 |
-
// Add a flag to suppress these warnings for this special case.
|
17448 |
-
componentWillMount.__suppressDeprecationWarning = true;
|
17449 |
-
componentWillReceiveProps.__suppressDeprecationWarning = true;
|
17450 |
-
componentWillUpdate.__suppressDeprecationWarning = true;
|
17451 |
-
|
17452 |
-
function polyfill(Component) {
|
17453 |
-
var prototype = Component.prototype;
|
17454 |
-
|
17455 |
-
if (!prototype || !prototype.isReactComponent) {
|
17456 |
-
throw new Error('Can only polyfill class components');
|
17457 |
-
}
|
17458 |
-
|
17459 |
-
if (
|
17460 |
-
typeof Component.getDerivedStateFromProps !== 'function' &&
|
17461 |
-
typeof prototype.getSnapshotBeforeUpdate !== 'function'
|
17462 |
-
) {
|
17463 |
-
return Component;
|
17464 |
-
}
|
17465 |
-
|
17466 |
-
// If new component APIs are defined, "unsafe" lifecycles won't be called.
|
17467 |
-
// Error if any of these lifecycles are present,
|
17468 |
-
// Because they would work differently between older and newer (16.3+) versions of React.
|
17469 |
-
var foundWillMountName = null;
|
17470 |
-
var foundWillReceivePropsName = null;
|
17471 |
-
var foundWillUpdateName = null;
|
17472 |
-
if (typeof prototype.componentWillMount === 'function') {
|
17473 |
-
foundWillMountName = 'componentWillMount';
|
17474 |
-
} else if (typeof prototype.UNSAFE_componentWillMount === 'function') {
|
17475 |
-
foundWillMountName = 'UNSAFE_componentWillMount';
|
17476 |
-
}
|
17477 |
-
if (typeof prototype.componentWillReceiveProps === 'function') {
|
17478 |
-
foundWillReceivePropsName = 'componentWillReceiveProps';
|
17479 |
-
} else if (typeof prototype.UNSAFE_componentWillReceiveProps === 'function') {
|
17480 |
-
foundWillReceivePropsName = 'UNSAFE_componentWillReceiveProps';
|
17481 |
-
}
|
17482 |
-
if (typeof prototype.componentWillUpdate === 'function') {
|
17483 |
-
foundWillUpdateName = 'componentWillUpdate';
|
17484 |
-
} else if (typeof prototype.UNSAFE_componentWillUpdate === 'function') {
|
17485 |
-
foundWillUpdateName = 'UNSAFE_componentWillUpdate';
|
17486 |
-
}
|
17487 |
-
if (
|
17488 |
-
foundWillMountName !== null ||
|
17489 |
-
foundWillReceivePropsName !== null ||
|
17490 |
-
foundWillUpdateName !== null
|
17491 |
-
) {
|
17492 |
-
var componentName = Component.displayName || Component.name;
|
17493 |
-
var newApiName =
|
17494 |
-
typeof Component.getDerivedStateFromProps === 'function'
|
17495 |
-
? 'getDerivedStateFromProps()'
|
17496 |
-
: 'getSnapshotBeforeUpdate()';
|
17497 |
-
|
17498 |
-
throw Error(
|
17499 |
-
'Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n' +
|
17500 |
-
componentName +
|
17501 |
-
' uses ' +
|
17502 |
-
newApiName +
|
17503 |
-
' but also contains the following legacy lifecycles:' +
|
17504 |
-
(foundWillMountName !== null ? '\n ' + foundWillMountName : '') +
|
17505 |
-
(foundWillReceivePropsName !== null
|
17506 |
-
? '\n ' + foundWillReceivePropsName
|
17507 |
-
: '') +
|
17508 |
-
(foundWillUpdateName !== null ? '\n ' + foundWillUpdateName : '') +
|
17509 |
-
'\n\nThe above lifecycles should be removed. Learn more about this warning here:\n' +
|
17510 |
-
'https://fb.me/react-async-component-lifecycle-hooks'
|
17511 |
-
);
|
17512 |
-
}
|
17513 |
-
|
17514 |
-
// React <= 16.2 does not support static getDerivedStateFromProps.
|
17515 |
-
// As a workaround, use cWM and cWRP to invoke the new static lifecycle.
|
17516 |
-
// Newer versions of React will ignore these lifecycles if gDSFP exists.
|
17517 |
-
if (typeof Component.getDerivedStateFromProps === 'function') {
|
17518 |
-
prototype.componentWillMount = componentWillMount;
|
17519 |
-
prototype.componentWillReceiveProps = componentWillReceiveProps;
|
17520 |
-
}
|
17521 |
-
|
17522 |
-
// React <= 16.2 does not support getSnapshotBeforeUpdate.
|
17523 |
-
// As a workaround, use cWU to invoke the new lifecycle.
|
17524 |
-
// Newer versions of React will ignore that lifecycle if gSBU exists.
|
17525 |
-
if (typeof prototype.getSnapshotBeforeUpdate === 'function') {
|
17526 |
-
if (typeof prototype.componentDidUpdate !== 'function') {
|
17527 |
-
throw new Error(
|
17528 |
-
'Cannot polyfill getSnapshotBeforeUpdate() for components that do not define componentDidUpdate() on the prototype'
|
17529 |
-
);
|
17530 |
-
}
|
17531 |
-
|
17532 |
-
prototype.componentWillUpdate = componentWillUpdate;
|
17533 |
-
|
17534 |
-
var componentDidUpdate = prototype.componentDidUpdate;
|
17535 |
-
|
17536 |
-
prototype.componentDidUpdate = function componentDidUpdatePolyfill(
|
17537 |
-
prevProps,
|
17538 |
-
prevState,
|
17539 |
-
maybeSnapshot
|
17540 |
-
) {
|
17541 |
-
// 16.3+ will not execute our will-update method;
|
17542 |
-
// It will pass a snapshot value to did-update though.
|
17543 |
-
// Older versions will require our polyfilled will-update value.
|
17544 |
-
// We need to handle both cases, but can't just check for the presence of "maybeSnapshot",
|
17545 |
-
// Because for <= 15.x versions this might be a "prevContext" object.
|
17546 |
-
// We also can't just check "__reactInternalSnapshot",
|
17547 |
-
// Because get-snapshot might return a falsy value.
|
17548 |
-
// So check for the explicit __reactInternalSnapshotFlag flag to determine behavior.
|
17549 |
-
var snapshot = this.__reactInternalSnapshotFlag
|
17550 |
-
? this.__reactInternalSnapshot
|
17551 |
-
: maybeSnapshot;
|
17552 |
-
|
17553 |
-
componentDidUpdate.call(this, prevProps, prevState, snapshot);
|
17554 |
-
};
|
17555 |
-
}
|
17556 |
-
|
17557 |
-
return Component;
|
17558 |
-
}
|
17559 |
-
|
17560 |
-
|
17561 |
-
|
17562 |
|
17563 |
/***/ }),
|
17564 |
-
/*
|
17565 |
-
|
17566 |
-
!*** ./node_modules/react-transition-group/utils/PropTypes.js ***!
|
17567 |
-
|
17568 |
-
/*!
|
17569 |
-
/*!
|
17570 |
-
/***/ (function(module,
|
17571 |
|
17572 |
"use strict";
|
17573 |
-
/* WEBPACK VAR INJECTION */(function(process) {
|
17574 |
-
|
17575 |
-
|
17576 |
-
|
17577 |
-
|
17578 |
-
var _propTypes = _interopRequireDefault(__webpack_require__(/*! prop-types */ 15));
|
17579 |
-
|
17580 |
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
17581 |
|
17582 |
-
var timeoutsShape = process.env.NODE_ENV !== 'production' ?
|
17583 |
-
enter:
|
17584 |
-
exit:
|
17585 |
-
appear:
|
17586 |
}).isRequired]) : null;
|
17587 |
-
|
17588 |
-
|
17589 |
-
|
17590 |
-
|
17591 |
-
|
17592 |
-
|
17593 |
-
|
17594 |
-
|
17595 |
-
|
17596 |
-
|
17597 |
-
|
17598 |
-
exitActive: _propTypes.default.string
|
17599 |
})]) : null;
|
17600 |
-
|
17601 |
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
17602 |
|
17603 |
/***/ }),
|
17604 |
-
/*
|
17605 |
-
|
17606 |
-
!*** ./node_modules/react-transition-group/TransitionGroup.js ***!
|
17607 |
-
|
17608 |
-
/*!
|
17609 |
-
/*!
|
17610 |
-
/***/ (function(module,
|
17611 |
|
17612 |
"use strict";
|
17613 |
-
/* WEBPACK VAR INJECTION */(function(process) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17614 |
|
17615 |
-
exports.__esModule = true;
|
17616 |
-
exports.default = void 0;
|
17617 |
|
17618 |
-
var _propTypes = _interopRequireDefault(__webpack_require__(/*! prop-types */ 15));
|
17619 |
|
17620 |
-
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 5));
|
17621 |
|
17622 |
-
var _reactLifecyclesCompat = __webpack_require__(/*! react-lifecycles-compat */ 201);
|
17623 |
|
17624 |
-
var _ChildMapping = __webpack_require__(/*! ./utils/ChildMapping */ 516);
|
17625 |
|
17626 |
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
17627 |
|
17628 |
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
17629 |
-
|
17630 |
-
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
17631 |
|
17632 |
-
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
17633 |
-
|
17634 |
-
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
17635 |
|
17636 |
var values = Object.values || function (obj) {
|
17637 |
return Object.keys(obj).map(function (k) {
|
@@ -17644,37 +17642,37 @@ var defaultProps = {
|
|
17644 |
childFactory: function childFactory(child) {
|
17645 |
return child;
|
17646 |
}
|
17647 |
-
/**
|
17648 |
-
* The `<TransitionGroup>` component manages a set of transition components
|
17649 |
-
* (`<Transition>` and `<CSSTransition>`) in a list. Like with the transition
|
17650 |
-
* components, `<TransitionGroup>` is a state machine for managing the mounting
|
17651 |
-
* and unmounting of components over time.
|
17652 |
-
*
|
17653 |
-
* Consider the example below. As items are removed or added to the TodoList the
|
17654 |
-
* `in` prop is toggled automatically by the `<TransitionGroup>`.
|
17655 |
-
*
|
17656 |
-
* Note that `<TransitionGroup>` does not define any animation behavior!
|
17657 |
-
* Exactly _how_ a list item animates is up to the individual transition
|
17658 |
-
* component. This means you can mix and match animations across different list
|
17659 |
-
* items.
|
17660 |
-
*/
|
17661 |
-
|
17662 |
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17663 |
|
17664 |
-
var TransitionGroup =
|
17665 |
-
|
17666 |
-
function (_React$Component) {
|
17667 |
-
_inheritsLoose(TransitionGroup, _React$Component);
|
17668 |
|
17669 |
function TransitionGroup(props, context) {
|
17670 |
var _this;
|
17671 |
|
17672 |
_this = _React$Component.call(this, props, context) || this;
|
17673 |
|
17674 |
-
var handleExited = _this.handleExited.bind(
|
17675 |
|
17676 |
|
17677 |
_this.state = {
|
|
|
|
|
|
|
17678 |
handleExited: handleExited,
|
17679 |
firstRender: true
|
17680 |
};
|
@@ -17683,17 +17681,13 @@ function (_React$Component) {
|
|
17683 |
|
17684 |
var _proto = TransitionGroup.prototype;
|
17685 |
|
17686 |
-
_proto.getChildContext = function getChildContext() {
|
17687 |
-
return {
|
17688 |
-
transitionGroup: {
|
17689 |
-
isMounting: !this.appeared
|
17690 |
-
}
|
17691 |
-
};
|
17692 |
-
};
|
17693 |
-
|
17694 |
_proto.componentDidMount = function componentDidMount() {
|
17695 |
-
this.appeared = true;
|
17696 |
this.mounted = true;
|
|
|
|
|
|
|
|
|
|
|
17697 |
};
|
17698 |
|
17699 |
_proto.componentWillUnmount = function componentWillUnmount() {
|
@@ -17705,13 +17699,14 @@ function (_React$Component) {
|
|
17705 |
handleExited = _ref.handleExited,
|
17706 |
firstRender = _ref.firstRender;
|
17707 |
return {
|
17708 |
-
children: firstRender ? (
|
17709 |
firstRender: false
|
17710 |
};
|
17711 |
-
}
|
|
|
17712 |
|
17713 |
_proto.handleExited = function handleExited(child, node) {
|
17714 |
-
var currentChildMapping = (
|
17715 |
if (child.key in currentChildMapping) return;
|
17716 |
|
17717 |
if (child.props.onExited) {
|
@@ -17720,7 +17715,7 @@ function (_React$Component) {
|
|
17720 |
|
17721 |
if (this.mounted) {
|
17722 |
this.setState(function (state) {
|
17723 |
-
var children =
|
17724 |
|
17725 |
delete children[child.key];
|
17726 |
return {
|
@@ -17734,26 +17729,28 @@ function (_React$Component) {
|
|
17734 |
var _this$props = this.props,
|
17735 |
Component = _this$props.component,
|
17736 |
childFactory = _this$props.childFactory,
|
17737 |
-
props =
|
17738 |
|
|
|
17739 |
var children = values(this.state.children).map(childFactory);
|
17740 |
delete props.appear;
|
17741 |
delete props.enter;
|
17742 |
delete props.exit;
|
17743 |
|
17744 |
if (Component === null) {
|
17745 |
-
return
|
|
|
|
|
17746 |
}
|
17747 |
|
17748 |
-
return
|
|
|
|
|
17749 |
};
|
17750 |
|
17751 |
return TransitionGroup;
|
17752 |
-
}(
|
17753 |
|
17754 |
-
TransitionGroup.childContextTypes = {
|
17755 |
-
transitionGroup: _propTypes.default.object.isRequired
|
17756 |
-
};
|
17757 |
TransitionGroup.propTypes = process.env.NODE_ENV !== "production" ? {
|
17758 |
/**
|
17759 |
* `<TransitionGroup>` renders a `<div>` by default. You can change this
|
@@ -17762,7 +17759,7 @@ TransitionGroup.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
17762 |
* you can pass in `component={null}`. This is useful if the wrapping div
|
17763 |
* borks your css styles.
|
17764 |
*/
|
17765 |
-
component:
|
17766 |
|
17767 |
/**
|
17768 |
* A set of `<Transition>` components, that are toggled `in` and out as they
|
@@ -17777,28 +17774,28 @@ TransitionGroup.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
17777 |
* the transition child as you change its content, this will cause
|
17778 |
* `TransitionGroup` to transition the child out and back in.
|
17779 |
*/
|
17780 |
-
children:
|
17781 |
|
17782 |
/**
|
17783 |
* A convenience prop that enables or disables appear animations
|
17784 |
* for all children. Note that specifying this will override any defaults set
|
17785 |
* on individual children Transitions.
|
17786 |
*/
|
17787 |
-
appear:
|
17788 |
|
17789 |
/**
|
17790 |
* A convenience prop that enables or disables enter animations
|
17791 |
* for all children. Note that specifying this will override any defaults set
|
17792 |
* on individual children Transitions.
|
17793 |
*/
|
17794 |
-
enter:
|
17795 |
|
17796 |
/**
|
17797 |
* A convenience prop that enables or disables exit animations
|
17798 |
* for all children. Note that specifying this will override any defaults set
|
17799 |
* on individual children Transitions.
|
17800 |
*/
|
17801 |
-
exit:
|
17802 |
|
17803 |
/**
|
17804 |
* You may need to apply reactive updates to a child as it is exiting.
|
@@ -17810,18 +17807,14 @@ TransitionGroup.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
17810 |
*
|
17811 |
* @type Function(child: ReactElement) -> ReactElement
|
17812 |
*/
|
17813 |
-
childFactory:
|
17814 |
} : {};
|
17815 |
TransitionGroup.defaultProps = defaultProps;
|
17816 |
-
|
17817 |
-
|
17818 |
-
|
17819 |
-
exports.default = _default;
|
17820 |
-
module.exports = exports["default"];
|
17821 |
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
17822 |
|
17823 |
/***/ }),
|
17824 |
-
/*
|
17825 |
/*!**********************************************!*\
|
17826 |
!*** ./src/blocks/info-box/inline-styles.js ***!
|
17827 |
\**********************************************/
|
@@ -18141,7 +18134,7 @@ function InfoBoxStyle(props) {
|
|
18141 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxStyle);
|
18142 |
|
18143 |
/***/ }),
|
18144 |
-
/*
|
18145 |
/*!*****************************************************!*\
|
18146 |
!*** ./src/blocks/info-box/components/IconImage.js ***!
|
18147 |
\*****************************************************/
|
@@ -18221,7 +18214,7 @@ var InfoBoxIconImage = function (_React$Component) {
|
|
18221 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxIconImage);
|
18222 |
|
18223 |
/***/ }),
|
18224 |
-
/*
|
18225 |
/*!*******************************************!*\
|
18226 |
!*** ./src/blocks/info-box/attributes.js ***!
|
18227 |
\*******************************************/
|
@@ -18638,7 +18631,7 @@ var attributes = {
|
|
18638 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18639 |
|
18640 |
/***/ }),
|
18641 |
-
/*
|
18642 |
/*!****************************************************!*\
|
18643 |
!*** ./src/blocks/testimonial/components/Image.js ***!
|
18644 |
\****************************************************/
|
@@ -18723,7 +18716,7 @@ var TestimonialImage = function (_React$Component) {
|
|
18723 |
/* harmony default export */ __webpack_exports__["a"] = (TestimonialImage);
|
18724 |
|
18725 |
/***/ }),
|
18726 |
-
/*
|
18727 |
/*!**********************************************!*\
|
18728 |
!*** ./src/blocks/testimonial/attributes.js ***!
|
18729 |
\**********************************************/
|
@@ -19085,7 +19078,7 @@ var attributes = (_attributes = {
|
|
19085 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19086 |
|
19087 |
/***/ }),
|
19088 |
-
/*
|
19089 |
/*!***************************************!*\
|
19090 |
!*** ./src/blocks/team/attributes.js ***!
|
19091 |
\***************************************/
|
@@ -19380,7 +19373,7 @@ var attributes = {
|
|
19380 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19381 |
|
19382 |
/***/ }),
|
19383 |
-
/*
|
19384 |
/*!***********************************************!*\
|
19385 |
!*** ./src/blocks/social-share/attributes.js ***!
|
19386 |
\***********************************************/
|
@@ -19486,7 +19479,7 @@ var attributes = {
|
|
19486 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19487 |
|
19488 |
/***/ }),
|
19489 |
-
/*
|
19490 |
/*!*****************************************************!*\
|
19491 |
!*** ./src/blocks/social-share-child/attributes.js ***!
|
19492 |
\*****************************************************/
|
@@ -19539,7 +19532,7 @@ var attributes = {
|
|
19539 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19540 |
|
19541 |
/***/ }),
|
19542 |
-
/*
|
19543 |
/*!************************************************!*\
|
19544 |
!*** ./src/blocks/social-share-child/links.js ***!
|
19545 |
\************************************************/
|
@@ -19574,7 +19567,7 @@ var links = {
|
|
19574 |
/* harmony default export */ __webpack_exports__["a"] = (links);
|
19575 |
|
19576 |
/***/ }),
|
19577 |
-
/*
|
19578 |
/*!********************************************!*\
|
19579 |
!*** ./src/blocks/icon-list/attributes.js ***!
|
19580 |
\********************************************/
|
@@ -19731,7 +19724,7 @@ var attributes = {
|
|
19731 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19732 |
|
19733 |
/***/ }),
|
19734 |
-
/*
|
19735 |
/*!**************************************************!*\
|
19736 |
!*** ./src/blocks/icon-list-child/attributes.js ***!
|
19737 |
\**************************************************/
|
@@ -19810,7 +19803,7 @@ var attributes = {
|
|
19810 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19811 |
|
19812 |
/***/ }),
|
19813 |
-
/*
|
19814 |
/*!*********************************************!*\
|
19815 |
!*** ./src/blocks/price-list/attributes.js ***!
|
19816 |
\*********************************************/
|
@@ -20101,7 +20094,7 @@ var attributes = {
|
|
20101 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
20102 |
|
20103 |
/***/ }),
|
20104 |
-
/*
|
20105 |
/*!************************************************************!*\
|
20106 |
!*** ./src/blocks/timeline/content-timeline/attributes.js ***!
|
20107 |
\************************************************************/
|
@@ -20430,7 +20423,7 @@ var attributes = {
|
|
20430 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
20431 |
|
20432 |
/***/ }),
|
20433 |
-
/*
|
20434 |
/*!**********************************************!*\
|
20435 |
!*** ./src/blocks/timeline/inline-styles.js ***!
|
20436 |
\**********************************************/
|
@@ -20874,7 +20867,7 @@ function contentTimelineStyle(props) {
|
|
20874 |
/* harmony default export */ __webpack_exports__["a"] = (contentTimelineStyle);
|
20875 |
|
20876 |
/***/ }),
|
20877 |
-
/*
|
20878 |
/*!**********************************************!*\
|
20879 |
!*** ./src/blocks/timeline/align-classes.js ***!
|
20880 |
\**********************************************/
|
@@ -20909,7 +20902,7 @@ function AlignClass(attributes, index_val) {
|
|
20909 |
/* harmony default export */ __webpack_exports__["a"] = (AlignClass);
|
20910 |
|
20911 |
/***/ }),
|
20912 |
-
/*
|
20913 |
/*!**************************************************!*\
|
20914 |
!*** ./src/blocks/timeline/day-align-classes.js ***!
|
20915 |
\**************************************************/
|
@@ -20944,7 +20937,7 @@ function DayAlignClass(attributes, index_val) {
|
|
20944 |
/* harmony default export */ __webpack_exports__["a"] = (DayAlignClass);
|
20945 |
|
20946 |
/***/ }),
|
20947 |
-
/*
|
20948 |
/*!*********************************************************!*\
|
20949 |
!*** ./src/blocks/timeline/content-timeline/styling.js ***!
|
20950 |
\*********************************************************/
|
@@ -21365,7 +21358,7 @@ function contentTimelineStyle(props) {
|
|
21365 |
/* harmony default export */ __webpack_exports__["a"] = (contentTimelineStyle);
|
21366 |
|
21367 |
/***/ }),
|
21368 |
-
/*
|
21369 |
/*!******************************************************************!*\
|
21370 |
!*** ./src/blocks/timeline/content-timeline-child/attributes.js ***!
|
21371 |
\******************************************************************/
|
@@ -21452,7 +21445,7 @@ var attributes = {
|
|
21452 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
21453 |
|
21454 |
/***/ }),
|
21455 |
-
/*
|
21456 |
/*!*************************************************!*\
|
21457 |
!*** ./src/blocks/call-to-action/attributes.js ***!
|
21458 |
\*************************************************/
|
@@ -21718,7 +21711,7 @@ var attributes = {
|
|
21718 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
21719 |
|
21720 |
/***/ }),
|
21721 |
-
/*
|
21722 |
/*!*****************************************!*\
|
21723 |
!*** ./src/blocks/column/attributes.js ***!
|
21724 |
\*****************************************/
|
@@ -21982,7 +21975,7 @@ var attributes = {
|
|
21982 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
21983 |
|
21984 |
/***/ }),
|
21985 |
-
/*
|
21986 |
/*!******************************************!*\
|
21987 |
!*** ./src/blocks/columns/attributes.js ***!
|
21988 |
\******************************************/
|
@@ -22303,7 +22296,7 @@ var attributes = {
|
|
22303 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
22304 |
|
22305 |
/***/ }),
|
22306 |
-
/*
|
22307 |
/*!*************************************!*\
|
22308 |
!*** ./src/blocks/columns/icons.js ***!
|
22309 |
\*************************************/
|
@@ -22424,7 +22417,7 @@ rowIcons.layout255025 = wp.element.createElement(
|
|
22424 |
/* harmony default export */ __webpack_exports__["a"] = (rowIcons);
|
22425 |
|
22426 |
/***/ }),
|
22427 |
-
/*
|
22428 |
/*!*********************************************!*\
|
22429 |
!*** ./src/blocks/blockquote/attributes.js ***!
|
22430 |
\*********************************************/
|
@@ -22772,7 +22765,7 @@ var attributes = {
|
|
22772 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
22773 |
|
22774 |
/***/ }),
|
22775 |
-
/*
|
22776 |
/*!***************************************************!*\
|
22777 |
!*** ./src/blocks/marketing-button/attributes.js ***!
|
22778 |
\***************************************************/
|
@@ -23066,7 +23059,7 @@ var attributes = {
|
|
23066 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
23067 |
|
23068 |
/***/ }),
|
23069 |
-
/*
|
23070 |
/*!****************************************************!*\
|
23071 |
!*** ./src/blocks/table-of-contents/attributes.js ***!
|
23072 |
\****************************************************/
|
@@ -23138,18 +23131,18 @@ var attributes = {
|
|
23138 |
type: 'array',
|
23139 |
default: Array(6).fill(true)
|
23140 |
},
|
23141 |
-
headerLinks: {
|
23142 |
-
type: 'html',
|
23143 |
-
default: ''
|
23144 |
-
},
|
23145 |
align: {
|
23146 |
type: "string",
|
23147 |
default: "left"
|
23148 |
},
|
|
|
|
|
|
|
|
|
23149 |
heading: {
|
23150 |
-
|
23151 |
selector: ".uagb-toc__title",
|
23152 |
-
default: "Table Of Contents"
|
23153 |
},
|
23154 |
customWidth: {
|
23155 |
type: "boolean",
|
@@ -23407,13 +23400,17 @@ var attributes = {
|
|
23407 |
headingAlignment: {
|
23408 |
type: "string",
|
23409 |
default: "left"
|
|
|
|
|
|
|
|
|
23410 |
}
|
23411 |
};
|
23412 |
|
23413 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
23414 |
|
23415 |
/***/ }),
|
23416 |
-
/*
|
23417 |
/*!*********************************************!*\
|
23418 |
!*** ./src/blocks/table-of-contents/toc.js ***!
|
23419 |
\*********************************************/
|
@@ -23495,31 +23492,33 @@ var TableOfContents = function (_React$Component) {
|
|
23495 |
|
23496 |
var parseList = function parseList(list) {
|
23497 |
var items = [];
|
23498 |
-
list.
|
|
|
23499 |
|
23500 |
-
|
23501 |
-
|
23502 |
-
|
23503 |
|
23504 |
-
|
23505 |
-
|
23506 |
-
|
23507 |
-
|
23508 |
-
|
23509 |
-
|
23510 |
-
|
23511 |
-
|
23512 |
-
|
23513 |
-
|
23514 |
-
|
23515 |
-
|
23516 |
-
|
23517 |
-
|
23518 |
-
|
23519 |
-
|
23520 |
-
|
23521 |
-
|
23522 |
-
|
|
|
23523 |
};
|
23524 |
|
23525 |
if (mappingHeaders != 'undefined' && headers && headers.length > 0 && headers.filter(function (header) {
|
@@ -23546,7 +23545,7 @@ var TableOfContents = function (_React$Component) {
|
|
23546 |
/* harmony default export */ __webpack_exports__["a"] = (TableOfContents);
|
23547 |
|
23548 |
/***/ }),
|
23549 |
-
/*
|
23550 |
/*!*************************************************!*\
|
23551 |
!*** ./node_modules/striptags/src/striptags.js ***!
|
23552 |
\*************************************************/
|
@@ -23794,7 +23793,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;
|
|
23794 |
|
23795 |
|
23796 |
/***/ }),
|
23797 |
-
/*
|
23798 |
/*!*****************************************!*\
|
23799 |
!*** ./src/blocks/how-to/attributes.js ***!
|
23800 |
\*****************************************/
|
@@ -24113,7 +24112,7 @@ var attributes = {
|
|
24113 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
24114 |
|
24115 |
/***/ }),
|
24116 |
-
/*
|
24117 |
/*!**************************************!*\
|
24118 |
!*** ./src/blocks/how-to/style.scss ***!
|
24119 |
\**************************************/
|
@@ -24123,7 +24122,7 @@ var attributes = {
|
|
24123 |
// removed by extract-text-webpack-plugin
|
24124 |
|
24125 |
/***/ }),
|
24126 |
-
/*
|
24127 |
/*!**************************************!*\
|
24128 |
!*** ./src/blocks/faq/attributes.js ***!
|
24129 |
\**************************************/
|
@@ -24467,7 +24466,7 @@ var attributes = {
|
|
24467 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
24468 |
|
24469 |
/***/ }),
|
24470 |
-
/*
|
24471 |
/*!********************************************!*\
|
24472 |
!*** ./src/blocks/faq-child/attributes.js ***!
|
24473 |
\********************************************/
|
@@ -24513,7 +24512,7 @@ var attributes = {
|
|
24513 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
24514 |
|
24515 |
/***/ }),
|
24516 |
-
/*
|
24517 |
/*!*****************************************!*\
|
24518 |
!*** ./src/blocks/review/components.js ***!
|
24519 |
\*****************************************/
|
@@ -24932,7 +24931,877 @@ var ReviewBody = function (_Component2) {
|
|
24932 |
}(__WEBPACK_IMPORTED_MODULE_0_react__["Component"]);
|
24933 |
|
24934 |
/***/ }),
|
24935 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24936 |
/*!******************************************************!*\
|
24937 |
!*** ./node_modules/core-js/library/modules/_ctx.js ***!
|
24938 |
\******************************************************/
|
@@ -24941,7 +25810,7 @@ var ReviewBody = function (_Component2) {
|
|
24941 |
/***/ (function(module, exports, __webpack_require__) {
|
24942 |
|
24943 |
// optional / simple context binding
|
24944 |
-
var aFunction = __webpack_require__(/*! ./_a-function */
|
24945 |
module.exports = function (fn, that, length) {
|
24946 |
aFunction(fn);
|
24947 |
if (that === undefined) return fn;
|
@@ -24963,7 +25832,7 @@ module.exports = function (fn, that, length) {
|
|
24963 |
|
24964 |
|
24965 |
/***/ }),
|
24966 |
-
/*
|
24967 |
/*!*****************************************************************!*\
|
24968 |
!*** ./node_modules/core-js/library/modules/_ie8-dom-define.js ***!
|
24969 |
\*****************************************************************/
|
@@ -24972,12 +25841,12 @@ module.exports = function (fn, that, length) {
|
|
24972 |
/***/ (function(module, exports, __webpack_require__) {
|
24973 |
|
24974 |
module.exports = !__webpack_require__(/*! ./_descriptors */ 25) && !__webpack_require__(/*! ./_fails */ 38)(function () {
|
24975 |
-
return Object.defineProperty(__webpack_require__(/*! ./_dom-create */
|
24976 |
});
|
24977 |
|
24978 |
|
24979 |
/***/ }),
|
24980 |
-
/*
|
24981 |
/*!*************************************************************!*\
|
24982 |
!*** ./node_modules/core-js/library/modules/_dom-create.js ***!
|
24983 |
\*************************************************************/
|
@@ -24995,7 +25864,7 @@ module.exports = function (it) {
|
|
24995 |
|
24996 |
|
24997 |
/***/ }),
|
24998 |
-
/*
|
24999 |
/*!***********************************************************************!*\
|
25000 |
!*** ./node_modules/core-js/library/modules/_object-keys-internal.js ***!
|
25001 |
\***********************************************************************/
|
@@ -25005,8 +25874,8 @@ module.exports = function (it) {
|
|
25005 |
|
25006 |
var has = __webpack_require__(/*! ./_has */ 26);
|
25007 |
var toIObject = __webpack_require__(/*! ./_to-iobject */ 39);
|
25008 |
-
var arrayIndexOf = __webpack_require__(/*! ./_array-includes */
|
25009 |
-
var IE_PROTO = __webpack_require__(/*! ./_shared-key */
|
25010 |
|
25011 |
module.exports = function (object, names) {
|
25012 |
var O = toIObject(object);
|
@@ -25023,7 +25892,7 @@ module.exports = function (object, names) {
|
|
25023 |
|
25024 |
|
25025 |
/***/ }),
|
25026 |
-
/*
|
25027 |
/*!**********************************************************!*\
|
25028 |
!*** ./node_modules/core-js/library/modules/_iobject.js ***!
|
25029 |
\**********************************************************/
|
@@ -25032,7 +25901,7 @@ module.exports = function (object, names) {
|
|
25032 |
/***/ (function(module, exports, __webpack_require__) {
|
25033 |
|
25034 |
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
25035 |
-
var cof = __webpack_require__(/*! ./_cof */
|
25036 |
// eslint-disable-next-line no-prototype-builtins
|
25037 |
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
|
25038 |
return cof(it) == 'String' ? it.split('') : Object(it);
|
@@ -25040,7 +25909,7 @@ module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
|
|
25040 |
|
25041 |
|
25042 |
/***/ }),
|
25043 |
-
/*
|
25044 |
/*!******************************************************!*\
|
25045 |
!*** ./node_modules/core-js/library/modules/_cof.js ***!
|
25046 |
\******************************************************/
|
@@ -25056,7 +25925,7 @@ module.exports = function (it) {
|
|
25056 |
|
25057 |
|
25058 |
/***/ }),
|
25059 |
-
/*
|
25060 |
/*!*************************************************************!*\
|
25061 |
!*** ./node_modules/core-js/library/modules/_object-gpo.js ***!
|
25062 |
\*************************************************************/
|
@@ -25066,8 +25935,8 @@ module.exports = function (it) {
|
|
25066 |
|
25067 |
// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)
|
25068 |
var has = __webpack_require__(/*! ./_has */ 26);
|
25069 |
-
var toObject = __webpack_require__(/*! ./_to-object */
|
25070 |
-
var IE_PROTO = __webpack_require__(/*! ./_shared-key */
|
25071 |
var ObjectProto = Object.prototype;
|
25072 |
|
25073 |
module.exports = Object.getPrototypeOf || function (O) {
|
@@ -25080,7 +25949,7 @@ module.exports = Object.getPrototypeOf || function (O) {
|
|
25080 |
|
25081 |
|
25082 |
/***/ }),
|
25083 |
-
/*
|
25084 |
/*!******************************************************!*\
|
25085 |
!*** ./node_modules/babel-runtime/helpers/typeof.js ***!
|
25086 |
\******************************************************/
|
@@ -25093,11 +25962,11 @@ module.exports = Object.getPrototypeOf || function (O) {
|
|
25093 |
|
25094 |
exports.__esModule = true;
|
25095 |
|
25096 |
-
var _iterator = __webpack_require__(/*! ../core-js/symbol/iterator */
|
25097 |
|
25098 |
var _iterator2 = _interopRequireDefault(_iterator);
|
25099 |
|
25100 |
-
var _symbol = __webpack_require__(/*! ../core-js/symbol */
|
25101 |
|
25102 |
var _symbol2 = _interopRequireDefault(_symbol);
|
25103 |
|
@@ -25112,7 +25981,7 @@ exports.default = typeof _symbol2.default === "function" && _typeof(_iterator2.d
|
|
25112 |
};
|
25113 |
|
25114 |
/***/ }),
|
25115 |
-
/*
|
25116 |
/*!**************************************************************!*\
|
25117 |
!*** ./node_modules/core-js/library/modules/_iter-define.js ***!
|
25118 |
\**************************************************************/
|
@@ -25122,14 +25991,14 @@ exports.default = typeof _symbol2.default === "function" && _typeof(_iterator2.d
|
|
25122 |
|
25123 |
"use strict";
|
25124 |
|
25125 |
-
var LIBRARY = __webpack_require__(/*! ./_library */
|
25126 |
var $export = __webpack_require__(/*! ./_export */ 23);
|
25127 |
-
var redefine = __webpack_require__(/*! ./_redefine */
|
25128 |
var hide = __webpack_require__(/*! ./_hide */ 36);
|
25129 |
-
var Iterators = __webpack_require__(/*! ./_iterators */
|
25130 |
-
var $iterCreate = __webpack_require__(/*! ./_iter-create */
|
25131 |
-
var setToStringTag = __webpack_require__(/*! ./_set-to-string-tag */
|
25132 |
-
var getPrototypeOf = __webpack_require__(/*! ./_object-gpo */
|
25133 |
var ITERATOR = __webpack_require__(/*! ./_wks */ 40)('iterator');
|
25134 |
var BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`
|
25135 |
var FF_ITERATOR = '@@iterator';
|
@@ -25193,7 +26062,7 @@ module.exports = function (Base, NAME, Constructor, next, DEFAULT, IS_SET, FORCE
|
|
25193 |
|
25194 |
|
25195 |
/***/ }),
|
25196 |
-
/*
|
25197 |
/*!***********************************************************!*\
|
25198 |
!*** ./node_modules/core-js/library/modules/_redefine.js ***!
|
25199 |
\***********************************************************/
|
@@ -25205,7 +26074,7 @@ module.exports = __webpack_require__(/*! ./_hide */ 36);
|
|
25205 |
|
25206 |
|
25207 |
/***/ }),
|
25208 |
-
/*
|
25209 |
/*!**************************************************************!*\
|
25210 |
!*** ./node_modules/core-js/library/modules/_object-gopn.js ***!
|
25211 |
\**************************************************************/
|
@@ -25214,8 +26083,8 @@ module.exports = __webpack_require__(/*! ./_hide */ 36);
|
|
25214 |
/***/ (function(module, exports, __webpack_require__) {
|
25215 |
|
25216 |
// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)
|
25217 |
-
var $keys = __webpack_require__(/*! ./_object-keys-internal */
|
25218 |
-
var hiddenKeys = __webpack_require__(/*! ./_enum-bug-keys */
|
25219 |
|
25220 |
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
25221 |
return $keys(O, hiddenKeys);
|
@@ -25223,7 +26092,7 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
25223 |
|
25224 |
|
25225 |
/***/ }),
|
25226 |
-
/*
|
25227 |
/*!**************************************************************!*\
|
25228 |
!*** ./node_modules/core-js/library/modules/_object-gopd.js ***!
|
25229 |
\**************************************************************/
|
@@ -25231,12 +26100,12 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
|
25231 |
/*! all exports used */
|
25232 |
/***/ (function(module, exports, __webpack_require__) {
|
25233 |
|
25234 |
-
var pIE = __webpack_require__(/*! ./_object-pie */
|
25235 |
-
var createDesc = __webpack_require__(/*! ./_property-desc */
|
25236 |
var toIObject = __webpack_require__(/*! ./_to-iobject */ 39);
|
25237 |
-
var toPrimitive = __webpack_require__(/*! ./_to-primitive */
|
25238 |
var has = __webpack_require__(/*! ./_has */ 26);
|
25239 |
-
var IE8_DOM_DEFINE = __webpack_require__(/*! ./_ie8-dom-define */
|
25240 |
var gOPD = Object.getOwnPropertyDescriptor;
|
25241 |
|
25242 |
exports.f = __webpack_require__(/*! ./_descriptors */ 25) ? gOPD : function getOwnPropertyDescriptor(O, P) {
|
@@ -25250,7 +26119,7 @@ exports.f = __webpack_require__(/*! ./_descriptors */ 25) ? gOPD : function getO
|
|
25250 |
|
25251 |
|
25252 |
/***/ }),
|
25253 |
-
/*
|
25254 |
/*!***********************!*\
|
25255 |
!*** ./src/blocks.js ***!
|
25256 |
\***********************/
|
@@ -25260,44 +26129,57 @@ exports.f = __webpack_require__(/*! ./_descriptors */ 25) ? gOPD : function getO
|
|
25260 |
|
25261 |
"use strict";
|
25262 |
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
25263 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__blocks_extensions_attributes_js__ = __webpack_require__(/*! ./blocks/extensions/attributes.js */
|
25264 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__blocks_extensions_attributes_js___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__blocks_extensions_attributes_js__);
|
25265 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__blocks_advanced_heading_block_js__ = __webpack_require__(/*! ./blocks/advanced-heading/block.js */
|
25266 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__blocks_post_block_js__ = __webpack_require__(/*! ./blocks/post/block.js */
|
25267 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blocks_section_block_js__ = __webpack_require__(/*! ./blocks/section/block.js */
|
25268 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__blocks_buttons_block_js__ = __webpack_require__(/*! ./blocks/buttons/block.js */
|
25269 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blocks_buttons_child_block_js__ = __webpack_require__(/*! ./blocks/buttons-child/block.js */
|
25270 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__blocks_info_box_block_js__ = __webpack_require__(/*! ./blocks/info-box/block.js */
|
25271 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__blocks_testimonial_block_js__ = __webpack_require__(/*! ./blocks/testimonial/block.js */
|
25272 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__blocks_team_block_js__ = __webpack_require__(/*! ./blocks/team/block.js */
|
25273 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__blocks_social_share_block_js__ = __webpack_require__(/*! ./blocks/social-share/block.js */
|
25274 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__blocks_social_share_child_block_js__ = __webpack_require__(/*! ./blocks/social-share-child/block.js */
|
25275 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__blocks_google_map_block_js__ = __webpack_require__(/*! ./blocks/google-map/block.js */
|
25276 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__blocks_icon_list_block_js__ = __webpack_require__(/*! ./blocks/icon-list/block.js */
|
25277 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__blocks_icon_list_child_block_js__ = __webpack_require__(/*! ./blocks/icon-list-child/block.js */
|
25278 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__blocks_price_list_block_js__ = __webpack_require__(/*! ./blocks/price-list/block.js */
|
25279 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__blocks_price_list_child_block_js__ = __webpack_require__(/*! ./blocks/price-list-child/block.js */
|
25280 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__blocks_timeline_block_js__ = __webpack_require__(/*! ./blocks/timeline/block.js */
|
25281 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__blocks_call_to_action_block_js__ = __webpack_require__(/*! ./blocks/call-to-action/block.js */
|
25282 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__blocks_column_block_js__ = __webpack_require__(/*! ./blocks/column/block.js */
|
25283 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__blocks_columns_block_js__ = __webpack_require__(/*! ./blocks/columns/block.js */
|
25284 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_20__blocks_cf7_styler_block_js__ = __webpack_require__(/*! ./blocks/cf7-styler/block.js */
|
25285 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_21__blocks_gf_styler_block_js__ = __webpack_require__(/*! ./blocks/gf-styler/block.js */
|
25286 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_22__blocks_blockquote_block_js__ = __webpack_require__(/*! ./blocks/blockquote/block.js */
|
25287 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_23__blocks_marketing_button_block_js__ = __webpack_require__(/*! ./blocks/marketing-button/block.js */
|
25288 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_24__blocks_table_of_contents_block_js__ = __webpack_require__(/*! ./blocks/table-of-contents/block.js */
|
25289 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_25__blocks_how_to_block_js__ = __webpack_require__(/*! ./blocks/how-to/block.js */
|
25290 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_26__blocks_faq_block_js__ = __webpack_require__(/*! ./blocks/faq/block.js */
|
25291 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_27__blocks_faq_child_block_js__ = __webpack_require__(/*! ./blocks/faq-child/block.js */
|
25292 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_28__blocks_inline_notice_block_js__ = __webpack_require__(/*! ./blocks/inline-notice/block.js */
|
25293 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_29__blocks_wp_search_block_js__ = __webpack_require__(/*! ./blocks/wp-search/block.js */
|
25294 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_30__blocks_review_block_js__ = __webpack_require__(/*! ./blocks/review/block.js */
|
25295 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_31__blocks_taxonomy_list_block_js__ = __webpack_require__(/*! ./blocks/taxonomy-list/block.js */
|
25296 |
-
/* harmony import */ var
|
25297 |
-
/* harmony import */ var
|
25298 |
-
/* harmony import */ var
|
25299 |
-
/* harmony import */ var
|
25300 |
-
/* harmony import */ var
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25301 |
/**
|
25302 |
* Gutenberg Blocks
|
25303 |
*
|
@@ -25328,6 +26210,19 @@ Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
|
25328 |
|
25329 |
|
25330 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25331 |
|
25332 |
|
25333 |
|
@@ -25351,11 +26246,11 @@ var updateCategory = wp.blocks.updateCategory;
|
|
25351 |
|
25352 |
|
25353 |
updateCategory("uagb", {
|
25354 |
-
icon:
|
25355 |
});
|
25356 |
|
25357 |
/***/ }),
|
25358 |
-
/*
|
25359 |
/*!*********************************************!*\
|
25360 |
!*** ./src/blocks/extensions/attributes.js ***!
|
25361 |
\*********************************************/
|
@@ -25363,42 +26258,46 @@ updateCategory("uagb", {
|
|
25363 |
/***/ (function(module, exports) {
|
25364 |
|
25365 |
function addAttributes(settings) {
|
|
|
25366 |
|
25367 |
-
if (settings.
|
25368 |
-
|
25369 |
-
|
25370 |
-
|
25371 |
-
|
25372 |
-
|
25373 |
-
|
25374 |
-
|
25375 |
-
|
25376 |
-
|
25377 |
-
|
25378 |
-
|
25379 |
-
|
25380 |
-
|
25381 |
-
|
25382 |
-
|
25383 |
-
|
25384 |
-
|
25385 |
-
|
25386 |
-
|
25387 |
-
|
25388 |
-
|
25389 |
-
|
25390 |
-
|
25391 |
-
|
25392 |
-
|
25393 |
-
|
25394 |
-
|
25395 |
-
|
25396 |
-
|
25397 |
-
|
25398 |
-
|
25399 |
-
|
25400 |
-
|
25401 |
-
|
|
|
|
|
|
|
25402 |
}
|
25403 |
return settings;
|
25404 |
}
|
@@ -25406,7 +26305,7 @@ function addAttributes(settings) {
|
|
25406 |
wp.hooks.addFilter('blocks.registerBlockType', 'uagb/advanced-control-block', addAttributes);
|
25407 |
|
25408 |
/***/ }),
|
25409 |
-
/*
|
25410 |
/*!**********************************************!*\
|
25411 |
!*** ./src/blocks/advanced-heading/block.js ***!
|
25412 |
\**********************************************/
|
@@ -25415,11 +26314,11 @@ wp.hooks.addFilter('blocks.registerBlockType', 'uagb/advanced-control-block', ad
|
|
25415 |
|
25416 |
"use strict";
|
25417 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
25418 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
25419 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
25420 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
25421 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
25422 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
25423 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
25424 |
/**
|
25425 |
* BLOCK: Advanced Heading
|
@@ -25505,7 +26404,7 @@ registerBlockType("uagb/advanced-heading", {
|
|
25505 |
});
|
25506 |
|
25507 |
/***/ }),
|
25508 |
-
/*
|
25509 |
/*!*********************************************!*\
|
25510 |
!*** ./src/blocks/advanced-heading/edit.js ***!
|
25511 |
\*********************************************/
|
@@ -25516,10 +26415,10 @@ registerBlockType("uagb/advanced-heading", {
|
|
25516 |
"use strict";
|
25517 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
25518 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
25519 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
25520 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
25521 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
25522 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
25523 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
25524 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
25525 |
|
@@ -26013,7 +26912,7 @@ var UAGBAdvancedHeading = function (_Component) {
|
|
26013 |
})(UAGBAdvancedHeading));
|
26014 |
|
26015 |
/***/ }),
|
26016 |
-
/*
|
26017 |
/*!************************************************!*\
|
26018 |
!*** ./src/blocks/advanced-heading/styling.js ***!
|
26019 |
\************************************************/
|
@@ -26136,7 +27035,7 @@ function styling(props) {
|
|
26136 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
26137 |
|
26138 |
/***/ }),
|
26139 |
-
/*
|
26140 |
/*!******************************************************!*\
|
26141 |
!*** ./src/components/typography/font-typography.js ***!
|
26142 |
\******************************************************/
|
@@ -26145,10 +27044,10 @@ function styling(props) {
|
|
26145 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
26146 |
|
26147 |
"use strict";
|
26148 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map__ = __webpack_require__(/*! lodash/map */
|
26149 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_map__);
|
26150 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__fonts__ = __webpack_require__(/*! ./fonts */
|
26151 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_select__ = __webpack_require__(/*! react-select */
|
26152 |
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
26153 |
|
26154 |
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
@@ -26311,7 +27210,7 @@ function FontFamilyControl(props) {
|
|
26311 |
/* harmony default export */ __webpack_exports__["a"] = (FontFamilyControl);
|
26312 |
|
26313 |
/***/ }),
|
26314 |
-
/*
|
26315 |
/*!*********************************************!*\
|
26316 |
!*** ./node_modules/lodash/_baseMatches.js ***!
|
26317 |
\*********************************************/
|
@@ -26319,9 +27218,9 @@ function FontFamilyControl(props) {
|
|
26319 |
/*! all exports used */
|
26320 |
/***/ (function(module, exports, __webpack_require__) {
|
26321 |
|
26322 |
-
var baseIsMatch = __webpack_require__(/*! ./_baseIsMatch */
|
26323 |
-
getMatchData = __webpack_require__(/*! ./_getMatchData */
|
26324 |
-
matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */
|
26325 |
|
26326 |
/**
|
26327 |
* The base implementation of `_.matches` which doesn't clone `source`.
|
@@ -26344,7 +27243,7 @@ module.exports = baseMatches;
|
|
26344 |
|
26345 |
|
26346 |
/***/ }),
|
26347 |
-
/*
|
26348 |
/*!*********************************************!*\
|
26349 |
!*** ./node_modules/lodash/_baseIsMatch.js ***!
|
26350 |
\*********************************************/
|
@@ -26352,8 +27251,8 @@ module.exports = baseMatches;
|
|
26352 |
/*! all exports used */
|
26353 |
/***/ (function(module, exports, __webpack_require__) {
|
26354 |
|
26355 |
-
var Stack = __webpack_require__(/*! ./_Stack */
|
26356 |
-
baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */
|
26357 |
|
26358 |
/** Used to compose bitmasks for value comparisons. */
|
26359 |
var COMPARE_PARTIAL_FLAG = 1,
|
@@ -26417,7 +27316,7 @@ module.exports = baseIsMatch;
|
|
26417 |
|
26418 |
|
26419 |
/***/ }),
|
26420 |
-
/*
|
26421 |
/*!************************************************!*\
|
26422 |
!*** ./node_modules/lodash/_listCacheClear.js ***!
|
26423 |
\************************************************/
|
@@ -26441,7 +27340,7 @@ module.exports = listCacheClear;
|
|
26441 |
|
26442 |
|
26443 |
/***/ }),
|
26444 |
-
/*
|
26445 |
/*!*************************************************!*\
|
26446 |
!*** ./node_modules/lodash/_listCacheDelete.js ***!
|
26447 |
\*************************************************/
|
@@ -26449,7 +27348,7 @@ module.exports = listCacheClear;
|
|
26449 |
/*! all exports used */
|
26450 |
/***/ (function(module, exports, __webpack_require__) {
|
26451 |
|
26452 |
-
var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */
|
26453 |
|
26454 |
/** Used for built-in method references. */
|
26455 |
var arrayProto = Array.prototype;
|
@@ -26487,7 +27386,7 @@ module.exports = listCacheDelete;
|
|
26487 |
|
26488 |
|
26489 |
/***/ }),
|
26490 |
-
/*
|
26491 |
/*!**********************************************!*\
|
26492 |
!*** ./node_modules/lodash/_listCacheGet.js ***!
|
26493 |
\**********************************************/
|
@@ -26495,7 +27394,7 @@ module.exports = listCacheDelete;
|
|
26495 |
/*! all exports used */
|
26496 |
/***/ (function(module, exports, __webpack_require__) {
|
26497 |
|
26498 |
-
var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */
|
26499 |
|
26500 |
/**
|
26501 |
* Gets the list cache value for `key`.
|
@@ -26517,7 +27416,7 @@ module.exports = listCacheGet;
|
|
26517 |
|
26518 |
|
26519 |
/***/ }),
|
26520 |
-
/*
|
26521 |
/*!**********************************************!*\
|
26522 |
!*** ./node_modules/lodash/_listCacheHas.js ***!
|
26523 |
\**********************************************/
|
@@ -26525,7 +27424,7 @@ module.exports = listCacheGet;
|
|
26525 |
/*! all exports used */
|
26526 |
/***/ (function(module, exports, __webpack_require__) {
|
26527 |
|
26528 |
-
var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */
|
26529 |
|
26530 |
/**
|
26531 |
* Checks if a list cache value for `key` exists.
|
@@ -26544,7 +27443,7 @@ module.exports = listCacheHas;
|
|
26544 |
|
26545 |
|
26546 |
/***/ }),
|
26547 |
-
/*
|
26548 |
/*!**********************************************!*\
|
26549 |
!*** ./node_modules/lodash/_listCacheSet.js ***!
|
26550 |
\**********************************************/
|
@@ -26552,7 +27451,7 @@ module.exports = listCacheHas;
|
|
26552 |
/*! all exports used */
|
26553 |
/***/ (function(module, exports, __webpack_require__) {
|
26554 |
|
26555 |
-
var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */
|
26556 |
|
26557 |
/**
|
26558 |
* Sets the list cache `key` to `value`.
|
@@ -26581,7 +27480,7 @@ module.exports = listCacheSet;
|
|
26581 |
|
26582 |
|
26583 |
/***/ }),
|
26584 |
-
/*
|
26585 |
/*!********************************************!*\
|
26586 |
!*** ./node_modules/lodash/_stackClear.js ***!
|
26587 |
\********************************************/
|
@@ -26589,7 +27488,7 @@ module.exports = listCacheSet;
|
|
26589 |
/*! all exports used */
|
26590 |
/***/ (function(module, exports, __webpack_require__) {
|
26591 |
|
26592 |
-
var ListCache = __webpack_require__(/*! ./_ListCache */
|
26593 |
|
26594 |
/**
|
26595 |
* Removes all key-value entries from the stack.
|
@@ -26607,7 +27506,7 @@ module.exports = stackClear;
|
|
26607 |
|
26608 |
|
26609 |
/***/ }),
|
26610 |
-
/*
|
26611 |
/*!*********************************************!*\
|
26612 |
!*** ./node_modules/lodash/_stackDelete.js ***!
|
26613 |
\*********************************************/
|
@@ -26636,7 +27535,7 @@ module.exports = stackDelete;
|
|
26636 |
|
26637 |
|
26638 |
/***/ }),
|
26639 |
-
/*
|
26640 |
/*!******************************************!*\
|
26641 |
!*** ./node_modules/lodash/_stackGet.js ***!
|
26642 |
\******************************************/
|
@@ -26661,7 +27560,7 @@ module.exports = stackGet;
|
|
26661 |
|
26662 |
|
26663 |
/***/ }),
|
26664 |
-
/*
|
26665 |
/*!******************************************!*\
|
26666 |
!*** ./node_modules/lodash/_stackHas.js ***!
|
26667 |
\******************************************/
|
@@ -26686,7 +27585,7 @@ module.exports = stackHas;
|
|
26686 |
|
26687 |
|
26688 |
/***/ }),
|
26689 |
-
/*
|
26690 |
/*!******************************************!*\
|
26691 |
!*** ./node_modules/lodash/_stackSet.js ***!
|
26692 |
\******************************************/
|
@@ -26694,9 +27593,9 @@ module.exports = stackHas;
|
|
26694 |
/*! all exports used */
|
26695 |
/***/ (function(module, exports, __webpack_require__) {
|
26696 |
|
26697 |
-
var ListCache = __webpack_require__(/*! ./_ListCache */
|
26698 |
-
Map = __webpack_require__(/*! ./_Map */
|
26699 |
-
MapCache = __webpack_require__(/*! ./_MapCache */
|
26700 |
|
26701 |
/** Used as the size to enable large array optimizations. */
|
26702 |
var LARGE_ARRAY_SIZE = 200;
|
@@ -26731,7 +27630,7 @@ module.exports = stackSet;
|
|
26731 |
|
26732 |
|
26733 |
/***/ }),
|
26734 |
-
/*
|
26735 |
/*!**********************************************!*\
|
26736 |
!*** ./node_modules/lodash/_baseIsNative.js ***!
|
26737 |
\**********************************************/
|
@@ -26739,10 +27638,10 @@ module.exports = stackSet;
|
|
26739 |
/*! all exports used */
|
26740 |
/***/ (function(module, exports, __webpack_require__) {
|
26741 |
|
26742 |
-
var isFunction = __webpack_require__(/*! ./isFunction */
|
26743 |
-
isMasked = __webpack_require__(/*! ./_isMasked */
|
26744 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
26745 |
-
toSource = __webpack_require__(/*! ./_toSource */
|
26746 |
|
26747 |
/**
|
26748 |
* Used to match `RegExp`
|
@@ -26789,7 +27688,7 @@ module.exports = baseIsNative;
|
|
26789 |
|
26790 |
|
26791 |
/***/ }),
|
26792 |
-
/*
|
26793 |
/*!*******************************************!*\
|
26794 |
!*** ./node_modules/lodash/_getRawTag.js ***!
|
26795 |
\*******************************************/
|
@@ -26846,7 +27745,7 @@ module.exports = getRawTag;
|
|
26846 |
|
26847 |
|
26848 |
/***/ }),
|
26849 |
-
/*
|
26850 |
/*!************************************************!*\
|
26851 |
!*** ./node_modules/lodash/_objectToString.js ***!
|
26852 |
\************************************************/
|
@@ -26879,7 +27778,7 @@ module.exports = objectToString;
|
|
26879 |
|
26880 |
|
26881 |
/***/ }),
|
26882 |
-
/*
|
26883 |
/*!******************************************!*\
|
26884 |
!*** ./node_modules/lodash/_isMasked.js ***!
|
26885 |
\******************************************/
|
@@ -26887,7 +27786,7 @@ module.exports = objectToString;
|
|
26887 |
/*! all exports used */
|
26888 |
/***/ (function(module, exports, __webpack_require__) {
|
26889 |
|
26890 |
-
var coreJsData = __webpack_require__(/*! ./_coreJsData */
|
26891 |
|
26892 |
/** Used to detect methods masquerading as native. */
|
26893 |
var maskSrcKey = (function() {
|
@@ -26910,7 +27809,7 @@ module.exports = isMasked;
|
|
26910 |
|
26911 |
|
26912 |
/***/ }),
|
26913 |
-
/*
|
26914 |
/*!********************************************!*\
|
26915 |
!*** ./node_modules/lodash/_coreJsData.js ***!
|
26916 |
\********************************************/
|
@@ -26927,7 +27826,7 @@ module.exports = coreJsData;
|
|
26927 |
|
26928 |
|
26929 |
/***/ }),
|
26930 |
-
/*
|
26931 |
/*!******************************************!*\
|
26932 |
!*** ./node_modules/lodash/_getValue.js ***!
|
26933 |
\******************************************/
|
@@ -26951,7 +27850,7 @@ module.exports = getValue;
|
|
26951 |
|
26952 |
|
26953 |
/***/ }),
|
26954 |
-
/*
|
26955 |
/*!***********************************************!*\
|
26956 |
!*** ./node_modules/lodash/_mapCacheClear.js ***!
|
26957 |
\***********************************************/
|
@@ -26959,9 +27858,9 @@ module.exports = getValue;
|
|
26959 |
/*! all exports used */
|
26960 |
/***/ (function(module, exports, __webpack_require__) {
|
26961 |
|
26962 |
-
var Hash = __webpack_require__(/*! ./_Hash */
|
26963 |
-
ListCache = __webpack_require__(/*! ./_ListCache */
|
26964 |
-
Map = __webpack_require__(/*! ./_Map */
|
26965 |
|
26966 |
/**
|
26967 |
* Removes all key-value entries from the map.
|
@@ -26983,7 +27882,7 @@ module.exports = mapCacheClear;
|
|
26983 |
|
26984 |
|
26985 |
/***/ }),
|
26986 |
-
/*
|
26987 |
/*!**************************************!*\
|
26988 |
!*** ./node_modules/lodash/_Hash.js ***!
|
26989 |
\**************************************/
|
@@ -26991,11 +27890,11 @@ module.exports = mapCacheClear;
|
|
26991 |
/*! all exports used */
|
26992 |
/***/ (function(module, exports, __webpack_require__) {
|
26993 |
|
26994 |
-
var hashClear = __webpack_require__(/*! ./_hashClear */
|
26995 |
-
hashDelete = __webpack_require__(/*! ./_hashDelete */
|
26996 |
-
hashGet = __webpack_require__(/*! ./_hashGet */
|
26997 |
-
hashHas = __webpack_require__(/*! ./_hashHas */
|
26998 |
-
hashSet = __webpack_require__(/*! ./_hashSet */
|
26999 |
|
27000 |
/**
|
27001 |
* Creates a hash object.
|
@@ -27026,7 +27925,7 @@ module.exports = Hash;
|
|
27026 |
|
27027 |
|
27028 |
/***/ }),
|
27029 |
-
/*
|
27030 |
/*!*******************************************!*\
|
27031 |
!*** ./node_modules/lodash/_hashClear.js ***!
|
27032 |
\*******************************************/
|
@@ -27034,7 +27933,7 @@ module.exports = Hash;
|
|
27034 |
/*! all exports used */
|
27035 |
/***/ (function(module, exports, __webpack_require__) {
|
27036 |
|
27037 |
-
var nativeCreate = __webpack_require__(/*! ./_nativeCreate */
|
27038 |
|
27039 |
/**
|
27040 |
* Removes all key-value entries from the hash.
|
@@ -27052,7 +27951,7 @@ module.exports = hashClear;
|
|
27052 |
|
27053 |
|
27054 |
/***/ }),
|
27055 |
-
/*
|
27056 |
/*!********************************************!*\
|
27057 |
!*** ./node_modules/lodash/_hashDelete.js ***!
|
27058 |
\********************************************/
|
@@ -27080,7 +27979,7 @@ module.exports = hashDelete;
|
|
27080 |
|
27081 |
|
27082 |
/***/ }),
|
27083 |
-
/*
|
27084 |
/*!*****************************************!*\
|
27085 |
!*** ./node_modules/lodash/_hashGet.js ***!
|
27086 |
\*****************************************/
|
@@ -27088,7 +27987,7 @@ module.exports = hashDelete;
|
|
27088 |
/*! all exports used */
|
27089 |
/***/ (function(module, exports, __webpack_require__) {
|
27090 |
|
27091 |
-
var nativeCreate = __webpack_require__(/*! ./_nativeCreate */
|
27092 |
|
27093 |
/** Used to stand-in for `undefined` hash values. */
|
27094 |
var HASH_UNDEFINED = '__lodash_hash_undefined__';
|
@@ -27121,7 +28020,7 @@ module.exports = hashGet;
|
|
27121 |
|
27122 |
|
27123 |
/***/ }),
|
27124 |
-
/*
|
27125 |
/*!*****************************************!*\
|
27126 |
!*** ./node_modules/lodash/_hashHas.js ***!
|
27127 |
\*****************************************/
|
@@ -27129,7 +28028,7 @@ module.exports = hashGet;
|
|
27129 |
/*! all exports used */
|
27130 |
/***/ (function(module, exports, __webpack_require__) {
|
27131 |
|
27132 |
-
var nativeCreate = __webpack_require__(/*! ./_nativeCreate */
|
27133 |
|
27134 |
/** Used for built-in method references. */
|
27135 |
var objectProto = Object.prototype;
|
@@ -27155,7 +28054,7 @@ module.exports = hashHas;
|
|
27155 |
|
27156 |
|
27157 |
/***/ }),
|
27158 |
-
/*
|
27159 |
/*!*****************************************!*\
|
27160 |
!*** ./node_modules/lodash/_hashSet.js ***!
|
27161 |
\*****************************************/
|
@@ -27163,7 +28062,7 @@ module.exports = hashHas;
|
|
27163 |
/*! all exports used */
|
27164 |
/***/ (function(module, exports, __webpack_require__) {
|
27165 |
|
27166 |
-
var nativeCreate = __webpack_require__(/*! ./_nativeCreate */
|
27167 |
|
27168 |
/** Used to stand-in for `undefined` hash values. */
|
27169 |
var HASH_UNDEFINED = '__lodash_hash_undefined__';
|
@@ -27189,7 +28088,7 @@ module.exports = hashSet;
|
|
27189 |
|
27190 |
|
27191 |
/***/ }),
|
27192 |
-
/*
|
27193 |
/*!************************************************!*\
|
27194 |
!*** ./node_modules/lodash/_mapCacheDelete.js ***!
|
27195 |
\************************************************/
|
@@ -27197,7 +28096,7 @@ module.exports = hashSet;
|
|
27197 |
/*! all exports used */
|
27198 |
/***/ (function(module, exports, __webpack_require__) {
|
27199 |
|
27200 |
-
var getMapData = __webpack_require__(/*! ./_getMapData */
|
27201 |
|
27202 |
/**
|
27203 |
* Removes `key` and its value from the map.
|
@@ -27218,7 +28117,7 @@ module.exports = mapCacheDelete;
|
|
27218 |
|
27219 |
|
27220 |
/***/ }),
|
27221 |
-
/*
|
27222 |
/*!*******************************************!*\
|
27223 |
!*** ./node_modules/lodash/_isKeyable.js ***!
|
27224 |
\*******************************************/
|
@@ -27244,7 +28143,7 @@ module.exports = isKeyable;
|
|
27244 |
|
27245 |
|
27246 |
/***/ }),
|
27247 |
-
/*
|
27248 |
/*!*********************************************!*\
|
27249 |
!*** ./node_modules/lodash/_mapCacheGet.js ***!
|
27250 |
\*********************************************/
|
@@ -27252,7 +28151,7 @@ module.exports = isKeyable;
|
|
27252 |
/*! all exports used */
|
27253 |
/***/ (function(module, exports, __webpack_require__) {
|
27254 |
|
27255 |
-
var getMapData = __webpack_require__(/*! ./_getMapData */
|
27256 |
|
27257 |
/**
|
27258 |
* Gets the map value for `key`.
|
@@ -27271,7 +28170,7 @@ module.exports = mapCacheGet;
|
|
27271 |
|
27272 |
|
27273 |
/***/ }),
|
27274 |
-
/*
|
27275 |
/*!*********************************************!*\
|
27276 |
!*** ./node_modules/lodash/_mapCacheHas.js ***!
|
27277 |
\*********************************************/
|
@@ -27279,7 +28178,7 @@ module.exports = mapCacheGet;
|
|
27279 |
/*! all exports used */
|
27280 |
/***/ (function(module, exports, __webpack_require__) {
|
27281 |
|
27282 |
-
var getMapData = __webpack_require__(/*! ./_getMapData */
|
27283 |
|
27284 |
/**
|
27285 |
* Checks if a map value for `key` exists.
|
@@ -27298,7 +28197,7 @@ module.exports = mapCacheHas;
|
|
27298 |
|
27299 |
|
27300 |
/***/ }),
|
27301 |
-
/*
|
27302 |
/*!*********************************************!*\
|
27303 |
!*** ./node_modules/lodash/_mapCacheSet.js ***!
|
27304 |
\*********************************************/
|
@@ -27306,7 +28205,7 @@ module.exports = mapCacheHas;
|
|
27306 |
/*! all exports used */
|
27307 |
/***/ (function(module, exports, __webpack_require__) {
|
27308 |
|
27309 |
-
var getMapData = __webpack_require__(/*! ./_getMapData */
|
27310 |
|
27311 |
/**
|
27312 |
* Sets the map `key` to `value`.
|
@@ -27331,7 +28230,7 @@ module.exports = mapCacheSet;
|
|
27331 |
|
27332 |
|
27333 |
/***/ }),
|
27334 |
-
/*
|
27335 |
/*!*************************************************!*\
|
27336 |
!*** ./node_modules/lodash/_baseIsEqualDeep.js ***!
|
27337 |
\*************************************************/
|
@@ -27339,14 +28238,14 @@ module.exports = mapCacheSet;
|
|
27339 |
/*! all exports used */
|
27340 |
/***/ (function(module, exports, __webpack_require__) {
|
27341 |
|
27342 |
-
var Stack = __webpack_require__(/*! ./_Stack */
|
27343 |
-
equalArrays = __webpack_require__(/*! ./_equalArrays */
|
27344 |
-
equalByTag = __webpack_require__(/*! ./_equalByTag */
|
27345 |
-
equalObjects = __webpack_require__(/*! ./_equalObjects */
|
27346 |
-
getTag = __webpack_require__(/*! ./_getTag */
|
27347 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
27348 |
-
isBuffer = __webpack_require__(/*! ./isBuffer */
|
27349 |
-
isTypedArray = __webpack_require__(/*! ./isTypedArray */
|
27350 |
|
27351 |
/** Used to compose bitmasks for value comparisons. */
|
27352 |
var COMPARE_PARTIAL_FLAG = 1;
|
@@ -27425,7 +28324,7 @@ module.exports = baseIsEqualDeep;
|
|
27425 |
|
27426 |
|
27427 |
/***/ }),
|
27428 |
-
/*
|
27429 |
/*!******************************************!*\
|
27430 |
!*** ./node_modules/lodash/_SetCache.js ***!
|
27431 |
\******************************************/
|
@@ -27433,9 +28332,9 @@ module.exports = baseIsEqualDeep;
|
|
27433 |
/*! all exports used */
|
27434 |
/***/ (function(module, exports, __webpack_require__) {
|
27435 |
|
27436 |
-
var MapCache = __webpack_require__(/*! ./_MapCache */
|
27437 |
-
setCacheAdd = __webpack_require__(/*! ./_setCacheAdd */
|
27438 |
-
setCacheHas = __webpack_require__(/*! ./_setCacheHas */
|
27439 |
|
27440 |
/**
|
27441 |
*
|
@@ -27463,7 +28362,7 @@ module.exports = SetCache;
|
|
27463 |
|
27464 |
|
27465 |
/***/ }),
|
27466 |
-
/*
|
27467 |
/*!*********************************************!*\
|
27468 |
!*** ./node_modules/lodash/_setCacheAdd.js ***!
|
27469 |
\*********************************************/
|
@@ -27493,7 +28392,7 @@ module.exports = setCacheAdd;
|
|
27493 |
|
27494 |
|
27495 |
/***/ }),
|
27496 |
-
/*
|
27497 |
/*!*********************************************!*\
|
27498 |
!*** ./node_modules/lodash/_setCacheHas.js ***!
|
27499 |
\*********************************************/
|
@@ -27518,7 +28417,7 @@ module.exports = setCacheHas;
|
|
27518 |
|
27519 |
|
27520 |
/***/ }),
|
27521 |
-
/*
|
27522 |
/*!*******************************************!*\
|
27523 |
!*** ./node_modules/lodash/_arraySome.js ***!
|
27524 |
\*******************************************/
|
@@ -27552,7 +28451,7 @@ module.exports = arraySome;
|
|
27552 |
|
27553 |
|
27554 |
/***/ }),
|
27555 |
-
/*
|
27556 |
/*!******************************************!*\
|
27557 |
!*** ./node_modules/lodash/_cacheHas.js ***!
|
27558 |
\******************************************/
|
@@ -27576,7 +28475,7 @@ module.exports = cacheHas;
|
|
27576 |
|
27577 |
|
27578 |
/***/ }),
|
27579 |
-
/*
|
27580 |
/*!********************************************!*\
|
27581 |
!*** ./node_modules/lodash/_equalByTag.js ***!
|
27582 |
\********************************************/
|
@@ -27585,11 +28484,11 @@ module.exports = cacheHas;
|
|
27585 |
/***/ (function(module, exports, __webpack_require__) {
|
27586 |
|
27587 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 27),
|
27588 |
-
Uint8Array = __webpack_require__(/*! ./_Uint8Array */
|
27589 |
-
eq = __webpack_require__(/*! ./eq */
|
27590 |
-
equalArrays = __webpack_require__(/*! ./_equalArrays */
|
27591 |
-
mapToArray = __webpack_require__(/*! ./_mapToArray */
|
27592 |
-
setToArray = __webpack_require__(/*! ./_setToArray */
|
27593 |
|
27594 |
/** Used to compose bitmasks for value comparisons. */
|
27595 |
var COMPARE_PARTIAL_FLAG = 1,
|
@@ -27699,7 +28598,7 @@ module.exports = equalByTag;
|
|
27699 |
|
27700 |
|
27701 |
/***/ }),
|
27702 |
-
/*
|
27703 |
/*!********************************************!*\
|
27704 |
!*** ./node_modules/lodash/_mapToArray.js ***!
|
27705 |
\********************************************/
|
@@ -27728,7 +28627,7 @@ module.exports = mapToArray;
|
|
27728 |
|
27729 |
|
27730 |
/***/ }),
|
27731 |
-
/*
|
27732 |
/*!********************************************!*\
|
27733 |
!*** ./node_modules/lodash/_setToArray.js ***!
|
27734 |
\********************************************/
|
@@ -27757,7 +28656,7 @@ module.exports = setToArray;
|
|
27757 |
|
27758 |
|
27759 |
/***/ }),
|
27760 |
-
/*
|
27761 |
/*!**********************************************!*\
|
27762 |
!*** ./node_modules/lodash/_equalObjects.js ***!
|
27763 |
\**********************************************/
|
@@ -27765,7 +28664,7 @@ module.exports = setToArray;
|
|
27765 |
/*! all exports used */
|
27766 |
/***/ (function(module, exports, __webpack_require__) {
|
27767 |
|
27768 |
-
var getAllKeys = __webpack_require__(/*! ./_getAllKeys */
|
27769 |
|
27770 |
/** Used to compose bitmasks for value comparisons. */
|
27771 |
var COMPARE_PARTIAL_FLAG = 1;
|
@@ -27857,7 +28756,7 @@ module.exports = equalObjects;
|
|
27857 |
|
27858 |
|
27859 |
/***/ }),
|
27860 |
-
/*
|
27861 |
/*!*********************************************!*\
|
27862 |
!*** ./node_modules/lodash/_arrayFilter.js ***!
|
27863 |
\*********************************************/
|
@@ -27893,7 +28792,7 @@ module.exports = arrayFilter;
|
|
27893 |
|
27894 |
|
27895 |
/***/ }),
|
27896 |
-
/*
|
27897 |
/*!*************************************************!*\
|
27898 |
!*** ./node_modules/lodash/_baseIsArguments.js ***!
|
27899 |
\*************************************************/
|
@@ -27922,7 +28821,7 @@ module.exports = baseIsArguments;
|
|
27922 |
|
27923 |
|
27924 |
/***/ }),
|
27925 |
-
/*
|
27926 |
/*!******************************************!*\
|
27927 |
!*** ./node_modules/lodash/stubFalse.js ***!
|
27928 |
\******************************************/
|
@@ -27951,7 +28850,7 @@ module.exports = stubFalse;
|
|
27951 |
|
27952 |
|
27953 |
/***/ }),
|
27954 |
-
/*
|
27955 |
/*!**************************************************!*\
|
27956 |
!*** ./node_modules/lodash/_baseIsTypedArray.js ***!
|
27957 |
\**************************************************/
|
@@ -27960,7 +28859,7 @@ module.exports = stubFalse;
|
|
27960 |
/***/ (function(module, exports, __webpack_require__) {
|
27961 |
|
27962 |
var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 22),
|
27963 |
-
isLength = __webpack_require__(/*! ./isLength */
|
27964 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
27965 |
|
27966 |
/** `Object#toString` result references. */
|
@@ -28022,7 +28921,7 @@ module.exports = baseIsTypedArray;
|
|
28022 |
|
28023 |
|
28024 |
/***/ }),
|
28025 |
-
/*
|
28026 |
/*!******************************************!*\
|
28027 |
!*** ./node_modules/lodash/_baseKeys.js ***!
|
28028 |
\******************************************/
|
@@ -28030,8 +28929,8 @@ module.exports = baseIsTypedArray;
|
|
28030 |
/*! all exports used */
|
28031 |
/***/ (function(module, exports, __webpack_require__) {
|
28032 |
|
28033 |
-
var isPrototype = __webpack_require__(/*! ./_isPrototype */
|
28034 |
-
nativeKeys = __webpack_require__(/*! ./_nativeKeys */
|
28035 |
|
28036 |
/** Used for built-in method references. */
|
28037 |
var objectProto = Object.prototype;
|
@@ -28063,7 +28962,7 @@ module.exports = baseKeys;
|
|
28063 |
|
28064 |
|
28065 |
/***/ }),
|
28066 |
-
/*
|
28067 |
/*!********************************************!*\
|
28068 |
!*** ./node_modules/lodash/_nativeKeys.js ***!
|
28069 |
\********************************************/
|
@@ -28071,7 +28970,7 @@ module.exports = baseKeys;
|
|
28071 |
/*! all exports used */
|
28072 |
/***/ (function(module, exports, __webpack_require__) {
|
28073 |
|
28074 |
-
var overArg = __webpack_require__(/*! ./_overArg */
|
28075 |
|
28076 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
28077 |
var nativeKeys = overArg(Object.keys, Object);
|
@@ -28080,7 +28979,7 @@ module.exports = nativeKeys;
|
|
28080 |
|
28081 |
|
28082 |
/***/ }),
|
28083 |
-
/*
|
28084 |
/*!******************************************!*\
|
28085 |
!*** ./node_modules/lodash/_DataView.js ***!
|
28086 |
\******************************************/
|
@@ -28098,7 +28997,7 @@ module.exports = DataView;
|
|
28098 |
|
28099 |
|
28100 |
/***/ }),
|
28101 |
-
/*
|
28102 |
/*!*****************************************!*\
|
28103 |
!*** ./node_modules/lodash/_Promise.js ***!
|
28104 |
\*****************************************/
|
@@ -28116,7 +29015,7 @@ module.exports = Promise;
|
|
28116 |
|
28117 |
|
28118 |
/***/ }),
|
28119 |
-
/*
|
28120 |
/*!*************************************!*\
|
28121 |
!*** ./node_modules/lodash/_Set.js ***!
|
28122 |
\*************************************/
|
@@ -28134,7 +29033,7 @@ module.exports = Set;
|
|
28134 |
|
28135 |
|
28136 |
/***/ }),
|
28137 |
-
/*
|
28138 |
/*!*****************************************!*\
|
28139 |
!*** ./node_modules/lodash/_WeakMap.js ***!
|
28140 |
\*****************************************/
|
@@ -28152,7 +29051,7 @@ module.exports = WeakMap;
|
|
28152 |
|
28153 |
|
28154 |
/***/ }),
|
28155 |
-
/*
|
28156 |
/*!**********************************************!*\
|
28157 |
!*** ./node_modules/lodash/_getMatchData.js ***!
|
28158 |
\**********************************************/
|
@@ -28160,7 +29059,7 @@ module.exports = WeakMap;
|
|
28160 |
/*! all exports used */
|
28161 |
/***/ (function(module, exports, __webpack_require__) {
|
28162 |
|
28163 |
-
var isStrictComparable = __webpack_require__(/*! ./_isStrictComparable */
|
28164 |
keys = __webpack_require__(/*! ./keys */ 28);
|
28165 |
|
28166 |
/**
|
@@ -28187,7 +29086,7 @@ module.exports = getMatchData;
|
|
28187 |
|
28188 |
|
28189 |
/***/ }),
|
28190 |
-
/*
|
28191 |
/*!*****************************************************!*\
|
28192 |
!*** ./node_modules/lodash/_baseMatchesProperty.js ***!
|
28193 |
\*****************************************************/
|
@@ -28195,12 +29094,12 @@ module.exports = getMatchData;
|
|
28195 |
/*! all exports used */
|
28196 |
/***/ (function(module, exports, __webpack_require__) {
|
28197 |
|
28198 |
-
var baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */
|
28199 |
-
get = __webpack_require__(/*! ./get */
|
28200 |
-
hasIn = __webpack_require__(/*! ./hasIn */
|
28201 |
-
isKey = __webpack_require__(/*! ./_isKey */
|
28202 |
-
isStrictComparable = __webpack_require__(/*! ./_isStrictComparable */
|
28203 |
-
matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */
|
28204 |
toKey = __webpack_require__(/*! ./_toKey */ 31);
|
28205 |
|
28206 |
/** Used to compose bitmasks for value comparisons. */
|
@@ -28231,7 +29130,7 @@ module.exports = baseMatchesProperty;
|
|
28231 |
|
28232 |
|
28233 |
/***/ }),
|
28234 |
-
/*
|
28235 |
/*!**********************************************!*\
|
28236 |
!*** ./node_modules/lodash/_stringToPath.js ***!
|
28237 |
\**********************************************/
|
@@ -28239,7 +29138,7 @@ module.exports = baseMatchesProperty;
|
|
28239 |
/*! all exports used */
|
28240 |
/***/ (function(module, exports, __webpack_require__) {
|
28241 |
|
28242 |
-
var memoizeCapped = __webpack_require__(/*! ./_memoizeCapped */
|
28243 |
|
28244 |
/** Used to match property names within property paths. */
|
28245 |
var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g;
|
@@ -28269,7 +29168,7 @@ module.exports = stringToPath;
|
|
28269 |
|
28270 |
|
28271 |
/***/ }),
|
28272 |
-
/*
|
28273 |
/*!***********************************************!*\
|
28274 |
!*** ./node_modules/lodash/_memoizeCapped.js ***!
|
28275 |
\***********************************************/
|
@@ -28277,7 +29176,7 @@ module.exports = stringToPath;
|
|
28277 |
/*! all exports used */
|
28278 |
/***/ (function(module, exports, __webpack_require__) {
|
28279 |
|
28280 |
-
var memoize = __webpack_require__(/*! ./memoize */
|
28281 |
|
28282 |
/** Used as the maximum memoize cache size. */
|
28283 |
var MAX_MEMOIZE_SIZE = 500;
|
@@ -28306,7 +29205,7 @@ module.exports = memoizeCapped;
|
|
28306 |
|
28307 |
|
28308 |
/***/ }),
|
28309 |
-
/*
|
28310 |
/*!****************************************!*\
|
28311 |
!*** ./node_modules/lodash/memoize.js ***!
|
28312 |
\****************************************/
|
@@ -28314,7 +29213,7 @@ module.exports = memoizeCapped;
|
|
28314 |
/*! all exports used */
|
28315 |
/***/ (function(module, exports, __webpack_require__) {
|
28316 |
|
28317 |
-
var MapCache = __webpack_require__(/*! ./_MapCache */
|
28318 |
|
28319 |
/** Error message constants. */
|
28320 |
var FUNC_ERROR_TEXT = 'Expected a function';
|
@@ -28390,7 +29289,7 @@ module.exports = memoize;
|
|
28390 |
|
28391 |
|
28392 |
/***/ }),
|
28393 |
-
/*
|
28394 |
/*!**************************************!*\
|
28395 |
!*** ./node_modules/lodash/hasIn.js ***!
|
28396 |
\**************************************/
|
@@ -28398,8 +29297,8 @@ module.exports = memoize;
|
|
28398 |
/*! all exports used */
|
28399 |
/***/ (function(module, exports, __webpack_require__) {
|
28400 |
|
28401 |
-
var baseHasIn = __webpack_require__(/*! ./_baseHasIn */
|
28402 |
-
hasPath = __webpack_require__(/*! ./_hasPath */
|
28403 |
|
28404 |
/**
|
28405 |
* Checks if `path` is a direct or inherited property of `object`.
|
@@ -28435,7 +29334,7 @@ module.exports = hasIn;
|
|
28435 |
|
28436 |
|
28437 |
/***/ }),
|
28438 |
-
/*
|
28439 |
/*!*******************************************!*\
|
28440 |
!*** ./node_modules/lodash/_baseHasIn.js ***!
|
28441 |
\*******************************************/
|
@@ -28459,7 +29358,7 @@ module.exports = baseHasIn;
|
|
28459 |
|
28460 |
|
28461 |
/***/ }),
|
28462 |
-
/*
|
28463 |
/*!*****************************************!*\
|
28464 |
!*** ./node_modules/lodash/_hasPath.js ***!
|
28465 |
\*****************************************/
|
@@ -28468,10 +29367,10 @@ module.exports = baseHasIn;
|
|
28468 |
/***/ (function(module, exports, __webpack_require__) {
|
28469 |
|
28470 |
var castPath = __webpack_require__(/*! ./_castPath */ 30),
|
28471 |
-
isArguments = __webpack_require__(/*! ./isArguments */
|
28472 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
28473 |
-
isIndex = __webpack_require__(/*! ./_isIndex */
|
28474 |
-
isLength = __webpack_require__(/*! ./isLength */
|
28475 |
toKey = __webpack_require__(/*! ./_toKey */ 31);
|
28476 |
|
28477 |
/**
|
@@ -28509,7 +29408,7 @@ module.exports = hasPath;
|
|
28509 |
|
28510 |
|
28511 |
/***/ }),
|
28512 |
-
/*
|
28513 |
/*!*****************************************!*\
|
28514 |
!*** ./node_modules/lodash/property.js ***!
|
28515 |
\*****************************************/
|
@@ -28517,9 +29416,9 @@ module.exports = hasPath;
|
|
28517 |
/*! all exports used */
|
28518 |
/***/ (function(module, exports, __webpack_require__) {
|
28519 |
|
28520 |
-
var baseProperty = __webpack_require__(/*! ./_baseProperty */
|
28521 |
-
basePropertyDeep = __webpack_require__(/*! ./_basePropertyDeep */
|
28522 |
-
isKey = __webpack_require__(/*! ./_isKey */
|
28523 |
toKey = __webpack_require__(/*! ./_toKey */ 31);
|
28524 |
|
28525 |
/**
|
@@ -28552,7 +29451,7 @@ module.exports = property;
|
|
28552 |
|
28553 |
|
28554 |
/***/ }),
|
28555 |
-
/*
|
28556 |
/*!**************************************************!*\
|
28557 |
!*** ./node_modules/lodash/_basePropertyDeep.js ***!
|
28558 |
\**************************************************/
|
@@ -28560,7 +29459,7 @@ module.exports = property;
|
|
28560 |
/*! all exports used */
|
28561 |
/***/ (function(module, exports, __webpack_require__) {
|
28562 |
|
28563 |
-
var baseGet = __webpack_require__(/*! ./_baseGet */
|
28564 |
|
28565 |
/**
|
28566 |
* A specialized version of `baseProperty` which supports deep paths.
|
@@ -28579,7 +29478,7 @@ module.exports = basePropertyDeep;
|
|
28579 |
|
28580 |
|
28581 |
/***/ }),
|
28582 |
-
/*
|
28583 |
/*!*****************************************!*\
|
28584 |
!*** ./node_modules/lodash/_baseMap.js ***!
|
28585 |
\*****************************************/
|
@@ -28587,7 +29486,7 @@ module.exports = basePropertyDeep;
|
|
28587 |
/*! all exports used */
|
28588 |
/***/ (function(module, exports, __webpack_require__) {
|
28589 |
|
28590 |
-
var baseEach = __webpack_require__(/*! ./_baseEach */
|
28591 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 29);
|
28592 |
|
28593 |
/**
|
@@ -28612,7 +29511,7 @@ module.exports = baseMap;
|
|
28612 |
|
28613 |
|
28614 |
/***/ }),
|
28615 |
-
/*
|
28616 |
/*!******************************************!*\
|
28617 |
!*** ./node_modules/lodash/_baseEach.js ***!
|
28618 |
\******************************************/
|
@@ -28620,8 +29519,8 @@ module.exports = baseMap;
|
|
28620 |
/*! all exports used */
|
28621 |
/***/ (function(module, exports, __webpack_require__) {
|
28622 |
|
28623 |
-
var baseForOwn = __webpack_require__(/*! ./_baseForOwn */
|
28624 |
-
createBaseEach = __webpack_require__(/*! ./_createBaseEach */
|
28625 |
|
28626 |
/**
|
28627 |
* The base implementation of `_.forEach` without support for iteratee shorthands.
|
@@ -28637,7 +29536,7 @@ module.exports = baseEach;
|
|
28637 |
|
28638 |
|
28639 |
/***/ }),
|
28640 |
-
/*
|
28641 |
/*!********************************************!*\
|
28642 |
!*** ./node_modules/lodash/_baseForOwn.js ***!
|
28643 |
\********************************************/
|
@@ -28645,7 +29544,7 @@ module.exports = baseEach;
|
|
28645 |
/*! all exports used */
|
28646 |
/***/ (function(module, exports, __webpack_require__) {
|
28647 |
|
28648 |
-
var baseFor = __webpack_require__(/*! ./_baseFor */
|
28649 |
keys = __webpack_require__(/*! ./keys */ 28);
|
28650 |
|
28651 |
/**
|
@@ -28664,7 +29563,7 @@ module.exports = baseForOwn;
|
|
28664 |
|
28665 |
|
28666 |
/***/ }),
|
28667 |
-
/*
|
28668 |
/*!*****************************************!*\
|
28669 |
!*** ./node_modules/lodash/_baseFor.js ***!
|
28670 |
\*****************************************/
|
@@ -28672,7 +29571,7 @@ module.exports = baseForOwn;
|
|
28672 |
/*! all exports used */
|
28673 |
/***/ (function(module, exports, __webpack_require__) {
|
28674 |
|
28675 |
-
var createBaseFor = __webpack_require__(/*! ./_createBaseFor */
|
28676 |
|
28677 |
/**
|
28678 |
* The base implementation of `baseForOwn` which iterates over `object`
|
@@ -28691,7 +29590,7 @@ module.exports = baseFor;
|
|
28691 |
|
28692 |
|
28693 |
/***/ }),
|
28694 |
-
/*
|
28695 |
/*!***********************************************!*\
|
28696 |
!*** ./node_modules/lodash/_createBaseFor.js ***!
|
28697 |
\***********************************************/
|
@@ -28727,7 +29626,7 @@ module.exports = createBaseFor;
|
|
28727 |
|
28728 |
|
28729 |
/***/ }),
|
28730 |
-
/*
|
28731 |
/*!************************************************!*\
|
28732 |
!*** ./node_modules/lodash/_createBaseEach.js ***!
|
28733 |
\************************************************/
|
@@ -28770,7 +29669,7 @@ module.exports = createBaseEach;
|
|
28770 |
|
28771 |
|
28772 |
/***/ }),
|
28773 |
-
/*
|
28774 |
/*!********************************************!*\
|
28775 |
!*** ./src/components/typography/fonts.js ***!
|
28776 |
\********************************************/
|
@@ -29675,7 +30574,7 @@ fonts["Zilla Slab Highlight"] = { "v": ["regular", "700"], "subset": ["latin-ext
|
|
29675 |
/* harmony default export */ __webpack_exports__["a"] = (fonts);
|
29676 |
|
29677 |
/***/ }),
|
29678 |
-
/*
|
29679 |
/*!********************************************************************!*\
|
29680 |
!*** ./node_modules/react-select/dist/react-select.browser.esm.js ***!
|
29681 |
\********************************************************************/
|
@@ -29685,44 +30584,44 @@ fonts["Zilla Slab Highlight"] = { "v": ["regular", "700"], "subset": ["latin-ext
|
|
29685 |
|
29686 |
"use strict";
|
29687 |
/* unused harmony export NonceProvider */
|
29688 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_objectWithoutProperties__ = __webpack_require__(/*! @babel/runtime/helpers/objectWithoutProperties */
|
29689 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_objectWithoutProperties___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_objectWithoutProperties__);
|
29690 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_extends__ = __webpack_require__(/*! @babel/runtime/helpers/extends */
|
29691 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_extends___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_extends__);
|
29692 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_slicedToArray__ = __webpack_require__(/*! @babel/runtime/helpers/slicedToArray */
|
29693 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_slicedToArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_slicedToArray__);
|
29694 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_toConsumableArray__ = __webpack_require__(/*! @babel/runtime/helpers/toConsumableArray */
|
29695 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_toConsumableArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_toConsumableArray__);
|
29696 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_defineProperty__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */
|
29697 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_defineProperty___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_defineProperty__);
|
29698 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__babel_runtime_helpers_esm_classCallCheck__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */
|
29699 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__babel_runtime_helpers_esm_createClass__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */
|
29700 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_assertThisInitialized__ = __webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */
|
29701 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_assertThisInitialized___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_assertThisInitialized__);
|
29702 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__babel_runtime_helpers_esm_inherits__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */
|
29703 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__babel_runtime_helpers_esm_possibleConstructorReturn__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */
|
29704 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__babel_runtime_helpers_esm_getPrototypeOf__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */
|
29705 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11_react__ = __webpack_require__(/*! react */ 5);
|
29706 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_11_react__);
|
29707 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12_memoize_one__ = __webpack_require__(/*! memoize-one */
|
29708 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__emotion_core__ = __webpack_require__(/*! @emotion/core */
|
29709 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_dom__ = __webpack_require__(/*! react-dom */ 33);
|
29710 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_14_react_dom__);
|
29711 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__babel_runtime_helpers_typeof__ = __webpack_require__(/*! @babel/runtime/helpers/typeof */
|
29712 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__babel_runtime_helpers_typeof___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_15__babel_runtime_helpers_typeof__);
|
29713 |
-
/* harmony import */ var
|
29714 |
/* unused harmony reexport components */
|
29715 |
-
/* harmony import */ var
|
29716 |
/* unused harmony reexport createFilter */
|
29717 |
/* unused harmony reexport defaultTheme */
|
29718 |
/* unused harmony reexport mergeStyles */
|
29719 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__emotion_css__ = __webpack_require__(/*! @emotion/css */ 41);
|
29720 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__babel_runtime_helpers_taggedTemplateLiteral__ = __webpack_require__(/*! @babel/runtime/helpers/taggedTemplateLiteral */
|
29721 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__babel_runtime_helpers_taggedTemplateLiteral___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_19__babel_runtime_helpers_taggedTemplateLiteral__);
|
29722 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_20_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */
|
29723 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_20_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_20_react_input_autosize__);
|
29724 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_21__stateManager_2f2b6f5b_browser_esm_js__ = __webpack_require__(/*! ./stateManager-2f2b6f5b.browser.esm.js */
|
29725 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_22__emotion_cache__ = __webpack_require__(/*! @emotion/cache */
|
29726 |
|
29727 |
|
29728 |
|
@@ -29787,21 +30686,21 @@ var NonceProvider = /*#__PURE__*/function (_Component) {
|
|
29787 |
return NonceProvider;
|
29788 |
}(__WEBPACK_IMPORTED_MODULE_11_react__["Component"]);
|
29789 |
|
29790 |
-
var index = Object(__WEBPACK_IMPORTED_MODULE_21__stateManager_2f2b6f5b_browser_esm_js__["a" /* m */])(
|
29791 |
|
29792 |
/* harmony default export */ __webpack_exports__["a"] = (index);
|
29793 |
|
29794 |
|
29795 |
|
29796 |
/***/ }),
|
29797 |
-
/*
|
29798 |
/*!**************************************************************************************************!*\
|
29799 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/objectWithoutProperties.js ***!
|
29800 |
\**************************************************************************************************/
|
29801 |
/*! dynamic exports provided */
|
29802 |
/***/ (function(module, exports, __webpack_require__) {
|
29803 |
|
29804 |
-
var objectWithoutPropertiesLoose = __webpack_require__(/*! ./objectWithoutPropertiesLoose */
|
29805 |
|
29806 |
function _objectWithoutProperties(source, excluded) {
|
29807 |
if (source == null) return {};
|
@@ -29823,9 +30722,10 @@ function _objectWithoutProperties(source, excluded) {
|
|
29823 |
}
|
29824 |
|
29825 |
module.exports = _objectWithoutProperties;
|
|
|
29826 |
|
29827 |
/***/ }),
|
29828 |
-
/*
|
29829 |
/*!*******************************************************************************************************!*\
|
29830 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js ***!
|
29831 |
\*******************************************************************************************************/
|
@@ -29849,9 +30749,10 @@ function _objectWithoutPropertiesLoose(source, excluded) {
|
|
29849 |
}
|
29850 |
|
29851 |
module.exports = _objectWithoutPropertiesLoose;
|
|
|
29852 |
|
29853 |
/***/ }),
|
29854 |
-
/*
|
29855 |
/*!**********************************************************************************!*\
|
29856 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/extends.js ***!
|
29857 |
\**********************************************************************************/
|
@@ -29873,35 +30774,38 @@ function _extends() {
|
|
29873 |
return target;
|
29874 |
};
|
29875 |
|
|
|
29876 |
return _extends.apply(this, arguments);
|
29877 |
}
|
29878 |
|
29879 |
module.exports = _extends;
|
|
|
29880 |
|
29881 |
/***/ }),
|
29882 |
-
/*
|
29883 |
/*!****************************************************************************************!*\
|
29884 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/slicedToArray.js ***!
|
29885 |
\****************************************************************************************/
|
29886 |
/*! dynamic exports provided */
|
29887 |
/***/ (function(module, exports, __webpack_require__) {
|
29888 |
|
29889 |
-
var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles */
|
29890 |
|
29891 |
-
var iterableToArrayLimit = __webpack_require__(/*! ./iterableToArrayLimit */
|
29892 |
|
29893 |
-
var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray */
|
29894 |
|
29895 |
-
var nonIterableRest = __webpack_require__(/*! ./nonIterableRest */
|
29896 |
|
29897 |
function _slicedToArray(arr, i) {
|
29898 |
return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();
|
29899 |
}
|
29900 |
|
29901 |
module.exports = _slicedToArray;
|
|
|
29902 |
|
29903 |
/***/ }),
|
29904 |
-
/*
|
29905 |
/*!*****************************************************************************************!*\
|
29906 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/arrayWithHoles.js ***!
|
29907 |
\*****************************************************************************************/
|
@@ -29914,9 +30818,10 @@ function _arrayWithHoles(arr) {
|
|
29914 |
}
|
29915 |
|
29916 |
module.exports = _arrayWithHoles;
|
|
|
29917 |
|
29918 |
/***/ }),
|
29919 |
-
/*
|
29920 |
/*!***********************************************************************************************!*\
|
29921 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js ***!
|
29922 |
\***********************************************************************************************/
|
@@ -29952,9 +30857,10 @@ function _iterableToArrayLimit(arr, i) {
|
|
29952 |
}
|
29953 |
|
29954 |
module.exports = _iterableToArrayLimit;
|
|
|
29955 |
|
29956 |
/***/ }),
|
29957 |
-
/*
|
29958 |
/*!******************************************************************************************!*\
|
29959 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/nonIterableRest.js ***!
|
29960 |
\******************************************************************************************/
|
@@ -29967,31 +30873,33 @@ function _nonIterableRest() {
|
|
29967 |
}
|
29968 |
|
29969 |
module.exports = _nonIterableRest;
|
|
|
29970 |
|
29971 |
/***/ }),
|
29972 |
-
/*
|
29973 |
/*!********************************************************************************************!*\
|
29974 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/toConsumableArray.js ***!
|
29975 |
\********************************************************************************************/
|
29976 |
/*! dynamic exports provided */
|
29977 |
/***/ (function(module, exports, __webpack_require__) {
|
29978 |
|
29979 |
-
var arrayWithoutHoles = __webpack_require__(/*! ./arrayWithoutHoles */
|
29980 |
|
29981 |
-
var iterableToArray = __webpack_require__(/*! ./iterableToArray */
|
29982 |
|
29983 |
-
var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray */
|
29984 |
|
29985 |
-
var nonIterableSpread = __webpack_require__(/*! ./nonIterableSpread */
|
29986 |
|
29987 |
function _toConsumableArray(arr) {
|
29988 |
return arrayWithoutHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableSpread();
|
29989 |
}
|
29990 |
|
29991 |
module.exports = _toConsumableArray;
|
|
|
29992 |
|
29993 |
/***/ }),
|
29994 |
-
/*
|
29995 |
/*!********************************************************************************************!*\
|
29996 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js ***!
|
29997 |
\********************************************************************************************/
|
@@ -29999,16 +30907,17 @@ module.exports = _toConsumableArray;
|
|
29999 |
/*! all exports used */
|
30000 |
/***/ (function(module, exports, __webpack_require__) {
|
30001 |
|
30002 |
-
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray */
|
30003 |
|
30004 |
function _arrayWithoutHoles(arr) {
|
30005 |
if (Array.isArray(arr)) return arrayLikeToArray(arr);
|
30006 |
}
|
30007 |
|
30008 |
module.exports = _arrayWithoutHoles;
|
|
|
30009 |
|
30010 |
/***/ }),
|
30011 |
-
/*
|
30012 |
/*!******************************************************************************************!*\
|
30013 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArray.js ***!
|
30014 |
\******************************************************************************************/
|
@@ -30021,9 +30930,10 @@ function _iterableToArray(iter) {
|
|
30021 |
}
|
30022 |
|
30023 |
module.exports = _iterableToArray;
|
|
|
30024 |
|
30025 |
/***/ }),
|
30026 |
-
/*
|
30027 |
/*!********************************************************************************************!*\
|
30028 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/nonIterableSpread.js ***!
|
30029 |
\********************************************************************************************/
|
@@ -30036,9 +30946,10 @@ function _nonIterableSpread() {
|
|
30036 |
}
|
30037 |
|
30038 |
module.exports = _nonIterableSpread;
|
|
|
30039 |
|
30040 |
/***/ }),
|
30041 |
-
/*
|
30042 |
/*!*****************************************************************************************!*\
|
30043 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/defineProperty.js ***!
|
30044 |
\*****************************************************************************************/
|
@@ -30061,9 +30972,10 @@ function _defineProperty(obj, key, value) {
|
|
30061 |
}
|
30062 |
|
30063 |
module.exports = _defineProperty;
|
|
|
30064 |
|
30065 |
/***/ }),
|
30066 |
-
/*
|
30067 |
/*!************************************************************************************************!*\
|
30068 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/assertThisInitialized.js ***!
|
30069 |
\************************************************************************************************/
|
@@ -30079,9 +30991,10 @@ function _assertThisInitialized(self) {
|
|
30079 |
}
|
30080 |
|
30081 |
module.exports = _assertThisInitialized;
|
|
|
30082 |
|
30083 |
/***/ }),
|
30084 |
-
/*
|
30085 |
/*!*********************************************************************************************!*\
|
30086 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
30087 |
\*********************************************************************************************/
|
@@ -30101,7 +31014,7 @@ function _setPrototypeOf(o, p) {
|
|
30101 |
}
|
30102 |
|
30103 |
/***/ }),
|
30104 |
-
/*
|
30105 |
/*!********************************************************!*\
|
30106 |
!*** ./node_modules/react/cjs/react.production.min.js ***!
|
30107 |
\********************************************************/
|
@@ -30138,7 +31051,7 @@ exports.useLayoutEffect=function(a,b){return Z().useLayoutEffect(a,b)};exports.u
|
|
30138 |
|
30139 |
|
30140 |
/***/ }),
|
30141 |
-
/*
|
30142 |
/*!*****************************************************!*\
|
30143 |
!*** ./node_modules/react/cjs/react.development.js ***!
|
30144 |
\*****************************************************/
|
@@ -30165,7 +31078,7 @@ if (process.env.NODE_ENV !== "production") {
|
|
30165 |
'use strict';
|
30166 |
|
30167 |
var _assign = __webpack_require__(/*! object-assign */ 32);
|
30168 |
-
var checkPropTypes = __webpack_require__(/*! prop-types/checkPropTypes */
|
30169 |
|
30170 |
var ReactVersion = '16.14.0';
|
30171 |
|
@@ -32063,7 +32976,7 @@ exports.version = ReactVersion;
|
|
32063 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
32064 |
|
32065 |
/***/ }),
|
32066 |
-
/*
|
32067 |
/*!*********************************************************************************************!*\
|
32068 |
!*** ./node_modules/@emotion/core/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js ***!
|
32069 |
\*********************************************************************************************/
|
@@ -32073,14 +32986,36 @@ exports.version = ReactVersion;
|
|
32073 |
|
32074 |
"use strict";
|
32075 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _inheritsLoose;
|
|
|
|
|
32076 |
function _inheritsLoose(subClass, superClass) {
|
32077 |
subClass.prototype = Object.create(superClass.prototype);
|
32078 |
subClass.prototype.constructor = subClass;
|
32079 |
-
subClass
|
32080 |
}
|
32081 |
|
32082 |
/***/ }),
|
32083 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32084 |
/*!*****************************************************************!*\
|
32085 |
!*** ./node_modules/@emotion/stylis/dist/stylis.browser.esm.js ***!
|
32086 |
\*****************************************************************/
|
@@ -32707,7 +33642,7 @@ function stylis_min (W) {
|
|
32707 |
|
32708 |
|
32709 |
/***/ }),
|
32710 |
-
/*
|
32711 |
/*!*****************************************************************************!*\
|
32712 |
!*** ./node_modules/@emotion/weak-memoize/dist/weak-memoize.browser.esm.js ***!
|
32713 |
\*****************************************************************************/
|
@@ -32734,23 +33669,48 @@ var weakMemoize = function weakMemoize(func) {
|
|
32734 |
|
32735 |
|
32736 |
/***/ }),
|
32737 |
-
/*
|
32738 |
/*!*****************************************************************************************!*\
|
32739 |
!*** ./node_modules/@emotion/core/node_modules/@babel/runtime/helpers/inheritsLoose.js ***!
|
32740 |
\*****************************************************************************************/
|
32741 |
/*! dynamic exports provided */
|
32742 |
-
/***/ (function(module, exports) {
|
|
|
|
|
32743 |
|
32744 |
function _inheritsLoose(subClass, superClass) {
|
32745 |
subClass.prototype = Object.create(superClass.prototype);
|
32746 |
subClass.prototype.constructor = subClass;
|
32747 |
-
subClass
|
32748 |
}
|
32749 |
|
32750 |
module.exports = _inheritsLoose;
|
|
|
32751 |
|
32752 |
/***/ }),
|
32753 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32754 |
/*!*************************************************************!*\
|
32755 |
!*** ./node_modules/@emotion/hash/dist/hash.browser.esm.js ***!
|
32756 |
\*************************************************************/
|
@@ -32817,7 +33777,7 @@ function murmur2(str) {
|
|
32817 |
|
32818 |
|
32819 |
/***/ }),
|
32820 |
-
/*
|
32821 |
/*!*********************************************************************!*\
|
32822 |
!*** ./node_modules/@emotion/unitless/dist/unitless.browser.esm.js ***!
|
32823 |
\*********************************************************************/
|
@@ -32879,7 +33839,7 @@ var unitlessKeys = {
|
|
32879 |
|
32880 |
|
32881 |
/***/ }),
|
32882 |
-
/*
|
32883 |
/*!*******************************************************************!*\
|
32884 |
!*** ./node_modules/@emotion/memoize/dist/memoize.browser.esm.js ***!
|
32885 |
\*******************************************************************/
|
@@ -32900,7 +33860,7 @@ function memoize(fn) {
|
|
32900 |
|
32901 |
|
32902 |
/***/ }),
|
32903 |
-
/*
|
32904 |
/*!****************************************************************!*\
|
32905 |
!*** ./node_modules/react-dom/cjs/react-dom.production.min.js ***!
|
32906 |
\****************************************************************/
|
@@ -32921,7 +33881,7 @@ function memoize(fn) {
|
|
32921 |
/*
|
32922 |
Modernizr 3.0.0pre (Custom Build) | MIT
|
32923 |
*/
|
32924 |
-
var aa=__webpack_require__(/*! react */ 5),n=__webpack_require__(/*! object-assign */ 32),r=__webpack_require__(/*! scheduler */
|
32925 |
function ba(a,b,c,d,e,f,g,h,k){var l=Array.prototype.slice.call(arguments,3);try{b.apply(c,l)}catch(m){this.onError(m)}}var da=!1,ea=null,fa=!1,ha=null,ia={onError:function(a){da=!0;ea=a}};function ja(a,b,c,d,e,f,g,h,k){da=!1;ea=null;ba.apply(ia,arguments)}function ka(a,b,c,d,e,f,g,h,k){ja.apply(this,arguments);if(da){if(da){var l=ea;da=!1;ea=null}else throw Error(u(198));fa||(fa=!0,ha=l)}}var la=null,ma=null,na=null;
|
32926 |
function oa(a,b,c){var d=a.type||"unknown-event";a.currentTarget=na(c);ka(d,b,void 0,a);a.currentTarget=null}var pa=null,qa={};
|
32927 |
function ra(){if(pa)for(var a in qa){var b=qa[a],c=pa.indexOf(a);if(!(-1<c))throw Error(u(96,a));if(!sa[c]){if(!b.extractEvents)throw Error(u(97,a));sa[c]=b;c=b.eventTypes;for(var d in c){var e=void 0;var f=c[d],g=b,h=d;if(ta.hasOwnProperty(h))throw Error(u(99,h));ta[h]=f;var k=f.phasedRegistrationNames;if(k){for(e in k)k.hasOwnProperty(e)&&ua(k[e],g,h);e=!0}else f.registrationName?(ua(f.registrationName,g,h),e=!0):e=!1;if(!e)throw Error(u(98,d,a));}}}}
|
@@ -33204,7 +34164,7 @@ exports.unstable_renderSubtreeIntoContainer=function(a,b,c,d){if(!gk(c))throw Er
|
|
33204 |
|
33205 |
|
33206 |
/***/ }),
|
33207 |
-
/*
|
33208 |
/*!****************************************************************!*\
|
33209 |
!*** ./node_modules/scheduler/cjs/scheduler.production.min.js ***!
|
33210 |
\****************************************************************/
|
@@ -33237,7 +34197,7 @@ exports.unstable_shouldYield=function(){var a=exports.unstable_now();V(a);var b=
|
|
33237 |
|
33238 |
|
33239 |
/***/ }),
|
33240 |
-
/*
|
33241 |
/*!*************************************************************!*\
|
33242 |
!*** ./node_modules/scheduler/cjs/scheduler.development.js ***!
|
33243 |
\*************************************************************/
|
@@ -34108,7 +35068,7 @@ exports.unstable_wrapCallback = unstable_wrapCallback;
|
|
34108 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
34109 |
|
34110 |
/***/ }),
|
34111 |
-
/*
|
34112 |
/*!*************************************************************!*\
|
34113 |
!*** ./node_modules/react-dom/cjs/react-dom.development.js ***!
|
34114 |
\*************************************************************/
|
@@ -34136,9 +35096,9 @@ if (process.env.NODE_ENV !== "production") {
|
|
34136 |
|
34137 |
var React = __webpack_require__(/*! react */ 5);
|
34138 |
var _assign = __webpack_require__(/*! object-assign */ 32);
|
34139 |
-
var Scheduler = __webpack_require__(/*! scheduler */
|
34140 |
-
var checkPropTypes = __webpack_require__(/*! prop-types/checkPropTypes */
|
34141 |
-
var tracing = __webpack_require__(/*! scheduler/tracing */
|
34142 |
|
34143 |
var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED; // Prevent newer renderers from RTE when used with older react package versions.
|
34144 |
// Current owner and dispatcher used to share the same ref,
|
@@ -59133,7 +60093,7 @@ exports.version = ReactVersion;
|
|
59133 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
59134 |
|
59135 |
/***/ }),
|
59136 |
-
/*
|
59137 |
/*!*******************************************!*\
|
59138 |
!*** ./node_modules/scheduler/tracing.js ***!
|
59139 |
\*******************************************/
|
@@ -59145,15 +60105,15 @@ exports.version = ReactVersion;
|
|
59145 |
/* WEBPACK VAR INJECTION */(function(process) {
|
59146 |
|
59147 |
if (process.env.NODE_ENV === 'production') {
|
59148 |
-
module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.production.min.js */
|
59149 |
} else {
|
59150 |
-
module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.development.js */
|
59151 |
}
|
59152 |
|
59153 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
59154 |
|
59155 |
/***/ }),
|
59156 |
-
/*
|
59157 |
/*!************************************************************************!*\
|
59158 |
!*** ./node_modules/scheduler/cjs/scheduler-tracing.production.min.js ***!
|
59159 |
\************************************************************************/
|
@@ -59175,7 +60135,7 @@ var b=0;exports.__interactionsRef=null;exports.__subscriberRef=null;exports.unst
|
|
59175 |
|
59176 |
|
59177 |
/***/ }),
|
59178 |
-
/*
|
59179 |
/*!*********************************************************************!*\
|
59180 |
!*** ./node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
|
59181 |
\*********************************************************************/
|
@@ -59537,33 +60497,7 @@ exports.unstable_wrap = unstable_wrap;
|
|
59537 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
59538 |
|
59539 |
/***/ }),
|
59540 |
-
/*
|
59541 |
-
/*!*********************************************************************************!*\
|
59542 |
-
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/typeof.js ***!
|
59543 |
-
\*********************************************************************************/
|
59544 |
-
/*! dynamic exports provided */
|
59545 |
-
/***/ (function(module, exports) {
|
59546 |
-
|
59547 |
-
function _typeof(obj) {
|
59548 |
-
"@babel/helpers - typeof";
|
59549 |
-
|
59550 |
-
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
59551 |
-
module.exports = _typeof = function _typeof(obj) {
|
59552 |
-
return typeof obj;
|
59553 |
-
};
|
59554 |
-
} else {
|
59555 |
-
module.exports = _typeof = function _typeof(obj) {
|
59556 |
-
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
59557 |
-
};
|
59558 |
-
}
|
59559 |
-
|
59560 |
-
return _typeof(obj);
|
59561 |
-
}
|
59562 |
-
|
59563 |
-
module.exports = _typeof;
|
59564 |
-
|
59565 |
-
/***/ }),
|
59566 |
-
/* 353 */
|
59567 |
/*!***********************************************************************************************************!*\
|
59568 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js ***!
|
59569 |
\***********************************************************************************************************/
|
@@ -59589,7 +60523,34 @@ function _objectWithoutPropertiesLoose(source, excluded) {
|
|
59589 |
}
|
59590 |
|
59591 |
/***/ }),
|
59592 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59593 |
/*!****************************************************************************************************!*\
|
59594 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js ***!
|
59595 |
\****************************************************************************************************/
|
@@ -59612,7 +60573,7 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
59612 |
}
|
59613 |
|
59614 |
/***/ }),
|
59615 |
-
/*
|
59616 |
/*!**************************************************************!*\
|
59617 |
!*** ./node_modules/react-is/cjs/react-is.production.min.js ***!
|
59618 |
\**************************************************************/
|
@@ -59639,7 +60600,7 @@ exports.isSuspense=function(a){return t(a)===p};
|
|
59639 |
|
59640 |
|
59641 |
/***/ }),
|
59642 |
-
/*
|
59643 |
/*!***********************************************************!*\
|
59644 |
!*** ./node_modules/react-is/cjs/react-is.development.js ***!
|
59645 |
\***********************************************************/
|
@@ -59879,7 +60840,7 @@ exports.isSuspense = isSuspense;
|
|
59879 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
59880 |
|
59881 |
/***/ }),
|
59882 |
-
/*
|
59883 |
/*!************************************************************!*\
|
59884 |
!*** ./node_modules/prop-types/factoryWithTypeCheckers.js ***!
|
59885 |
\************************************************************/
|
@@ -59897,11 +60858,11 @@ exports.isSuspense = isSuspense;
|
|
59897 |
|
59898 |
|
59899 |
|
59900 |
-
var ReactIs = __webpack_require__(/*! react-is */
|
59901 |
var assign = __webpack_require__(/*! object-assign */ 32);
|
59902 |
|
59903 |
-
var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */
|
59904 |
-
var checkPropTypes = __webpack_require__(/*! ./checkPropTypes */
|
59905 |
|
59906 |
var has = Function.call.bind(Object.prototype.hasOwnProperty);
|
59907 |
var printWarning = function() {};
|
@@ -60483,7 +61444,7 @@ module.exports = function(isValidElement, throwOnDirectAccess) {
|
|
60483 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
60484 |
|
60485 |
/***/ }),
|
60486 |
-
/*
|
60487 |
/*!*************************************************************!*\
|
60488 |
!*** ./node_modules/prop-types/factoryWithThrowingShims.js ***!
|
60489 |
\*************************************************************/
|
@@ -60501,7 +61462,7 @@ module.exports = function(isValidElement, throwOnDirectAccess) {
|
|
60501 |
|
60502 |
|
60503 |
|
60504 |
-
var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */
|
60505 |
|
60506 |
function emptyFunction() {}
|
60507 |
function emptyFunctionWithReset() {}
|
@@ -60559,7 +61520,7 @@ module.exports = function() {
|
|
60559 |
|
60560 |
|
60561 |
/***/ }),
|
60562 |
-
/*
|
60563 |
/*!********************************************************************************************!*\
|
60564 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/slicedToArray.js ***!
|
60565 |
\********************************************************************************************/
|
@@ -60569,20 +61530,20 @@ module.exports = function() {
|
|
60569 |
|
60570 |
"use strict";
|
60571 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _slicedToArray;
|
60572 |
-
/* harmony import */ var
|
60573 |
-
/* harmony import */ var
|
60574 |
-
/* harmony import */ var
|
60575 |
-
/* harmony import */ var
|
60576 |
|
60577 |
|
60578 |
|
60579 |
|
60580 |
function _slicedToArray(arr, i) {
|
60581 |
-
return Object(
|
60582 |
}
|
60583 |
|
60584 |
/***/ }),
|
60585 |
-
/*
|
60586 |
/*!*********************************************************************************************!*\
|
60587 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js ***!
|
60588 |
\*********************************************************************************************/
|
@@ -60597,7 +61558,7 @@ function _arrayWithHoles(arr) {
|
|
60597 |
}
|
60598 |
|
60599 |
/***/ }),
|
60600 |
-
/*
|
60601 |
/*!***************************************************************************************************!*\
|
60602 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js ***!
|
60603 |
\***************************************************************************************************/
|
@@ -60635,7 +61596,7 @@ function _iterableToArrayLimit(arr, i) {
|
|
60635 |
}
|
60636 |
|
60637 |
/***/ }),
|
60638 |
-
/*
|
60639 |
/*!**********************************************************************************************!*\
|
60640 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
|
60641 |
\**********************************************************************************************/
|
@@ -60650,7 +61611,7 @@ function _nonIterableRest() {
|
|
60650 |
}
|
60651 |
|
60652 |
/***/ }),
|
60653 |
-
/*
|
60654 |
/*!************************************************************************************************!*\
|
60655 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js ***!
|
60656 |
\************************************************************************************************/
|
@@ -60660,20 +61621,20 @@ function _nonIterableRest() {
|
|
60660 |
|
60661 |
"use strict";
|
60662 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _toConsumableArray;
|
60663 |
-
/* harmony import */ var
|
60664 |
-
/* harmony import */ var
|
60665 |
-
/* harmony import */ var
|
60666 |
-
/* harmony import */ var
|
60667 |
|
60668 |
|
60669 |
|
60670 |
|
60671 |
function _toConsumableArray(arr) {
|
60672 |
-
return Object(
|
60673 |
}
|
60674 |
|
60675 |
/***/ }),
|
60676 |
-
/*
|
60677 |
/*!************************************************************************************************!*\
|
60678 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js ***!
|
60679 |
\************************************************************************************************/
|
@@ -60683,14 +61644,14 @@ function _toConsumableArray(arr) {
|
|
60683 |
|
60684 |
"use strict";
|
60685 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _arrayWithoutHoles;
|
60686 |
-
/* harmony import */ var
|
60687 |
|
60688 |
function _arrayWithoutHoles(arr) {
|
60689 |
-
if (Array.isArray(arr)) return Object(
|
60690 |
}
|
60691 |
|
60692 |
/***/ }),
|
60693 |
-
/*
|
60694 |
/*!**********************************************************************************************!*\
|
60695 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***!
|
60696 |
\**********************************************************************************************/
|
@@ -60705,7 +61666,7 @@ function _iterableToArray(iter) {
|
|
60705 |
}
|
60706 |
|
60707 |
/***/ }),
|
60708 |
-
/*
|
60709 |
/*!************************************************************************************************!*\
|
60710 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js ***!
|
60711 |
\************************************************************************************************/
|
@@ -60720,7 +61681,7 @@ function _nonIterableSpread() {
|
|
60720 |
}
|
60721 |
|
60722 |
/***/ }),
|
60723 |
-
/*
|
60724 |
/*!************************************************************************************************!*\
|
60725 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js ***!
|
60726 |
\************************************************************************************************/
|
@@ -60740,9 +61701,10 @@ function _taggedTemplateLiteral(strings, raw) {
|
|
60740 |
}
|
60741 |
|
60742 |
module.exports = _taggedTemplateLiteral;
|
|
|
60743 |
|
60744 |
/***/ }),
|
60745 |
-
/*
|
60746 |
/*!*****************************************************************************!*\
|
60747 |
!*** ./node_modules/react-select/dist/stateManager-2f2b6f5b.browser.esm.js ***!
|
60748 |
\*****************************************************************************/
|
@@ -60752,13 +61714,13 @@ module.exports = _taggedTemplateLiteral;
|
|
60752 |
|
60753 |
"use strict";
|
60754 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return manageState; });
|
60755 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutProperties__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutProperties */
|
60756 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */
|
60757 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_esm_classCallCheck__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */
|
60758 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_esm_createClass__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */
|
60759 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_esm_inherits__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */
|
60760 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__babel_runtime_helpers_esm_possibleConstructorReturn__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */
|
60761 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__babel_runtime_helpers_esm_getPrototypeOf__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */
|
60762 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_react__ = __webpack_require__(/*! react */ 5);
|
60763 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_react__);
|
60764 |
|
@@ -60905,7 +61867,7 @@ var manageState = function manageState(SelectComponent) {
|
|
60905 |
|
60906 |
|
60907 |
/***/ }),
|
60908 |
-
/*
|
60909 |
/*!*******************************************************!*\
|
60910 |
!*** ./src/components/typography/range-typography.js ***!
|
60911 |
\*******************************************************/
|
@@ -60914,7 +61876,7 @@ var manageState = function manageState(SelectComponent) {
|
|
60914 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
60915 |
|
60916 |
"use strict";
|
60917 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map__ = __webpack_require__(/*! lodash/map */
|
60918 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_map__);
|
60919 |
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
60920 |
|
@@ -61068,7 +62030,7 @@ function RangeTypographyControl(props) {
|
|
61068 |
/* harmony default export */ __webpack_exports__["a"] = (RangeTypographyControl);
|
61069 |
|
61070 |
/***/ }),
|
61071 |
-
/*
|
61072 |
/*!****************************************************!*\
|
61073 |
!*** ./src/components/typography/inline-styles.js ***!
|
61074 |
\****************************************************/
|
@@ -61088,7 +62050,7 @@ function TypographyStyles(props) {
|
|
61088 |
/* unused harmony default export */ var _unused_webpack_default_export = (TypographyStyles);
|
61089 |
|
61090 |
/***/ }),
|
61091 |
-
/*
|
61092 |
/*!***********************************************!*\
|
61093 |
!*** ./src/components/typography/editor.scss ***!
|
61094 |
\***********************************************/
|
@@ -61098,7 +62060,7 @@ function TypographyStyles(props) {
|
|
61098 |
// removed by extract-text-webpack-plugin
|
61099 |
|
61100 |
/***/ }),
|
61101 |
-
/*
|
61102 |
/*!*****************************************************!*\
|
61103 |
!*** ./node_modules/webfontloader/webfontloader.js ***!
|
61104 |
\*****************************************************/
|
@@ -61127,7 +62089,7 @@ g,0<d.length&&(d=za[d[0]])&&(a.c[e]=d))}a.c[e]||(d=za[e])&&(a.c[e]=d);for(d=0;d<
|
|
61127 |
|
61128 |
|
61129 |
/***/ }),
|
61130 |
-
/*
|
61131 |
/*!*********************************************!*\
|
61132 |
!*** ./src/blocks/advanced-heading/save.js ***!
|
61133 |
\*********************************************/
|
@@ -61187,7 +62149,7 @@ function save(props) {
|
|
61187 |
}
|
61188 |
|
61189 |
/***/ }),
|
61190 |
-
/*
|
61191 |
/*!***************************************************!*\
|
61192 |
!*** ./src/blocks/advanced-heading/deprecated.js ***!
|
61193 |
\***************************************************/
|
@@ -61196,7 +62158,7 @@ function save(props) {
|
|
61196 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
61197 |
|
61198 |
"use strict";
|
61199 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__attributes__ = __webpack_require__(/*! ./attributes */
|
61200 |
/**
|
61201 |
* BLOCK: Advanced Heading - Deprecated Block
|
61202 |
*/
|
@@ -61283,7 +62245,7 @@ var deprecated = [{
|
|
61283 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
61284 |
|
61285 |
/***/ }),
|
61286 |
-
/*
|
61287 |
/*!**********************************!*\
|
61288 |
!*** ./src/blocks/post/block.js ***!
|
61289 |
\**********************************/
|
@@ -61291,14 +62253,14 @@ var deprecated = [{
|
|
61291 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
61292 |
|
61293 |
"use strict";
|
61294 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__post_grid_block_js__ = __webpack_require__(/*! ./post-grid/block.js */
|
61295 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_masonry_block_js__ = __webpack_require__(/*! ./post-masonry/block.js */
|
61296 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__post_carousel_block_js__ = __webpack_require__(/*! ./post-carousel/block.js */
|
61297 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__post_title_block_js__ = __webpack_require__(/*! ./post-title/block.js */
|
61298 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__post_image_block_js__ = __webpack_require__(/*! ./post-image/block.js */
|
61299 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__post_button_block_js__ = __webpack_require__(/*! ./post-button/block.js */
|
61300 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__post_excerpt_block_js__ = __webpack_require__(/*! ./post-excerpt/block.js */
|
61301 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__post_meta_block_js__ = __webpack_require__(/*! ./post-meta/block.js */
|
61302 |
/**
|
61303 |
* Gutenberg Blocks
|
61304 |
*
|
@@ -61320,7 +62282,7 @@ var deprecated = [{
|
|
61320 |
|
61321 |
|
61322 |
/***/ }),
|
61323 |
-
/*
|
61324 |
/*!********************************************!*\
|
61325 |
!*** ./src/blocks/post/post-grid/block.js ***!
|
61326 |
\********************************************/
|
@@ -61328,11 +62290,11 @@ var deprecated = [{
|
|
61328 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
61329 |
|
61330 |
"use strict";
|
61331 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */
|
61332 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
61333 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */
|
61334 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
61335 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */
|
61336 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
61337 |
/**
|
61338 |
* BLOCK: UAGB - post-grid
|
@@ -61369,7 +62331,7 @@ registerBlockType("uagb/post-grid", {
|
|
61369 |
});
|
61370 |
|
61371 |
/***/ }),
|
61372 |
-
/*
|
61373 |
/*!*******************************************!*\
|
61374 |
!*** ./src/blocks/post/post-grid/edit.js ***!
|
61375 |
\*******************************************/
|
@@ -61383,8 +62345,8 @@ registerBlockType("uagb/post-grid", {
|
|
61383 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
61384 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
61385 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
61386 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__blog__ = __webpack_require__(/*! ./blog */
|
61387 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! .././styling */
|
61388 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__function__ = __webpack_require__(/*! .././function */ 34);
|
61389 |
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
|
61390 |
|
@@ -63073,7 +64035,7 @@ var UAGBPostGrid = function (_Component) {
|
|
63073 |
}))(UAGBPostGrid));
|
63074 |
|
63075 |
/***/ }),
|
63076 |
-
/*
|
63077 |
/*!*******************************************!*\
|
63078 |
!*** ./src/blocks/post/post-grid/blog.js ***!
|
63079 |
\*******************************************/
|
@@ -63175,22 +64137,22 @@ var Blog = function (_React$Component) {
|
|
63175 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
63176 |
|
63177 |
/***/ }),
|
63178 |
-
/*
|
63179 |
/*!*****************************************!*\
|
63180 |
!*** ./node_modules/lodash/truncate.js ***!
|
63181 |
\*****************************************/
|
63182 |
/*! dynamic exports provided */
|
63183 |
/***/ (function(module, exports, __webpack_require__) {
|
63184 |
|
63185 |
-
var baseToString = __webpack_require__(/*! ./_baseToString */
|
63186 |
-
castSlice = __webpack_require__(/*! ./_castSlice */
|
63187 |
-
hasUnicode = __webpack_require__(/*! ./_hasUnicode */
|
63188 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
63189 |
-
isRegExp = __webpack_require__(/*! ./isRegExp */
|
63190 |
-
stringSize = __webpack_require__(/*! ./_stringSize */
|
63191 |
-
stringToArray = __webpack_require__(/*! ./_stringToArray */
|
63192 |
-
toInteger = __webpack_require__(/*! ./toInteger */
|
63193 |
-
toString = __webpack_require__(/*! ./toString */
|
63194 |
|
63195 |
/** Used as default options for `_.truncate`. */
|
63196 |
var DEFAULT_TRUNC_LENGTH = 30,
|
@@ -63296,7 +64258,7 @@ module.exports = truncate;
|
|
63296 |
|
63297 |
|
63298 |
/***/ }),
|
63299 |
-
/*
|
63300 |
/*!*******************************************!*\
|
63301 |
!*** ./node_modules/lodash/_castSlice.js ***!
|
63302 |
\*******************************************/
|
@@ -63304,7 +64266,7 @@ module.exports = truncate;
|
|
63304 |
/*! all exports used */
|
63305 |
/***/ (function(module, exports, __webpack_require__) {
|
63306 |
|
63307 |
-
var baseSlice = __webpack_require__(/*! ./_baseSlice */
|
63308 |
|
63309 |
/**
|
63310 |
* Casts `array` to a slice if it's needed.
|
@@ -63325,7 +64287,7 @@ module.exports = castSlice;
|
|
63325 |
|
63326 |
|
63327 |
/***/ }),
|
63328 |
-
/*
|
63329 |
/*!*****************************************!*\
|
63330 |
!*** ./node_modules/lodash/isRegExp.js ***!
|
63331 |
\*****************************************/
|
@@ -63333,9 +64295,9 @@ module.exports = castSlice;
|
|
63333 |
/*! all exports used */
|
63334 |
/***/ (function(module, exports, __webpack_require__) {
|
63335 |
|
63336 |
-
var baseIsRegExp = __webpack_require__(/*! ./_baseIsRegExp */
|
63337 |
-
baseUnary = __webpack_require__(/*! ./_baseUnary */
|
63338 |
-
nodeUtil = __webpack_require__(/*! ./_nodeUtil */
|
63339 |
|
63340 |
/* Node.js helper references. */
|
63341 |
var nodeIsRegExp = nodeUtil && nodeUtil.isRegExp;
|
@@ -63363,7 +64325,7 @@ module.exports = isRegExp;
|
|
63363 |
|
63364 |
|
63365 |
/***/ }),
|
63366 |
-
/*
|
63367 |
/*!**********************************************!*\
|
63368 |
!*** ./node_modules/lodash/_baseIsRegExp.js ***!
|
63369 |
\**********************************************/
|
@@ -63392,7 +64354,7 @@ module.exports = baseIsRegExp;
|
|
63392 |
|
63393 |
|
63394 |
/***/ }),
|
63395 |
-
/*
|
63396 |
/*!********************************************!*\
|
63397 |
!*** ./node_modules/lodash/_stringSize.js ***!
|
63398 |
\********************************************/
|
@@ -63400,9 +64362,9 @@ module.exports = baseIsRegExp;
|
|
63400 |
/*! all exports used */
|
63401 |
/***/ (function(module, exports, __webpack_require__) {
|
63402 |
|
63403 |
-
var asciiSize = __webpack_require__(/*! ./_asciiSize */
|
63404 |
-
hasUnicode = __webpack_require__(/*! ./_hasUnicode */
|
63405 |
-
unicodeSize = __webpack_require__(/*! ./_unicodeSize */
|
63406 |
|
63407 |
/**
|
63408 |
* Gets the number of symbols in `string`.
|
@@ -63421,7 +64383,7 @@ module.exports = stringSize;
|
|
63421 |
|
63422 |
|
63423 |
/***/ }),
|
63424 |
-
/*
|
63425 |
/*!*******************************************!*\
|
63426 |
!*** ./node_modules/lodash/_asciiSize.js ***!
|
63427 |
\*******************************************/
|
@@ -63429,7 +64391,7 @@ module.exports = stringSize;
|
|
63429 |
/*! all exports used */
|
63430 |
/***/ (function(module, exports, __webpack_require__) {
|
63431 |
|
63432 |
-
var baseProperty = __webpack_require__(/*! ./_baseProperty */
|
63433 |
|
63434 |
/**
|
63435 |
* Gets the size of an ASCII `string`.
|
@@ -63444,7 +64406,7 @@ module.exports = asciiSize;
|
|
63444 |
|
63445 |
|
63446 |
/***/ }),
|
63447 |
-
/*
|
63448 |
/*!*********************************************!*\
|
63449 |
!*** ./node_modules/lodash/_unicodeSize.js ***!
|
63450 |
\*********************************************/
|
@@ -63499,7 +64461,7 @@ module.exports = unicodeSize;
|
|
63499 |
|
63500 |
|
63501 |
/***/ }),
|
63502 |
-
/*
|
63503 |
/*!***********************************************!*\
|
63504 |
!*** ./node_modules/lodash/_stringToArray.js ***!
|
63505 |
\***********************************************/
|
@@ -63507,9 +64469,9 @@ module.exports = unicodeSize;
|
|
63507 |
/*! all exports used */
|
63508 |
/***/ (function(module, exports, __webpack_require__) {
|
63509 |
|
63510 |
-
var asciiToArray = __webpack_require__(/*! ./_asciiToArray */
|
63511 |
-
hasUnicode = __webpack_require__(/*! ./_hasUnicode */
|
63512 |
-
unicodeToArray = __webpack_require__(/*! ./_unicodeToArray */
|
63513 |
|
63514 |
/**
|
63515 |
* Converts `string` to an array.
|
@@ -63528,7 +64490,7 @@ module.exports = stringToArray;
|
|
63528 |
|
63529 |
|
63530 |
/***/ }),
|
63531 |
-
/*
|
63532 |
/*!**********************************************!*\
|
63533 |
!*** ./node_modules/lodash/_asciiToArray.js ***!
|
63534 |
\**********************************************/
|
@@ -63551,7 +64513,7 @@ module.exports = asciiToArray;
|
|
63551 |
|
63552 |
|
63553 |
/***/ }),
|
63554 |
-
/*
|
63555 |
/*!************************************************!*\
|
63556 |
!*** ./node_modules/lodash/_unicodeToArray.js ***!
|
63557 |
\************************************************/
|
@@ -63602,7 +64564,7 @@ module.exports = unicodeToArray;
|
|
63602 |
|
63603 |
|
63604 |
/***/ }),
|
63605 |
-
/*
|
63606 |
/*!*****************************************!*\
|
63607 |
!*** ./node_modules/lodash/toFinite.js ***!
|
63608 |
\*****************************************/
|
@@ -63610,7 +64572,7 @@ module.exports = unicodeToArray;
|
|
63610 |
/*! all exports used */
|
63611 |
/***/ (function(module, exports, __webpack_require__) {
|
63612 |
|
63613 |
-
var toNumber = __webpack_require__(/*! ./toNumber */
|
63614 |
|
63615 |
/** Used as references for various `Number` constants. */
|
63616 |
var INFINITY = 1 / 0,
|
@@ -63655,7 +64617,7 @@ module.exports = toFinite;
|
|
63655 |
|
63656 |
|
63657 |
/***/ }),
|
63658 |
-
/*
|
63659 |
/*!***********************************************!*\
|
63660 |
!*** ./src/blocks/post/post-masonry/block.js ***!
|
63661 |
\***********************************************/
|
@@ -63663,11 +64625,11 @@ module.exports = toFinite;
|
|
63663 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
63664 |
|
63665 |
"use strict";
|
63666 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */
|
63667 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
63668 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */
|
63669 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
63670 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */
|
63671 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
63672 |
/**
|
63673 |
* BLOCK: UAGB - post-masonry
|
@@ -63705,7 +64667,7 @@ registerBlockType("uagb/post-masonry", {
|
|
63705 |
});
|
63706 |
|
63707 |
/***/ }),
|
63708 |
-
/*
|
63709 |
/*!**********************************************!*\
|
63710 |
!*** ./src/blocks/post/post-masonry/edit.js ***!
|
63711 |
\**********************************************/
|
@@ -63717,8 +64679,8 @@ registerBlockType("uagb/post-masonry", {
|
|
63717 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
63718 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
63719 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
63720 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blog__ = __webpack_require__(/*! ./blog */
|
63721 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! .././styling */
|
63722 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__function__ = __webpack_require__(/*! .././function */ 34);
|
63723 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
63724 |
|
@@ -65576,7 +66538,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
65576 |
}))(UAGBPostMasonry));
|
65577 |
|
65578 |
/***/ }),
|
65579 |
-
/*
|
65580 |
/*!**********************************************!*\
|
65581 |
!*** ./src/blocks/post/post-masonry/blog.js ***!
|
65582 |
\**********************************************/
|
@@ -65587,7 +66549,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
65587 |
"use strict";
|
65588 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
65589 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
65590 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component__ = __webpack_require__(/*! react-masonry-component */
|
65591 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_masonry_component__);
|
65592 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__function__ = __webpack_require__(/*! .././function */ 34);
|
65593 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
@@ -65705,7 +66667,7 @@ var Blog = function (_React$Component) {
|
|
65705 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
65706 |
|
65707 |
/***/ }),
|
65708 |
-
/*
|
65709 |
/*!***********************************************************!*\
|
65710 |
!*** ./node_modules/react-masonry-component/lib/index.js ***!
|
65711 |
\***********************************************************/
|
@@ -65714,15 +66676,15 @@ var Blog = function (_React$Component) {
|
|
65714 |
/***/ (function(module, exports, __webpack_require__) {
|
65715 |
|
65716 |
var isBrowser = typeof window !== 'undefined';
|
65717 |
-
var Masonry = isBrowser ? window.Masonry || __webpack_require__(/*! masonry-layout */
|
65718 |
-
var imagesloaded = isBrowser ? __webpack_require__(/*! imagesloaded */
|
65719 |
-
var assign = __webpack_require__(/*! lodash/assign */
|
65720 |
-
var elementResizeDetectorMaker = __webpack_require__(/*! element-resize-detector */
|
65721 |
-
var debounce = __webpack_require__(/*! lodash/debounce */
|
65722 |
-
var omit = __webpack_require__(/*! lodash/omit */
|
65723 |
var PropTypes = __webpack_require__(/*! prop-types */ 15);
|
65724 |
var React = __webpack_require__(/*! react */ 5);
|
65725 |
-
var createReactClass = __webpack_require__(/*! create-react-class */
|
65726 |
|
65727 |
var propTypes = {
|
65728 |
enableResizableChildren: PropTypes.bool,
|
@@ -66031,7 +66993,7 @@ module.exports.default = MasonryComponent;
|
|
66031 |
|
66032 |
|
66033 |
/***/ }),
|
66034 |
-
/*
|
66035 |
/*!************************************************!*\
|
66036 |
!*** ./node_modules/masonry-layout/masonry.js ***!
|
66037 |
\************************************************/
|
@@ -66053,8 +67015,8 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
66053 |
if ( true ) {
|
66054 |
// AMD
|
66055 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
66056 |
-
__webpack_require__(/*! outlayer/outlayer */
|
66057 |
-
__webpack_require__(/*! get-size/get-size */
|
66058 |
], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
66059 |
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
66060 |
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
@@ -66283,7 +67245,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
66283 |
|
66284 |
|
66285 |
/***/ }),
|
66286 |
-
/*
|
66287 |
/*!*******************************************!*\
|
66288 |
!*** ./node_modules/outlayer/outlayer.js ***!
|
66289 |
\*******************************************/
|
@@ -66304,10 +67266,10 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
66304 |
if ( true ) {
|
66305 |
// AMD - RequireJS
|
66306 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
66307 |
-
__webpack_require__(/*! ev-emitter/ev-emitter */
|
66308 |
-
__webpack_require__(/*! get-size/get-size */
|
66309 |
-
__webpack_require__(/*! fizzy-ui-utils/utils */
|
66310 |
-
__webpack_require__(/*! ./item */
|
66311 |
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( EvEmitter, getSize, utils, Item ) {
|
66312 |
return factory( window, EvEmitter, getSize, utils, Item);
|
66313 |
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
@@ -67232,7 +68194,7 @@ return Outlayer;
|
|
67232 |
|
67233 |
|
67234 |
/***/ }),
|
67235 |
-
/*
|
67236 |
/*!**********************************************!*\
|
67237 |
!*** ./node_modules/fizzy-ui-utils/utils.js ***!
|
67238 |
\**********************************************/
|
@@ -67254,7 +68216,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
67254 |
if ( true ) {
|
67255 |
// AMD
|
67256 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
67257 |
-
__webpack_require__(/*! desandro-matches-selector/matches-selector */
|
67258 |
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( matchesSelector ) {
|
67259 |
return factory( window, matchesSelector );
|
67260 |
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
@@ -67485,7 +68447,7 @@ return utils;
|
|
67485 |
|
67486 |
|
67487 |
/***/ }),
|
67488 |
-
/*
|
67489 |
/*!********************************************************************!*\
|
67490 |
!*** ./node_modules/desandro-matches-selector/matches-selector.js ***!
|
67491 |
\********************************************************************/
|
@@ -67553,7 +68515,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
67553 |
|
67554 |
|
67555 |
/***/ }),
|
67556 |
-
/*
|
67557 |
/*!***************************************!*\
|
67558 |
!*** ./node_modules/outlayer/item.js ***!
|
67559 |
\***************************************/
|
@@ -67571,8 +68533,8 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
67571 |
if ( true ) {
|
67572 |
// AMD - RequireJS
|
67573 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
67574 |
-
__webpack_require__(/*! ev-emitter/ev-emitter */
|
67575 |
-
__webpack_require__(/*! get-size/get-size */
|
67576 |
], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
67577 |
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
67578 |
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
@@ -68119,7 +69081,7 @@ return Item;
|
|
68119 |
|
68120 |
|
68121 |
/***/ }),
|
68122 |
-
/*
|
68123 |
/*!***************************************************!*\
|
68124 |
!*** ./node_modules/imagesloaded/imagesloaded.js ***!
|
68125 |
\***************************************************/
|
@@ -68141,7 +69103,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
68141 |
if ( true ) {
|
68142 |
// AMD
|
68143 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
68144 |
-
__webpack_require__(/*! ev-emitter/ev-emitter */
|
68145 |
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( EvEmitter ) {
|
68146 |
return factory( window, EvEmitter );
|
68147 |
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
@@ -68508,7 +69470,7 @@ return ImagesLoaded;
|
|
68508 |
|
68509 |
|
68510 |
/***/ }),
|
68511 |
-
/*
|
68512 |
/*!***************************************!*\
|
68513 |
!*** ./node_modules/lodash/assign.js ***!
|
68514 |
\***************************************/
|
@@ -68516,11 +69478,11 @@ return ImagesLoaded;
|
|
68516 |
/*! all exports used */
|
68517 |
/***/ (function(module, exports, __webpack_require__) {
|
68518 |
|
68519 |
-
var assignValue = __webpack_require__(/*! ./_assignValue */
|
68520 |
copyObject = __webpack_require__(/*! ./_copyObject */ 35),
|
68521 |
-
createAssigner = __webpack_require__(/*! ./_createAssigner */
|
68522 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 29),
|
68523 |
-
isPrototype = __webpack_require__(/*! ./_isPrototype */
|
68524 |
keys = __webpack_require__(/*! ./keys */ 28);
|
68525 |
|
68526 |
/** Used for built-in method references. */
|
@@ -68577,7 +69539,7 @@ module.exports = assign;
|
|
68577 |
|
68578 |
|
68579 |
/***/ }),
|
68580 |
-
/*
|
68581 |
/*!************************************************!*\
|
68582 |
!*** ./node_modules/lodash/_createAssigner.js ***!
|
68583 |
\************************************************/
|
@@ -68585,8 +69547,8 @@ module.exports = assign;
|
|
68585 |
/*! all exports used */
|
68586 |
/***/ (function(module, exports, __webpack_require__) {
|
68587 |
|
68588 |
-
var baseRest = __webpack_require__(/*! ./_baseRest */
|
68589 |
-
isIterateeCall = __webpack_require__(/*! ./_isIterateeCall */
|
68590 |
|
68591 |
/**
|
68592 |
* Creates a function like `_.assign`.
|
@@ -68625,7 +69587,7 @@ module.exports = createAssigner;
|
|
68625 |
|
68626 |
|
68627 |
/***/ }),
|
68628 |
-
/*
|
68629 |
/*!******************************************!*\
|
68630 |
!*** ./node_modules/lodash/_baseRest.js ***!
|
68631 |
\******************************************/
|
@@ -68633,9 +69595,9 @@ module.exports = createAssigner;
|
|
68633 |
/*! all exports used */
|
68634 |
/***/ (function(module, exports, __webpack_require__) {
|
68635 |
|
68636 |
-
var identity = __webpack_require__(/*! ./identity */
|
68637 |
-
overRest = __webpack_require__(/*! ./_overRest */
|
68638 |
-
setToString = __webpack_require__(/*! ./_setToString */
|
68639 |
|
68640 |
/**
|
68641 |
* The base implementation of `_.rest` which doesn't validate or coerce arguments.
|
@@ -68653,7 +69615,7 @@ module.exports = baseRest;
|
|
68653 |
|
68654 |
|
68655 |
/***/ }),
|
68656 |
-
/*
|
68657 |
/*!***************************************!*\
|
68658 |
!*** ./node_modules/lodash/_apply.js ***!
|
68659 |
\***************************************/
|
@@ -68685,7 +69647,7 @@ module.exports = apply;
|
|
68685 |
|
68686 |
|
68687 |
/***/ }),
|
68688 |
-
/*
|
68689 |
/*!*************************************************!*\
|
68690 |
!*** ./node_modules/lodash/_baseSetToString.js ***!
|
68691 |
\*************************************************/
|
@@ -68693,9 +69655,9 @@ module.exports = apply;
|
|
68693 |
/*! all exports used */
|
68694 |
/***/ (function(module, exports, __webpack_require__) {
|
68695 |
|
68696 |
-
var constant = __webpack_require__(/*! ./constant */
|
68697 |
-
defineProperty = __webpack_require__(/*! ./_defineProperty */
|
68698 |
-
identity = __webpack_require__(/*! ./identity */
|
68699 |
|
68700 |
/**
|
68701 |
* The base implementation of `setToString` without support for hot loop shorting.
|
@@ -68718,7 +69680,7 @@ module.exports = baseSetToString;
|
|
68718 |
|
68719 |
|
68720 |
/***/ }),
|
68721 |
-
/*
|
68722 |
/*!*****************************************!*\
|
68723 |
!*** ./node_modules/lodash/constant.js ***!
|
68724 |
\*****************************************/
|
@@ -68755,7 +69717,7 @@ module.exports = constant;
|
|
68755 |
|
68756 |
|
68757 |
/***/ }),
|
68758 |
-
/*
|
68759 |
/*!******************************************!*\
|
68760 |
!*** ./node_modules/lodash/_shortOut.js ***!
|
68761 |
\******************************************/
|
@@ -68803,7 +69765,7 @@ module.exports = shortOut;
|
|
68803 |
|
68804 |
|
68805 |
/***/ }),
|
68806 |
-
/*
|
68807 |
/*!************************************************!*\
|
68808 |
!*** ./node_modules/lodash/_isIterateeCall.js ***!
|
68809 |
\************************************************/
|
@@ -68811,9 +69773,9 @@ module.exports = shortOut;
|
|
68811 |
/*! all exports used */
|
68812 |
/***/ (function(module, exports, __webpack_require__) {
|
68813 |
|
68814 |
-
var eq = __webpack_require__(/*! ./eq */
|
68815 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 29),
|
68816 |
-
isIndex = __webpack_require__(/*! ./_isIndex */
|
68817 |
isObject = __webpack_require__(/*! ./isObject */ 13);
|
68818 |
|
68819 |
/**
|
@@ -68844,7 +69806,7 @@ module.exports = isIterateeCall;
|
|
68844 |
|
68845 |
|
68846 |
/***/ }),
|
68847 |
-
/*
|
68848 |
/*!*****************************************************************************!*\
|
68849 |
!*** ./node_modules/element-resize-detector/src/element-resize-detector.js ***!
|
68850 |
\*****************************************************************************/
|
@@ -68855,19 +69817,19 @@ module.exports = isIterateeCall;
|
|
68855 |
"use strict";
|
68856 |
|
68857 |
|
68858 |
-
var forEach = __webpack_require__(/*! ./collection-utils */
|
68859 |
-
var elementUtilsMaker = __webpack_require__(/*! ./element-utils */
|
68860 |
-
var listenerHandlerMaker = __webpack_require__(/*! ./listener-handler */
|
68861 |
-
var idGeneratorMaker = __webpack_require__(/*! ./id-generator */
|
68862 |
-
var idHandlerMaker = __webpack_require__(/*! ./id-handler */
|
68863 |
-
var reporterMaker = __webpack_require__(/*! ./reporter */
|
68864 |
-
var browserDetector = __webpack_require__(/*! ./browser-detector */
|
68865 |
-
var batchProcessorMaker = __webpack_require__(/*! batch-processor */
|
68866 |
-
var stateHandler = __webpack_require__(/*! ./state-handler */
|
68867 |
|
68868 |
//Detection strategies.
|
68869 |
-
var objectStrategyMaker = __webpack_require__(/*! ./detection-strategy/object.js */
|
68870 |
-
var scrollStrategyMaker = __webpack_require__(/*! ./detection-strategy/scroll.js */
|
68871 |
|
68872 |
function isCollection(obj) {
|
68873 |
return Array.isArray(obj) || obj.length !== undefined;
|
@@ -69184,7 +70146,7 @@ function getOption(options, name, defaultValue) {
|
|
69184 |
|
69185 |
|
69186 |
/***/ }),
|
69187 |
-
/*
|
69188 |
/*!*******************************************************************!*\
|
69189 |
!*** ./node_modules/element-resize-detector/src/element-utils.js ***!
|
69190 |
\*******************************************************************/
|
@@ -69248,7 +70210,7 @@ module.exports = function(options) {
|
|
69248 |
|
69249 |
|
69250 |
/***/ }),
|
69251 |
-
/*
|
69252 |
/*!**********************************************************************!*\
|
69253 |
!*** ./node_modules/element-resize-detector/src/listener-handler.js ***!
|
69254 |
\**********************************************************************/
|
@@ -69320,7 +70282,7 @@ module.exports = function(idHandler) {
|
|
69320 |
|
69321 |
|
69322 |
/***/ }),
|
69323 |
-
/*
|
69324 |
/*!******************************************************************!*\
|
69325 |
!*** ./node_modules/element-resize-detector/src/id-generator.js ***!
|
69326 |
\******************************************************************/
|
@@ -69350,7 +70312,7 @@ module.exports = function() {
|
|
69350 |
|
69351 |
|
69352 |
/***/ }),
|
69353 |
-
/*
|
69354 |
/*!****************************************************************!*\
|
69355 |
!*** ./node_modules/element-resize-detector/src/id-handler.js ***!
|
69356 |
\****************************************************************/
|
@@ -69409,7 +70371,7 @@ module.exports = function(options) {
|
|
69409 |
|
69410 |
|
69411 |
/***/ }),
|
69412 |
-
/*
|
69413 |
/*!**************************************************************!*\
|
69414 |
!*** ./node_modules/element-resize-detector/src/reporter.js ***!
|
69415 |
\**************************************************************/
|
@@ -69463,7 +70425,7 @@ module.exports = function(quiet) {
|
|
69463 |
};
|
69464 |
|
69465 |
/***/ }),
|
69466 |
-
/*
|
69467 |
/*!*************************************************************!*\
|
69468 |
!*** ./node_modules/batch-processor/src/batch-processor.js ***!
|
69469 |
\*************************************************************/
|
@@ -69474,7 +70436,7 @@ module.exports = function(quiet) {
|
|
69474 |
"use strict";
|
69475 |
|
69476 |
|
69477 |
-
var utils = __webpack_require__(/*! ./utils */
|
69478 |
|
69479 |
module.exports = function batchProcessorMaker(options) {
|
69480 |
options = options || {};
|
@@ -69613,7 +70575,7 @@ function Batch() {
|
|
69613 |
|
69614 |
|
69615 |
/***/ }),
|
69616 |
-
/*
|
69617 |
/*!***************************************************!*\
|
69618 |
!*** ./node_modules/batch-processor/src/utils.js ***!
|
69619 |
\***************************************************/
|
@@ -69640,7 +70602,7 @@ function getOption(options, name, defaultValue) {
|
|
69640 |
|
69641 |
|
69642 |
/***/ }),
|
69643 |
-
/*
|
69644 |
/*!*******************************************************************!*\
|
69645 |
!*** ./node_modules/element-resize-detector/src/state-handler.js ***!
|
69646 |
\*******************************************************************/
|
@@ -69674,7 +70636,7 @@ module.exports = {
|
|
69674 |
|
69675 |
|
69676 |
/***/ }),
|
69677 |
-
/*
|
69678 |
/*!*******************************************************************************!*\
|
69679 |
!*** ./node_modules/element-resize-detector/src/detection-strategy/object.js ***!
|
69680 |
\*******************************************************************************/
|
@@ -69690,7 +70652,7 @@ module.exports = {
|
|
69690 |
|
69691 |
|
69692 |
|
69693 |
-
var browserDetector = __webpack_require__(/*! ../browser-detector */
|
69694 |
|
69695 |
module.exports = function(options) {
|
69696 |
options = options || {};
|
@@ -69933,7 +70895,7 @@ module.exports = function(options) {
|
|
69933 |
|
69934 |
|
69935 |
/***/ }),
|
69936 |
-
/*
|
69937 |
/*!*******************************************************************************!*\
|
69938 |
!*** ./node_modules/element-resize-detector/src/detection-strategy/scroll.js ***!
|
69939 |
\*******************************************************************************/
|
@@ -69949,7 +70911,7 @@ module.exports = function(options) {
|
|
69949 |
|
69950 |
|
69951 |
|
69952 |
-
var forEach = __webpack_require__(/*! ../collection-utils */
|
69953 |
|
69954 |
module.exports = function(options) {
|
69955 |
options = options || {};
|
@@ -70606,7 +71568,7 @@ module.exports = function(options) {
|
|
70606 |
|
70607 |
|
70608 |
/***/ }),
|
70609 |
-
/*
|
70610 |
/*!*****************************************!*\
|
70611 |
!*** ./node_modules/lodash/debounce.js ***!
|
70612 |
\*****************************************/
|
@@ -70615,8 +71577,8 @@ module.exports = function(options) {
|
|
70615 |
/***/ (function(module, exports, __webpack_require__) {
|
70616 |
|
70617 |
var isObject = __webpack_require__(/*! ./isObject */ 13),
|
70618 |
-
now = __webpack_require__(/*! ./now */
|
70619 |
-
toNumber = __webpack_require__(/*! ./toNumber */
|
70620 |
|
70621 |
/** Error message constants. */
|
70622 |
var FUNC_ERROR_TEXT = 'Expected a function';
|
@@ -70808,7 +71770,7 @@ module.exports = debounce;
|
|
70808 |
|
70809 |
|
70810 |
/***/ }),
|
70811 |
-
/*
|
70812 |
/*!************************************!*\
|
70813 |
!*** ./node_modules/lodash/now.js ***!
|
70814 |
\************************************/
|
@@ -70842,7 +71804,7 @@ module.exports = now;
|
|
70842 |
|
70843 |
|
70844 |
/***/ }),
|
70845 |
-
/*
|
70846 |
/*!*************************************!*\
|
70847 |
!*** ./node_modules/lodash/omit.js ***!
|
70848 |
\*************************************/
|
@@ -70850,14 +71812,14 @@ module.exports = now;
|
|
70850 |
/*! all exports used */
|
70851 |
/***/ (function(module, exports, __webpack_require__) {
|
70852 |
|
70853 |
-
var arrayMap = __webpack_require__(/*! ./_arrayMap */
|
70854 |
-
baseClone = __webpack_require__(/*! ./_baseClone */
|
70855 |
-
baseUnset = __webpack_require__(/*! ./_baseUnset */
|
70856 |
castPath = __webpack_require__(/*! ./_castPath */ 30),
|
70857 |
copyObject = __webpack_require__(/*! ./_copyObject */ 35),
|
70858 |
-
customOmitClone = __webpack_require__(/*! ./_customOmitClone */
|
70859 |
-
flatRest = __webpack_require__(/*! ./_flatRest */
|
70860 |
-
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */
|
70861 |
|
70862 |
/** Used to compose bitmasks for cloning. */
|
70863 |
var CLONE_DEEP_FLAG = 1,
|
@@ -70910,7 +71872,7 @@ module.exports = omit;
|
|
70910 |
|
70911 |
|
70912 |
/***/ }),
|
70913 |
-
/*
|
70914 |
/*!*******************************************!*\
|
70915 |
!*** ./node_modules/lodash/_baseClone.js ***!
|
70916 |
\*******************************************/
|
@@ -70918,26 +71880,26 @@ module.exports = omit;
|
|
70918 |
/*! all exports used */
|
70919 |
/***/ (function(module, exports, __webpack_require__) {
|
70920 |
|
70921 |
-
var Stack = __webpack_require__(/*! ./_Stack */
|
70922 |
-
arrayEach = __webpack_require__(/*! ./_arrayEach */
|
70923 |
-
assignValue = __webpack_require__(/*! ./_assignValue */
|
70924 |
-
baseAssign = __webpack_require__(/*! ./_baseAssign */
|
70925 |
-
baseAssignIn = __webpack_require__(/*! ./_baseAssignIn */
|
70926 |
-
cloneBuffer = __webpack_require__(/*! ./_cloneBuffer */
|
70927 |
-
copyArray = __webpack_require__(/*! ./_copyArray */
|
70928 |
-
copySymbols = __webpack_require__(/*! ./_copySymbols */
|
70929 |
-
copySymbolsIn = __webpack_require__(/*! ./_copySymbolsIn */
|
70930 |
-
getAllKeys = __webpack_require__(/*! ./_getAllKeys */
|
70931 |
-
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */
|
70932 |
-
getTag = __webpack_require__(/*! ./_getTag */
|
70933 |
-
initCloneArray = __webpack_require__(/*! ./_initCloneArray */
|
70934 |
-
initCloneByTag = __webpack_require__(/*! ./_initCloneByTag */
|
70935 |
-
initCloneObject = __webpack_require__(/*! ./_initCloneObject */
|
70936 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
70937 |
-
isBuffer = __webpack_require__(/*! ./isBuffer */
|
70938 |
-
isMap = __webpack_require__(/*! ./isMap */
|
70939 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
70940 |
-
isSet = __webpack_require__(/*! ./isSet */
|
70941 |
keys = __webpack_require__(/*! ./keys */ 28);
|
70942 |
|
70943 |
/** Used to compose bitmasks for cloning. */
|
@@ -71086,7 +72048,7 @@ module.exports = baseClone;
|
|
71086 |
|
71087 |
|
71088 |
/***/ }),
|
71089 |
-
/*
|
71090 |
/*!*******************************************!*\
|
71091 |
!*** ./node_modules/lodash/_arrayEach.js ***!
|
71092 |
\*******************************************/
|
@@ -71119,7 +72081,7 @@ module.exports = arrayEach;
|
|
71119 |
|
71120 |
|
71121 |
/***/ }),
|
71122 |
-
/*
|
71123 |
/*!********************************************!*\
|
71124 |
!*** ./node_modules/lodash/_baseAssign.js ***!
|
71125 |
\********************************************/
|
@@ -71147,7 +72109,7 @@ module.exports = baseAssign;
|
|
71147 |
|
71148 |
|
71149 |
/***/ }),
|
71150 |
-
/*
|
71151 |
/*!**********************************************!*\
|
71152 |
!*** ./node_modules/lodash/_baseAssignIn.js ***!
|
71153 |
\**********************************************/
|
@@ -71156,7 +72118,7 @@ module.exports = baseAssign;
|
|
71156 |
/***/ (function(module, exports, __webpack_require__) {
|
71157 |
|
71158 |
var copyObject = __webpack_require__(/*! ./_copyObject */ 35),
|
71159 |
-
keysIn = __webpack_require__(/*! ./keysIn */
|
71160 |
|
71161 |
/**
|
71162 |
* The base implementation of `_.assignIn` without support for multiple sources
|
@@ -71175,7 +72137,7 @@ module.exports = baseAssignIn;
|
|
71175 |
|
71176 |
|
71177 |
/***/ }),
|
71178 |
-
/*
|
71179 |
/*!********************************************!*\
|
71180 |
!*** ./node_modules/lodash/_baseKeysIn.js ***!
|
71181 |
\********************************************/
|
@@ -71184,8 +72146,8 @@ module.exports = baseAssignIn;
|
|
71184 |
/***/ (function(module, exports, __webpack_require__) {
|
71185 |
|
71186 |
var isObject = __webpack_require__(/*! ./isObject */ 13),
|
71187 |
-
isPrototype = __webpack_require__(/*! ./_isPrototype */
|
71188 |
-
nativeKeysIn = __webpack_require__(/*! ./_nativeKeysIn */
|
71189 |
|
71190 |
/** Used for built-in method references. */
|
71191 |
var objectProto = Object.prototype;
|
@@ -71219,7 +72181,7 @@ module.exports = baseKeysIn;
|
|
71219 |
|
71220 |
|
71221 |
/***/ }),
|
71222 |
-
/*
|
71223 |
/*!**********************************************!*\
|
71224 |
!*** ./node_modules/lodash/_nativeKeysIn.js ***!
|
71225 |
\**********************************************/
|
@@ -71250,7 +72212,7 @@ module.exports = nativeKeysIn;
|
|
71250 |
|
71251 |
|
71252 |
/***/ }),
|
71253 |
-
/*
|
71254 |
/*!*********************************************!*\
|
71255 |
!*** ./node_modules/lodash/_cloneBuffer.js ***!
|
71256 |
\*********************************************/
|
@@ -71294,10 +72256,10 @@ function cloneBuffer(buffer, isDeep) {
|
|
71294 |
|
71295 |
module.exports = cloneBuffer;
|
71296 |
|
71297 |
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */
|
71298 |
|
71299 |
/***/ }),
|
71300 |
-
/*
|
71301 |
/*!*******************************************!*\
|
71302 |
!*** ./node_modules/lodash/_copyArray.js ***!
|
71303 |
\*******************************************/
|
@@ -71328,7 +72290,7 @@ module.exports = copyArray;
|
|
71328 |
|
71329 |
|
71330 |
/***/ }),
|
71331 |
-
/*
|
71332 |
/*!*********************************************!*\
|
71333 |
!*** ./node_modules/lodash/_copySymbols.js ***!
|
71334 |
\*********************************************/
|
@@ -71337,7 +72299,7 @@ module.exports = copyArray;
|
|
71337 |
/***/ (function(module, exports, __webpack_require__) {
|
71338 |
|
71339 |
var copyObject = __webpack_require__(/*! ./_copyObject */ 35),
|
71340 |
-
getSymbols = __webpack_require__(/*! ./_getSymbols */
|
71341 |
|
71342 |
/**
|
71343 |
* Copies own symbols of `source` to `object`.
|
@@ -71355,7 +72317,7 @@ module.exports = copySymbols;
|
|
71355 |
|
71356 |
|
71357 |
/***/ }),
|
71358 |
-
/*
|
71359 |
/*!***********************************************!*\
|
71360 |
!*** ./node_modules/lodash/_copySymbolsIn.js ***!
|
71361 |
\***********************************************/
|
@@ -71364,7 +72326,7 @@ module.exports = copySymbols;
|
|
71364 |
/***/ (function(module, exports, __webpack_require__) {
|
71365 |
|
71366 |
var copyObject = __webpack_require__(/*! ./_copyObject */ 35),
|
71367 |
-
getSymbolsIn = __webpack_require__(/*! ./_getSymbolsIn */
|
71368 |
|
71369 |
/**
|
71370 |
* Copies own and inherited symbols of `source` to `object`.
|
@@ -71382,7 +72344,7 @@ module.exports = copySymbolsIn;
|
|
71382 |
|
71383 |
|
71384 |
/***/ }),
|
71385 |
-
/*
|
71386 |
/*!************************************************!*\
|
71387 |
!*** ./node_modules/lodash/_initCloneArray.js ***!
|
71388 |
\************************************************/
|
@@ -71419,7 +72381,7 @@ module.exports = initCloneArray;
|
|
71419 |
|
71420 |
|
71421 |
/***/ }),
|
71422 |
-
/*
|
71423 |
/*!************************************************!*\
|
71424 |
!*** ./node_modules/lodash/_initCloneByTag.js ***!
|
71425 |
\************************************************/
|
@@ -71427,11 +72389,11 @@ module.exports = initCloneArray;
|
|
71427 |
/*! all exports used */
|
71428 |
/***/ (function(module, exports, __webpack_require__) {
|
71429 |
|
71430 |
-
var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */
|
71431 |
-
cloneDataView = __webpack_require__(/*! ./_cloneDataView */
|
71432 |
-
cloneRegExp = __webpack_require__(/*! ./_cloneRegExp */
|
71433 |
-
cloneSymbol = __webpack_require__(/*! ./_cloneSymbol */
|
71434 |
-
cloneTypedArray = __webpack_require__(/*! ./_cloneTypedArray */
|
71435 |
|
71436 |
/** `Object#toString` result references. */
|
71437 |
var boolTag = '[object Boolean]',
|
@@ -71507,7 +72469,7 @@ module.exports = initCloneByTag;
|
|
71507 |
|
71508 |
|
71509 |
/***/ }),
|
71510 |
-
/*
|
71511 |
/*!***********************************************!*\
|
71512 |
!*** ./node_modules/lodash/_cloneDataView.js ***!
|
71513 |
\***********************************************/
|
@@ -71515,7 +72477,7 @@ module.exports = initCloneByTag;
|
|
71515 |
/*! all exports used */
|
71516 |
/***/ (function(module, exports, __webpack_require__) {
|
71517 |
|
71518 |
-
var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */
|
71519 |
|
71520 |
/**
|
71521 |
* Creates a clone of `dataView`.
|
@@ -71534,7 +72496,7 @@ module.exports = cloneDataView;
|
|
71534 |
|
71535 |
|
71536 |
/***/ }),
|
71537 |
-
/*
|
71538 |
/*!*********************************************!*\
|
71539 |
!*** ./node_modules/lodash/_cloneRegExp.js ***!
|
71540 |
\*********************************************/
|
@@ -71562,7 +72524,7 @@ module.exports = cloneRegExp;
|
|
71562 |
|
71563 |
|
71564 |
/***/ }),
|
71565 |
-
/*
|
71566 |
/*!*********************************************!*\
|
71567 |
!*** ./node_modules/lodash/_cloneSymbol.js ***!
|
71568 |
\*********************************************/
|
@@ -71591,7 +72553,7 @@ module.exports = cloneSymbol;
|
|
71591 |
|
71592 |
|
71593 |
/***/ }),
|
71594 |
-
/*
|
71595 |
/*!*************************************************!*\
|
71596 |
!*** ./node_modules/lodash/_cloneTypedArray.js ***!
|
71597 |
\*************************************************/
|
@@ -71599,7 +72561,7 @@ module.exports = cloneSymbol;
|
|
71599 |
/*! all exports used */
|
71600 |
/***/ (function(module, exports, __webpack_require__) {
|
71601 |
|
71602 |
-
var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */
|
71603 |
|
71604 |
/**
|
71605 |
* Creates a clone of `typedArray`.
|
@@ -71618,7 +72580,7 @@ module.exports = cloneTypedArray;
|
|
71618 |
|
71619 |
|
71620 |
/***/ }),
|
71621 |
-
/*
|
71622 |
/*!*************************************************!*\
|
71623 |
!*** ./node_modules/lodash/_initCloneObject.js ***!
|
71624 |
\*************************************************/
|
@@ -71626,9 +72588,9 @@ module.exports = cloneTypedArray;
|
|
71626 |
/*! all exports used */
|
71627 |
/***/ (function(module, exports, __webpack_require__) {
|
71628 |
|
71629 |
-
var baseCreate = __webpack_require__(/*! ./_baseCreate */
|
71630 |
-
getPrototype = __webpack_require__(/*! ./_getPrototype */
|
71631 |
-
isPrototype = __webpack_require__(/*! ./_isPrototype */
|
71632 |
|
71633 |
/**
|
71634 |
* Initializes an object clone.
|
@@ -71647,7 +72609,7 @@ module.exports = initCloneObject;
|
|
71647 |
|
71648 |
|
71649 |
/***/ }),
|
71650 |
-
/*
|
71651 |
/*!********************************************!*\
|
71652 |
!*** ./node_modules/lodash/_baseCreate.js ***!
|
71653 |
\********************************************/
|
@@ -71688,7 +72650,7 @@ module.exports = baseCreate;
|
|
71688 |
|
71689 |
|
71690 |
/***/ }),
|
71691 |
-
/*
|
71692 |
/*!**************************************!*\
|
71693 |
!*** ./node_modules/lodash/isMap.js ***!
|
71694 |
\**************************************/
|
@@ -71696,9 +72658,9 @@ module.exports = baseCreate;
|
|
71696 |
/*! all exports used */
|
71697 |
/***/ (function(module, exports, __webpack_require__) {
|
71698 |
|
71699 |
-
var baseIsMap = __webpack_require__(/*! ./_baseIsMap */
|
71700 |
-
baseUnary = __webpack_require__(/*! ./_baseUnary */
|
71701 |
-
nodeUtil = __webpack_require__(/*! ./_nodeUtil */
|
71702 |
|
71703 |
/* Node.js helper references. */
|
71704 |
var nodeIsMap = nodeUtil && nodeUtil.isMap;
|
@@ -71726,7 +72688,7 @@ module.exports = isMap;
|
|
71726 |
|
71727 |
|
71728 |
/***/ }),
|
71729 |
-
/*
|
71730 |
/*!*******************************************!*\
|
71731 |
!*** ./node_modules/lodash/_baseIsMap.js ***!
|
71732 |
\*******************************************/
|
@@ -71734,7 +72696,7 @@ module.exports = isMap;
|
|
71734 |
/*! all exports used */
|
71735 |
/***/ (function(module, exports, __webpack_require__) {
|
71736 |
|
71737 |
-
var getTag = __webpack_require__(/*! ./_getTag */
|
71738 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
71739 |
|
71740 |
/** `Object#toString` result references. */
|
@@ -71755,7 +72717,7 @@ module.exports = baseIsMap;
|
|
71755 |
|
71756 |
|
71757 |
/***/ }),
|
71758 |
-
/*
|
71759 |
/*!**************************************!*\
|
71760 |
!*** ./node_modules/lodash/isSet.js ***!
|
71761 |
\**************************************/
|
@@ -71763,9 +72725,9 @@ module.exports = baseIsMap;
|
|
71763 |
/*! all exports used */
|
71764 |
/***/ (function(module, exports, __webpack_require__) {
|
71765 |
|
71766 |
-
var baseIsSet = __webpack_require__(/*! ./_baseIsSet */
|
71767 |
-
baseUnary = __webpack_require__(/*! ./_baseUnary */
|
71768 |
-
nodeUtil = __webpack_require__(/*! ./_nodeUtil */
|
71769 |
|
71770 |
/* Node.js helper references. */
|
71771 |
var nodeIsSet = nodeUtil && nodeUtil.isSet;
|
@@ -71793,7 +72755,7 @@ module.exports = isSet;
|
|
71793 |
|
71794 |
|
71795 |
/***/ }),
|
71796 |
-
/*
|
71797 |
/*!*******************************************!*\
|
71798 |
!*** ./node_modules/lodash/_baseIsSet.js ***!
|
71799 |
\*******************************************/
|
@@ -71801,7 +72763,7 @@ module.exports = isSet;
|
|
71801 |
/*! all exports used */
|
71802 |
/***/ (function(module, exports, __webpack_require__) {
|
71803 |
|
71804 |
-
var getTag = __webpack_require__(/*! ./_getTag */
|
71805 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
71806 |
|
71807 |
/** `Object#toString` result references. */
|
@@ -71822,7 +72784,7 @@ module.exports = baseIsSet;
|
|
71822 |
|
71823 |
|
71824 |
/***/ }),
|
71825 |
-
/*
|
71826 |
/*!*******************************************!*\
|
71827 |
!*** ./node_modules/lodash/_baseUnset.js ***!
|
71828 |
\*******************************************/
|
@@ -71831,8 +72793,8 @@ module.exports = baseIsSet;
|
|
71831 |
/***/ (function(module, exports, __webpack_require__) {
|
71832 |
|
71833 |
var castPath = __webpack_require__(/*! ./_castPath */ 30),
|
71834 |
-
last = __webpack_require__(/*! ./last */
|
71835 |
-
parent = __webpack_require__(/*! ./_parent */
|
71836 |
toKey = __webpack_require__(/*! ./_toKey */ 31);
|
71837 |
|
71838 |
/**
|
@@ -71853,7 +72815,7 @@ module.exports = baseUnset;
|
|
71853 |
|
71854 |
|
71855 |
/***/ }),
|
71856 |
-
/*
|
71857 |
/*!*************************************!*\
|
71858 |
!*** ./node_modules/lodash/last.js ***!
|
71859 |
\*************************************/
|
@@ -71884,7 +72846,7 @@ module.exports = last;
|
|
71884 |
|
71885 |
|
71886 |
/***/ }),
|
71887 |
-
/*
|
71888 |
/*!****************************************!*\
|
71889 |
!*** ./node_modules/lodash/_parent.js ***!
|
71890 |
\****************************************/
|
@@ -71892,8 +72854,8 @@ module.exports = last;
|
|
71892 |
/*! all exports used */
|
71893 |
/***/ (function(module, exports, __webpack_require__) {
|
71894 |
|
71895 |
-
var baseGet = __webpack_require__(/*! ./_baseGet */
|
71896 |
-
baseSlice = __webpack_require__(/*! ./_baseSlice */
|
71897 |
|
71898 |
/**
|
71899 |
* Gets the parent value at `path` of `object`.
|
@@ -71911,7 +72873,7 @@ module.exports = parent;
|
|
71911 |
|
71912 |
|
71913 |
/***/ }),
|
71914 |
-
/*
|
71915 |
/*!*************************************************!*\
|
71916 |
!*** ./node_modules/lodash/_customOmitClone.js ***!
|
71917 |
\*************************************************/
|
@@ -71919,7 +72881,7 @@ module.exports = parent;
|
|
71919 |
/*! all exports used */
|
71920 |
/***/ (function(module, exports, __webpack_require__) {
|
71921 |
|
71922 |
-
var isPlainObject = __webpack_require__(/*! ./isPlainObject */
|
71923 |
|
71924 |
/**
|
71925 |
* Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain
|
@@ -71938,7 +72900,7 @@ module.exports = customOmitClone;
|
|
71938 |
|
71939 |
|
71940 |
/***/ }),
|
71941 |
-
/*
|
71942 |
/*!**********************************************!*\
|
71943 |
!*** ./node_modules/lodash/isPlainObject.js ***!
|
71944 |
\**********************************************/
|
@@ -71947,7 +72909,7 @@ module.exports = customOmitClone;
|
|
71947 |
/***/ (function(module, exports, __webpack_require__) {
|
71948 |
|
71949 |
var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 22),
|
71950 |
-
getPrototype = __webpack_require__(/*! ./_getPrototype */
|
71951 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
71952 |
|
71953 |
/** `Object#toString` result references. */
|
@@ -72011,7 +72973,7 @@ module.exports = isPlainObject;
|
|
72011 |
|
72012 |
|
72013 |
/***/ }),
|
72014 |
-
/*
|
72015 |
/*!******************************************!*\
|
72016 |
!*** ./node_modules/lodash/_flatRest.js ***!
|
72017 |
\******************************************/
|
@@ -72019,9 +72981,9 @@ module.exports = isPlainObject;
|
|
72019 |
/*! all exports used */
|
72020 |
/***/ (function(module, exports, __webpack_require__) {
|
72021 |
|
72022 |
-
var flatten = __webpack_require__(/*! ./flatten */
|
72023 |
-
overRest = __webpack_require__(/*! ./_overRest */
|
72024 |
-
setToString = __webpack_require__(/*! ./_setToString */
|
72025 |
|
72026 |
/**
|
72027 |
* A specialized version of `baseRest` which flattens the rest array.
|
@@ -72038,7 +73000,7 @@ module.exports = flatRest;
|
|
72038 |
|
72039 |
|
72040 |
/***/ }),
|
72041 |
-
/*
|
72042 |
/*!****************************************!*\
|
72043 |
!*** ./node_modules/lodash/flatten.js ***!
|
72044 |
\****************************************/
|
@@ -72046,7 +73008,7 @@ module.exports = flatRest;
|
|
72046 |
/*! all exports used */
|
72047 |
/***/ (function(module, exports, __webpack_require__) {
|
72048 |
|
72049 |
-
var baseFlatten = __webpack_require__(/*! ./_baseFlatten */
|
72050 |
|
72051 |
/**
|
72052 |
* Flattens `array` a single level deep.
|
@@ -72071,7 +73033,7 @@ module.exports = flatten;
|
|
72071 |
|
72072 |
|
72073 |
/***/ }),
|
72074 |
-
/*
|
72075 |
/*!*********************************************!*\
|
72076 |
!*** ./node_modules/lodash/_baseFlatten.js ***!
|
72077 |
\*********************************************/
|
@@ -72079,8 +73041,8 @@ module.exports = flatten;
|
|
72079 |
/*! all exports used */
|
72080 |
/***/ (function(module, exports, __webpack_require__) {
|
72081 |
|
72082 |
-
var arrayPush = __webpack_require__(/*! ./_arrayPush */
|
72083 |
-
isFlattenable = __webpack_require__(/*! ./_isFlattenable */
|
72084 |
|
72085 |
/**
|
72086 |
* The base implementation of `_.flatten` with support for restricting flattening.
|
@@ -72120,7 +73082,7 @@ module.exports = baseFlatten;
|
|
72120 |
|
72121 |
|
72122 |
/***/ }),
|
72123 |
-
/*
|
72124 |
/*!***********************************************!*\
|
72125 |
!*** ./node_modules/lodash/_isFlattenable.js ***!
|
72126 |
\***********************************************/
|
@@ -72129,7 +73091,7 @@ module.exports = baseFlatten;
|
|
72129 |
/***/ (function(module, exports, __webpack_require__) {
|
72130 |
|
72131 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 27),
|
72132 |
-
isArguments = __webpack_require__(/*! ./isArguments */
|
72133 |
isArray = __webpack_require__(/*! ./isArray */ 14);
|
72134 |
|
72135 |
/** Built-in value references. */
|
@@ -72151,7 +73113,7 @@ module.exports = isFlattenable;
|
|
72151 |
|
72152 |
|
72153 |
/***/ }),
|
72154 |
-
/*
|
72155 |
/*!**************************************************!*\
|
72156 |
!*** ./node_modules/create-react-class/index.js ***!
|
72157 |
\**************************************************/
|
@@ -72171,7 +73133,7 @@ module.exports = isFlattenable;
|
|
72171 |
|
72172 |
|
72173 |
var React = __webpack_require__(/*! react */ 5);
|
72174 |
-
var factory = __webpack_require__(/*! ./factory */
|
72175 |
|
72176 |
if (typeof React === 'undefined') {
|
72177 |
throw Error(
|
@@ -72191,7 +73153,7 @@ module.exports = factory(
|
|
72191 |
|
72192 |
|
72193 |
/***/ }),
|
72194 |
-
/*
|
72195 |
/*!****************************************************!*\
|
72196 |
!*** ./node_modules/create-react-class/factory.js ***!
|
72197 |
\****************************************************/
|
@@ -73206,7 +74168,7 @@ module.exports = factory;
|
|
73206 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
73207 |
|
73208 |
/***/ }),
|
73209 |
-
/*
|
73210 |
/*!************************************************!*\
|
73211 |
!*** ./src/blocks/post/post-carousel/block.js ***!
|
73212 |
\************************************************/
|
@@ -73214,11 +74176,11 @@ module.exports = factory;
|
|
73214 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
73215 |
|
73216 |
"use strict";
|
73217 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */
|
73218 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
73219 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */
|
73220 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
73221 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */
|
73222 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
73223 |
/**
|
73224 |
* BLOCK: UAGb - post-carousel
|
@@ -73256,7 +74218,7 @@ registerBlockType("uagb/post-carousel", {
|
|
73256 |
});
|
73257 |
|
73258 |
/***/ }),
|
73259 |
-
/*
|
73260 |
/*!***********************************************!*\
|
73261 |
!*** ./src/blocks/post/post-carousel/edit.js ***!
|
73262 |
\***********************************************/
|
@@ -73265,15 +74227,15 @@ registerBlockType("uagb/post-carousel", {
|
|
73265 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
73266 |
|
73267 |
"use strict";
|
73268 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_get__ = __webpack_require__(/*! lodash/get */
|
73269 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_get___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_get__);
|
73270 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_map__ = __webpack_require__(/*! lodash/map */
|
73271 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_map__);
|
73272 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
73273 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
73274 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
73275 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blog__ = __webpack_require__(/*! ./blog */
|
73276 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__styling__ = __webpack_require__(/*! .././styling */
|
73277 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__function__ = __webpack_require__(/*! .././function */ 34);
|
73278 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
73279 |
|
@@ -74798,7 +75760,7 @@ var UAGBPostCarousel = function (_Component) {
|
|
74798 |
}))(UAGBPostCarousel));
|
74799 |
|
74800 |
/***/ }),
|
74801 |
-
/*
|
74802 |
/*!***********************************************!*\
|
74803 |
!*** ./src/blocks/post/post-carousel/blog.js ***!
|
74804 |
\***********************************************/
|
@@ -74809,7 +75771,7 @@ var UAGBPostCarousel = function (_Component) {
|
|
74809 |
"use strict";
|
74810 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
74811 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
74812 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick__ = __webpack_require__(/*! react-slick */
|
74813 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_slick__);
|
74814 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
74815 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__function__ = __webpack_require__(/*! .././function */ 34);
|
@@ -74993,7 +75955,7 @@ var Blog = function (_React$Component) {
|
|
74993 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
74994 |
|
74995 |
/***/ }),
|
74996 |
-
/*
|
74997 |
/*!************************************************!*\
|
74998 |
!*** ./node_modules/react-slick/lib/slider.js ***!
|
74999 |
\************************************************/
|
@@ -75011,11 +75973,11 @@ exports["default"] = void 0;
|
|
75011 |
|
75012 |
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 5));
|
75013 |
|
75014 |
-
var _innerSlider = __webpack_require__(/*! ./inner-slider */
|
75015 |
|
75016 |
-
var _json2mq = _interopRequireDefault(__webpack_require__(/*! json2mq */
|
75017 |
|
75018 |
-
var _defaultProps = _interopRequireDefault(__webpack_require__(/*! ./default-props */
|
75019 |
|
75020 |
var _innerSliderUtils = __webpack_require__(/*! ./utils/innerSliderUtils */ 42);
|
75021 |
|
@@ -75047,7 +76009,7 @@ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || func
|
|
75047 |
|
75048 |
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
75049 |
|
75050 |
-
var enquire = (0, _innerSliderUtils.canUseDOM)() && __webpack_require__(/*! enquire.js */
|
75051 |
|
75052 |
var Slider =
|
75053 |
/*#__PURE__*/
|
@@ -75290,7 +76252,7 @@ exports["default"] = Slider;
|
|
75290 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
75291 |
|
75292 |
/***/ }),
|
75293 |
-
/*
|
75294 |
/*!******************************************************!*\
|
75295 |
!*** ./node_modules/react-slick/lib/inner-slider.js ***!
|
75296 |
\******************************************************/
|
@@ -75308,21 +76270,21 @@ exports.InnerSlider = void 0;
|
|
75308 |
|
75309 |
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 5));
|
75310 |
|
75311 |
-
var _initialState = _interopRequireDefault(__webpack_require__(/*! ./initial-state */
|
75312 |
|
75313 |
-
var _lodash = _interopRequireDefault(__webpack_require__(/*! lodash.debounce */
|
75314 |
|
75315 |
var _classnames = _interopRequireDefault(__webpack_require__(/*! classnames */ 0));
|
75316 |
|
75317 |
var _innerSliderUtils = __webpack_require__(/*! ./utils/innerSliderUtils */ 42);
|
75318 |
|
75319 |
-
var _track = __webpack_require__(/*! ./track */
|
75320 |
|
75321 |
-
var _dots = __webpack_require__(/*! ./dots */
|
75322 |
|
75323 |
-
var _arrows = __webpack_require__(/*! ./arrows */
|
75324 |
|
75325 |
-
var _resizeObserverPolyfill = _interopRequireDefault(__webpack_require__(/*! resize-observer-polyfill */
|
75326 |
|
75327 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
75328 |
|
@@ -76172,7 +77134,7 @@ function (_React$Component) {
|
|
76172 |
exports.InnerSlider = InnerSlider;
|
76173 |
|
76174 |
/***/ }),
|
76175 |
-
/*
|
76176 |
/*!*******************************************************!*\
|
76177 |
!*** ./node_modules/react-slick/lib/initial-state.js ***!
|
76178 |
\*******************************************************/
|
@@ -76222,7 +77184,7 @@ var _default = initialState;
|
|
76222 |
exports["default"] = _default;
|
76223 |
|
76224 |
/***/ }),
|
76225 |
-
/*
|
76226 |
/*!***********************************************!*\
|
76227 |
!*** ./node_modules/lodash.debounce/index.js ***!
|
76228 |
\***********************************************/
|
@@ -76608,10 +77570,10 @@ function toNumber(value) {
|
|
76608 |
|
76609 |
module.exports = debounce;
|
76610 |
|
76611 |
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */
|
76612 |
|
76613 |
/***/ }),
|
76614 |
-
/*
|
76615 |
/*!***********************************************!*\
|
76616 |
!*** ./node_modules/react-slick/lib/track.js ***!
|
76617 |
\***********************************************/
|
@@ -76908,7 +77870,7 @@ function (_React$PureComponent) {
|
|
76908 |
exports.Track = Track;
|
76909 |
|
76910 |
/***/ }),
|
76911 |
-
/*
|
76912 |
/*!**********************************************!*\
|
76913 |
!*** ./node_modules/react-slick/lib/dots.js ***!
|
76914 |
\**********************************************/
|
@@ -77050,7 +78012,7 @@ function (_React$PureComponent) {
|
|
77050 |
exports.Dots = Dots;
|
77051 |
|
77052 |
/***/ }),
|
77053 |
-
/*
|
77054 |
/*!************************************************!*\
|
77055 |
!*** ./node_modules/react-slick/lib/arrows.js ***!
|
77056 |
\************************************************/
|
@@ -77239,7 +78201,7 @@ function (_React$PureComponent2) {
|
|
77239 |
exports.NextArrow = NextArrow;
|
77240 |
|
77241 |
/***/ }),
|
77242 |
-
/*
|
77243 |
/*!*************************************************************************!*\
|
77244 |
!*** ./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js ***!
|
77245 |
\*************************************************************************/
|
@@ -78178,10 +79140,10 @@ var index = (function () {
|
|
78178 |
|
78179 |
/* harmony default export */ __webpack_exports__["default"] = (index);
|
78180 |
|
78181 |
-
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../webpack/buildin/global.js */
|
78182 |
|
78183 |
/***/ }),
|
78184 |
-
/*
|
78185 |
/*!***************************************!*\
|
78186 |
!*** ./node_modules/json2mq/index.js ***!
|
78187 |
\***************************************/
|
@@ -78189,7 +79151,7 @@ var index = (function () {
|
|
78189 |
/*! all exports used */
|
78190 |
/***/ (function(module, exports, __webpack_require__) {
|
78191 |
|
78192 |
-
var camel2hyphen = __webpack_require__(/*! string-convert/camel2hyphen */
|
78193 |
|
78194 |
var isDimension = function (feature) {
|
78195 |
var re = /[height|width]$/;
|
@@ -78242,7 +79204,7 @@ var json2mq = function (query) {
|
|
78242 |
module.exports = json2mq;
|
78243 |
|
78244 |
/***/ }),
|
78245 |
-
/*
|
78246 |
/*!*****************************************************!*\
|
78247 |
!*** ./node_modules/string-convert/camel2hyphen.js ***!
|
78248 |
\*****************************************************/
|
@@ -78261,7 +79223,7 @@ var camel2hyphen = function (str) {
|
|
78261 |
module.exports = camel2hyphen;
|
78262 |
|
78263 |
/***/ }),
|
78264 |
-
/*
|
78265 |
/*!*******************************************************!*\
|
78266 |
!*** ./node_modules/react-slick/lib/default-props.js ***!
|
78267 |
\*******************************************************/
|
@@ -78345,7 +79307,7 @@ var _default = defaultProps;
|
|
78345 |
exports["default"] = _default;
|
78346 |
|
78347 |
/***/ }),
|
78348 |
-
/*
|
78349 |
/*!**********************************************!*\
|
78350 |
!*** ./node_modules/enquire.js/src/index.js ***!
|
78351 |
\**********************************************/
|
@@ -78353,12 +79315,12 @@ exports["default"] = _default;
|
|
78353 |
/*! all exports used */
|
78354 |
/***/ (function(module, exports, __webpack_require__) {
|
78355 |
|
78356 |
-
var MediaQueryDispatch = __webpack_require__(/*! ./MediaQueryDispatch */
|
78357 |
module.exports = new MediaQueryDispatch();
|
78358 |
|
78359 |
|
78360 |
/***/ }),
|
78361 |
-
/*
|
78362 |
/*!***********************************************************!*\
|
78363 |
!*** ./node_modules/enquire.js/src/MediaQueryDispatch.js ***!
|
78364 |
\***********************************************************/
|
@@ -78366,8 +79328,8 @@ module.exports = new MediaQueryDispatch();
|
|
78366 |
/*! all exports used */
|
78367 |
/***/ (function(module, exports, __webpack_require__) {
|
78368 |
|
78369 |
-
var MediaQuery = __webpack_require__(/*! ./MediaQuery */
|
78370 |
-
var Util = __webpack_require__(/*! ./Util */
|
78371 |
var each = Util.each;
|
78372 |
var isFunction = Util.isFunction;
|
78373 |
var isArray = Util.isArray;
|
@@ -78454,7 +79416,7 @@ module.exports = MediaQueryDispatch;
|
|
78454 |
|
78455 |
|
78456 |
/***/ }),
|
78457 |
-
/*
|
78458 |
/*!***************************************************!*\
|
78459 |
!*** ./node_modules/enquire.js/src/MediaQuery.js ***!
|
78460 |
\***************************************************/
|
@@ -78462,8 +79424,8 @@ module.exports = MediaQueryDispatch;
|
|
78462 |
/*! all exports used */
|
78463 |
/***/ (function(module, exports, __webpack_require__) {
|
78464 |
|
78465 |
-
var QueryHandler = __webpack_require__(/*! ./QueryHandler */
|
78466 |
-
var each = __webpack_require__(/*! ./Util */
|
78467 |
|
78468 |
/**
|
78469 |
* Represents a single media query, manages it's state and registered handlers for this query
|
@@ -78558,7 +79520,7 @@ module.exports = MediaQuery;
|
|
78558 |
|
78559 |
|
78560 |
/***/ }),
|
78561 |
-
/*
|
78562 |
/*!*****************************************************!*\
|
78563 |
!*** ./node_modules/enquire.js/src/QueryHandler.js ***!
|
78564 |
\*****************************************************/
|
@@ -78643,7 +79605,7 @@ module.exports = QueryHandler;
|
|
78643 |
|
78644 |
|
78645 |
/***/ }),
|
78646 |
-
/*
|
78647 |
/*!*********************************************!*\
|
78648 |
!*** ./src/blocks/post/post-title/block.js ***!
|
78649 |
\*********************************************/
|
@@ -78651,12 +79613,12 @@ module.exports = QueryHandler;
|
|
78651 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
78652 |
|
78653 |
"use strict";
|
78654 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */
|
78655 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! ./style.scss */
|
78656 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
78657 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
78658 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
78659 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
78660 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
78661 |
/**
|
78662 |
* BLOCK: Post Title
|
@@ -78691,7 +79653,7 @@ registerBlockType("uagb/post-title", {
|
|
78691 |
});
|
78692 |
|
78693 |
/***/ }),
|
78694 |
-
/*
|
78695 |
/*!***********************************************!*\
|
78696 |
!*** ./src/blocks/post/post-title/style.scss ***!
|
78697 |
\***********************************************/
|
@@ -78701,7 +79663,7 @@ registerBlockType("uagb/post-title", {
|
|
78701 |
// removed by extract-text-webpack-plugin
|
78702 |
|
78703 |
/***/ }),
|
78704 |
-
/*
|
78705 |
/*!************************************************!*\
|
78706 |
!*** ./src/blocks/post/post-title/editor.scss ***!
|
78707 |
\************************************************/
|
@@ -78711,7 +79673,7 @@ registerBlockType("uagb/post-title", {
|
|
78711 |
// removed by extract-text-webpack-plugin
|
78712 |
|
78713 |
/***/ }),
|
78714 |
-
/*
|
78715 |
/*!********************************************!*\
|
78716 |
!*** ./src/blocks/post/post-title/save.js ***!
|
78717 |
\********************************************/
|
@@ -78737,7 +79699,7 @@ function save() {
|
|
78737 |
}
|
78738 |
|
78739 |
/***/ }),
|
78740 |
-
/*
|
78741 |
/*!*********************************************!*\
|
78742 |
!*** ./src/blocks/post/post-image/block.js ***!
|
78743 |
\*********************************************/
|
@@ -78745,10 +79707,10 @@ function save() {
|
|
78745 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
78746 |
|
78747 |
"use strict";
|
78748 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */
|
78749 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__save__ = __webpack_require__(/*! ./save */
|
78750 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
78751 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
78752 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
78753 |
/**
|
78754 |
* BLOCK: Post Image
|
@@ -78781,7 +79743,7 @@ registerBlockType("uagb/post-image", {
|
|
78781 |
});
|
78782 |
|
78783 |
/***/ }),
|
78784 |
-
/*
|
78785 |
/*!********************************************!*\
|
78786 |
!*** ./src/blocks/post/post-image/save.js ***!
|
78787 |
\********************************************/
|
@@ -78802,7 +79764,7 @@ function save() {
|
|
78802 |
}
|
78803 |
|
78804 |
/***/ }),
|
78805 |
-
/*
|
78806 |
/*!************************************************!*\
|
78807 |
!*** ./src/blocks/post/post-image/editor.scss ***!
|
78808 |
\************************************************/
|
@@ -78812,7 +79774,7 @@ function save() {
|
|
78812 |
// removed by extract-text-webpack-plugin
|
78813 |
|
78814 |
/***/ }),
|
78815 |
-
/*
|
78816 |
/*!**********************************************!*\
|
78817 |
!*** ./src/blocks/post/post-button/block.js ***!
|
78818 |
\**********************************************/
|
@@ -78820,10 +79782,10 @@ function save() {
|
|
78820 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
78821 |
|
78822 |
"use strict";
|
78823 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */
|
78824 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__save__ = __webpack_require__(/*! ./save */
|
78825 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
78826 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
78827 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
78828 |
/**
|
78829 |
* BLOCK: Post Button
|
@@ -78856,7 +79818,7 @@ registerBlockType("uagb/post-button", {
|
|
78856 |
});
|
78857 |
|
78858 |
/***/ }),
|
78859 |
-
/*
|
78860 |
/*!*********************************************!*\
|
78861 |
!*** ./src/blocks/post/post-button/save.js ***!
|
78862 |
\*********************************************/
|
@@ -78879,7 +79841,7 @@ function save() {
|
|
78879 |
}
|
78880 |
|
78881 |
/***/ }),
|
78882 |
-
/*
|
78883 |
/*!*************************************************!*\
|
78884 |
!*** ./src/blocks/post/post-button/editor.scss ***!
|
78885 |
\*************************************************/
|
@@ -78889,7 +79851,7 @@ function save() {
|
|
78889 |
// removed by extract-text-webpack-plugin
|
78890 |
|
78891 |
/***/ }),
|
78892 |
-
/*
|
78893 |
/*!***********************************************!*\
|
78894 |
!*** ./src/blocks/post/post-excerpt/block.js ***!
|
78895 |
\***********************************************/
|
@@ -78897,10 +79859,10 @@ function save() {
|
|
78897 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
78898 |
|
78899 |
"use strict";
|
78900 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */
|
78901 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__save__ = __webpack_require__(/*! ./save */
|
78902 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
78903 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */
|
78904 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
78905 |
/**
|
78906 |
* BLOCK: Post Excerpt
|
@@ -78934,7 +79896,7 @@ registerBlockType("uagb/post-excerpt", {
|
|
78934 |
});
|
78935 |
|
78936 |
/***/ }),
|
78937 |
-
/*
|
78938 |
/*!**********************************************!*\
|
78939 |
!*** ./src/blocks/post/post-excerpt/save.js ***!
|
78940 |
\**********************************************/
|
@@ -78955,7 +79917,7 @@ function save() {
|
|
78955 |
}
|
78956 |
|
78957 |
/***/ }),
|
78958 |
-
/*
|
78959 |
/*!*************************************************!*\
|
78960 |
!*** ./src/blocks/post/post-excerpt/style.scss ***!
|
78961 |
\*************************************************/
|
@@ -78965,7 +79927,7 @@ function save() {
|
|
78965 |
// removed by extract-text-webpack-plugin
|
78966 |
|
78967 |
/***/ }),
|
78968 |
-
/*
|
78969 |
/*!********************************************!*\
|
78970 |
!*** ./src/blocks/post/post-meta/block.js ***!
|
78971 |
\********************************************/
|
@@ -78973,12 +79935,12 @@ function save() {
|
|
78973 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
78974 |
|
78975 |
"use strict";
|
78976 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */
|
78977 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__save__ = __webpack_require__(/*! ./save */
|
78978 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
78979 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */
|
78980 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
78981 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
78982 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__editor_scss__);
|
78983 |
/**
|
78984 |
* BLOCK: Post Meta
|
@@ -79012,7 +79974,7 @@ registerBlockType("uagb/post-meta", {
|
|
79012 |
});
|
79013 |
|
79014 |
/***/ }),
|
79015 |
-
/*
|
79016 |
/*!*******************************************!*\
|
79017 |
!*** ./src/blocks/post/post-meta/save.js ***!
|
79018 |
\*******************************************/
|
@@ -79056,7 +80018,7 @@ function save() {
|
|
79056 |
}
|
79057 |
|
79058 |
/***/ }),
|
79059 |
-
/*
|
79060 |
/*!**********************************************!*\
|
79061 |
!*** ./src/blocks/post/post-meta/style.scss ***!
|
79062 |
\**********************************************/
|
@@ -79066,7 +80028,7 @@ function save() {
|
|
79066 |
// removed by extract-text-webpack-plugin
|
79067 |
|
79068 |
/***/ }),
|
79069 |
-
/*
|
79070 |
/*!***********************************************!*\
|
79071 |
!*** ./src/blocks/post/post-meta/editor.scss ***!
|
79072 |
\***********************************************/
|
@@ -79076,7 +80038,7 @@ function save() {
|
|
79076 |
// removed by extract-text-webpack-plugin
|
79077 |
|
79078 |
/***/ }),
|
79079 |
-
/*
|
79080 |
/*!*************************************!*\
|
79081 |
!*** ./src/blocks/section/block.js ***!
|
79082 |
\*************************************/
|
@@ -79087,15 +80049,15 @@ function save() {
|
|
79087 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
79088 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
79089 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
79090 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */
|
79091 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
79092 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
79093 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
79094 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
79095 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__edit__ = __webpack_require__(/*! ./edit */
|
79096 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__save__ = __webpack_require__(/*! ./save */
|
79097 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__deprecated__ = __webpack_require__(/*! ./deprecated */
|
79098 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
79099 |
/**
|
79100 |
* BLOCK: Section
|
79101 |
*/
|
@@ -79142,7 +80104,7 @@ registerBlockType("uagb/section", {
|
|
79142 |
});
|
79143 |
|
79144 |
/***/ }),
|
79145 |
-
/*
|
79146 |
/*!***************************************!*\
|
79147 |
!*** ./src/blocks/section/style.scss ***!
|
79148 |
\***************************************/
|
@@ -79152,7 +80114,7 @@ registerBlockType("uagb/section", {
|
|
79152 |
// removed by extract-text-webpack-plugin
|
79153 |
|
79154 |
/***/ }),
|
79155 |
-
/*
|
79156 |
/*!****************************************!*\
|
79157 |
!*** ./src/blocks/section/editor.scss ***!
|
79158 |
\****************************************/
|
@@ -79162,7 +80124,7 @@ registerBlockType("uagb/section", {
|
|
79162 |
// removed by extract-text-webpack-plugin
|
79163 |
|
79164 |
/***/ }),
|
79165 |
-
/*
|
79166 |
/*!************************************!*\
|
79167 |
!*** ./src/blocks/section/edit.js ***!
|
79168 |
\************************************/
|
@@ -79173,10 +80135,10 @@ registerBlockType("uagb/section", {
|
|
79173 |
"use strict";
|
79174 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
79175 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
79176 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
79177 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
79178 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */
|
79179 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */
|
79180 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
79181 |
|
79182 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
@@ -80383,7 +81345,7 @@ var UAGBSectionEdit = function (_Component) {
|
|
80383 |
/* harmony default export */ __webpack_exports__["a"] = (withNotices(UAGBSectionEdit));
|
80384 |
|
80385 |
/***/ }),
|
80386 |
-
/*
|
80387 |
/*!***************************************!*\
|
80388 |
!*** ./src/blocks/section/styling.js ***!
|
80389 |
\***************************************/
|
@@ -80392,7 +81354,7 @@ var UAGBSectionEdit = function (_Component) {
|
|
80392 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
80393 |
|
80394 |
"use strict";
|
80395 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
80396 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 4);
|
80397 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 3);
|
80398 |
/**
|
@@ -80597,7 +81559,7 @@ function styling(props) {
|
|
80597 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
80598 |
|
80599 |
/***/ }),
|
80600 |
-
/*
|
80601 |
/*!************************************!*\
|
80602 |
!*** ./src/blocks/section/save.js ***!
|
80603 |
\************************************/
|
@@ -80667,7 +81629,7 @@ function save(props) {
|
|
80667 |
}
|
80668 |
|
80669 |
/***/ }),
|
80670 |
-
/*
|
80671 |
/*!******************************************!*\
|
80672 |
!*** ./src/blocks/section/deprecated.js ***!
|
80673 |
\******************************************/
|
@@ -80678,7 +81640,7 @@ function save(props) {
|
|
80678 |
"use strict";
|
80679 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
80680 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
80681 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
80682 |
/**
|
80683 |
* BLOCK: Price List - Deprecated Block
|
80684 |
*/
|
@@ -80787,7 +81749,7 @@ var deprecated = [{
|
|
80787 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
80788 |
|
80789 |
/***/ }),
|
80790 |
-
/*
|
80791 |
/*!*************************************!*\
|
80792 |
!*** ./src/blocks/buttons/block.js ***!
|
80793 |
\*************************************/
|
@@ -80796,13 +81758,13 @@ var deprecated = [{
|
|
80796 |
|
80797 |
"use strict";
|
80798 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
80799 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
80800 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
80801 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */
|
80802 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */
|
80803 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
80804 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
80805 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
80806 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
80807 |
/**
|
80808 |
* BLOCK: Multi Buttons
|
@@ -80856,7 +81818,7 @@ registerBlockType("uagb/buttons", {
|
|
80856 |
});
|
80857 |
|
80858 |
/***/ }),
|
80859 |
-
/*
|
80860 |
/*!************************************!*\
|
80861 |
!*** ./src/blocks/buttons/edit.js ***!
|
80862 |
\************************************/
|
@@ -80869,7 +81831,7 @@ registerBlockType("uagb/buttons", {
|
|
80869 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
80870 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
80871 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
80872 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */
|
80873 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 19);
|
80874 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
80875 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
@@ -81092,7 +82054,7 @@ var UAGBMultiButtonEdit = function (_Component) {
|
|
81092 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBMultiButtonEdit);
|
81093 |
|
81094 |
/***/ }),
|
81095 |
-
/*
|
81096 |
/*!**********************************************!*\
|
81097 |
!*** ./node_modules/lodash/_castFunction.js ***!
|
81098 |
\**********************************************/
|
@@ -81100,7 +82062,7 @@ var UAGBMultiButtonEdit = function (_Component) {
|
|
81100 |
/*! all exports used */
|
81101 |
/***/ (function(module, exports, __webpack_require__) {
|
81102 |
|
81103 |
-
var identity = __webpack_require__(/*! ./identity */
|
81104 |
|
81105 |
/**
|
81106 |
* Casts `value` to `identity` if it's not a function.
|
@@ -81117,7 +82079,7 @@ module.exports = castFunction;
|
|
81117 |
|
81118 |
|
81119 |
/***/ }),
|
81120 |
-
/*
|
81121 |
/*!***************************************!*\
|
81122 |
!*** ./src/blocks/buttons/styling.js ***!
|
81123 |
\***************************************/
|
@@ -81241,7 +82203,7 @@ function styling(props) {
|
|
81241 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
81242 |
|
81243 |
/***/ }),
|
81244 |
-
/*
|
81245 |
/*!******************************************!*\
|
81246 |
!*** ./src/blocks/buttons/deprecated.js ***!
|
81247 |
\******************************************/
|
@@ -81254,7 +82216,7 @@ function styling(props) {
|
|
81254 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
81255 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
81256 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
81257 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
81258 |
/**
|
81259 |
* BLOCK: Buttons - Deprecated Block
|
81260 |
*/
|
@@ -81419,7 +82381,7 @@ var deprecated = [{
|
|
81419 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
81420 |
|
81421 |
/***/ }),
|
81422 |
-
/*
|
81423 |
/*!************************************!*\
|
81424 |
!*** ./src/blocks/buttons/save.js ***!
|
81425 |
\************************************/
|
@@ -81465,7 +82427,7 @@ function save(props) {
|
|
81465 |
}
|
81466 |
|
81467 |
/***/ }),
|
81468 |
-
/*
|
81469 |
/*!***************************************!*\
|
81470 |
!*** ./src/blocks/buttons/style.scss ***!
|
81471 |
\***************************************/
|
@@ -81475,7 +82437,7 @@ function save(props) {
|
|
81475 |
// removed by extract-text-webpack-plugin
|
81476 |
|
81477 |
/***/ }),
|
81478 |
-
/*
|
81479 |
/*!****************************************!*\
|
81480 |
!*** ./src/blocks/buttons/editor.scss ***!
|
81481 |
\****************************************/
|
@@ -81485,7 +82447,7 @@ function save(props) {
|
|
81485 |
// removed by extract-text-webpack-plugin
|
81486 |
|
81487 |
/***/ }),
|
81488 |
-
/*
|
81489 |
/*!*******************************************!*\
|
81490 |
!*** ./src/blocks/buttons-child/block.js ***!
|
81491 |
\*******************************************/
|
@@ -81494,11 +82456,11 @@ function save(props) {
|
|
81494 |
|
81495 |
"use strict";
|
81496 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
81497 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
81498 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */
|
81499 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */
|
81500 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */
|
81501 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
81502 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
81503 |
/**
|
81504 |
* BLOCK: Buttons - Child
|
@@ -81527,7 +82489,7 @@ registerBlockType("uagb/buttons-child", {
|
|
81527 |
});
|
81528 |
|
81529 |
/***/ }),
|
81530 |
-
/*
|
81531 |
/*!************************************************!*\
|
81532 |
!*** ./src/blocks/buttons-child/deprecated.js ***!
|
81533 |
\************************************************/
|
@@ -81538,7 +82500,7 @@ registerBlockType("uagb/buttons-child", {
|
|
81538 |
"use strict";
|
81539 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
81540 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
81541 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
81542 |
/**
|
81543 |
* BLOCK: Button Child - Deprecated Block
|
81544 |
*/
|
@@ -81590,7 +82552,7 @@ var deprecated = [{
|
|
81590 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
81591 |
|
81592 |
/***/ }),
|
81593 |
-
/*
|
81594 |
/*!******************************************!*\
|
81595 |
!*** ./src/blocks/buttons-child/edit.js ***!
|
81596 |
\******************************************/
|
@@ -81601,7 +82563,7 @@ var deprecated = [{
|
|
81601 |
"use strict";
|
81602 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
81603 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
81604 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
81605 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
81606 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
81607 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__);
|
@@ -82459,7 +83421,7 @@ var UAGBButtonsChild = function (_Component) {
|
|
82459 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBButtonsChild);
|
82460 |
|
82461 |
/***/ }),
|
82462 |
-
/*
|
82463 |
/*!*********************************************!*\
|
82464 |
!*** ./src/blocks/buttons-child/styling.js ***!
|
82465 |
\*********************************************/
|
@@ -82592,90 +83554,87 @@ function styling(props) {
|
|
82592 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
82593 |
|
82594 |
/***/ }),
|
82595 |
-
/*
|
82596 |
-
|
82597 |
-
!*** ./node_modules/react-transition-group/index.js ***!
|
82598 |
-
|
82599 |
-
/*!
|
82600 |
/*! all exports used */
|
82601 |
-
/***/ (function(module,
|
82602 |
|
82603 |
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82604 |
|
82605 |
|
82606 |
-
var _CSSTransition = _interopRequireDefault(__webpack_require__(/*! ./CSSTransition */ 510));
|
82607 |
-
|
82608 |
-
var _ReplaceTransition = _interopRequireDefault(__webpack_require__(/*! ./ReplaceTransition */ 515));
|
82609 |
|
82610 |
-
var _TransitionGroup = _interopRequireDefault(__webpack_require__(/*! ./TransitionGroup */ 203));
|
82611 |
|
82612 |
-
var _Transition = _interopRequireDefault(__webpack_require__(/*! ./Transition */ 200));
|
82613 |
|
82614 |
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
82615 |
|
82616 |
-
module.exports = {
|
82617 |
-
Transition: _Transition.default,
|
82618 |
-
TransitionGroup: _TransitionGroup.default,
|
82619 |
-
ReplaceTransition: _ReplaceTransition.default,
|
82620 |
-
CSSTransition: _CSSTransition.default
|
82621 |
-
};
|
82622 |
|
82623 |
/***/ }),
|
82624 |
-
/*
|
82625 |
-
|
82626 |
-
!*** ./node_modules/react-transition-group/CSSTransition.js ***!
|
82627 |
-
|
82628 |
-
/*!
|
82629 |
-
/*!
|
82630 |
-
/***/ (function(module,
|
82631 |
|
82632 |
"use strict";
|
82633 |
-
/* WEBPACK VAR INJECTION */(function(process) {
|
82634 |
-
|
82635 |
-
|
82636 |
-
|
82637 |
-
|
82638 |
-
var
|
|
|
|
|
|
|
|
|
|
|
82639 |
|
82640 |
-
var _addClass = _interopRequireDefault(__webpack_require__(/*! dom-helpers/class/addClass */ 511));
|
82641 |
|
82642 |
-
var _removeClass = _interopRequireDefault(__webpack_require__(/*! dom-helpers/class/removeClass */ 514));
|
82643 |
|
82644 |
-
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 5));
|
82645 |
|
82646 |
-
var _Transition = _interopRequireDefault(__webpack_require__(/*! ./Transition */ 200));
|
82647 |
|
82648 |
-
var _PropTypes = __webpack_require__(/*! ./utils/PropTypes */ 202);
|
82649 |
|
82650 |
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
82651 |
|
82652 |
-
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
|
82653 |
|
82654 |
-
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
82655 |
|
82656 |
-
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
82657 |
|
82658 |
-
var
|
82659 |
return node && classes && classes.split(' ').forEach(function (c) {
|
82660 |
-
return (
|
82661 |
});
|
82662 |
};
|
82663 |
|
82664 |
var removeClass = function removeClass(node, classes) {
|
82665 |
return node && classes && classes.split(' ').forEach(function (c) {
|
82666 |
-
return (
|
82667 |
});
|
82668 |
};
|
82669 |
/**
|
82670 |
* A transition component inspired by the excellent
|
82671 |
-
* [ng-animate](
|
82672 |
-
* using CSS transitions or animations. It's built upon the
|
82673 |
* [`Transition`](https://reactcommunity.org/react-transition-group/transition)
|
82674 |
* component, so it inherits all of its props.
|
82675 |
*
|
82676 |
* `CSSTransition` applies a pair of class names during the `appear`, `enter`,
|
82677 |
* and `exit` states of the transition. The first class is applied and then a
|
82678 |
-
* second `*-active` class in order to activate the
|
82679 |
* transition, matching `*-done` class names are applied to persist the
|
82680 |
* transition state.
|
82681 |
*
|
@@ -82720,18 +83679,25 @@ var removeClass = function removeClass(node, classes) {
|
|
82720 |
* }
|
82721 |
* .my-node-exit-active {
|
82722 |
* opacity: 0;
|
82723 |
-
* transition: opacity
|
82724 |
* }
|
82725 |
* ```
|
82726 |
*
|
82727 |
-
* `*-active` classes represent which styles you want to animate **to
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82728 |
*/
|
82729 |
|
82730 |
|
82731 |
-
var CSSTransition =
|
82732 |
-
|
82733 |
-
function (_React$Component) {
|
82734 |
-
_inheritsLoose(CSSTransition, _React$Component);
|
82735 |
|
82736 |
function CSSTransition() {
|
82737 |
var _this;
|
@@ -82741,95 +83707,109 @@ function (_React$Component) {
|
|
82741 |
}
|
82742 |
|
82743 |
_this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
|
|
|
|
|
|
|
|
|
|
|
82744 |
|
82745 |
-
_this.onEnter = function (
|
82746 |
-
var _this$
|
82747 |
-
|
|
|
82748 |
|
82749 |
_this.removeClasses(node, 'exit');
|
82750 |
|
82751 |
-
addClass(node,
|
82752 |
|
82753 |
if (_this.props.onEnter) {
|
82754 |
-
_this.props.onEnter(
|
82755 |
}
|
82756 |
};
|
82757 |
|
82758 |
-
_this.onEntering = function (
|
82759 |
-
var _this$
|
82760 |
-
|
|
|
|
|
|
|
82761 |
|
82762 |
-
_this.
|
82763 |
|
82764 |
if (_this.props.onEntering) {
|
82765 |
-
_this.props.onEntering(
|
82766 |
}
|
82767 |
};
|
82768 |
|
82769 |
-
_this.onEntered = function (
|
82770 |
-
var
|
|
|
|
|
82771 |
|
82772 |
-
var
|
82773 |
|
82774 |
-
|
82775 |
|
82776 |
-
_this.
|
82777 |
-
|
82778 |
-
addClass(node, doneClassName);
|
82779 |
|
82780 |
if (_this.props.onEntered) {
|
82781 |
-
_this.props.onEntered(
|
82782 |
}
|
82783 |
};
|
82784 |
|
82785 |
-
_this.onExit = function (
|
82786 |
-
var _this$
|
82787 |
-
|
82788 |
|
82789 |
_this.removeClasses(node, 'appear');
|
82790 |
|
82791 |
_this.removeClasses(node, 'enter');
|
82792 |
|
82793 |
-
addClass(node,
|
82794 |
|
82795 |
if (_this.props.onExit) {
|
82796 |
-
_this.props.onExit(
|
82797 |
}
|
82798 |
};
|
82799 |
|
82800 |
-
_this.onExiting = function (
|
82801 |
-
var _this$
|
82802 |
-
|
82803 |
|
82804 |
-
_this.
|
82805 |
|
82806 |
if (_this.props.onExiting) {
|
82807 |
-
_this.props.onExiting(
|
82808 |
}
|
82809 |
};
|
82810 |
|
82811 |
-
_this.onExited = function (
|
82812 |
-
var _this$
|
82813 |
-
|
82814 |
|
82815 |
_this.removeClasses(node, 'exit');
|
82816 |
|
82817 |
-
addClass(node,
|
82818 |
|
82819 |
if (_this.props.onExited) {
|
82820 |
-
_this.props.onExited(
|
82821 |
}
|
82822 |
};
|
82823 |
|
|
|
|
|
|
|
|
|
|
|
82824 |
_this.getClassNames = function (type) {
|
82825 |
var classNames = _this.props.classNames;
|
82826 |
var isStringClassNames = typeof classNames === 'string';
|
82827 |
-
var prefix = isStringClassNames && classNames ? classNames +
|
82828 |
-
var
|
82829 |
-
var activeClassName = isStringClassNames ?
|
82830 |
-
var doneClassName = isStringClassNames ?
|
82831 |
return {
|
82832 |
-
|
82833 |
activeClassName: activeClassName,
|
82834 |
doneClassName: doneClassName
|
82835 |
};
|
@@ -82840,34 +83820,56 @@ function (_React$Component) {
|
|
82840 |
|
82841 |
var _proto = CSSTransition.prototype;
|
82842 |
|
82843 |
-
_proto.
|
82844 |
-
var
|
82845 |
-
|
82846 |
-
|
82847 |
-
doneClassName = _this$
|
82848 |
-
|
82849 |
-
className && removeClass(node, className);
|
82850 |
-
activeClassName && removeClass(node, activeClassName);
|
82851 |
-
doneClassName && removeClass(node, doneClassName);
|
82852 |
-
};
|
82853 |
|
82854 |
-
|
82855 |
-
|
|
|
82856 |
// which is necessary in order to transition styles when adding a class name.
|
82857 |
-
|
|
|
|
|
82858 |
/* eslint-disable no-unused-expressions */
|
82859 |
node && node.scrollTop;
|
82860 |
-
|
|
|
|
|
|
|
82861 |
|
82862 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82863 |
}
|
82864 |
};
|
82865 |
|
82866 |
_proto.render = function render() {
|
82867 |
-
var props =
|
|
|
|
|
82868 |
|
82869 |
-
|
82870 |
-
return _react.default.createElement(_Transition.default, _extends({}, props, {
|
82871 |
onEnter: this.onEnter,
|
82872 |
onEntered: this.onEntered,
|
82873 |
onEntering: this.onEntering,
|
@@ -82878,28 +83880,38 @@ function (_React$Component) {
|
|
82878 |
};
|
82879 |
|
82880 |
return CSSTransition;
|
82881 |
-
}(
|
82882 |
|
82883 |
CSSTransition.defaultProps = {
|
82884 |
classNames: ''
|
82885 |
};
|
82886 |
-
CSSTransition.propTypes = process.env.NODE_ENV !== "production" ?
|
82887 |
/**
|
82888 |
-
* The animation classNames applied to the component as it enters,
|
82889 |
-
* has finished the transition. A single name can be provided
|
82890 |
-
* suffixed for each stage
|
|
|
|
|
|
|
|
|
82891 |
*
|
82892 |
-
*
|
82893 |
-
* `fade-enter-done`, `fade-exit`, `fade-exit-active`, `fade-exit-done`,
|
82894 |
-
* `fade-appear`, `fade-appear-active`, and `fade-appear-done`.
|
82895 |
*
|
82896 |
-
*
|
82897 |
-
*
|
82898 |
-
*
|
82899 |
-
*
|
82900 |
-
*
|
82901 |
-
*
|
82902 |
-
*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82903 |
*
|
82904 |
* Each individual classNames can also be specified independently like:
|
82905 |
*
|
@@ -82942,171 +83954,173 @@ CSSTransition.propTypes = process.env.NODE_ENV !== "production" ? _extends({}, _
|
|
82942 |
* exitDone?: string,
|
82943 |
* }}
|
82944 |
*/
|
82945 |
-
classNames:
|
82946 |
|
82947 |
/**
|
82948 |
* A `<Transition>` callback fired immediately after the 'enter' or 'appear' class is
|
82949 |
* applied.
|
82950 |
*
|
|
|
|
|
82951 |
* @type Function(node: HtmlElement, isAppearing: bool)
|
82952 |
*/
|
82953 |
-
onEnter:
|
82954 |
|
82955 |
/**
|
82956 |
* A `<Transition>` callback fired immediately after the 'enter-active' or
|
82957 |
* 'appear-active' class is applied.
|
82958 |
*
|
|
|
|
|
82959 |
* @type Function(node: HtmlElement, isAppearing: bool)
|
82960 |
*/
|
82961 |
-
onEntering:
|
82962 |
|
82963 |
/**
|
82964 |
* A `<Transition>` callback fired immediately after the 'enter' or
|
82965 |
* 'appear' classes are **removed** and the `done` class is added to the DOM node.
|
82966 |
*
|
|
|
|
|
82967 |
* @type Function(node: HtmlElement, isAppearing: bool)
|
82968 |
*/
|
82969 |
-
onEntered:
|
82970 |
|
82971 |
/**
|
82972 |
* A `<Transition>` callback fired immediately after the 'exit' class is
|
82973 |
* applied.
|
82974 |
*
|
|
|
|
|
82975 |
* @type Function(node: HtmlElement)
|
82976 |
*/
|
82977 |
-
onExit:
|
82978 |
|
82979 |
/**
|
82980 |
* A `<Transition>` callback fired immediately after the 'exit-active' is applied.
|
82981 |
*
|
|
|
|
|
82982 |
* @type Function(node: HtmlElement)
|
82983 |
*/
|
82984 |
-
onExiting:
|
82985 |
|
82986 |
/**
|
82987 |
* A `<Transition>` callback fired immediately after the 'exit' classes
|
82988 |
* are **removed** and the `exit-done` class is added to the DOM node.
|
82989 |
*
|
|
|
|
|
82990 |
* @type Function(node: HtmlElement)
|
82991 |
*/
|
82992 |
-
onExited:
|
82993 |
}) : {};
|
82994 |
-
|
82995 |
-
|
82996 |
-
module.exports = exports["default"];
|
82997 |
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
82998 |
|
82999 |
/***/ }),
|
83000 |
-
/*
|
83001 |
-
|
83002 |
-
!*** ./node_modules/
|
83003 |
-
|
83004 |
-
/*!
|
83005 |
-
/*!
|
83006 |
-
/***/ (function(module,
|
83007 |
|
83008 |
"use strict";
|
|
|
|
|
|
|
|
|
|
|
|
|
83009 |
|
83010 |
-
|
83011 |
-
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 512);
|
83012 |
-
|
83013 |
-
exports.__esModule = true;
|
83014 |
-
exports.default = addClass;
|
83015 |
-
|
83016 |
-
var _hasClass = _interopRequireDefault(__webpack_require__(/*! ./hasClass */ 513));
|
83017 |
-
|
83018 |
-
function addClass(element, className) {
|
83019 |
-
if (element.classList) element.classList.add(className);else if (!(0, _hasClass.default)(element, className)) if (typeof element.className === 'string') element.className = element.className + ' ' + className;else element.setAttribute('class', (element.className && element.className.baseVal || '') + ' ' + className);
|
83020 |
}
|
83021 |
|
83022 |
-
module.exports = exports["default"];
|
83023 |
-
|
83024 |
/***/ }),
|
83025 |
-
/*
|
83026 |
-
|
83027 |
-
!*** ./node_modules
|
83028 |
-
|
83029 |
-
/*!
|
83030 |
-
/*!
|
83031 |
-
/***/ (function(module,
|
83032 |
|
83033 |
-
|
83034 |
-
|
83035 |
-
|
83036 |
-
};
|
83037 |
-
}
|
83038 |
|
83039 |
-
|
|
|
|
|
83040 |
|
83041 |
/***/ }),
|
83042 |
-
/*
|
83043 |
-
|
83044 |
-
!*** ./node_modules/dom-helpers/
|
83045 |
-
|
83046 |
-
/*!
|
83047 |
-
/*!
|
83048 |
-
/***/ (function(module,
|
83049 |
|
83050 |
"use strict";
|
83051 |
-
|
83052 |
-
|
83053 |
-
exports.__esModule = true;
|
83054 |
-
exports.default = hasClass;
|
83055 |
-
|
83056 |
function hasClass(element, className) {
|
83057 |
-
if (element.classList) return !!className && element.classList.contains(className);
|
|
|
83058 |
}
|
83059 |
|
83060 |
-
module.exports = exports["default"];
|
83061 |
-
|
83062 |
/***/ }),
|
83063 |
-
/*
|
83064 |
-
|
83065 |
-
!*** ./node_modules/dom-helpers/
|
83066 |
-
|
83067 |
-
/*!
|
83068 |
-
/*!
|
83069 |
-
/***/ (function(module,
|
83070 |
|
83071 |
"use strict";
|
83072 |
-
|
83073 |
-
|
83074 |
function replaceClassName(origClass, classToRemove) {
|
83075 |
-
return origClass.replace(new RegExp(
|
83076 |
}
|
83077 |
|
83078 |
-
|
83079 |
-
if (element.classList)
|
83080 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83081 |
|
83082 |
/***/ }),
|
83083 |
-
/*
|
83084 |
-
|
83085 |
-
!*** ./node_modules/react-transition-group/ReplaceTransition.js ***!
|
83086 |
-
|
83087 |
-
/*!
|
83088 |
-
/*!
|
83089 |
-
/***/ (function(module,
|
83090 |
|
83091 |
"use strict";
|
83092 |
-
/* WEBPACK VAR INJECTION */(function(process) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83093 |
|
83094 |
-
exports.__esModule = true;
|
83095 |
-
exports.default = void 0;
|
83096 |
|
83097 |
-
var _propTypes = _interopRequireDefault(__webpack_require__(/*! prop-types */ 15));
|
83098 |
|
83099 |
-
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 5));
|
83100 |
|
83101 |
-
var _reactDom = __webpack_require__(/*! react-dom */ 33);
|
83102 |
|
83103 |
-
var _TransitionGroup = _interopRequireDefault(__webpack_require__(/*! ./TransitionGroup */ 203));
|
83104 |
-
|
83105 |
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
83106 |
-
|
83107 |
-
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
83108 |
-
|
83109 |
-
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
83110 |
|
83111 |
/**
|
83112 |
* The `<ReplaceTransition>` component is a specialized `Transition` component
|
@@ -83119,10 +84133,9 @@ function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.crea
|
|
83119 |
* </ReplaceTransition>
|
83120 |
* ```
|
83121 |
*/
|
83122 |
-
|
83123 |
-
/*#__PURE__*/
|
83124 |
-
|
83125 |
-
_inheritsLoose(ReplaceTransition, _React$Component);
|
83126 |
|
83127 |
function ReplaceTransition() {
|
83128 |
var _this;
|
@@ -83190,20 +84203,22 @@ function (_React$Component) {
|
|
83190 |
var _child$props;
|
83191 |
|
83192 |
var children = this.props.children;
|
83193 |
-
|
83194 |
-
var child = _react.default.Children.toArray(children)[idx];
|
83195 |
-
|
83196 |
if (child.props[handler]) (_child$props = child.props)[handler].apply(_child$props, originalArgs);
|
83197 |
-
|
|
|
|
|
|
|
|
|
83198 |
};
|
83199 |
|
83200 |
_proto.render = function render() {
|
83201 |
var _this$props = this.props,
|
83202 |
children = _this$props.children,
|
83203 |
inProp = _this$props.in,
|
83204 |
-
props =
|
83205 |
|
83206 |
-
var _React$Children$toArr =
|
83207 |
first = _React$Children$toArr[0],
|
83208 |
second = _React$Children$toArr[1];
|
83209 |
|
@@ -83213,12 +84228,12 @@ function (_React$Component) {
|
|
83213 |
delete props.onExit;
|
83214 |
delete props.onExiting;
|
83215 |
delete props.onExited;
|
83216 |
-
return
|
83217 |
key: 'first',
|
83218 |
onEnter: this.handleEnter,
|
83219 |
onEntering: this.handleEntering,
|
83220 |
onEntered: this.handleEntered
|
83221 |
-
}) :
|
83222 |
key: 'second',
|
83223 |
onEnter: this.handleExit,
|
83224 |
onEntering: this.handleExiting,
|
@@ -83227,39 +84242,53 @@ function (_React$Component) {
|
|
83227 |
};
|
83228 |
|
83229 |
return ReplaceTransition;
|
83230 |
-
}(
|
83231 |
|
83232 |
ReplaceTransition.propTypes = process.env.NODE_ENV !== "production" ? {
|
83233 |
-
in:
|
83234 |
children: function children(props, propName) {
|
83235 |
-
if (
|
83236 |
return null;
|
83237 |
}
|
83238 |
} : {};
|
83239 |
-
|
83240 |
-
|
83241 |
-
module.exports = exports["default"];
|
83242 |
-
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
83243 |
|
83244 |
/***/ }),
|
83245 |
-
/*
|
83246 |
-
|
83247 |
-
!*** ./node_modules/react-transition-group/
|
83248 |
-
|
83249 |
-
/*!
|
83250 |
-
/*!
|
83251 |
-
/***/ (function(module,
|
83252 |
|
83253 |
"use strict";
|
|
|
|
|
|
|
|
|
|
|
83254 |
|
|
|
|
|
83255 |
|
83256 |
-
|
83257 |
-
|
83258 |
-
|
83259 |
-
|
83260 |
-
|
|
|
|
|
|
|
83261 |
|
83262 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
83263 |
|
83264 |
/**
|
83265 |
* Given `this.props.children`, return an object mapping key to child.
|
@@ -83267,13 +84296,14 @@ var _react = __webpack_require__(/*! react */ 5);
|
|
83267 |
* @param {*} children `this.props.children`
|
83268 |
* @return {object} Mapping of key to child
|
83269 |
*/
|
|
|
83270 |
function getChildMapping(children, mapFn) {
|
83271 |
var mapper = function mapper(child) {
|
83272 |
-
return mapFn && (
|
83273 |
};
|
83274 |
|
83275 |
var result = Object.create(null);
|
83276 |
-
if (children)
|
83277 |
return c;
|
83278 |
}).forEach(function (child) {
|
83279 |
// run the map function here instead so that the key is the computed one
|
@@ -83299,7 +84329,6 @@ function getChildMapping(children, mapFn) {
|
|
83299 |
* in `next` in a reasonable order.
|
83300 |
*/
|
83301 |
|
83302 |
-
|
83303 |
function mergeChildMappings(prev, next) {
|
83304 |
prev = prev || {};
|
83305 |
next = next || {};
|
@@ -83352,7 +84381,7 @@ function getProp(child, prop, props) {
|
|
83352 |
|
83353 |
function getInitialChildMapping(props, onExited) {
|
83354 |
return getChildMapping(props.children, function (child) {
|
83355 |
-
return (
|
83356 |
onExited: onExited.bind(null, child),
|
83357 |
in: true,
|
83358 |
appear: getProp(child, 'appear', props),
|
@@ -83361,21 +84390,20 @@ function getInitialChildMapping(props, onExited) {
|
|
83361 |
});
|
83362 |
});
|
83363 |
}
|
83364 |
-
|
83365 |
function getNextChildMapping(nextProps, prevChildMapping, onExited) {
|
83366 |
var nextChildMapping = getChildMapping(nextProps.children);
|
83367 |
var children = mergeChildMappings(prevChildMapping, nextChildMapping);
|
83368 |
Object.keys(children).forEach(function (key) {
|
83369 |
var child = children[key];
|
83370 |
-
if (!(
|
83371 |
-
var hasPrev = key in prevChildMapping;
|
83372 |
-
var hasNext = key in nextChildMapping;
|
83373 |
var prevChild = prevChildMapping[key];
|
83374 |
-
var isLeaving = (
|
83375 |
|
83376 |
if (hasNext && (!hasPrev || isLeaving)) {
|
83377 |
// console.log('entering', key)
|
83378 |
-
children[key] = (
|
83379 |
onExited: onExited.bind(null, child),
|
83380 |
in: true,
|
83381 |
exit: getProp(child, 'exit', nextProps),
|
@@ -83384,14 +84412,14 @@ function getNextChildMapping(nextProps, prevChildMapping, onExited) {
|
|
83384 |
} else if (!hasNext && hasPrev && !isLeaving) {
|
83385 |
// item is old (exiting)
|
83386 |
// console.log('leaving', key)
|
83387 |
-
children[key] = (
|
83388 |
in: false
|
83389 |
});
|
83390 |
-
} else if (hasNext && hasPrev && (
|
83391 |
// item hasn't changed transition states
|
83392 |
// copy over the last transition props;
|
83393 |
// console.log('unchanged', key)
|
83394 |
-
children[key] = (
|
83395 |
onExited: onExited.bind(null, child),
|
83396 |
in: prevChild.props.in,
|
83397 |
exit: getProp(child, 'exit', nextProps),
|
@@ -83403,7 +84431,284 @@ function getNextChildMapping(nextProps, prevChildMapping, onExited) {
|
|
83403 |
}
|
83404 |
|
83405 |
/***/ }),
|
83406 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83407 |
/*!************************************************!*\
|
83408 |
!*** ./dist/blocks/uagb-controls/parseIcon.js ***!
|
83409 |
\************************************************/
|
@@ -83426,7 +84731,7 @@ function parseSVG(svg) {
|
|
83426 |
/* harmony default export */ __webpack_exports__["a"] = (parseSVG);
|
83427 |
|
83428 |
/***/ }),
|
83429 |
-
/*
|
83430 |
/*!******************************************!*\
|
83431 |
!*** ./src/blocks/buttons-child/save.js ***!
|
83432 |
\******************************************/
|
@@ -83502,7 +84807,7 @@ function save(props) {
|
|
83502 |
}
|
83503 |
|
83504 |
/***/ }),
|
83505 |
-
/*
|
83506 |
/*!*********************************************!*\
|
83507 |
!*** ./src/blocks/buttons-child/style.scss ***!
|
83508 |
\*********************************************/
|
@@ -83512,7 +84817,7 @@ function save(props) {
|
|
83512 |
// removed by extract-text-webpack-plugin
|
83513 |
|
83514 |
/***/ }),
|
83515 |
-
/*
|
83516 |
/*!**************************************!*\
|
83517 |
!*** ./src/blocks/info-box/block.js ***!
|
83518 |
\**************************************/
|
@@ -83521,13 +84826,13 @@ function save(props) {
|
|
83521 |
|
83522 |
"use strict";
|
83523 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
83524 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
83525 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */
|
83526 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */
|
83527 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
83528 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
83529 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
83530 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
83531 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
83532 |
/**
|
83533 |
* BLOCK: Info Box
|
@@ -83562,7 +84867,7 @@ registerBlockType("uagb/info-box", {
|
|
83562 |
});
|
83563 |
|
83564 |
/***/ }),
|
83565 |
-
/*
|
83566 |
/*!*************************************!*\
|
83567 |
!*** ./src/blocks/info-box/edit.js ***!
|
83568 |
\*************************************/
|
@@ -83577,15 +84882,15 @@ registerBlockType("uagb/info-box", {
|
|
83577 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
|
83578 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
83579 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
83580 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */
|
83581 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Title__ = __webpack_require__(/*! ./components/Title */
|
83582 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Icon__ = __webpack_require__(/*! ./components/Icon */
|
83583 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */
|
83584 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__classes__ = __webpack_require__(/*! ./classes */
|
83585 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */
|
83586 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */
|
83587 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
83588 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_IconImage__ = __webpack_require__(/*! ./components/IconImage */
|
83589 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
83590 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
83591 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
@@ -85066,7 +86371,7 @@ var UAGBinfoBox = function (_Component) {
|
|
85066 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBinfoBox);
|
85067 |
|
85068 |
/***/ }),
|
85069 |
-
/*
|
85070 |
/*!*************************************!*\
|
85071 |
!*** ./src/blocks/info-box/save.js ***!
|
85072 |
\*************************************/
|
@@ -85078,14 +86383,14 @@ var UAGBinfoBox = function (_Component) {
|
|
85078 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
85079 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
85080 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
85081 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */
|
85082 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */
|
85083 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */
|
85084 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Icon__ = __webpack_require__(/*! ./components/Icon */
|
85085 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */
|
85086 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */
|
85087 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */
|
85088 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_IconImage__ = __webpack_require__(/*! ./components/IconImage */
|
85089 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
85090 |
|
85091 |
/**
|
@@ -85248,7 +86553,7 @@ function save(props) {
|
|
85248 |
}
|
85249 |
|
85250 |
/***/ }),
|
85251 |
-
/*
|
85252 |
/*!*******************************************!*\
|
85253 |
!*** ./src/blocks/info-box/deprecated.js ***!
|
85254 |
\*******************************************/
|
@@ -85259,18 +86564,18 @@ function save(props) {
|
|
85259 |
"use strict";
|
85260 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
85261 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
85262 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */
|
85263 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */
|
85264 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */
|
85265 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_InfoBoxIcon__ = __webpack_require__(/*! ./components/InfoBoxIcon */
|
85266 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Icon__ = __webpack_require__(/*! ./components/Icon */
|
85267 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! ./classes */
|
85268 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */
|
85269 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxCta__ = __webpack_require__(/*! ./components/InfoBoxCta */
|
85270 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */
|
85271 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
85272 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_InfoBoxIconImage__ = __webpack_require__(/*! ./components/InfoBoxIconImage */
|
85273 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__attributes__ = __webpack_require__(/*! ./attributes */
|
85274 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
85275 |
|
85276 |
/**
|
@@ -86297,7 +87602,7 @@ var deprecated = [{
|
|
86297 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
86298 |
|
86299 |
/***/ }),
|
86300 |
-
/*
|
86301 |
/*!*******************************************************!*\
|
86302 |
!*** ./src/blocks/info-box/components/InfoBoxIcon.js ***!
|
86303 |
\*******************************************************/
|
@@ -86357,7 +87662,7 @@ var InfoBoxIcon = function (_React$Component) {
|
|
86357 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxIcon);
|
86358 |
|
86359 |
/***/ }),
|
86360 |
-
/*
|
86361 |
/*!******************************************************!*\
|
86362 |
!*** ./src/blocks/info-box/components/InfoBoxCta.js ***!
|
86363 |
\******************************************************/
|
@@ -86455,7 +87760,7 @@ var InfoBoxCta = function (_React$Component) {
|
|
86455 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxCta);
|
86456 |
|
86457 |
/***/ }),
|
86458 |
-
/*
|
86459 |
/*!************************************************************!*\
|
86460 |
!*** ./src/blocks/info-box/components/InfoBoxIconImage.js ***!
|
86461 |
\************************************************************/
|
@@ -86535,7 +87840,7 @@ var InfoBoxIconImage = function (_React$Component) {
|
|
86535 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxIconImage);
|
86536 |
|
86537 |
/***/ }),
|
86538 |
-
/*
|
86539 |
/*!*****************************************!*\
|
86540 |
!*** ./src/blocks/info-box/editor.scss ***!
|
86541 |
\*****************************************/
|
@@ -86545,7 +87850,7 @@ var InfoBoxIconImage = function (_React$Component) {
|
|
86545 |
// removed by extract-text-webpack-plugin
|
86546 |
|
86547 |
/***/ }),
|
86548 |
-
/*
|
86549 |
/*!****************************************!*\
|
86550 |
!*** ./src/blocks/info-box/style.scss ***!
|
86551 |
\****************************************/
|
@@ -86555,7 +87860,7 @@ var InfoBoxIconImage = function (_React$Component) {
|
|
86555 |
// removed by extract-text-webpack-plugin
|
86556 |
|
86557 |
/***/ }),
|
86558 |
-
/*
|
86559 |
/*!*****************************************!*\
|
86560 |
!*** ./src/blocks/testimonial/block.js ***!
|
86561 |
\*****************************************/
|
@@ -86566,13 +87871,13 @@ var InfoBoxIconImage = function (_React$Component) {
|
|
86566 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
86567 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
86568 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
86569 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
86570 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
86571 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
86572 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */
|
86573 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
86574 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
86575 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
86576 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
|
86577 |
/**
|
86578 |
* BLOCK: Testimonial
|
@@ -86607,7 +87912,7 @@ registerBlockType("uagb/testimonial", {
|
|
86607 |
});
|
86608 |
|
86609 |
/***/ }),
|
86610 |
-
/*
|
86611 |
/*!****************************************!*\
|
86612 |
!*** ./src/blocks/testimonial/edit.js ***!
|
86613 |
\****************************************/
|
@@ -86618,15 +87923,15 @@ registerBlockType("uagb/testimonial", {
|
|
86618 |
"use strict";
|
86619 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
86620 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
86621 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */
|
86622 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Company__ = __webpack_require__(/*! ./components/Company */
|
86623 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */
|
86624 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */
|
86625 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
86626 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_Image__ = __webpack_require__(/*! ./components/Image */
|
86627 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
86628 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_times__);
|
86629 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react_slick__ = __webpack_require__(/*! react-slick */
|
86630 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react_slick___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_react_slick__);
|
86631 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
86632 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
@@ -87813,7 +89118,7 @@ var UAGBtestimonial = function (_Component) {
|
|
87813 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBtestimonial);
|
87814 |
|
87815 |
/***/ }),
|
87816 |
-
/*
|
87817 |
/*!*************************************************!*\
|
87818 |
!*** ./src/blocks/testimonial/inline-styles.js ***!
|
87819 |
\*************************************************/
|
@@ -88058,7 +89363,7 @@ function TestimonialStyle(props) {
|
|
88058 |
/* harmony default export */ __webpack_exports__["a"] = (TestimonialStyle);
|
88059 |
|
88060 |
/***/ }),
|
88061 |
-
/*
|
88062 |
/*!****************************************!*\
|
88063 |
!*** ./src/blocks/testimonial/save.js ***!
|
88064 |
\****************************************/
|
@@ -88070,11 +89375,11 @@ function TestimonialStyle(props) {
|
|
88070 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
88071 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
88072 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
88073 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */
|
88074 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Company__ = __webpack_require__(/*! ./components/Company */
|
88075 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */
|
88076 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */
|
88077 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Image__ = __webpack_require__(/*! ./components/Image */
|
88078 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
88079 |
|
88080 |
/**
|
@@ -88170,7 +89475,7 @@ function save(props) {
|
|
88170 |
}
|
88171 |
|
88172 |
/***/ }),
|
88173 |
-
/*
|
88174 |
/*!**********************************************!*\
|
88175 |
!*** ./src/blocks/testimonial/deprecated.js ***!
|
88176 |
\**********************************************/
|
@@ -88181,13 +89486,13 @@ function save(props) {
|
|
88181 |
"use strict";
|
88182 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
88183 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
88184 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
88185 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
88186 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */
|
88187 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Company__ = __webpack_require__(/*! ./components/Company */
|
88188 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */
|
88189 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! ./classes */
|
88190 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_TestimonialImage__ = __webpack_require__(/*! ./components/TestimonialImage */
|
88191 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
88192 |
|
88193 |
/**
|
@@ -88479,7 +89784,7 @@ var deprecated = [{
|
|
88479 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
88480 |
|
88481 |
/***/ }),
|
88482 |
-
/*
|
88483 |
/*!***************************************************************!*\
|
88484 |
!*** ./src/blocks/testimonial/components/TestimonialImage.js ***!
|
88485 |
\***************************************************************/
|
@@ -88564,7 +89869,7 @@ var TestimonialImage = function (_React$Component) {
|
|
88564 |
/* harmony default export */ __webpack_exports__["a"] = (TestimonialImage);
|
88565 |
|
88566 |
/***/ }),
|
88567 |
-
/*
|
88568 |
/*!*******************************************!*\
|
88569 |
!*** ./src/blocks/testimonial/style.scss ***!
|
88570 |
\*******************************************/
|
@@ -88574,7 +89879,7 @@ var TestimonialImage = function (_React$Component) {
|
|
88574 |
// removed by extract-text-webpack-plugin
|
88575 |
|
88576 |
/***/ }),
|
88577 |
-
/*
|
88578 |
/*!********************************************!*\
|
88579 |
!*** ./src/blocks/testimonial/editor.scss ***!
|
88580 |
\********************************************/
|
@@ -88584,7 +89889,7 @@ var TestimonialImage = function (_React$Component) {
|
|
88584 |
// removed by extract-text-webpack-plugin
|
88585 |
|
88586 |
/***/ }),
|
88587 |
-
/*
|
88588 |
/*!**********************************!*\
|
88589 |
!*** ./src/blocks/team/block.js ***!
|
88590 |
\**********************************/
|
@@ -88596,13 +89901,13 @@ var TestimonialImage = function (_React$Component) {
|
|
88596 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
88597 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
88598 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
88599 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */
|
88600 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */
|
88601 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */
|
88602 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */
|
88603 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
88604 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
|
88605 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss__ = __webpack_require__(/*! ./style.scss */
|
88606 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__style_scss__);
|
88607 |
/**
|
88608 |
* BLOCK: Team
|
@@ -88639,7 +89944,7 @@ registerBlockType("uagb/team", {
|
|
88639 |
});
|
88640 |
|
88641 |
/***/ }),
|
88642 |
-
/*
|
88643 |
/*!*********************************!*\
|
88644 |
!*** ./src/blocks/team/edit.js ***!
|
88645 |
\*********************************/
|
@@ -88654,7 +89959,7 @@ registerBlockType("uagb/team", {
|
|
88654 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
|
88655 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
88656 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
88657 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */
|
88658 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
88659 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
88660 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
@@ -89569,7 +90874,7 @@ var UAGBTeam = function (_Component) {
|
|
89569 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBTeam);
|
89570 |
|
89571 |
/***/ }),
|
89572 |
-
/*
|
89573 |
/*!************************************!*\
|
89574 |
!*** ./src/blocks/team/styling.js ***!
|
89575 |
\************************************/
|
@@ -89794,7 +91099,7 @@ function styling(props) {
|
|
89794 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
89795 |
|
89796 |
/***/ }),
|
89797 |
-
/*
|
89798 |
/*!*********************************!*\
|
89799 |
!*** ./src/blocks/team/save.js ***!
|
89800 |
\*********************************/
|
@@ -89939,7 +91244,7 @@ function save(props) {
|
|
89939 |
}
|
89940 |
|
89941 |
/***/ }),
|
89942 |
-
/*
|
89943 |
/*!***************************************!*\
|
89944 |
!*** ./src/blocks/team/deprecated.js ***!
|
89945 |
\***************************************/
|
@@ -89950,7 +91255,7 @@ function save(props) {
|
|
89950 |
"use strict";
|
89951 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
89952 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
89953 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
89954 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
89955 |
/**
|
89956 |
* BLOCK: Table of Contents - Deprecated Block
|
@@ -90315,7 +91620,7 @@ var deprecated = [{
|
|
90315 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
90316 |
|
90317 |
/***/ }),
|
90318 |
-
/*
|
90319 |
/*!*************************************!*\
|
90320 |
!*** ./src/blocks/team/editor.scss ***!
|
90321 |
\*************************************/
|
@@ -90325,7 +91630,7 @@ var deprecated = [{
|
|
90325 |
// removed by extract-text-webpack-plugin
|
90326 |
|
90327 |
/***/ }),
|
90328 |
-
/*
|
90329 |
/*!************************************!*\
|
90330 |
!*** ./src/blocks/team/style.scss ***!
|
90331 |
\************************************/
|
@@ -90335,7 +91640,7 @@ var deprecated = [{
|
|
90335 |
// removed by extract-text-webpack-plugin
|
90336 |
|
90337 |
/***/ }),
|
90338 |
-
/*
|
90339 |
/*!******************************************!*\
|
90340 |
!*** ./src/blocks/social-share/block.js ***!
|
90341 |
\******************************************/
|
@@ -90347,16 +91652,16 @@ var deprecated = [{
|
|
90347 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
90348 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
90349 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
90350 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */
|
90351 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
90352 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
90353 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__editor_scss__);
|
90354 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__transform__ = __webpack_require__(/*! ./transform */
|
90355 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */
|
90356 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__edit__ = __webpack_require__(/*! ./edit */
|
90357 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__links__ = __webpack_require__(/*! ./links */
|
90358 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__save__ = __webpack_require__(/*! ./save */
|
90359 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__deprecated__ = __webpack_require__(/*! ./deprecated */
|
90360 |
/**
|
90361 |
* BLOCK: Social Share
|
90362 |
*/
|
@@ -90403,7 +91708,7 @@ registerBlockType("uagb/social-share", {
|
|
90403 |
});
|
90404 |
|
90405 |
/***/ }),
|
90406 |
-
/*
|
90407 |
/*!********************************************!*\
|
90408 |
!*** ./src/blocks/social-share/style.scss ***!
|
90409 |
\********************************************/
|
@@ -90413,7 +91718,7 @@ registerBlockType("uagb/social-share", {
|
|
90413 |
// removed by extract-text-webpack-plugin
|
90414 |
|
90415 |
/***/ }),
|
90416 |
-
/*
|
90417 |
/*!*********************************************!*\
|
90418 |
!*** ./src/blocks/social-share/editor.scss ***!
|
90419 |
\*********************************************/
|
@@ -90423,7 +91728,7 @@ registerBlockType("uagb/social-share", {
|
|
90423 |
// removed by extract-text-webpack-plugin
|
90424 |
|
90425 |
/***/ }),
|
90426 |
-
/*
|
90427 |
/*!**********************************************!*\
|
90428 |
!*** ./src/blocks/social-share/transform.js ***!
|
90429 |
\**********************************************/
|
@@ -90477,7 +91782,7 @@ var transform = {
|
|
90477 |
/* harmony default export */ __webpack_exports__["a"] = (transform);
|
90478 |
|
90479 |
/***/ }),
|
90480 |
-
/*
|
90481 |
/*!*****************************************!*\
|
90482 |
!*** ./src/blocks/social-share/edit.js ***!
|
90483 |
\*****************************************/
|
@@ -90490,13 +91795,13 @@ var transform = {
|
|
90490 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
90491 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
90492 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
90493 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map__ = __webpack_require__(/*! lodash/map */
|
90494 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
|
90495 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 19);
|
90496 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
90497 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
90498 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json__);
|
90499 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */
|
90500 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
90501 |
|
90502 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
@@ -90826,7 +92131,7 @@ var UAGBSocialShare = function (_Component) {
|
|
90826 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShare);
|
90827 |
|
90828 |
/***/ }),
|
90829 |
-
/*
|
90830 |
/*!********************************************!*\
|
90831 |
!*** ./src/blocks/social-share/styling.js ***!
|
90832 |
\********************************************/
|
@@ -91036,7 +92341,7 @@ function styling(props) {
|
|
91036 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
91037 |
|
91038 |
/***/ }),
|
91039 |
-
/*
|
91040 |
/*!*****************************************!*\
|
91041 |
!*** ./src/blocks/social-share/save.js ***!
|
91042 |
\*****************************************/
|
@@ -91049,7 +92354,7 @@ function styling(props) {
|
|
91049 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
91050 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
91051 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
91052 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__links__ = __webpack_require__(/*! ./links */
|
91053 |
/**
|
91054 |
* BLOCK: Column - Save Block
|
91055 |
*/
|
@@ -91086,7 +92391,7 @@ function save(props) {
|
|
91086 |
}
|
91087 |
|
91088 |
/***/ }),
|
91089 |
-
/*
|
91090 |
/*!***********************************************!*\
|
91091 |
!*** ./src/blocks/social-share/deprecated.js ***!
|
91092 |
\***********************************************/
|
@@ -91097,9 +92402,9 @@ function save(props) {
|
|
91097 |
"use strict";
|
91098 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
91099 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
91100 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
91101 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
91102 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__links__ = __webpack_require__(/*! ./links */
|
91103 |
/**
|
91104 |
* BLOCK: Social Share - Deprecated Block
|
91105 |
*/
|
@@ -91321,7 +92626,7 @@ var deprecated = [{
|
|
91321 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
91322 |
|
91323 |
/***/ }),
|
91324 |
-
/*
|
91325 |
/*!************************************************!*\
|
91326 |
!*** ./src/blocks/social-share-child/block.js ***!
|
91327 |
\************************************************/
|
@@ -91330,14 +92635,14 @@ var deprecated = [{
|
|
91330 |
|
91331 |
"use strict";
|
91332 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
91333 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
91334 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
91335 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
91336 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
91337 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
91338 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
91339 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
91340 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */
|
91341 |
/**
|
91342 |
* BLOCK: Social Share Child
|
91343 |
*/
|
@@ -91368,7 +92673,7 @@ registerBlockType("uagb/social-share-child", {
|
|
91368 |
});
|
91369 |
|
91370 |
/***/ }),
|
91371 |
-
/*
|
91372 |
/*!***********************************************!*\
|
91373 |
!*** ./src/blocks/social-share-child/edit.js ***!
|
91374 |
\***********************************************/
|
@@ -91383,7 +92688,7 @@ registerBlockType("uagb/social-share-child", {
|
|
91383 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
|
91384 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
91385 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
91386 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */
|
91387 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
91388 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
91389 |
|
@@ -91830,7 +93135,7 @@ var UAGBSocialShareChild = function (_Component) {
|
|
91830 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShareChild);
|
91831 |
|
91832 |
/***/ }),
|
91833 |
-
/*
|
91834 |
/*!**************************************************!*\
|
91835 |
!*** ./src/blocks/social-share-child/styling.js ***!
|
91836 |
\**************************************************/
|
@@ -91886,7 +93191,7 @@ function styling(props) {
|
|
91886 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
91887 |
|
91888 |
/***/ }),
|
91889 |
-
/*
|
91890 |
/*!***********************************************!*\
|
91891 |
!*** ./src/blocks/social-share-child/save.js ***!
|
91892 |
\***********************************************/
|
@@ -91899,7 +93204,7 @@ function styling(props) {
|
|
91899 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
91900 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
91901 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
91902 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__links__ = __webpack_require__(/*! ./links */
|
91903 |
/**
|
91904 |
* BLOCK: Social Share - Save Block
|
91905 |
*/
|
@@ -91960,7 +93265,7 @@ function save(props) {
|
|
91960 |
}
|
91961 |
|
91962 |
/***/ }),
|
91963 |
-
/*
|
91964 |
/*!**************************************************!*\
|
91965 |
!*** ./src/blocks/social-share-child/style.scss ***!
|
91966 |
\**************************************************/
|
@@ -91970,7 +93275,7 @@ function save(props) {
|
|
91970 |
// removed by extract-text-webpack-plugin
|
91971 |
|
91972 |
/***/ }),
|
91973 |
-
/*
|
91974 |
/*!***************************************************!*\
|
91975 |
!*** ./src/blocks/social-share-child/editor.scss ***!
|
91976 |
\***************************************************/
|
@@ -91980,7 +93285,7 @@ function save(props) {
|
|
91980 |
// removed by extract-text-webpack-plugin
|
91981 |
|
91982 |
/***/ }),
|
91983 |
-
/*
|
91984 |
/*!*****************************************************!*\
|
91985 |
!*** ./src/blocks/social-share-child/deprecated.js ***!
|
91986 |
\*****************************************************/
|
@@ -91991,9 +93296,9 @@ function save(props) {
|
|
91991 |
"use strict";
|
91992 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
91993 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
91994 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
91995 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
91996 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__links__ = __webpack_require__(/*! ./links */
|
91997 |
/**
|
91998 |
* BLOCK: Social Share child - Deprecated Block
|
91999 |
*/
|
@@ -92062,7 +93367,7 @@ var deprecated = [{
|
|
92062 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
92063 |
|
92064 |
/***/ }),
|
92065 |
-
/*
|
92066 |
/*!****************************************!*\
|
92067 |
!*** ./src/blocks/google-map/block.js ***!
|
92068 |
\****************************************/
|
@@ -92073,7 +93378,7 @@ var deprecated = [{
|
|
92073 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
92074 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
92075 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
92076 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */
|
92077 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
92078 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
92079 |
|
@@ -92394,7 +93699,7 @@ registerBlockType("uagb/google-map", {
|
|
92394 |
});
|
92395 |
|
92396 |
/***/ }),
|
92397 |
-
/*
|
92398 |
/*!******************************************!*\
|
92399 |
!*** ./src/blocks/google-map/style.scss ***!
|
92400 |
\******************************************/
|
@@ -92404,7 +93709,7 @@ registerBlockType("uagb/google-map", {
|
|
92404 |
// removed by extract-text-webpack-plugin
|
92405 |
|
92406 |
/***/ }),
|
92407 |
-
/*
|
92408 |
/*!***************************************!*\
|
92409 |
!*** ./src/blocks/icon-list/block.js ***!
|
92410 |
\***************************************/
|
@@ -92413,13 +93718,13 @@ registerBlockType("uagb/google-map", {
|
|
92413 |
|
92414 |
"use strict";
|
92415 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
92416 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
92417 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
92418 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
92419 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
92420 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
92421 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
92422 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
92423 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
92424 |
/**
|
92425 |
* BLOCK: Icon List
|
@@ -92462,7 +93767,7 @@ registerBlockType("uagb/icon-list", {
|
|
92462 |
});
|
92463 |
|
92464 |
/***/ }),
|
92465 |
-
/*
|
92466 |
/*!**************************************!*\
|
92467 |
!*** ./src/blocks/icon-list/edit.js ***!
|
92468 |
\**************************************/
|
@@ -92475,11 +93780,11 @@ registerBlockType("uagb/icon-list", {
|
|
92475 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
92476 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
92477 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
92478 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map__ = __webpack_require__(/*! lodash/map */
|
92479 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
|
92480 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 19);
|
92481 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
92482 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */
|
92483 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
92484 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
92485 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
@@ -92898,7 +94203,7 @@ var UAGBIconList = function (_Component) {
|
|
92898 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBIconList);
|
92899 |
|
92900 |
/***/ }),
|
92901 |
-
/*
|
92902 |
/*!*****************************************!*\
|
92903 |
!*** ./src/blocks/icon-list/styling.js ***!
|
92904 |
\*****************************************/
|
@@ -93130,7 +94435,7 @@ function styling(props) {
|
|
93130 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
93131 |
|
93132 |
/***/ }),
|
93133 |
-
/*
|
93134 |
/*!**************************************!*\
|
93135 |
!*** ./src/blocks/icon-list/save.js ***!
|
93136 |
\**************************************/
|
@@ -93177,7 +94482,7 @@ function save(props) {
|
|
93177 |
}
|
93178 |
|
93179 |
/***/ }),
|
93180 |
-
/*
|
93181 |
/*!********************************************!*\
|
93182 |
!*** ./src/blocks/icon-list/deprecated.js ***!
|
93183 |
\********************************************/
|
@@ -93189,7 +94494,7 @@ function save(props) {
|
|
93189 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
93190 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
93191 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
93192 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
93193 |
/**
|
93194 |
* BLOCK: Columns - Deprecated Block
|
93195 |
*/
|
@@ -93633,7 +94938,7 @@ var deprecated = [{
|
|
93633 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
93634 |
|
93635 |
/***/ }),
|
93636 |
-
/*
|
93637 |
/*!*****************************************!*\
|
93638 |
!*** ./src/blocks/icon-list/style.scss ***!
|
93639 |
\*****************************************/
|
@@ -93643,7 +94948,7 @@ var deprecated = [{
|
|
93643 |
// removed by extract-text-webpack-plugin
|
93644 |
|
93645 |
/***/ }),
|
93646 |
-
/*
|
93647 |
/*!******************************************!*\
|
93648 |
!*** ./src/blocks/icon-list/editor.scss ***!
|
93649 |
\******************************************/
|
@@ -93653,7 +94958,7 @@ var deprecated = [{
|
|
93653 |
// removed by extract-text-webpack-plugin
|
93654 |
|
93655 |
/***/ }),
|
93656 |
-
/*
|
93657 |
/*!*********************************************!*\
|
93658 |
!*** ./src/blocks/icon-list-child/block.js ***!
|
93659 |
\*********************************************/
|
@@ -93662,14 +94967,14 @@ var deprecated = [{
|
|
93662 |
|
93663 |
"use strict";
|
93664 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
93665 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
93666 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
93667 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
93668 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
93669 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
93670 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
93671 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
93672 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */
|
93673 |
/**
|
93674 |
* BLOCK: Icon List - Child
|
93675 |
*/
|
@@ -93699,7 +95004,7 @@ registerBlockType("uagb/icon-list-child", {
|
|
93699 |
});
|
93700 |
|
93701 |
/***/ }),
|
93702 |
-
/*
|
93703 |
/*!********************************************!*\
|
93704 |
!*** ./src/blocks/icon-list-child/edit.js ***!
|
93705 |
\********************************************/
|
@@ -93714,7 +95019,7 @@ registerBlockType("uagb/icon-list-child", {
|
|
93714 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
|
93715 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
93716 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
93717 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */
|
93718 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
93719 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
93720 |
|
@@ -94315,7 +95620,7 @@ var UAGBIconListChild = function (_Component) {
|
|
94315 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBIconListChild);
|
94316 |
|
94317 |
/***/ }),
|
94318 |
-
/*
|
94319 |
/*!***********************************************!*\
|
94320 |
!*** ./src/blocks/icon-list-child/styling.js ***!
|
94321 |
\***********************************************/
|
@@ -94383,7 +95688,7 @@ function styling(props) {
|
|
94383 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
94384 |
|
94385 |
/***/ }),
|
94386 |
-
/*
|
94387 |
/*!********************************************!*\
|
94388 |
!*** ./src/blocks/icon-list-child/save.js ***!
|
94389 |
\********************************************/
|
@@ -94467,7 +95772,7 @@ function save(props) {
|
|
94467 |
}
|
94468 |
|
94469 |
/***/ }),
|
94470 |
-
/*
|
94471 |
/*!***********************************************!*\
|
94472 |
!*** ./src/blocks/icon-list-child/style.scss ***!
|
94473 |
\***********************************************/
|
@@ -94477,7 +95782,7 @@ function save(props) {
|
|
94477 |
// removed by extract-text-webpack-plugin
|
94478 |
|
94479 |
/***/ }),
|
94480 |
-
/*
|
94481 |
/*!************************************************!*\
|
94482 |
!*** ./src/blocks/icon-list-child/editor.scss ***!
|
94483 |
\************************************************/
|
@@ -94487,7 +95792,7 @@ function save(props) {
|
|
94487 |
// removed by extract-text-webpack-plugin
|
94488 |
|
94489 |
/***/ }),
|
94490 |
-
/*
|
94491 |
/*!**************************************************!*\
|
94492 |
!*** ./src/blocks/icon-list-child/deprecated.js ***!
|
94493 |
\**************************************************/
|
@@ -94499,7 +95804,7 @@ function save(props) {
|
|
94499 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
94500 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
94501 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
94502 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
94503 |
/**
|
94504 |
* BLOCK: Icon List - Child - Deprecated Block
|
94505 |
*/
|
@@ -94576,7 +95881,7 @@ var deprecated = [{
|
|
94576 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
94577 |
|
94578 |
/***/ }),
|
94579 |
-
/*
|
94580 |
/*!****************************************!*\
|
94581 |
!*** ./src/blocks/price-list/block.js ***!
|
94582 |
\****************************************/
|
@@ -94585,13 +95890,13 @@ var deprecated = [{
|
|
94585 |
|
94586 |
"use strict";
|
94587 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
94588 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
94589 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */
|
94590 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */
|
94591 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
94592 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
94593 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
94594 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
94595 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
94596 |
var _registerBlockType;
|
94597 |
|
@@ -94669,7 +95974,7 @@ registerBlockType("uagb/restaurant-menu", (_registerBlockType = {
|
|
94669 |
addFilter('editor.BlockEdit', 'uagb/restaurant-menu', withPriceList);
|
94670 |
|
94671 |
/***/ }),
|
94672 |
-
/*
|
94673 |
/*!***************************************!*\
|
94674 |
!*** ./src/blocks/price-list/edit.js ***!
|
94675 |
\***************************************/
|
@@ -94680,8 +95985,8 @@ addFilter('editor.BlockEdit', 'uagb/restaurant-menu', withPriceList);
|
|
94680 |
"use strict";
|
94681 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
94682 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
94683 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__classes__ = __webpack_require__(/*! ./classes */
|
94684 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
94685 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
94686 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_times__);
|
94687 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
@@ -95501,7 +96806,7 @@ var UAGBRestaurantMenu = function (_Component) {
|
|
95501 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBRestaurantMenu);
|
95502 |
|
95503 |
/***/ }),
|
95504 |
-
/*
|
95505 |
/*!************************************************!*\
|
95506 |
!*** ./src/blocks/price-list/inline-styles.js ***!
|
95507 |
\************************************************/
|
@@ -95718,7 +97023,7 @@ function RestMenuStyle(props) {
|
|
95718 |
/* harmony default export */ __webpack_exports__["a"] = (RestMenuStyle);
|
95719 |
|
95720 |
/***/ }),
|
95721 |
-
/*
|
95722 |
/*!***************************************!*\
|
95723 |
!*** ./src/blocks/price-list/save.js ***!
|
95724 |
\***************************************/
|
@@ -95755,7 +97060,7 @@ function save(props) {
|
|
95755 |
}
|
95756 |
|
95757 |
/***/ }),
|
95758 |
-
/*
|
95759 |
/*!*********************************************!*\
|
95760 |
!*** ./src/blocks/price-list/deprecated.js ***!
|
95761 |
\*********************************************/
|
@@ -95766,12 +97071,12 @@ function save(props) {
|
|
95766 |
"use strict";
|
95767 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
95768 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
95769 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
95770 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__price_list_child_components_Title__ = __webpack_require__(/*! ../price-list-child/components/Title */
|
95771 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__price_list_child_components_Price__ = __webpack_require__(/*! ../price-list-child/components/Price */
|
95772 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__price_list_child_components_Description__ = __webpack_require__(/*! ../price-list-child/components/Description */
|
95773 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */
|
95774 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__price_list_child_components_RestMenuImage__ = __webpack_require__(/*! ../price-list-child/components/RestMenuImage */
|
95775 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
95776 |
|
95777 |
/**
|
@@ -95947,7 +97252,7 @@ var deprecated = [{
|
|
95947 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
95948 |
|
95949 |
/***/ }),
|
95950 |
-
/*
|
95951 |
/*!******************************************!*\
|
95952 |
!*** ./src/blocks/price-list/style.scss ***!
|
95953 |
\******************************************/
|
@@ -95957,7 +97262,7 @@ var deprecated = [{
|
|
95957 |
// removed by extract-text-webpack-plugin
|
95958 |
|
95959 |
/***/ }),
|
95960 |
-
/*
|
95961 |
/*!*******************************************!*\
|
95962 |
!*** ./src/blocks/price-list/editor.scss ***!
|
95963 |
\*******************************************/
|
@@ -95967,7 +97272,7 @@ var deprecated = [{
|
|
95967 |
// removed by extract-text-webpack-plugin
|
95968 |
|
95969 |
/***/ }),
|
95970 |
-
/*
|
95971 |
/*!**********************************************!*\
|
95972 |
!*** ./src/blocks/price-list-child/block.js ***!
|
95973 |
\**********************************************/
|
@@ -95976,10 +97281,10 @@ var deprecated = [{
|
|
95976 |
|
95977 |
"use strict";
|
95978 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
95979 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
95980 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */
|
95981 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */
|
95982 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
95983 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
95984 |
/**
|
95985 |
* BLOCK: Price List
|
@@ -96013,7 +97318,7 @@ registerBlockType("uagb/restaurant-menu-child", {
|
|
96013 |
});
|
96014 |
|
96015 |
/***/ }),
|
96016 |
-
/*
|
96017 |
/*!*********************************************!*\
|
96018 |
!*** ./src/blocks/price-list-child/edit.js ***!
|
96019 |
\*********************************************/
|
@@ -96024,11 +97329,11 @@ registerBlockType("uagb/restaurant-menu-child", {
|
|
96024 |
"use strict";
|
96025 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
96026 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
96027 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__price_list_classes__ = __webpack_require__(/*! ../price-list/classes */
|
96028 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */
|
96029 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! ./components/Title */
|
96030 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Price__ = __webpack_require__(/*! ./components/Price */
|
96031 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */
|
96032 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
96033 |
|
96034 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
@@ -96276,7 +97581,7 @@ var UAGBRestaurantMenuChild = function (_Component) {
|
|
96276 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBRestaurantMenuChild);
|
96277 |
|
96278 |
/***/ }),
|
96279 |
-
/*
|
96280 |
/*!*********************************************!*\
|
96281 |
!*** ./src/blocks/price-list-child/save.js ***!
|
96282 |
\*********************************************/
|
@@ -96288,11 +97593,11 @@ var UAGBRestaurantMenuChild = function (_Component) {
|
|
96288 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
96289 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
96290 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
96291 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */
|
96292 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Price__ = __webpack_require__(/*! ./components/Price */
|
96293 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */
|
96294 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__price_list_classes__ = __webpack_require__(/*! ../price-list/classes */
|
96295 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */
|
96296 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
96297 |
|
96298 |
/**
|
@@ -96376,7 +97681,7 @@ function save(props) {
|
|
96376 |
}
|
96377 |
|
96378 |
/***/ }),
|
96379 |
-
/*
|
96380 |
/*!***************************************************!*\
|
96381 |
!*** ./src/blocks/price-list-child/attributes.js ***!
|
96382 |
\***************************************************/
|
@@ -96445,7 +97750,7 @@ var attributes = {
|
|
96445 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
96446 |
|
96447 |
/***/ }),
|
96448 |
-
/*
|
96449 |
/*!************************************************!*\
|
96450 |
!*** ./src/blocks/price-list-child/style.scss ***!
|
96451 |
\************************************************/
|
@@ -96455,7 +97760,7 @@ var attributes = {
|
|
96455 |
// removed by extract-text-webpack-plugin
|
96456 |
|
96457 |
/***/ }),
|
96458 |
-
/*
|
96459 |
/*!**************************************!*\
|
96460 |
!*** ./src/blocks/timeline/block.js ***!
|
96461 |
\**************************************/
|
@@ -96463,15 +97768,15 @@ var attributes = {
|
|
96463 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
96464 |
|
96465 |
"use strict";
|
96466 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__content_timeline_block_js__ = __webpack_require__(/*! ./content-timeline/block.js */
|
96467 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__content_timeline_child_block_js__ = __webpack_require__(/*! ./content-timeline-child/block.js */
|
96468 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__post_timeline_block_js__ = __webpack_require__(/*! ./post-timeline/block.js */
|
96469 |
|
96470 |
|
96471 |
|
96472 |
|
96473 |
/***/ }),
|
96474 |
-
/*
|
96475 |
/*!*******************************************************!*\
|
96476 |
!*** ./src/blocks/timeline/content-timeline/block.js ***!
|
96477 |
\*******************************************************/
|
@@ -96480,14 +97785,14 @@ var attributes = {
|
|
96480 |
|
96481 |
"use strict";
|
96482 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
96483 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! .././style.scss */
|
96484 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
96485 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */
|
96486 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
96487 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */
|
96488 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */
|
96489 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__attributes__ = __webpack_require__(/*! ./attributes */
|
96490 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__edit__ = __webpack_require__(/*! ./edit */
|
96491 |
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
|
96492 |
|
96493 |
/**
|
@@ -96606,7 +97911,7 @@ registerBlockType("uagb/content-timeline", {
|
|
96606 |
addFilter('editor.BlockEdit', 'uagb/content-timeline', withcontentTimeline);
|
96607 |
|
96608 |
/***/ }),
|
96609 |
-
/*
|
96610 |
/*!*********************************************************!*\
|
96611 |
!*** ./src/blocks/timeline/content-timeline/style.scss ***!
|
96612 |
\*********************************************************/
|
@@ -96616,7 +97921,7 @@ addFilter('editor.BlockEdit', 'uagb/content-timeline', withcontentTimeline);
|
|
96616 |
// removed by extract-text-webpack-plugin
|
96617 |
|
96618 |
/***/ }),
|
96619 |
-
/*
|
96620 |
/*!************************************************************!*\
|
96621 |
!*** ./src/blocks/timeline/content-timeline/deprecated.js ***!
|
96622 |
\************************************************************/
|
@@ -96627,11 +97932,11 @@ addFilter('editor.BlockEdit', 'uagb/content-timeline', withcontentTimeline);
|
|
96627 |
"use strict";
|
96628 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
96629 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
96630 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
96631 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! .././inline-styles */
|
96632 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! .././classes */
|
96633 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__align_classes__ = __webpack_require__(/*! .././align-classes */
|
96634 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__day_align_classes__ = __webpack_require__(/*! .././day-align-classes */
|
96635 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
96636 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
96637 |
|
@@ -97199,7 +98504,7 @@ var deprecated = [{
|
|
97199 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
97200 |
|
97201 |
/***/ }),
|
97202 |
-
/*
|
97203 |
/*!******************************************************!*\
|
97204 |
!*** ./src/blocks/timeline/content-timeline/save.js ***!
|
97205 |
\******************************************************/
|
@@ -97211,8 +98516,8 @@ var deprecated = [{
|
|
97211 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
97212 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
97213 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
97214 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
97215 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__classes__ = __webpack_require__(/*! .././classes */
|
97216 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
97217 |
|
97218 |
/**
|
@@ -97259,7 +98564,7 @@ function save(props) {
|
|
97259 |
}
|
97260 |
|
97261 |
/***/ }),
|
97262 |
-
/*
|
97263 |
/*!******************************************************!*\
|
97264 |
!*** ./src/blocks/timeline/content-timeline/edit.js ***!
|
97265 |
\******************************************************/
|
@@ -97278,8 +98583,8 @@ function save(props) {
|
|
97278 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__);
|
97279 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
97280 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__fonticonpicker_react_fonticonpicker__);
|
97281 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */
|
97282 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! .././classes */
|
97283 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
97284 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
97285 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
@@ -97340,6 +98645,8 @@ var ALLOWED_BLOCKS = ["uagb/content-timeline-child"];
|
|
97340 |
|
97341 |
var svg_icons = Object.keys(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default.a);
|
97342 |
|
|
|
|
|
97343 |
var UAGBcontentTimeline = function (_Component) {
|
97344 |
_inherits(UAGBcontentTimeline, _Component);
|
97345 |
|
@@ -98192,7 +99499,7 @@ var UAGBcontentTimeline = function (_Component) {
|
|
98192 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBcontentTimeline);
|
98193 |
|
98194 |
/***/ }),
|
98195 |
-
/*
|
98196 |
/*!*************************************************************!*\
|
98197 |
!*** ./src/blocks/timeline/content-timeline-child/block.js ***!
|
98198 |
\*************************************************************/
|
@@ -98201,14 +99508,14 @@ var UAGBcontentTimeline = function (_Component) {
|
|
98201 |
|
98202 |
"use strict";
|
98203 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
98204 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! .././style.scss */
|
98205 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
98206 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */
|
98207 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
98208 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
98209 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
98210 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__edit__ = __webpack_require__(/*! ./edit */
|
98211 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */
|
98212 |
/**
|
98213 |
* BLOCK: Content Timeline Child
|
98214 |
*/
|
@@ -98239,7 +99546,7 @@ registerBlockType("uagb/content-timeline-child", {
|
|
98239 |
});
|
98240 |
|
98241 |
/***/ }),
|
98242 |
-
/*
|
98243 |
/*!***************************************************************!*\
|
98244 |
!*** ./src/blocks/timeline/content-timeline-child/style.scss ***!
|
98245 |
\***************************************************************/
|
@@ -98249,7 +99556,7 @@ registerBlockType("uagb/content-timeline-child", {
|
|
98249 |
// removed by extract-text-webpack-plugin
|
98250 |
|
98251 |
/***/ }),
|
98252 |
-
/*
|
98253 |
/*!************************************************************!*\
|
98254 |
!*** ./src/blocks/timeline/content-timeline-child/save.js ***!
|
98255 |
\************************************************************/
|
@@ -98372,7 +99679,7 @@ function save(props) {
|
|
98372 |
}
|
98373 |
|
98374 |
/***/ }),
|
98375 |
-
/*
|
98376 |
/*!************************************************************!*\
|
98377 |
!*** ./src/blocks/timeline/content-timeline-child/edit.js ***!
|
98378 |
\************************************************************/
|
@@ -98613,7 +99920,7 @@ var UAGBcontentTimelineChild = function (_Component) {
|
|
98613 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBcontentTimelineChild);
|
98614 |
|
98615 |
/***/ }),
|
98616 |
-
/*
|
98617 |
/*!******************************************************************!*\
|
98618 |
!*** ./src/blocks/timeline/content-timeline-child/deprecated.js ***!
|
98619 |
\******************************************************************/
|
@@ -98624,7 +99931,7 @@ var UAGBcontentTimelineChild = function (_Component) {
|
|
98624 |
"use strict";
|
98625 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
98626 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
98627 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
98628 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
98629 |
|
98630 |
|
@@ -98740,7 +100047,7 @@ var deprecated = [{
|
|
98740 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
98741 |
|
98742 |
/***/ }),
|
98743 |
-
/*
|
98744 |
/*!****************************************************!*\
|
98745 |
!*** ./src/blocks/timeline/post-timeline/block.js ***!
|
98746 |
\****************************************************/
|
@@ -98750,11 +100057,11 @@ var deprecated = [{
|
|
98750 |
"use strict";
|
98751 |
/* unused harmony export name */
|
98752 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
98753 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! .././style.scss */
|
98754 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
98755 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! .././editor.scss */
|
98756 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
98757 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */
|
98758 |
/**
|
98759 |
* BLOCK: Post Timeline Js.
|
98760 |
*/
|
@@ -98793,7 +100100,7 @@ registerBlockType("uagb/post-timeline", {
|
|
98793 |
});
|
98794 |
|
98795 |
/***/ }),
|
98796 |
-
/*
|
98797 |
/*!*****************************************!*\
|
98798 |
!*** ./src/blocks/timeline/editor.scss ***!
|
98799 |
\*****************************************/
|
@@ -98803,7 +100110,7 @@ registerBlockType("uagb/post-timeline", {
|
|
98803 |
// removed by extract-text-webpack-plugin
|
98804 |
|
98805 |
/***/ }),
|
98806 |
-
/*
|
98807 |
/*!***************************************************!*\
|
98808 |
!*** ./src/blocks/timeline/post-timeline/edit.js ***!
|
98809 |
\***************************************************/
|
@@ -98812,11 +100119,11 @@ registerBlockType("uagb/post-timeline", {
|
|
98812 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
98813 |
|
98814 |
"use strict";
|
98815 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__ = __webpack_require__(/*! lodash/isUndefined */
|
98816 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__);
|
98817 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__ = __webpack_require__(/*! lodash/pickBy */
|
98818 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__);
|
98819 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map__ = __webpack_require__(/*! lodash/map */
|
98820 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
|
98821 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_classnames__ = __webpack_require__(/*! classnames */ 0);
|
98822 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_classnames__);
|
@@ -98825,17 +100132,17 @@ registerBlockType("uagb/post-timeline", {
|
|
98825 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
98826 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__fonticonpicker_react_fonticonpicker__);
|
98827 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
98828 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__inline_styles__ = __webpack_require__(/*! .././inline-styles */
|
98829 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__classes__ = __webpack_require__(/*! .././classes */
|
98830 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__align_classes__ = __webpack_require__(/*! .././align-classes */
|
98831 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__day_align_classes__ = __webpack_require__(/*! .././day-align-classes */
|
98832 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_Title__ = __webpack_require__(/*! ./components/Title */
|
98833 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__components_FeaturedImage__ = __webpack_require__(/*! ./components/FeaturedImage */
|
98834 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__components_Excerpt__ = __webpack_require__(/*! ./components/Excerpt */
|
98835 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__components_CtaLink__ = __webpack_require__(/*! ./components/CtaLink */
|
98836 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__components_Author__ = __webpack_require__(/*! ./components/Author */
|
98837 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__components_PostDate__ = __webpack_require__(/*! ./components/PostDate */
|
98838 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__components_Icon__ = __webpack_require__(/*! ./components/Icon */
|
98839 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
98840 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
98841 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
@@ -98910,6 +100217,8 @@ var _wp$blockEditor = wp.blockEditor,
|
|
98910 |
|
98911 |
var svg_icons = Object.keys(__WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json___default.a);
|
98912 |
|
|
|
|
|
98913 |
var UAGBTimeline = function (_Component) {
|
98914 |
_inherits(UAGBTimeline, _Component);
|
98915 |
|
@@ -100253,7 +101562,7 @@ var UAGBTimeline = function (_Component) {
|
|
100253 |
})(UAGBTimeline));
|
100254 |
|
100255 |
/***/ }),
|
100256 |
-
/*
|
100257 |
/*!********************************************!*\
|
100258 |
!*** ./node_modules/lodash/isUndefined.js ***!
|
100259 |
\********************************************/
|
@@ -100285,17 +101594,17 @@ module.exports = isUndefined;
|
|
100285 |
|
100286 |
|
100287 |
/***/ }),
|
100288 |
-
/*
|
100289 |
/*!***************************************!*\
|
100290 |
!*** ./node_modules/lodash/pickBy.js ***!
|
100291 |
\***************************************/
|
100292 |
/*! dynamic exports provided */
|
100293 |
/***/ (function(module, exports, __webpack_require__) {
|
100294 |
|
100295 |
-
var arrayMap = __webpack_require__(/*! ./_arrayMap */
|
100296 |
-
baseIteratee = __webpack_require__(/*! ./_baseIteratee */
|
100297 |
-
basePickBy = __webpack_require__(/*! ./_basePickBy */
|
100298 |
-
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */
|
100299 |
|
100300 |
/**
|
100301 |
* Creates an object composed of the `object` properties `predicate` returns
|
@@ -100332,7 +101641,7 @@ module.exports = pickBy;
|
|
100332 |
|
100333 |
|
100334 |
/***/ }),
|
100335 |
-
/*
|
100336 |
/*!********************************************!*\
|
100337 |
!*** ./node_modules/lodash/_basePickBy.js ***!
|
100338 |
\********************************************/
|
@@ -100340,8 +101649,8 @@ module.exports = pickBy;
|
|
100340 |
/*! all exports used */
|
100341 |
/***/ (function(module, exports, __webpack_require__) {
|
100342 |
|
100343 |
-
var baseGet = __webpack_require__(/*! ./_baseGet */
|
100344 |
-
baseSet = __webpack_require__(/*! ./_baseSet */
|
100345 |
castPath = __webpack_require__(/*! ./_castPath */ 30);
|
100346 |
|
100347 |
/**
|
@@ -100373,7 +101682,7 @@ module.exports = basePickBy;
|
|
100373 |
|
100374 |
|
100375 |
/***/ }),
|
100376 |
-
/*
|
100377 |
/*!*****************************************!*\
|
100378 |
!*** ./node_modules/lodash/_baseSet.js ***!
|
100379 |
\*****************************************/
|
@@ -100381,9 +101690,9 @@ module.exports = basePickBy;
|
|
100381 |
/*! all exports used */
|
100382 |
/***/ (function(module, exports, __webpack_require__) {
|
100383 |
|
100384 |
-
var assignValue = __webpack_require__(/*! ./_assignValue */
|
100385 |
castPath = __webpack_require__(/*! ./_castPath */ 30),
|
100386 |
-
isIndex = __webpack_require__(/*! ./_isIndex */
|
100387 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
100388 |
toKey = __webpack_require__(/*! ./_toKey */ 31);
|
100389 |
|
@@ -100431,7 +101740,7 @@ module.exports = baseSet;
|
|
100431 |
|
100432 |
|
100433 |
/***/ }),
|
100434 |
-
/*
|
100435 |
/*!***************************************************************!*\
|
100436 |
!*** ./src/blocks/timeline/post-timeline/components/Title.js ***!
|
100437 |
\***************************************************************/
|
@@ -100497,7 +101806,7 @@ var Title = function (_React$Component) {
|
|
100497 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
100498 |
|
100499 |
/***/ }),
|
100500 |
-
/*
|
100501 |
/*!***********************************************************************!*\
|
100502 |
!*** ./src/blocks/timeline/post-timeline/components/FeaturedImage.js ***!
|
100503 |
\***********************************************************************/
|
@@ -100566,7 +101875,7 @@ var FeaturedImage = function (_React$Component) {
|
|
100566 |
/* harmony default export */ __webpack_exports__["a"] = (FeaturedImage);
|
100567 |
|
100568 |
/***/ }),
|
100569 |
-
/*
|
100570 |
/*!*****************************************************************!*\
|
100571 |
!*** ./src/blocks/timeline/post-timeline/components/Excerpt.js ***!
|
100572 |
\*****************************************************************/
|
@@ -100625,7 +101934,7 @@ var Excerpt = function (_React$Component) {
|
|
100625 |
/* harmony default export */ __webpack_exports__["a"] = (Excerpt);
|
100626 |
|
100627 |
/***/ }),
|
100628 |
-
/*
|
100629 |
/*!*****************************************************************!*\
|
100630 |
!*** ./src/blocks/timeline/post-timeline/components/CtaLink.js ***!
|
100631 |
\*****************************************************************/
|
@@ -100685,7 +101994,7 @@ var CtaLink = function (_React$Component) {
|
|
100685 |
/* harmony default export */ __webpack_exports__["a"] = (CtaLink);
|
100686 |
|
100687 |
/***/ }),
|
100688 |
-
/*
|
100689 |
/*!****************************************************************!*\
|
100690 |
!*** ./src/blocks/timeline/post-timeline/components/Author.js ***!
|
100691 |
\****************************************************************/
|
@@ -100749,7 +102058,7 @@ var Author = function (_React$Component) {
|
|
100749 |
/* harmony default export */ __webpack_exports__["a"] = (Author);
|
100750 |
|
100751 |
/***/ }),
|
100752 |
-
/*
|
100753 |
/*!******************************************************************!*\
|
100754 |
!*** ./src/blocks/timeline/post-timeline/components/PostDate.js ***!
|
100755 |
\******************************************************************/
|
@@ -100809,7 +102118,7 @@ var PostDate = function (_React$Component) {
|
|
100809 |
/* harmony default export */ __webpack_exports__["a"] = (PostDate);
|
100810 |
|
100811 |
/***/ }),
|
100812 |
-
/*
|
100813 |
/*!**************************************************************!*\
|
100814 |
!*** ./src/blocks/timeline/post-timeline/components/Icon.js ***!
|
100815 |
\**************************************************************/
|
@@ -100863,7 +102172,7 @@ var Icon = function (_React$Component) {
|
|
100863 |
/* harmony default export */ __webpack_exports__["a"] = (Icon);
|
100864 |
|
100865 |
/***/ }),
|
100866 |
-
/*
|
100867 |
/*!********************************************!*\
|
100868 |
!*** ./src/blocks/call-to-action/block.js ***!
|
100869 |
\********************************************/
|
@@ -100872,13 +102181,13 @@ var Icon = function (_React$Component) {
|
|
100872 |
|
100873 |
"use strict";
|
100874 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
100875 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
100876 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */
|
100877 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */
|
100878 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
100879 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
100880 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
100881 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
100882 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
100883 |
/**
|
100884 |
* BLOCK: Call To Action.
|
@@ -100916,7 +102225,7 @@ registerBlockType("uagb/call-to-action", {
|
|
100916 |
});
|
100917 |
|
100918 |
/***/ }),
|
100919 |
-
/*
|
100920 |
/*!*******************************************!*\
|
100921 |
!*** ./src/blocks/call-to-action/edit.js ***!
|
100922 |
\*******************************************/
|
@@ -100931,12 +102240,12 @@ registerBlockType("uagb/call-to-action", {
|
|
100931 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
|
100932 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
100933 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
100934 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! ./components/Title */
|
100935 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Description__ = __webpack_require__(/*! ./components/Description */
|
100936 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */
|
100937 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_CTA__ = __webpack_require__(/*! ./components/CTA */
|
100938 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
100939 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
100940 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
100941 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
100942 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
@@ -101840,7 +103149,7 @@ var UAGBCallToAction = function (_Component) {
|
|
101840 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBCallToAction);
|
101841 |
|
101842 |
/***/ }),
|
101843 |
-
/*
|
101844 |
/*!****************************************************!*\
|
101845 |
!*** ./src/blocks/call-to-action/inline-styles.js ***!
|
101846 |
\****************************************************/
|
@@ -102077,7 +103386,7 @@ function CtaStyle(props) {
|
|
102077 |
/* harmony default export */ __webpack_exports__["a"] = (CtaStyle);
|
102078 |
|
102079 |
/***/ }),
|
102080 |
-
/*
|
102081 |
/*!*******************************************!*\
|
102082 |
!*** ./src/blocks/call-to-action/save.js ***!
|
102083 |
\*******************************************/
|
@@ -102089,10 +103398,10 @@ function CtaStyle(props) {
|
|
102089 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
102090 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
102091 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
102092 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */
|
102093 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */
|
102094 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! ./classes */
|
102095 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_CTA__ = __webpack_require__(/*! ./components/CTA */
|
102096 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
102097 |
|
102098 |
/**
|
@@ -102206,7 +103515,7 @@ function save(props) {
|
|
102206 |
}
|
102207 |
|
102208 |
/***/ }),
|
102209 |
-
/*
|
102210 |
/*!*************************************************!*\
|
102211 |
!*** ./src/blocks/call-to-action/deprecated.js ***!
|
102212 |
\*************************************************/
|
@@ -102217,12 +103526,12 @@ function save(props) {
|
|
102217 |
"use strict";
|
102218 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
102219 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
102220 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */
|
102221 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */
|
102222 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! ./classes */
|
102223 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */
|
102224 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_CTA__ = __webpack_require__(/*! ./components/CTA */
|
102225 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */
|
102226 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
102227 |
|
102228 |
/**
|
@@ -102545,7 +103854,7 @@ var deprecated = [{
|
|
102545 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
102546 |
|
102547 |
/***/ }),
|
102548 |
-
/*
|
102549 |
/*!**************************************************************!*\
|
102550 |
!*** ./src/blocks/call-to-action/components/CallToAction.js ***!
|
102551 |
\**************************************************************/
|
@@ -102639,7 +103948,7 @@ var CallToAction = function (_React$Component) {
|
|
102639 |
/* harmony default export */ __webpack_exports__["a"] = (CallToAction);
|
102640 |
|
102641 |
/***/ }),
|
102642 |
-
/*
|
102643 |
/*!***********************************************!*\
|
102644 |
!*** ./src/blocks/call-to-action/editor.scss ***!
|
102645 |
\***********************************************/
|
@@ -102649,7 +103958,7 @@ var CallToAction = function (_React$Component) {
|
|
102649 |
// removed by extract-text-webpack-plugin
|
102650 |
|
102651 |
/***/ }),
|
102652 |
-
/*
|
102653 |
/*!**********************************************!*\
|
102654 |
!*** ./src/blocks/call-to-action/style.scss ***!
|
102655 |
\**********************************************/
|
@@ -102659,7 +103968,7 @@ var CallToAction = function (_React$Component) {
|
|
102659 |
// removed by extract-text-webpack-plugin
|
102660 |
|
102661 |
/***/ }),
|
102662 |
-
/*
|
102663 |
/*!************************************!*\
|
102664 |
!*** ./src/blocks/column/block.js ***!
|
102665 |
\************************************/
|
@@ -102668,13 +103977,13 @@ var CallToAction = function (_React$Component) {
|
|
102668 |
|
102669 |
"use strict";
|
102670 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
102671 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
102672 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */
|
102673 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */
|
102674 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
102675 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
102676 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
102677 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
102678 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
102679 |
/**
|
102680 |
* BLOCK: Column
|
@@ -102710,7 +104019,7 @@ registerBlockType("uagb/column", {
|
|
102710 |
});
|
102711 |
|
102712 |
/***/ }),
|
102713 |
-
/*
|
102714 |
/*!***********************************!*\
|
102715 |
!*** ./src/blocks/column/edit.js ***!
|
102716 |
\***********************************/
|
@@ -102722,8 +104031,8 @@ registerBlockType("uagb/column", {
|
|
102722 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
102723 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
102724 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
102725 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */
|
102726 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */
|
102727 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
102728 |
|
102729 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
@@ -103767,7 +105076,7 @@ var UAGBColumnEdit = function (_Component) {
|
|
103767 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBColumnEdit);
|
103768 |
|
103769 |
/***/ }),
|
103770 |
-
/*
|
103771 |
/*!**************************************!*\
|
103772 |
!*** ./src/blocks/column/styling.js ***!
|
103773 |
\**************************************/
|
@@ -103776,7 +105085,7 @@ var UAGBColumnEdit = function (_Component) {
|
|
103776 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
103777 |
|
103778 |
"use strict";
|
103779 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
103780 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 4);
|
103781 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 3);
|
103782 |
/**
|
@@ -103924,7 +105233,7 @@ function styling(props) {
|
|
103924 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
103925 |
|
103926 |
/***/ }),
|
103927 |
-
/*
|
103928 |
/*!********************************************!*\
|
103929 |
!*** ./src/blocks/column/inline-styles.js ***!
|
103930 |
\********************************************/
|
@@ -104010,7 +105319,7 @@ function inlineStyles(props, isEditor) {
|
|
104010 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
104011 |
|
104012 |
/***/ }),
|
104013 |
-
/*
|
104014 |
/*!***********************************!*\
|
104015 |
!*** ./src/blocks/column/save.js ***!
|
104016 |
\***********************************/
|
@@ -104060,7 +105369,7 @@ function save(_ref) {
|
|
104060 |
}
|
104061 |
|
104062 |
/***/ }),
|
104063 |
-
/*
|
104064 |
/*!*****************************************!*\
|
104065 |
!*** ./src/blocks/column/deprecated.js ***!
|
104066 |
\*****************************************/
|
@@ -104071,7 +105380,7 @@ function save(_ref) {
|
|
104071 |
"use strict";
|
104072 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
104073 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
104074 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
104075 |
/**
|
104076 |
* BLOCK: Column - Deprecated Block
|
104077 |
*/
|
@@ -104121,7 +105430,7 @@ var deprecated = [{
|
|
104121 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
104122 |
|
104123 |
/***/ }),
|
104124 |
-
/*
|
104125 |
/*!**************************************!*\
|
104126 |
!*** ./src/blocks/column/style.scss ***!
|
104127 |
\**************************************/
|
@@ -104131,7 +105440,7 @@ var deprecated = [{
|
|
104131 |
// removed by extract-text-webpack-plugin
|
104132 |
|
104133 |
/***/ }),
|
104134 |
-
/*
|
104135 |
/*!***************************************!*\
|
104136 |
!*** ./src/blocks/column/editor.scss ***!
|
104137 |
\***************************************/
|
@@ -104141,7 +105450,7 @@ var deprecated = [{
|
|
104141 |
// removed by extract-text-webpack-plugin
|
104142 |
|
104143 |
/***/ }),
|
104144 |
-
/*
|
104145 |
/*!*************************************!*\
|
104146 |
!*** ./src/blocks/columns/block.js ***!
|
104147 |
\*************************************/
|
@@ -104152,14 +105461,14 @@ var deprecated = [{
|
|
104152 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
104153 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
104154 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
104155 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
104156 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */
|
104157 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
104158 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__shapes__ = __webpack_require__(/*! ./shapes */
|
104159 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__variations__ = __webpack_require__(/*! ./variations */
|
104160 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss__ = __webpack_require__(/*! ./style.scss */
|
104161 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__style_scss__);
|
104162 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
104163 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__editor_scss__);
|
104164 |
/**
|
104165 |
* BLOCK: Columns
|
@@ -104271,7 +105580,7 @@ registerBlockType("uagb/columns", {
|
|
104271 |
});
|
104272 |
|
104273 |
/***/ }),
|
104274 |
-
/*
|
104275 |
/*!************************************!*\
|
104276 |
!*** ./src/blocks/columns/edit.js ***!
|
104277 |
\************************************/
|
@@ -104280,23 +105589,23 @@ registerBlockType("uagb/columns", {
|
|
104280 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
104281 |
|
104282 |
"use strict";
|
104283 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__components_option_selector_control__ = __webpack_require__(/*! ../../components/option-selector-control */
|
104284 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
|
104285 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
|
104286 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */
|
104287 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 19);
|
104288 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
104289 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
104290 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
|
104291 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map__ = __webpack_require__(/*! lodash/map */
|
104292 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_lodash_map__);
|
104293 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__ = __webpack_require__(/*! lodash/dropRight */
|
104294 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__);
|
104295 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
104296 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__shapes__ = __webpack_require__(/*! ./shapes */
|
104297 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */
|
104298 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */
|
104299 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__icons__ = __webpack_require__(/*! ./icons */
|
104300 |
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
|
104301 |
|
104302 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
@@ -105800,7 +107109,7 @@ var applyWithSelect = withSelect(function (select, props) {
|
|
105800 |
/* harmony default export */ __webpack_exports__["a"] = (compose(withNotices, applyWithSelect)(UAGBColumns));
|
105801 |
|
105802 |
/***/ }),
|
105803 |
-
/*
|
105804 |
/*!*********************************************************!*\
|
105805 |
!*** ./src/components/option-selector-control/index.js ***!
|
105806 |
\*********************************************************/
|
@@ -105946,7 +107255,7 @@ var OptionSelectorControl = function (_Component) {
|
|
105946 |
/* harmony default export */ __webpack_exports__["a"] = (OptionSelectorControl);
|
105947 |
|
105948 |
/***/ }),
|
105949 |
-
/*
|
105950 |
/*!***************************************!*\
|
105951 |
!*** ./src/blocks/columns/styling.js ***!
|
105952 |
\***************************************/
|
@@ -105955,9 +107264,9 @@ var OptionSelectorControl = function (_Component) {
|
|
105955 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
105956 |
|
105957 |
"use strict";
|
105958 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
105959 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 4);
|
105960 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */
|
105961 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 3);
|
105962 |
/**
|
105963 |
* Returns Dynamic Generated CSS
|
@@ -106157,7 +107466,7 @@ function styling(props) {
|
|
106157 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
106158 |
|
106159 |
/***/ }),
|
106160 |
-
/*
|
106161 |
/*!*********************************************!*\
|
106162 |
!*** ./src/blocks/columns/inline-styles.js ***!
|
106163 |
\*********************************************/
|
@@ -106227,15 +107536,15 @@ function inlineStyles(props, isEditor) {
|
|
106227 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
106228 |
|
106229 |
/***/ }),
|
106230 |
-
/*
|
106231 |
/*!******************************************!*\
|
106232 |
!*** ./node_modules/lodash/dropRight.js ***!
|
106233 |
\******************************************/
|
106234 |
/*! dynamic exports provided */
|
106235 |
/***/ (function(module, exports, __webpack_require__) {
|
106236 |
|
106237 |
-
var baseSlice = __webpack_require__(/*! ./_baseSlice */
|
106238 |
-
toInteger = __webpack_require__(/*! ./toInteger */
|
106239 |
|
106240 |
/**
|
106241 |
* Creates a slice of `array` with `n` elements dropped from the end.
|
@@ -106276,7 +107585,7 @@ module.exports = dropRight;
|
|
106276 |
|
106277 |
|
106278 |
/***/ }),
|
106279 |
-
/*
|
106280 |
/*!******************************************!*\
|
106281 |
!*** ./src/blocks/columns/deprecated.js ***!
|
106282 |
\******************************************/
|
@@ -106287,8 +107596,8 @@ module.exports = dropRight;
|
|
106287 |
"use strict";
|
106288 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
106289 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
106290 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__shapes__ = __webpack_require__(/*! ./shapes */
|
106291 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
106292 |
/**
|
106293 |
* BLOCK: Columns - Deprecated Block
|
106294 |
*/
|
@@ -106448,7 +107757,7 @@ var deprecated = [{
|
|
106448 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
106449 |
|
106450 |
/***/ }),
|
106451 |
-
/*
|
106452 |
/*!******************************************!*\
|
106453 |
!*** ./src/blocks/columns/variations.js ***!
|
106454 |
\******************************************/
|
@@ -106457,8 +107766,8 @@ var deprecated = [{
|
|
106457 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
106458 |
|
106459 |
"use strict";
|
106460 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__icons__ = __webpack_require__(/*! ./icons */
|
106461 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__wordpress_i18n__ = __webpack_require__(/*! @wordpress/i18n */
|
106462 |
/**
|
106463 |
* Internal dependencies
|
106464 |
*/
|
@@ -106557,7 +107866,7 @@ var variations = [{
|
|
106557 |
/* harmony default export */ __webpack_exports__["a"] = (variations);
|
106558 |
|
106559 |
/***/ }),
|
106560 |
-
/*
|
106561 |
/*!************************************************************!*\
|
106562 |
!*** ./node_modules/@wordpress/i18n/build-module/index.js ***!
|
106563 |
\************************************************************/
|
@@ -106572,11 +107881,11 @@ var variations = [{
|
|
106572 |
/* unused harmony export _n */
|
106573 |
/* unused harmony export _nx */
|
106574 |
/* unused harmony export sprintf */
|
106575 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectSpread__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread */
|
106576 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_tannin__ = __webpack_require__(/*! tannin */
|
106577 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize__ = __webpack_require__(/*! memize */ 19);
|
106578 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_memize__);
|
106579 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js__ = __webpack_require__(/*! sprintf-js */
|
106580 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_sprintf_js__);
|
106581 |
|
106582 |
|
@@ -106754,7 +108063,7 @@ function sprintf(format) {
|
|
106754 |
//# sourceMappingURL=index.js.map
|
106755 |
|
106756 |
/***/ }),
|
106757 |
-
/*
|
106758 |
/*!*****************************************************************!*\
|
106759 |
!*** ./node_modules/@babel/runtime/helpers/esm/objectSpread.js ***!
|
106760 |
\*****************************************************************/
|
@@ -106764,7 +108073,7 @@ function sprintf(format) {
|
|
106764 |
|
106765 |
"use strict";
|
106766 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _objectSpread;
|
106767 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__defineProperty__ = __webpack_require__(/*! ./defineProperty */
|
106768 |
|
106769 |
function _objectSpread(target) {
|
106770 |
for (var i = 1; i < arguments.length; i++) {
|
@@ -106786,7 +108095,7 @@ function _objectSpread(target) {
|
|
106786 |
}
|
106787 |
|
106788 |
/***/ }),
|
106789 |
-
/*
|
106790 |
/*!*******************************************************************!*\
|
106791 |
!*** ./node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
106792 |
\*******************************************************************/
|
@@ -106812,7 +108121,7 @@ function _defineProperty(obj, key, value) {
|
|
106812 |
}
|
106813 |
|
106814 |
/***/ }),
|
106815 |
-
/*
|
106816 |
/*!**************************************!*\
|
106817 |
!*** ./node_modules/tannin/index.js ***!
|
106818 |
\**************************************/
|
@@ -106822,7 +108131,7 @@ function _defineProperty(obj, key, value) {
|
|
106822 |
|
106823 |
"use strict";
|
106824 |
/* harmony export (immutable) */ __webpack_exports__["a"] = Tannin;
|
106825 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_plural_forms__ = __webpack_require__(/*! @tannin/plural-forms */
|
106826 |
|
106827 |
|
106828 |
/**
|
@@ -106966,7 +108275,7 @@ Tannin.prototype.dcnpgettext = function( domain, context, singular, plural, n )
|
|
106966 |
|
106967 |
|
106968 |
/***/ }),
|
106969 |
-
/*
|
106970 |
/*!****************************************************!*\
|
106971 |
!*** ./node_modules/@tannin/plural-forms/index.js ***!
|
106972 |
\****************************************************/
|
@@ -106976,7 +108285,7 @@ Tannin.prototype.dcnpgettext = function( domain, context, singular, plural, n )
|
|
106976 |
|
106977 |
"use strict";
|
106978 |
/* harmony export (immutable) */ __webpack_exports__["a"] = pluralForms;
|
106979 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_compile__ = __webpack_require__(/*! @tannin/compile */
|
106980 |
|
106981 |
|
106982 |
/**
|
@@ -106998,7 +108307,7 @@ function pluralForms( expression ) {
|
|
106998 |
|
106999 |
|
107000 |
/***/ }),
|
107001 |
-
/*
|
107002 |
/*!***********************************************!*\
|
107003 |
!*** ./node_modules/@tannin/compile/index.js ***!
|
107004 |
\***********************************************/
|
@@ -107008,8 +108317,8 @@ function pluralForms( expression ) {
|
|
107008 |
|
107009 |
"use strict";
|
107010 |
/* harmony export (immutable) */ __webpack_exports__["a"] = compile;
|
107011 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_postfix__ = __webpack_require__(/*! @tannin/postfix */
|
107012 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__tannin_evaluate__ = __webpack_require__(/*! @tannin/evaluate */
|
107013 |
|
107014 |
|
107015 |
|
@@ -107042,7 +108351,7 @@ function compile( expression ) {
|
|
107042 |
|
107043 |
|
107044 |
/***/ }),
|
107045 |
-
/*
|
107046 |
/*!***********************************************!*\
|
107047 |
!*** ./node_modules/@tannin/postfix/index.js ***!
|
107048 |
\***********************************************/
|
@@ -107179,7 +108488,7 @@ function postfix( expression ) {
|
|
107179 |
|
107180 |
|
107181 |
/***/ }),
|
107182 |
-
/*
|
107183 |
/*!************************************************!*\
|
107184 |
!*** ./node_modules/@tannin/evaluate/index.js ***!
|
107185 |
\************************************************/
|
@@ -107302,7 +108611,7 @@ function evaluate( postfix, variables ) {
|
|
107302 |
|
107303 |
|
107304 |
/***/ }),
|
107305 |
-
/*
|
107306 |
/*!*****************************************************************************!*\
|
107307 |
!*** ./node_modules/@wordpress/i18n/node_modules/sprintf-js/src/sprintf.js ***!
|
107308 |
\*****************************************************************************/
|
@@ -107545,7 +108854,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
|
|
107545 |
|
107546 |
|
107547 |
/***/ }),
|
107548 |
-
/*
|
107549 |
/*!***************************************!*\
|
107550 |
!*** ./src/blocks/columns/style.scss ***!
|
107551 |
\***************************************/
|
@@ -107555,7 +108864,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
|
|
107555 |
// removed by extract-text-webpack-plugin
|
107556 |
|
107557 |
/***/ }),
|
107558 |
-
/*
|
107559 |
/*!****************************************!*\
|
107560 |
!*** ./src/blocks/columns/editor.scss ***!
|
107561 |
\****************************************/
|
@@ -107565,7 +108874,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
|
|
107565 |
// removed by extract-text-webpack-plugin
|
107566 |
|
107567 |
/***/ }),
|
107568 |
-
/*
|
107569 |
/*!****************************************!*\
|
107570 |
!*** ./src/blocks/cf7-styler/block.js ***!
|
107571 |
\****************************************/
|
@@ -107574,10 +108883,10 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
|
|
107574 |
|
107575 |
"use strict";
|
107576 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
107577 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
107578 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
107579 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
107580 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */
|
107581 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
107582 |
/**
|
107583 |
* BLOCK: Contact Form 7 Styler
|
@@ -107629,7 +108938,7 @@ if (uagb_blocks_info.blocks["uagb/cf7-styler"]["is_active"]) {
|
|
107629 |
}
|
107630 |
|
107631 |
/***/ }),
|
107632 |
-
/*
|
107633 |
/*!***************************************!*\
|
107634 |
!*** ./src/blocks/cf7-styler/edit.js ***!
|
107635 |
\***************************************/
|
@@ -107643,7 +108952,7 @@ if (uagb_blocks_info.blocks["uagb/cf7-styler"]["is_active"]) {
|
|
107643 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
107644 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
107645 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
107646 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */
|
107647 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
107648 |
|
107649 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
@@ -109085,7 +110394,7 @@ var UAGBCF7 = function (_Component) {
|
|
109085 |
})(UAGBCF7));
|
109086 |
|
109087 |
/***/ }),
|
109088 |
-
/*
|
109089 |
/*!******************************************!*\
|
109090 |
!*** ./src/blocks/cf7-styler/styling.js ***!
|
109091 |
\******************************************/
|
@@ -109498,7 +110807,7 @@ function styling(props) {
|
|
109498 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
109499 |
|
109500 |
/***/ }),
|
109501 |
-
/*
|
109502 |
/*!*******************************************!*\
|
109503 |
!*** ./src/blocks/cf7-styler/editor.scss ***!
|
109504 |
\*******************************************/
|
@@ -109508,7 +110817,7 @@ function styling(props) {
|
|
109508 |
// removed by extract-text-webpack-plugin
|
109509 |
|
109510 |
/***/ }),
|
109511 |
-
/*
|
109512 |
/*!******************************************!*\
|
109513 |
!*** ./src/blocks/cf7-styler/style.scss ***!
|
109514 |
\******************************************/
|
@@ -109518,7 +110827,7 @@ function styling(props) {
|
|
109518 |
// removed by extract-text-webpack-plugin
|
109519 |
|
109520 |
/***/ }),
|
109521 |
-
/*
|
109522 |
/*!***************************************!*\
|
109523 |
!*** ./src/blocks/gf-styler/block.js ***!
|
109524 |
\***************************************/
|
@@ -109527,10 +110836,10 @@ function styling(props) {
|
|
109527 |
|
109528 |
"use strict";
|
109529 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
109530 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
109531 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
109532 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
109533 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */
|
109534 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
109535 |
/**
|
109536 |
* BLOCK: Gravity Form Styler
|
@@ -109582,7 +110891,7 @@ if (uagb_blocks_info.blocks["uagb/gf-styler"]["is_active"]) {
|
|
109582 |
}
|
109583 |
|
109584 |
/***/ }),
|
109585 |
-
/*
|
109586 |
/*!**************************************!*\
|
109587 |
!*** ./src/blocks/gf-styler/edit.js ***!
|
109588 |
\**************************************/
|
@@ -109596,9 +110905,9 @@ if (uagb_blocks_info.blocks["uagb/gf-styler"]["is_active"]) {
|
|
109596 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
109597 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
109598 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
109599 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map__ = __webpack_require__(/*! lodash/map */
|
109600 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_map__);
|
109601 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */
|
109602 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
109603 |
|
109604 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
@@ -111079,7 +112388,7 @@ var UAGBGF = function (_Component) {
|
|
111079 |
})(UAGBGF));
|
111080 |
|
111081 |
/***/ }),
|
111082 |
-
/*
|
111083 |
/*!*****************************************!*\
|
111084 |
!*** ./src/blocks/gf-styler/styling.js ***!
|
111085 |
\*****************************************/
|
@@ -111722,7 +113031,7 @@ function styling(props) {
|
|
111722 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
111723 |
|
111724 |
/***/ }),
|
111725 |
-
/*
|
111726 |
/*!******************************************!*\
|
111727 |
!*** ./src/blocks/gf-styler/editor.scss ***!
|
111728 |
\******************************************/
|
@@ -111732,7 +113041,7 @@ function styling(props) {
|
|
111732 |
// removed by extract-text-webpack-plugin
|
111733 |
|
111734 |
/***/ }),
|
111735 |
-
/*
|
111736 |
/*!*****************************************!*\
|
111737 |
!*** ./src/blocks/gf-styler/style.scss ***!
|
111738 |
\*****************************************/
|
@@ -111742,7 +113051,7 @@ function styling(props) {
|
|
111742 |
// removed by extract-text-webpack-plugin
|
111743 |
|
111744 |
/***/ }),
|
111745 |
-
/*
|
111746 |
/*!****************************************!*\
|
111747 |
!*** ./src/blocks/blockquote/block.js ***!
|
111748 |
\****************************************/
|
@@ -111751,13 +113060,13 @@ function styling(props) {
|
|
111751 |
|
111752 |
"use strict";
|
111753 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
111754 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
111755 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */
|
111756 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
111757 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
111758 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
111759 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
111760 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
111761 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
111762 |
/**
|
111763 |
* BLOCK: Quote
|
@@ -111853,7 +113162,7 @@ registerBlockType("uagb/blockquote", {
|
|
111853 |
});
|
111854 |
|
111855 |
/***/ }),
|
111856 |
-
/*
|
111857 |
/*!***************************************!*\
|
111858 |
!*** ./src/blocks/blockquote/edit.js ***!
|
111859 |
\***************************************/
|
@@ -111864,12 +113173,12 @@ registerBlockType("uagb/blockquote", {
|
|
111864 |
"use strict";
|
111865 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
111866 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
111867 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */
|
111868 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */
|
111869 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */
|
111870 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */
|
111871 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */
|
111872 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map__ = __webpack_require__(/*! lodash/map */
|
111873 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_map__);
|
111874 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
111875 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
@@ -113302,7 +114611,7 @@ var UAGBBlockQuote = function (_Component) {
|
|
113302 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBBlockQuote);
|
113303 |
|
113304 |
/***/ }),
|
113305 |
-
/*
|
113306 |
/*!******************************************!*\
|
113307 |
!*** ./src/blocks/blockquote/styling.js ***!
|
113308 |
\******************************************/
|
@@ -113625,7 +114934,7 @@ function styling(props) {
|
|
113625 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
113626 |
|
113627 |
/***/ }),
|
113628 |
-
/*
|
113629 |
/*!*********************************************!*\
|
113630 |
!*** ./src/blocks/blockquote/deprecated.js ***!
|
113631 |
\*********************************************/
|
@@ -113634,15 +114943,15 @@ function styling(props) {
|
|
113634 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
113635 |
|
113636 |
"use strict";
|
113637 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__attributes__ = __webpack_require__(/*! ./attributes */
|
113638 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
|
113639 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
|
113640 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
113641 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_TweetButton__ = __webpack_require__(/*! ./components/TweetButton */
|
113642 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */
|
113643 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */
|
113644 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */
|
113645 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */
|
113646 |
/**
|
113647 |
* BLOCK: Advanced Heading - Deprecated Block
|
113648 |
*/
|
@@ -113780,7 +115089,7 @@ var deprecated = [{
|
|
113780 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
113781 |
|
113782 |
/***/ }),
|
113783 |
-
/*
|
113784 |
/*!*********************************************************!*\
|
113785 |
!*** ./src/blocks/blockquote/components/TweetButton.js ***!
|
113786 |
\*********************************************************/
|
@@ -113854,7 +115163,7 @@ var TweetButton = function (_React$Component) {
|
|
113854 |
/* harmony default export */ __webpack_exports__["a"] = (TweetButton);
|
113855 |
|
113856 |
/***/ }),
|
113857 |
-
/*
|
113858 |
/*!***************************************!*\
|
113859 |
!*** ./src/blocks/blockquote/save.js ***!
|
113860 |
\***************************************/
|
@@ -113867,10 +115176,10 @@ var TweetButton = function (_React$Component) {
|
|
113867 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
113868 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
113869 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
113870 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */
|
113871 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */
|
113872 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */
|
113873 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */
|
113874 |
/**
|
113875 |
* BLOCK: Blockquote - Save Block
|
113876 |
*/
|
@@ -113947,7 +115256,7 @@ function save(props) {
|
|
113947 |
}
|
113948 |
|
113949 |
/***/ }),
|
113950 |
-
/*
|
113951 |
/*!*******************************************!*\
|
113952 |
!*** ./src/blocks/blockquote/editor.scss ***!
|
113953 |
\*******************************************/
|
@@ -113957,7 +115266,7 @@ function save(props) {
|
|
113957 |
// removed by extract-text-webpack-plugin
|
113958 |
|
113959 |
/***/ }),
|
113960 |
-
/*
|
113961 |
/*!******************************************!*\
|
113962 |
!*** ./src/blocks/blockquote/style.scss ***!
|
113963 |
\******************************************/
|
@@ -113967,7 +115276,7 @@ function save(props) {
|
|
113967 |
// removed by extract-text-webpack-plugin
|
113968 |
|
113969 |
/***/ }),
|
113970 |
-
/*
|
113971 |
/*!**********************************************!*\
|
113972 |
!*** ./src/blocks/marketing-button/block.js ***!
|
113973 |
\**********************************************/
|
@@ -113976,13 +115285,13 @@ function save(props) {
|
|
113976 |
|
113977 |
"use strict";
|
113978 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
113979 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
113980 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
113981 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
113982 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
113983 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
113984 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
113985 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
113986 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
113987 |
/**
|
113988 |
* BLOCK: Marketing Button
|
@@ -114016,7 +115325,7 @@ registerBlockType("uagb/marketing-button", {
|
|
114016 |
});
|
114017 |
|
114018 |
/***/ }),
|
114019 |
-
/*
|
114020 |
/*!*********************************************!*\
|
114021 |
!*** ./src/blocks/marketing-button/edit.js ***!
|
114022 |
\*********************************************/
|
@@ -114027,7 +115336,7 @@ registerBlockType("uagb/marketing-button", {
|
|
114027 |
"use strict";
|
114028 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
114029 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
114030 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
114031 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
114032 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
114033 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
@@ -115041,7 +116350,7 @@ var UAGBMarketingButtonEdit = function (_Component) {
|
|
115041 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBMarketingButtonEdit);
|
115042 |
|
115043 |
/***/ }),
|
115044 |
-
/*
|
115045 |
/*!************************************************!*\
|
115046 |
!*** ./src/blocks/marketing-button/styling.js ***!
|
115047 |
\************************************************/
|
@@ -115051,7 +116360,7 @@ var UAGBMarketingButtonEdit = function (_Component) {
|
|
115051 |
|
115052 |
"use strict";
|
115053 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 4);
|
115054 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */
|
115055 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 3);
|
115056 |
/**
|
115057 |
* Returns Dynamic Generated CSS
|
@@ -115259,7 +116568,7 @@ function styling(props) {
|
|
115259 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
115260 |
|
115261 |
/***/ }),
|
115262 |
-
/*
|
115263 |
/*!*********************************************!*\
|
115264 |
!*** ./src/blocks/marketing-button/save.js ***!
|
115265 |
\*********************************************/
|
@@ -115339,7 +116648,7 @@ function save(props) {
|
|
115339 |
}
|
115340 |
|
115341 |
/***/ }),
|
115342 |
-
/*
|
115343 |
/*!***************************************************!*\
|
115344 |
!*** ./src/blocks/marketing-button/deprecated.js ***!
|
115345 |
\***************************************************/
|
@@ -115350,7 +116659,7 @@ function save(props) {
|
|
115350 |
"use strict";
|
115351 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
115352 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
115353 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
115354 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
115355 |
/**
|
115356 |
* BLOCK: Columns - Deprecated Block
|
@@ -115425,7 +116734,7 @@ var deprecated = [{
|
|
115425 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
115426 |
|
115427 |
/***/ }),
|
115428 |
-
/*
|
115429 |
/*!************************************************!*\
|
115430 |
!*** ./src/blocks/marketing-button/style.scss ***!
|
115431 |
\************************************************/
|
@@ -115435,7 +116744,7 @@ var deprecated = [{
|
|
115435 |
// removed by extract-text-webpack-plugin
|
115436 |
|
115437 |
/***/ }),
|
115438 |
-
/*
|
115439 |
/*!*************************************************!*\
|
115440 |
!*** ./src/blocks/marketing-button/editor.scss ***!
|
115441 |
\*************************************************/
|
@@ -115445,7 +116754,7 @@ var deprecated = [{
|
|
115445 |
// removed by extract-text-webpack-plugin
|
115446 |
|
115447 |
/***/ }),
|
115448 |
-
/*
|
115449 |
/*!***********************************************!*\
|
115450 |
!*** ./src/blocks/table-of-contents/block.js ***!
|
115451 |
\***********************************************/
|
@@ -115454,14 +116763,13 @@ var deprecated = [{
|
|
115454 |
|
115455 |
"use strict";
|
115456 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
115457 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
115458 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
115459 |
-
/* harmony import */ var
|
115460 |
-
/* harmony import */ var
|
115461 |
-
/* harmony import */ var
|
115462 |
-
/* harmony import */ var
|
115463 |
-
/* harmony import */ var
|
115464 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
115465 |
/**
|
115466 |
* BLOCK: Table of Contents
|
115467 |
*/
|
@@ -115473,7 +116781,6 @@ var deprecated = [{
|
|
115473 |
|
115474 |
|
115475 |
|
115476 |
-
|
115477 |
var __ = wp.i18n.__;
|
115478 |
var registerBlockType = wp.blocks.registerBlockType;
|
115479 |
|
@@ -115489,13 +116796,17 @@ registerBlockType("uagb/table-of-contents", {
|
|
115489 |
},
|
115490 |
attributes: __WEBPACK_IMPORTED_MODULE_1__attributes__["a" /* default */],
|
115491 |
edit: __WEBPACK_IMPORTED_MODULE_2__edit__["a" /* default */],
|
115492 |
-
|
|
|
|
|
|
|
|
|
115493 |
example: {},
|
115494 |
-
deprecated:
|
115495 |
});
|
115496 |
|
115497 |
/***/ }),
|
115498 |
-
/*
|
115499 |
/*!**********************************************!*\
|
115500 |
!*** ./src/blocks/table-of-contents/edit.js ***!
|
115501 |
\**********************************************/
|
@@ -115506,7 +116817,7 @@ registerBlockType("uagb/table-of-contents", {
|
|
115506 |
"use strict";
|
115507 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
115508 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
115509 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
115510 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
115511 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
115512 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__);
|
@@ -115515,7 +116826,7 @@ registerBlockType("uagb/table-of-contents", {
|
|
115515 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
115516 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
115517 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
115518 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__toc__ = __webpack_require__(/*! ./toc */
|
115519 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
115520 |
|
115521 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
@@ -115545,7 +116856,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
|
|
115545 |
|
115546 |
|
115547 |
|
115548 |
-
var striptags = __webpack_require__(/*! striptags */
|
115549 |
var __ = wp.i18n.__;
|
115550 |
var withSelect = wp.data.withSelect;
|
115551 |
var compose = wp.compose.compose;
|
@@ -115592,11 +116903,6 @@ var UAGBTableOfContentsEdit = function (_Component) {
|
|
115592 |
}, {
|
115593 |
key: "componentDidUpdate",
|
115594 |
value: function componentDidUpdate(prevProps, prevState) {
|
115595 |
-
if (JSON.stringify(this.props.headers) !== JSON.stringify(prevProps.headers)) {
|
115596 |
-
this.props.setAttributes({
|
115597 |
-
headerLinks: JSON.stringify(this.props.headers)
|
115598 |
-
});
|
115599 |
-
}
|
115600 |
|
115601 |
var element = document.getElementById("uagb-style-toc-" + this.props.clientId.substr(0, 8));
|
115602 |
|
@@ -115613,8 +116919,6 @@ var UAGBTableOfContentsEdit = function (_Component) {
|
|
115613 |
|
115614 |
this.props.setAttributes({ classMigrate: true });
|
115615 |
|
115616 |
-
this.props.setAttributes({ headerLinks: JSON.stringify(this.props.headers) });
|
115617 |
-
|
115618 |
// Pushing Scroll To Top div
|
115619 |
var $scrollTop = document.createElement("div");
|
115620 |
$scrollTop.setAttribute("class", "uagb-toc__scroll-top dashicons dashicons-arrow-up-alt2");
|
@@ -116910,36 +118214,6 @@ var UAGBTableOfContentsEdit = function (_Component) {
|
|
116910 |
|
116911 |
/* harmony default export */ __webpack_exports__["a"] = (compose(withSelect(function (select, ownProps) {
|
116912 |
|
116913 |
-
var getData = function getData(headerData, a) {
|
116914 |
-
headerData.map(function (header) {
|
116915 |
-
var innerBlock = header.innerBlocks;
|
116916 |
-
if (innerBlock.length > 0) {
|
116917 |
-
innerBlock.forEach(function (element) {
|
116918 |
-
if (element.innerBlocks.length > 0) {
|
116919 |
-
getData(element.innerBlocks, a);
|
116920 |
-
} else {
|
116921 |
-
if (element.name === 'core/heading') {
|
116922 |
-
a.push(element);
|
116923 |
-
}
|
116924 |
-
|
116925 |
-
if (element.name === 'uagb/advanced-heading') {
|
116926 |
-
a.push(element);
|
116927 |
-
}
|
116928 |
-
}
|
116929 |
-
});
|
116930 |
-
} else {
|
116931 |
-
if (header.name === 'core/heading') {
|
116932 |
-
a.push(header);
|
116933 |
-
}
|
116934 |
-
|
116935 |
-
if (header.name === 'uagb/advanced-heading') {
|
116936 |
-
a.push(header);
|
116937 |
-
}
|
116938 |
-
}
|
116939 |
-
});
|
116940 |
-
return a;
|
116941 |
-
};
|
116942 |
-
|
116943 |
var parseTocSlug = function parseTocSlug(slug) {
|
116944 |
|
116945 |
// If not have the element then return false!
|
@@ -116961,37 +118235,36 @@ var UAGBTableOfContentsEdit = function (_Component) {
|
|
116961 |
return decodeURI(encodeURIComponent(parsedSlug));
|
116962 |
};
|
116963 |
|
116964 |
-
var
|
116965 |
-
var all_headers = getData(select('core/block-editor').getBlocks(), a);
|
116966 |
|
|
|
116967 |
var headers = [];
|
|
|
116968 |
|
116969 |
-
|
116970 |
-
|
|
|
116971 |
|
116972 |
-
|
116973 |
-
|
116974 |
-
|
116975 |
-
|
116976 |
-
|
116977 |
-
|
116978 |
-
|
116979 |
|
116980 |
-
var
|
116981 |
-
var
|
|
|
116982 |
|
116983 |
-
|
116984 |
-
if (typeof heading_className !== 'undefined') {
|
116985 |
-
exclude_heading = heading_className.includes('uagb-toc-hide-heading');
|
116986 |
-
}
|
116987 |
-
}
|
116988 |
|
116989 |
-
if (!
|
116990 |
headers.push({
|
116991 |
-
tag:
|
116992 |
-
text:
|
116993 |
-
link:
|
116994 |
-
content:
|
116995 |
});
|
116996 |
}
|
116997 |
});
|
@@ -117023,7 +118296,7 @@ var UAGBTableOfContentsEdit = function (_Component) {
|
|
117023 |
}))(UAGBTableOfContentsEdit));
|
117024 |
|
117025 |
/***/ }),
|
117026 |
-
/*
|
117027 |
/*!*************************************************!*\
|
117028 |
!*** ./src/blocks/table-of-contents/styling.js ***!
|
117029 |
\*************************************************/
|
@@ -117279,89 +118552,7 @@ function styling(props) {
|
|
117279 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
117280 |
|
117281 |
/***/ }),
|
117282 |
-
/*
|
117283 |
-
/*!**********************************************!*\
|
117284 |
-
!*** ./src/blocks/table-of-contents/save.js ***!
|
117285 |
-
\**********************************************/
|
117286 |
-
/*! exports provided: default */
|
117287 |
-
/*! exports used: default */
|
117288 |
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
117289 |
-
|
117290 |
-
"use strict";
|
117291 |
-
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
117292 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
117293 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
117294 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
117295 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__toc__ = __webpack_require__(/*! ./toc */ 229);
|
117296 |
-
/**
|
117297 |
-
* BLOCK: Table of Contents - Save Block
|
117298 |
-
*/
|
117299 |
-
|
117300 |
-
|
117301 |
-
|
117302 |
-
|
117303 |
-
|
117304 |
-
var __ = wp.i18n.__;
|
117305 |
-
var RichText = wp.blockEditor.RichText;
|
117306 |
-
|
117307 |
-
|
117308 |
-
function save(props) {
|
117309 |
-
var className = props.className;
|
117310 |
-
var _props$attributes = props.attributes,
|
117311 |
-
align = _props$attributes.align,
|
117312 |
-
block_id = _props$attributes.block_id,
|
117313 |
-
tColumns = _props$attributes.tColumns,
|
117314 |
-
heading = _props$attributes.heading,
|
117315 |
-
headerLinks = _props$attributes.headerLinks,
|
117316 |
-
mappingHeaders = _props$attributes.mappingHeaders,
|
117317 |
-
smoothScroll = _props$attributes.smoothScroll,
|
117318 |
-
makeCollapsible = _props$attributes.makeCollapsible,
|
117319 |
-
icon = _props$attributes.icon,
|
117320 |
-
initialCollapse = _props$attributes.initialCollapse,
|
117321 |
-
smoothScrollOffset = _props$attributes.smoothScrollOffset,
|
117322 |
-
smoothScrollDelay = _props$attributes.smoothScrollDelay;
|
117323 |
-
|
117324 |
-
|
117325 |
-
var icon_html = '';
|
117326 |
-
|
117327 |
-
if (makeCollapsible && icon) {
|
117328 |
-
icon_html = wp.element.createElement(
|
117329 |
-
"span",
|
117330 |
-
{ className: "uag-toc__collapsible-wrap" },
|
117331 |
-
Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__["a" /* default */])(icon)
|
117332 |
-
);
|
117333 |
-
}
|
117334 |
-
|
117335 |
-
return wp.element.createElement(
|
117336 |
-
"div",
|
117337 |
-
{ className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()(className, "uagb-toc__align-" + align, "uagb-toc__columns-" + tColumns, initialCollapse ? "uagb-toc__collapse" : '', "uagb-block-" + block_id),
|
117338 |
-
"data-scroll": smoothScroll,
|
117339 |
-
"data-offset": smoothScrollOffset,
|
117340 |
-
"data-delay": smoothScrollDelay
|
117341 |
-
},
|
117342 |
-
wp.element.createElement(
|
117343 |
-
"div",
|
117344 |
-
{ className: "uagb-toc__wrap" },
|
117345 |
-
wp.element.createElement(
|
117346 |
-
"div",
|
117347 |
-
{ className: "uagb-toc__title-wrap" },
|
117348 |
-
wp.element.createElement(RichText.Content, {
|
117349 |
-
value: heading,
|
117350 |
-
tagName: "div",
|
117351 |
-
className: "uagb-toc__title"
|
117352 |
-
}),
|
117353 |
-
icon_html
|
117354 |
-
),
|
117355 |
-
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_2__toc__["a" /* default */], {
|
117356 |
-
mappingHeaders: mappingHeaders,
|
117357 |
-
headers: headerLinks && JSON.parse(headerLinks)
|
117358 |
-
})
|
117359 |
-
)
|
117360 |
-
);
|
117361 |
-
}
|
117362 |
-
|
117363 |
-
/***/ }),
|
117364 |
-
/* 676 */
|
117365 |
/*!****************************************************!*\
|
117366 |
!*** ./src/blocks/table-of-contents/deprecated.js ***!
|
117367 |
\****************************************************/
|
@@ -117372,10 +118563,11 @@ function save(props) {
|
|
117372 |
"use strict";
|
117373 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
117374 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
117375 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__deprecated_components__ = __webpack_require__(/*! ./deprecated/components */
|
117376 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated_table_of_contents__ = __webpack_require__(/*! ./deprecated/table-of-contents */
|
117377 |
-
/* harmony import */ var
|
117378 |
-
/* harmony import */ var
|
|
|
117379 |
/**
|
117380 |
* BLOCK: Table of Contents - Deprecated Block
|
117381 |
*/
|
@@ -117386,11 +118578,12 @@ function save(props) {
|
|
117386 |
|
117387 |
|
117388 |
|
|
|
117389 |
var RichText = wp.blockEditor.RichText;
|
117390 |
|
117391 |
|
117392 |
var deprecated = [{
|
117393 |
-
attributes:
|
117394 |
save: function save(props) {
|
117395 |
var className = props.className;
|
117396 |
var _props$attributes = props.attributes,
|
@@ -117427,7 +118620,7 @@ var deprecated = [{
|
|
117427 |
);
|
117428 |
}
|
117429 |
}, {
|
117430 |
-
attributes:
|
117431 |
save: function save(props) {
|
117432 |
var className = props.className;
|
117433 |
var _props$attributes2 = props.attributes,
|
@@ -117452,7 +118645,7 @@ var deprecated = [{
|
|
117452 |
icon_html = wp.element.createElement(
|
117453 |
'span',
|
117454 |
{ className: 'uag-toc__collapsible-wrap' },
|
117455 |
-
Object(
|
117456 |
);
|
117457 |
}
|
117458 |
|
@@ -117488,7 +118681,7 @@ var deprecated = [{
|
|
117488 |
);
|
117489 |
}
|
117490 |
}, {
|
117491 |
-
attributes:
|
117492 |
save: function save(props) {
|
117493 |
var className = props.className;
|
117494 |
var _props$attributes3 = props.attributes,
|
@@ -117512,7 +118705,7 @@ var deprecated = [{
|
|
117512 |
icon_html = wp.element.createElement(
|
117513 |
'span',
|
117514 |
{ className: 'uag-toc__collapsible-wrap' },
|
117515 |
-
Object(
|
117516 |
);
|
117517 |
}
|
117518 |
|
@@ -117543,12 +118736,68 @@ var deprecated = [{
|
|
117543 |
)
|
117544 |
);
|
117545 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117546 |
}];
|
117547 |
|
117548 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
117549 |
|
117550 |
/***/ }),
|
117551 |
-
/*
|
117552 |
/*!***************************************************************!*\
|
117553 |
!*** ./src/blocks/table-of-contents/deprecated/components.js ***!
|
117554 |
\***************************************************************/
|
@@ -117576,7 +118825,7 @@ var _wp$data = wp.data,
|
|
117576 |
|
117577 |
var __ = wp.i18n.__;
|
117578 |
|
117579 |
-
var striptags = __webpack_require__(/*! striptags */
|
117580 |
|
117581 |
var TableOfContents = function (_Component) {
|
117582 |
_inherits(TableOfContents, _Component);
|
@@ -117787,7 +119036,7 @@ var TableOfContents = function (_Component) {
|
|
117787 |
/* harmony default export */ __webpack_exports__["a"] = (TableOfContents);
|
117788 |
|
117789 |
/***/ }),
|
117790 |
-
/*
|
117791 |
/*!**********************************************************************!*\
|
117792 |
!*** ./src/blocks/table-of-contents/deprecated/table-of-contents.js ***!
|
117793 |
\**********************************************************************/
|
@@ -117920,7 +119169,7 @@ var TOC = function (_React$Component) {
|
|
117920 |
/* harmony default export */ __webpack_exports__["a"] = (TOC);
|
117921 |
|
117922 |
/***/ }),
|
117923 |
-
/*
|
117924 |
/*!*************************************************!*\
|
117925 |
!*** ./src/blocks/table-of-contents/style.scss ***!
|
117926 |
\*************************************************/
|
@@ -117930,7 +119179,7 @@ var TOC = function (_React$Component) {
|
|
117930 |
// removed by extract-text-webpack-plugin
|
117931 |
|
117932 |
/***/ }),
|
117933 |
-
/*
|
117934 |
/*!**************************************************!*\
|
117935 |
!*** ./src/blocks/table-of-contents/editor.scss ***!
|
117936 |
\**************************************************/
|
@@ -117940,7 +119189,7 @@ var TOC = function (_React$Component) {
|
|
117940 |
// removed by extract-text-webpack-plugin
|
117941 |
|
117942 |
/***/ }),
|
117943 |
-
/*
|
117944 |
/*!************************************!*\
|
117945 |
!*** ./src/blocks/how-to/block.js ***!
|
117946 |
\************************************/
|
@@ -117949,14 +119198,14 @@ var TOC = function (_React$Component) {
|
|
117949 |
|
117950 |
"use strict";
|
117951 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
117952 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
117953 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
117954 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
117955 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
117956 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
117957 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
117958 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
117959 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */
|
117960 |
/**
|
117961 |
* BLOCK: How-To Schema
|
117962 |
*/
|
@@ -118022,7 +119271,7 @@ registerBlockType("uagb/how-to", {
|
|
118022 |
});
|
118023 |
|
118024 |
/***/ }),
|
118025 |
-
/*
|
118026 |
/*!***********************************!*\
|
118027 |
!*** ./src/blocks/how-to/edit.js ***!
|
118028 |
\***********************************/
|
@@ -118033,13 +119282,13 @@ registerBlockType("uagb/how-to", {
|
|
118033 |
"use strict";
|
118034 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
118035 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
118036 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__schema_notices__ = __webpack_require__(/*! ./schema-notices */
|
118037 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
118038 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_times__);
|
118039 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */
|
118040 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
118041 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
118042 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
118043 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
118044 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
118045 |
|
@@ -119265,7 +120514,7 @@ var UAGBHowTo = function (_Component) {
|
|
119265 |
}))(UAGBHowTo));
|
119266 |
|
119267 |
/***/ }),
|
119268 |
-
/*
|
119269 |
/*!*********************************************!*\
|
119270 |
!*** ./src/blocks/how-to/schema-notices.js ***!
|
119271 |
\*********************************************/
|
@@ -119431,7 +120680,7 @@ var SchemaNotices = function (_Component) {
|
|
119431 |
/* harmony default export */ __webpack_exports__["a"] = (SchemaNotices);
|
119432 |
|
119433 |
/***/ }),
|
119434 |
-
/*
|
119435 |
/*!**************************************!*\
|
119436 |
!*** ./src/blocks/how-to/styling.js ***!
|
119437 |
\**************************************/
|
@@ -119766,7 +121015,7 @@ function styling(props) {
|
|
119766 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
119767 |
|
119768 |
/***/ }),
|
119769 |
-
/*
|
119770 |
/*!***********************************!*\
|
119771 |
!*** ./src/blocks/how-to/save.js ***!
|
119772 |
\***********************************/
|
@@ -120072,7 +121321,7 @@ function save(props) {
|
|
120072 |
}
|
120073 |
|
120074 |
/***/ }),
|
120075 |
-
/*
|
120076 |
/*!***************************************!*\
|
120077 |
!*** ./src/blocks/how-to/editor.scss ***!
|
120078 |
\***************************************/
|
@@ -120082,7 +121331,7 @@ function save(props) {
|
|
120082 |
// removed by extract-text-webpack-plugin
|
120083 |
|
120084 |
/***/ }),
|
120085 |
-
/*
|
120086 |
/*!*****************************************!*\
|
120087 |
!*** ./src/blocks/how-to/deprecated.js ***!
|
120088 |
\*****************************************/
|
@@ -120093,7 +121342,7 @@ function save(props) {
|
|
120093 |
"use strict";
|
120094 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
120095 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
120096 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
120097 |
/**
|
120098 |
* BLOCK: How To Schema - Deprecated Block
|
120099 |
*/
|
@@ -120312,7 +121561,7 @@ var deprecated = [{
|
|
120312 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
120313 |
|
120314 |
/***/ }),
|
120315 |
-
/*
|
120316 |
/*!*********************************!*\
|
120317 |
!*** ./src/blocks/faq/block.js ***!
|
120318 |
\*********************************/
|
@@ -120321,14 +121570,14 @@ var deprecated = [{
|
|
120321 |
|
120322 |
"use strict";
|
120323 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
120324 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
120325 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
120326 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
120327 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
120328 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
120329 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
120330 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
120331 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */
|
120332 |
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
|
120333 |
|
120334 |
/**
|
@@ -120415,7 +121664,7 @@ registerBlockType("uagb/faq", {
|
|
120415 |
addFilter('editor.BlockEdit', 'uagb/faq', withFaq);
|
120416 |
|
120417 |
/***/ }),
|
120418 |
-
/*
|
120419 |
/*!********************************!*\
|
120420 |
!*** ./src/blocks/faq/edit.js ***!
|
120421 |
\********************************/
|
@@ -120433,7 +121682,7 @@ addFilter('editor.BlockEdit', 'uagb/faq', withFaq);
|
|
120433 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
|
120434 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
120435 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
|
120436 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */
|
120437 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize__ = __webpack_require__(/*! memize */ 19);
|
120438 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_memize__);
|
120439 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
@@ -121894,7 +123143,7 @@ var UAGBFaqEdit = function (_Component) {
|
|
121894 |
}))(UAGBFaqEdit));
|
121895 |
|
121896 |
/***/ }),
|
121897 |
-
/*
|
121898 |
/*!***********************************!*\
|
121899 |
!*** ./src/blocks/faq/styling.js ***!
|
121900 |
\***********************************/
|
@@ -122204,7 +123453,7 @@ function styling(props) {
|
|
122204 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
122205 |
|
122206 |
/***/ }),
|
122207 |
-
/*
|
122208 |
/*!********************************!*\
|
122209 |
!*** ./src/blocks/faq/save.js ***!
|
122210 |
\********************************/
|
@@ -122266,7 +123515,7 @@ function save(props) {
|
|
122266 |
}
|
122267 |
|
122268 |
/***/ }),
|
122269 |
-
/*
|
122270 |
/*!***********************************!*\
|
122271 |
!*** ./src/blocks/faq/style.scss ***!
|
122272 |
\***********************************/
|
@@ -122276,7 +123525,7 @@ function save(props) {
|
|
122276 |
// removed by extract-text-webpack-plugin
|
122277 |
|
122278 |
/***/ }),
|
122279 |
-
/*
|
122280 |
/*!************************************!*\
|
122281 |
!*** ./src/blocks/faq/editor.scss ***!
|
122282 |
\************************************/
|
@@ -122286,7 +123535,7 @@ function save(props) {
|
|
122286 |
// removed by extract-text-webpack-plugin
|
122287 |
|
122288 |
/***/ }),
|
122289 |
-
/*
|
122290 |
/*!**************************************!*\
|
122291 |
!*** ./src/blocks/faq/deprecated.js ***!
|
122292 |
\**************************************/
|
@@ -122297,7 +123546,7 @@ function save(props) {
|
|
122297 |
"use strict";
|
122298 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
122299 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
122300 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
122301 |
/**
|
122302 |
* BLOCK: How To Schema - Deprecated Block
|
122303 |
*/
|
@@ -122352,7 +123601,7 @@ var deprecated = [{
|
|
122352 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
122353 |
|
122354 |
/***/ }),
|
122355 |
-
/*
|
122356 |
/*!***************************************!*\
|
122357 |
!*** ./src/blocks/faq-child/block.js ***!
|
122358 |
\***************************************/
|
@@ -122361,14 +123610,14 @@ var deprecated = [{
|
|
122361 |
|
122362 |
"use strict";
|
122363 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
122364 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
122365 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
122366 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
122367 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
122368 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
122369 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
122370 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
122371 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */
|
122372 |
/**
|
122373 |
* BLOCK: FAQ - Schema - Child
|
122374 |
*/
|
@@ -122401,7 +123650,7 @@ registerBlockType("uagb/faq-child", {
|
|
122401 |
});
|
122402 |
|
122403 |
/***/ }),
|
122404 |
-
/*
|
122405 |
/*!**************************************!*\
|
122406 |
!*** ./src/blocks/faq-child/edit.js ***!
|
122407 |
\**************************************/
|
@@ -122582,7 +123831,7 @@ var UAGBFaqChildEdit = function (_Component) {
|
|
122582 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBFaqChildEdit);
|
122583 |
|
122584 |
/***/ }),
|
122585 |
-
/*
|
122586 |
/*!**************************************!*\
|
122587 |
!*** ./src/blocks/faq-child/save.js ***!
|
122588 |
\**************************************/
|
@@ -122677,7 +123926,7 @@ function save(props) {
|
|
122677 |
}
|
122678 |
|
122679 |
/***/ }),
|
122680 |
-
/*
|
122681 |
/*!*****************************************!*\
|
122682 |
!*** ./src/blocks/faq-child/style.scss ***!
|
122683 |
\*****************************************/
|
@@ -122687,7 +123936,7 @@ function save(props) {
|
|
122687 |
// removed by extract-text-webpack-plugin
|
122688 |
|
122689 |
/***/ }),
|
122690 |
-
/*
|
122691 |
/*!******************************************!*\
|
122692 |
!*** ./src/blocks/faq-child/editor.scss ***!
|
122693 |
\******************************************/
|
@@ -122697,7 +123946,7 @@ function save(props) {
|
|
122697 |
// removed by extract-text-webpack-plugin
|
122698 |
|
122699 |
/***/ }),
|
122700 |
-
/*
|
122701 |
/*!********************************************!*\
|
122702 |
!*** ./src/blocks/faq-child/deprecated.js ***!
|
122703 |
\********************************************/
|
@@ -122709,7 +123958,7 @@ function save(props) {
|
|
122709 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
122710 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
122711 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
122712 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
122713 |
/**
|
122714 |
* BLOCK: FAQ-Child - Deprecated Block
|
122715 |
*/
|
@@ -122797,7 +124046,7 @@ var deprecated = [{
|
|
122797 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
122798 |
|
122799 |
/***/ }),
|
122800 |
-
/*
|
122801 |
/*!*******************************************!*\
|
122802 |
!*** ./src/blocks/inline-notice/block.js ***!
|
122803 |
\*******************************************/
|
@@ -122806,12 +124055,12 @@ var deprecated = [{
|
|
122806 |
|
122807 |
"use strict";
|
122808 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
122809 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
122810 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
122811 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
122812 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
122813 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
122814 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
122815 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
122816 |
/**
|
122817 |
* BLOCK: Inline Notice Block.
|
@@ -122843,7 +124092,7 @@ registerBlockType("uagb/inline-notice", {
|
|
122843 |
});
|
122844 |
|
122845 |
/***/ }),
|
122846 |
-
/*
|
122847 |
/*!************************************************!*\
|
122848 |
!*** ./src/blocks/inline-notice/attributes.js ***!
|
122849 |
\************************************************/
|
@@ -123026,7 +124275,7 @@ var attributes = {
|
|
123026 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
123027 |
|
123028 |
/***/ }),
|
123029 |
-
/*
|
123030 |
/*!******************************************!*\
|
123031 |
!*** ./src/blocks/inline-notice/edit.js ***!
|
123032 |
\******************************************/
|
@@ -123037,7 +124286,7 @@ var attributes = {
|
|
123037 |
"use strict";
|
123038 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
123039 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
123040 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
123041 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
123042 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
123043 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
|
@@ -123566,7 +124815,7 @@ var UAGBInlineNoticeEdit = function (_Component) {
|
|
123566 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBInlineNoticeEdit);
|
123567 |
|
123568 |
/***/ }),
|
123569 |
-
/*
|
123570 |
/*!*********************************************!*\
|
123571 |
!*** ./src/blocks/inline-notice/styling.js ***!
|
123572 |
\*********************************************/
|
@@ -123733,7 +124982,7 @@ function styling(props) {
|
|
123733 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
123734 |
|
123735 |
/***/ }),
|
123736 |
-
/*
|
123737 |
/*!******************************************!*\
|
123738 |
!*** ./src/blocks/inline-notice/save.js ***!
|
123739 |
\******************************************/
|
@@ -123805,7 +125054,7 @@ function save(props) {
|
|
123805 |
}
|
123806 |
|
123807 |
/***/ }),
|
123808 |
-
/*
|
123809 |
/*!*********************************************!*\
|
123810 |
!*** ./src/blocks/inline-notice/style.scss ***!
|
123811 |
\*********************************************/
|
@@ -123815,7 +125064,7 @@ function save(props) {
|
|
123815 |
// removed by extract-text-webpack-plugin
|
123816 |
|
123817 |
/***/ }),
|
123818 |
-
/*
|
123819 |
/*!**********************************************!*\
|
123820 |
!*** ./src/blocks/inline-notice/editor.scss ***!
|
123821 |
\**********************************************/
|
@@ -123825,7 +125074,7 @@ function save(props) {
|
|
123825 |
// removed by extract-text-webpack-plugin
|
123826 |
|
123827 |
/***/ }),
|
123828 |
-
/*
|
123829 |
/*!***************************************!*\
|
123830 |
!*** ./src/blocks/wp-search/block.js ***!
|
123831 |
\***************************************/
|
@@ -123833,13 +125082,13 @@ function save(props) {
|
|
123833 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
123834 |
|
123835 |
"use strict";
|
123836 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss__ = __webpack_require__(/*! ./style.scss */
|
123837 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__style_scss__);
|
123838 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
123839 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__editor_scss__);
|
123840 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */
|
123841 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */
|
123842 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
123843 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
123844 |
/**
|
123845 |
* BLOCK: WP-Search
|
@@ -123872,7 +125121,7 @@ registerBlockType("uagb/wp-search", {
|
|
123872 |
});
|
123873 |
|
123874 |
/***/ }),
|
123875 |
-
/*
|
123876 |
/*!*****************************************!*\
|
123877 |
!*** ./src/blocks/wp-search/style.scss ***!
|
123878 |
\*****************************************/
|
@@ -123882,7 +125131,7 @@ registerBlockType("uagb/wp-search", {
|
|
123882 |
// removed by extract-text-webpack-plugin
|
123883 |
|
123884 |
/***/ }),
|
123885 |
-
/*
|
123886 |
/*!******************************************!*\
|
123887 |
!*** ./src/blocks/wp-search/editor.scss ***!
|
123888 |
\******************************************/
|
@@ -123892,7 +125141,7 @@ registerBlockType("uagb/wp-search", {
|
|
123892 |
// removed by extract-text-webpack-plugin
|
123893 |
|
123894 |
/***/ }),
|
123895 |
-
/*
|
123896 |
/*!**************************************!*\
|
123897 |
!*** ./src/blocks/wp-search/save.js ***!
|
123898 |
\**************************************/
|
@@ -123990,7 +125239,7 @@ function save(props) {
|
|
123990 |
}
|
123991 |
|
123992 |
/***/ }),
|
123993 |
-
/*
|
123994 |
/*!**************************************!*\
|
123995 |
!*** ./src/blocks/wp-search/edit.js ***!
|
123996 |
\**************************************/
|
@@ -123999,12 +125248,12 @@ function save(props) {
|
|
123999 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
124000 |
|
124001 |
"use strict";
|
124002 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__styling__ = __webpack_require__(/*! ./styling */
|
124003 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 5);
|
124004 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
124005 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_classnames__ = __webpack_require__(/*! classnames */ 0);
|
124006 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_classnames__);
|
124007 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */
|
124008 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
124009 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
124010 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
@@ -124883,7 +126132,7 @@ var UAGBWpSearchEdit = function (_Component) {
|
|
124883 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBWpSearchEdit);
|
124884 |
|
124885 |
/***/ }),
|
124886 |
-
/*
|
124887 |
/*!*****************************************!*\
|
124888 |
!*** ./src/blocks/wp-search/styling.js ***!
|
124889 |
\*****************************************/
|
@@ -125134,7 +126383,7 @@ function styling(props) {
|
|
125134 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
125135 |
|
125136 |
/***/ }),
|
125137 |
-
/*
|
125138 |
/*!********************************************!*\
|
125139 |
!*** ./src/blocks/wp-search/attributes.js ***!
|
125140 |
\********************************************/
|
@@ -125366,7 +126615,7 @@ var attributes = {
|
|
125366 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
125367 |
|
125368 |
/***/ }),
|
125369 |
-
/*
|
125370 |
/*!************************************!*\
|
125371 |
!*** ./src/blocks/review/block.js ***!
|
125372 |
\************************************/
|
@@ -125375,12 +126624,12 @@ var attributes = {
|
|
125375 |
|
125376 |
"use strict";
|
125377 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
125378 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
125379 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
125380 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
125381 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
125382 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
125383 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
125384 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
125385 |
/**
|
125386 |
* BLOCK: Rating Block.
|
@@ -125412,7 +126661,7 @@ registerBlockType("uagb/review", {
|
|
125412 |
});
|
125413 |
|
125414 |
/***/ }),
|
125415 |
-
/*
|
125416 |
/*!*****************************************!*\
|
125417 |
!*** ./src/blocks/review/attributes.js ***!
|
125418 |
\*****************************************/
|
@@ -125890,7 +127139,7 @@ var attributes = {
|
|
125890 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
125891 |
|
125892 |
/***/ }),
|
125893 |
-
/*
|
125894 |
/*!***********************************!*\
|
125895 |
!*** ./src/blocks/review/edit.js ***!
|
125896 |
\***********************************/
|
@@ -125902,10 +127151,10 @@ var attributes = {
|
|
125902 |
/* unused harmony export removeFromArray */
|
125903 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
125904 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
125905 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
125906 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
125907 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__schema_notices__ = __webpack_require__(/*! ./schema-notices */
|
125908 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components__ = __webpack_require__(/*! ./components */
|
125909 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
125910 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
125911 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
@@ -127117,7 +128366,7 @@ var UAGBRatingEdit = function (_Component) {
|
|
127117 |
}))(UAGBRatingEdit));
|
127118 |
|
127119 |
/***/ }),
|
127120 |
-
/*
|
127121 |
/*!**************************************!*\
|
127122 |
!*** ./src/blocks/review/styling.js ***!
|
127123 |
\**************************************/
|
@@ -127296,7 +128545,7 @@ function styling(props) {
|
|
127296 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
127297 |
|
127298 |
/***/ }),
|
127299 |
-
/*
|
127300 |
/*!*********************************************!*\
|
127301 |
!*** ./src/blocks/review/schema-notices.js ***!
|
127302 |
\*********************************************/
|
@@ -127545,7 +128794,7 @@ var SchemaNotices = function (_Component) {
|
|
127545 |
/* harmony default export */ __webpack_exports__["a"] = (SchemaNotices);
|
127546 |
|
127547 |
/***/ }),
|
127548 |
-
/*
|
127549 |
/*!***********************************!*\
|
127550 |
!*** ./src/blocks/review/save.js ***!
|
127551 |
\***********************************/
|
@@ -127557,7 +128806,7 @@ var SchemaNotices = function (_Component) {
|
|
127557 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
127558 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
127559 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
127560 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components__ = __webpack_require__(/*! ./components */
|
127561 |
/**
|
127562 |
* BLOCK: Review block - Save Block
|
127563 |
*/
|
@@ -127754,7 +129003,7 @@ function save(props) {
|
|
127754 |
}
|
127755 |
|
127756 |
/***/ }),
|
127757 |
-
/*
|
127758 |
/*!**************************************!*\
|
127759 |
!*** ./src/blocks/review/style.scss ***!
|
127760 |
\**************************************/
|
@@ -127764,7 +129013,7 @@ function save(props) {
|
|
127764 |
// removed by extract-text-webpack-plugin
|
127765 |
|
127766 |
/***/ }),
|
127767 |
-
/*
|
127768 |
/*!***************************************!*\
|
127769 |
!*** ./src/blocks/review/editor.scss ***!
|
127770 |
\***************************************/
|
@@ -127774,7 +129023,7 @@ function save(props) {
|
|
127774 |
// removed by extract-text-webpack-plugin
|
127775 |
|
127776 |
/***/ }),
|
127777 |
-
/*
|
127778 |
/*!*******************************************!*\
|
127779 |
!*** ./src/blocks/taxonomy-list/block.js ***!
|
127780 |
\*******************************************/
|
@@ -127783,11 +129032,11 @@ function save(props) {
|
|
127783 |
|
127784 |
"use strict";
|
127785 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
127786 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! ./style.scss */
|
127787 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
127788 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
127789 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
127790 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */
|
127791 |
/**
|
127792 |
* BLOCK: UAGB - Taxonomy List
|
127793 |
*/
|
@@ -127824,7 +129073,7 @@ registerBlockType("uagb/taxonomy-list", {
|
|
127824 |
});
|
127825 |
|
127826 |
/***/ }),
|
127827 |
-
/*
|
127828 |
/*!*********************************************!*\
|
127829 |
!*** ./src/blocks/taxonomy-list/style.scss ***!
|
127830 |
\*********************************************/
|
@@ -127834,7 +129083,7 @@ registerBlockType("uagb/taxonomy-list", {
|
|
127834 |
// removed by extract-text-webpack-plugin
|
127835 |
|
127836 |
/***/ }),
|
127837 |
-
/*
|
127838 |
/*!**********************************************!*\
|
127839 |
!*** ./src/blocks/taxonomy-list/editor.scss ***!
|
127840 |
\**********************************************/
|
@@ -127844,7 +129093,7 @@ registerBlockType("uagb/taxonomy-list", {
|
|
127844 |
// removed by extract-text-webpack-plugin
|
127845 |
|
127846 |
/***/ }),
|
127847 |
-
/*
|
127848 |
/*!******************************************!*\
|
127849 |
!*** ./src/blocks/taxonomy-list/edit.js ***!
|
127850 |
\******************************************/
|
@@ -127855,8 +129104,8 @@ registerBlockType("uagb/taxonomy-list", {
|
|
127855 |
"use strict";
|
127856 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
127857 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
127858 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
127859 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */
|
127860 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
127861 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
127862 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
@@ -128974,7 +130223,7 @@ var UAGBTaxonomyList = function (_Component) {
|
|
128974 |
})(UAGBTaxonomyList));
|
128975 |
|
128976 |
/***/ }),
|
128977 |
-
/*
|
128978 |
/*!*********************************************!*\
|
128979 |
!*** ./src/blocks/taxonomy-list/styling.js ***!
|
128980 |
\*********************************************/
|
@@ -129202,225 +130451,25 @@ function styling(props) {
|
|
129202 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
129203 |
|
129204 |
/***/ }),
|
129205 |
-
/*
|
129206 |
-
|
129207 |
-
!*** ./src/blocks/
|
129208 |
-
|
129209 |
-
/*! no exports provided */
|
129210 |
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
129211 |
-
|
129212 |
-
"use strict";
|
129213 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__condition_block__ = __webpack_require__(/*! ./condition-block */ 729);
|
129214 |
-
|
129215 |
-
|
129216 |
-
var __ = wp.i18n.__;
|
129217 |
-
|
129218 |
-
|
129219 |
-
var AdvancedControlsBlock = wp.compose.createHigherOrderComponent(function (BlockEdit) {
|
129220 |
-
|
129221 |
-
return function (props) {
|
129222 |
-
var Fragment = wp.element.Fragment;
|
129223 |
-
var InspectorAdvancedControls = wp.blockEditor.InspectorAdvancedControls;
|
129224 |
-
var isSelected = props.isSelected;
|
129225 |
-
|
129226 |
-
|
129227 |
-
var blocks_name = props.name;
|
129228 |
-
|
129229 |
-
var block_type = ['uagb/buttons-child', 'uagb/faq-child', 'uagb/icon-list-child', 'uagb/social-share-child', 'uagb/restaurant-menu-child'];
|
129230 |
-
|
129231 |
-
return wp.element.createElement(
|
129232 |
-
Fragment,
|
129233 |
-
null,
|
129234 |
-
wp.element.createElement(BlockEdit, props),
|
129235 |
-
isSelected && !block_type.includes(blocks_name) && wp.element.createElement(
|
129236 |
-
InspectorAdvancedControls,
|
129237 |
-
null,
|
129238 |
-
wp.element.createElement(
|
129239 |
-
'p',
|
129240 |
-
{ className: 'components-base-control__help' },
|
129241 |
-
__("Below setting will only take effect once you are on the live page, and not while you're editing.", 'ultimate-addons-for-gutenberg')
|
129242 |
-
),
|
129243 |
-
Object(__WEBPACK_IMPORTED_MODULE_0__condition_block__["a" /* default */])(props)
|
129244 |
-
)
|
129245 |
-
);
|
129246 |
-
};
|
129247 |
-
}, 'AdvancedControlsBlock');
|
129248 |
-
|
129249 |
-
wp.hooks.addFilter('editor.BlockEdit', 'uagb/advanced-control-block', AdvancedControlsBlock);
|
129250 |
-
|
129251 |
-
function ApplyExtraClass(extraProps, blockType, attributes) {
|
129252 |
-
var UAGHideDesktop = attributes.UAGHideDesktop,
|
129253 |
-
UAGHideTab = attributes.UAGHideTab,
|
129254 |
-
UAGHideMob = attributes.UAGHideMob,
|
129255 |
-
UAGDisplayConditions = attributes.UAGDisplayConditions;
|
129256 |
-
|
129257 |
-
|
129258 |
-
if ('responsiveVisibility' === UAGDisplayConditions) {
|
129259 |
-
if (UAGHideDesktop) {
|
129260 |
-
extraProps.className = extraProps.className + ' uag-hide-desktop';
|
129261 |
-
}
|
129262 |
-
|
129263 |
-
if (UAGHideTab) {
|
129264 |
-
extraProps.className = extraProps.className + ' uag-hide-tab';
|
129265 |
-
}
|
129266 |
-
|
129267 |
-
if (UAGHideMob) {
|
129268 |
-
extraProps.className = extraProps.className + ' uag-hide-mob';
|
129269 |
-
}
|
129270 |
-
}
|
129271 |
-
|
129272 |
-
return extraProps;
|
129273 |
-
}
|
129274 |
-
|
129275 |
-
wp.hooks.addFilter('blocks.getSaveContent.extraProps', 'uagb/apply-extra-class', ApplyExtraClass);
|
129276 |
-
|
129277 |
-
/***/ }),
|
129278 |
-
/* 729 */
|
129279 |
-
/*!********************************************************!*\
|
129280 |
-
!*** ./src/blocks/extensions/condition-block/index.js ***!
|
129281 |
-
\********************************************************/
|
129282 |
-
/*! exports provided: default */
|
129283 |
-
/*! exports used: default */
|
129284 |
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
129285 |
-
|
129286 |
-
"use strict";
|
129287 |
-
var _wp$components = wp.components,
|
129288 |
-
ToggleControl = _wp$components.ToggleControl,
|
129289 |
-
SelectControl = _wp$components.SelectControl;
|
129290 |
-
var __ = wp.i18n.__;
|
129291 |
-
|
129292 |
-
|
129293 |
-
var UserConditionOptions = function UserConditionOptions(props) {
|
129294 |
-
var attributes = props.attributes,
|
129295 |
-
setAttributes = props.setAttributes;
|
129296 |
-
var Fragment = wp.element.Fragment;
|
129297 |
-
var UAGLoggedIn = attributes.UAGLoggedIn,
|
129298 |
-
UAGLoggedOut = attributes.UAGLoggedOut,
|
129299 |
-
UAGDisplayConditions = attributes.UAGDisplayConditions,
|
129300 |
-
UAGHideDesktop = attributes.UAGHideDesktop,
|
129301 |
-
UAGHideMob = attributes.UAGHideMob,
|
129302 |
-
UAGHideTab = attributes.UAGHideTab,
|
129303 |
-
UAGSystem = attributes.UAGSystem,
|
129304 |
-
UAGBrowser = attributes.UAGBrowser,
|
129305 |
-
UAGUserRole = attributes.UAGUserRole;
|
129306 |
-
|
129307 |
-
|
129308 |
-
var user_role = uagb_blocks_info.user_role;
|
129309 |
-
|
129310 |
-
return wp.element.createElement(
|
129311 |
-
Fragment,
|
129312 |
-
null,
|
129313 |
-
wp.element.createElement(SelectControl, {
|
129314 |
-
label: __("Display Conditions"),
|
129315 |
-
value: UAGDisplayConditions,
|
129316 |
-
onChange: function onChange(value) {
|
129317 |
-
return setAttributes({ UAGDisplayConditions: value });
|
129318 |
-
},
|
129319 |
-
options: [{ value: "none", label: __("None") }, { value: "userstate", label: __("User State") }, { value: "responsiveVisibility", label: __("Responsive Visibility") }, { value: "userRole", label: __("User Role") }, { value: "browser", label: __("Browser") }, { value: "os", label: __("Operating System") }]
|
129320 |
-
}),
|
129321 |
-
UAGDisplayConditions == "userstate" && wp.element.createElement(
|
129322 |
-
Fragment,
|
129323 |
-
null,
|
129324 |
-
wp.element.createElement(ToggleControl, {
|
129325 |
-
label: __('Hide From Logged In Users'),
|
129326 |
-
checked: UAGLoggedIn,
|
129327 |
-
onChange: function onChange(value) {
|
129328 |
-
return setAttributes({ UAGLoggedIn: !attributes.UAGLoggedIn });
|
129329 |
-
}
|
129330 |
-
}),
|
129331 |
-
wp.element.createElement(ToggleControl, {
|
129332 |
-
label: __('Hide From Logged Out Users'),
|
129333 |
-
checked: UAGLoggedOut,
|
129334 |
-
onChange: function onChange(value) {
|
129335 |
-
return setAttributes({ UAGLoggedOut: !attributes.UAGLoggedOut });
|
129336 |
-
}
|
129337 |
-
})
|
129338 |
-
),
|
129339 |
-
UAGDisplayConditions == "responsiveVisibility" && wp.element.createElement(
|
129340 |
-
Fragment,
|
129341 |
-
null,
|
129342 |
-
wp.element.createElement(ToggleControl, {
|
129343 |
-
label: __('Hide on Desktop'),
|
129344 |
-
checked: UAGHideDesktop,
|
129345 |
-
onChange: function onChange(value) {
|
129346 |
-
return setAttributes({ UAGHideDesktop: !attributes.UAGHideDesktop });
|
129347 |
-
}
|
129348 |
-
}),
|
129349 |
-
wp.element.createElement(ToggleControl, {
|
129350 |
-
label: __('Hide on Tablet'),
|
129351 |
-
checked: UAGHideTab,
|
129352 |
-
onChange: function onChange(value) {
|
129353 |
-
return setAttributes({ UAGHideTab: !attributes.UAGHideTab });
|
129354 |
-
}
|
129355 |
-
}),
|
129356 |
-
wp.element.createElement(ToggleControl, {
|
129357 |
-
label: __('Hide on Mobile'),
|
129358 |
-
checked: UAGHideMob,
|
129359 |
-
onChange: function onChange(value) {
|
129360 |
-
return setAttributes({ UAGHideMob: !attributes.UAGHideMob });
|
129361 |
-
}
|
129362 |
-
})
|
129363 |
-
),
|
129364 |
-
UAGDisplayConditions == "os" && wp.element.createElement(
|
129365 |
-
Fragment,
|
129366 |
-
null,
|
129367 |
-
wp.element.createElement(SelectControl, {
|
129368 |
-
label: __("Hide on Operating System"),
|
129369 |
-
value: UAGSystem,
|
129370 |
-
onChange: function onChange(value) {
|
129371 |
-
return setAttributes({ UAGSystem: value });
|
129372 |
-
},
|
129373 |
-
options: [{ value: '', label: __("None") }, { value: 'iphone', label: __("IOS") }, { value: "android", label: __("Android") }, { value: "windows", label: __("Windows") }, { value: "open_bsd", label: __("OpenBSD") }, { value: "sun_os", label: __("SunOS") }, { value: "linux", label: __("Linux") }, { value: "mac_os", label: __("Mac OS") }]
|
129374 |
-
})
|
129375 |
-
),
|
129376 |
-
UAGDisplayConditions == "browser" && wp.element.createElement(
|
129377 |
-
Fragment,
|
129378 |
-
null,
|
129379 |
-
wp.element.createElement(SelectControl, {
|
129380 |
-
label: __("Hide on Browser"),
|
129381 |
-
value: UAGBrowser,
|
129382 |
-
onChange: function onChange(value) {
|
129383 |
-
return setAttributes({ UAGBrowser: value });
|
129384 |
-
},
|
129385 |
-
options: [{ value: '', label: __("None") }, { value: 'ie', label: __("Internet Explorer") }, { value: "firefox", label: __("Mozilla Firefox") }, { value: "chrome", label: __("Google Chrome") }, { value: "opera_mini", label: __("Opera Mini") }, { value: "opera", label: __("Opera") }, { value: "safari", label: __("Safari") }, { value: "edge", label: __("Microsoft Edge") }]
|
129386 |
-
})
|
129387 |
-
),
|
129388 |
-
UAGDisplayConditions == "userRole" && wp.element.createElement(
|
129389 |
-
Fragment,
|
129390 |
-
null,
|
129391 |
-
wp.element.createElement(SelectControl, {
|
129392 |
-
label: __("Hide for User Role"),
|
129393 |
-
value: UAGUserRole,
|
129394 |
-
onChange: function onChange(value) {
|
129395 |
-
return setAttributes({ UAGUserRole: value });
|
129396 |
-
},
|
129397 |
-
options: uagb_blocks_info.user_role
|
129398 |
-
})
|
129399 |
-
)
|
129400 |
-
);
|
129401 |
-
};
|
129402 |
-
|
129403 |
-
/* harmony default export */ __webpack_exports__["a"] = (UserConditionOptions);
|
129404 |
-
|
129405 |
-
/***/ }),
|
129406 |
-
/* 730 */
|
129407 |
-
/*!**********************************!*\
|
129408 |
-
!*** ./src/blocks/tabs/block.js ***!
|
129409 |
-
\**********************************/
|
129410 |
/*! no exports provided */
|
129411 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
129412 |
|
129413 |
"use strict";
|
129414 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
129415 |
-
/* harmony import */ var
|
129416 |
-
/* harmony import */ var
|
129417 |
-
/* harmony import */ var
|
129418 |
-
/* harmony import */ var
|
129419 |
-
/* harmony import */ var
|
129420 |
-
/* harmony import */ var
|
129421 |
-
/* harmony import */ var
|
|
|
129422 |
/**
|
129423 |
-
* BLOCK:
|
129424 |
*/
|
129425 |
|
129426 |
|
@@ -129430,230 +130479,430 @@ var UserConditionOptions = function UserConditionOptions(props) {
|
|
129430 |
|
129431 |
|
129432 |
|
|
|
129433 |
var __ = wp.i18n.__;
|
129434 |
var registerBlockType = wp.blocks.registerBlockType;
|
129435 |
|
129436 |
|
129437 |
-
registerBlockType("uagb/
|
129438 |
-
title: uagb_blocks_info.blocks["uagb/
|
129439 |
-
description: uagb_blocks_info.blocks["uagb/
|
129440 |
-
icon: __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__["a" /* default */].
|
129441 |
category: uagb_blocks_info.category,
|
129442 |
-
keywords: [__("
|
|
|
|
|
|
|
|
|
129443 |
supports: {
|
129444 |
anchor: true
|
129445 |
},
|
129446 |
-
|
129447 |
-
edit: __WEBPACK_IMPORTED_MODULE_4__edit__["a" /* default */],
|
129448 |
-
save: __WEBPACK_IMPORTED_MODULE_5__save__["a" /* default */]
|
129449 |
});
|
129450 |
|
129451 |
/***/ }),
|
129452 |
-
/*
|
129453 |
-
|
129454 |
-
!*** ./src/blocks/
|
129455 |
-
|
129456 |
-
/*! dynamic exports provided */
|
129457 |
-
/***/ (function(module, exports) {
|
129458 |
-
|
129459 |
-
// removed by extract-text-webpack-plugin
|
129460 |
-
|
129461 |
-
/***/ }),
|
129462 |
-
/* 732 */
|
129463 |
-
/*!*************************************!*\
|
129464 |
-
!*** ./src/blocks/tabs/editor.scss ***!
|
129465 |
-
\*************************************/
|
129466 |
-
/*! dynamic exports provided */
|
129467 |
-
/***/ (function(module, exports) {
|
129468 |
-
|
129469 |
-
// removed by extract-text-webpack-plugin
|
129470 |
-
|
129471 |
-
/***/ }),
|
129472 |
-
/* 733 */
|
129473 |
-
/*!***************************************!*\
|
129474 |
-
!*** ./src/blocks/tabs/attributes.js ***!
|
129475 |
-
\***************************************/
|
129476 |
/*! exports provided: default */
|
129477 |
/*! exports used: default */
|
129478 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
129479 |
|
129480 |
"use strict";
|
129481 |
-
/**
|
129482 |
-
* BLOCK: UAGB Tabs Block Attributes
|
129483 |
-
*/
|
129484 |
var __ = wp.i18n.__;
|
129485 |
|
|
|
129486 |
var attributes = {
|
129487 |
block_id: {
|
129488 |
type: "string"
|
129489 |
},
|
129490 |
-
|
129491 |
-
type:
|
129492 |
-
default:
|
129493 |
},
|
129494 |
-
|
129495 |
-
type:
|
129496 |
-
default:
|
129497 |
},
|
129498 |
-
|
129499 |
-
type:
|
129500 |
-
default:
|
129501 |
},
|
129502 |
-
|
129503 |
-
type:
|
129504 |
-
default: '
|
129505 |
},
|
129506 |
-
|
129507 |
-
type:
|
129508 |
-
default: '
|
129509 |
},
|
129510 |
-
|
129511 |
-
type:
|
129512 |
-
default: '
|
129513 |
},
|
129514 |
-
|
129515 |
-
type:
|
129516 |
},
|
129517 |
-
|
129518 |
-
type:
|
129519 |
-
default:
|
129520 |
},
|
129521 |
-
|
129522 |
-
type:
|
|
|
129523 |
},
|
129524 |
-
|
129525 |
-
type:
|
|
|
129526 |
},
|
129527 |
-
|
129528 |
-
type:
|
129529 |
-
default:
|
129530 |
},
|
129531 |
-
|
129532 |
-
type:
|
129533 |
-
default: "
|
129534 |
},
|
129535 |
-
|
129536 |
-
type:
|
129537 |
-
default: "#
|
129538 |
},
|
129539 |
-
|
129540 |
-
type:
|
129541 |
-
default: "#
|
129542 |
},
|
129543 |
-
|
129544 |
-
type: "
|
|
|
129545 |
},
|
129546 |
-
|
129547 |
-
type: "
|
|
|
129548 |
},
|
129549 |
-
|
129550 |
-
type: "
|
|
|
129551 |
},
|
129552 |
-
|
129553 |
-
|
|
|
129554 |
},
|
129555 |
-
|
129556 |
type: "number"
|
129557 |
},
|
129558 |
-
|
129559 |
-
type: "number"
|
|
|
129560 |
},
|
129561 |
-
|
129562 |
-
type: "
|
129563 |
},
|
129564 |
-
|
129565 |
-
type: "
|
129566 |
},
|
129567 |
-
|
129568 |
type: "number"
|
129569 |
},
|
129570 |
-
|
129571 |
type: "number"
|
129572 |
},
|
129573 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129574 |
type: "number"
|
129575 |
},
|
129576 |
-
|
129577 |
type: "number"
|
129578 |
},
|
129579 |
-
|
129580 |
type: "number"
|
129581 |
},
|
129582 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129583 |
type: "string",
|
129584 |
default: "px"
|
129585 |
},
|
129586 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129587 |
type: "number"
|
129588 |
},
|
129589 |
-
|
129590 |
type: "number"
|
129591 |
},
|
129592 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129593 |
type: "string",
|
129594 |
default: "Default"
|
129595 |
},
|
129596 |
-
|
129597 |
type: "string"
|
129598 |
},
|
129599 |
-
|
129600 |
type: "string"
|
129601 |
},
|
129602 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129603 |
type: "string",
|
129604 |
default: "em"
|
129605 |
},
|
129606 |
-
|
129607 |
type: "number"
|
129608 |
},
|
129609 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129610 |
type: "number"
|
129611 |
},
|
129612 |
-
|
129613 |
type: "number"
|
129614 |
},
|
129615 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129616 |
type: "boolean",
|
129617 |
default: false
|
129618 |
},
|
129619 |
-
|
129620 |
type: "string",
|
129621 |
-
default: "
|
129622 |
},
|
129623 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129624 |
type: "boolean",
|
129625 |
default: false
|
129626 |
},
|
129627 |
-
|
129628 |
-
|
|
|
|
|
129629 |
},
|
129630 |
-
|
129631 |
type: "string",
|
129632 |
-
default: "
|
129633 |
},
|
129634 |
-
|
129635 |
type: "string",
|
129636 |
-
default:
|
129637 |
},
|
129638 |
-
|
129639 |
-
type: "string"
|
|
|
129640 |
},
|
129641 |
-
|
129642 |
-
type: "
|
129643 |
-
default:
|
129644 |
},
|
129645 |
-
|
129646 |
-
type: "string"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129647 |
}
|
129648 |
};
|
129649 |
-
|
129650 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
129651 |
|
129652 |
/***/ }),
|
129653 |
-
/*
|
129654 |
-
|
129655 |
-
!*** ./src/blocks/
|
129656 |
-
|
129657 |
/*! exports provided: default */
|
129658 |
/*! exports used: default */
|
129659 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
@@ -129661,19 +130910,19 @@ var attributes = {
|
|
129661 |
"use strict";
|
129662 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
129663 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
129664 |
-
/* harmony import */ var
|
129665 |
-
/* harmony import */ var
|
129666 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */
|
129667 |
-
/* harmony import */ var
|
129668 |
-
/* harmony import */ var
|
129669 |
-
/* harmony import */ var
|
129670 |
-
/* harmony import */ var
|
129671 |
-
/* harmony import */ var
|
129672 |
-
|
129673 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
129674 |
-
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
129675 |
|
129676 |
-
function
|
|
|
|
|
129677 |
|
129678 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
129679 |
|
@@ -129682,305 +130931,6828 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
|
|
129682 |
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
129683 |
|
129684 |
/**
|
129685 |
-
* BLOCK:
|
129686 |
*/
|
129687 |
|
129688 |
|
129689 |
|
129690 |
|
129691 |
-
// Import all of our Text Options requirements.
|
129692 |
-
|
129693 |
-
|
129694 |
-
|
129695 |
-
|
129696 |
-
|
129697 |
-
|
129698 |
-
|
129699 |
|
129700 |
|
|
|
129701 |
|
129702 |
-
var __ = wp.i18n.__;
|
129703 |
-
var _wp$element = wp.element,
|
129704 |
-
Component = _wp$element.Component,
|
129705 |
-
Fragment = _wp$element.Fragment;
|
129706 |
|
|
|
129707 |
|
129708 |
-
var svg_icons = Object.keys(__WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_UAGBIcon_json___default.a);
|
129709 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129710 |
var _wp$blockEditor = wp.blockEditor,
|
129711 |
-
BlockAlignmentToolbar = _wp$blockEditor.BlockAlignmentToolbar,
|
129712 |
-
InspectorControls = _wp$blockEditor.InspectorControls,
|
129713 |
InnerBlocks = _wp$blockEditor.InnerBlocks,
|
129714 |
-
PanelColorSettings = _wp$blockEditor.PanelColorSettings,
|
129715 |
RichText = _wp$blockEditor.RichText,
|
129716 |
-
|
|
|
|
|
129717 |
var _wp$components = wp.components,
|
129718 |
PanelBody = _wp$components.PanelBody,
|
129719 |
-
TabPanel = _wp$components.TabPanel,
|
129720 |
SelectControl = _wp$components.SelectControl,
|
129721 |
RangeControl = _wp$components.RangeControl,
|
129722 |
-
ToggleControl = _wp$components.ToggleControl,
|
129723 |
-
BaseControl = _wp$components.BaseControl,
|
129724 |
-
Tooltip = _wp$components.Tooltip,
|
129725 |
Button = _wp$components.Button,
|
129726 |
-
|
129727 |
-
|
129728 |
-
|
129729 |
-
|
129730 |
-
|
129731 |
-
|
129732 |
-
|
|
|
|
|
129733 |
|
129734 |
-
var UAGBTabsEdit = function (_Component) {
|
129735 |
-
_inherits(UAGBTabsEdit, _Component);
|
129736 |
|
129737 |
-
|
129738 |
-
_classCallCheck(this, UAGBTabsEdit);
|
129739 |
|
129740 |
-
|
129741 |
-
|
129742 |
|
129743 |
-
|
129744 |
-
|
129745 |
-
value: function componentDidMount() {
|
129746 |
-
this.props.setAttributes({ block_id: this.props.clientId.substr(0, 8) });
|
129747 |
-
var $style = document.createElement("style");
|
129748 |
-
$style.setAttribute("id", "uagb-style-tab-" + this.props.clientId.substr(0, 8));
|
129749 |
-
document.head.appendChild($style);
|
129750 |
-
this.updateTabTitle();
|
129751 |
-
this.props.resetTabOrder();
|
129752 |
-
}
|
129753 |
-
}, {
|
129754 |
-
key: "componentDidUpdate",
|
129755 |
-
value: function componentDidUpdate() {
|
129756 |
|
129757 |
-
|
129758 |
|
129759 |
-
|
129760 |
-
|
129761 |
-
|
|
|
|
|
|
|
|
|
|
|
129762 |
}
|
129763 |
}, {
|
129764 |
-
key: "
|
129765 |
-
value: function
|
129766 |
-
var
|
129767 |
-
attributes = _props.attributes,
|
129768 |
-
setAttributes = _props.setAttributes,
|
129769 |
-
clientId = _props.clientId;
|
129770 |
-
var tabHeaders = attributes.tabHeaders;
|
129771 |
-
|
129772 |
-
var _ref = !wp.blockEditor ? dispatch('core/editor') : dispatch('core/block-editor'),
|
129773 |
-
updateBlockAttributes = _ref.updateBlockAttributes;
|
129774 |
-
|
129775 |
-
var _ref2 = !wp.blockEditor ? select('core/editor') : select('core/block-editor'),
|
129776 |
-
getBlockOrder = _ref2.getBlockOrder;
|
129777 |
|
129778 |
-
var childBlocks = getBlockOrder(clientId);
|
129779 |
|
129780 |
-
|
129781 |
-
|
129782 |
-
|
129783 |
-
}
|
129784 |
-
return item;
|
129785 |
-
});
|
129786 |
|
129787 |
-
|
129788 |
-
|
129789 |
-
|
129790 |
}
|
129791 |
}, {
|
129792 |
-
key: "
|
129793 |
-
value: function
|
129794 |
-
var
|
129795 |
-
attributes = _props2.attributes,
|
129796 |
-
clientId = _props2.clientId;
|
129797 |
-
var tabHeaders = attributes.tabHeaders;
|
129798 |
-
|
129799 |
-
var _ref3 = !wp.blockEditor ? dispatch('core/editor') : dispatch('core/block-editor'),
|
129800 |
-
updateBlockAttributes = _ref3.updateBlockAttributes;
|
129801 |
-
|
129802 |
-
var _ref4 = !wp.blockEditor ? select('core/editor') : select('core/block-editor'),
|
129803 |
-
getBlockOrder = _ref4.getBlockOrder;
|
129804 |
|
129805 |
-
|
|
|
|
|
|
|
|
|
|
|
129806 |
|
129807 |
-
|
129808 |
-
return updateBlockAttributes(childBlockId, { tabHeaders: tabHeaders });
|
129809 |
});
|
129810 |
}
|
129811 |
}, {
|
129812 |
-
key: "
|
129813 |
-
value: function
|
129814 |
-
var
|
129815 |
-
attributes = _props3.attributes,
|
129816 |
-
setAttributes = _props3.setAttributes,
|
129817 |
-
clientId = _props3.clientId;
|
129818 |
-
|
129819 |
-
var _ref5 = !wp.blockEditor ? dispatch('core/editor') : dispatch('core/block-editor'),
|
129820 |
-
insertBlock = _ref5.insertBlock;
|
129821 |
|
129822 |
-
var
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129823 |
|
129824 |
-
|
129825 |
-
|
129826 |
-
|
129827 |
-
|
129828 |
-
|
129829 |
-
}
|
129830 |
-
}, {
|
129831 |
-
key: "removeTab",
|
129832 |
-
value: function removeTab(index) {
|
129833 |
-
var _props4 = this.props,
|
129834 |
-
attributes = _props4.attributes,
|
129835 |
-
setAttributes = _props4.setAttributes,
|
129836 |
-
clientId = _props4.clientId;
|
129837 |
|
129838 |
-
|
129839 |
-
|
129840 |
|
129841 |
-
var
|
129842 |
-
getBlockOrder = _ref7.getBlockOrder;
|
129843 |
|
129844 |
-
|
129845 |
|
129846 |
-
|
129847 |
-
|
129848 |
-
|
129849 |
-
|
129850 |
-
}
|
129851 |
-
});
|
129852 |
-
this.updateTabsAttr({ tabActive: 0 });
|
129853 |
-
this.props.resetTabOrder();
|
129854 |
-
}
|
129855 |
-
}, {
|
129856 |
-
key: "updateTabsAttr",
|
129857 |
-
value: function updateTabsAttr(attrs) {
|
129858 |
-
var _props5 = this.props,
|
129859 |
-
setAttributes = _props5.setAttributes,
|
129860 |
-
clientId = _props5.clientId;
|
129861 |
|
129862 |
-
|
129863 |
-
|
129864 |
|
129865 |
-
var
|
129866 |
-
getBlockOrder = _ref9.getBlockOrder;
|
129867 |
|
129868 |
-
|
129869 |
|
129870 |
-
|
129871 |
-
|
129872 |
-
|
129873 |
-
|
129874 |
-
|
129875 |
-
}
|
129876 |
-
}, {
|
129877 |
-
key: "render",
|
129878 |
-
value: function render() {
|
129879 |
-
var _this2 = this;
|
129880 |
|
129881 |
-
|
129882 |
-
|
129883 |
-
setAttributes = _props6.setAttributes,
|
129884 |
-
className = _props6.className;
|
129885 |
-
var tabsStyleD = attributes.tabsStyleD,
|
129886 |
-
tabsStyleM = attributes.tabsStyleM,
|
129887 |
-
tabsStyleT = attributes.tabsStyleT,
|
129888 |
-
tabActiveFrontend = attributes.tabActiveFrontend,
|
129889 |
-
tabHeaders = attributes.tabHeaders,
|
129890 |
-
headerBgColor = attributes.headerBgColor,
|
129891 |
-
borderWidth = attributes.borderWidth,
|
129892 |
-
borderColor = attributes.borderColor,
|
129893 |
-
headerTextColor = attributes.headerTextColor,
|
129894 |
-
activeTabBgColor = attributes.activeTabBgColor,
|
129895 |
-
activeTabTextColor = attributes.activeTabTextColor,
|
129896 |
-
bodyBgColor = attributes.bodyBgColor,
|
129897 |
-
bodyTextColor = attributes.bodyTextColor,
|
129898 |
-
tabActive = attributes.tabActive,
|
129899 |
-
tabTitleLeftMargin = attributes.tabTitleLeftMargin,
|
129900 |
-
tabTitleRightMargin = attributes.tabTitleRightMargin,
|
129901 |
-
tabTitleTopMargin = attributes.tabTitleTopMargin,
|
129902 |
-
tabTitleBottomMargin = attributes.tabTitleBottomMargin,
|
129903 |
-
tabBodyLeftMargin = attributes.tabBodyLeftMargin,
|
129904 |
-
tabBodyRightMargin = attributes.tabBodyRightMargin,
|
129905 |
-
tabBodyTopMargin = attributes.tabBodyTopMargin,
|
129906 |
-
tabBodyBottomMargin = attributes.tabBodyBottomMargin,
|
129907 |
-
tabBodyVertPadding = attributes.tabBodyVertPadding,
|
129908 |
-
tabBodyHrPadding = attributes.tabBodyHrPadding,
|
129909 |
-
tabTitleVertPadding = attributes.tabTitleVertPadding,
|
129910 |
-
tabTitleHrPadding = attributes.tabTitleHrPadding,
|
129911 |
-
titleLoadGoogleFonts = attributes.titleLoadGoogleFonts,
|
129912 |
-
titleFontFamily = attributes.titleFontFamily,
|
129913 |
-
titleFontWeight = attributes.titleFontWeight,
|
129914 |
-
titleFontSubset = attributes.titleFontSubset,
|
129915 |
-
titleFontSizeType = attributes.titleFontSizeType,
|
129916 |
-
titleFontSize = attributes.titleFontSize,
|
129917 |
-
titleFontSizeMobile = attributes.titleFontSizeMobile,
|
129918 |
-
titleFontSizeTablet = attributes.titleFontSizeTablet,
|
129919 |
-
titleLineHeightType = attributes.titleLineHeightType,
|
129920 |
-
titleLineHeight = attributes.titleLineHeight,
|
129921 |
-
titleLineHeightMobile = attributes.titleLineHeightMobile,
|
129922 |
-
titleLineHeightTablet = attributes.titleLineHeightTablet,
|
129923 |
-
titleAlign = attributes.titleAlign,
|
129924 |
-
showIcon = attributes.showIcon,
|
129925 |
-
icon = attributes.icon,
|
129926 |
-
iconColor = attributes.iconColor,
|
129927 |
-
iconPosition = attributes.iconPosition,
|
129928 |
-
iconSpacing = attributes.iconSpacing,
|
129929 |
-
iconSize = attributes.iconSize,
|
129930 |
-
activeiconColor = attributes.activeiconColor;
|
129931 |
|
|
|
129932 |
|
129933 |
-
|
129934 |
-
|
129935 |
-
|
129936 |
-
|
129937 |
-
|
129938 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129939 |
wp.element.createElement(
|
129940 |
-
|
129941 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129942 |
wp.element.createElement(
|
129943 |
-
|
129944 |
-
{
|
129945 |
-
|
129946 |
-
|
129947 |
-
|
129948 |
-
|
129949 |
-
|
129950 |
-
|
129951 |
-
|
129952 |
-
|
129953 |
-
|
129954 |
-
|
129955 |
-
|
129956 |
-
|
129957 |
-
|
129958 |
-
|
129959 |
-
|
129960 |
-
|
129961 |
-
|
129962 |
-
|
129963 |
-
|
129964 |
-
|
129965 |
-
|
129966 |
-
|
129967 |
-
|
129968 |
-
|
129969 |
-
|
129970 |
-
|
129971 |
-
|
129972 |
-
|
129973 |
-
|
129974 |
-
|
129975 |
-
|
129976 |
-
|
129977 |
-
|
129978 |
-
|
129979 |
-
|
129980 |
-
|
129981 |
-
|
129982 |
-
|
129983 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
/******/ __webpack_require__.p = "";
|
61 |
/******/
|
62 |
/******/ // Load entry module and return exports
|
63 |
+
/******/ return __webpack_require__(__webpack_require__.s = 253);
|
64 |
/******/ })
|
65 |
/************************************************************************/
|
66 |
/******/ ([
|
190 |
"marketing_button": el("svg", { width: 20, height: 20 }, el("path", { fill: "#4a00e0", d: "M12.997 2.99c-0.050-0.153-0.158-0.28-0.302-0.353s-0.31-0.086-0.463-0.036l-2.54 0.825c-0.319 0.104-0.493 0.446-0.39 0.765l0.127 0.391-6.461 4.746-2.549 0.828c-0.153 0.050-0.28 0.158-0.353 0.302s-0.086 0.31-0.036 0.463l1.548 4.765c0.083 0.257 0.321 0.42 0.577 0.42 0.062 0 0.125-0.010 0.188-0.030l2.548-0.828 1.309 0.007c0.263 1.241 1.367 2.176 2.686 2.176 1.308 0 2.405-0.92 2.679-2.148l1.343 0.007 0.127 0.391c0.050 0.153 0.158 0.28 0.302 0.353 0.086 0.044 0.181 0.066 0.276 0.066 0.063 0 0.127-0.010 0.188-0.030l2.54-0.825c0.319-0.104 0.493-0.446 0.39-0.765l-3.733-11.489zM2.545 14.732l-1.173-3.61 1.487-0.483 1.173 3.61-1.486 0.483zM8.886 16.215c-0.64 0-1.189-0.396-1.418-0.955l2.83 0.015c-0.232 0.552-0.777 0.94-1.412 0.94zM5.239 14.034l-1.277-3.93 5.862-4.306 2.689 8.275-7.274-0.038zM14.002 14.727l-0.075-0.229c-0-0-0-0.001-0-0.001l-3.283-10.104 1.385-0.45 3.358 10.335-1.385 0.45z" }), el("path", { fill: "#4a00e0", d: "M15.041 5.941c0.088 0.045 0.182 0.066 0.275 0.066 0.221 0 0.434-0.121 0.541-0.332l1.090-2.138c0.152-0.299 0.034-0.664-0.265-0.817s-0.664-0.034-0.817 0.265l-1.090 2.138c-0.152 0.299-0.034 0.664 0.265 0.817z" }), el("path", { fill: "#4a00e0", d: "M19.604 11.714l-2.138-1.089c-0.299-0.152-0.664-0.033-0.817 0.265s-0.033 0.664 0.265 0.817l2.138 1.089c0.088 0.045 0.182 0.066 0.275 0.066 0.221 0 0.434-0.121 0.541-0.332 0.152-0.299 0.033-0.664-0.265-0.817z" }), el("path", { fill: "#4a00e0", d: "M16.533 8.193c0.083 0.257 0.321 0.42 0.577 0.42 0.062 0 0.125-0.010 0.188-0.030l2.282-0.742c0.319-0.104 0.493-0.446 0.39-0.765s-0.446-0.493-0.765-0.39l-2.282 0.742c-0.319 0.104-0.493 0.446-0.39 0.765z" })),
|
191 |
"table_of_contents": el("svg", { width: 20, height: 20 }, el("path", { fill: "#4a00e0", d: "M0 0h1.25v20h-1.25v-20zM18.75 0h1.25v20h-1.25v-20zM1.25 1.25v-1.25h17.5v1.25h-17.5zM1.25 20v-1.25h17.5v1.25h-17.5zM1.25 4.063v-1.25h17.5v1.25h-17.5zM13.75 1.25h1.25v1.563h-1.25v-1.563zM4.375 5c-0.938 0-1.875 0.938-1.875 1.875s0.938 1.875 1.875 1.875c0.938 0 1.875-0.938 1.875-1.875s-0.938-1.875-1.875-1.875zM4.375 5.938c0.625 0 0.938 0.313 0.938 0.938s-0.313 0.938-0.938 0.938c-0.625 0-0.938-0.313-0.938-0.938s0.313-0.938 0.938-0.938zM7.813 7.5h9.688v-1.25h-9.688v1.25zM4.375 9.688c-0.938 0-1.875 0.625-1.875 1.875 0 0.938 0.938 1.875 1.875 1.875s1.875-0.938 1.875-1.875c0-1.25-0.938-1.875-1.875-1.875zM4.375 10.313c0.625 0 0.938 0.625 0.938 1.25 0 0.313-0.313 0.938-0.938 0.938s-0.938-0.625-0.938-0.938c0-0.625 0.313-1.25 0.938-1.25zM7.813 12.188h9.688v-1.25h-9.688v1.25zM4.375 14.063c0.938 0 1.875 0.938 1.875 1.875s-0.938 1.875-1.875 1.875c-0.938 0-1.875-0.938-1.875-1.875s0.938-1.875 1.875-1.875zM4.375 15c-0.625 0-0.938 0.313-0.938 0.938s0.313 0.938 0.938 0.938c0.625 0 0.938-0.313 0.938-0.938s-0.313-0.938-0.938-0.938zM7.813 16.563h9.688v-1.25h-9.688v1.25z" })),
|
192 |
"faq": el("svg", { width: 20, height: 20 }, el("path", { fill: "#4a00e0", d: "M10.95 14.645c0 0.524-0.425 0.949-0.949 0.949s-0.949-0.425-0.949-0.949c0-0.524 0.425-0.949 0.949-0.949s0.949 0.425 0.949 0.949z" }), el("path", { fill: "#4a00e0", d: "M10.001 0.292c-5.366 0-9.709 4.342-9.709 9.708s4.342 9.708 9.709 9.708c5.365 0 9.707-4.342 9.707-9.708 0-5.365-4.342-9.708-9.707-9.708zM10.001 18.643c-4.777 0-8.644-3.864-8.644-8.643 0-4.776 3.865-8.643 8.644-8.643 4.777 0 8.642 3.865 8.642 8.643s-3.865 8.643-8.642 8.643z" }), el("path", { fill: "#4a00e0", d: "M10.001 5.165c-1.674 0-3.034 1.361-3.034 3.033 0 0.42 0.339 0.76 0.758 0.76s0.759-0.34 0.759-0.76c0-0.836 0.68-1.516 1.518-1.516 0.835 0 1.516 0.68 1.516 1.516s-0.681 1.519-1.516 1.519c-0.421 0-0.759 0.339-0.759 0.757v1.897c0 0.417 0.338 0.757 0.759 0.757 0.418 0 0.758-0.34 0.758-0.757v-1.234c1.308-0.337 2.275-1.527 2.275-2.938-0.001-1.673-1.363-3.034-3.034-3.034z" })),
|
193 |
+
"forms": el("svg", { width: 20, height: 20, viewBox: "-35 37 128 128" }, el("path", { fill: "#4a00e0", d: "M61,37h-80c-8.8,0-16,7.2-16,16v96c0,8.8,7.2,16,16,16h44v-8h-44c-4.4,0-8-3.6-8-8V53c0-4.4,3.6-8,8-8h80c4.4,0,8,3.6,8,8v47l8-8V53C77,44.2,69.8,37,61,37z" }), el("path", { fill: "#4a00e0", d: "M90.7,109l-5.7-5.7c-1.6-1.6-3.6-2.3-5.7-2.3s-4.1,0.8-5.7,2.3l-34.3,34.3c-1.6,1.6-6.3,7.6-6.3,9.7L29,165l17.7-4c0,0,8.1-4.8,9.7-6.3l34.3-34.3C93.8,117.2,93.8,112.1,90.7,109z M53.5,151.8c-0.5,0.4-2,1.5-3.9,2.7l-10.4-10.4c1.1-1.5,2.2-2.9,3-3.6L68,114.7L79.3,126L53.5,151.8z" }), el("path", { fill: "#4a00e0", d: "M53,69h-64v-8h64V69z" }), el("path", { fill: "#4a00e0", d: "M53,85h-64v-8h64V85z" }), el("path", { fill: "#4a00e0", d: "M53,101h-64v-8h64V101z" }), el("path", { fill: "#4a00e0", d: "M21,117h-32v-8h32V117z" })),
|
194 |
"how_to": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M29.539 1.258l-27.674 9.042c-0.782 0.256-0.894 1.318-0.182 1.733l10.458 6.082c0.33 0.189 0.742 0.166 1.048-0.059l2.939-2.182-2.182 2.939c-0.229 0.306-0.251 0.72-0.059 1.048l6.082 10.458c0.413 0.71 1.477 0.598 1.733-0.184l9.040-27.672c0.243-0.742-0.461-1.445-1.202-1.203v0zM20.549 27.518l-4.696-8.075 5.661-7.622c0.282-0.381 0.243-0.909-0.091-1.243-0.336-0.334-0.864-0.373-1.245-0.091l-7.622 5.662-8.074-4.696 23.862-7.798-7.795 23.864zM11.229 22.122l-6.336 6.338c-0.373 0.37-0.978 0.37-1.349 0-0.373-0.374-0.373-0.978 0-1.35l6.334-6.336c0.373-0.374 0.978-0.374 1.35 0 0.371 0.371 0.371 0.976 0 1.349zM2.858 22.362c-0.371-0.371-0.371-0.978 0-1.349l2.501-2.501c0.373-0.374 0.976-0.374 1.349 0 0.373 0.371 0.373 0.974 0 1.349l-2.501 2.501c-0.373 0.373-0.976 0.373-1.349 0zM13.49 25.293c0.371 0.373 0.371 0.978 0 1.35l-2.501 2.501c-0.186 0.184-0.43 0.278-0.675 0.278-0.842 0-1.277-1.027-0.674-1.63l2.501-2.501c0.37-0.371 0.976-0.371 1.349 0.002v0z" })),
|
195 |
"inline_notice": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M30.69 25.701l-13.094-21.389c-0.35-0.571-0.96-0.912-1.63-0.912h-0.002c-0.67 0-1.28 0.344-1.629 0.915l-13.026 21.389c-0.352 0.578-0.374 1.28-0.064 1.882 0.304 0.59 0.878 0.966 1.534 1.013 0.045 0.003 0.090 0.005 0.134 0.005h26.168c0.045 0 0.093-0.002 0.134-0.005 0.658-0.045 1.232-0.422 1.538-1.013 0.312-0.606 0.288-1.307-0.064-1.885zM3.458 26.403l12.507-20.541 12.576 20.541h-25.083z" }), el("path", { fill: "#4a00e0", d: "M15.966 11.242c-0.533 0-0.965 0.432-0.965 0.965v8.037c0 0.531 0.432 0.966 0.965 0.966s0.965-0.432 0.965-0.966v-8.037c0-0.533-0.432-0.965-0.965-0.965z" }), el("path", { fill: "#4a00e0", d: "M16.946 23.702c0 0.532-0.431 0.963-0.963 0.963s-0.963-0.431-0.963-0.963c0-0.532 0.431-0.963 0.963-0.963s0.963 0.431 0.963 0.963z" })),
|
196 |
"wp_search": el("svg", { width: 20, height: 20, viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M20.433 1.068c-5.789 0-10.499 4.71-10.499 10.5 0 2.58 0.936 4.945 2.486 6.775l-1.187 1.187-0.618-0.618c-0.342-0.342-0.896-0.342-1.238 0l-7.542 7.54c-1.024 1.024-1.024 2.689 0 3.713s2.689 1.023 3.712 0l7.541-7.541c0.341-0.342 0.341-0.895 0-1.237l-0.619-0.62 1.187-1.187c1.83 1.55 4.196 2.486 6.776 2.486 5.791 0 10.499-4.71 10.499-10.499s-4.708-10.499-10.499-10.499zM4.311 28.927c-0.341 0.34-0.897 0.34-1.238 0s-0.341-0.896 0-1.238l4.447-4.447 1.238 1.238-4.447 4.447zM9.996 23.242l-1.238-1.238 1.238-1.238 1.238 1.238-1.238 1.238zM20.433 20.317c-4.824 0-8.749-3.924-8.749-8.749s3.925-8.75 8.749-8.75c4.826 0 8.749 3.925 8.749 8.75s-3.924 8.749-8.749 8.749z" })),
|
197 |
"taxonomy_list": el("svg", { width: 20, height: 20, viewBox: "0 0 38 32" }, el("path", { fill: "#4a00e0", d: "M14 24.68h-2.4c-0.24-0.96-0.72-1.84-1.4-2.52l1.28-2c0.44-0.68 0.24-1.6-0.44-2.040s-1.6-0.24-2.040 0.44l-1.28 2c-0.56-0.2-1.2-0.28-1.8-0.28-3.24 0-5.88 2.64-5.88 5.88s2.68 5.84 5.92 5.84c2.72 0 5.040-1.88 5.68-4.4h2.4c0.8 0 1.48-0.64 1.48-1.48-0.040-0.8-0.68-1.44-1.52-1.44zM5.96 29.080c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92 2.92 1.32 2.92 2.92c0 1.6-1.32 2.92-2.92 2.92z" }), el("path", { fill: "#4a00e0", d: "M31.76 20.24c-0.64 0-1.24 0.12-1.8 0.28l-1.28-2c-0.44-0.68-1.36-0.88-2.040-0.44s-0.88 1.36-0.44 2.040l1.28 2c-0.64 0.72-1.16 1.56-1.4 2.52h-2.4c-0.8 0-1.48 0.64-1.48 1.48 0 0.8 0.64 1.48 1.48 1.48h2.4c0.64 2.52 2.96 4.4 5.68 4.4 3.24 0 5.88-2.64 5.88-5.88s-2.64-5.88-5.88-5.88zM31.76 29.080c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92c1.6 0 2.92 1.32 2.92 2.92 0.040 1.6-1.28 2.92-2.92 2.92z" }), el("path", { fill: "#4a00e0", d: "M24 13.92c0.68-0.44 0.88-1.36 0.44-2.040l-1.28-2c0.96-1.040 1.56-2.44 1.56-4 0-3.24-2.64-5.88-5.84-5.88s-5.88 2.64-5.88 5.88c0 1.56 0.6 2.96 1.56 4l-1.28 2c-0.44 0.68-0.24 1.6 0.44 2.040s1.6 0.24 2.040-0.44l1.28-2c0.56 0.2 1.2 0.28 1.8 0.28s1.24-0.12 1.8-0.28l1.28 2c0.48 0.68 1.4 0.88 2.080 0.44zM18.88 8.8c-1.6 0-2.92-1.32-2.92-2.92s1.32-2.92 2.92-2.92 2.92 1.32 2.92 2.92c0 1.6-1.32 2.92-2.92 2.92z" })),
|
198 |
"review": el("svg", { width: 20, height: 20, viewBox: "0 0 29 29" }, el("path", { fill: "#4a00e0", d: "M20.48 16.187l0.4-0.4-0.533-0.053-0.107-0.027-0.053-0.080-0.24-0.507v1.493l0.080 0.053 0.507 0.267-0.080-0.56-0.027-0.107 0.053-0.080zM21.2 15.787l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.027-0.027-0.053-0.053-0.027-0.080 0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053-0.027 0-0.053 0.053-0.080 0.080z" }), el("path", { fill: "#4a00e0", d: "M8.16 16.187l0.4-0.4-0.56-0.053-0.107-0.027-0.053-0.080-0.24-0.507v1.493l0.080 0.053 0.507 0.267-0.080-0.56-0.027-0.107 0.080-0.080zM8.853 15.787l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.027-0.027-0.053-0.053-0.027-0.080s0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s-0.027 0.053-0.080 0.080z" }), el("path", { fill: "#4a00e0", d: "M7.147 16.267l-0.027 0.107-0.080 0.56 0.507-0.267 0.080-0.053v-1.493l-0.24 0.507-0.053 0.080-0.133 0.027-0.533 0.080 0.4 0.4 0.080 0.053zM6.32 15.68c0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s0 0.053-0.027 0.080l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.080 0-0.080-0.053-0.080-0.080z" }), el("path", { fill: "#4a00e0", d: "M11.333 16.187l0.4-0.4-0.533-0.053-0.107-0.027-0.053-0.080-0.24-0.507v1.493l0.080 0.053 0.507 0.267-0.080-0.56-0.053-0.107 0.080-0.080zM12.053 15.787l-0.587 0.533 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.027-0.027-0.053-0.053-0.027-0.080s0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053-0.027 0.027-0.027 0.080-0.053 0.107z" }), el("path", { fill: "#4a00e0", d: "M10.32 16.267l-0.027 0.107-0.080 0.56 0.507-0.267 0.080-0.053v-1.493l-0.24 0.507-0.053 0.080-0.107 0.027-0.56 0.080 0.4 0.4 0.080 0.053zM9.493 15.68c0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s0 0.053-0.027 0.080l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.080 0-0.080-0.053-0.080-0.080z" }), el("path", { fill: "#4a00e0", d: "M14.4 16.187l0.4-0.4-0.56-0.053-0.107-0.027-0.053-0.080-0.24-0.507v1.493l0.080 0.053 0.507 0.267-0.080-0.56-0.027-0.107 0.080-0.080zM15.093 15.787l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.027-0.027-0.053-0.053-0.027-0.080 0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s-0.053 0.053-0.080 0.080z" }), el("path", { fill: "#4a00e0", d: "M13.36 16.267l-0.027 0.107-0.080 0.56 0.507-0.267 0.080-0.053v-1.493l-0.24 0.48-0.053 0.080-0.107 0.053-0.56 0.080 0.4 0.4 0.080 0.053zM12.56 15.68c0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s0 0.053-0.027 0.080l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.080 0-0.107-0.053-0.080-0.080z" }), el("path", { fill: "#4a00e0", d: "M17.493 16.187l0.4-0.4-0.56-0.053-0.107-0.027-0.053-0.080-0.24-0.507v1.493l0.080 0.053 0.507 0.267-0.080-0.56-0.027-0.107 0.080-0.080zM18.187 15.787l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.027-0.027-0.053-0.053-0.027-0.080s0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053-0.027 0-0.027 0.053-0.080 0.080z" }), el("path", { fill: "#4a00e0", d: "M16.48 16.267l-0.027 0.107-0.080 0.56 0.507-0.267 0.080-0.053v-1.493l-0.24 0.507-0.053 0.080-0.133 0.027-0.533 0.080 0.4 0.4 0.080 0.053zM15.653 15.68c0-0.027 0.027-0.053 0.080-0.053l0.773-0.107 0.347-0.72c0.027-0.053 0.053-0.053 0.080-0.053s0.053 0.027 0.080 0.053l0.347 0.72 0.773 0.107c0.053 0 0.080 0.027 0.080 0.053s0 0.053-0.027 0.080l-0.56 0.56 0.133 0.773c0 0.027 0 0.053 0 0.080s-0.027 0.027-0.053 0.027c-0.027 0-0.027 0-0.053-0.027l-0.693-0.373-0.693 0.373c-0.027 0-0.053 0.027-0.053 0.027-0.027 0-0.053 0-0.053-0.027s-0.027-0.053 0-0.080l0.133-0.773-0.56-0.56c-0.080 0-0.080-0.053-0.080-0.080z" }), el("path", { fill: "none", stroke: "#4a00e0", linejoin: "miter", linecap: "butt", miterlimit: "10", width: "1.3333", d: "M18.8 25.733h-15.147v-21.867h25.227v14.293" }), el("path", { fill: "none", stroke: "#4a00e0", linejoin: "miter", linecap: "butt", miterlimit: "10", width: "1.3333", d: "M3.653 8.907h25.227" }), el("path", { fill: "none", stroke: "#4a00e0", linejoin: "miter", linecap: "butt", miterlimit: "10", width: "1.3333", d: "M6.187 6.4h1.68" }), el("path", { fill: "none", stroke: "#4a00e0", linejoin: "miter", linecap: "butt", miterlimit: "10", width: "1.3333", d: "M9.547 6.4h1.68" }), el("path", { fill: "#4a00e0", d: "M23.147 26.373c-2.613-0.133-4.613-2.347-4.48-4.96s2.347-4.613 4.933-4.48c2.613 0.133 4.613 2.347 4.48 4.933-0.107 2.613-2.32 4.613-4.933 4.507zM23.547 17.867c-2.080-0.107-3.867 1.52-3.947 3.6-0.107 2.080 1.493 3.867 3.6 3.947s3.867-1.52 3.947-3.6-1.52-3.84-3.6-3.947z" }), el("path", { fill: "#4a00e0", d: "M30.080 29.547c-0.133 0-0.24-0.053-0.32-0.16l-3.6-3.947c-0.187-0.187-0.16-0.507 0.027-0.667 0.187-0.187 0.507-0.16 0.667 0.027l3.6 3.947c0.187 0.187 0.16 0.48-0.027 0.667 0 0 0 0 0 0-0.107 0.080-0.213 0.133-0.347 0.133z" }), el("path", { fill: "#4a00e0", d: "M23.947 11.573h-17.040c-0.373 0-0.667 0.293-0.667 0.667s0.293 0.667 0.667 0.667h17.040c0.373 0 0.667-0.293 0.667-0.667s-0.293-0.667-0.667-0.667z" })),
|
199 |
+
"lottie": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 120 120" }, el("rect", { x: "8.1", y: "11.8", fill: "none", stroke: "#4a00e0", strokeWidth: "10", miterlimit: "10", width: "102.9", height: "99.9" }), el("ellipse", { transform: "matrix(0.9666 -0.2562 0.2562 0.9666 -22.8642 11.8718)", fill: "none", stroke: "#4a00e0", strokeWidth: "10", miterlimit: "10", cx: "34.1", cy: "93.7", rx: "0.1", ry: "0" }), el("ellipse", { transform: "matrix(-0.9666 0.2562 -0.2562 -0.9666 174.7596 36.9626)", fill: "none", stroke: "#4a00e0", strokeWidth: "10", miterlimit: "10", cx: "85", cy: "29.9", rx: "0.1", ry: "0" }), el("path", { fill: "none", stroke: "#4a00e0", strokeWidth: "10", miterlimit: "10", d: "M84.4,29.7c0,0-18-4.9-23.4,32.2S34.1,93.7,34.1,93.7" })),
|
200 |
+
"accept": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 1000 1000" }, el("path", { fill: "#4a00e0", d: "M424,127H41.5C-0.6,127-35,161.4-35,203.5v459c0,42.1,34.4,76.5,76.5,76.5h210.4v-38.3H41.5c-21,0-38.3-17.2-38.3-38.3v-459c0-21,17.2-38.3,38.3-38.3H424c21,0,38.3,17.2,38.3,38.3v224.7l38.3-38.3V203.5C500.5,161.4,466.1,127,424,127z" }), el("path", { fill: "#4a00e0", d: "M385.8,280h-306v-38.3h306V280z" }), el("path", { fill: "#4a00e0", d: "M385.8,356.5h-306v-38.3h306V356.5z" }), el("path", { fill: "#4a00e0", d: "M224,431.8H79.8v-38.3H224V431.8z" }), el("path", { fill: "#4a00e0", d: "M464.9,525.8c-7.4-7.4-19.4-7.4-26.7,0l-80.2,80.2l-40.1-40.1c-7.4-7.4-19.4-7.4-26.7,0c-7.4,7.4-7.4,19.4,0,26.7l53.5,53.5c7.4,7.4,19.4,7.4,26.7,0l93.6-93.6C472.4,545.2,472.4,533.2,464.9,525.8z" }), el("path", { fill: "#4a00e0", d: "M783.3,41.9H207.2C143.8,41.9,92,93.8,92,157.1v691.3c0,63.4,51.8,115.2,115.2,115.2h316.9v-57.7H207.2c-31.6,0-57.7-25.9-57.7-57.7V157.1c0-31.6,25.9-57.7,57.7-57.7h576.1c31.6,0,57.7,25.9,57.7,57.7v338.4l57.7-57.7V157.2C898.4,93.8,846.6,41.9,783.3,41.9z" }), el("path", { fill: "#4a00e0", d: "M725.7,272.4H264.8v-57.7h460.9V272.4z" }), el("path", { fill: "#4a00e0", d: "M725.7,387.7H264.8V330h460.9V387.7z" }), el("path", { fill: "#4a00e0", d: "M482,501H264.8v-57.7H482V501z" }), el("path", { fill: "#4a00e0", d: "M707.5,941.1c-124.1,0-225.2-101-225.2-225.2s101-225,225.2-225s225.2,101,225.2,225.2S831.6,941.1,707.5,941.1z M707.5,531.5c-101.7,0-184.6,82.8-184.6,184.6s82.8,184.6,184.6,184.6S892.1,817.9,892.1,716S809.2,531.5,707.5,531.5z" }), el("path", { fill: "#4a00e0", d: "M844.9,642.6c-11.1-11.1-29.2-11.1-40.2,0L683.8,763.4l-60.3-60.3c-11.1-11.1-29.2-11.1-40.2,0c-11.1,11.1-11.1,29.2,0,40.2l80.6,80.6c11.1,11.1,29.2,11.1,40.2,0l140.9-141C856.1,671.8,856.1,653.7,844.9,642.6z" })),
|
201 |
+
"checkbox": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 1000 1000" }, el("path", { fill: "#4a00e0", d: "M833.3,44H166.5C97.4,44,41.5,100,41.5,169.1V836c0,69.2,56,125.1,125.1,125.1h666.9c69.2,0,125.1-56,125.1-125.1V169.1C958.4,100,902.5,44,833.3,44z M875.1,835.8c0,23-18.7,41.7-41.7,41.7H166.5c-23,0-41.7-18.7-41.7-41.7V169.1c0-23,18.7-41.7,41.7-41.7h666.9c23,0,41.7,18.7,41.7,41.7v666.8H875.1z" }), el("path", { fill: "#4a00e0", d: "M691.5,369.9c-16.3-16.3-42.6-16.3-58.9,0L455.8,546.7l-88.4-88.4c-16.3-16.3-42.6-16.3-58.9,0c-16.3,16.3-16.3,42.6,0,58.9l117.9,117.9c16.3,16.3,42.6,16.3,58.9,0l206.3-206.3C707.9,412.5,707.9,386,691.5,369.9z" })),
|
202 |
+
"datepicker": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 1000 1000" }, el("path", { fill: "#4a00e0", d: "M882.2,127.7H758V70.4c0-15.8-12.9-28.7-28.7-28.7s-28.7,12.9-28.7,28.7v57.3H528.4V70.4c0-15.8-12.9-28.7-28.7-28.7c-15.8,0-28.7,12.9-28.7,28.7v57.3H298.8V70.4c0-15.8-12.9-28.7-28.7-28.7s-28.7,12.9-28.7,28.7v57.3H117.6c-42.2,0-76.5,34.3-76.5,76.5v678.7c0,42.2,34.3,76.5,76.5,76.5h764.7c42.2,0,76.5-34.3,76.5-76.5V204.2C958.8,161.9,924.6,127.7,882.2,127.7z M901.5,882.6c0,10.6-8.6,19.1-19.1,19.1H117.6c-10.6,0-19.1-8.6-19.1-19.1V204c0-10.6,8.6-19.1,19.1-19.1h124.3v57.3c0,15.8,12.9,28.7,28.7,28.7s28.7-12.9,28.7-28.7V185h172.2v57.3c0,15.8,12.9,28.7,28.7,28.7c15.8,0,28.7-12.9,28.7-28.7V185h172.2v57.3c0,15.8,12.9,28.7,28.7,28.7s28.7-12.9,28.7-28.7V185h124.3c10.6,0,19.1,8.6,19.1,19.1v678.7L901.5,882.6L901.5,882.6z" }), el("path", { fill: "#4a00e0", d: "M882.4,963.8H117.6c-44.7,0-81-36.3-81-81V204.2c0-44.7,36.3-81,81-81h119.2V70.4c0-18.3,14.9-33.2,33.2-33.2s33.2,14.9,33.2,33.2v52.8h163.1V70.4c0-18.3,14.9-33.2,33.2-33.2c18.3,0,33.2,14.9,33.2,33.2v52.8H696V70.4c0-18.3,14.9-33.2,33.2-33.2c18.3,0,33.2,14.9,33.2,33.2v52.8h119.7c44.7,0,81.1,36.3,81.1,81v678.7C963.3,927.5,927,963.8,882.4,963.8z M117.6,132.2c-39.7,0-72,32.3-72,72v678.7c0,39.7,32.3,72,72,72h764.7c39.7,0,72-32.3,72-72V204.2c0-39.7-32.3-72-72.1-72H753.5V70.4c0-13.4-10.8-24.2-24.2-24.2S705.1,57,705.1,70.4v61.8H523.9V70.4c0-13.4-10.8-24.2-24.2-24.2S475.5,57,475.5,70.4v61.8H294.3V70.4c0-13.4-10.8-24.2-24.2-24.2S245.9,57,245.9,70.4v61.8L117.6,132.2L117.6,132.2z M882.5,906.2H117.6c-13,0-23.6-10.6-23.6-23.6V204c0-13,10.6-23.6,23.6-23.6h128.8v61.8c0,13.4,10.8,24.2,24.2,24.2s24.2-10.8,24.2-24.2v-61.8H476v61.8c0,13.4,10.8,24.2,24.2,24.2c13.4,0,24.2-10.8,24.2-24.2v-61.8h181.2v61.8c0,13.4,10.8,24.2,24.2,24.2s24.2-10.8,24.2-24.2v-61.8h128.8c13,0,23.6,10.6,23.6,23.6v683.2h-0.8C903.5,898,893.9,906.2,882.5,906.2z M117.6,189.5c-8,0-14.5,6.6-14.5,14.5v678.6c0,8,6.6,14.5,14.5,14.5h764.8c8,0,14.5-6.6,14.5-14.5h0.3V204c0-8-6.6-14.5-14.5-14.5H763v52.8c0,18.3-14.9,33.2-33.2,33.2s-33.2-14.9-33.2-33.2v-52.8H533.4v52.8c0,18.3-14.9,33.2-33.2,33.2S467,260.6,467,242.3v-52.8H303.8v52.8c0,18.3-14.9,33.2-33.2,33.2s-33.2-14.9-33.2-33.2v-52.8L117.6,189.5L117.6,189.5z" })),
|
203 |
+
"email": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M30.534 25.334h-29.149v-20.192h29.158v20.189h-0.010zM3.626 23.088h24.669v-15.699h-24.669v15.699z" }), el("path", { fill: "#4a00e0", d: "M15.962 17.76l-14.128-10.595 1.35-1.802 12.778 9.594 12.781-9.594 1.35 1.802z" })),
|
204 |
+
"hidden": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M7.29 21.67l1.488-1.498c-1.818-1.421-3.446-3.072-4.854-4.909 1.45-1.907 6.384-7.782 12.074-7.782 1.504 0.016 2.986 0.374 4.336 1.040l1.542-1.552c-1.798-1.002-3.818-1.542-5.878-1.574-7.843 0-13.971 8.893-14.227 9.28l-0.349 0.589 0.397 0.582c1.542 2.189 3.382 4.15 5.472 5.824z" }), el("path", { fill: "#4a00e0", d: "M30.227 14.682c-1.482-2.070-3.235-3.933-5.206-5.539l-1.488 1.488c1.69 1.363 3.213 2.918 4.544 4.634-1.45 1.907-6.39 7.782-12.077 7.782-1.366-0.022-2.717-0.333-3.958-0.906l-1.574 1.574c1.706 0.899 3.6 1.382 5.533 1.418 7.843 0 13.971-8.893 14.227-9.28l0.355-0.582-0.355-0.589z" }), el("path", { fill: "#4a00e0", d: "M5.571 22.72l17.891-17.891c0.41-0.41 1.069-0.41 1.472 0v0c0.41 0.41 0.41 1.069 0 1.472l-17.888 17.891c-0.41 0.41-1.069 0.41-1.472 0v0c-0.413-0.403-0.413-1.069-0.003-1.472z" }), el("path", { fill: "#4a00e0", d: "M19.264 11.232l-7.296 7.293c1.728 2.298 4.989 2.768 7.293 1.040s2.768-4.989 1.040-7.293c-0.298-0.39-0.646-0.746-1.037-1.040v0z" }), el("path", { fill: "#4a00e0", d: "M12.406 19.027l8.285-6.138c-1.366-2.531-4.525-3.475-7.059-2.102s-3.475 4.525-2.102 7.059c0.234 0.429 0.531 0.826 0.877 1.181v0z" })),
|
205 |
+
"name": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 1000 1000" }, el("path", { fill: "#4a00e0", d: "M962.4,154.4v512.4H897V154.4H962.4z" }), el("path", { fill: "#4a00e0", d: "M962.4,209.2H38.6v-65.4h923.8V209.2z" }), el("path", { fill: "#4a00e0", d: "M962.4,716.3H38.6v-65.4h923.8V716.3z" }), el("path", { fill: "#4a00e0", d: "M103.8,154.5v512.3H38.6V154.5H103.8z" }), el("path", { fill: "#4a00e0", d: "M287.1,292.3v277.1h-65.4V292.3H287.1z" }), el("path", { fill: "#4a00e0", d: "M369.9,307H135.9v-65.4h233.9V307z" }), el("path", { fill: "#4a00e0", d: "M369.9,617.8H135.9v-65.4h233.9V617.8z" })),
|
206 |
+
"phone": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 1000 1000" }, el("path", { fill: "#4a00e0", d: "M713.3,960.4c-35.6-0.2-71.1-4.8-105.8-13.3C488,918.3,365.1,845.2,261.3,741.3s-177-227-205.8-346.2c-30.3-125.6-8.8-232.9,60.8-302.4l19.8-19.8c37.5-37.5,98.3-37.5,135.9,0L386.1,187c37.5,37.5,37.5,98.3,0,135.9l-67.5,67.5c32.4,56.8,76.2,113.6,128.2,165.4c52,51.8,108.8,95.9,165.4,128.2l67.5-67.5c37.5-37.5,98.3-37.5,135.9,0l0,0l114.1,114.1c37.5,37.5,37.5,98.3,0,135.9l-19.8,19.6C861,935.1,793.1,960.4,713.3,960.4z M204.3,112.8c-7.4,0-14.5,2.9-19.6,8.2l-19.8,19.8c-52,52-67.3,136.6-42.9,238c25.9,107.3,92.6,219,187.7,314s206.8,161.8,314,187.7c101.4,24.4,185.8,9.3,238-42.9l19.8-19.8c10.9-10.9,10.9-28.4,0-39.1L767.4,664.7c-10.9-10.9-28.4-10.9-39.1,0L643,750.1c-10.5,10.5-26.7,13-39.8,6.3c-70.1-36.2-140.6-89-204.3-152.4S282.6,469.8,246.4,399.8c-6.9-13.1-4.4-29.3,6.1-39.8l85.4-85.4c10.9-10.9,10.9-28.4,0-39.1L223.9,121C218.6,115.9,211.5,112.8,204.3,112.8z" }), el("path", { fill: "#4a00e0", d: "M749.9,549.6c-18.9,0-34.1-15.2-34.1-34.1l0,0c-0.2-124.8-101.4-226-226.2-226.2c-18.9,0-34.1-15.2-34.1-34.1s15.2-34.1,34.1-34.1l0,0c162.4,0,294.4,132.1,294.4,294.4C784,534.4,768.7,549.6,749.9,549.6L749.9,549.6z" }), el("path", { fill: "#4a00e0", d: "M894.3,549.6c-18.9,0-34.1-15.2-34.1-34.1l0,0c0-204.3-166.4-370.4-370.4-370.4c-18.9,0-34.1-15.2-34.1-34.1s15.2-34.1,34.1-34.1l0,0c242,0,438.9,196.8,438.9,438.9C928.4,534.4,913.2,549.6,894.3,549.6L894.3,549.6z" })),
|
207 |
+
"radio": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M7.446 4.931c-1.651 0-2.95 1.299-2.95 2.95s1.299 2.95 2.95 2.95 2.95-1.299 2.95-2.95-1.299-2.95-2.95-2.95v0zM7.446 1.981c-3.245 0-5.901 2.656-5.901 5.901s2.656 5.901 5.901 5.901 5.901-2.656 5.901-5.901-2.656-5.901-5.901-5.901v0zM7.446 12.605c-2.595 0-4.723-2.122-4.723-4.723s2.125-4.72 4.723-4.72 4.723 2.122 4.723 4.723-2.128 4.72-4.723 4.72v0z" }), el("path", { fill: "#4a00e0", d: "M12.832 21.418c0 2.974-2.411 5.386-5.386 5.386s-5.386-2.411-5.386-5.386c0-2.974 2.411-5.386 5.386-5.386s5.386 2.411 5.386 5.386z" }), el("path", { fill: "#4a00e0", d: "M7.446 27.462c-3.334 0-6.045-2.71-6.045-6.045s2.71-6.045 6.045-6.045 6.045 2.71 6.045 6.045-2.71 6.045-6.045 6.045zM7.446 16.694c-2.605 0-4.723 2.118-4.723 4.723s2.118 4.723 4.723 4.723 4.723-2.118 4.723-4.723-2.118-4.723-4.723-4.723z" }), el("path", { fill: "#4a00e0", d: "M14.694 5.37h15.933v1.229h-15.933v-1.229z" }), el("path", { fill: "#4a00e0", d: "M14.694 9.053h9.664v1.229h-9.664v-1.229z" }), el("path", { fill: "#4a00e0", d: "M14.694 19.347h15.933v1.229h-15.933v-1.229z" }), el("path", { fill: "#4a00e0", d: "M14.694 22.8h9.664v1.229h-9.664v-1.229z" })),
|
208 |
+
"select": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 1000 1000" }, el("path", { fill: "#4a00e0", d: "M775.8,509.4c-13.1,0-25.5,3.1-36.5,8.6c-11.4-32-41.9-55-77.8-55c-22.2,0-42.3,8.7-57.1,23.1c-14.9-14.2-34.9-23.1-57.1-23.1c-11.2,0-21.8,2.3-31.6,6.3V323.4c0-45.4-37-82.5-82.5-82.5s-82.5,37-82.5,82.5v174v19.2v42.6c-37.2,1.9-92.3,14.2-92.3,91.9c0,58.2,69.5,185.2,140.5,201.3C445,916.2,520,957.7,604.4,957.7c142.4,0,253.9-106.9,253.9-243.6c0-14-11.4-25.5-25.5-25.5c-14,0-25.5,11.4-25.5,25.5c0,108-89.1,192.7-203,192.7c-70.4,0-132.5-36-168.8-90.7c-0.3-0.7-0.9-1.4-1.2-2.1c-20.6-31.8-32.9-69.5-32.9-110.3v-187v-19.2v-174c0-17.5,14.2-31.6,31.6-31.6s31.6,14.2,31.6,31.6v221.9v84.7v4c0,14,11.4,25.5,25.5,25.5c14,0,25.5-11.4,25.5-25.5v-4v-84.7c0-17.5,14.2-31.6,31.6-31.6s31.6,14.2,31.6,31.5v0.2v88.8c0,1.4,0.2,2.3,0.3,3c1.6,12.6,12.1,22.4,25.2,22.4c13.1,0,23.9-10,25.2-22.9c0.2-0.5,0.2-1,0.2-1.7c0-0.3,0-0.5,0-0.9v-88.8v-0.2c0.2-17.3,14.2-31.5,31.6-31.5s31.8,14.2,31.8,31.6v45.8c0,0.2,0,0.5,0,0.7v42.5c0,1.4,0.2,2.6,0.3,3.5c1.7,12.4,12.2,21.8,25.2,21.8c13.1,0,23.6-9.8,25.2-22.5c0.2-0.7,0.2-1.4,0.2-2.1c0-0.2,0-0.5,0-0.7v-42.8c0.2-17.3,14.3-31.3,31.6-31.3c17.5,0,31.8,14.2,31.8,31.6V613c0,14,11.4,25.5,25.5,25.5c14,0,25.5-11.4,25.5-25.5v-21.1C858.4,546.4,821.4,509.4,775.8,509.4z M309.3,651.4c0-25.7,4.2-38.1,41.4-40.9v93.7c0,18,1.9,35.6,5.4,52.6C331.1,723.1,309.3,679.2,309.3,651.4z" }), el("path", { fill: "#4a00e0", d: "M528.7,385.5c-9.6,10.1-9.3,26.2,1,36c4.9,4.7,11.2,7,17.5,7c6.8,0,13.5-2.6,18.5-7.9c28.7-30.2,45.8-69.9,48.4-111.5c3-47.5-12.8-93.1-44.2-128.8s-75-56.8-122.5-59.8c-97.9-5.9-182.4,68.8-188.5,166.7c-3,47.5,12.9,93.1,44.4,128.8c9.3,10.5,25.3,11.5,35.8,2.3s11.5-25.3,2.3-35.8c-22.5-25.5-33.7-58.2-31.6-92.1c4.2-69.9,64.7-123.4,134.5-119.2c33.9,2.1,65,17.3,87.4,42.6c22.5,25.5,33.7,58,31.6,92.1C561.6,335.7,549.2,364,528.7,385.5z" }), el("path", { fill: "#4a00e0", d: "M625.9,426.9c12.4,6.6,27.8,1.9,34.4-10.7c16.8-31.8,26.6-66.4,28.8-102.7C697.7,174.2,591.3,54,452,45.4c-67.4-4.2-132.5,18.3-183.1,63.1s-80.7,106.6-84.9,174c-5.6,90.7,38.3,177.7,114.3,227.5c4.4,2.8,9.1,4.2,14,4.2c8.2,0,16.4-4,21.3-11.5c7.7-11.7,4.4-27.6-7.3-35.1c-60.8-39.7-95.8-109.4-91.4-181.7c3.3-53.8,27.4-103.3,67.8-139.1S395,93.1,448.9,96.5c111.3,6.8,196.2,102.9,189.4,214.1c-1.7,29.2-9.6,56.8-23.1,82.1C608.7,404.9,613.5,420.4,625.9,426.9z" })),
|
209 |
+
"textarea": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 32 32" }, el("path", { fill: "#4a00e0", d: "M11.136 21.28h-1.216v-18.24h1.216v-1.824h-4.864v1.824h1.216v18.24h-1.216v1.824h4.864z" }), el("path", { fill: "#4a00e0", d: "M11.763 4.864v2.432h16.397v20.672h-24.32v-20.672h1.786v-2.432h-4.218v25.536h29.184v-25.536z" })),
|
210 |
+
"toggle": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 1000 1000" }, el("path", { fill: "#4a00e0", d: "M661,830.7H343.8c-168.5,0-305.6-137.1-305.6-305.6c0-168.5,137.1-305.6,305.6-305.6H661c168.5,0,305.6,137.1,305.6,305.6C966.6,693.6,829.5,830.7,661,830.7z M343.8,275.5c-137.6,0-249.6,112-249.6,249.6c0,137.6,112,249.6,249.6,249.6H661c137.6,0,249.6-112,249.6-249.6c0-137.6-112-249.6-249.6-249.6H343.8z" }), el("path", { fill: "#4a00e0", d: "M660.8,672c-81,0-146.9-65.9-146.9-146.9c0-81,65.9-146.9,146.9-146.9s146.9,65.9,146.9,146.9C807.7,606.1,741.8,672,660.8,672z M660.8,434.2c-50.1,0-90.9,40.8-90.9,90.9s40.8,90.9,90.9,90.9s90.9-40.8,90.9-90.9S711,434.2,660.8,434.2z" })),
|
211 |
+
"url": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 1000 1000" }, el("path", { fill: "#4a00e0", d: "M681.2,311.5c-15-15-37.7-15-52.8,0L312.3,627.7c-15,15-15,37.7,0,52.8c15,15,37.7,15,52.8,0l316.2-316.2C696.2,349.2,696.2,326.6,681.2,311.5z" }), el("path", { fill: "#4a00e0", d: "M338.6,699.5c-11.8,0-23.1-4.8-31.9-13.6c-8.7-8.7-13.6-20.1-13.6-31.9s4.8-23.1,13.6-31.9L622.9,306c8.7-8.7,20.1-13.6,31.9-13.6c11.8,0,23.1,4.8,31.9,13.6s13.6,20.1,13.6,31.9c0,11.8-4.8,23.1-13.6,31.9L370.5,685.9C361.8,694.7,350.5,699.5,338.6,699.5z M654.8,308c-7.7,0-15.1,3.2-20.9,9L317.8,633.2c-12.1,12.1-12.1,29.7,0,41.8c5.8,5.8,13.2,9,20.9,9c7.7,0,15.1-3.2,20.9-9l316.2-316.2c12.1-12.1,12.1-29.7,0-41.8C669.9,311.2,662.5,308,654.8,308z" }), el("path", { fill: "#4a00e0", d: "M365,891l131.7-131.7c52.8-52.8,67.8-131.7,41.4-199.5l-63.9,63.9c0,30.1-7.6,60.2-33.8,86.6L308.8,842c-45.1,45.1-116.6,45.1-158.1,0c-45.1-45.1-45.1-116.6,0-158.1l131.7-131.7c22.7-22.7,56.5-33.8,86.6-33.8l63.9-63.9c-67.8-26.4-146.7-15-199.5,41.4L101.6,627.7c-71.5,71.5-71.5,191.9,0,263.4C173.2,966.3,293.5,966.3,365,891z" }), el("path", { fill: "#4a00e0", d: "M233.3,955.2c-52.5,0-101.2-20.9-137.3-58.8c-74.3-74.4-74.3-200,0.1-274.3l131.6-131.6c34.6-37,82.1-57.3,133.9-57.3c25.1,0,50.1,4.7,74,14.1l11.1,4.3l-74.6,74.6H369c-30.6,0-61.6,12.1-81.1,31.5L156,689.6c-19.6,18-30.7,42.8-31.3,69.7c-0.6,28.3,10.9,56.4,31.6,77.1l0.2,0.2c18.5,20.2,44.1,31.3,71.9,31.3c28,0,54.6-11.2,74.9-31.6L435,704.8c21.5-21.7,31.5-47.4,31.5-81.1v-3.2l74.6-74.6l4.3,11.1c28,72,11.1,153.6-43.2,207.8L370.6,896.5C334.5,934.4,285.8,955.2,233.3,955.2z M361.6,448.8c-47.4,0-91,18.6-122.6,52.5l-0.2,0.2L107.1,633.2c-68.4,68.4-68.4,184,0,252.4l0.1,0.1c33.1,34.8,77.9,54,126.1,54s93-19.2,126.1-54l0.1-0.1l131.7-131.7c47-47,63.6-116.5,43.7-179.8L482,627c-0.7,36-12.5,65-36,88.8L314.3,847.5c-23.3,23.3-53.8,36.1-85.9,36.1c-32.2,0-61.7-12.9-83.3-36.2c-23.6-23.6-36.7-55.8-36-88.3c0.7-31.2,13.5-59.9,36.2-80.8l131.6-131.6c21.9-21.9,54.9-35.2,88.8-36l52.9-52.9C400,451.8,380.9,448.8,361.6,448.8z" }), el("path", { fill: "#4a00e0", d: "M549.5,285.1l131.7-131.7c45.1-45.1,116.6-45.1,158.1,0c41.4,45.1,45.1,116.6,0,158.1L707.6,443.2C684.9,465.9,651.1,477,621,477l-63.9,63.9c67.8,26.4,146.7,11.3,199.5-41.4l131.7-131.7c71.5-71.5,71.5-191.9,0-263.4s-191.9-71.5-263.4,0l-128,128c-52.8,52.8-67.8,131.7-41.4,199.5l63.9-63.9C515.5,337.9,526.8,307.8,549.5,285.1z" }), el("path", { fill: "#4a00e0", d: "M625.1,561.4c-24.4,0-48.2-4.5-70.8-13.3l-11.1-4.3l74.6-74.6h3.2c30.6,0,61.6-12.1,81.1-31.5L834,305.8c19.8-18.1,30.4-43.6,29.9-71.8c-0.4-27.3-11.5-54.7-30.4-75.3c-18.5-20.2-44.1-31.3-71.9-31.3c-28,0-54.6,11.2-74.9,31.6L555,290.6c-21.3,21.3-31.4,49.1-27.9,76.4l0.5,3.8l-75,75l-4.3-11.1c-28-72-11.1-153.6,43.2-207.8l128-128C655.5,62.8,704.2,43,756.6,43s101.1,19.9,137.2,55.9c74.4,74.4,74.4,200,0,274.4L762.1,505C725.7,541.3,677.1,561.4,625.1,561.4zM571.3,537.6c17.3,5.4,35.4,8.2,53.7,8.2c47.8,0,92.6-18.4,126.1-51.9l131.7-131.7c68.4-68.4,68.4-184,0-252.4c-33.1-33.1-77.9-51.4-126.2-51.4c-48.3,0-93.1,18.2-126.2,51.4l-128,128c-47,47-63.6,116.5-43.7,179.8l52.5-52.5c-2.8-30.8,9-61.8,32.7-85.5l131.7-131.7c23.3-23.3,53.8-36.1,85.9-36.1c32.2,0,61.8,12.9,83.4,36.4c21.4,23.3,34,54.5,34.5,85.6c0.5,32.6-11.8,62.2-34.9,83.4L713.1,448.7c-21.9,21.9-54.9,35.2-88.8,36L571.3,537.6z" })),
|
212 |
+
"form1": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 58 58" }, el("path", { fill: "#4a00e0", d: "M41.5,2.1H7.8C4,2.1,1,5.2,1,8.9v40.5c0,3.7,3,6.8,6.8,6.8h18.6v-3.4H7.8c-1.9,0-3.4-1.5-3.4-3.4V8.9c0-1.9,1.5-3.4,3.4-3.4h33.8c1.9,0,3.4,1.5,3.4,3.4v19.8l3.4-3.4V8.9C48.3,5.2,45.2,2.1,41.5,2.1z" }), el("path", { fill: "#4a00e0", d: "M38.1,15.6h-27v-3.4h27V15.6z" }), el("path", { fill: "#4a00e0", d: "M38.1,23h-27v-3.4h27V23z" }), el("path", { d: "M35.2,29.6H13.5v-2.7h21.7V29.6z" }), el("path", { d: "M35.2,35.4H13.5v-2.7h21.7V35.4z" }), el("path", { d: "M35.2,27.8v6.3h-2.7v-6.3H35.2z" }), el("path", { d: "M16.2,27.9v6.3h-2.7v-6.3H16.2z" }), el("path", { d: "M43.4,31.9c-0.7,0.4-1.2,1-1.4,1.8c-0.9-0.3-1.9-0.1-2.7,0.3c-0.7,0.4-1.2,1-1.4,1.8c-0.9-0.3-1.9-0.1-2.7,0.3c-0.4,0.4-0.8,0.7-1.1,1.3L31,34c-1.1-1.3-3-1.5-4.4-0.7c-0.8,0.6-1.4,1.4-1.5,2.4c-0.1,1,0.1,2,0.8,2.8l4,4.5c-0.7,0.3-1.2,0.6-1.8,1.2c-0.4,0.5-0.9,1.2-1,1.9c0,0.3,0.1,0.6,0.3,0.9l5.8,6.5c4.3,4.8,11.6,5.5,16.5,1.6c0.2-0.1,0.3-0.2,0.4-0.4c0.1-0.1,0.3-0.2,0.3-0.3c5-4.7,5.2-12.9,0.4-18.3l-3-3.4C46.7,31.4,44.8,31.1,43.4,31.9z M49.1,37.5c4,4.5,3.8,11.2-0.3,15.2c-0.3,0.2-0.4,0.4-0.7,0.6c-3.8,3.1-9.9,2.4-13.3-1.4l-5.3-6c0-0.2,0.1-0.2,0.2-0.3c0.3-0.3,0.7-0.5,1.3-0.6c0.5,0,0.9,0.2,1.2,0.6l4.1,4.6c0.4,0.5,1.1,0.5,1.6,0.1s0.5-1.1,0.1-1.6l-4.1-4.6l-1.1-1.3l-5.2-5.9c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.3-0.5,0.5-0.8c0.4-0.2,1.1-0.1,1.5,0.3l5.2,5.8l1.5,1.7c0.4,0.5,1.1,0.5,1.6,0.1c0.5-0.4,0.5-1.1,0.1-1.6l-1.5-1.7c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.2-0.6,0.5-0.8c0.5-0.3,1.1-0.1,1.5,0.3l0.7,0.8l0.7,0.8c0.4,0.5,1.1,0.5,1.6,0.1c0.5-0.4,0.5-1.1,0.1-1.6l-0.7-0.8c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.2-0.6,0.5-0.8c0.5-0.3,1.1-0.1,1.5,0.3l0.7,0.8l0.7,0.8c0.4,0.5,1.1,0.5,1.6,0.1c0.5-0.4,0.5-1.1,0.1-1.6l-0.7-0.8c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.2-0.6,0.5-0.8l0,0c0.5-0.3,1.1-0.1,1.5,0.3L49.1,37.5L49.1,37.5z" })),
|
213 |
+
"form2": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 58 58" }, el("path", { fill: "#4a00e0", d: "M44.4,5.6H10.9c-4.1,0-7.4,3.3-7.4,7.4v33.5c0,4.1,3.3,7.4,7.4,7.4h15.4l3.7-1.9l-3.7-1.9H10.9c-2.1,0-3.7-1.7-3.7-3.7V13.1c0-2.1,1.7-3.7,3.7-3.7h33.5c2.1,0,3.7,1.7,3.7,3.7v30l0.1-0.1c0.4-2.3,1.7-4.4,3.6-5.7V13.1C51.9,9,48.5,5.6,44.4,5.6z" }), el("path", { fill: "#4a00e0", d: "M14.7,19.6h26.1v-3.7H14.7V19.6z" }), el("path", { fill: "#4a00e0", d: "M14.7,27h26.1v-3.7H14.7V27z" }), el("path", { d: "M14.7,34.5h26.1v-3.7H14.7V34.5z" }), el("path", { d: "M56.2,45l0-3.7c0-1-0.4-2-1.1-2.6c-0.7-0.7-1.6-1.1-2.6-1.1l-22.6,0.2c-1,0-4.6,0.5-5.3,1.1l-7.1,4.6l7.2,4.4c0,0,4.2,1,5.3,1l22.6-0.2C54.5,48.7,56.2,47,56.2,45z M29.9,47.1c-0.3,0-1.2-0.2-2.2-0.4l-0.1-6.8c0.8-0.1,1.7-0.2,2.2-0.2l17-0.2l0.1,7.4L29.9,47.1z" })),
|
214 |
+
"form3": el("svg", { width: 20, height: 20, role: "img", viewBox: "0 0 58 58" }, el("path", { fill: "#4a00e0", d: "M41.5,46.1h-27v-3.4h27V46.1z" }), el("path", { fill: "#4a00e0", d: "M20.7,26.3l10.1,10.1l21.2-21.2L41.8,5.1L20.7,26.3z M44.2,12.8c0.7,0.7,0.7,1.8,0,2.5L32,27.6c-0.3,0.4-0.8,0.5-1.3,0.5c-0.5,0-0.9-0.2-1.3-0.5c-0.7-0.7-0.7-1.8,0-2.5l12.3-12.3C42.4,12.1,43.5,12.1,44.2,12.8z" }), el("path", { fill: "#4a00e0", d: "M56,5.8l-4.8-4.8c-1.4-1.4-3.9-1.4-5.3,0l-1.6,1.6l10.1,10.1l1.5-1.5C57.4,9.7,57.4,7.3,56,5.8z" }), el("path", { d: "M46.9,56.3H4.6c-1,0-1.8-0.8-1.8-1.8V9.7c0-1,0.8-1.8,1.8-1.8H33c1,0,1.8,0.8,1.8,1.8c0,1-0.8,1.8-1.8,1.8H6.5v41.1h40.4c1.4,0,2.6-1.2,2.6-2.6V26.9c0-1,0.8-1.8,1.8-1.8c1,0,1.8,0.8,1.8,1.8V50C53.2,53.5,50.4,56.3,46.9,56.3z" }))
|
215 |
};
|
216 |
|
217 |
/* harmony default export */ __webpack_exports__["a"] = (UAGB_Block_Icons);
|
228 |
"use strict";
|
229 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon__ = __webpack_require__(/*! ./UAGBIcon */ 9);
|
230 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__UAGBIcon__);
|
231 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__parseIcon__ = __webpack_require__(/*! ./parseIcon */ 526);
|
232 |
/**
|
233 |
* Set inline CSS class.
|
234 |
* @param {object} props - The block object.
|
371 |
/* WEBPACK VAR INJECTION */(function(process) {
|
372 |
|
373 |
if (process.env.NODE_ENV === 'production') {
|
374 |
+
module.exports = __webpack_require__(/*! ./cjs/react.production.min.js */ 341);
|
375 |
} else {
|
376 |
+
module.exports = __webpack_require__(/*! ./cjs/react.development.js */ 342);
|
377 |
}
|
378 |
|
379 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
583 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
584 |
|
585 |
"use strict";
|
586 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__font_typography__ = __webpack_require__(/*! ./font-typography */ 258);
|
587 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__range_typography__ = __webpack_require__(/*! ./range-typography */ 376);
|
588 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 377);
|
589 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 378);
|
590 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
591 |
/* unused harmony reexport TypographyStyles */
|
592 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
830 |
"use strict";
|
831 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
832 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__);
|
833 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader__ = __webpack_require__(/*! webfontloader */ 379);
|
834 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_webfontloader__);
|
835 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
836 |
|
982 |
* https://opensource.org/licenses/MIT
|
983 |
*
|
984 |
*/
|
985 |
+
!function(e,t){ true?module.exports=t(__webpack_require__(/*! prop-types */ 15),__webpack_require__(/*! react */ 5),__webpack_require__(/*! classnames */ 0),__webpack_require__(/*! react-dom */ 33),__webpack_require__(/*! react-transition-group */ 516)):"function"==typeof define&&define.amd?define(["prop-types","react","classnames","react-dom","react-transition-group"],t):"object"==typeof exports?exports.FontIconPicker=t(require("prop-types"),require("react"),require("classnames"),require("react-dom"),require("react-transition-group")):e.FontIconPicker=t(e.PropTypes,e.React,e.classNames,e.ReactDOM,e.ReactTransitionGroup)}(window,function(e,t,r,n,a){return function(e){var t={};function r(n){if(t[n])return t[n].exports;var a=t[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,r),a.l=!0,a.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:n})},r.r=function(e){Object.defineProperty(e,"__esModule",{value:!0})},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=15)}([function(t,r){t.exports=e},function(e,r){e.exports=t},function(e,t,r){"use strict";function n(e){return(n="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 a(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function o(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}Object.defineProperty(t,"__esModule",{value:!0}),t.flattenPossiblyCategorizedSource=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if(Array.isArray(e))return o(e);if(null!==t)return void 0!==e[t]?o(e[t]):[];var r=[],n=function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{},n=Object.keys(r);"function"==typeof Object.getOwnPropertySymbols&&(n=n.concat(Object.getOwnPropertySymbols(r).filter(function(e){return Object.getOwnPropertyDescriptor(r,e).enumerable}))),n.forEach(function(t){a(e,t,r[t])})}return e}({},e);return Object.keys(n).forEach(function(e){r=o(r).concat(o(n[e]))}),r},t.getPossibleCategories=function(e){return Array.isArray(e)?null:Object.keys(e)},t.convertToHex=function(e){return String.fromCodePoint(parseInt(e,10))},t.isArrayEqual=function(e,t){if(!Array.isArray(e)||!Array.isArray(t))return!1;var r=o(e);r.sort();var n=o(t);return n.sort(),JSON.stringify(r)===JSON.stringify(n)},t.getOffset=function(e){var t=e.getBoundingClientRect(),r=window.pageXOffset||document.documentElement.scrollLeft,n=window.pageYOffset||document.documentElement.scrollTop;return{top:t.top+n,left:t.left+r}},t.getSourceType=function(e){return null===e?"null":"object"!==n(e)||Array.isArray(e)?Array.isArray(e)?"array":n(e):"object"},t.InvalidSourceException=function(e,t){this.givenType=e,this.requiredType=t,this.message="Expected of type: ".concat(this.requiredType,", found: ").concat(this.givenType),this.toString=function(){return"Invalid Source Exception: ".concat(this.message)}},t.fuzzySearch=function(e,t){e=e.toLowerCase();var r=(t=t.toLowerCase()).length,n=e.length;if(n>r)return!1;if(n===r)return e===t;e:for(var a=0,o=0;a<n;a++){for(var l=e.codePointAt(a);o<r;)if(t.codePointAt(o++)===l)continue e;return!1}return!0},t.debounce=void 0,t.debounce=function(e,t){var r;return function(){var n=this,a=arguments;clearTimeout(r),r=setTimeout(function(){return e.apply(n,a)},t)}}},function(e,t){e.exports=r},,,function(e,t){e.exports=n},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=u(r(1)),a=r(6),o=u(r(0)),l=u(r(3)),i=r(2);function u(e){return e&&e.__esModule?e:{default:e}}function c(e){return(c="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 s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function f(e,t,r){return t&&s(e.prototype,t),r&&s(e,r),e}function d(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var p=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==c(n)&&"function"!=typeof n?d(this):n,Object.defineProperty(d(r),"syncPortalPosition",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.resetPortalPosition(),r.fixWindowOverflow()}}),Object.defineProperty(d(r),"fixWindowOverflow",{configurable:!0,enumerable:!0,writable:!0,value:function(){var e=r.props.domRef.current.offsetWidth,t=r.props.domRef.current.offsetHeight,n=window,a=n.innerWidth,o=n.pageYOffset,l=document.documentElement.clientHeight,u=(0,i.getOffset)(r.props.domRef.current),c=u.left,s=u.top,f="self"===r.state.appendRoot?r.props.domRef.current:r.state.appendRoot,d=(0,i.getOffset)(f),p=r.props.btnRef.current,h=r.props.domRef.current,y=(0,i.getOffset)(p),b=getComputedStyle(p),g=(parseInt(b.borderTop,10)||0)+(parseInt(b.borderBottom,10)||0);if(c+e>a-20){var m=y.left+r.props.btnRef.current.offsetWidth-(e+d.left);m+d.left<0&&(m=10-d.left),h.style.left="".concat(m,"px")}t+s-o>l&&y.top-t>0&&("self"===r.state.appendRoot?h.style.top="-".concat(t-g,"px"):h.style.top="".concat(y.top+g-t,"px"))}}),r.state={},r.debouncedSyncPortalPosition=(0,i.debounce)(r.syncPortalPosition,250),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,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),f(t,null,[{key:"getDerivedStateFromProps",value:function(e){var r=t.calculateAppendAndClass(e.appendRoot);return{appendRoot:r.appendRoot,portalClasses:r.portalClasses}}},{key:"calculateAppendAndClass",value:function(e){var t="self",r=(0,l.default)({"rfipdropdown--portal":!1!==e});return!1!==e&&(t=document.querySelector(e)),{portalClasses:r,appendRoot:t}}}]),f(t,[{key:"componentDidMount",value:function(){window.addEventListener("resize",this.debouncedSyncPortalPosition),window.addEventListener("scroll",this.debouncedSyncPortalPosition),this.syncPortalPosition()}},{key:"componentDidUpdate",value:function(){this.syncPortalPosition()}},{key:"componentWillUnmount",value:function(){window.removeEventListener("resize",this.debouncedSyncPortalPosition),window.removeEventListener("scroll",this.debouncedSyncPortalPosition)}},{key:"positionPortal",value:function(){var e=this.props.domRef.current.style.display;this.props.domRef.current.style.display="none";var t=this.props.btnRef.current,r=(0,i.getOffset)(t),n=(0,i.getOffset)(this.state.appendRoot),a=t.offsetHeight;this.props.domRef.current.style.left="".concat(r.left-n.left,"px"),this.props.domRef.current.style.top="".concat(r.top+a,"px"),this.props.domRef.current.style.display=e}},{key:"resetPortalPosition",value:function(){var e=this.props.domRef.current;"self"===this.state.appendRoot?e.style.top="":this.positionPortal()}},{key:"render",value:function(){var e=(0,l.default)(this.props.className,this.state.portalClasses),t=n.default.createElement("div",{className:e,ref:this.props.domRef},this.props.children);return"self"===this.state.appendRoot?t:(0,a.createPortal)(t,this.state.appendRoot)}}]),t}();Object.defineProperty(p,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{appendRoot:o.default.oneOfType([o.default.bool,o.default.string]),children:o.default.node.isRequired,domRef:o.default.object.isRequired,btnRef:o.default.object.isRequired,className:o.default.string.isRequired}}),Object.defineProperty(p,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{appendRoot:!1}});var h=p;t.default=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=i(r(1)),a=i(r(0)),o=i(r(3)),l=r(2);function i(e){return e&&e.__esModule?e:{default:e}}function u(e){return(u="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 c(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function f(e,t,r){return t&&s(e.prototype,t),r&&s(e,r),e}function d(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var p=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==u(n)&&"function"!=typeof n?d(this):n,Object.defineProperty(d(r),"handleChangePage",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,a=r.props.currentPage,o=r.state.totalPage;null!==n?"next"===n?a+=1:a-=1:a=parseInt(e.target.value,10)-1,a<0&&(a=0),a>o-1&&(a=o-1),t=a+1,null===n&&Number.isNaN(a)&&(a=0,t=""),r.setState({viewPage:t}),r.props.handleChangePage(a)}}),Object.defineProperty(d(r),"handlePageKeyBoard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){13!==e.keyCode&&32!==e.keyCode||r.handleChangePage({},t)}}),Object.defineProperty(d(r),"handleChangeValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.props.handleChangeValue(e)}}),Object.defineProperty(d(r),"handleValueKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){13!==e.keyCode&&32!==e.keyCode||r.handleChangeValue(t)}}),r.state={viewPage:r.props.currentPage+1},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,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),f(t,null,[{key:"getDerivedStateFromProps",value:function(e,r){var n=t.getCategoryFilteredState(e.currentCategory,e.categories,e.icons),a=t.getCategoryFilteredState(e.currentCategory,e.categories,null===e.search?e.icons:e.search),o=t.getActiveIcons(n,a,e.currentSearch),l=o.activeIcons,i=o.activeTitles,u=e.currentPage,c=e.iconsPerPage,s={iconView:t.getCurrentViewIcons(l,c,u),titleView:t.getCurrentViewIcons(i,c,u),totalPage:Math.ceil(l.length/c)};return""!==r.viewPage&&(s.viewPage=e.currentPage+1),s}},{key:"getActiveIcons",value:function(e,t,r){var n=c(e),a=c(t);if(""===r||null===r)return{activeIcons:n,activeTitles:a};var o=[],i=[];return n.forEach(function(e,n){(0,l.fuzzySearch)(r,t[n])&&(o.push(e),i.push(t[n]))}),{activeIcons:o,activeTitles:i}}},{key:"getCategoryFilteredState",value:function(e,t,r){var n=null,a=(0,l.getSourceType)(r);if(Array.isArray(t)){if("object"!==a)throw new l.InvalidSourceException(a,"object")}else if("array"!==a)throw new l.InvalidSourceException(a,"array");return 0!==e&&Array.isArray(t)&&(n=t[e]||null),(0,l.flattenPossiblyCategorizedSource)(r,n)}},{key:"getCurrentViewIcons",value:function(e,t,r){var n=r*t,a=(r+1)*t;return e.slice(n,a)}}]),f(t,[{key:"renderPager",value:function(){var e=this;if(this.state.totalPage<1)return null;var t=this.props.currentPage>0?n.default.createElement("span",{className:"rfipicons__left",role:"button",tabIndex:0,onKeyDown:function(t){return e.handlePageKeyBoard(t,"prev")},onClick:function(t){return e.handleChangePage(t,"prev")}},n.default.createElement("span",{role:"presentation",className:"rfipicons__label","aria-label":"Left"},n.default.createElement("i",{className:"fipicon-angle-left"}))):null,r=this.props.currentPage<this.state.totalPage-1?n.default.createElement("span",{className:"rfipicons__right",role:"button",tabIndex:0,onKeyDown:function(t){return e.handlePageKeyBoard(t,"next")},onClick:function(t){return e.handleChangePage(t,"next")}},n.default.createElement("span",{role:"presentation",className:"rfipicons__label","aria-label":"Right"},n.default.createElement("i",{className:"fipicon-angle-right"}))):null;return n.default.createElement("div",{className:"rfipicons__pager"},n.default.createElement("div",{className:"rfipicons__num"},n.default.createElement("input",{value:this.state.viewPage,onChange:this.handleChangePage,className:"rfipicons__cp",type:"tel",min:1}),n.default.createElement("span",{className:"rfipicons__sp"},"/"),n.default.createElement("span",{className:"rfipicons__tp"},this.state.totalPage)),n.default.createElement("div",{className:"rfipicons__arrow"},t,r))}},{key:"renderIconView",value:function(){var e=this;return this.state.totalPage>0?this.state.iconView.map(function(t,r){var a=(0,o.default)("rfipicons__icon",{"rfipicons__icon--selected":e.props.value===t||Array.isArray(e.props.value)&&e.props.value.includes(t)});return n.default.createElement("span",{className:a,key:t,title:e.state.titleView[r]},n.default.createElement("span",{className:"rfipicons__ibox",tabIndex:0,role:"button",onClick:function(){return e.handleChangeValue(t)},onKeyDown:function(r){return e.handleValueKeyboard(r,t)}},e.props.renderIcon(t)))}):n.default.createElement("span",{className:"rfipicons__icon--error"},n.default.createElement("span",{className:"rfipicons__ibox--error"},this.props.noIconPlaceholder))}},{key:"render",value:function(){return n.default.createElement("div",{className:"rfipicons"},this.renderPager(),n.default.createElement("div",{className:"rfipicons__selector"},this.renderIconView()))}}]),t}();Object.defineProperty(p,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{categories:a.default.arrayOf(a.default.string),currentCategory:a.default.number,isMulti:a.default.bool.isRequired,icons:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.objectOf(a.default.arrayOf(a.default.string)),a.default.arrayOf(a.default.string)]),value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.oneOfType([a.default.number,a.default.string]))]).isRequired,currentSearch:a.default.string.isRequired,handleChangeValue:a.default.func.isRequired,currentPage:a.default.number.isRequired,iconsPerPage:a.default.number.isRequired,handleChangePage:a.default.func.isRequired,renderIcon:a.default.func.isRequired,noIconPlaceholder:a.default.string.isRequired}}),Object.defineProperty(p,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{categories:null,currentCategory:null,search:null}});var h=p;t.default=h},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=o(r(1)),a=o(r(0));function o(e){return e&&e.__esModule?e:{default:e}}var l=function(e){return n.default.createElement("div",{className:"rfipsearch"},n.default.createElement("input",{type:"text",className:"rfipsearch__input",value:e.value,onChange:e.handleSearch,placeholder:e.placeholder}))};l.propTypes={handleSearch:a.default.func.isRequired,value:a.default.string.isRequired,placeholder:a.default.string.isRequired};var i=l;t.default=i},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=o(r(1)),a=o(r(0));function o(e){return e&&e.__esModule?e:{default:e}}function l(e){return(l="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 i(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}var u=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),function(e,t){return!t||"object"!==l(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}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),r=t,(a=[{key:"render",value:function(){return n.default.createElement("div",{className:"rfipcategory"},n.default.createElement("select",{className:"rfipcategory__select",onChange:this.props.handleCategory,value:this.props.value},this.props.categories.map(function(e,t){return n.default.createElement("option",{className:"rfipcategory__select__option",key:e,value:t},e)})),n.default.createElement("i",{className:"fipicon-angle-down",role:"presentation","aria-label":"Open"}))}}])&&i(r.prototype,a),t}();Object.defineProperty(u,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{handleCategory:a.default.func.isRequired,value:a.default.number.isRequired,categories:a.default.arrayOf(a.default.string).isRequired}});var c=u;t.default=c},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=c(r(1)),a=c(r(0)),o=c(r(10)),l=c(r(9)),i=c(r(8)),u=r(2);function c(e){return e&&e.__esModule?e:{default:e}}function s(e){return(s="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 f(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function d(e,t,r){return t&&f(e.prototype,t),r&&f(e,r),e}function p(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var h=function(e){function t(e){var r,n;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,n=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!n||"object"!==s(n)&&"function"!=typeof n?p(this):n,Object.defineProperty(p(r),"handleCategory",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=parseInt(e.target.value,10);Number.isNaN(t)&&(t=0),r.props.handleChangeCategory(t),r.props.handleChangePage(0)}}),Object.defineProperty(p(r),"handleSearch",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.target.value;r.props.handleChangeSearch(t)}}),r.state={},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,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),d(t,null,[{key:"getDerivedStateFromProps",value:function(e){var t=(0,u.getPossibleCategories)(e.icons);return null!==t&&(t=[e.allCatPlaceholder].concat(function(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}(t))),{categories:t,searchString:e.currentSearch}}}]),d(t,[{key:"render",value:function(){return n.default.createElement("div",{className:"rfipdropdown__selector"},this.props.showSearch?n.default.createElement(l.default,{handleSearch:this.handleSearch,value:this.state.searchString,placeholder:this.props.searchPlaceholder}):null,this.props.showCategory&&this.state.categories&&this.state.categories.length?n.default.createElement(o.default,{handleCategory:this.handleCategory,value:this.props.currentCategory,categories:this.state.categories}):null,n.default.createElement(i.default,{categories:this.state.categories,currentCategory:this.props.currentCategory,isMulti:this.props.isMulti,icons:this.props.icons,search:this.props.search,value:this.props.value,currentSearch:this.props.currentSearch,handleChangeValue:this.props.handleChangeValue,currentPage:this.props.currentPage,iconsPerPage:this.props.iconsPerPage,handleChangePage:this.props.handleChangePage,renderIcon:this.props.renderIcon,noIconPlaceholder:this.props.noIconPlaceholder}))}}]),t}();Object.defineProperty(h,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{isMulti:a.default.bool.isRequired,value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.any)]).isRequired,currentCategory:a.default.number.isRequired,currentPage:a.default.number.isRequired,currentSearch:a.default.string.isRequired,icons:a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.object,a.default.arrayOf(a.default.string)]),showCategory:a.default.bool.isRequired,showSearch:a.default.bool.isRequired,iconsPerPage:a.default.number.isRequired,allCatPlaceholder:a.default.string.isRequired,searchPlaceholder:a.default.string.isRequired,noIconPlaceholder:a.default.string.isRequired,renderIcon:a.default.func.isRequired,handleChangeValue:a.default.func.isRequired,handleChangeCategory:a.default.func.isRequired,handleChangePage:a.default.func.isRequired,handleChangeSearch:a.default.func.isRequired}}),Object.defineProperty(h,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{search:null}});var y=h;t.default=y},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=l(r(1)),a=l(r(0)),o=l(r(3));function l(e){return e&&e.__esModule?e:{default:e}}function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(){return(u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}function c(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function s(e,t){return!t||"object"!==i(t)&&"function"!=typeof t?f(e):t}function f(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var d=function(e){function t(){var e,r,a;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var o=arguments.length,l=new Array(o),i=0;i<o;i++)l[i]=arguments[i];return s(a,(r=a=s(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(l))),Object.defineProperty(f(a),"handleClick",{configurable:!0,enumerable:!0,writable:!0,value:function(){a.props.onClick()}}),Object.defineProperty(f(a),"handleKeyDown",{configurable:!0,enumerable:!0,writable:!0,value:function(e){32!==e.keyCode&&13!==e.keyCode||a.props.onClick()}}),Object.defineProperty(f(a),"handleDelete",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){e.stopPropagation(),a.props.handleDeleteValue(t)}}),Object.defineProperty(f(a),"handleDeleteKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e,t){32!==e.keyCode&&13!==e.keyCode||a.props.handleDeleteValue(t)}}),Object.defineProperty(f(a),"renderEmptyIcon",{configurable:!0,enumerable:!0,writable:!0,value:function(){return n.default.createElement("span",{className:"rfipbtn__icon--empty"},a.props.noSelectedPlaceholder)}}),r))}var r,a;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),r=t,(a=[{key:"renderIcon",value:function(e){var t=this;return""===e||null===e||void 0===e?this.renderEmptyIcon():n.default.createElement("span",{className:"rfipbtn__icon",key:e},n.default.createElement("span",{className:"rfipbtn__elm"},this.props.renderIcon(e)),n.default.createElement("span",{className:"rfipbtn__del",onClick:function(r){return t.handleDelete(r,e)},onKeyDown:function(r){return t.handleDeleteKeyboard(r,e)},tabIndex:0,role:"button"},"×"))}},{key:"renderCurrentIcons",value:function(){var e=this;return this.props.isMulti?this.props.value.length?this.props.value.map(function(t){return e.renderIcon(t)}):this.renderEmptyIcon():this.renderIcon(this.props.value)}},{key:"render",value:function(){var e={onClick:this.handleClick,onKeyDown:this.handleKeyDown,onFocus:this.handleFocus,onBlur:this.handleBlur,tabIndex:0},t=(0,o.default)("rfipbtn__button","rfipbtn__button--".concat(this.props.isOpen?"open":"close")),r=(0,o.default)(this.props.className);return n.default.createElement("div",u({className:r,ref:this.props.domRef},e),n.default.createElement("div",{className:"rfipbtn__current"},this.renderCurrentIcons()),n.default.createElement("div",{className:t},n.default.createElement("i",{className:"fipicon-angle-down",role:"presentation","aria-label":"Open"})))}}])&&c(r.prototype,a),t}();Object.defineProperty(d,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{className:a.default.string.isRequired,isOpen:a.default.bool.isRequired,onClick:a.default.func.isRequired,domRef:a.default.object.isRequired,isMulti:a.default.bool.isRequired,value:a.default.oneOfType([a.default.number,a.default.string,a.default.arrayOf(a.default.oneOfType([a.default.number,a.default.string]))]).isRequired,renderIcon:a.default.func.isRequired,handleDeleteValue:a.default.func.isRequired,noSelectedPlaceholder:a.default.string.isRequired}});var p=d;t.default=p},function(e,t){e.exports=a},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n=f(r(1)),a=f(r(0)),o=f(r(3)),l=r(13),i=f(r(12)),u=f(r(11)),c=f(r(7)),s=r(2);function f(e){return e&&e.__esModule?e:{default:e}}function d(e){return(d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function p(e){return function(e){if(Array.isArray(e)){for(var t=0,r=new Array(e.length);t<e.length;t++)r[t]=e[t];return r}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function h(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function y(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function b(e,t,r){return t&&y(e.prototype,t),r&&y(e,r),e}function g(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var m=[],v="",P=function(e){function t(e){var r,a;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this,a=(t.__proto__||Object.getPrototypeOf(t)).call(this,e),r=!a||"object"!==d(a)&&"function"!=typeof a?g(this):a,Object.defineProperty(g(r),"handleOuterClick",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.target;r.isClickWithin(t)||r.closeDropdown()}}),Object.defineProperty(g(r),"handleEscapeKeyboard",{configurable:!0,enumerable:!0,writable:!0,value:function(e){27===e.keyCode&&r.closeDropdown()}}),Object.defineProperty(g(r),"isClickWithin",{configurable:!0,enumerable:!0,writable:!0,value:function(e){return r.fipButtonRef.current.contains(e)||r.fipDropDownRef.current&&r.fipDropDownRef.current.contains(e)}}),Object.defineProperty(g(r),"handleToggle",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.setState(function(e){return r.handleDropDown(!e.isOpen,!1)})}}),Object.defineProperty(g(r),"closeDropdown",{configurable:!0,enumerable:!0,writable:!0,value:function(){r.handleDropDown(!1)}}),Object.defineProperty(g(r),"handleDropDown",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],a={isOpen:e};return a.elemClass=t.getDerivedClassName("rfip",r.props.theme,r.props.isMulti,e),a.btnClass=t.getDerivedClassName("rfipbtn",r.props.theme,r.props.isMulti,e),a.ddClass=t.getDerivedClassName("rfipdropdown",r.props.theme,r.props.isMulti,e),n&&r.setState(a),a}}),Object.defineProperty(g(r),"handleChangeValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t;r.props.isMulti?(t=p(r.state.value)).includes(e)?(t=t.filter(function(t){return t!==e})).length||(t=m):t.push(e):t=e===r.state.value?v:e,r.setState({value:t,isOpen:!r.props.closeOnSelect}),r.props.onChange(t)}}),Object.defineProperty(g(r),"handleDeleteValue",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var n;n=r.props.isMulti?r.state.value.filter(function(t){return t!==e}):t.getDerivedValue(n,r.props.isMulti),r.setState({value:n}),r.props.onChange(n)}}),Object.defineProperty(g(r),"handleChangePage",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentPage:e})}}),Object.defineProperty(g(r),"handleChangeCategory",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentCategory:e,currentPage:0})}}),Object.defineProperty(g(r),"handleChangeSearch",{configurable:!0,enumerable:!0,writable:!0,value:function(e){r.setState({currentSearch:e,currentPage:0})}}),Object.defineProperty(g(r),"resetPortalStyle",{configurable:!0,enumerable:!0,writable:!0,value:function(e){["maxHeight","paddingTop","paddingBottom"].forEach(function(t){e.style[t]=null})}}),Object.defineProperty(g(r),"handlePortalEnter",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t);var n=getComputedStyle(t);r.fipPortalComputedStyle={height:n.height,paddingTop:n.paddingTop,paddingBottom:n.paddingBottom},["maxHeight","paddingTop","paddingBottom"].forEach(function(e){t.style[e]="0px"})}}),Object.defineProperty(g(r),"handlePortalEntering",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];t.style.maxHeight=r.fipPortalComputedStyle.height,t.style.paddingTop=r.fipPortalComputedStyle.paddingTop,t.style.paddingBottom=r.fipPortalComputedStyle.paddingBottom}}),Object.defineProperty(g(r),"handlePortalEntered",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t),r.props.showSearch&&void 0===window.orientation&&-1===navigator.userAgent.indexOf("IEMobile")&&t.querySelector(".rfipsearch__input").focus()}}),Object.defineProperty(g(r),"handlePortalExit",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];r.resetPortalStyle(t);var n=getComputedStyle(t).height;t.style.maxHeight=n}}),Object.defineProperty(g(r),"handlePortalExiting",{configurable:!0,enumerable:!0,writable:!0,value:function(e){var t=e.childNodes[0];t.style.maxHeight="0px",t.style.paddingTop="0px",t.style.paddingBottom="0px"}}),Object.defineProperty(g(r),"renderIcon",{configurable:!0,enumerable:!0,writable:!0,value:function(e){if("function"==typeof r.props.renderFunc)return r.props.renderFunc(e);if("class"===r.props.renderUsing)return n.default.createElement("i",{className:e});var t=h({},r.props.renderUsing,r.props.convertHex?(0,s.convertToHex)(e):e);return n.default.createElement("i",t)}}),r.fipButtonRef=n.default.createRef(),r.fipDropDownRef=n.default.createRef(),r.state={currentCategory:0,currentPage:0,isOpen:!1,currentSearch:""},r.fipPortalComputedStyle=null,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,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,n.default.PureComponent),b(t,null,[{key:"getDerivedStateFromProps",value:function(e,r){var n={};return n.elemClass=t.getDerivedClassName("rfip",e.theme,e.isMulti,r.isOpen),n.btnClass=t.getDerivedClassName("rfipbtn",e.theme,e.isMulti,r.isOpen),n.ddClass=t.getDerivedClassName("rfipdropdown",e.theme,e.isMulti,r.isOpen),n.value=t.getDerivedValue(e.value,e.isMulti),e.showCategory||(n.currentCategory=0,n.currentPage=0),e.showSearch||(n.currentSearch="",n.currentPage=0),n}},{key:"getDerivedClassName",value:function(e,t,r,n){return(0,o.default)(e,"".concat(e,"--").concat(t),h({},"".concat(e,"--multi"),r),"".concat(e,"--").concat(n?"open":"close"))}},{key:"getDerivedValue",value:function(e,t){var r=e;return t?r=Array.isArray(e)?p(e):m:"number"!=typeof e&&"string"!=typeof e&&(r=v),r}}]),b(t,[{key:"componentDidMount",value:function(){var e=this;["click"].forEach(function(t){document.addEventListener(t,e.handleOuterClick,!1)}),document.addEventListener("keydown",this.handleEscapeKeyboard,!1),this.props.onChange(this.state.value)}},{key:"componentWillUnmount",value:function(){var e=this;["click"].forEach(function(t){document.removeEventListener(t,e.handleOuterClick,!1)}),document.removeEventListener("keydown",this.handleEscapeKeyboard,!1)}},{key:"render",value:function(){var e={currentCategory:this.state.currentCategory,currentPage:this.state.currentPage,currentSearch:this.state.currentSearch,value:this.state.value,isMulti:this.props.isMulti,icons:this.props.icons,search:this.props.search,showCategory:this.props.showCategory,showSearch:this.props.showSearch,iconsPerPage:this.props.iconsPerPage,allCatPlaceholder:this.props.allCatPlaceholder,searchPlaceholder:this.props.searchPlaceholder,noIconPlaceholder:this.props.noIconPlaceholder,renderIcon:this.renderIcon,handleChangeValue:this.handleChangeValue,handleChangeCategory:this.handleChangeCategory,handleChangePage:this.handleChangePage,handleChangeSearch:this.handleChangeSearch};return n.default.createElement("div",{className:this.state.elemClass,ref:this.fipRef},n.default.createElement(i.default,{className:this.state.btnClass,isOpen:this.state.isOpen,onClick:this.handleToggle,domRef:this.fipButtonRef,isMulti:this.props.isMulti,value:this.state.value,renderIcon:this.renderIcon,handleDeleteValue:this.handleDeleteValue,noSelectedPlaceholder:this.props.noSelectedPlaceholder}),n.default.createElement(l.CSSTransition,{classNames:"fipappear",timeout:300,in:this.state.isOpen,unmountOnExit:!0,onEnter:this.handlePortalEnter,onEntering:this.handlePortalEntering,onEntered:this.handlePortalEntered,onExit:this.handlePortalExit,onExiting:this.handlePortalExiting},n.default.createElement(c.default,{appendRoot:this.props.appendTo,domRef:this.fipDropDownRef,btnRef:this.fipButtonRef,className:this.state.ddClass},n.default.createElement(u.default,e))))}}]),t}();Object.defineProperty(P,"propTypes",{configurable:!0,enumerable:!0,writable:!0,value:{icons:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.objectOf(a.default.oneOfType([a.default.arrayOf(a.default.number),a.default.arrayOf(a.default.string)]))]).isRequired,search:a.default.oneOfType([a.default.objectOf(a.default.arrayOf(a.default.string)),a.default.arrayOf(a.default.string)]),iconsPerPage:a.default.number,theme:a.default.string,onChange:a.default.func.isRequired,showCategory:a.default.bool,showSearch:a.default.bool,value:a.default.oneOfType([a.default.arrayOf(a.default.string),a.default.arrayOf(a.default.number),a.default.number,a.default.string]),isMulti:a.default.bool,renderUsing:a.default.string,convertHex:a.default.bool,renderFunc:a.default.func,appendTo:a.default.oneOfType([a.default.bool,a.default.string]),allCatPlaceholder:a.default.string,searchPlaceholder:a.default.string,noIconPlaceholder:a.default.string,noSelectedPlaceholder:a.default.string,closeOnSelect:a.default.bool}}),Object.defineProperty(P,"defaultProps",{configurable:!0,enumerable:!0,writable:!0,value:{search:null,iconsPerPage:20,theme:"default",showCategory:!0,showSearch:!0,value:null,isMulti:!1,renderUsing:"class",convertHex:!0,renderFunc:null,appendTo:!1,allCatPlaceholder:"Show from all",searchPlaceholder:"Search Icons",noIconPlaceholder:"No icons found",noSelectedPlaceholder:"Select icon",closeOnSelect:!1}}),Object.defineProperty(P,"displayName",{configurable:!0,enumerable:!0,writable:!0,value:"FontIconPicker"});var O=P;t.default=O},function(e,t,r){"use strict";var n;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var a=((n=r(14))&&n.__esModule?n:{default:n}).default;t.default=a}]).default});
|
986 |
//# sourceMappingURL=fonticonpicker.react.js.map
|
987 |
|
988 |
/***/ }),
|
994 |
/*! exports used: default */
|
995 |
/***/ (function(module, exports, __webpack_require__) {
|
996 |
|
997 |
+
var baseTimes = __webpack_require__(/*! ./_baseTimes */ 158),
|
998 |
+
castFunction = __webpack_require__(/*! ./_castFunction */ 506),
|
999 |
+
toInteger = __webpack_require__(/*! ./toInteger */ 94);
|
1000 |
|
1001 |
/** Used as references for various `Number` constants. */
|
1002 |
var MAX_SAFE_INTEGER = 9007199254740991;
|
1056 |
/*! all exports used */
|
1057 |
/***/ (function(module, exports, __webpack_require__) {
|
1058 |
|
1059 |
+
var freeGlobal = __webpack_require__(/*! ./_freeGlobal */ 149);
|
1060 |
|
1061 |
/** Detect free variable `self`. */
|
1062 |
var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
|
1163 |
*/
|
1164 |
|
1165 |
if (process.env.NODE_ENV !== 'production') {
|
1166 |
+
var ReactIs = __webpack_require__(/*! react-is */ 179);
|
1167 |
|
1168 |
// By explicitly using `prop-types` you are opting into new development behavior.
|
1169 |
// http://fb.me/prop-types-in-prod
|
1170 |
var throwOnDirectAccess = true;
|
1171 |
+
module.exports = __webpack_require__(/*! ./factoryWithTypeCheckers */ 364)(ReactIs.isElement, throwOnDirectAccess);
|
1172 |
} else {
|
1173 |
// By explicitly using `prop-types` you are opting into new production behavior.
|
1174 |
// http://fb.me/prop-types-in-prod
|
1175 |
+
module.exports = __webpack_require__(/*! ./factoryWithThrowingShims */ 365)();
|
1176 |
}
|
1177 |
|
1178 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
1179 |
|
1180 |
/***/ }),
|
1181 |
/* 16 */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1182 |
/*!************************************!*\
|
1183 |
!*** ./node_modules/lodash/map.js ***!
|
1184 |
\************************************/
|
1186 |
/*! exports used: default */
|
1187 |
/***/ (function(module, exports, __webpack_require__) {
|
1188 |
|
1189 |
+
var arrayMap = __webpack_require__(/*! ./_arrayMap */ 45),
|
1190 |
+
baseIteratee = __webpack_require__(/*! ./_baseIteratee */ 147),
|
1191 |
+
baseMap = __webpack_require__(/*! ./_baseMap */ 319),
|
1192 |
isArray = __webpack_require__(/*! ./isArray */ 14);
|
1193 |
|
1194 |
/**
|
1241 |
module.exports = map;
|
1242 |
|
1243 |
|
1244 |
+
/***/ }),
|
1245 |
+
/* 17 */
|
1246 |
+
/*!*******************************************************!*\
|
1247 |
+
!*** ./node_modules/core-js/library/modules/_core.js ***!
|
1248 |
+
\*******************************************************/
|
1249 |
+
/*! dynamic exports provided */
|
1250 |
+
/*! all exports used */
|
1251 |
+
/***/ (function(module, exports) {
|
1252 |
+
|
1253 |
+
var core = module.exports = { version: '2.5.6' };
|
1254 |
+
if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef
|
1255 |
+
|
1256 |
+
|
1257 |
/***/ }),
|
1258 |
/* 18 */
|
1259 |
/*!*********************************************!*\
|
1499 |
/*! all exports used */
|
1500 |
/***/ (function(module, exports, __webpack_require__) {
|
1501 |
|
1502 |
+
var baseIsNative = __webpack_require__(/*! ./_baseIsNative */ 271),
|
1503 |
+
getValue = __webpack_require__(/*! ./_getValue */ 276);
|
1504 |
|
1505 |
/**
|
1506 |
* Gets the native function at `key` of `object`.
|
1528 |
/***/ (function(module, exports, __webpack_require__) {
|
1529 |
|
1530 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 27),
|
1531 |
+
getRawTag = __webpack_require__(/*! ./_getRawTag */ 272),
|
1532 |
+
objectToString = __webpack_require__(/*! ./_objectToString */ 273);
|
1533 |
|
1534 |
/** `Object#toString` result references. */
|
1535 |
var nullTag = '[object Null]',
|
1567 |
/***/ (function(module, exports, __webpack_require__) {
|
1568 |
|
1569 |
var global = __webpack_require__(/*! ./_global */ 20);
|
1570 |
+
var core = __webpack_require__(/*! ./_core */ 17);
|
1571 |
+
var ctx = __webpack_require__(/*! ./_ctx */ 241);
|
1572 |
var hide = __webpack_require__(/*! ./_hide */ 36);
|
1573 |
var has = __webpack_require__(/*! ./_has */ 26);
|
1574 |
var PROTOTYPE = 'prototype';
|
1639 |
/*! all exports used */
|
1640 |
/***/ (function(module, exports, __webpack_require__) {
|
1641 |
|
1642 |
+
var anObject = __webpack_require__(/*! ./_an-object */ 44);
|
1643 |
+
var IE8_DOM_DEFINE = __webpack_require__(/*! ./_ie8-dom-define */ 242);
|
1644 |
+
var toPrimitive = __webpack_require__(/*! ./_to-primitive */ 133);
|
1645 |
var dP = Object.defineProperty;
|
1646 |
|
1647 |
exports.f = __webpack_require__(/*! ./_descriptors */ 25) ? Object.defineProperty : function defineProperty(O, P, Attributes) {
|
1713 |
/*! all exports used */
|
1714 |
/***/ (function(module, exports, __webpack_require__) {
|
1715 |
|
1716 |
+
var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */ 157),
|
1717 |
+
baseKeys = __webpack_require__(/*! ./_baseKeys */ 303),
|
1718 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 29);
|
1719 |
|
1720 |
/**
|
1761 |
/*! all exports used */
|
1762 |
/***/ (function(module, exports, __webpack_require__) {
|
1763 |
|
1764 |
+
var isFunction = __webpack_require__(/*! ./isFunction */ 148),
|
1765 |
+
isLength = __webpack_require__(/*! ./isLength */ 83);
|
1766 |
|
1767 |
/**
|
1768 |
* Checks if `value` is array-like. A value is considered array-like if it's
|
1806 |
/***/ (function(module, exports, __webpack_require__) {
|
1807 |
|
1808 |
var isArray = __webpack_require__(/*! ./isArray */ 14),
|
1809 |
+
isKey = __webpack_require__(/*! ./_isKey */ 84),
|
1810 |
+
stringToPath = __webpack_require__(/*! ./_stringToPath */ 311),
|
1811 |
+
toString = __webpack_require__(/*! ./toString */ 164);
|
1812 |
|
1813 |
/**
|
1814 |
* Casts `value` to a path array if it's not one.
|
1837 |
/*! all exports used */
|
1838 |
/***/ (function(module, exports, __webpack_require__) {
|
1839 |
|
1840 |
+
var isSymbol = __webpack_require__(/*! ./isSymbol */ 57);
|
1841 |
|
1842 |
/** Used as references for various `Number` constants. */
|
1843 |
var INFINITY = 1 / 0;
|
2006 |
// DCE check should happen before ReactDOM bundle executes so that
|
2007 |
// DevTools can report bad minification during injection.
|
2008 |
checkDCE();
|
2009 |
+
module.exports = __webpack_require__(/*! ./cjs/react-dom.production.min.js */ 352);
|
2010 |
} else {
|
2011 |
+
module.exports = __webpack_require__(/*! ./cjs/react-dom.development.js */ 355);
|
2012 |
}
|
2013 |
|
2014 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
2032 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return getBlockMap; });
|
2033 |
/* unused harmony export getRegisteredBlockComponents */
|
2034 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return getPostLayoutConfig; });
|
2035 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__post_title_edit__ = __webpack_require__(/*! ./post-title/edit */ 184);
|
2036 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_meta_edit__ = __webpack_require__(/*! ./post-meta/edit */ 185);
|
2037 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__post_image_edit__ = __webpack_require__(/*! ./post-image/edit */ 186);
|
2038 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__post_excerpt_edit__ = __webpack_require__(/*! ./post-excerpt/edit */ 187);
|
2039 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__post_button_edit__ = __webpack_require__(/*! ./post-button/edit */ 189);
|
2040 |
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
2041 |
|
2042 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
2228 |
/*! all exports used */
|
2229 |
/***/ (function(module, exports, __webpack_require__) {
|
2230 |
|
2231 |
+
var assignValue = __webpack_require__(/*! ./_assignValue */ 64),
|
2232 |
+
baseAssignValue = __webpack_require__(/*! ./_baseAssignValue */ 190);
|
2233 |
|
2234 |
/**
|
2235 |
* Copies properties of `source` to `object`.
|
2280 |
/***/ (function(module, exports, __webpack_require__) {
|
2281 |
|
2282 |
var dP = __webpack_require__(/*! ./_object-dp */ 24);
|
2283 |
+
var createDesc = __webpack_require__(/*! ./_property-desc */ 69);
|
2284 |
module.exports = __webpack_require__(/*! ./_descriptors */ 25) ? function (object, key, value) {
|
2285 |
return dP.f(object, key, createDesc(1, value));
|
2286 |
} : function (object, key, value) {
|
2331 |
/***/ (function(module, exports, __webpack_require__) {
|
2332 |
|
2333 |
// to indexed object, toObject with fallback for non-array-like ES3 strings
|
2334 |
+
var IObject = __webpack_require__(/*! ./_iobject */ 245);
|
2335 |
+
var defined = __webpack_require__(/*! ./_defined */ 134);
|
2336 |
module.exports = function (it) {
|
2337 |
return IObject(defined(it));
|
2338 |
};
|
2347 |
/*! all exports used */
|
2348 |
/***/ (function(module, exports, __webpack_require__) {
|
2349 |
|
2350 |
+
var store = __webpack_require__(/*! ./_shared */ 137)('wks');
|
2351 |
+
var uid = __webpack_require__(/*! ./_uid */ 72);
|
2352 |
var Symbol = __webpack_require__(/*! ./_global */ 20).Symbol;
|
2353 |
var USE_SYMBOL = typeof Symbol == 'function';
|
2354 |
|
2370 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
2371 |
|
2372 |
"use strict";
|
2373 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */ 89);
|
2374 |
|
2375 |
|
2376 |
function css() {
|
3336 |
|
3337 |
/***/ }),
|
3338 |
/* 43 */
|
3339 |
+
/*!******************************************************************************************************!*\
|
3340 |
+
!*** ./node_modules/react-transition-group/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js ***!
|
3341 |
+
\******************************************************************************************************/
|
3342 |
+
/*! exports provided: default */
|
3343 |
+
/*! exports used: default */
|
3344 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
3345 |
+
|
3346 |
+
"use strict";
|
3347 |
+
/* harmony export (immutable) */ __webpack_exports__["a"] = _inheritsLoose;
|
3348 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__setPrototypeOf_js__ = __webpack_require__(/*! ./setPrototypeOf.js */ 518);
|
3349 |
+
|
3350 |
+
function _inheritsLoose(subClass, superClass) {
|
3351 |
+
subClass.prototype = Object.create(superClass.prototype);
|
3352 |
+
subClass.prototype.constructor = subClass;
|
3353 |
+
Object(__WEBPACK_IMPORTED_MODULE_0__setPrototypeOf_js__["a" /* default */])(subClass, superClass);
|
3354 |
+
}
|
3355 |
+
|
3356 |
+
/***/ }),
|
3357 |
+
/* 44 */
|
3358 |
/*!************************************************************!*\
|
3359 |
!*** ./node_modules/core-js/library/modules/_an-object.js ***!
|
3360 |
\************************************************************/
|
3370 |
|
3371 |
|
3372 |
/***/ }),
|
3373 |
+
/* 45 */
|
3374 |
/*!******************************************!*\
|
3375 |
!*** ./node_modules/lodash/_arrayMap.js ***!
|
3376 |
\******************************************/
|
3402 |
|
3403 |
|
3404 |
/***/ }),
|
3405 |
+
/* 46 */
|
3406 |
/*!*******************************************!*\
|
3407 |
!*** ./node_modules/lodash/_ListCache.js ***!
|
3408 |
\*******************************************/
|
3410 |
/*! all exports used */
|
3411 |
/***/ (function(module, exports, __webpack_require__) {
|
3412 |
|
3413 |
+
var listCacheClear = __webpack_require__(/*! ./_listCacheClear */ 261),
|
3414 |
+
listCacheDelete = __webpack_require__(/*! ./_listCacheDelete */ 262),
|
3415 |
+
listCacheGet = __webpack_require__(/*! ./_listCacheGet */ 263),
|
3416 |
+
listCacheHas = __webpack_require__(/*! ./_listCacheHas */ 264),
|
3417 |
+
listCacheSet = __webpack_require__(/*! ./_listCacheSet */ 265);
|
3418 |
|
3419 |
/**
|
3420 |
* Creates an list cache object.
|
3445 |
|
3446 |
|
3447 |
/***/ }),
|
3448 |
+
/* 47 */
|
3449 |
/*!**********************************************!*\
|
3450 |
!*** ./node_modules/lodash/_assocIndexOf.js ***!
|
3451 |
\**********************************************/
|
3453 |
/*! all exports used */
|
3454 |
/***/ (function(module, exports, __webpack_require__) {
|
3455 |
|
3456 |
+
var eq = __webpack_require__(/*! ./eq */ 48);
|
3457 |
|
3458 |
/**
|
3459 |
* Gets the index at which the `key` is found in `array` of key-value pairs.
|
3477 |
|
3478 |
|
3479 |
/***/ }),
|
3480 |
+
/* 48 */
|
3481 |
/*!***********************************!*\
|
3482 |
!*** ./node_modules/lodash/eq.js ***!
|
3483 |
\***********************************/
|
3525 |
|
3526 |
|
3527 |
/***/ }),
|
3528 |
+
/* 49 */
|
3529 |
/*!**********************************************!*\
|
3530 |
!*** ./node_modules/lodash/_nativeCreate.js ***!
|
3531 |
\**********************************************/
|
3542 |
|
3543 |
|
3544 |
/***/ }),
|
3545 |
+
/* 50 */
|
3546 |
/*!********************************************!*\
|
3547 |
!*** ./node_modules/lodash/_getMapData.js ***!
|
3548 |
\********************************************/
|
3550 |
/*! all exports used */
|
3551 |
/***/ (function(module, exports, __webpack_require__) {
|
3552 |
|
3553 |
+
var isKeyable = __webpack_require__(/*! ./_isKeyable */ 285);
|
3554 |
|
3555 |
/**
|
3556 |
* Gets the data for `map`.
|
3571 |
|
3572 |
|
3573 |
/***/ }),
|
3574 |
+
/* 51 */
|
3575 |
/*!*****************************************!*\
|
3576 |
!*** ./node_modules/lodash/_isIndex.js ***!
|
3577 |
\*****************************************/
|
3607 |
|
3608 |
|
3609 |
/***/ }),
|
3610 |
+
/* 52 */
|
3611 |
/*!*******************************************!*\
|
3612 |
!*** ./node_modules/lodash/_baseUnary.js ***!
|
3613 |
\*******************************************/
|
3632 |
|
3633 |
|
3634 |
/***/ }),
|
3635 |
+
/* 53 */
|
3636 |
/*!******************************************!*\
|
3637 |
!*** ./node_modules/lodash/_nodeUtil.js ***!
|
3638 |
\******************************************/
|
3640 |
/*! all exports used */
|
3641 |
/***/ (function(module, exports, __webpack_require__) {
|
3642 |
|
3643 |
+
/* WEBPACK VAR INJECTION */(function(module) {var freeGlobal = __webpack_require__(/*! ./_freeGlobal */ 149);
|
3644 |
|
3645 |
/** Detect free variable `exports`. */
|
3646 |
var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
|
3671 |
|
3672 |
module.exports = nodeUtil;
|
3673 |
|
3674 |
+
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */ 82)(module)))
|
3675 |
|
3676 |
/***/ }),
|
3677 |
+
/* 54 */
|
3678 |
/*!*********************************************!*\
|
3679 |
!*** ./node_modules/lodash/_isPrototype.js ***!
|
3680 |
\*********************************************/
|
3703 |
|
3704 |
|
3705 |
/***/ }),
|
3706 |
+
/* 55 */
|
3707 |
/*!****************************************!*\
|
3708 |
!*** ./node_modules/lodash/_getTag.js ***!
|
3709 |
\****************************************/
|
3711 |
/*! all exports used */
|
3712 |
/***/ (function(module, exports, __webpack_require__) {
|
3713 |
|
3714 |
+
var DataView = __webpack_require__(/*! ./_DataView */ 305),
|
3715 |
+
Map = __webpack_require__(/*! ./_Map */ 75),
|
3716 |
+
Promise = __webpack_require__(/*! ./_Promise */ 306),
|
3717 |
+
Set = __webpack_require__(/*! ./_Set */ 307),
|
3718 |
+
WeakMap = __webpack_require__(/*! ./_WeakMap */ 308),
|
3719 |
baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 22),
|
3720 |
+
toSource = __webpack_require__(/*! ./_toSource */ 150);
|
3721 |
|
3722 |
/** `Object#toString` result references. */
|
3723 |
var mapTag = '[object Map]',
|
3772 |
|
3773 |
|
3774 |
/***/ }),
|
3775 |
+
/* 56 */
|
3776 |
/*!*****************************************!*\
|
3777 |
!*** ./node_modules/lodash/_baseGet.js ***!
|
3778 |
\*****************************************/
|
3807 |
|
3808 |
|
3809 |
/***/ }),
|
3810 |
+
/* 57 */
|
3811 |
/*!*****************************************!*\
|
3812 |
!*** ./node_modules/lodash/isSymbol.js ***!
|
3813 |
\*****************************************/
|
3847 |
|
3848 |
|
3849 |
/***/ }),
|
3850 |
+
/* 58 */
|
3851 |
/*!*****************************************!*\
|
3852 |
!*** ./node_modules/lodash/identity.js ***!
|
3853 |
\*****************************************/
|
3879 |
|
3880 |
|
3881 |
/***/ }),
|
3882 |
+
/* 59 */
|
3883 |
/*!*********************************************************************************************!*\
|
3884 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/classCallCheck.js ***!
|
3885 |
\*********************************************************************************************/
|
3896 |
}
|
3897 |
|
3898 |
/***/ }),
|
3899 |
+
/* 60 */
|
3900 |
/*!******************************************************************************************!*\
|
3901 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/createClass.js ***!
|
3902 |
\******************************************************************************************/
|
3923 |
}
|
3924 |
|
3925 |
/***/ }),
|
3926 |
+
/* 61 */
|
3927 |
/*!***************************************************************************************!*\
|
3928 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/inherits.js ***!
|
3929 |
\***************************************************************************************/
|
3933 |
|
3934 |
"use strict";
|
3935 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _inherits;
|
3936 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__setPrototypeOf_js__ = __webpack_require__(/*! ./setPrototypeOf.js */ 340);
|
3937 |
|
3938 |
function _inherits(subClass, superClass) {
|
3939 |
if (typeof superClass !== "function" && superClass !== null) {
|
3947 |
configurable: true
|
3948 |
}
|
3949 |
});
|
3950 |
+
if (superClass) Object(__WEBPACK_IMPORTED_MODULE_0__setPrototypeOf_js__["a" /* default */])(subClass, superClass);
|
3951 |
}
|
3952 |
|
3953 |
/***/ }),
|
3954 |
+
/* 62 */
|
3955 |
/*!********************************************************************************************************!*\
|
3956 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js ***!
|
3957 |
\********************************************************************************************************/
|
3961 |
|
3962 |
"use strict";
|
3963 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _possibleConstructorReturn;
|
3964 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_typeof__ = __webpack_require__(/*! @babel/runtime/helpers/typeof */ 169);
|
3965 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_typeof___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_typeof__);
|
3966 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__assertThisInitialized_js__ = __webpack_require__(/*! ./assertThisInitialized.js */ 170);
|
3967 |
|
3968 |
|
3969 |
function _possibleConstructorReturn(self, call) {
|
3970 |
+
if (call && (__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_typeof___default()(call) === "object" || typeof call === "function")) {
|
3971 |
return call;
|
3972 |
}
|
3973 |
|
3974 |
+
return Object(__WEBPACK_IMPORTED_MODULE_1__assertThisInitialized_js__["a" /* default */])(self);
|
3975 |
}
|
3976 |
|
3977 |
/***/ }),
|
3978 |
+
/* 63 */
|
3979 |
/*!*********************************************************************************************!*\
|
3980 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js ***!
|
3981 |
\*********************************************************************************************/
|
3993 |
}
|
3994 |
|
3995 |
/***/ }),
|
3996 |
+
/* 64 */
|
3997 |
/*!*********************************************!*\
|
3998 |
!*** ./node_modules/lodash/_assignValue.js ***!
|
3999 |
\*********************************************/
|
4001 |
/*! all exports used */
|
4002 |
/***/ (function(module, exports, __webpack_require__) {
|
4003 |
|
4004 |
+
var baseAssignValue = __webpack_require__(/*! ./_baseAssignValue */ 190),
|
4005 |
+
eq = __webpack_require__(/*! ./eq */ 48);
|
4006 |
|
4007 |
/** Used for built-in method references. */
|
4008 |
var objectProto = Object.prototype;
|
4032 |
|
4033 |
|
4034 |
/***/ }),
|
4035 |
+
/* 65 */
|
4036 |
/*!********************************************!*\
|
4037 |
!*** ./src/components/box-shadow/index.js ***!
|
4038 |
\********************************************/
|
4280 |
/* harmony default export */ __webpack_exports__["a"] = (BoxShadowControl);
|
4281 |
|
4282 |
/***/ }),
|
4283 |
+
/* 66 */
|
4284 |
+
/*!*********************************************************************************************************************!*\
|
4285 |
+
!*** ./node_modules/react-transition-group/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js ***!
|
4286 |
+
\*********************************************************************************************************************/
|
4287 |
+
/*! exports provided: default */
|
4288 |
+
/*! exports used: default */
|
4289 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
4290 |
+
|
4291 |
+
"use strict";
|
4292 |
+
/* harmony export (immutable) */ __webpack_exports__["a"] = _objectWithoutPropertiesLoose;
|
4293 |
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
4294 |
+
if (source == null) return {};
|
4295 |
+
var target = {};
|
4296 |
+
var sourceKeys = Object.keys(source);
|
4297 |
+
var key, i;
|
4298 |
+
|
4299 |
+
for (i = 0; i < sourceKeys.length; i++) {
|
4300 |
+
key = sourceKeys[i];
|
4301 |
+
if (excluded.indexOf(key) >= 0) continue;
|
4302 |
+
target[key] = source[key];
|
4303 |
+
}
|
4304 |
+
|
4305 |
+
return target;
|
4306 |
+
}
|
4307 |
+
|
4308 |
+
/***/ }),
|
4309 |
+
/* 67 */
|
4310 |
/*!******************************************!*\
|
4311 |
!*** ./src/blocks/price-list/classes.js ***!
|
4312 |
\******************************************/
|
4364 |
/* harmony default export */ __webpack_exports__["a"] = (PositionClasses);
|
4365 |
|
4366 |
/***/ }),
|
4367 |
+
/* 68 */
|
4368 |
/*!****************************************!*\
|
4369 |
!*** ./src/blocks/timeline/classes.js ***!
|
4370 |
\****************************************/
|
4403 |
/* harmony default export */ __webpack_exports__["a"] = (ContentTmClasses);
|
4404 |
|
4405 |
/***/ }),
|
4406 |
+
/* 69 */
|
4407 |
/*!****************************************************************!*\
|
4408 |
!*** ./node_modules/core-js/library/modules/_property-desc.js ***!
|
4409 |
\****************************************************************/
|
4422 |
|
4423 |
|
4424 |
/***/ }),
|
4425 |
+
/* 70 */
|
4426 |
/*!**************************************************************!*\
|
4427 |
!*** ./node_modules/core-js/library/modules/_object-keys.js ***!
|
4428 |
\**************************************************************/
|
4431 |
/***/ (function(module, exports, __webpack_require__) {
|
4432 |
|
4433 |
// 19.1.2.14 / 15.2.3.14 Object.keys(O)
|
4434 |
+
var $keys = __webpack_require__(/*! ./_object-keys-internal */ 244);
|
4435 |
+
var enumBugKeys = __webpack_require__(/*! ./_enum-bug-keys */ 138);
|
4436 |
|
4437 |
module.exports = Object.keys || function keys(O) {
|
4438 |
return $keys(O, enumBugKeys);
|
4440 |
|
4441 |
|
4442 |
/***/ }),
|
4443 |
+
/* 71 */
|
4444 |
/*!**********************************************************!*\
|
4445 |
!*** ./node_modules/core-js/library/modules/_library.js ***!
|
4446 |
\**********************************************************/
|
4452 |
|
4453 |
|
4454 |
/***/ }),
|
4455 |
+
/* 72 */
|
4456 |
/*!******************************************************!*\
|
4457 |
!*** ./node_modules/core-js/library/modules/_uid.js ***!
|
4458 |
\******************************************************/
|
4468 |
|
4469 |
|
4470 |
/***/ }),
|
4471 |
+
/* 73 */
|
4472 |
/*!*************************************************************!*\
|
4473 |
!*** ./node_modules/core-js/library/modules/_object-pie.js ***!
|
4474 |
\*************************************************************/
|
4480 |
|
4481 |
|
4482 |
/***/ }),
|
4483 |
+
/* 74 */
|
4484 |
/*!***************************************!*\
|
4485 |
!*** ./node_modules/lodash/_Stack.js ***!
|
4486 |
\***************************************/
|
4488 |
/*! all exports used */
|
4489 |
/***/ (function(module, exports, __webpack_require__) {
|
4490 |
|
4491 |
+
var ListCache = __webpack_require__(/*! ./_ListCache */ 46),
|
4492 |
+
stackClear = __webpack_require__(/*! ./_stackClear */ 266),
|
4493 |
+
stackDelete = __webpack_require__(/*! ./_stackDelete */ 267),
|
4494 |
+
stackGet = __webpack_require__(/*! ./_stackGet */ 268),
|
4495 |
+
stackHas = __webpack_require__(/*! ./_stackHas */ 269),
|
4496 |
+
stackSet = __webpack_require__(/*! ./_stackSet */ 270);
|
4497 |
|
4498 |
/**
|
4499 |
* Creates a stack cache object to store key-value pairs.
|
4518 |
|
4519 |
|
4520 |
/***/ }),
|
4521 |
+
/* 75 */
|
4522 |
/*!*************************************!*\
|
4523 |
!*** ./node_modules/lodash/_Map.js ***!
|
4524 |
\*************************************/
|
4536 |
|
4537 |
|
4538 |
/***/ }),
|
4539 |
+
/* 76 */
|
4540 |
/*!***********************************!*\
|
4541 |
!*** (webpack)/buildin/global.js ***!
|
4542 |
\***********************************/
|
4568 |
|
4569 |
|
4570 |
/***/ }),
|
4571 |
+
/* 77 */
|
4572 |
/*!******************************************!*\
|
4573 |
!*** ./node_modules/lodash/_MapCache.js ***!
|
4574 |
\******************************************/
|
4576 |
/*! all exports used */
|
4577 |
/***/ (function(module, exports, __webpack_require__) {
|
4578 |
|
4579 |
+
var mapCacheClear = __webpack_require__(/*! ./_mapCacheClear */ 277),
|
4580 |
+
mapCacheDelete = __webpack_require__(/*! ./_mapCacheDelete */ 284),
|
4581 |
+
mapCacheGet = __webpack_require__(/*! ./_mapCacheGet */ 286),
|
4582 |
+
mapCacheHas = __webpack_require__(/*! ./_mapCacheHas */ 287),
|
4583 |
+
mapCacheSet = __webpack_require__(/*! ./_mapCacheSet */ 288);
|
4584 |
|
4585 |
/**
|
4586 |
* Creates a map cache object to store key-value pairs.
|
4611 |
|
4612 |
|
4613 |
/***/ }),
|
4614 |
+
/* 78 */
|
4615 |
/*!*******************************************!*\
|
4616 |
!*** ./node_modules/lodash/_arrayPush.js ***!
|
4617 |
\*******************************************/
|
4642 |
|
4643 |
|
4644 |
/***/ }),
|
4645 |
+
/* 79 */
|
4646 |
/*!********************************************!*\
|
4647 |
!*** ./node_modules/lodash/_getSymbols.js ***!
|
4648 |
\********************************************/
|
4650 |
/*! all exports used */
|
4651 |
/***/ (function(module, exports, __webpack_require__) {
|
4652 |
|
4653 |
+
var arrayFilter = __webpack_require__(/*! ./_arrayFilter */ 299),
|
4654 |
+
stubArray = __webpack_require__(/*! ./stubArray */ 156);
|
4655 |
|
4656 |
/** Used for built-in method references. */
|
4657 |
var objectProto = Object.prototype;
|
4683 |
|
4684 |
|
4685 |
/***/ }),
|
4686 |
+
/* 80 */
|
4687 |
/*!********************************************!*\
|
4688 |
!*** ./node_modules/lodash/isArguments.js ***!
|
4689 |
\********************************************/
|
4691 |
/*! all exports used */
|
4692 |
/***/ (function(module, exports, __webpack_require__) {
|
4693 |
|
4694 |
+
var baseIsArguments = __webpack_require__(/*! ./_baseIsArguments */ 300),
|
4695 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
4696 |
|
4697 |
/** Used for built-in method references. */
|
4730 |
|
4731 |
|
4732 |
/***/ }),
|
4733 |
+
/* 81 */
|
4734 |
/*!*****************************************!*\
|
4735 |
!*** ./node_modules/lodash/isBuffer.js ***!
|
4736 |
\*****************************************/
|
4739 |
/***/ (function(module, exports, __webpack_require__) {
|
4740 |
|
4741 |
/* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(/*! ./_root */ 12),
|
4742 |
+
stubFalse = __webpack_require__(/*! ./stubFalse */ 301);
|
4743 |
|
4744 |
/** Detect free variable `exports`. */
|
4745 |
var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
|
4777 |
|
4778 |
module.exports = isBuffer;
|
4779 |
|
4780 |
+
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */ 82)(module)))
|
4781 |
|
4782 |
/***/ }),
|
4783 |
+
/* 82 */
|
4784 |
/*!***********************************!*\
|
4785 |
!*** (webpack)/buildin/module.js ***!
|
4786 |
\***********************************/
|
4813 |
|
4814 |
|
4815 |
/***/ }),
|
4816 |
+
/* 83 */
|
4817 |
/*!*****************************************!*\
|
4818 |
!*** ./node_modules/lodash/isLength.js ***!
|
4819 |
\*****************************************/
|
4859 |
|
4860 |
|
4861 |
/***/ }),
|
4862 |
+
/* 84 */
|
4863 |
/*!***************************************!*\
|
4864 |
!*** ./node_modules/lodash/_isKey.js ***!
|
4865 |
\***************************************/
|
4868 |
/***/ (function(module, exports, __webpack_require__) {
|
4869 |
|
4870 |
var isArray = __webpack_require__(/*! ./isArray */ 14),
|
4871 |
+
isSymbol = __webpack_require__(/*! ./isSymbol */ 57);
|
4872 |
|
4873 |
/** Used to match property names within property paths. */
|
4874 |
var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,
|
4899 |
|
4900 |
|
4901 |
/***/ }),
|
4902 |
+
/* 85 */
|
4903 |
/*!***************************************************!*\
|
4904 |
!*** ./node_modules/prop-types/checkPropTypes.js ***!
|
4905 |
\***************************************************/
|
4920 |
var printWarning = function() {};
|
4921 |
|
4922 |
if (process.env.NODE_ENV !== 'production') {
|
4923 |
+
var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ 86);
|
4924 |
var loggedTypeFailures = {};
|
4925 |
var has = Function.call.bind(Object.prototype.hasOwnProperty);
|
4926 |
|
5014 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
5015 |
|
5016 |
/***/ }),
|
5017 |
+
/* 86 */
|
5018 |
/*!*************************************************************!*\
|
5019 |
!*** ./node_modules/prop-types/lib/ReactPropTypesSecret.js ***!
|
5020 |
\*************************************************************/
|
5038 |
|
5039 |
|
5040 |
/***/ }),
|
5041 |
+
/* 87 */
|
5042 |
/*!*************************************************************!*\
|
5043 |
!*** ./node_modules/@emotion/core/dist/core.browser.esm.js ***!
|
5044 |
\*************************************************************/
|
5052 |
/* unused harmony export createElement */
|
5053 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return jsx; });
|
5054 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return keyframes; });
|
5055 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inheritsLoose */ 343);
|
5056 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 5);
|
5057 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
5058 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_cache__ = __webpack_require__(/*! @emotion/cache */ 88);
|
5059 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__emotion_element_57a3a7a3_browser_esm_js__ = __webpack_require__(/*! ./emotion-element-57a3a7a3.browser.esm.js */ 173);
|
5060 |
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return __WEBPACK_IMPORTED_MODULE_3__emotion_element_57a3a7a3_browser_esm_js__["a"]; });
|
5061 |
/* unused harmony reexport ThemeContext */
|
5062 |
/* unused harmony reexport withEmotionCache */
|
5063 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__emotion_utils__ = __webpack_require__(/*! @emotion/utils */ 174);
|
5064 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */ 89);
|
5065 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */ 172);
|
5066 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__emotion_css__ = __webpack_require__(/*! @emotion/css */ 41);
|
5067 |
/* unused harmony reexport css */
|
5068 |
|
5316 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 6)))
|
5317 |
|
5318 |
/***/ }),
|
5319 |
+
/* 88 */
|
5320 |
/*!***************************************************************!*\
|
5321 |
!*** ./node_modules/@emotion/cache/dist/cache.browser.esm.js ***!
|
5322 |
\***************************************************************/
|
5325 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
5326 |
|
5327 |
"use strict";
|
5328 |
+
/* WEBPACK VAR INJECTION */(function(process) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */ 172);
|
5329 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_stylis__ = __webpack_require__(/*! @emotion/stylis */ 345);
|
5330 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_weak_memoize__ = __webpack_require__(/*! @emotion/weak-memoize */ 346);
|
5331 |
|
5332 |
|
5333 |
|
5542 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 6)))
|
5543 |
|
5544 |
/***/ }),
|
5545 |
+
/* 89 */
|
5546 |
/*!***********************************************************************!*\
|
5547 |
!*** ./node_modules/@emotion/serialize/dist/serialize.browser.esm.js ***!
|
5548 |
\***********************************************************************/
|
5552 |
|
5553 |
"use strict";
|
5554 |
/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return serializeStyles; });
|
5555 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_hash__ = __webpack_require__(/*! @emotion/hash */ 349);
|
5556 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_unitless__ = __webpack_require__(/*! @emotion/unitless */ 350);
|
5557 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_memoize__ = __webpack_require__(/*! @emotion/memoize */ 351);
|
5558 |
|
5559 |
|
5560 |
|
5881 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 6)))
|
5882 |
|
5883 |
/***/ }),
|
5884 |
+
/* 90 */
|
5885 |
/*!******************************************************************************************************!*\
|
5886 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js ***!
|
5887 |
\******************************************************************************************************/
|
5891 |
|
5892 |
"use strict";
|
5893 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _objectWithoutProperties;
|
5894 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__objectWithoutPropertiesLoose_js__ = __webpack_require__(/*! ./objectWithoutPropertiesLoose.js */ 359);
|
5895 |
|
5896 |
function _objectWithoutProperties(source, excluded) {
|
5897 |
if (source == null) return {};
|
5898 |
+
var target = Object(__WEBPACK_IMPORTED_MODULE_0__objectWithoutPropertiesLoose_js__["a" /* default */])(source, excluded);
|
5899 |
var key, i;
|
5900 |
|
5901 |
if (Object.getOwnPropertySymbols) {
|
5913 |
}
|
5914 |
|
5915 |
/***/ }),
|
5916 |
+
/* 91 */
|
5917 |
/*!**************************************************************************************!*\
|
5918 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/extends.js ***!
|
5919 |
\**************************************************************************************/
|
5942 |
}
|
5943 |
|
5944 |
/***/ }),
|
5945 |
+
/* 92 */
|
5946 |
/*!*******************************************!*\
|
5947 |
!*** ./node_modules/lodash/_baseSlice.js ***!
|
5948 |
\*******************************************/
|
5984 |
|
5985 |
|
5986 |
/***/ }),
|
5987 |
+
/* 93 */
|
5988 |
/*!********************************************!*\
|
5989 |
!*** ./node_modules/lodash/_hasUnicode.js ***!
|
5990 |
\********************************************/
|
6021 |
|
6022 |
|
6023 |
/***/ }),
|
6024 |
+
/* 94 */
|
6025 |
/*!******************************************!*\
|
6026 |
!*** ./node_modules/lodash/toInteger.js ***!
|
6027 |
\******************************************/
|
6029 |
/*! all exports used */
|
6030 |
/***/ (function(module, exports, __webpack_require__) {
|
6031 |
|
6032 |
+
var toFinite = __webpack_require__(/*! ./toFinite */ 396);
|
6033 |
|
6034 |
/**
|
6035 |
* Converts `value` to an integer.
|
6068 |
|
6069 |
|
6070 |
/***/ }),
|
6071 |
+
/* 95 */
|
6072 |
/*!************************************!*\
|
6073 |
!*** ./src/blocks/post/styling.js ***!
|
6074 |
\************************************/
|
6561 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
6562 |
|
6563 |
/***/ }),
|
6564 |
+
/* 96 */
|
6565 |
/*!************************************!*\
|
6566 |
!*** ./src/blocks/post/style.scss ***!
|
6567 |
\************************************/
|
6571 |
// removed by extract-text-webpack-plugin
|
6572 |
|
6573 |
/***/ }),
|
6574 |
+
/* 97 */
|
6575 |
/*!*************************************!*\
|
6576 |
!*** ./src/blocks/post/editor.scss ***!
|
6577 |
\*************************************/
|
6581 |
// removed by extract-text-webpack-plugin
|
6582 |
|
6583 |
/***/ }),
|
6584 |
+
/* 98 */
|
6585 |
/*!***********************************************!*\
|
6586 |
!*** ./node_modules/ev-emitter/ev-emitter.js ***!
|
6587 |
\***********************************************/
|
6708 |
|
6709 |
|
6710 |
/***/ }),
|
6711 |
+
/* 99 */
|
6712 |
/*!*******************************************!*\
|
6713 |
!*** ./node_modules/get-size/get-size.js ***!
|
6714 |
\*******************************************/
|
6930 |
|
6931 |
|
6932 |
/***/ }),
|
6933 |
+
/* 100 */
|
6934 |
/*!**********************************************!*\
|
6935 |
!*** ./node_modules/lodash/_getPrototype.js ***!
|
6936 |
\**********************************************/
|
6938 |
/*! all exports used */
|
6939 |
/***/ (function(module, exports, __webpack_require__) {
|
6940 |
|
6941 |
+
var overArg = __webpack_require__(/*! ./_overArg */ 160);
|
6942 |
|
6943 |
/** Built-in value references. */
|
6944 |
var getPrototype = overArg(Object.getPrototypeOf, Object);
|
6947 |
|
6948 |
|
6949 |
/***/ }),
|
6950 |
+
/* 101 */
|
6951 |
/*!**********************************************!*\
|
6952 |
!*** ./node_modules/lodash/_getAllKeysIn.js ***!
|
6953 |
\**********************************************/
|
6955 |
/*! all exports used */
|
6956 |
/***/ (function(module, exports, __webpack_require__) {
|
6957 |
|
6958 |
+
var baseGetAllKeys = __webpack_require__(/*! ./_baseGetAllKeys */ 155),
|
6959 |
+
getSymbolsIn = __webpack_require__(/*! ./_getSymbolsIn */ 197),
|
6960 |
+
keysIn = __webpack_require__(/*! ./keysIn */ 196);
|
6961 |
|
6962 |
/**
|
6963 |
* Creates an array of own and inherited enumerable property names and
|
6975 |
|
6976 |
|
6977 |
/***/ }),
|
6978 |
+
/* 102 */
|
6979 |
/*!**************************************************!*\
|
6980 |
!*** ./node_modules/lodash/_cloneArrayBuffer.js ***!
|
6981 |
\**************************************************/
|
6983 |
/*! all exports used */
|
6984 |
/***/ (function(module, exports, __webpack_require__) {
|
6985 |
|
6986 |
+
var Uint8Array = __webpack_require__(/*! ./_Uint8Array */ 153);
|
6987 |
|
6988 |
/**
|
6989 |
* Creates a clone of `arrayBuffer`.
|
7002 |
|
7003 |
|
7004 |
/***/ }),
|
7005 |
+
/* 103 */
|
7006 |
/*!***************************************************!*\
|
7007 |
!*** ./src/components/gradient-settings/index.js ***!
|
7008 |
\***************************************************/
|
7011 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
7012 |
|
7013 |
"use strict";
|
7014 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */ 104);
|
7015 |
|
7016 |
var __ = wp.i18n.__;
|
7017 |
var __experimentalPanelColorGradientSettings = wp.blockEditor.__experimentalPanelColorGradientSettings;
|
7063 |
/* harmony default export */ __webpack_exports__["a"] = (GradientSettings);
|
7064 |
|
7065 |
/***/ }),
|
7066 |
+
/* 104 */
|
7067 |
/*!************************************************!*\
|
7068 |
!*** ./dist/blocks/uagb-controls/hexToRgba.js ***!
|
7069 |
\************************************************/
|
7112 |
/* harmony default export */ __webpack_exports__["a"] = (hexToRgba);
|
7113 |
|
7114 |
/***/ }),
|
7115 |
+
/* 105 */
|
7116 |
+
/*!***************************************************************!*\
|
7117 |
+
!*** ./node_modules/react-transition-group/esm/Transition.js ***!
|
7118 |
+
\***************************************************************/
|
7119 |
+
/*! exports provided: UNMOUNTED, EXITED, ENTERING, ENTERED, EXITING, default */
|
7120 |
+
/*! exports used: ENTERED, ENTERING, EXITING, default */
|
7121 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
7122 |
+
|
7123 |
+
"use strict";
|
7124 |
+
/* WEBPACK VAR INJECTION */(function(process) {/* unused harmony export UNMOUNTED */
|
7125 |
+
/* unused harmony export EXITED */
|
7126 |
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return ENTERING; });
|
7127 |
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return ENTERED; });
|
7128 |
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return EXITING; });
|
7129 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutPropertiesLoose__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutPropertiesLoose */ 66);
|
7130 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inheritsLoose */ 43);
|
7131 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
7132 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_prop_types__);
|
7133 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react__ = __webpack_require__(/*! react */ 5);
|
7134 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react__);
|
7135 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react_dom__ = __webpack_require__(/*! react-dom */ 33);
|
7136 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react_dom__);
|
7137 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__config__ = __webpack_require__(/*! ./config */ 205);
|
7138 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__utils_PropTypes__ = __webpack_require__(/*! ./utils/PropTypes */ 206);
|
7139 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__TransitionGroupContext__ = __webpack_require__(/*! ./TransitionGroupContext */ 106);
|
7140 |
+
|
7141 |
+
|
7142 |
+
|
7143 |
+
|
7144 |
+
|
7145 |
+
|
7146 |
+
|
7147 |
+
|
7148 |
+
var UNMOUNTED = 'unmounted';
|
7149 |
+
var EXITED = 'exited';
|
7150 |
+
var ENTERING = 'entering';
|
7151 |
+
var ENTERED = 'entered';
|
7152 |
+
var EXITING = 'exiting';
|
7153 |
+
/**
|
7154 |
+
* The Transition component lets you describe a transition from one component
|
7155 |
+
* state to another _over time_ with a simple declarative API. Most commonly
|
7156 |
+
* it's used to animate the mounting and unmounting of a component, but can also
|
7157 |
+
* be used to describe in-place transition states as well.
|
7158 |
+
*
|
7159 |
+
* ---
|
7160 |
+
*
|
7161 |
+
* **Note**: `Transition` is a platform-agnostic base component. If you're using
|
7162 |
+
* transitions in CSS, you'll probably want to use
|
7163 |
+
* [`CSSTransition`](https://reactcommunity.org/react-transition-group/css-transition)
|
7164 |
+
* instead. It inherits all the features of `Transition`, but contains
|
7165 |
+
* additional features necessary to play nice with CSS transitions (hence the
|
7166 |
+
* name of the component).
|
7167 |
+
*
|
7168 |
+
* ---
|
7169 |
+
*
|
7170 |
+
* By default the `Transition` component does not alter the behavior of the
|
7171 |
+
* component it renders, it only tracks "enter" and "exit" states for the
|
7172 |
+
* components. It's up to you to give meaning and effect to those states. For
|
7173 |
+
* example we can add styles to a component when it enters or exits:
|
7174 |
+
*
|
7175 |
+
* ```jsx
|
7176 |
+
* import { Transition } from 'react-transition-group';
|
7177 |
+
*
|
7178 |
+
* const duration = 300;
|
7179 |
+
*
|
7180 |
+
* const defaultStyle = {
|
7181 |
+
* transition: `opacity ${duration}ms ease-in-out`,
|
7182 |
+
* opacity: 0,
|
7183 |
+
* }
|
7184 |
+
*
|
7185 |
+
* const transitionStyles = {
|
7186 |
+
* entering: { opacity: 1 },
|
7187 |
+
* entered: { opacity: 1 },
|
7188 |
+
* exiting: { opacity: 0 },
|
7189 |
+
* exited: { opacity: 0 },
|
7190 |
+
* };
|
7191 |
+
*
|
7192 |
+
* const Fade = ({ in: inProp }) => (
|
7193 |
+
* <Transition in={inProp} timeout={duration}>
|
7194 |
+
* {state => (
|
7195 |
+
* <div style={{
|
7196 |
+
* ...defaultStyle,
|
7197 |
+
* ...transitionStyles[state]
|
7198 |
+
* }}>
|
7199 |
+
* I'm a fade Transition!
|
7200 |
+
* </div>
|
7201 |
+
* )}
|
7202 |
+
* </Transition>
|
7203 |
+
* );
|
7204 |
+
* ```
|
7205 |
+
*
|
7206 |
+
* There are 4 main states a Transition can be in:
|
7207 |
+
* - `'entering'`
|
7208 |
+
* - `'entered'`
|
7209 |
+
* - `'exiting'`
|
7210 |
+
* - `'exited'`
|
7211 |
+
*
|
7212 |
+
* Transition state is toggled via the `in` prop. When `true` the component
|
7213 |
+
* begins the "Enter" stage. During this stage, the component will shift from
|
7214 |
+
* its current transition state, to `'entering'` for the duration of the
|
7215 |
+
* transition and then to the `'entered'` stage once it's complete. Let's take
|
7216 |
+
* the following example (we'll use the
|
7217 |
+
* [useState](https://reactjs.org/docs/hooks-reference.html#usestate) hook):
|
7218 |
+
*
|
7219 |
+
* ```jsx
|
7220 |
+
* function App() {
|
7221 |
+
* const [inProp, setInProp] = useState(false);
|
7222 |
+
* return (
|
7223 |
+
* <div>
|
7224 |
+
* <Transition in={inProp} timeout={500}>
|
7225 |
+
* {state => (
|
7226 |
+
* // ...
|
7227 |
+
* )}
|
7228 |
+
* </Transition>
|
7229 |
+
* <button onClick={() => setInProp(true)}>
|
7230 |
+
* Click to Enter
|
7231 |
+
* </button>
|
7232 |
+
* </div>
|
7233 |
+
* );
|
7234 |
+
* }
|
7235 |
+
* ```
|
7236 |
+
*
|
7237 |
+
* When the button is clicked the component will shift to the `'entering'` state
|
7238 |
+
* and stay there for 500ms (the value of `timeout`) before it finally switches
|
7239 |
+
* to `'entered'`.
|
7240 |
+
*
|
7241 |
+
* When `in` is `false` the same thing happens except the state moves from
|
7242 |
+
* `'exiting'` to `'exited'`.
|
7243 |
+
*/
|
7244 |
+
|
7245 |
+
var Transition = /*#__PURE__*/function (_React$Component) {
|
7246 |
+
Object(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_inheritsLoose__["a" /* default */])(Transition, _React$Component);
|
7247 |
+
|
7248 |
+
function Transition(props, context) {
|
7249 |
+
var _this;
|
7250 |
+
|
7251 |
+
_this = _React$Component.call(this, props, context) || this;
|
7252 |
+
var parentGroup = context; // In the context of a TransitionGroup all enters are really appears
|
7253 |
+
|
7254 |
+
var appear = parentGroup && !parentGroup.isMounting ? props.enter : props.appear;
|
7255 |
+
var initialStatus;
|
7256 |
+
_this.appearStatus = null;
|
7257 |
+
|
7258 |
+
if (props.in) {
|
7259 |
+
if (appear) {
|
7260 |
+
initialStatus = EXITED;
|
7261 |
+
_this.appearStatus = ENTERING;
|
7262 |
+
} else {
|
7263 |
+
initialStatus = ENTERED;
|
7264 |
+
}
|
7265 |
+
} else {
|
7266 |
+
if (props.unmountOnExit || props.mountOnEnter) {
|
7267 |
+
initialStatus = UNMOUNTED;
|
7268 |
+
} else {
|
7269 |
+
initialStatus = EXITED;
|
7270 |
+
}
|
7271 |
+
}
|
7272 |
+
|
7273 |
+
_this.state = {
|
7274 |
+
status: initialStatus
|
7275 |
+
};
|
7276 |
+
_this.nextCallback = null;
|
7277 |
+
return _this;
|
7278 |
+
}
|
7279 |
+
|
7280 |
+
Transition.getDerivedStateFromProps = function getDerivedStateFromProps(_ref, prevState) {
|
7281 |
+
var nextIn = _ref.in;
|
7282 |
+
|
7283 |
+
if (nextIn && prevState.status === UNMOUNTED) {
|
7284 |
+
return {
|
7285 |
+
status: EXITED
|
7286 |
+
};
|
7287 |
+
}
|
7288 |
+
|
7289 |
+
return null;
|
7290 |
+
} // getSnapshotBeforeUpdate(prevProps) {
|
7291 |
+
// let nextStatus = null
|
7292 |
+
// if (prevProps !== this.props) {
|
7293 |
+
// const { status } = this.state
|
7294 |
+
// if (this.props.in) {
|
7295 |
+
// if (status !== ENTERING && status !== ENTERED) {
|
7296 |
+
// nextStatus = ENTERING
|
7297 |
+
// }
|
7298 |
+
// } else {
|
7299 |
+
// if (status === ENTERING || status === ENTERED) {
|
7300 |
+
// nextStatus = EXITING
|
7301 |
+
// }
|
7302 |
+
// }
|
7303 |
+
// }
|
7304 |
+
// return { nextStatus }
|
7305 |
+
// }
|
7306 |
+
;
|
7307 |
+
|
7308 |
+
var _proto = Transition.prototype;
|
7309 |
+
|
7310 |
+
_proto.componentDidMount = function componentDidMount() {
|
7311 |
+
this.updateStatus(true, this.appearStatus);
|
7312 |
+
};
|
7313 |
+
|
7314 |
+
_proto.componentDidUpdate = function componentDidUpdate(prevProps) {
|
7315 |
+
var nextStatus = null;
|
7316 |
+
|
7317 |
+
if (prevProps !== this.props) {
|
7318 |
+
var status = this.state.status;
|
7319 |
+
|
7320 |
+
if (this.props.in) {
|
7321 |
+
if (status !== ENTERING && status !== ENTERED) {
|
7322 |
+
nextStatus = ENTERING;
|
7323 |
+
}
|
7324 |
+
} else {
|
7325 |
+
if (status === ENTERING || status === ENTERED) {
|
7326 |
+
nextStatus = EXITING;
|
7327 |
+
}
|
7328 |
+
}
|
7329 |
+
}
|
7330 |
+
|
7331 |
+
this.updateStatus(false, nextStatus);
|
7332 |
+
};
|
7333 |
+
|
7334 |
+
_proto.componentWillUnmount = function componentWillUnmount() {
|
7335 |
+
this.cancelNextCallback();
|
7336 |
+
};
|
7337 |
+
|
7338 |
+
_proto.getTimeouts = function getTimeouts() {
|
7339 |
+
var timeout = this.props.timeout;
|
7340 |
+
var exit, enter, appear;
|
7341 |
+
exit = enter = appear = timeout;
|
7342 |
+
|
7343 |
+
if (timeout != null && typeof timeout !== 'number') {
|
7344 |
+
exit = timeout.exit;
|
7345 |
+
enter = timeout.enter; // TODO: remove fallback for next major
|
7346 |
+
|
7347 |
+
appear = timeout.appear !== undefined ? timeout.appear : enter;
|
7348 |
+
}
|
7349 |
+
|
7350 |
+
return {
|
7351 |
+
exit: exit,
|
7352 |
+
enter: enter,
|
7353 |
+
appear: appear
|
7354 |
+
};
|
7355 |
+
};
|
7356 |
+
|
7357 |
+
_proto.updateStatus = function updateStatus(mounting, nextStatus) {
|
7358 |
+
if (mounting === void 0) {
|
7359 |
+
mounting = false;
|
7360 |
+
}
|
7361 |
+
|
7362 |
+
if (nextStatus !== null) {
|
7363 |
+
// nextStatus will always be ENTERING or EXITING.
|
7364 |
+
this.cancelNextCallback();
|
7365 |
+
|
7366 |
+
if (nextStatus === ENTERING) {
|
7367 |
+
this.performEnter(mounting);
|
7368 |
+
} else {
|
7369 |
+
this.performExit();
|
7370 |
+
}
|
7371 |
+
} else if (this.props.unmountOnExit && this.state.status === EXITED) {
|
7372 |
+
this.setState({
|
7373 |
+
status: UNMOUNTED
|
7374 |
+
});
|
7375 |
+
}
|
7376 |
+
};
|
7377 |
+
|
7378 |
+
_proto.performEnter = function performEnter(mounting) {
|
7379 |
+
var _this2 = this;
|
7380 |
+
|
7381 |
+
var enter = this.props.enter;
|
7382 |
+
var appearing = this.context ? this.context.isMounting : mounting;
|
7383 |
+
|
7384 |
+
var _ref2 = this.props.nodeRef ? [appearing] : [__WEBPACK_IMPORTED_MODULE_4_react_dom___default.a.findDOMNode(this), appearing],
|
7385 |
+
maybeNode = _ref2[0],
|
7386 |
+
maybeAppearing = _ref2[1];
|
7387 |
+
|
7388 |
+
var timeouts = this.getTimeouts();
|
7389 |
+
var enterTimeout = appearing ? timeouts.appear : timeouts.enter; // no enter animation skip right to ENTERED
|
7390 |
+
// if we are mounting and running this it means appear _must_ be set
|
7391 |
+
|
7392 |
+
if (!mounting && !enter || __WEBPACK_IMPORTED_MODULE_5__config__["a" /* default */].disabled) {
|
7393 |
+
this.safeSetState({
|
7394 |
+
status: ENTERED
|
7395 |
+
}, function () {
|
7396 |
+
_this2.props.onEntered(maybeNode);
|
7397 |
+
});
|
7398 |
+
return;
|
7399 |
+
}
|
7400 |
+
|
7401 |
+
this.props.onEnter(maybeNode, maybeAppearing);
|
7402 |
+
this.safeSetState({
|
7403 |
+
status: ENTERING
|
7404 |
+
}, function () {
|
7405 |
+
_this2.props.onEntering(maybeNode, maybeAppearing);
|
7406 |
+
|
7407 |
+
_this2.onTransitionEnd(enterTimeout, function () {
|
7408 |
+
_this2.safeSetState({
|
7409 |
+
status: ENTERED
|
7410 |
+
}, function () {
|
7411 |
+
_this2.props.onEntered(maybeNode, maybeAppearing);
|
7412 |
+
});
|
7413 |
+
});
|
7414 |
+
});
|
7415 |
+
};
|
7416 |
+
|
7417 |
+
_proto.performExit = function performExit() {
|
7418 |
+
var _this3 = this;
|
7419 |
+
|
7420 |
+
var exit = this.props.exit;
|
7421 |
+
var timeouts = this.getTimeouts();
|
7422 |
+
var maybeNode = this.props.nodeRef ? undefined : __WEBPACK_IMPORTED_MODULE_4_react_dom___default.a.findDOMNode(this); // no exit animation skip right to EXITED
|
7423 |
+
|
7424 |
+
if (!exit || __WEBPACK_IMPORTED_MODULE_5__config__["a" /* default */].disabled) {
|
7425 |
+
this.safeSetState({
|
7426 |
+
status: EXITED
|
7427 |
+
}, function () {
|
7428 |
+
_this3.props.onExited(maybeNode);
|
7429 |
+
});
|
7430 |
+
return;
|
7431 |
+
}
|
7432 |
+
|
7433 |
+
this.props.onExit(maybeNode);
|
7434 |
+
this.safeSetState({
|
7435 |
+
status: EXITING
|
7436 |
+
}, function () {
|
7437 |
+
_this3.props.onExiting(maybeNode);
|
7438 |
+
|
7439 |
+
_this3.onTransitionEnd(timeouts.exit, function () {
|
7440 |
+
_this3.safeSetState({
|
7441 |
+
status: EXITED
|
7442 |
+
}, function () {
|
7443 |
+
_this3.props.onExited(maybeNode);
|
7444 |
+
});
|
7445 |
+
});
|
7446 |
+
});
|
7447 |
+
};
|
7448 |
+
|
7449 |
+
_proto.cancelNextCallback = function cancelNextCallback() {
|
7450 |
+
if (this.nextCallback !== null) {
|
7451 |
+
this.nextCallback.cancel();
|
7452 |
+
this.nextCallback = null;
|
7453 |
+
}
|
7454 |
+
};
|
7455 |
+
|
7456 |
+
_proto.safeSetState = function safeSetState(nextState, callback) {
|
7457 |
+
// This shouldn't be necessary, but there are weird race conditions with
|
7458 |
+
// setState callbacks and unmounting in testing, so always make sure that
|
7459 |
+
// we can cancel any pending setState callbacks after we unmount.
|
7460 |
+
callback = this.setNextCallback(callback);
|
7461 |
+
this.setState(nextState, callback);
|
7462 |
+
};
|
7463 |
+
|
7464 |
+
_proto.setNextCallback = function setNextCallback(callback) {
|
7465 |
+
var _this4 = this;
|
7466 |
+
|
7467 |
+
var active = true;
|
7468 |
+
|
7469 |
+
this.nextCallback = function (event) {
|
7470 |
+
if (active) {
|
7471 |
+
active = false;
|
7472 |
+
_this4.nextCallback = null;
|
7473 |
+
callback(event);
|
7474 |
+
}
|
7475 |
+
};
|
7476 |
+
|
7477 |
+
this.nextCallback.cancel = function () {
|
7478 |
+
active = false;
|
7479 |
+
};
|
7480 |
+
|
7481 |
+
return this.nextCallback;
|
7482 |
+
};
|
7483 |
+
|
7484 |
+
_proto.onTransitionEnd = function onTransitionEnd(timeout, handler) {
|
7485 |
+
this.setNextCallback(handler);
|
7486 |
+
var node = this.props.nodeRef ? this.props.nodeRef.current : __WEBPACK_IMPORTED_MODULE_4_react_dom___default.a.findDOMNode(this);
|
7487 |
+
var doesNotHaveTimeoutOrListener = timeout == null && !this.props.addEndListener;
|
7488 |
+
|
7489 |
+
if (!node || doesNotHaveTimeoutOrListener) {
|
7490 |
+
setTimeout(this.nextCallback, 0);
|
7491 |
+
return;
|
7492 |
+
}
|
7493 |
+
|
7494 |
+
if (this.props.addEndListener) {
|
7495 |
+
var _ref3 = this.props.nodeRef ? [this.nextCallback] : [node, this.nextCallback],
|
7496 |
+
maybeNode = _ref3[0],
|
7497 |
+
maybeNextCallback = _ref3[1];
|
7498 |
+
|
7499 |
+
this.props.addEndListener(maybeNode, maybeNextCallback);
|
7500 |
+
}
|
7501 |
+
|
7502 |
+
if (timeout != null) {
|
7503 |
+
setTimeout(this.nextCallback, timeout);
|
7504 |
+
}
|
7505 |
+
};
|
7506 |
+
|
7507 |
+
_proto.render = function render() {
|
7508 |
+
var status = this.state.status;
|
7509 |
+
|
7510 |
+
if (status === UNMOUNTED) {
|
7511 |
+
return null;
|
7512 |
+
}
|
7513 |
+
|
7514 |
+
var _this$props = this.props,
|
7515 |
+
children = _this$props.children,
|
7516 |
+
_in = _this$props.in,
|
7517 |
+
_mountOnEnter = _this$props.mountOnEnter,
|
7518 |
+
_unmountOnExit = _this$props.unmountOnExit,
|
7519 |
+
_appear = _this$props.appear,
|
7520 |
+
_enter = _this$props.enter,
|
7521 |
+
_exit = _this$props.exit,
|
7522 |
+
_timeout = _this$props.timeout,
|
7523 |
+
_addEndListener = _this$props.addEndListener,
|
7524 |
+
_onEnter = _this$props.onEnter,
|
7525 |
+
_onEntering = _this$props.onEntering,
|
7526 |
+
_onEntered = _this$props.onEntered,
|
7527 |
+
_onExit = _this$props.onExit,
|
7528 |
+
_onExiting = _this$props.onExiting,
|
7529 |
+
_onExited = _this$props.onExited,
|
7530 |
+
_nodeRef = _this$props.nodeRef,
|
7531 |
+
childProps = Object(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutPropertiesLoose__["a" /* default */])(_this$props, ["children", "in", "mountOnEnter", "unmountOnExit", "appear", "enter", "exit", "timeout", "addEndListener", "onEnter", "onEntering", "onEntered", "onExit", "onExiting", "onExited", "nodeRef"]);
|
7532 |
+
|
7533 |
+
return (
|
7534 |
+
/*#__PURE__*/
|
7535 |
+
// allows for nested Transitions
|
7536 |
+
__WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_7__TransitionGroupContext__["a" /* default */].Provider, {
|
7537 |
+
value: null
|
7538 |
+
}, typeof children === 'function' ? children(status, childProps) : __WEBPACK_IMPORTED_MODULE_3_react___default.a.cloneElement(__WEBPACK_IMPORTED_MODULE_3_react___default.a.Children.only(children), childProps))
|
7539 |
+
);
|
7540 |
+
};
|
7541 |
+
|
7542 |
+
return Transition;
|
7543 |
+
}(__WEBPACK_IMPORTED_MODULE_3_react___default.a.Component);
|
7544 |
+
|
7545 |
+
Transition.contextType = __WEBPACK_IMPORTED_MODULE_7__TransitionGroupContext__["a" /* default */];
|
7546 |
+
Transition.propTypes = process.env.NODE_ENV !== "production" ? {
|
7547 |
+
/**
|
7548 |
+
* A React reference to DOM element that need to transition:
|
7549 |
+
* https://stackoverflow.com/a/51127130/4671932
|
7550 |
+
*
|
7551 |
+
* - When `nodeRef` prop is used, `node` is not passed to callback functions
|
7552 |
+
* (e.g. `onEnter`) because user already has direct access to the node.
|
7553 |
+
* - When changing `key` prop of `Transition` in a `TransitionGroup` a new
|
7554 |
+
* `nodeRef` need to be provided to `Transition` with changed `key` prop
|
7555 |
+
* (see
|
7556 |
+
* [test/CSSTransition-test.js](https://github.com/reactjs/react-transition-group/blob/13435f897b3ab71f6e19d724f145596f5910581c/test/CSSTransition-test.js#L362-L437)).
|
7557 |
+
*/
|
7558 |
+
nodeRef: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.shape({
|
7559 |
+
current: typeof Element === 'undefined' ? __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.any : __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.instanceOf(Element)
|
7560 |
+
}),
|
7561 |
+
|
7562 |
+
/**
|
7563 |
+
* A `function` child can be used instead of a React element. This function is
|
7564 |
+
* called with the current transition status (`'entering'`, `'entered'`,
|
7565 |
+
* `'exiting'`, `'exited'`), which can be used to apply context
|
7566 |
+
* specific props to a component.
|
7567 |
+
*
|
7568 |
+
* ```jsx
|
7569 |
+
* <Transition in={this.state.in} timeout={150}>
|
7570 |
+
* {state => (
|
7571 |
+
* <MyComponent className={`fade fade-${state}`} />
|
7572 |
+
* )}
|
7573 |
+
* </Transition>
|
7574 |
+
* ```
|
7575 |
+
*/
|
7576 |
+
children: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func.isRequired, __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.element.isRequired]).isRequired,
|
7577 |
+
|
7578 |
+
/**
|
7579 |
+
* Show the component; triggers the enter or exit states
|
7580 |
+
*/
|
7581 |
+
in: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.bool,
|
7582 |
+
|
7583 |
+
/**
|
7584 |
+
* By default the child component is mounted immediately along with
|
7585 |
+
* the parent `Transition` component. If you want to "lazy mount" the component on the
|
7586 |
+
* first `in={true}` you can set `mountOnEnter`. After the first enter transition the component will stay
|
7587 |
+
* mounted, even on "exited", unless you also specify `unmountOnExit`.
|
7588 |
+
*/
|
7589 |
+
mountOnEnter: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.bool,
|
7590 |
+
|
7591 |
+
/**
|
7592 |
+
* By default the child component stays mounted after it reaches the `'exited'` state.
|
7593 |
+
* Set `unmountOnExit` if you'd prefer to unmount the component after it finishes exiting.
|
7594 |
+
*/
|
7595 |
+
unmountOnExit: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.bool,
|
7596 |
+
|
7597 |
+
/**
|
7598 |
+
* By default the child component does not perform the enter transition when
|
7599 |
+
* it first mounts, regardless of the value of `in`. If you want this
|
7600 |
+
* behavior, set both `appear` and `in` to `true`.
|
7601 |
+
*
|
7602 |
+
* > **Note**: there are no special appear states like `appearing`/`appeared`, this prop
|
7603 |
+
* > only adds an additional enter transition. However, in the
|
7604 |
+
* > `<CSSTransition>` component that first enter transition does result in
|
7605 |
+
* > additional `.appear-*` classes, that way you can choose to style it
|
7606 |
+
* > differently.
|
7607 |
+
*/
|
7608 |
+
appear: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.bool,
|
7609 |
+
|
7610 |
+
/**
|
7611 |
+
* Enable or disable enter transitions.
|
7612 |
+
*/
|
7613 |
+
enter: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.bool,
|
7614 |
+
|
7615 |
+
/**
|
7616 |
+
* Enable or disable exit transitions.
|
7617 |
+
*/
|
7618 |
+
exit: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.bool,
|
7619 |
+
|
7620 |
+
/**
|
7621 |
+
* The duration of the transition, in milliseconds.
|
7622 |
+
* Required unless `addEndListener` is provided.
|
7623 |
+
*
|
7624 |
+
* You may specify a single timeout for all transitions:
|
7625 |
+
*
|
7626 |
+
* ```jsx
|
7627 |
+
* timeout={500}
|
7628 |
+
* ```
|
7629 |
+
*
|
7630 |
+
* or individually:
|
7631 |
+
*
|
7632 |
+
* ```jsx
|
7633 |
+
* timeout={{
|
7634 |
+
* appear: 500,
|
7635 |
+
* enter: 300,
|
7636 |
+
* exit: 500,
|
7637 |
+
* }}
|
7638 |
+
* ```
|
7639 |
+
*
|
7640 |
+
* - `appear` defaults to the value of `enter`
|
7641 |
+
* - `enter` defaults to `0`
|
7642 |
+
* - `exit` defaults to `0`
|
7643 |
+
*
|
7644 |
+
* @type {number | { enter?: number, exit?: number, appear?: number }}
|
7645 |
+
*/
|
7646 |
+
timeout: function timeout(props) {
|
7647 |
+
var pt = __WEBPACK_IMPORTED_MODULE_6__utils_PropTypes__["b" /* timeoutsShape */];
|
7648 |
+
if (!props.addEndListener) pt = pt.isRequired;
|
7649 |
+
|
7650 |
+
for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
7651 |
+
args[_key - 1] = arguments[_key];
|
7652 |
+
}
|
7653 |
+
|
7654 |
+
return pt.apply(void 0, [props].concat(args));
|
7655 |
+
},
|
7656 |
+
|
7657 |
+
/**
|
7658 |
+
* Add a custom transition end trigger. Called with the transitioning
|
7659 |
+
* DOM node and a `done` callback. Allows for more fine grained transition end
|
7660 |
+
* logic. Timeouts are still used as a fallback if provided.
|
7661 |
+
*
|
7662 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
7663 |
+
*
|
7664 |
+
* ```jsx
|
7665 |
+
* addEndListener={(node, done) => {
|
7666 |
+
* // use the css transitionend event to mark the finish of a transition
|
7667 |
+
* node.addEventListener('transitionend', done, false);
|
7668 |
+
* }}
|
7669 |
+
* ```
|
7670 |
+
*/
|
7671 |
+
addEndListener: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func,
|
7672 |
+
|
7673 |
+
/**
|
7674 |
+
* Callback fired before the "entering" status is applied. An extra parameter
|
7675 |
+
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
|
7676 |
+
*
|
7677 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
7678 |
+
*
|
7679 |
+
* @type Function(node: HtmlElement, isAppearing: bool) -> void
|
7680 |
+
*/
|
7681 |
+
onEnter: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func,
|
7682 |
+
|
7683 |
+
/**
|
7684 |
+
* Callback fired after the "entering" status is applied. An extra parameter
|
7685 |
+
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
|
7686 |
+
*
|
7687 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
7688 |
+
*
|
7689 |
+
* @type Function(node: HtmlElement, isAppearing: bool)
|
7690 |
+
*/
|
7691 |
+
onEntering: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func,
|
7692 |
+
|
7693 |
+
/**
|
7694 |
+
* Callback fired after the "entered" status is applied. An extra parameter
|
7695 |
+
* `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount
|
7696 |
+
*
|
7697 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
7698 |
+
*
|
7699 |
+
* @type Function(node: HtmlElement, isAppearing: bool) -> void
|
7700 |
+
*/
|
7701 |
+
onEntered: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func,
|
7702 |
+
|
7703 |
+
/**
|
7704 |
+
* Callback fired before the "exiting" status is applied.
|
7705 |
+
*
|
7706 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
7707 |
+
*
|
7708 |
+
* @type Function(node: HtmlElement) -> void
|
7709 |
+
*/
|
7710 |
+
onExit: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func,
|
7711 |
+
|
7712 |
+
/**
|
7713 |
+
* Callback fired after the "exiting" status is applied.
|
7714 |
+
*
|
7715 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
7716 |
+
*
|
7717 |
+
* @type Function(node: HtmlElement) -> void
|
7718 |
+
*/
|
7719 |
+
onExiting: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func,
|
7720 |
+
|
7721 |
+
/**
|
7722 |
+
* Callback fired after the "exited" status is applied.
|
7723 |
+
*
|
7724 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed
|
7725 |
+
*
|
7726 |
+
* @type Function(node: HtmlElement) -> void
|
7727 |
+
*/
|
7728 |
+
onExited: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.func
|
7729 |
+
} : {}; // Name the function so it is clearer in the documentation
|
7730 |
+
|
7731 |
+
function noop() {}
|
7732 |
+
|
7733 |
+
Transition.defaultProps = {
|
7734 |
+
in: false,
|
7735 |
+
mountOnEnter: false,
|
7736 |
+
unmountOnExit: false,
|
7737 |
+
appear: false,
|
7738 |
+
enter: true,
|
7739 |
+
exit: true,
|
7740 |
+
onEnter: noop,
|
7741 |
+
onEntering: noop,
|
7742 |
+
onEntered: noop,
|
7743 |
+
onExit: noop,
|
7744 |
+
onExiting: noop,
|
7745 |
+
onExited: noop
|
7746 |
+
};
|
7747 |
+
Transition.UNMOUNTED = UNMOUNTED;
|
7748 |
+
Transition.EXITED = EXITED;
|
7749 |
+
Transition.ENTERING = ENTERING;
|
7750 |
+
Transition.ENTERED = ENTERED;
|
7751 |
+
Transition.EXITING = EXITING;
|
7752 |
+
/* harmony default export */ __webpack_exports__["d"] = (Transition);
|
7753 |
+
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
7754 |
+
|
7755 |
+
/***/ }),
|
7756 |
+
/* 106 */
|
7757 |
+
/*!***************************************************************************!*\
|
7758 |
+
!*** ./node_modules/react-transition-group/esm/TransitionGroupContext.js ***!
|
7759 |
+
\***************************************************************************/
|
7760 |
+
/*! exports provided: default */
|
7761 |
+
/*! exports used: default */
|
7762 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
7763 |
+
|
7764 |
+
"use strict";
|
7765 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 5);
|
7766 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
|
7767 |
+
|
7768 |
+
/* harmony default export */ __webpack_exports__["a"] = (__WEBPACK_IMPORTED_MODULE_0_react___default.a.createContext(null));
|
7769 |
+
|
7770 |
+
/***/ }),
|
7771 |
+
/* 107 */
|
7772 |
/*!**************************************************!*\
|
7773 |
!*** ./src/blocks/info-box/components/Prefix.js ***!
|
7774 |
\**************************************************/
|
7849 |
/* harmony default export */ __webpack_exports__["a"] = (Prefix);
|
7850 |
|
7851 |
/***/ }),
|
7852 |
+
/* 108 */
|
7853 |
/*!*************************************************!*\
|
7854 |
!*** ./src/blocks/info-box/components/Title.js ***!
|
7855 |
\*************************************************/
|
7929 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
7930 |
|
7931 |
/***/ }),
|
7932 |
+
/* 109 */
|
7933 |
/*!************************************************!*\
|
7934 |
!*** ./src/blocks/info-box/components/Icon.js ***!
|
7935 |
\************************************************/
|
7989 |
/* harmony default export */ __webpack_exports__["a"] = (Icon);
|
7990 |
|
7991 |
/***/ }),
|
7992 |
+
/* 110 */
|
7993 |
/*!*******************************************************!*\
|
7994 |
!*** ./src/blocks/info-box/components/InfoBoxDesc.js ***!
|
7995 |
\*******************************************************/
|
8068 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxDesc);
|
8069 |
|
8070 |
/***/ }),
|
8071 |
+
/* 111 */
|
8072 |
/*!****************************************!*\
|
8073 |
!*** ./src/blocks/info-box/classes.js ***!
|
8074 |
\****************************************/
|
8125 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxPositionClasses);
|
8126 |
|
8127 |
/***/ }),
|
8128 |
+
/* 112 */
|
8129 |
/*!************************************************************!*\
|
8130 |
!*** ./src/blocks/info-box/components/InfoBoxSeparator.js ***!
|
8131 |
\************************************************************/
|
8171 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxSeparator);
|
8172 |
|
8173 |
/***/ }),
|
8174 |
+
/* 113 */
|
8175 |
/*!********************************************************!*\
|
8176 |
!*** ./src/blocks/info-box/components/CallToAction.js ***!
|
8177 |
\********************************************************/
|
8315 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxCta);
|
8316 |
|
8317 |
/***/ }),
|
8318 |
+
/* 114 */
|
8319 |
/*!*********************************************************!*\
|
8320 |
!*** ./src/blocks/testimonial/components/AuthorName.js ***!
|
8321 |
\*********************************************************/
|
8405 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorName);
|
8406 |
|
8407 |
/***/ }),
|
8408 |
+
/* 115 */
|
8409 |
/*!******************************************************!*\
|
8410 |
!*** ./src/blocks/testimonial/components/Company.js ***!
|
8411 |
\******************************************************/
|
8496 |
/* harmony default export */ __webpack_exports__["a"] = (Company);
|
8497 |
|
8498 |
/***/ }),
|
8499 |
+
/* 116 */
|
8500 |
/*!**********************************************************!*\
|
8501 |
!*** ./src/blocks/testimonial/components/Description.js ***!
|
8502 |
\**********************************************************/
|
8587 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
8588 |
|
8589 |
/***/ }),
|
8590 |
+
/* 117 */
|
8591 |
/*!*******************************************!*\
|
8592 |
!*** ./src/blocks/testimonial/classes.js ***!
|
8593 |
\*******************************************/
|
8624 |
/* harmony default export */ __webpack_exports__["a"] = (PositionClasses);
|
8625 |
|
8626 |
/***/ }),
|
8627 |
+
/* 118 */
|
8628 |
/*!******************************************!*\
|
8629 |
!*** ./src/blocks/social-share/links.js ***!
|
8630 |
\******************************************/
|
8651 |
/* harmony default export */ __webpack_exports__["a"] = (links);
|
8652 |
|
8653 |
/***/ }),
|
8654 |
+
/* 119 */
|
8655 |
/*!*********************************************************!*\
|
8656 |
!*** ./src/blocks/price-list-child/components/Title.js ***!
|
8657 |
\*********************************************************/
|
8728 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
8729 |
|
8730 |
/***/ }),
|
8731 |
+
/* 120 */
|
8732 |
/*!*********************************************************!*\
|
8733 |
!*** ./src/blocks/price-list-child/components/Price.js ***!
|
8734 |
\*********************************************************/
|
8804 |
/* harmony default export */ __webpack_exports__["a"] = (Price);
|
8805 |
|
8806 |
/***/ }),
|
8807 |
+
/* 121 */
|
8808 |
/*!***************************************************************!*\
|
8809 |
!*** ./src/blocks/price-list-child/components/Description.js ***!
|
8810 |
\***************************************************************/
|
8880 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
8881 |
|
8882 |
/***/ }),
|
8883 |
+
/* 122 */
|
8884 |
/*!*****************************************************************!*\
|
8885 |
!*** ./src/blocks/price-list-child/components/RestMenuImage.js ***!
|
8886 |
\*****************************************************************/
|
8977 |
/* harmony default export */ __webpack_exports__["a"] = (RestMenuImage);
|
8978 |
|
8979 |
/***/ }),
|
8980 |
+
/* 123 */
|
8981 |
/*!****************************************!*\
|
8982 |
!*** ./src/blocks/timeline/style.scss ***!
|
8983 |
\****************************************/
|
8987 |
// removed by extract-text-webpack-plugin
|
8988 |
|
8989 |
/***/ }),
|
8990 |
+
/* 124 */
|
8991 |
/*!*******************************************************!*\
|
8992 |
!*** ./src/blocks/call-to-action/components/Title.js ***!
|
8993 |
\*******************************************************/
|
9065 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
9066 |
|
9067 |
/***/ }),
|
9068 |
+
/* 125 */
|
9069 |
/*!*************************************************************!*\
|
9070 |
!*** ./src/blocks/call-to-action/components/Description.js ***!
|
9071 |
\*************************************************************/
|
9142 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
9143 |
|
9144 |
/***/ }),
|
9145 |
+
/* 126 */
|
9146 |
/*!**********************************************!*\
|
9147 |
!*** ./src/blocks/call-to-action/classes.js ***!
|
9148 |
\**********************************************/
|
9184 |
/* harmony default export */ __webpack_exports__["a"] = (CtaPositionClasses);
|
9185 |
|
9186 |
/***/ }),
|
9187 |
+
/* 127 */
|
9188 |
/*!*****************************************************!*\
|
9189 |
!*** ./src/blocks/call-to-action/components/CTA.js ***!
|
9190 |
\*****************************************************/
|
9285 |
/* harmony default export */ __webpack_exports__["a"] = (CTA);
|
9286 |
|
9287 |
/***/ }),
|
9288 |
+
/* 128 */
|
9289 |
/*!**************************************!*\
|
9290 |
!*** ./src/blocks/columns/shapes.js ***!
|
9291 |
\**************************************/
|
9320 |
/* harmony default export */ __webpack_exports__["a"] = (shapes);
|
9321 |
|
9322 |
/***/ }),
|
9323 |
+
/* 129 */
|
9324 |
/*!************************************************************!*\
|
9325 |
!*** ./src/blocks/blockquote/components/TweetButtonCTA.js ***!
|
9326 |
\************************************************************/
|
9394 |
/* harmony default export */ __webpack_exports__["a"] = (TweetButtonCTA);
|
9395 |
|
9396 |
/***/ }),
|
9397 |
+
/* 130 */
|
9398 |
/*!*********************************************************!*\
|
9399 |
!*** ./src/blocks/blockquote/components/Description.js ***!
|
9400 |
\*********************************************************/
|
9471 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
9472 |
|
9473 |
/***/ }),
|
9474 |
+
/* 131 */
|
9475 |
/*!********************************************************!*\
|
9476 |
!*** ./src/blocks/blockquote/components/AuthorText.js ***!
|
9477 |
\********************************************************/
|
9548 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorText);
|
9549 |
|
9550 |
/***/ }),
|
9551 |
+
/* 132 */
|
9552 |
/*!*********************************************************!*\
|
9553 |
!*** ./src/blocks/blockquote/components/AuthorImage.js ***!
|
9554 |
\*********************************************************/
|
9617 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorImage);
|
9618 |
|
9619 |
/***/ }),
|
9620 |
+
/* 133 */
|
9621 |
/*!***************************************************************!*\
|
9622 |
!*** ./node_modules/core-js/library/modules/_to-primitive.js ***!
|
9623 |
\***************************************************************/
|
9640 |
|
9641 |
|
9642 |
/***/ }),
|
9643 |
+
/* 134 */
|
9644 |
/*!**********************************************************!*\
|
9645 |
!*** ./node_modules/core-js/library/modules/_defined.js ***!
|
9646 |
\**********************************************************/
|
9656 |
|
9657 |
|
9658 |
/***/ }),
|
9659 |
+
/* 135 */
|
9660 |
/*!*************************************************************!*\
|
9661 |
!*** ./node_modules/core-js/library/modules/_to-integer.js ***!
|
9662 |
\*************************************************************/
|
9673 |
|
9674 |
|
9675 |
/***/ }),
|
9676 |
+
/* 136 */
|
9677 |
/*!*************************************************************!*\
|
9678 |
!*** ./node_modules/core-js/library/modules/_shared-key.js ***!
|
9679 |
\*************************************************************/
|
9681 |
/*! all exports used */
|
9682 |
/***/ (function(module, exports, __webpack_require__) {
|
9683 |
|
9684 |
+
var shared = __webpack_require__(/*! ./_shared */ 137)('keys');
|
9685 |
+
var uid = __webpack_require__(/*! ./_uid */ 72);
|
9686 |
module.exports = function (key) {
|
9687 |
return shared[key] || (shared[key] = uid(key));
|
9688 |
};
|
9689 |
|
9690 |
|
9691 |
/***/ }),
|
9692 |
+
/* 137 */
|
9693 |
/*!*********************************************************!*\
|
9694 |
!*** ./node_modules/core-js/library/modules/_shared.js ***!
|
9695 |
\*********************************************************/
|
9697 |
/*! all exports used */
|
9698 |
/***/ (function(module, exports, __webpack_require__) {
|
9699 |
|
9700 |
+
var core = __webpack_require__(/*! ./_core */ 17);
|
9701 |
var global = __webpack_require__(/*! ./_global */ 20);
|
9702 |
var SHARED = '__core-js_shared__';
|
9703 |
var store = global[SHARED] || (global[SHARED] = {});
|
9706 |
return store[key] || (store[key] = value !== undefined ? value : {});
|
9707 |
})('versions', []).push({
|
9708 |
version: core.version,
|
9709 |
+
mode: __webpack_require__(/*! ./_library */ 71) ? 'pure' : 'global',
|
9710 |
copyright: '© 2018 Denis Pushkarev (zloirock.ru)'
|
9711 |
});
|
9712 |
|
9713 |
|
9714 |
/***/ }),
|
9715 |
+
/* 138 */
|
9716 |
/*!****************************************************************!*\
|
9717 |
!*** ./node_modules/core-js/library/modules/_enum-bug-keys.js ***!
|
9718 |
\****************************************************************/
|
9727 |
|
9728 |
|
9729 |
/***/ }),
|
9730 |
+
/* 139 */
|
9731 |
/*!**************************************************************!*\
|
9732 |
!*** ./node_modules/core-js/library/modules/_object-gops.js ***!
|
9733 |
\**************************************************************/
|
9739 |
|
9740 |
|
9741 |
/***/ }),
|
9742 |
+
/* 140 */
|
9743 |
/*!************************************************************!*\
|
9744 |
!*** ./node_modules/core-js/library/modules/_to-object.js ***!
|
9745 |
\************************************************************/
|
9748 |
/***/ (function(module, exports, __webpack_require__) {
|
9749 |
|
9750 |
// 7.1.13 ToObject(argument)
|
9751 |
+
var defined = __webpack_require__(/*! ./_defined */ 134);
|
9752 |
module.exports = function (it) {
|
9753 |
return Object(defined(it));
|
9754 |
};
|
9755 |
|
9756 |
|
9757 |
/***/ }),
|
9758 |
+
/* 141 */
|
9759 |
/*!************************************************************!*\
|
9760 |
!*** ./node_modules/core-js/library/modules/_iterators.js ***!
|
9761 |
\************************************************************/
|
9767 |
|
9768 |
|
9769 |
/***/ }),
|
9770 |
+
/* 142 */
|
9771 |
/*!****************************************************************!*\
|
9772 |
!*** ./node_modules/core-js/library/modules/_object-create.js ***!
|
9773 |
\****************************************************************/
|
9776 |
/***/ (function(module, exports, __webpack_require__) {
|
9777 |
|
9778 |
// 19.1.2.2 / 15.2.3.5 Object.create(O [, Properties])
|
9779 |
+
var anObject = __webpack_require__(/*! ./_an-object */ 44);
|
9780 |
+
var dPs = __webpack_require__(/*! ./_object-dps */ 844);
|
9781 |
+
var enumBugKeys = __webpack_require__(/*! ./_enum-bug-keys */ 138);
|
9782 |
+
var IE_PROTO = __webpack_require__(/*! ./_shared-key */ 136)('IE_PROTO');
|
9783 |
var Empty = function () { /* empty */ };
|
9784 |
var PROTOTYPE = 'prototype';
|
9785 |
|
9786 |
// Create object with fake `null` prototype: use iframe Object with cleared prototype
|
9787 |
var createDict = function () {
|
9788 |
// Thrash, waste and sodomy: IE GC bug
|
9789 |
+
var iframe = __webpack_require__(/*! ./_dom-create */ 243)('iframe');
|
9790 |
var i = enumBugKeys.length;
|
9791 |
var lt = '<';
|
9792 |
var gt = '>';
|
9793 |
var iframeDocument;
|
9794 |
iframe.style.display = 'none';
|
9795 |
+
__webpack_require__(/*! ./_html */ 845).appendChild(iframe);
|
9796 |
iframe.src = 'javascript:'; // eslint-disable-line no-script-url
|
9797 |
// createDict = iframe.contentWindow.Object;
|
9798 |
// html.removeChild(iframe);
|
9819 |
|
9820 |
|
9821 |
/***/ }),
|
9822 |
+
/* 143 */
|
9823 |
/*!********************************************************************!*\
|
9824 |
!*** ./node_modules/core-js/library/modules/_set-to-string-tag.js ***!
|
9825 |
\********************************************************************/
|
9837 |
|
9838 |
|
9839 |
/***/ }),
|
9840 |
+
/* 144 */
|
9841 |
/*!**********************************************************!*\
|
9842 |
!*** ./node_modules/core-js/library/modules/_wks-ext.js ***!
|
9843 |
\**********************************************************/
|
9849 |
|
9850 |
|
9851 |
/***/ }),
|
9852 |
+
/* 145 */
|
9853 |
/*!*************************************************************!*\
|
9854 |
!*** ./node_modules/core-js/library/modules/_wks-define.js ***!
|
9855 |
\*************************************************************/
|
9858 |
/***/ (function(module, exports, __webpack_require__) {
|
9859 |
|
9860 |
var global = __webpack_require__(/*! ./_global */ 20);
|
9861 |
+
var core = __webpack_require__(/*! ./_core */ 17);
|
9862 |
+
var LIBRARY = __webpack_require__(/*! ./_library */ 71);
|
9863 |
+
var wksExt = __webpack_require__(/*! ./_wks-ext */ 144);
|
9864 |
var defineProperty = __webpack_require__(/*! ./_object-dp */ 24).f;
|
9865 |
module.exports = function (name) {
|
9866 |
var $Symbol = core.Symbol || (core.Symbol = LIBRARY ? {} : global.Symbol || {});
|
9869 |
|
9870 |
|
9871 |
/***/ }),
|
9872 |
+
/* 146 */
|
9873 |
/*!***************************************************!*\
|
9874 |
!*** ./src/blocks/advanced-heading/attributes.js ***!
|
9875 |
\***************************************************/
|
10026 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
10027 |
|
10028 |
/***/ }),
|
10029 |
+
/* 147 */
|
10030 |
/*!**********************************************!*\
|
10031 |
!*** ./node_modules/lodash/_baseIteratee.js ***!
|
10032 |
\**********************************************/
|
10034 |
/*! all exports used */
|
10035 |
/***/ (function(module, exports, __webpack_require__) {
|
10036 |
|
10037 |
+
var baseMatches = __webpack_require__(/*! ./_baseMatches */ 259),
|
10038 |
+
baseMatchesProperty = __webpack_require__(/*! ./_baseMatchesProperty */ 310),
|
10039 |
+
identity = __webpack_require__(/*! ./identity */ 58),
|
10040 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
10041 |
+
property = __webpack_require__(/*! ./property */ 317);
|
10042 |
|
10043 |
/**
|
10044 |
* The base implementation of `_.iteratee`.
|
10068 |
|
10069 |
|
10070 |
/***/ }),
|
10071 |
+
/* 148 */
|
10072 |
/*!*******************************************!*\
|
10073 |
!*** ./node_modules/lodash/isFunction.js ***!
|
10074 |
\*******************************************/
|
10116 |
|
10117 |
|
10118 |
/***/ }),
|
10119 |
+
/* 149 */
|
10120 |
/*!********************************************!*\
|
10121 |
!*** ./node_modules/lodash/_freeGlobal.js ***!
|
10122 |
\********************************************/
|
10129 |
|
10130 |
module.exports = freeGlobal;
|
10131 |
|
10132 |
+
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 76)))
|
10133 |
|
10134 |
/***/ }),
|
10135 |
+
/* 150 */
|
10136 |
/*!******************************************!*\
|
10137 |
!*** ./node_modules/lodash/_toSource.js ***!
|
10138 |
\******************************************/
|
10169 |
|
10170 |
|
10171 |
/***/ }),
|
10172 |
+
/* 151 */
|
10173 |
/*!*********************************************!*\
|
10174 |
!*** ./node_modules/lodash/_baseIsEqual.js ***!
|
10175 |
\*********************************************/
|
10177 |
/*! all exports used */
|
10178 |
/***/ (function(module, exports, __webpack_require__) {
|
10179 |
|
10180 |
+
var baseIsEqualDeep = __webpack_require__(/*! ./_baseIsEqualDeep */ 289),
|
10181 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
10182 |
|
10183 |
/**
|
10208 |
|
10209 |
|
10210 |
/***/ }),
|
10211 |
+
/* 152 */
|
10212 |
/*!*********************************************!*\
|
10213 |
!*** ./node_modules/lodash/_equalArrays.js ***!
|
10214 |
\*********************************************/
|
10216 |
/*! all exports used */
|
10217 |
/***/ (function(module, exports, __webpack_require__) {
|
10218 |
|
10219 |
+
var SetCache = __webpack_require__(/*! ./_SetCache */ 290),
|
10220 |
+
arraySome = __webpack_require__(/*! ./_arraySome */ 293),
|
10221 |
+
cacheHas = __webpack_require__(/*! ./_cacheHas */ 294);
|
10222 |
|
10223 |
/** Used to compose bitmasks for value comparisons. */
|
10224 |
var COMPARE_PARTIAL_FLAG = 1,
|
10302 |
|
10303 |
|
10304 |
/***/ }),
|
10305 |
+
/* 153 */
|
10306 |
/*!********************************************!*\
|
10307 |
!*** ./node_modules/lodash/_Uint8Array.js ***!
|
10308 |
\********************************************/
|
10319 |
|
10320 |
|
10321 |
/***/ }),
|
10322 |
+
/* 154 */
|
10323 |
/*!********************************************!*\
|
10324 |
!*** ./node_modules/lodash/_getAllKeys.js ***!
|
10325 |
\********************************************/
|
10327 |
/*! all exports used */
|
10328 |
/***/ (function(module, exports, __webpack_require__) {
|
10329 |
|
10330 |
+
var baseGetAllKeys = __webpack_require__(/*! ./_baseGetAllKeys */ 155),
|
10331 |
+
getSymbols = __webpack_require__(/*! ./_getSymbols */ 79),
|
10332 |
keys = __webpack_require__(/*! ./keys */ 28);
|
10333 |
|
10334 |
/**
|
10346 |
|
10347 |
|
10348 |
/***/ }),
|
10349 |
+
/* 155 */
|
10350 |
/*!************************************************!*\
|
10351 |
!*** ./node_modules/lodash/_baseGetAllKeys.js ***!
|
10352 |
\************************************************/
|
10354 |
/*! all exports used */
|
10355 |
/***/ (function(module, exports, __webpack_require__) {
|
10356 |
|
10357 |
+
var arrayPush = __webpack_require__(/*! ./_arrayPush */ 78),
|
10358 |
isArray = __webpack_require__(/*! ./isArray */ 14);
|
10359 |
|
10360 |
/**
|
10377 |
|
10378 |
|
10379 |
/***/ }),
|
10380 |
+
/* 156 */
|
10381 |
/*!******************************************!*\
|
10382 |
!*** ./node_modules/lodash/stubArray.js ***!
|
10383 |
\******************************************/
|
10411 |
|
10412 |
|
10413 |
/***/ }),
|
10414 |
+
/* 157 */
|
10415 |
/*!***********************************************!*\
|
10416 |
!*** ./node_modules/lodash/_arrayLikeKeys.js ***!
|
10417 |
\***********************************************/
|
10419 |
/*! all exports used */
|
10420 |
/***/ (function(module, exports, __webpack_require__) {
|
10421 |
|
10422 |
+
var baseTimes = __webpack_require__(/*! ./_baseTimes */ 158),
|
10423 |
+
isArguments = __webpack_require__(/*! ./isArguments */ 80),
|
10424 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
10425 |
+
isBuffer = __webpack_require__(/*! ./isBuffer */ 81),
|
10426 |
+
isIndex = __webpack_require__(/*! ./_isIndex */ 51),
|
10427 |
+
isTypedArray = __webpack_require__(/*! ./isTypedArray */ 159);
|
10428 |
|
10429 |
/** Used for built-in method references. */
|
10430 |
var objectProto = Object.prototype;
|
10471 |
|
10472 |
|
10473 |
/***/ }),
|
10474 |
+
/* 158 */
|
10475 |
/*!*******************************************!*\
|
10476 |
!*** ./node_modules/lodash/_baseTimes.js ***!
|
10477 |
\*******************************************/
|
10502 |
|
10503 |
|
10504 |
/***/ }),
|
10505 |
+
/* 159 */
|
10506 |
/*!*********************************************!*\
|
10507 |
!*** ./node_modules/lodash/isTypedArray.js ***!
|
10508 |
\*********************************************/
|
10510 |
/*! all exports used */
|
10511 |
/***/ (function(module, exports, __webpack_require__) {
|
10512 |
|
10513 |
+
var baseIsTypedArray = __webpack_require__(/*! ./_baseIsTypedArray */ 302),
|
10514 |
+
baseUnary = __webpack_require__(/*! ./_baseUnary */ 52),
|
10515 |
+
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 53);
|
10516 |
|
10517 |
/* Node.js helper references. */
|
10518 |
var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
|
10540 |
|
10541 |
|
10542 |
/***/ }),
|
10543 |
+
/* 160 */
|
10544 |
/*!*****************************************!*\
|
10545 |
!*** ./node_modules/lodash/_overArg.js ***!
|
10546 |
\*****************************************/
|
10566 |
|
10567 |
|
10568 |
/***/ }),
|
10569 |
+
/* 161 */
|
10570 |
/*!****************************************************!*\
|
10571 |
!*** ./node_modules/lodash/_isStrictComparable.js ***!
|
10572 |
\****************************************************/
|
10592 |
|
10593 |
|
10594 |
/***/ }),
|
10595 |
+
/* 162 */
|
10596 |
/*!*********************************************************!*\
|
10597 |
!*** ./node_modules/lodash/_matchesStrictComparable.js ***!
|
10598 |
\*********************************************************/
|
10623 |
|
10624 |
|
10625 |
/***/ }),
|
10626 |
+
/* 163 */
|
10627 |
/*!************************************!*\
|
10628 |
!*** ./node_modules/lodash/get.js ***!
|
10629 |
\************************************/
|
10631 |
/*! all exports used */
|
10632 |
/***/ (function(module, exports, __webpack_require__) {
|
10633 |
|
10634 |
+
var baseGet = __webpack_require__(/*! ./_baseGet */ 56);
|
10635 |
|
10636 |
/**
|
10637 |
* Gets the value at `path` of `object`. If the resolved value is
|
10667 |
|
10668 |
|
10669 |
/***/ }),
|
10670 |
+
/* 164 */
|
10671 |
/*!*****************************************!*\
|
10672 |
!*** ./node_modules/lodash/toString.js ***!
|
10673 |
\*****************************************/
|
10675 |
/*! all exports used */
|
10676 |
/***/ (function(module, exports, __webpack_require__) {
|
10677 |
|
10678 |
+
var baseToString = __webpack_require__(/*! ./_baseToString */ 165);
|
10679 |
|
10680 |
/**
|
10681 |
* Converts `value` to a string. An empty string is returned for `null`
|
10706 |
|
10707 |
|
10708 |
/***/ }),
|
10709 |
+
/* 165 */
|
10710 |
/*!**********************************************!*\
|
10711 |
!*** ./node_modules/lodash/_baseToString.js ***!
|
10712 |
\**********************************************/
|
10715 |
/***/ (function(module, exports, __webpack_require__) {
|
10716 |
|
10717 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 27),
|
10718 |
+
arrayMap = __webpack_require__(/*! ./_arrayMap */ 45),
|
10719 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
10720 |
+
isSymbol = __webpack_require__(/*! ./isSymbol */ 57);
|
10721 |
|
10722 |
/** Used as references for various `Number` constants. */
|
10723 |
var INFINITY = 1 / 0;
|
10754 |
|
10755 |
|
10756 |
/***/ }),
|
10757 |
+
/* 166 */
|
10758 |
/*!**********************************************!*\
|
10759 |
!*** ./node_modules/lodash/_baseProperty.js ***!
|
10760 |
\**********************************************/
|
10779 |
|
10780 |
|
10781 |
/***/ }),
|
10782 |
+
/* 167 */
|
10783 |
/*!*****************************************************************************************************!*\
|
10784 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***!
|
10785 |
\*****************************************************************************************************/
|
10787 |
/*! all exports used */
|
10788 |
/***/ (function(module, exports, __webpack_require__) {
|
10789 |
|
10790 |
+
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ 168);
|
10791 |
|
10792 |
function _unsupportedIterableToArray(o, minLen) {
|
10793 |
if (!o) return;
|
10799 |
}
|
10800 |
|
10801 |
module.exports = _unsupportedIterableToArray;
|
10802 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
10803 |
|
10804 |
/***/ }),
|
10805 |
+
/* 168 */
|
10806 |
/*!*******************************************************************************************!*\
|
10807 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***!
|
10808 |
\*******************************************************************************************/
|
10821 |
}
|
10822 |
|
10823 |
module.exports = _arrayLikeToArray;
|
10824 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
10825 |
|
10826 |
/***/ }),
|
10827 |
+
/* 169 */
|
10828 |
+
/*!*********************************************************************************!*\
|
10829 |
+
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/typeof.js ***!
|
10830 |
+
\*********************************************************************************/
|
10831 |
+
/*! dynamic exports provided */
|
10832 |
/*! exports used: default */
|
10833 |
+
/***/ (function(module, exports) {
|
10834 |
|
|
|
|
|
10835 |
function _typeof(obj) {
|
10836 |
"@babel/helpers - typeof";
|
10837 |
|
10838 |
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
10839 |
+
module.exports = _typeof = function _typeof(obj) {
|
10840 |
return typeof obj;
|
10841 |
};
|
10842 |
+
|
10843 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
10844 |
} else {
|
10845 |
+
module.exports = _typeof = function _typeof(obj) {
|
10846 |
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
10847 |
};
|
10848 |
+
|
10849 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
10850 |
}
|
10851 |
|
10852 |
return _typeof(obj);
|
10853 |
}
|
10854 |
|
10855 |
+
module.exports = _typeof;
|
10856 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
10857 |
+
|
10858 |
/***/ }),
|
10859 |
+
/* 170 */
|
10860 |
/*!****************************************************************************************************!*\
|
10861 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js ***!
|
10862 |
\****************************************************************************************************/
|
10875 |
}
|
10876 |
|
10877 |
/***/ }),
|
10878 |
+
/* 171 */
|
10879 |
/*!************************************************************************************!*\
|
10880 |
!*** ./node_modules/react-select/node_modules/memoize-one/dist/memoize-one.esm.js ***!
|
10881 |
\************************************************************************************/
|
10923 |
|
10924 |
|
10925 |
/***/ }),
|
10926 |
+
/* 172 */
|
10927 |
/*!***************************************************************!*\
|
10928 |
!*** ./node_modules/@emotion/sheet/dist/sheet.browser.esm.js ***!
|
10929 |
\***************************************************************/
|
11072 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 6)))
|
11073 |
|
11074 |
/***/ }),
|
11075 |
+
/* 173 */
|
11076 |
/*!*********************************************************************************!*\
|
11077 |
!*** ./node_modules/@emotion/core/dist/emotion-element-57a3a7a3.browser.esm.js ***!
|
11078 |
\*********************************************************************************/
|
11087 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return createEmotionProps; });
|
11088 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return hasOwnProperty; });
|
11089 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "f", function() { return withEmotionCache; });
|
11090 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/inheritsLoose */ 347);
|
11091 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__);
|
11092 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 5);
|
11093 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
11094 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_cache__ = __webpack_require__(/*! @emotion/cache */ 88);
|
11095 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__emotion_utils__ = __webpack_require__(/*! @emotion/utils */ 174);
|
11096 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */ 89);
|
11097 |
|
11098 |
|
11099 |
|
11234 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 6)))
|
11235 |
|
11236 |
/***/ }),
|
11237 |
+
/* 174 */
|
11238 |
/*!***************************************************************!*\
|
11239 |
!*** ./node_modules/@emotion/utils/dist/utils.browser.esm.js ***!
|
11240 |
\***************************************************************/
|
11288 |
|
11289 |
|
11290 |
/***/ }),
|
11291 |
+
/* 175 */
|
11292 |
/*!*****************************************!*\
|
11293 |
!*** ./node_modules/scheduler/index.js ***!
|
11294 |
\*****************************************/
|
11300 |
/* WEBPACK VAR INJECTION */(function(process) {
|
11301 |
|
11302 |
if (process.env.NODE_ENV === 'production') {
|
11303 |
+
module.exports = __webpack_require__(/*! ./cjs/scheduler.production.min.js */ 353);
|
11304 |
} else {
|
11305 |
+
module.exports = __webpack_require__(/*! ./cjs/scheduler.development.js */ 354);
|
11306 |
}
|
11307 |
|
11308 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
11309 |
|
11310 |
/***/ }),
|
11311 |
+
/* 176 */
|
11312 |
/*!**********************************************************************!*\
|
11313 |
+
!*** ./node_modules/react-select/dist/index-75b02bac.browser.esm.js ***!
|
11314 |
\**********************************************************************/
|
11315 |
/*! exports provided: A, B, C, D, E, F, G, M, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z */
|
11316 |
/*! exports used: A, B, C, D, E, M, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z */
|
11317 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
11318 |
|
11319 |
"use strict";
|
11320 |
+
/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return isDocumentElement; });
|
11321 |
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return exportedEqual; });
|
11322 |
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return cleanValue; });
|
11323 |
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return scrollIntoView; });
|
11324 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "e", function() { return noop; });
|
11325 |
/* unused harmony export F */
|
11326 |
/* unused harmony export G */
|
11350 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "C", function() { return isTouchCapable; });
|
11351 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "D", function() { return isMobileDevice; });
|
11352 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "E", function() { return defaultComponents; });
|
11353 |
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "F", function() { return classNames; });
|
11354 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutProperties__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutProperties */ 90);
|
11355 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ 91);
|
11356 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_esm_defineProperty__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */ 177);
|
11357 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_esm_classCallCheck__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ 59);
|
11358 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_esm_createClass__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ 60);
|
11359 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__babel_runtime_helpers_esm_inherits__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */ 61);
|
11360 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__babel_runtime_helpers_esm_possibleConstructorReturn__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */ 62);
|
11361 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_esm_getPrototypeOf__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */ 63);
|
11362 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react__ = __webpack_require__(/*! react */ 5);
|
11363 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_react__);
|
11364 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__emotion_core__ = __webpack_require__(/*! @emotion/core */ 87);
|
11365 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10_react_dom__ = __webpack_require__(/*! react-dom */ 33);
|
11366 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_10_react_dom__);
|
11367 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__babel_runtime_helpers_esm_typeof__ = __webpack_require__(/*! @babel/runtime/helpers/esm/typeof */ 360);
|
11368 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__emotion_css__ = __webpack_require__(/*! @emotion/css */ 41);
|
11369 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__babel_runtime_helpers_esm_taggedTemplateLiteral__ = __webpack_require__(/*! @babel/runtime/helpers/esm/taggedTemplateLiteral */ 361);
|
11370 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */ 178);
|
11371 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_14_react_input_autosize__);
|
11372 |
|
11373 |
|
11892 |
cx = props.cx,
|
11893 |
getStyles = props.getStyles,
|
11894 |
isMulti = props.isMulti,
|
11895 |
+
innerRef = props.innerRef,
|
11896 |
+
innerProps = props.innerProps;
|
11897 |
+
return Object(__WEBPACK_IMPORTED_MODULE_9__emotion_core__["c" /* jsx */])("div", Object(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__["a" /* default */])({
|
11898 |
css: getStyles('menuList', props),
|
11899 |
className: cx({
|
11900 |
'menu-list': true,
|
11901 |
'menu-list--is-multi': isMulti
|
11902 |
}, className),
|
11903 |
ref: innerRef
|
11904 |
+
}, innerProps), children);
|
11905 |
}; // ==============================
|
11906 |
// Menu Notices
|
11907 |
// ==============================
|
12858 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
12859 |
|
12860 |
/***/ }),
|
12861 |
+
/* 177 */
|
12862 |
/*!*********************************************************************************************!*\
|
12863 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
12864 |
\*********************************************************************************************/
|
12884 |
}
|
12885 |
|
12886 |
/***/ }),
|
12887 |
+
/* 178 */
|
12888 |
/*!****************************************************************!*\
|
12889 |
!*** ./node_modules/react-input-autosize/lib/AutosizeInput.js ***!
|
12890 |
\****************************************************************/
|
12960 |
var AutosizeInput = function (_Component) {
|
12961 |
_inherits(AutosizeInput, _Component);
|
12962 |
|
12963 |
+
_createClass(AutosizeInput, null, [{
|
12964 |
+
key: 'getDerivedStateFromProps',
|
12965 |
+
value: function getDerivedStateFromProps(props, state) {
|
12966 |
+
var id = props.id;
|
12967 |
+
|
12968 |
+
return id !== state.prevId ? { inputId: id || generateId(), prevId: id } : null;
|
12969 |
+
}
|
12970 |
+
}]);
|
12971 |
+
|
12972 |
function AutosizeInput(props) {
|
12973 |
_classCallCheck(this, AutosizeInput);
|
12974 |
|
12991 |
|
12992 |
_this.state = {
|
12993 |
inputWidth: props.minWidth,
|
12994 |
+
inputId: props.id || generateId(),
|
12995 |
+
prevId: props.id
|
12996 |
};
|
12997 |
return _this;
|
12998 |
}
|
13004 |
this.copyInputStyles();
|
13005 |
this.updateInputWidth();
|
13006 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13007 |
}, {
|
13008 |
key: 'componentDidUpdate',
|
13009 |
value: function componentDidUpdate(prevProps, prevState) {
|
13164 |
exports.default = AutosizeInput;
|
13165 |
|
13166 |
/***/ }),
|
13167 |
+
/* 179 */
|
13168 |
/*!****************************************!*\
|
13169 |
!*** ./node_modules/react-is/index.js ***!
|
13170 |
\****************************************/
|
13176 |
/* WEBPACK VAR INJECTION */(function(process) {
|
13177 |
|
13178 |
if (process.env.NODE_ENV === 'production') {
|
13179 |
+
module.exports = __webpack_require__(/*! ./cjs/react-is.production.min.js */ 362);
|
13180 |
} else {
|
13181 |
+
module.exports = __webpack_require__(/*! ./cjs/react-is.development.js */ 363);
|
13182 |
}
|
13183 |
|
13184 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
13185 |
|
13186 |
/***/ }),
|
13187 |
+
/* 180 */
|
13188 |
/*!***********************************************************************!*\
|
13189 |
+
!*** ./node_modules/react-select/dist/Select-e1cf49ae.browser.esm.js ***!
|
13190 |
\***********************************************************************/
|
13191 |
/*! exports provided: S, a, c, d, m */
|
13192 |
/*! exports used: S */
|
13198 |
/* unused harmony export c */
|
13199 |
/* unused harmony export d */
|
13200 |
/* unused harmony export m */
|
13201 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutProperties__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutProperties */ 90);
|
13202 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ 91);
|
13203 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_esm_slicedToArray__ = __webpack_require__(/*! @babel/runtime/helpers/esm/slicedToArray */ 366);
|
13204 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_esm_toConsumableArray__ = __webpack_require__(/*! @babel/runtime/helpers/esm/toConsumableArray */ 370);
|
13205 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_esm_defineProperty__ = __webpack_require__(/*! @babel/runtime/helpers/esm/defineProperty */ 177);
|
13206 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__babel_runtime_helpers_esm_classCallCheck__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ 59);
|
13207 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__babel_runtime_helpers_esm_createClass__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ 60);
|
13208 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_esm_assertThisInitialized__ = __webpack_require__(/*! @babel/runtime/helpers/esm/assertThisInitialized */ 170);
|
13209 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__babel_runtime_helpers_esm_inherits__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */ 61);
|
13210 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__babel_runtime_helpers_esm_possibleConstructorReturn__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */ 62);
|
13211 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__babel_runtime_helpers_esm_getPrototypeOf__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */ 63);
|
13212 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11_react__ = __webpack_require__(/*! react */ 5);
|
13213 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_11_react__);
|
13214 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12_memoize_one__ = __webpack_require__(/*! memoize-one */ 171);
|
13215 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__emotion_core__ = __webpack_require__(/*! @emotion/core */ 87);
|
13216 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_dom__ = __webpack_require__(/*! react-dom */ 33);
|
13217 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_14_react_dom__);
|
13218 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__ = __webpack_require__(/*! ./index-75b02bac.browser.esm.js */ 176);
|
13219 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__emotion_css__ = __webpack_require__(/*! @emotion/css */ 41);
|
13220 |
|
13221 |
|
13559 |
} : {
|
13560 |
name: "1laao21-a11yText",
|
13561 |
styles: "label:a11yText;z-index:9999;border:0;clip:rect(1px, 1px, 1px, 1px);height:1px;width:1px;position:absolute;overflow:hidden;padding:0;white-space:nowrap;",
|
13562 |
+
map: "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIkExMXlUZXh0LmpzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQVFJIiwiZmlsZSI6IkExMXlUZXh0LmpzIiwic291cmNlc0NvbnRlbnQiOlsiLy8gQGZsb3dcbi8qKiBAanN4IGpzeCAqL1xuaW1wb3J0IHsgdHlwZSBFbGVtZW50Q29uZmlnIH0gZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsganN4IH0gZnJvbSAnQGVtb3Rpb24vY29yZSc7XG5cbi8vIEFzc2lzdGl2ZSB0ZXh0IHRvIGRlc2NyaWJlIHZpc3VhbCBlbGVtZW50cy4gSGlkZGVuIGZvciBzaWdodGVkIHVzZXJzLlxuY29uc3QgQTExeVRleHQgPSAocHJvcHM6IEVsZW1lbnRDb25maWc8J3NwYW4nPikgPT4gKFxuICA8c3BhblxuICAgIGNzcz17e1xuICAgICAgbGFiZWw6ICdhMTF5VGV4dCcsXG4gICAgICB6SW5kZXg6IDk5OTksXG4gICAgICBib3JkZXI6IDAsXG4gICAgICBjbGlwOiAncmVjdCgxcHgsIDFweCwgMXB4LCAxcHgpJyxcbiAgICAgIGhlaWdodDogMSxcbiAgICAgIHdpZHRoOiAxLFxuICAgICAgcG9zaXRpb246ICdhYnNvbHV0ZScsXG4gICAgICBvdmVyZmxvdzogJ2hpZGRlbicsXG4gICAgICBwYWRkaW5nOiAwLFxuICAgICAgd2hpdGVTcGFjZTogJ25vd3JhcCcsXG4gICAgfX1cbiAgICB7Li4ucHJvcHN9XG4gIC8+XG4pO1xuXG5leHBvcnQgZGVmYXVsdCBBMTF5VGV4dDtcbiJdfQ== */",
|
13563 |
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
13564 |
};
|
13565 |
|
14024 |
}, {
|
14025 |
key: "stopListening",
|
14026 |
value: function stopListening(el) {
|
14027 |
+
if (!el) return; // all the if statements are to appease Flow 😢
|
14028 |
+
|
14029 |
if (typeof el.removeEventListener === 'function') {
|
14030 |
el.removeEventListener('wheel', this.onWheel, false);
|
14031 |
}
|
14063 |
var isSearchable = context.isSearchable,
|
14064 |
isMulti = context.isMulti,
|
14065 |
label = context.label,
|
14066 |
+
isDisabled = context.isDisabled,
|
14067 |
+
tabSelectsValue = context.tabSelectsValue;
|
14068 |
|
14069 |
switch (event) {
|
14070 |
case 'menu':
|
14071 |
+
return "Use Up and Down to choose options".concat(isDisabled ? '' : ', press Enter to select the currently focused option', ", press Escape to exit the menu").concat(tabSelectsValue ? ', press Tab to select the option and exit the menu' : '', ".");
|
14072 |
|
14073 |
case 'input':
|
14074 |
return "".concat(label ? label : 'Select', " is focused ").concat(isSearchable ? ',type to refine list' : '', ", press Down to open the menu, ").concat(isMulti ? ' press left to focus selected values' : '');
|
14127 |
|
14128 |
function _objectSpread$1(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys$1(Object(source), true).forEach(function (key) { Object(__WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_esm_defineProperty__["a" /* default */])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys$1(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
14129 |
var defaultStyles = {
|
14130 |
+
clearIndicator: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["i" /* c */],
|
14131 |
+
container: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["g" /* a */],
|
14132 |
+
control: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["h" /* b */],
|
14133 |
+
dropdownIndicator: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["j" /* d */],
|
14134 |
+
group: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["m" /* g */],
|
14135 |
+
groupHeading: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["k" /* e */],
|
14136 |
+
indicatorsContainer: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["o" /* i */],
|
14137 |
+
indicatorSeparator: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["l" /* f */],
|
14138 |
+
input: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["n" /* h */],
|
14139 |
+
loadingIndicator: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["r" /* l */],
|
14140 |
+
loadingMessage: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["p" /* j */],
|
14141 |
+
menu: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["s" /* m */],
|
14142 |
+
menuList: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["q" /* k */],
|
14143 |
+
menuPortal: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["t" /* n */],
|
14144 |
+
multiValue: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["u" /* o */],
|
14145 |
+
multiValueLabel: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["v" /* p */],
|
14146 |
+
multiValueRemove: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["w" /* q */],
|
14147 |
+
noOptionsMessage: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["x" /* r */],
|
14148 |
+
option: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["y" /* s */],
|
14149 |
+
placeholder: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["z" /* t */],
|
14150 |
+
singleValue: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["A" /* u */],
|
14151 |
+
valueContainer: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["B" /* v */]
|
14152 |
}; // Merge Utility
|
14153 |
// Allows consumers to extend a base Select with additional styles
|
14154 |
|
14217 |
function _isNativeReflectConstruct$4() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
|
14218 |
var defaultProps = {
|
14219 |
backspaceRemovesValue: true,
|
14220 |
+
blurInputOnSelect: Object(__WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["C" /* w */])(),
|
14221 |
+
captureMenuScroll: !Object(__WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["C" /* w */])(),
|
14222 |
closeMenuOnSelect: true,
|
14223 |
closeMenuOnScroll: false,
|
14224 |
components: {},
|
14243 |
menuPlacement: 'bottom',
|
14244 |
menuPosition: 'absolute',
|
14245 |
menuShouldBlockScroll: false,
|
14246 |
+
menuShouldScrollIntoView: !Object(__WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["D" /* x */])(),
|
14247 |
noOptionsMessage: function noOptionsMessage() {
|
14248 |
return 'No options';
|
14249 |
},
|
14331 |
};
|
14332 |
|
14333 |
_this.cacheComponents = function (components) {
|
14334 |
+
_this.components = Object(__WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["E" /* y */])({
|
14335 |
components: components
|
14336 |
});
|
14337 |
};
|
14467 |
};
|
14468 |
|
14469 |
_this.clearValue = function () {
|
14470 |
+
_this.onChange(null, {
|
|
|
|
|
14471 |
action: 'clear'
|
14472 |
});
|
14473 |
};
|
14490 |
});
|
14491 |
};
|
14492 |
|
14493 |
+
_this.getValue = function () {
|
14494 |
+
return _this.state.selectValue;
|
14495 |
+
};
|
14496 |
+
|
14497 |
+
_this.cx = function () {
|
14498 |
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
14499 |
+
args[_key] = arguments[_key];
|
14500 |
+
}
|
14501 |
+
|
14502 |
+
return __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["F" /* z */].apply(void 0, [_this.props.classNamePrefix].concat(args));
|
14503 |
+
};
|
14504 |
+
|
14505 |
_this.getOptionLabel = function (data) {
|
14506 |
return _this.props.getOptionLabel(data);
|
14507 |
};
|
14640 |
|
14641 |
_this.onScroll = function (event) {
|
14642 |
if (typeof _this.props.closeMenuOnScroll === 'boolean') {
|
14643 |
+
if (event.target instanceof HTMLElement && Object(__WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["a" /* A */])(event.target)) {
|
14644 |
_this.props.onMenuClose();
|
14645 |
}
|
14646 |
} else if (typeof _this.props.closeMenuOnScroll === 'function') {
|
15064 |
};
|
15065 |
|
15066 |
var _value = _props.value;
|
15067 |
+
_this.cacheComponents = Object(__WEBPACK_IMPORTED_MODULE_12_memoize_one__["a" /* default */])(_this.cacheComponents, __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["b" /* B */]).bind(Object(__WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_esm_assertThisInitialized__["a" /* default */])(_this));
|
15068 |
|
15069 |
_this.cacheComponents(_props.components);
|
15070 |
|
15071 |
_this.instancePrefix = 'react-select-' + (_this.props.instanceId || ++instanceId);
|
15072 |
|
15073 |
+
var _selectValue = Object(__WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["c" /* C */])(_value);
|
15074 |
|
15075 |
_this.buildMenuOptions = Object(__WEBPACK_IMPORTED_MODULE_12_memoize_one__["a" /* default */])(_this.buildMenuOptions, function (newArgs, lastArgs) {
|
15076 |
var _ref6 = newArgs,
|
15083 |
lastProps = _ref9[0],
|
15084 |
lastSelectValue = _ref9[1];
|
15085 |
|
15086 |
+
return newSelectValue === lastSelectValue && newProps.inputValue === lastProps.inputValue && newProps.options === lastProps.options;
|
15087 |
}).bind(Object(__WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_esm_assertThisInitialized__["a" /* default */])(_this));
|
15088 |
|
15089 |
var _menuOptions = _props.menuIsOpen ? _this.buildMenuOptions(_props, _selectValue) : {
|
15123 |
this.cacheComponents(nextProps.components); // rebuild the menu options
|
15124 |
|
15125 |
if (nextProps.value !== value || nextProps.options !== options || nextProps.menuIsOpen !== menuIsOpen || nextProps.inputValue !== inputValue) {
|
15126 |
+
var selectValue = Object(__WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["c" /* C */])(nextProps.value);
|
15127 |
var menuOptions = nextProps.menuIsOpen ? this.buildMenuOptions(nextProps, selectValue) : {
|
15128 |
render: [],
|
15129 |
focusable: []
|
15158 |
isFocused && !isDisabled && prevProps.isDisabled || // ensure focus is on the Input when the menu opens
|
15159 |
isFocused && menuIsOpen && !prevProps.menuIsOpen) {
|
15160 |
this.focusInput();
|
15161 |
+
}
|
15162 |
+
|
15163 |
+
if (isFocused && isDisabled && !prevProps.isDisabled) {
|
15164 |
+
// ensure select state gets blurred in case Select is programatically disabled while focused
|
15165 |
+
this.setState({
|
15166 |
+
isFocused: false
|
15167 |
+
}, this.onMenuClose);
|
15168 |
} // scroll the focused option into view if necessary
|
15169 |
|
15170 |
|
15171 |
if (this.menuListRef && this.focusedOptionRef && this.scrollToFocusedOptionOnUpdate) {
|
15172 |
+
Object(__WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["d" /* D */])(this.menuListRef, this.focusedOptionRef);
|
15173 |
this.scrollToFocusedOptionOnUpdate = false;
|
15174 |
}
|
15175 |
}
|
15236 |
selectValue = _this$state3.selectValue,
|
15237 |
isFocused = _this$state3.isFocused;
|
15238 |
var menuOptions = this.buildMenuOptions(this.props, selectValue);
|
15239 |
+
var _this$props11 = this.props,
|
15240 |
+
isMulti = _this$props11.isMulti,
|
15241 |
+
tabSelectsValue = _this$props11.tabSelectsValue;
|
15242 |
var openAtIndex = focusOption === 'first' ? 0 : menuOptions.focusable.length - 1;
|
15243 |
|
15244 |
if (!isMulti) {
|
15260 |
_this2.onMenuOpen();
|
15261 |
|
15262 |
_this2.announceAriaLiveContext({
|
15263 |
+
event: 'menu',
|
15264 |
+
context: {
|
15265 |
+
tabSelectsValue: tabSelectsValue
|
15266 |
+
}
|
15267 |
});
|
15268 |
});
|
15269 |
}
|
15270 |
}, {
|
15271 |
key: "focusValue",
|
15272 |
value: function focusValue(direction) {
|
15273 |
+
var _this$props12 = this.props,
|
15274 |
+
isMulti = _this$props12.isMulti,
|
15275 |
+
isSearchable = _this$props12.isSearchable;
|
15276 |
var _this$state4 = this.state,
|
15277 |
selectValue = _this$state4.selectValue,
|
15278 |
focusedValue = _this$state4.focusedValue; // Only multiselects support value focusing
|
15335 |
key: "focusOption",
|
15336 |
value: function focusOption() {
|
15337 |
var direction = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'first';
|
15338 |
+
var _this$props13 = this.props,
|
15339 |
+
pageSize = _this$props13.pageSize,
|
15340 |
+
tabSelectsValue = _this$props13.tabSelectsValue;
|
15341 |
var _this$state5 = this.state,
|
15342 |
focusedOption = _this$state5.focusedOption,
|
15343 |
menuOptions = _this$state5.menuOptions;
|
15350 |
if (!focusedOption) {
|
15351 |
focusedIndex = -1;
|
15352 |
this.announceAriaLiveContext({
|
15353 |
+
event: 'menu',
|
15354 |
+
context: {
|
15355 |
+
tabSelectsValue: tabSelectsValue
|
15356 |
+
}
|
15357 |
});
|
15358 |
}
|
15359 |
|
15379 |
this.announceAriaLiveContext({
|
15380 |
event: 'menu',
|
15381 |
context: {
|
15382 |
+
isDisabled: isOptionDisabled(options[nextFocus]),
|
15383 |
+
tabSelectsValue: tabSelectsValue
|
15384 |
}
|
15385 |
});
|
15386 |
}
|
15410 |
key: "getCommonProps",
|
15411 |
value: function getCommonProps() {
|
15412 |
var clearValue = this.clearValue,
|
15413 |
+
cx = this.cx,
|
15414 |
getStyles = this.getStyles,
|
15415 |
+
getValue = this.getValue,
|
15416 |
setValue = this.setValue,
|
15417 |
selectOption = this.selectOption,
|
15418 |
props = this.props;
|
15419 |
+
var isMulti = props.isMulti,
|
|
|
15420 |
isRtl = props.isRtl,
|
15421 |
options = props.options;
|
|
|
15422 |
var hasValue = this.hasValue();
|
|
|
|
|
|
|
|
|
|
|
|
|
15423 |
return {
|
15424 |
cx: cx,
|
15425 |
clearValue: clearValue,
|
15488 |
}, {
|
15489 |
key: "isClearable",
|
15490 |
value: function isClearable() {
|
15491 |
+
var _this$props14 = this.props,
|
15492 |
+
isClearable = _this$props14.isClearable,
|
15493 |
+
isMulti = _this$props14.isMulti; // single select, by default, IS NOT clearable
|
15494 |
// multi select, by default, IS clearable
|
15495 |
|
15496 |
if (isClearable === undefined) return isMulti;
|
15596 |
selectValue = _this$state7.selectValue,
|
15597 |
focusedValue = _this$state7.focusedValue,
|
15598 |
focusedOption = _this$state7.focusedOption;
|
15599 |
+
var _this$props15 = this.props,
|
15600 |
+
options = _this$props15.options,
|
15601 |
+
menuIsOpen = _this$props15.menuIsOpen,
|
15602 |
+
inputValue = _this$props15.inputValue,
|
15603 |
+
screenReaderStatus = _this$props15.screenReaderStatus; // An aria live message representing the currently focused value in the select.
|
15604 |
|
15605 |
var focusedValueMsg = focusedValue ? valueFocusAriaMessage({
|
15606 |
focusedValue: focusedValue,
|
15625 |
}, {
|
15626 |
key: "renderInput",
|
15627 |
value: function renderInput() {
|
15628 |
+
var _this$props16 = this.props,
|
15629 |
+
isDisabled = _this$props16.isDisabled,
|
15630 |
+
isSearchable = _this$props16.isSearchable,
|
15631 |
+
inputId = _this$props16.inputId,
|
15632 |
+
inputValue = _this$props16.inputValue,
|
15633 |
+
tabIndex = _this$props16.tabIndex,
|
15634 |
+
form = _this$props16.form;
|
15635 |
var Input = this.components.Input;
|
15636 |
var inputIsHidden = this.state.inputIsHidden;
|
15637 |
var id = inputId || this.getElementId('input'); // aria attributes makes the JSX "noisy", separated for clarity
|
15648 |
id: id,
|
15649 |
innerRef: this.getInputRef,
|
15650 |
onBlur: this.onInputBlur,
|
15651 |
+
onChange: __WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["e" /* E */],
|
15652 |
onFocus: this.onInputFocus,
|
15653 |
readOnly: true,
|
15654 |
disabled: isDisabled,
|
15697 |
SingleValue = _this$components.SingleValue,
|
15698 |
Placeholder = _this$components.Placeholder;
|
15699 |
var commonProps = this.commonProps;
|
15700 |
+
var _this$props17 = this.props,
|
15701 |
+
controlShouldRenderValue = _this$props17.controlShouldRenderValue,
|
15702 |
+
isDisabled = _this$props17.isDisabled,
|
15703 |
+
isMulti = _this$props17.isMulti,
|
15704 |
+
inputValue = _this$props17.inputValue,
|
15705 |
+
placeholder = _this$props17.placeholder;
|
15706 |
var _this$state8 = this.state,
|
15707 |
selectValue = _this$state8.selectValue,
|
15708 |
focusedValue = _this$state8.focusedValue,
|
15727 |
},
|
15728 |
isFocused: isOptionFocused,
|
15729 |
isDisabled: isDisabled,
|
15730 |
+
key: "".concat(_this4.getOptionValue(opt)).concat(index),
|
15731 |
index: index,
|
15732 |
removeProps: {
|
15733 |
onClick: function onClick() {
|
15762 |
value: function renderClearIndicator() {
|
15763 |
var ClearIndicator = this.components.ClearIndicator;
|
15764 |
var commonProps = this.commonProps;
|
15765 |
+
var _this$props18 = this.props,
|
15766 |
+
isDisabled = _this$props18.isDisabled,
|
15767 |
+
isLoading = _this$props18.isLoading;
|
15768 |
var isFocused = this.state.isFocused;
|
15769 |
|
15770 |
if (!this.isClearable() || !ClearIndicator || isDisabled || !this.hasValue() || isLoading) {
|
15786 |
value: function renderLoadingIndicator() {
|
15787 |
var LoadingIndicator = this.components.LoadingIndicator;
|
15788 |
var commonProps = this.commonProps;
|
15789 |
+
var _this$props19 = this.props,
|
15790 |
+
isDisabled = _this$props19.isDisabled,
|
15791 |
+
isLoading = _this$props19.isLoading;
|
15792 |
var isFocused = this.state.isFocused;
|
15793 |
if (!LoadingIndicator || !isLoading) return null;
|
15794 |
var innerProps = {
|
15853 |
var _this$state9 = this.state,
|
15854 |
focusedOption = _this$state9.focusedOption,
|
15855 |
menuOptions = _this$state9.menuOptions;
|
15856 |
+
var _this$props20 = this.props,
|
15857 |
+
captureMenuScroll = _this$props20.captureMenuScroll,
|
15858 |
+
inputValue = _this$props20.inputValue,
|
15859 |
+
isLoading = _this$props20.isLoading,
|
15860 |
+
loadingMessage = _this$props20.loadingMessage,
|
15861 |
+
minMenuHeight = _this$props20.minMenuHeight,
|
15862 |
+
maxMenuHeight = _this$props20.maxMenuHeight,
|
15863 |
+
menuIsOpen = _this$props20.menuIsOpen,
|
15864 |
+
menuPlacement = _this$props20.menuPlacement,
|
15865 |
+
menuPosition = _this$props20.menuPosition,
|
15866 |
+
menuPortalTarget = _this$props20.menuPortalTarget,
|
15867 |
+
menuShouldBlockScroll = _this$props20.menuShouldBlockScroll,
|
15868 |
+
menuShouldScrollIntoView = _this$props20.menuShouldScrollIntoView,
|
15869 |
+
noOptionsMessage = _this$props20.noOptionsMessage,
|
15870 |
+
onMenuScrollToTop = _this$props20.onMenuScrollToTop,
|
15871 |
+
onMenuScrollToBottom = _this$props20.onMenuScrollToBottom;
|
15872 |
if (!menuIsOpen) return null; // TODO: Internal Option Type here
|
15873 |
|
15874 |
var render = function render(props) {
|
15893 |
return /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_11_react___default.a.createElement(Group, Object(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__["a" /* default */])({}, commonProps, group, {
|
15894 |
Heading: GroupHeading,
|
15895 |
headingProps: {
|
15896 |
+
id: headingId,
|
15897 |
+
data: item.data
|
15898 |
},
|
15899 |
label: _this5.formatGroupLabel(item.data)
|
15900 |
}), item.options.map(function (option) {
|
15926 |
menuPosition: menuPosition,
|
15927 |
menuShouldScrollIntoView: menuShouldScrollIntoView
|
15928 |
};
|
15929 |
+
var menuElement = /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_11_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_15__index_75b02bac_browser_esm_js__["f" /* M */], Object(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__["a" /* default */])({}, commonProps, menuPlacementProps), function (_ref10) {
|
15930 |
var ref = _ref10.ref,
|
15931 |
_ref10$placerProps = _ref10.placerProps,
|
15932 |
placement = _ref10$placerProps.placement,
|
15966 |
value: function renderFormField() {
|
15967 |
var _this6 = this;
|
15968 |
|
15969 |
+
var _this$props21 = this.props,
|
15970 |
+
delimiter = _this$props21.delimiter,
|
15971 |
+
isDisabled = _this$props21.isDisabled,
|
15972 |
+
isMulti = _this$props21.isMulti,
|
15973 |
+
name = _this$props21.name;
|
15974 |
var selectValue = this.state.selectValue;
|
15975 |
if (!name || isDisabled) return;
|
15976 |
|
16028 |
IndicatorsContainer = _this$components4.IndicatorsContainer,
|
16029 |
SelectContainer = _this$components4.SelectContainer,
|
16030 |
ValueContainer = _this$components4.ValueContainer;
|
16031 |
+
var _this$props22 = this.props,
|
16032 |
+
className = _this$props22.className,
|
16033 |
+
id = _this$props22.id,
|
16034 |
+
isDisabled = _this$props22.isDisabled,
|
16035 |
+
menuIsOpen = _this$props22.menuIsOpen;
|
16036 |
var isFocused = this.state.isFocused;
|
16037 |
var commonProps = this.commonProps = this.getCommonProps();
|
16038 |
return /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_11_react___default.a.createElement(SelectContainer, Object(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__["a" /* default */])({}, commonProps, {
|
16070 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
16071 |
|
16072 |
/***/ }),
|
16073 |
+
/* 181 */
|
16074 |
/*!*********************************************************************************************************!*\
|
16075 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js ***!
|
16076 |
\*********************************************************************************************************/
|
16080 |
|
16081 |
"use strict";
|
16082 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _unsupportedIterableToArray;
|
16083 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__arrayLikeToArray_js__ = __webpack_require__(/*! ./arrayLikeToArray.js */ 182);
|
16084 |
|
16085 |
function _unsupportedIterableToArray(o, minLen) {
|
16086 |
if (!o) return;
|
16087 |
+
if (typeof o === "string") return Object(__WEBPACK_IMPORTED_MODULE_0__arrayLikeToArray_js__["a" /* default */])(o, minLen);
|
16088 |
var n = Object.prototype.toString.call(o).slice(8, -1);
|
16089 |
if (n === "Object" && o.constructor) n = o.constructor.name;
|
16090 |
if (n === "Map" || n === "Set") return Array.from(o);
|
16091 |
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return Object(__WEBPACK_IMPORTED_MODULE_0__arrayLikeToArray_js__["a" /* default */])(o, minLen);
|
16092 |
}
|
16093 |
|
16094 |
/***/ }),
|
16095 |
+
/* 182 */
|
16096 |
/*!***********************************************************************************************!*\
|
16097 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js ***!
|
16098 |
\***********************************************************************************************/
|
16113 |
}
|
16114 |
|
16115 |
/***/ }),
|
16116 |
+
/* 183 */
|
16117 |
/*!************************************************!*\
|
16118 |
!*** ./src/blocks/advanced-heading/style.scss ***!
|
16119 |
\************************************************/
|
16123 |
// removed by extract-text-webpack-plugin
|
16124 |
|
16125 |
/***/ }),
|
16126 |
+
/* 184 */
|
16127 |
/*!********************************************!*\
|
16128 |
!*** ./src/blocks/post/post-title/edit.js ***!
|
16129 |
\********************************************/
|
16171 |
};
|
16172 |
|
16173 |
/***/ }),
|
16174 |
+
/* 185 */
|
16175 |
/*!*******************************************!*\
|
16176 |
!*** ./src/blocks/post/post-meta/edit.js ***!
|
16177 |
\*******************************************/
|
16195 |
|
16196 |
var dateFormat = __experimentalGetSettings().formats.date;
|
16197 |
|
16198 |
+
var list = categoriesList;
|
16199 |
+
var cat = post.categories;
|
16200 |
+
var categoriesName = [];
|
16201 |
|
16202 |
+
if (list !== undefined && cat !== undefined) {
|
16203 |
+
for (var j = 0; j < list.length; j++) {
|
16204 |
+
for (var i = 0; i < cat.length; i++) {
|
16205 |
+
if (list[j].id === cat[i]) {
|
16206 |
+
categoriesName.push(list[j].name);
|
16207 |
+
}
|
16208 |
+
}
|
16209 |
}
|
16210 |
+
}
|
16211 |
|
16212 |
return wp.element.createElement(
|
16213 |
'div',
|
16237 |
wp.element.createElement('span', { className: 'dashicons-admin-comments dashicons' }),
|
16238 |
post.uagb_comment_info
|
16239 |
),
|
16240 |
+
attributes.displayPostTaxonomy && wp.element.createElement(
|
16241 |
'span',
|
16242 |
{ className: 'uagb-post__taxonomy' },
|
16243 |
wp.element.createElement('span', { className: 'dashicons-tag dashicons' }),
|
16244 |
+
categoriesName.join(", ")
|
16245 |
)
|
16246 |
)
|
16247 |
);
|
16248 |
};
|
16249 |
|
16250 |
/***/ }),
|
16251 |
+
/* 186 */
|
16252 |
/*!********************************************!*\
|
16253 |
!*** ./src/blocks/post/post-image/edit.js ***!
|
16254 |
\********************************************/
|
16291 |
};
|
16292 |
|
16293 |
/***/ }),
|
16294 |
+
/* 187 */
|
16295 |
/*!**********************************************!*\
|
16296 |
!*** ./src/blocks/post/post-excerpt/edit.js ***!
|
16297 |
\**********************************************/
|
16301 |
|
16302 |
"use strict";
|
16303 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return PostExcerpt; });
|
16304 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate__ = __webpack_require__(/*! lodash/truncate */ 386);
|
16305 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_truncate__);
|
16306 |
|
16307 |
|
16356 |
};
|
16357 |
|
16358 |
/***/ }),
|
16359 |
+
/* 188 */
|
16360 |
/*!*****************************************!*\
|
16361 |
!*** ./node_modules/lodash/toNumber.js ***!
|
16362 |
\*****************************************/
|
16365 |
/***/ (function(module, exports, __webpack_require__) {
|
16366 |
|
16367 |
var isObject = __webpack_require__(/*! ./isObject */ 13),
|
16368 |
+
isSymbol = __webpack_require__(/*! ./isSymbol */ 57);
|
16369 |
|
16370 |
/** Used as references for various `Number` constants. */
|
16371 |
var NAN = 0 / 0;
|
16433 |
|
16434 |
|
16435 |
/***/ }),
|
16436 |
+
/* 189 */
|
16437 |
/*!*********************************************!*\
|
16438 |
!*** ./src/blocks/post/post-button/edit.js ***!
|
16439 |
\*********************************************/
|
16487 |
};
|
16488 |
|
16489 |
/***/ }),
|
16490 |
+
/* 190 */
|
16491 |
/*!*************************************************!*\
|
16492 |
!*** ./node_modules/lodash/_baseAssignValue.js ***!
|
16493 |
\*************************************************/
|
16495 |
/*! all exports used */
|
16496 |
/***/ (function(module, exports, __webpack_require__) {
|
16497 |
|
16498 |
+
var defineProperty = __webpack_require__(/*! ./_defineProperty */ 191);
|
16499 |
|
16500 |
/**
|
16501 |
* The base implementation of `assignValue` and `assignMergeValue` without
|
16523 |
|
16524 |
|
16525 |
/***/ }),
|
16526 |
+
/* 191 */
|
16527 |
/*!************************************************!*\
|
16528 |
!*** ./node_modules/lodash/_defineProperty.js ***!
|
16529 |
\************************************************/
|
16545 |
|
16546 |
|
16547 |
/***/ }),
|
16548 |
+
/* 192 */
|
16549 |
/*!******************************************!*\
|
16550 |
!*** ./node_modules/lodash/_overRest.js ***!
|
16551 |
\******************************************/
|
16553 |
/*! all exports used */
|
16554 |
/***/ (function(module, exports, __webpack_require__) {
|
16555 |
|
16556 |
+
var apply = __webpack_require__(/*! ./_apply */ 410);
|
16557 |
|
16558 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
16559 |
var nativeMax = Math.max;
|
16592 |
|
16593 |
|
16594 |
/***/ }),
|
16595 |
+
/* 193 */
|
16596 |
/*!*********************************************!*\
|
16597 |
!*** ./node_modules/lodash/_setToString.js ***!
|
16598 |
\*********************************************/
|
16600 |
/*! all exports used */
|
16601 |
/***/ (function(module, exports, __webpack_require__) {
|
16602 |
|
16603 |
+
var baseSetToString = __webpack_require__(/*! ./_baseSetToString */ 411),
|
16604 |
+
shortOut = __webpack_require__(/*! ./_shortOut */ 413);
|
16605 |
|
16606 |
/**
|
16607 |
* Sets the `toString` method of `func` to return `string`.
|
16617 |
|
16618 |
|
16619 |
/***/ }),
|
16620 |
+
/* 194 */
|
16621 |
/*!**********************************************************************!*\
|
16622 |
!*** ./node_modules/element-resize-detector/src/collection-utils.js ***!
|
16623 |
\**********************************************************************/
|
16648 |
|
16649 |
|
16650 |
/***/ }),
|
16651 |
+
/* 195 */
|
16652 |
/*!**********************************************************************!*\
|
16653 |
!*** ./node_modules/element-resize-detector/src/browser-detector.js ***!
|
16654 |
\**********************************************************************/
|
16699 |
|
16700 |
|
16701 |
/***/ }),
|
16702 |
+
/* 196 */
|
16703 |
/*!***************************************!*\
|
16704 |
!*** ./node_modules/lodash/keysIn.js ***!
|
16705 |
\***************************************/
|
16707 |
/*! all exports used */
|
16708 |
/***/ (function(module, exports, __webpack_require__) {
|
16709 |
|
16710 |
+
var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */ 157),
|
16711 |
+
baseKeysIn = __webpack_require__(/*! ./_baseKeysIn */ 433),
|
16712 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 29);
|
16713 |
|
16714 |
/**
|
16742 |
|
16743 |
|
16744 |
/***/ }),
|
16745 |
+
/* 197 */
|
16746 |
/*!**********************************************!*\
|
16747 |
!*** ./node_modules/lodash/_getSymbolsIn.js ***!
|
16748 |
\**********************************************/
|
16750 |
/*! all exports used */
|
16751 |
/***/ (function(module, exports, __webpack_require__) {
|
16752 |
|
16753 |
+
var arrayPush = __webpack_require__(/*! ./_arrayPush */ 78),
|
16754 |
+
getPrototype = __webpack_require__(/*! ./_getPrototype */ 100),
|
16755 |
+
getSymbols = __webpack_require__(/*! ./_getSymbols */ 79),
|
16756 |
+
stubArray = __webpack_require__(/*! ./stubArray */ 156);
|
16757 |
|
16758 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
16759 |
var nativeGetSymbols = Object.getOwnPropertySymbols;
|
16778 |
|
16779 |
|
16780 |
/***/ }),
|
16781 |
+
/* 198 */
|
16782 |
/*!***********************************************!*\
|
16783 |
!*** ./node_modules/react-slick/lib/index.js ***!
|
16784 |
\***********************************************/
|
16794 |
});
|
16795 |
exports["default"] = void 0;
|
16796 |
|
16797 |
+
var _slider = _interopRequireDefault(__webpack_require__(/*! ./slider */ 465));
|
16798 |
|
16799 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
16800 |
|
16802 |
exports["default"] = _default;
|
16803 |
|
16804 |
/***/ }),
|
16805 |
+
/* 199 */
|
16806 |
/*!*********************************************!*\
|
16807 |
!*** ./node_modules/enquire.js/src/Util.js ***!
|
16808 |
\*********************************************/
|
16857 |
|
16858 |
|
16859 |
/***/ }),
|
16860 |
+
/* 200 */
|
16861 |
/*!******************************************!*\
|
16862 |
!*** ./src/blocks/section/attributes.js ***!
|
16863 |
\******************************************/
|
17168 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
17169 |
|
17170 |
/***/ }),
|
17171 |
+
/* 201 */
|
17172 |
/*!*********************************************!*\
|
17173 |
!*** ./src/blocks/section/inline-styles.js ***!
|
17174 |
\*********************************************/
|
17279 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
17280 |
|
17281 |
/***/ }),
|
17282 |
+
/* 202 */
|
17283 |
/*!******************************************!*\
|
17284 |
!*** ./src/blocks/buttons/attributes.js ***!
|
17285 |
\******************************************/
|
17372 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
17373 |
|
17374 |
/***/ }),
|
17375 |
+
/* 203 */
|
17376 |
/*!************************************************!*\
|
17377 |
!*** ./src/blocks/buttons-child/attributes.js ***!
|
17378 |
\************************************************/
|
17526 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
17527 |
|
17528 |
/***/ }),
|
17529 |
+
/* 204 */
|
17530 |
+
/*!************************************************************************************************!*\
|
17531 |
+
!*** ./node_modules/react-transition-group/node_modules/@babel/runtime/helpers/esm/extends.js ***!
|
17532 |
+
\************************************************************************************************/
|
17533 |
+
/*! exports provided: default */
|
17534 |
+
/*! exports used: default */
|
17535 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
17536 |
|
17537 |
"use strict";
|
17538 |
+
/* harmony export (immutable) */ __webpack_exports__["a"] = _extends;
|
17539 |
+
function _extends() {
|
17540 |
+
_extends = Object.assign || function (target) {
|
17541 |
+
for (var i = 1; i < arguments.length; i++) {
|
17542 |
+
var source = arguments[i];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17543 |
|
17544 |
+
for (var key in source) {
|
17545 |
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
17546 |
+
target[key] = source[key];
|
|
|
|
|
|
|
|
|
17547 |
}
|
17548 |
}
|
17549 |
}
|
17550 |
|
17551 |
+
return target;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17552 |
};
|
17553 |
|
17554 |
+
return _extends.apply(this, arguments);
|
17555 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17556 |
|
17557 |
/***/ }),
|
17558 |
+
/* 205 */
|
17559 |
+
/*!***********************************************************!*\
|
17560 |
+
!*** ./node_modules/react-transition-group/esm/config.js ***!
|
17561 |
+
\***********************************************************/
|
17562 |
+
/*! exports provided: default */
|
17563 |
+
/*! exports used: default */
|
17564 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
17565 |
|
17566 |
"use strict";
|
17567 |
+
/* harmony default export */ __webpack_exports__["a"] = ({
|
17568 |
+
disabled: false
|
17569 |
+
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17570 |
|
17571 |
/***/ }),
|
17572 |
+
/* 206 */
|
17573 |
+
/*!********************************************************************!*\
|
17574 |
+
!*** ./node_modules/react-transition-group/esm/utils/PropTypes.js ***!
|
17575 |
+
\********************************************************************/
|
17576 |
+
/*! exports provided: timeoutsShape, classNamesShape */
|
17577 |
+
/*! exports used: classNamesShape, timeoutsShape */
|
17578 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
17579 |
|
17580 |
"use strict";
|
17581 |
+
/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "b", function() { return timeoutsShape; });
|
17582 |
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return classNamesShape; });
|
17583 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
17584 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__);
|
|
|
|
|
|
|
|
|
17585 |
|
17586 |
+
var timeoutsShape = process.env.NODE_ENV !== 'production' ? __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.number, __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.shape({
|
17587 |
+
enter: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.number,
|
17588 |
+
exit: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.number,
|
17589 |
+
appear: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.number
|
17590 |
}).isRequired]) : null;
|
17591 |
+
var classNamesShape = process.env.NODE_ENV !== 'production' ? __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.string, __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.shape({
|
17592 |
+
enter: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.string,
|
17593 |
+
exit: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.string,
|
17594 |
+
active: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.string
|
17595 |
+
}), __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.shape({
|
17596 |
+
enter: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.string,
|
17597 |
+
enterDone: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.string,
|
17598 |
+
enterActive: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.string,
|
17599 |
+
exit: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.string,
|
17600 |
+
exitDone: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.string,
|
17601 |
+
exitActive: __WEBPACK_IMPORTED_MODULE_0_prop_types___default.a.string
|
|
|
17602 |
})]) : null;
|
17603 |
+
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 6)))
|
|
|
17604 |
|
17605 |
/***/ }),
|
17606 |
+
/* 207 */
|
17607 |
+
/*!********************************************************************!*\
|
17608 |
+
!*** ./node_modules/react-transition-group/esm/TransitionGroup.js ***!
|
17609 |
+
\********************************************************************/
|
17610 |
+
/*! exports provided: default */
|
17611 |
+
/*! exports used: default */
|
17612 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
17613 |
|
17614 |
"use strict";
|
17615 |
+
/* WEBPACK VAR INJECTION */(function(process) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutPropertiesLoose__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutPropertiesLoose */ 66);
|
17616 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ 204);
|
17617 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_esm_assertThisInitialized__ = __webpack_require__(/*! @babel/runtime/helpers/esm/assertThisInitialized */ 523);
|
17618 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_esm_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inheritsLoose */ 43);
|
17619 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
17620 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__);
|
17621 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_react__ = __webpack_require__(/*! react */ 5);
|
17622 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_react__);
|
17623 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__TransitionGroupContext__ = __webpack_require__(/*! ./TransitionGroupContext */ 106);
|
17624 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__utils_ChildMapping__ = __webpack_require__(/*! ./utils/ChildMapping */ 524);
|
17625 |
|
|
|
|
|
17626 |
|
|
|
17627 |
|
|
|
17628 |
|
|
|
17629 |
|
|
|
17630 |
|
|
|
17631 |
|
|
|
|
|
|
|
17632 |
|
|
|
|
|
|
|
17633 |
|
17634 |
var values = Object.values || function (obj) {
|
17635 |
return Object.keys(obj).map(function (k) {
|
17642 |
childFactory: function childFactory(child) {
|
17643 |
return child;
|
17644 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17645 |
};
|
17646 |
+
/**
|
17647 |
+
* The `<TransitionGroup>` component manages a set of transition components
|
17648 |
+
* (`<Transition>` and `<CSSTransition>`) in a list. Like with the transition
|
17649 |
+
* components, `<TransitionGroup>` is a state machine for managing the mounting
|
17650 |
+
* and unmounting of components over time.
|
17651 |
+
*
|
17652 |
+
* Consider the example below. As items are removed or added to the TodoList the
|
17653 |
+
* `in` prop is toggled automatically by the `<TransitionGroup>`.
|
17654 |
+
*
|
17655 |
+
* Note that `<TransitionGroup>` does not define any animation behavior!
|
17656 |
+
* Exactly _how_ a list item animates is up to the individual transition
|
17657 |
+
* component. This means you can mix and match animations across different list
|
17658 |
+
* items.
|
17659 |
+
*/
|
17660 |
|
17661 |
+
var TransitionGroup = /*#__PURE__*/function (_React$Component) {
|
17662 |
+
Object(__WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_esm_inheritsLoose__["a" /* default */])(TransitionGroup, _React$Component);
|
|
|
|
|
17663 |
|
17664 |
function TransitionGroup(props, context) {
|
17665 |
var _this;
|
17666 |
|
17667 |
_this = _React$Component.call(this, props, context) || this;
|
17668 |
|
17669 |
+
var handleExited = _this.handleExited.bind(Object(__WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_esm_assertThisInitialized__["a" /* default */])(_this)); // Initial children should all be entering, dependent on appear
|
17670 |
|
17671 |
|
17672 |
_this.state = {
|
17673 |
+
contextValue: {
|
17674 |
+
isMounting: true
|
17675 |
+
},
|
17676 |
handleExited: handleExited,
|
17677 |
firstRender: true
|
17678 |
};
|
17681 |
|
17682 |
var _proto = TransitionGroup.prototype;
|
17683 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17684 |
_proto.componentDidMount = function componentDidMount() {
|
|
|
17685 |
this.mounted = true;
|
17686 |
+
this.setState({
|
17687 |
+
contextValue: {
|
17688 |
+
isMounting: false
|
17689 |
+
}
|
17690 |
+
});
|
17691 |
};
|
17692 |
|
17693 |
_proto.componentWillUnmount = function componentWillUnmount() {
|
17699 |
handleExited = _ref.handleExited,
|
17700 |
firstRender = _ref.firstRender;
|
17701 |
return {
|
17702 |
+
children: firstRender ? Object(__WEBPACK_IMPORTED_MODULE_7__utils_ChildMapping__["b" /* getInitialChildMapping */])(nextProps, handleExited) : Object(__WEBPACK_IMPORTED_MODULE_7__utils_ChildMapping__["c" /* getNextChildMapping */])(nextProps, prevChildMapping, handleExited),
|
17703 |
firstRender: false
|
17704 |
};
|
17705 |
+
} // node is `undefined` when user provided `nodeRef` prop
|
17706 |
+
;
|
17707 |
|
17708 |
_proto.handleExited = function handleExited(child, node) {
|
17709 |
+
var currentChildMapping = Object(__WEBPACK_IMPORTED_MODULE_7__utils_ChildMapping__["a" /* getChildMapping */])(this.props.children);
|
17710 |
if (child.key in currentChildMapping) return;
|
17711 |
|
17712 |
if (child.props.onExited) {
|
17715 |
|
17716 |
if (this.mounted) {
|
17717 |
this.setState(function (state) {
|
17718 |
+
var children = Object(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__["a" /* default */])({}, state.children);
|
17719 |
|
17720 |
delete children[child.key];
|
17721 |
return {
|
17729 |
var _this$props = this.props,
|
17730 |
Component = _this$props.component,
|
17731 |
childFactory = _this$props.childFactory,
|
17732 |
+
props = Object(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutPropertiesLoose__["a" /* default */])(_this$props, ["component", "childFactory"]);
|
17733 |
|
17734 |
+
var contextValue = this.state.contextValue;
|
17735 |
var children = values(this.state.children).map(childFactory);
|
17736 |
delete props.appear;
|
17737 |
delete props.enter;
|
17738 |
delete props.exit;
|
17739 |
|
17740 |
if (Component === null) {
|
17741 |
+
return /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_6__TransitionGroupContext__["a" /* default */].Provider, {
|
17742 |
+
value: contextValue
|
17743 |
+
}, children);
|
17744 |
}
|
17745 |
|
17746 |
+
return /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_6__TransitionGroupContext__["a" /* default */].Provider, {
|
17747 |
+
value: contextValue
|
17748 |
+
}, /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_5_react___default.a.createElement(Component, props, children));
|
17749 |
};
|
17750 |
|
17751 |
return TransitionGroup;
|
17752 |
+
}(__WEBPACK_IMPORTED_MODULE_5_react___default.a.Component);
|
17753 |
|
|
|
|
|
|
|
17754 |
TransitionGroup.propTypes = process.env.NODE_ENV !== "production" ? {
|
17755 |
/**
|
17756 |
* `<TransitionGroup>` renders a `<div>` by default. You can change this
|
17759 |
* you can pass in `component={null}`. This is useful if the wrapping div
|
17760 |
* borks your css styles.
|
17761 |
*/
|
17762 |
+
component: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.any,
|
17763 |
|
17764 |
/**
|
17765 |
* A set of `<Transition>` components, that are toggled `in` and out as they
|
17774 |
* the transition child as you change its content, this will cause
|
17775 |
* `TransitionGroup` to transition the child out and back in.
|
17776 |
*/
|
17777 |
+
children: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.node,
|
17778 |
|
17779 |
/**
|
17780 |
* A convenience prop that enables or disables appear animations
|
17781 |
* for all children. Note that specifying this will override any defaults set
|
17782 |
* on individual children Transitions.
|
17783 |
*/
|
17784 |
+
appear: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.bool,
|
17785 |
|
17786 |
/**
|
17787 |
* A convenience prop that enables or disables enter animations
|
17788 |
* for all children. Note that specifying this will override any defaults set
|
17789 |
* on individual children Transitions.
|
17790 |
*/
|
17791 |
+
enter: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.bool,
|
17792 |
|
17793 |
/**
|
17794 |
* A convenience prop that enables or disables exit animations
|
17795 |
* for all children. Note that specifying this will override any defaults set
|
17796 |
* on individual children Transitions.
|
17797 |
*/
|
17798 |
+
exit: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.bool,
|
17799 |
|
17800 |
/**
|
17801 |
* You may need to apply reactive updates to a child as it is exiting.
|
17807 |
*
|
17808 |
* @type Function(child: ReactElement) -> ReactElement
|
17809 |
*/
|
17810 |
+
childFactory: __WEBPACK_IMPORTED_MODULE_4_prop_types___default.a.func
|
17811 |
} : {};
|
17812 |
TransitionGroup.defaultProps = defaultProps;
|
17813 |
+
/* harmony default export */ __webpack_exports__["a"] = (TransitionGroup);
|
17814 |
+
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
|
|
|
|
|
|
|
|
17815 |
|
17816 |
/***/ }),
|
17817 |
+
/* 208 */
|
17818 |
/*!**********************************************!*\
|
17819 |
!*** ./src/blocks/info-box/inline-styles.js ***!
|
17820 |
\**********************************************/
|
18134 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxStyle);
|
18135 |
|
18136 |
/***/ }),
|
18137 |
+
/* 209 */
|
18138 |
/*!*****************************************************!*\
|
18139 |
!*** ./src/blocks/info-box/components/IconImage.js ***!
|
18140 |
\*****************************************************/
|
18214 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxIconImage);
|
18215 |
|
18216 |
/***/ }),
|
18217 |
+
/* 210 */
|
18218 |
/*!*******************************************!*\
|
18219 |
!*** ./src/blocks/info-box/attributes.js ***!
|
18220 |
\*******************************************/
|
18631 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18632 |
|
18633 |
/***/ }),
|
18634 |
+
/* 211 */
|
18635 |
/*!****************************************************!*\
|
18636 |
!*** ./src/blocks/testimonial/components/Image.js ***!
|
18637 |
\****************************************************/
|
18716 |
/* harmony default export */ __webpack_exports__["a"] = (TestimonialImage);
|
18717 |
|
18718 |
/***/ }),
|
18719 |
+
/* 212 */
|
18720 |
/*!**********************************************!*\
|
18721 |
!*** ./src/blocks/testimonial/attributes.js ***!
|
18722 |
\**********************************************/
|
19078 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19079 |
|
19080 |
/***/ }),
|
19081 |
+
/* 213 */
|
19082 |
/*!***************************************!*\
|
19083 |
!*** ./src/blocks/team/attributes.js ***!
|
19084 |
\***************************************/
|
19373 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19374 |
|
19375 |
/***/ }),
|
19376 |
+
/* 214 */
|
19377 |
/*!***********************************************!*\
|
19378 |
!*** ./src/blocks/social-share/attributes.js ***!
|
19379 |
\***********************************************/
|
19479 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19480 |
|
19481 |
/***/ }),
|
19482 |
+
/* 215 */
|
19483 |
/*!*****************************************************!*\
|
19484 |
!*** ./src/blocks/social-share-child/attributes.js ***!
|
19485 |
\*****************************************************/
|
19532 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19533 |
|
19534 |
/***/ }),
|
19535 |
+
/* 216 */
|
19536 |
/*!************************************************!*\
|
19537 |
!*** ./src/blocks/social-share-child/links.js ***!
|
19538 |
\************************************************/
|
19567 |
/* harmony default export */ __webpack_exports__["a"] = (links);
|
19568 |
|
19569 |
/***/ }),
|
19570 |
+
/* 217 */
|
19571 |
/*!********************************************!*\
|
19572 |
!*** ./src/blocks/icon-list/attributes.js ***!
|
19573 |
\********************************************/
|
19724 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19725 |
|
19726 |
/***/ }),
|
19727 |
+
/* 218 */
|
19728 |
/*!**************************************************!*\
|
19729 |
!*** ./src/blocks/icon-list-child/attributes.js ***!
|
19730 |
\**************************************************/
|
19803 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19804 |
|
19805 |
/***/ }),
|
19806 |
+
/* 219 */
|
19807 |
/*!*********************************************!*\
|
19808 |
!*** ./src/blocks/price-list/attributes.js ***!
|
19809 |
\*********************************************/
|
20094 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
20095 |
|
20096 |
/***/ }),
|
20097 |
+
/* 220 */
|
20098 |
/*!************************************************************!*\
|
20099 |
!*** ./src/blocks/timeline/content-timeline/attributes.js ***!
|
20100 |
\************************************************************/
|
20423 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
20424 |
|
20425 |
/***/ }),
|
20426 |
+
/* 221 */
|
20427 |
/*!**********************************************!*\
|
20428 |
!*** ./src/blocks/timeline/inline-styles.js ***!
|
20429 |
\**********************************************/
|
20867 |
/* harmony default export */ __webpack_exports__["a"] = (contentTimelineStyle);
|
20868 |
|
20869 |
/***/ }),
|
20870 |
+
/* 222 */
|
20871 |
/*!**********************************************!*\
|
20872 |
!*** ./src/blocks/timeline/align-classes.js ***!
|
20873 |
\**********************************************/
|
20902 |
/* harmony default export */ __webpack_exports__["a"] = (AlignClass);
|
20903 |
|
20904 |
/***/ }),
|
20905 |
+
/* 223 */
|
20906 |
/*!**************************************************!*\
|
20907 |
!*** ./src/blocks/timeline/day-align-classes.js ***!
|
20908 |
\**************************************************/
|
20937 |
/* harmony default export */ __webpack_exports__["a"] = (DayAlignClass);
|
20938 |
|
20939 |
/***/ }),
|
20940 |
+
/* 224 */
|
20941 |
/*!*********************************************************!*\
|
20942 |
!*** ./src/blocks/timeline/content-timeline/styling.js ***!
|
20943 |
\*********************************************************/
|
21358 |
/* harmony default export */ __webpack_exports__["a"] = (contentTimelineStyle);
|
21359 |
|
21360 |
/***/ }),
|
21361 |
+
/* 225 */
|
21362 |
/*!******************************************************************!*\
|
21363 |
!*** ./src/blocks/timeline/content-timeline-child/attributes.js ***!
|
21364 |
\******************************************************************/
|
21445 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
21446 |
|
21447 |
/***/ }),
|
21448 |
+
/* 226 */
|
21449 |
/*!*************************************************!*\
|
21450 |
!*** ./src/blocks/call-to-action/attributes.js ***!
|
21451 |
\*************************************************/
|
21711 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
21712 |
|
21713 |
/***/ }),
|
21714 |
+
/* 227 */
|
21715 |
/*!*****************************************!*\
|
21716 |
!*** ./src/blocks/column/attributes.js ***!
|
21717 |
\*****************************************/
|
21975 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
21976 |
|
21977 |
/***/ }),
|
21978 |
+
/* 228 */
|
21979 |
/*!******************************************!*\
|
21980 |
!*** ./src/blocks/columns/attributes.js ***!
|
21981 |
\******************************************/
|
22296 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
22297 |
|
22298 |
/***/ }),
|
22299 |
+
/* 229 */
|
22300 |
/*!*************************************!*\
|
22301 |
!*** ./src/blocks/columns/icons.js ***!
|
22302 |
\*************************************/
|
22417 |
/* harmony default export */ __webpack_exports__["a"] = (rowIcons);
|
22418 |
|
22419 |
/***/ }),
|
22420 |
+
/* 230 */
|
22421 |
/*!*********************************************!*\
|
22422 |
!*** ./src/blocks/blockquote/attributes.js ***!
|
22423 |
\*********************************************/
|
22765 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
22766 |
|
22767 |
/***/ }),
|
22768 |
+
/* 231 */
|
22769 |
/*!***************************************************!*\
|
22770 |
!*** ./src/blocks/marketing-button/attributes.js ***!
|
22771 |
\***************************************************/
|
23059 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
23060 |
|
23061 |
/***/ }),
|
23062 |
+
/* 232 */
|
23063 |
/*!****************************************************!*\
|
23064 |
!*** ./src/blocks/table-of-contents/attributes.js ***!
|
23065 |
\****************************************************/
|
23131 |
type: 'array',
|
23132 |
default: Array(6).fill(true)
|
23133 |
},
|
|
|
|
|
|
|
|
|
23134 |
align: {
|
23135 |
type: "string",
|
23136 |
default: "left"
|
23137 |
},
|
23138 |
+
headerLinks: {
|
23139 |
+
type: 'html',
|
23140 |
+
default: ''
|
23141 |
+
},
|
23142 |
heading: {
|
23143 |
+
type: "string",
|
23144 |
selector: ".uagb-toc__title",
|
23145 |
+
default: __("Table Of Contents", 'ultimate-addons-for-gutenberg')
|
23146 |
},
|
23147 |
customWidth: {
|
23148 |
type: "boolean",
|
23400 |
headingAlignment: {
|
23401 |
type: "string",
|
23402 |
default: "left"
|
23403 |
+
},
|
23404 |
+
emptyHeadingTeaxt: {
|
23405 |
+
type: "string",
|
23406 |
+
default: __('Add a header to begin generating the table of contents', 'ultimate-addons-for-gutenberg')
|
23407 |
}
|
23408 |
};
|
23409 |
|
23410 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
23411 |
|
23412 |
/***/ }),
|
23413 |
+
/* 233 */
|
23414 |
/*!*********************************************!*\
|
23415 |
!*** ./src/blocks/table-of-contents/toc.js ***!
|
23416 |
\*********************************************/
|
23492 |
|
23493 |
var parseList = function parseList(list) {
|
23494 |
var items = [];
|
23495 |
+
if (list !== 'undefined' && list && list.length > 0) {
|
23496 |
+
list.forEach(function (item) {
|
23497 |
|
23498 |
+
if (Array.isArray(item)) {
|
23499 |
+
items.push(parseList(item));
|
23500 |
+
} else {
|
23501 |
|
23502 |
+
items.push(wp.element.createElement(
|
23503 |
+
'li',
|
23504 |
+
{ key: counter },
|
23505 |
+
wp.element.createElement('a', {
|
23506 |
+
href: '#' + item.link,
|
23507 |
+
dangerouslySetInnerHTML: {
|
23508 |
+
__html: item.text
|
23509 |
+
}
|
23510 |
+
})
|
23511 |
+
));
|
23512 |
+
counter++;
|
23513 |
+
}
|
23514 |
+
});
|
23515 |
+
ul_counter++;
|
23516 |
+
return wp.element.createElement(
|
23517 |
+
'ul',
|
23518 |
+
{ key: counter + '-' + ul_counter, className: 'uagb-toc__list' },
|
23519 |
+
items
|
23520 |
+
);
|
23521 |
+
}
|
23522 |
};
|
23523 |
|
23524 |
if (mappingHeaders != 'undefined' && headers && headers.length > 0 && headers.filter(function (header) {
|
23545 |
/* harmony default export */ __webpack_exports__["a"] = (TableOfContents);
|
23546 |
|
23547 |
/***/ }),
|
23548 |
+
/* 234 */
|
23549 |
/*!*************************************************!*\
|
23550 |
!*** ./node_modules/striptags/src/striptags.js ***!
|
23551 |
\*************************************************/
|
23793 |
|
23794 |
|
23795 |
/***/ }),
|
23796 |
+
/* 235 */
|
23797 |
/*!*****************************************!*\
|
23798 |
!*** ./src/blocks/how-to/attributes.js ***!
|
23799 |
\*****************************************/
|
24112 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
24113 |
|
24114 |
/***/ }),
|
24115 |
+
/* 236 */
|
24116 |
/*!**************************************!*\
|
24117 |
!*** ./src/blocks/how-to/style.scss ***!
|
24118 |
\**************************************/
|
24122 |
// removed by extract-text-webpack-plugin
|
24123 |
|
24124 |
/***/ }),
|
24125 |
+
/* 237 */
|
24126 |
/*!**************************************!*\
|
24127 |
!*** ./src/blocks/faq/attributes.js ***!
|
24128 |
\**************************************/
|
24466 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
24467 |
|
24468 |
/***/ }),
|
24469 |
+
/* 238 */
|
24470 |
/*!********************************************!*\
|
24471 |
!*** ./src/blocks/faq-child/attributes.js ***!
|
24472 |
\********************************************/
|
24512 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
24513 |
|
24514 |
/***/ }),
|
24515 |
+
/* 239 */
|
24516 |
/*!*****************************************!*\
|
24517 |
!*** ./src/blocks/review/components.js ***!
|
24518 |
\*****************************************/
|
24931 |
}(__WEBPACK_IMPORTED_MODULE_0_react__["Component"]);
|
24932 |
|
24933 |
/***/ }),
|
24934 |
+
/* 240 */
|
24935 |
+
/*!***************************************************************!*\
|
24936 |
+
!*** ./src/blocks/forms/child-blocks/phone/country-option.js ***!
|
24937 |
+
\***************************************************************/
|
24938 |
+
/*! exports provided: default */
|
24939 |
+
/*! exports used: default */
|
24940 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
24941 |
+
|
24942 |
+
"use strict";
|
24943 |
+
var countryOptions = [wp.element.createElement(
|
24944 |
+
"option",
|
24945 |
+
{ "data-countryCode": "GB", value: "+44" },
|
24946 |
+
"UK (+44)"
|
24947 |
+
), wp.element.createElement(
|
24948 |
+
"option",
|
24949 |
+
{ "data-countryCode": "US", value: "+1" },
|
24950 |
+
"USA (+1)"
|
24951 |
+
), wp.element.createElement(
|
24952 |
+
"option",
|
24953 |
+
{ "data-countryCode": "DZ", value: "+213" },
|
24954 |
+
"Algeria (+213)"
|
24955 |
+
), wp.element.createElement(
|
24956 |
+
"option",
|
24957 |
+
{ "data-countryCode": "AD", value: "+376" },
|
24958 |
+
"Andorra (+376)"
|
24959 |
+
), wp.element.createElement(
|
24960 |
+
"option",
|
24961 |
+
{ "data-countryCode": "AO", value: "+244" },
|
24962 |
+
"Angola (+244)"
|
24963 |
+
), wp.element.createElement(
|
24964 |
+
"option",
|
24965 |
+
{ "data-countryCode": "AI", value: "+1264" },
|
24966 |
+
"Anguilla (+1264)"
|
24967 |
+
), wp.element.createElement(
|
24968 |
+
"option",
|
24969 |
+
{ "data-countryCode": "AG", value: "+1268" },
|
24970 |
+
"Antigua & Barbuda (+1268)"
|
24971 |
+
), wp.element.createElement(
|
24972 |
+
"option",
|
24973 |
+
{ "data-countryCode": "AR", value: "+54" },
|
24974 |
+
"Argentina (+54)"
|
24975 |
+
), wp.element.createElement(
|
24976 |
+
"option",
|
24977 |
+
{ "data-countryCode": "AM", value: "+374" },
|
24978 |
+
"Armenia (+374)"
|
24979 |
+
), wp.element.createElement(
|
24980 |
+
"option",
|
24981 |
+
{ "data-countryCode": "AW", value: "+297" },
|
24982 |
+
"Aruba (+297)"
|
24983 |
+
), wp.element.createElement(
|
24984 |
+
"option",
|
24985 |
+
{ "data-countryCode": "AU", value: "+61" },
|
24986 |
+
"Australia (+61)"
|
24987 |
+
), wp.element.createElement(
|
24988 |
+
"option",
|
24989 |
+
{ "data-countryCode": "AT", value: "+43" },
|
24990 |
+
"Austria (+43)"
|
24991 |
+
), wp.element.createElement(
|
24992 |
+
"option",
|
24993 |
+
{ "data-countryCode": "AZ", value: "+994" },
|
24994 |
+
"Azerbaijan (+994)"
|
24995 |
+
), wp.element.createElement(
|
24996 |
+
"option",
|
24997 |
+
{ "data-countryCode": "BS", value: "+1242" },
|
24998 |
+
"Bahamas (+1242)"
|
24999 |
+
), wp.element.createElement(
|
25000 |
+
"option",
|
25001 |
+
{ "data-countryCode": "BH", value: "+973" },
|
25002 |
+
"Bahrain (+973)"
|
25003 |
+
), wp.element.createElement(
|
25004 |
+
"option",
|
25005 |
+
{ "data-countryCode": "BD", value: "+880" },
|
25006 |
+
"Bangladesh (+880)"
|
25007 |
+
), wp.element.createElement(
|
25008 |
+
"option",
|
25009 |
+
{ "data-countryCode": "BB", value: "+1246" },
|
25010 |
+
"Barbados (+1246)"
|
25011 |
+
), wp.element.createElement(
|
25012 |
+
"option",
|
25013 |
+
{ "data-countryCode": "BY", value: "+375" },
|
25014 |
+
"Belarus (+375)"
|
25015 |
+
), wp.element.createElement(
|
25016 |
+
"option",
|
25017 |
+
{ "data-countryCode": "BE", value: "+32" },
|
25018 |
+
"Belgium (+32)"
|
25019 |
+
), wp.element.createElement(
|
25020 |
+
"option",
|
25021 |
+
{ "data-countryCode": "BZ", value: "+501" },
|
25022 |
+
"Belize (+501)"
|
25023 |
+
), wp.element.createElement(
|
25024 |
+
"option",
|
25025 |
+
{ "data-countryCode": "BJ", value: "+229" },
|
25026 |
+
"Benin (+229)"
|
25027 |
+
), wp.element.createElement(
|
25028 |
+
"option",
|
25029 |
+
{ "data-countryCode": "BM", value: "+1441" },
|
25030 |
+
"Bermuda (+1441)"
|
25031 |
+
), wp.element.createElement(
|
25032 |
+
"option",
|
25033 |
+
{ "data-countryCode": "BT", value: "+975" },
|
25034 |
+
"Bhutan (+975)"
|
25035 |
+
), wp.element.createElement(
|
25036 |
+
"option",
|
25037 |
+
{ "data-countryCode": "BO", value: "+591" },
|
25038 |
+
"Bolivia (+591)"
|
25039 |
+
), wp.element.createElement(
|
25040 |
+
"option",
|
25041 |
+
{ "data-countryCode": "BA", value: "+387" },
|
25042 |
+
"Bosnia Herzegovina (+387)"
|
25043 |
+
), wp.element.createElement(
|
25044 |
+
"option",
|
25045 |
+
{ "data-countryCode": "BW", value: "+267" },
|
25046 |
+
"Botswana (+267)"
|
25047 |
+
), wp.element.createElement(
|
25048 |
+
"option",
|
25049 |
+
{ "data-countryCode": "BR", value: "+55" },
|
25050 |
+
"Brazil (+55)"
|
25051 |
+
), wp.element.createElement(
|
25052 |
+
"option",
|
25053 |
+
{ "data-countryCode": "BN", value: "+673" },
|
25054 |
+
"Brunei (+673)"
|
25055 |
+
), wp.element.createElement(
|
25056 |
+
"option",
|
25057 |
+
{ "data-countryCode": "BG", value: "+359" },
|
25058 |
+
"Bulgaria (+359)"
|
25059 |
+
), wp.element.createElement(
|
25060 |
+
"option",
|
25061 |
+
{ "data-countryCode": "BF", value: "+226" },
|
25062 |
+
"Burkina Faso (+226)"
|
25063 |
+
), wp.element.createElement(
|
25064 |
+
"option",
|
25065 |
+
{ "data-countryCode": "BI", value: "+257" },
|
25066 |
+
"Burundi (+257)"
|
25067 |
+
), wp.element.createElement(
|
25068 |
+
"option",
|
25069 |
+
{ "data-countryCode": "KH", value: "+855" },
|
25070 |
+
"Cambodia (+855)"
|
25071 |
+
), wp.element.createElement(
|
25072 |
+
"option",
|
25073 |
+
{ "data-countryCode": "CM", value: "+237" },
|
25074 |
+
"Cameroon (+237)"
|
25075 |
+
), wp.element.createElement(
|
25076 |
+
"option",
|
25077 |
+
{ "data-countryCode": "CA", value: "+1" },
|
25078 |
+
"Canada (+1)"
|
25079 |
+
), wp.element.createElement(
|
25080 |
+
"option",
|
25081 |
+
{ "data-countryCode": "CV", value: "+238" },
|
25082 |
+
"Cape Verde Islands (+238)"
|
25083 |
+
), wp.element.createElement(
|
25084 |
+
"option",
|
25085 |
+
{ "data-countryCode": "KY", value: "+1345" },
|
25086 |
+
"Cayman Islands (+1345)"
|
25087 |
+
), wp.element.createElement(
|
25088 |
+
"option",
|
25089 |
+
{ "data-countryCode": "CF", value: "+236" },
|
25090 |
+
"Central African Republic (+236)"
|
25091 |
+
), wp.element.createElement(
|
25092 |
+
"option",
|
25093 |
+
{ "data-countryCode": "CL", value: "+56" },
|
25094 |
+
"Chile (+56)"
|
25095 |
+
), wp.element.createElement(
|
25096 |
+
"option",
|
25097 |
+
{ "data-countryCode": "CN", value: "+86" },
|
25098 |
+
"China (+86)"
|
25099 |
+
), wp.element.createElement(
|
25100 |
+
"option",
|
25101 |
+
{ "data-countryCode": "CO", value: "+57" },
|
25102 |
+
"Colombia (+57)"
|
25103 |
+
), wp.element.createElement(
|
25104 |
+
"option",
|
25105 |
+
{ "data-countryCode": "KM", value: "+269" },
|
25106 |
+
"Comoros (+269)"
|
25107 |
+
), wp.element.createElement(
|
25108 |
+
"option",
|
25109 |
+
{ "data-countryCode": "CG", value: "+242" },
|
25110 |
+
"Congo (+242)"
|
25111 |
+
), wp.element.createElement(
|
25112 |
+
"option",
|
25113 |
+
{ "data-countryCode": "CK", value: "+682" },
|
25114 |
+
"Cook Islands (+682)"
|
25115 |
+
), wp.element.createElement(
|
25116 |
+
"option",
|
25117 |
+
{ "data-countryCode": "CR", value: "+506" },
|
25118 |
+
"Costa Rica (+506)"
|
25119 |
+
), wp.element.createElement(
|
25120 |
+
"option",
|
25121 |
+
{ "data-countryCode": "HR", value: "+385" },
|
25122 |
+
"Croatia (+385)"
|
25123 |
+
), wp.element.createElement(
|
25124 |
+
"option",
|
25125 |
+
{ "data-countryCode": "CU", value: "+53" },
|
25126 |
+
"Cuba (+53)"
|
25127 |
+
), wp.element.createElement(
|
25128 |
+
"option",
|
25129 |
+
{ "data-countryCode": "CY", value: "+90392" },
|
25130 |
+
"Cyprus North (+90392)"
|
25131 |
+
), wp.element.createElement(
|
25132 |
+
"option",
|
25133 |
+
{ "data-countryCode": "CY", value: "+357" },
|
25134 |
+
"Cyprus South (+357)"
|
25135 |
+
), wp.element.createElement(
|
25136 |
+
"option",
|
25137 |
+
{ "data-countryCode": "CZ", value: "+42" },
|
25138 |
+
"Czech Republic (+42)"
|
25139 |
+
), wp.element.createElement(
|
25140 |
+
"option",
|
25141 |
+
{ "data-countryCode": "DK", value: "+45" },
|
25142 |
+
"Denmark (+45)"
|
25143 |
+
), wp.element.createElement(
|
25144 |
+
"option",
|
25145 |
+
{ "data-countryCode": "DJ", value: "+253" },
|
25146 |
+
"Djibouti (+253)"
|
25147 |
+
), wp.element.createElement(
|
25148 |
+
"option",
|
25149 |
+
{ "data-countryCode": "DM", value: "+1809" },
|
25150 |
+
"Dominica (+1809)"
|
25151 |
+
), wp.element.createElement(
|
25152 |
+
"option",
|
25153 |
+
{ "data-countryCode": "DO", value: "+1809" },
|
25154 |
+
"Dominican Republic (+1809)"
|
25155 |
+
), wp.element.createElement(
|
25156 |
+
"option",
|
25157 |
+
{ "data-countryCode": "EC", value: "+593" },
|
25158 |
+
"Ecuador (+593)"
|
25159 |
+
), wp.element.createElement(
|
25160 |
+
"option",
|
25161 |
+
{ "data-countryCode": "EG", value: "+20" },
|
25162 |
+
"Egypt (+20)"
|
25163 |
+
), wp.element.createElement(
|
25164 |
+
"option",
|
25165 |
+
{ "data-countryCode": "SV", value: "+503" },
|
25166 |
+
"El Salvador (+503)"
|
25167 |
+
), wp.element.createElement(
|
25168 |
+
"option",
|
25169 |
+
{ "data-countryCode": "GQ", value: "+240" },
|
25170 |
+
"Equatorial Guinea (+240)"
|
25171 |
+
), wp.element.createElement(
|
25172 |
+
"option",
|
25173 |
+
{ "data-countryCode": "ER", value: "+291" },
|
25174 |
+
"Eritrea (+291)"
|
25175 |
+
), wp.element.createElement(
|
25176 |
+
"option",
|
25177 |
+
{ "data-countryCode": "EE", value: "+372" },
|
25178 |
+
"Estonia (+372)"
|
25179 |
+
), wp.element.createElement(
|
25180 |
+
"option",
|
25181 |
+
{ "data-countryCode": "ET", value: "+251" },
|
25182 |
+
"Ethiopia (+251)"
|
25183 |
+
), wp.element.createElement(
|
25184 |
+
"option",
|
25185 |
+
{ "data-countryCode": "FK", value: "+500" },
|
25186 |
+
"Falkland Islands (+500)"
|
25187 |
+
), wp.element.createElement(
|
25188 |
+
"option",
|
25189 |
+
{ "data-countryCode": "FO", value: "+298" },
|
25190 |
+
"Faroe Islands (+298)"
|
25191 |
+
), wp.element.createElement(
|
25192 |
+
"option",
|
25193 |
+
{ "data-countryCode": "FJ", value: "+679" },
|
25194 |
+
"Fiji (+679)"
|
25195 |
+
), wp.element.createElement(
|
25196 |
+
"option",
|
25197 |
+
{ "data-countryCode": "FI", value: "+358" },
|
25198 |
+
"Finland (+358)"
|
25199 |
+
), wp.element.createElement(
|
25200 |
+
"option",
|
25201 |
+
{ "data-countryCode": "FR", value: "+33" },
|
25202 |
+
"France (+33)"
|
25203 |
+
), wp.element.createElement(
|
25204 |
+
"option",
|
25205 |
+
{ "data-countryCode": "GF", value: "+594" },
|
25206 |
+
"French Guiana (+594)"
|
25207 |
+
), wp.element.createElement(
|
25208 |
+
"option",
|
25209 |
+
{ "data-countryCode": "PF", value: "+689" },
|
25210 |
+
"French Polynesia (+689)"
|
25211 |
+
), wp.element.createElement(
|
25212 |
+
"option",
|
25213 |
+
{ "data-countryCode": "GA", value: "+241" },
|
25214 |
+
"Gabon (+241)"
|
25215 |
+
), wp.element.createElement(
|
25216 |
+
"option",
|
25217 |
+
{ "data-countryCode": "GM", value: "+220" },
|
25218 |
+
"Gambia (+220)"
|
25219 |
+
), wp.element.createElement(
|
25220 |
+
"option",
|
25221 |
+
{ "data-countryCode": "GE", value: "+7880" },
|
25222 |
+
"Georgia (+7880)"
|
25223 |
+
), wp.element.createElement(
|
25224 |
+
"option",
|
25225 |
+
{ "data-countryCode": "DE", value: "+49" },
|
25226 |
+
"Germany (+49)"
|
25227 |
+
), wp.element.createElement(
|
25228 |
+
"option",
|
25229 |
+
{ "data-countryCode": "GH", value: "+233" },
|
25230 |
+
"Ghana (+233)"
|
25231 |
+
), wp.element.createElement(
|
25232 |
+
"option",
|
25233 |
+
{ "data-countryCode": "GI", value: "+350" },
|
25234 |
+
"Gibraltar (+350)"
|
25235 |
+
), wp.element.createElement(
|
25236 |
+
"option",
|
25237 |
+
{ "data-countryCode": "GR", value: "+30" },
|
25238 |
+
"Greece (+30)"
|
25239 |
+
), wp.element.createElement(
|
25240 |
+
"option",
|
25241 |
+
{ "data-countryCode": "GL", value: "+299" },
|
25242 |
+
"Greenland (+299)"
|
25243 |
+
), wp.element.createElement(
|
25244 |
+
"option",
|
25245 |
+
{ "data-countryCode": "GD", value: "+1473" },
|
25246 |
+
"Grenada (+1473)"
|
25247 |
+
), wp.element.createElement(
|
25248 |
+
"option",
|
25249 |
+
{ "data-countryCode": "GP", value: "+590" },
|
25250 |
+
"Guadeloupe (+590)"
|
25251 |
+
), wp.element.createElement(
|
25252 |
+
"option",
|
25253 |
+
{ "data-countryCode": "GU", value: "+671" },
|
25254 |
+
"Guam (+671)"
|
25255 |
+
), wp.element.createElement(
|
25256 |
+
"option",
|
25257 |
+
{ "data-countryCode": "GT", value: "+502" },
|
25258 |
+
"Guatemala (+502)"
|
25259 |
+
), wp.element.createElement(
|
25260 |
+
"option",
|
25261 |
+
{ "data-countryCode": "GN", value: "+224" },
|
25262 |
+
"Guinea (+224)"
|
25263 |
+
), wp.element.createElement(
|
25264 |
+
"option",
|
25265 |
+
{ "data-countryCode": "GW", value: "+245" },
|
25266 |
+
"Guinea - Bissau (+245)"
|
25267 |
+
), wp.element.createElement(
|
25268 |
+
"option",
|
25269 |
+
{ "data-countryCode": "GY", value: "+592" },
|
25270 |
+
"Guyana (+592)"
|
25271 |
+
), wp.element.createElement(
|
25272 |
+
"option",
|
25273 |
+
{ "data-countryCode": "HT", value: "+509" },
|
25274 |
+
"Haiti (+509)"
|
25275 |
+
), wp.element.createElement(
|
25276 |
+
"option",
|
25277 |
+
{ "data-countryCode": "HN", value: "+504" },
|
25278 |
+
"Honduras (+504)"
|
25279 |
+
), wp.element.createElement(
|
25280 |
+
"option",
|
25281 |
+
{ "data-countryCode": "HK", value: "+852" },
|
25282 |
+
"Hong Kong (+852)"
|
25283 |
+
), wp.element.createElement(
|
25284 |
+
"option",
|
25285 |
+
{ "data-countryCode": "HU", value: "+36" },
|
25286 |
+
"Hungary (+36)"
|
25287 |
+
), wp.element.createElement(
|
25288 |
+
"option",
|
25289 |
+
{ "data-countryCode": "IS", value: "+354" },
|
25290 |
+
"Iceland (+354)"
|
25291 |
+
), wp.element.createElement(
|
25292 |
+
"option",
|
25293 |
+
{ "data-countryCode": "IN", value: "+91" },
|
25294 |
+
"India (+91)"
|
25295 |
+
), wp.element.createElement(
|
25296 |
+
"option",
|
25297 |
+
{ "data-countryCode": "ID", value: "+62" },
|
25298 |
+
"Indonesia (+62)"
|
25299 |
+
), wp.element.createElement(
|
25300 |
+
"option",
|
25301 |
+
{ "data-countryCode": "IR", value: "+98" },
|
25302 |
+
"Iran (+98)"
|
25303 |
+
), wp.element.createElement(
|
25304 |
+
"option",
|
25305 |
+
{ "data-countryCode": "IQ", value: "+964" },
|
25306 |
+
"Iraq (+964)"
|
25307 |
+
), wp.element.createElement(
|
25308 |
+
"option",
|
25309 |
+
{ "data-countryCode": "IE", value: "+353" },
|
25310 |
+
"Ireland (+353)"
|
25311 |
+
), wp.element.createElement(
|
25312 |
+
"option",
|
25313 |
+
{ "data-countryCode": "IL", value: "+972" },
|
25314 |
+
"Israel (+972)"
|
25315 |
+
), wp.element.createElement(
|
25316 |
+
"option",
|
25317 |
+
{ "data-countryCode": "IT", value: "+39" },
|
25318 |
+
"Italy (+39)"
|
25319 |
+
), wp.element.createElement(
|
25320 |
+
"option",
|
25321 |
+
{ "data-countryCode": "JM", value: "+1876" },
|
25322 |
+
"Jamaica (+1876)"
|
25323 |
+
), wp.element.createElement(
|
25324 |
+
"option",
|
25325 |
+
{ "data-countryCode": "JP", value: "+81" },
|
25326 |
+
"Japan (+81)"
|
25327 |
+
), wp.element.createElement(
|
25328 |
+
"option",
|
25329 |
+
{ "data-countryCode": "JO", value: "+962" },
|
25330 |
+
"Jordan (+962)"
|
25331 |
+
), wp.element.createElement(
|
25332 |
+
"option",
|
25333 |
+
{ "data-countryCode": "KZ", value: "+7" },
|
25334 |
+
"Kazakhstan (+7)"
|
25335 |
+
), wp.element.createElement(
|
25336 |
+
"option",
|
25337 |
+
{ "data-countryCode": "KE", value: "+254" },
|
25338 |
+
"Kenya (+254)"
|
25339 |
+
), wp.element.createElement(
|
25340 |
+
"option",
|
25341 |
+
{ "data-countryCode": "KI", value: "+686" },
|
25342 |
+
"Kiribati (+686)"
|
25343 |
+
), wp.element.createElement(
|
25344 |
+
"option",
|
25345 |
+
{ "data-countryCode": "KP", value: "+850" },
|
25346 |
+
"Korea North (+850)"
|
25347 |
+
), wp.element.createElement(
|
25348 |
+
"option",
|
25349 |
+
{ "data-countryCode": "KR", value: "+82" },
|
25350 |
+
"Korea South (+82)"
|
25351 |
+
), wp.element.createElement(
|
25352 |
+
"option",
|
25353 |
+
{ "data-countryCode": "KW", value: "+965" },
|
25354 |
+
"Kuwait (+965)"
|
25355 |
+
), wp.element.createElement(
|
25356 |
+
"option",
|
25357 |
+
{ "data-countryCode": "KG", value: "+996" },
|
25358 |
+
"Kyrgyzstan (+996)"
|
25359 |
+
), wp.element.createElement(
|
25360 |
+
"option",
|
25361 |
+
{ "data-countryCode": "LA", value: "+856" },
|
25362 |
+
"Laos (+856)"
|
25363 |
+
), wp.element.createElement(
|
25364 |
+
"option",
|
25365 |
+
{ "data-countryCode": "LV", value: "+371" },
|
25366 |
+
"Latvia (+371)"
|
25367 |
+
), wp.element.createElement(
|
25368 |
+
"option",
|
25369 |
+
{ "data-countryCode": "LB", value: "+961" },
|
25370 |
+
"Lebanon (+961)"
|
25371 |
+
), wp.element.createElement(
|
25372 |
+
"option",
|
25373 |
+
{ "data-countryCode": "LS", value: "+266" },
|
25374 |
+
"Lesotho (+266)"
|
25375 |
+
), wp.element.createElement(
|
25376 |
+
"option",
|
25377 |
+
{ "data-countryCode": "LR", value: "+231" },
|
25378 |
+
"Liberia (+231)"
|
25379 |
+
), wp.element.createElement(
|
25380 |
+
"option",
|
25381 |
+
{ "data-countryCode": "LY", value: "+218" },
|
25382 |
+
"Libya (+218)"
|
25383 |
+
), wp.element.createElement(
|
25384 |
+
"option",
|
25385 |
+
{ "data-countryCode": "LI", value: "+417" },
|
25386 |
+
"Liechtenstein (+417)"
|
25387 |
+
), wp.element.createElement(
|
25388 |
+
"option",
|
25389 |
+
{ "data-countryCode": "LT", value: "+370" },
|
25390 |
+
"Lithuania (+370)"
|
25391 |
+
), wp.element.createElement(
|
25392 |
+
"option",
|
25393 |
+
{ "data-countryCode": "LU", value: "+352" },
|
25394 |
+
"Luxembourg (+352)"
|
25395 |
+
), wp.element.createElement(
|
25396 |
+
"option",
|
25397 |
+
{ "data-countryCode": "MO", value: "+853" },
|
25398 |
+
"Macao (+853)"
|
25399 |
+
), wp.element.createElement(
|
25400 |
+
"option",
|
25401 |
+
{ "data-countryCode": "MK", value: "+389" },
|
25402 |
+
"Macedonia (+389)"
|
25403 |
+
), wp.element.createElement(
|
25404 |
+
"option",
|
25405 |
+
{ "data-countryCode": "MG", value: "+261" },
|
25406 |
+
"Madagascar (+261)"
|
25407 |
+
), wp.element.createElement(
|
25408 |
+
"option",
|
25409 |
+
{ "data-countryCode": "MW", value: "+265" },
|
25410 |
+
"Malawi (+265)"
|
25411 |
+
), wp.element.createElement(
|
25412 |
+
"option",
|
25413 |
+
{ "data-countryCode": "MY", value: "+60" },
|
25414 |
+
"Malaysia (+60)"
|
25415 |
+
), wp.element.createElement(
|
25416 |
+
"option",
|
25417 |
+
{ "data-countryCode": "MV", value: "+960" },
|
25418 |
+
"Maldives (+960)"
|
25419 |
+
), wp.element.createElement(
|
25420 |
+
"option",
|
25421 |
+
{ "data-countryCode": "ML", value: "+223" },
|
25422 |
+
"Mali (+223)"
|
25423 |
+
), wp.element.createElement(
|
25424 |
+
"option",
|
25425 |
+
{ "data-countryCode": "MT", value: "+356" },
|
25426 |
+
"Malta (+356)"
|
25427 |
+
), wp.element.createElement(
|
25428 |
+
"option",
|
25429 |
+
{ "data-countryCode": "MH", value: "+692" },
|
25430 |
+
"Marshall Islands (+692)"
|
25431 |
+
), wp.element.createElement(
|
25432 |
+
"option",
|
25433 |
+
{ "data-countryCode": "MQ", value: "+596" },
|
25434 |
+
"Martinique (+596)"
|
25435 |
+
), wp.element.createElement(
|
25436 |
+
"option",
|
25437 |
+
{ "data-countryCode": "MR", value: "+222" },
|
25438 |
+
"Mauritania (+222)"
|
25439 |
+
), wp.element.createElement(
|
25440 |
+
"option",
|
25441 |
+
{ "data-countryCode": "YT", value: "+269" },
|
25442 |
+
"Mayotte (+269)"
|
25443 |
+
), wp.element.createElement(
|
25444 |
+
"option",
|
25445 |
+
{ "data-countryCode": "MX", value: "+52" },
|
25446 |
+
"Mexico (+52)"
|
25447 |
+
), wp.element.createElement(
|
25448 |
+
"option",
|
25449 |
+
{ "data-countryCode": "FM", value: "+691" },
|
25450 |
+
"Micronesia (+691)"
|
25451 |
+
), wp.element.createElement(
|
25452 |
+
"option",
|
25453 |
+
{ "data-countryCode": "MD", value: "+373" },
|
25454 |
+
"Moldova (+373)"
|
25455 |
+
), wp.element.createElement(
|
25456 |
+
"option",
|
25457 |
+
{ "data-countryCode": "MC", value: "+377" },
|
25458 |
+
"Monaco (+377)"
|
25459 |
+
), wp.element.createElement(
|
25460 |
+
"option",
|
25461 |
+
{ "data-countryCode": "MN", value: "+976" },
|
25462 |
+
"Mongolia (+976)"
|
25463 |
+
), wp.element.createElement(
|
25464 |
+
"option",
|
25465 |
+
{ "data-countryCode": "MS", value: "+1664" },
|
25466 |
+
"Montserrat (+1664)"
|
25467 |
+
), wp.element.createElement(
|
25468 |
+
"option",
|
25469 |
+
{ "data-countryCode": "MA", value: "+212" },
|
25470 |
+
"Morocco (+212)"
|
25471 |
+
), wp.element.createElement(
|
25472 |
+
"option",
|
25473 |
+
{ "data-countryCode": "MZ", value: "+258" },
|
25474 |
+
"Mozambique (+258)"
|
25475 |
+
), wp.element.createElement(
|
25476 |
+
"option",
|
25477 |
+
{ "data-countryCode": "MN", value: "+95" },
|
25478 |
+
"Myanmar (+95)"
|
25479 |
+
), wp.element.createElement(
|
25480 |
+
"option",
|
25481 |
+
{ "data-countryCode": "NA", value: "+264" },
|
25482 |
+
"Namibia (+264)"
|
25483 |
+
), wp.element.createElement(
|
25484 |
+
"option",
|
25485 |
+
{ "data-countryCode": "NR", value: "+674" },
|
25486 |
+
"Nauru (+674)"
|
25487 |
+
), wp.element.createElement(
|
25488 |
+
"option",
|
25489 |
+
{ "data-countryCode": "NP", value: "+977" },
|
25490 |
+
"Nepal (+977)"
|
25491 |
+
), wp.element.createElement(
|
25492 |
+
"option",
|
25493 |
+
{ "data-countryCode": "NL", value: "+31" },
|
25494 |
+
"Netherlands (+31)"
|
25495 |
+
), wp.element.createElement(
|
25496 |
+
"option",
|
25497 |
+
{ "data-countryCode": "NC", value: "+687" },
|
25498 |
+
"New Caledonia (+687)"
|
25499 |
+
), wp.element.createElement(
|
25500 |
+
"option",
|
25501 |
+
{ "data-countryCode": "NZ", value: "+64" },
|
25502 |
+
"New Zealand (+64)"
|
25503 |
+
), wp.element.createElement(
|
25504 |
+
"option",
|
25505 |
+
{ "data-countryCode": "NI", value: "+505" },
|
25506 |
+
"Nicaragua (+505)"
|
25507 |
+
), wp.element.createElement(
|
25508 |
+
"option",
|
25509 |
+
{ "data-countryCode": "NE", value: "+227" },
|
25510 |
+
"Niger (+227)"
|
25511 |
+
), wp.element.createElement(
|
25512 |
+
"option",
|
25513 |
+
{ "data-countryCode": "NG", value: "+234" },
|
25514 |
+
"Nigeria (+234)"
|
25515 |
+
), wp.element.createElement(
|
25516 |
+
"option",
|
25517 |
+
{ "data-countryCode": "NU", value: "+683" },
|
25518 |
+
"Niue (+683)"
|
25519 |
+
), wp.element.createElement(
|
25520 |
+
"option",
|
25521 |
+
{ "data-countryCode": "NF", value: "+672" },
|
25522 |
+
"Norfolk Islands (+672)"
|
25523 |
+
), wp.element.createElement(
|
25524 |
+
"option",
|
25525 |
+
{ "data-countryCode": "NP", value: "+670" },
|
25526 |
+
"Northern Marianas (+670)"
|
25527 |
+
), wp.element.createElement(
|
25528 |
+
"option",
|
25529 |
+
{ "data-countryCode": "NO", value: "+47" },
|
25530 |
+
"Norway (+47)"
|
25531 |
+
), wp.element.createElement(
|
25532 |
+
"option",
|
25533 |
+
{ "data-countryCode": "OM", value: "+968" },
|
25534 |
+
"Oman (+968)"
|
25535 |
+
), wp.element.createElement(
|
25536 |
+
"option",
|
25537 |
+
{ "data-countryCode": "PW", value: "+680" },
|
25538 |
+
"Palau (+680)"
|
25539 |
+
), wp.element.createElement(
|
25540 |
+
"option",
|
25541 |
+
{ "data-countryCode": "PA", value: "+507" },
|
25542 |
+
"Panama (+507)"
|
25543 |
+
), wp.element.createElement(
|
25544 |
+
"option",
|
25545 |
+
{ "data-countryCode": "PG", value: "+675" },
|
25546 |
+
"Papua New Guinea (+675)"
|
25547 |
+
), wp.element.createElement(
|
25548 |
+
"option",
|
25549 |
+
{ "data-countryCode": "PY", value: "+595" },
|
25550 |
+
"Paraguay (+595)"
|
25551 |
+
), wp.element.createElement(
|
25552 |
+
"option",
|
25553 |
+
{ "data-countryCode": "PE", value: "+51" },
|
25554 |
+
"Peru (+51)"
|
25555 |
+
), wp.element.createElement(
|
25556 |
+
"option",
|
25557 |
+
{ "data-countryCode": "PH", value: "+63" },
|
25558 |
+
"Philippines (+63)"
|
25559 |
+
), wp.element.createElement(
|
25560 |
+
"option",
|
25561 |
+
{ "data-countryCode": "PL", value: "+48" },
|
25562 |
+
"Poland (+48)"
|
25563 |
+
), wp.element.createElement(
|
25564 |
+
"option",
|
25565 |
+
{ "data-countryCode": "PT", value: "+351" },
|
25566 |
+
"Portugal (+351)"
|
25567 |
+
), wp.element.createElement(
|
25568 |
+
"option",
|
25569 |
+
{ "data-countryCode": "PR", value: "+1787" },
|
25570 |
+
"Puerto Rico (+1787)"
|
25571 |
+
), wp.element.createElement(
|
25572 |
+
"option",
|
25573 |
+
{ "data-countryCode": "QA", value: "+974" },
|
25574 |
+
"Qatar (+974)"
|
25575 |
+
), wp.element.createElement(
|
25576 |
+
"option",
|
25577 |
+
{ "data-countryCode": "RE", value: "+262" },
|
25578 |
+
"Reunion (+262)"
|
25579 |
+
), wp.element.createElement(
|
25580 |
+
"option",
|
25581 |
+
{ "data-countryCode": "RO", value: "+40" },
|
25582 |
+
"Romania (+40)"
|
25583 |
+
), wp.element.createElement(
|
25584 |
+
"option",
|
25585 |
+
{ "data-countryCode": "RU", value: "+7" },
|
25586 |
+
"Russia (+7)"
|
25587 |
+
), wp.element.createElement(
|
25588 |
+
"option",
|
25589 |
+
{ "data-countryCode": "RW", value: "+250" },
|
25590 |
+
"Rwanda (+250)"
|
25591 |
+
), wp.element.createElement(
|
25592 |
+
"option",
|
25593 |
+
{ "data-countryCode": "SM", value: "+378" },
|
25594 |
+
"San Marino (+378)"
|
25595 |
+
), wp.element.createElement(
|
25596 |
+
"option",
|
25597 |
+
{ "data-countryCode": "ST", value: "+239" },
|
25598 |
+
"Sao Tome & Principe (+239)"
|
25599 |
+
), wp.element.createElement(
|
25600 |
+
"option",
|
25601 |
+
{ "data-countryCode": "SA", value: "+966" },
|
25602 |
+
"Saudi Arabia (+966)"
|
25603 |
+
), wp.element.createElement(
|
25604 |
+
"option",
|
25605 |
+
{ "data-countryCode": "SN", value: "+221" },
|
25606 |
+
"Senegal (+221)"
|
25607 |
+
), wp.element.createElement(
|
25608 |
+
"option",
|
25609 |
+
{ "data-countryCode": "CS", value: "+381" },
|
25610 |
+
"Serbia (+381)"
|
25611 |
+
), wp.element.createElement(
|
25612 |
+
"option",
|
25613 |
+
{ "data-countryCode": "SC", value: "+248" },
|
25614 |
+
"Seychelles (+248)"
|
25615 |
+
), wp.element.createElement(
|
25616 |
+
"option",
|
25617 |
+
{ "data-countryCode": "SL", value: "+232" },
|
25618 |
+
"Sierra Leone (+232)"
|
25619 |
+
), wp.element.createElement(
|
25620 |
+
"option",
|
25621 |
+
{ "data-countryCode": "SG", value: "+65" },
|
25622 |
+
"Singapore (+65)"
|
25623 |
+
), wp.element.createElement(
|
25624 |
+
"option",
|
25625 |
+
{ "data-countryCode": "SK", value: "+421" },
|
25626 |
+
"Slovak Republic (+421)"
|
25627 |
+
), wp.element.createElement(
|
25628 |
+
"option",
|
25629 |
+
{ "data-countryCode": "SI", value: "+386" },
|
25630 |
+
"Slovenia (+386)"
|
25631 |
+
), wp.element.createElement(
|
25632 |
+
"option",
|
25633 |
+
{ "data-countryCode": "SB", value: "+677" },
|
25634 |
+
"Solomon Islands (+677)"
|
25635 |
+
), wp.element.createElement(
|
25636 |
+
"option",
|
25637 |
+
{ "data-countryCode": "SO", value: "+252" },
|
25638 |
+
"Somalia (+252)"
|
25639 |
+
), wp.element.createElement(
|
25640 |
+
"option",
|
25641 |
+
{ "data-countryCode": "ZA", value: "+27" },
|
25642 |
+
"South Africa (+27)"
|
25643 |
+
), wp.element.createElement(
|
25644 |
+
"option",
|
25645 |
+
{ "data-countryCode": "ES", value: "+34" },
|
25646 |
+
"Spain (+34)"
|
25647 |
+
), wp.element.createElement(
|
25648 |
+
"option",
|
25649 |
+
{ "data-countryCode": "LK", value: "+94" },
|
25650 |
+
"Sri Lanka (+94)"
|
25651 |
+
), wp.element.createElement(
|
25652 |
+
"option",
|
25653 |
+
{ "data-countryCode": "SH", value: "+290" },
|
25654 |
+
"St. Helena (+290)"
|
25655 |
+
), wp.element.createElement(
|
25656 |
+
"option",
|
25657 |
+
{ "data-countryCode": "KN", value: "+1869" },
|
25658 |
+
"St. Kitts (+1869)"
|
25659 |
+
), wp.element.createElement(
|
25660 |
+
"option",
|
25661 |
+
{ "data-countryCode": "SC", value: "+1758" },
|
25662 |
+
"St. Lucia (+1758)"
|
25663 |
+
), wp.element.createElement(
|
25664 |
+
"option",
|
25665 |
+
{ "data-countryCode": "SD", value: "+249" },
|
25666 |
+
"Sudan (+249)"
|
25667 |
+
), wp.element.createElement(
|
25668 |
+
"option",
|
25669 |
+
{ "data-countryCode": "SR", value: "+597" },
|
25670 |
+
"Suriname (+597)"
|
25671 |
+
), wp.element.createElement(
|
25672 |
+
"option",
|
25673 |
+
{ "data-countryCode": "SZ", value: "+268" },
|
25674 |
+
"Swaziland (+268)"
|
25675 |
+
), wp.element.createElement(
|
25676 |
+
"option",
|
25677 |
+
{ "data-countryCode": "SE", value: "+46" },
|
25678 |
+
"Sweden (+46)"
|
25679 |
+
), wp.element.createElement(
|
25680 |
+
"option",
|
25681 |
+
{ "data-countryCode": "CH", value: "+41" },
|
25682 |
+
"Switzerland (+41)"
|
25683 |
+
), wp.element.createElement(
|
25684 |
+
"option",
|
25685 |
+
{ "data-countryCode": "SI", value: "+963" },
|
25686 |
+
"Syria (+963)"
|
25687 |
+
), wp.element.createElement(
|
25688 |
+
"option",
|
25689 |
+
{ "data-countryCode": "TW", value: "+886" },
|
25690 |
+
"Taiwan (+886)"
|
25691 |
+
), wp.element.createElement(
|
25692 |
+
"option",
|
25693 |
+
{ "data-countryCode": "TJ", value: "+7" },
|
25694 |
+
"Tajikstan (+7)"
|
25695 |
+
), wp.element.createElement(
|
25696 |
+
"option",
|
25697 |
+
{ "data-countryCode": "TH", value: "+66" },
|
25698 |
+
"Thailand (+66)"
|
25699 |
+
), wp.element.createElement(
|
25700 |
+
"option",
|
25701 |
+
{ "data-countryCode": "TG", value: "+228" },
|
25702 |
+
"Togo (+228)"
|
25703 |
+
), wp.element.createElement(
|
25704 |
+
"option",
|
25705 |
+
{ "data-countryCode": "TO", value: "+676" },
|
25706 |
+
"Tonga (+676)"
|
25707 |
+
), wp.element.createElement(
|
25708 |
+
"option",
|
25709 |
+
{ "data-countryCode": "TT", value: "+1868" },
|
25710 |
+
"Trinidad & Tobago (+1868)"
|
25711 |
+
), wp.element.createElement(
|
25712 |
+
"option",
|
25713 |
+
{ "data-countryCode": "TN", value: "+216" },
|
25714 |
+
"Tunisia (+216)"
|
25715 |
+
), wp.element.createElement(
|
25716 |
+
"option",
|
25717 |
+
{ "data-countryCode": "TR", value: "+90" },
|
25718 |
+
"Turkey (+90)"
|
25719 |
+
), wp.element.createElement(
|
25720 |
+
"option",
|
25721 |
+
{ "data-countryCode": "TM", value: "+7" },
|
25722 |
+
"Turkmenistan (+7)"
|
25723 |
+
), wp.element.createElement(
|
25724 |
+
"option",
|
25725 |
+
{ "data-countryCode": "TM", value: "+993" },
|
25726 |
+
"Turkmenistan (+993)"
|
25727 |
+
), wp.element.createElement(
|
25728 |
+
"option",
|
25729 |
+
{ "data-countryCode": "TC", value: "+1649" },
|
25730 |
+
"Turks & Caicos Islands (+1649)"
|
25731 |
+
), wp.element.createElement(
|
25732 |
+
"option",
|
25733 |
+
{ "data-countryCode": "TV", value: "+688" },
|
25734 |
+
"Tuvalu (+688)"
|
25735 |
+
), wp.element.createElement(
|
25736 |
+
"option",
|
25737 |
+
{ "data-countryCode": "UG", value: "+256" },
|
25738 |
+
"Uganda (+256)"
|
25739 |
+
), wp.element.createElement(
|
25740 |
+
"option",
|
25741 |
+
{ "data-countryCode": "UA", value: "+380" },
|
25742 |
+
"Ukraine (+380)"
|
25743 |
+
), wp.element.createElement(
|
25744 |
+
"option",
|
25745 |
+
{ "data-countryCode": "AE", value: "+971" },
|
25746 |
+
"United Arab Emirates (+971)"
|
25747 |
+
), wp.element.createElement(
|
25748 |
+
"option",
|
25749 |
+
{ "data-countryCode": "UY", value: "+598" },
|
25750 |
+
"Uruguay (+598)"
|
25751 |
+
), wp.element.createElement(
|
25752 |
+
"option",
|
25753 |
+
{ "data-countryCode": "UZ", value: "+7" },
|
25754 |
+
"Uzbekistan (+7)"
|
25755 |
+
), wp.element.createElement(
|
25756 |
+
"option",
|
25757 |
+
{ "data-countryCode": "VU", value: "+678" },
|
25758 |
+
"Vanuatu (+678)"
|
25759 |
+
), wp.element.createElement(
|
25760 |
+
"option",
|
25761 |
+
{ "data-countryCode": "VA", value: "+379" },
|
25762 |
+
"Vatican City (+379)"
|
25763 |
+
), wp.element.createElement(
|
25764 |
+
"option",
|
25765 |
+
{ "data-countryCode": "VE", value: "+58" },
|
25766 |
+
"Venezuela (+58)"
|
25767 |
+
), wp.element.createElement(
|
25768 |
+
"option",
|
25769 |
+
{ "data-countryCode": "VN", value: "+84" },
|
25770 |
+
"Vietnam (+84)"
|
25771 |
+
), wp.element.createElement(
|
25772 |
+
"option",
|
25773 |
+
{ "data-countryCode": "VG", value: "+84" },
|
25774 |
+
"Virgin Islands - British (+1284)"
|
25775 |
+
), wp.element.createElement(
|
25776 |
+
"option",
|
25777 |
+
{ "data-countryCode": "VI", value: "+84" },
|
25778 |
+
"Virgin Islands - US (+1340)"
|
25779 |
+
), wp.element.createElement(
|
25780 |
+
"option",
|
25781 |
+
{ "data-countryCode": "WF", value: "+681" },
|
25782 |
+
"Wallis & Futuna (+681)"
|
25783 |
+
), wp.element.createElement(
|
25784 |
+
"option",
|
25785 |
+
{ "data-countryCode": "YE", value: "+969" },
|
25786 |
+
"Yemen (North)(+969)"
|
25787 |
+
), wp.element.createElement(
|
25788 |
+
"option",
|
25789 |
+
{ "data-countryCode": "YE", value: "+967" },
|
25790 |
+
"Yemen (South)(+967)"
|
25791 |
+
), wp.element.createElement(
|
25792 |
+
"option",
|
25793 |
+
{ "data-countryCode": "ZM", value: "+260" },
|
25794 |
+
"Zambia (+260)"
|
25795 |
+
), wp.element.createElement(
|
25796 |
+
"option",
|
25797 |
+
{ "data-countryCode": "ZW", value: "+263" },
|
25798 |
+
"Zimbabwe (+263)"
|
25799 |
+
)];
|
25800 |
+
|
25801 |
+
/* harmony default export */ __webpack_exports__["a"] = (countryOptions);
|
25802 |
+
|
25803 |
+
/***/ }),
|
25804 |
+
/* 241 */
|
25805 |
/*!******************************************************!*\
|
25806 |
!*** ./node_modules/core-js/library/modules/_ctx.js ***!
|
25807 |
\******************************************************/
|
25810 |
/***/ (function(module, exports, __webpack_require__) {
|
25811 |
|
25812 |
// optional / simple context binding
|
25813 |
+
var aFunction = __webpack_require__(/*! ./_a-function */ 824);
|
25814 |
module.exports = function (fn, that, length) {
|
25815 |
aFunction(fn);
|
25816 |
if (that === undefined) return fn;
|
25832 |
|
25833 |
|
25834 |
/***/ }),
|
25835 |
+
/* 242 */
|
25836 |
/*!*****************************************************************!*\
|
25837 |
!*** ./node_modules/core-js/library/modules/_ie8-dom-define.js ***!
|
25838 |
\*****************************************************************/
|
25841 |
/***/ (function(module, exports, __webpack_require__) {
|
25842 |
|
25843 |
module.exports = !__webpack_require__(/*! ./_descriptors */ 25) && !__webpack_require__(/*! ./_fails */ 38)(function () {
|
25844 |
+
return Object.defineProperty(__webpack_require__(/*! ./_dom-create */ 243)('div'), 'a', { get: function () { return 7; } }).a != 7;
|
25845 |
});
|
25846 |
|
25847 |
|
25848 |
/***/ }),
|
25849 |
+
/* 243 */
|
25850 |
/*!*************************************************************!*\
|
25851 |
!*** ./node_modules/core-js/library/modules/_dom-create.js ***!
|
25852 |
\*************************************************************/
|
25864 |
|
25865 |
|
25866 |
/***/ }),
|
25867 |
+
/* 244 */
|
25868 |
/*!***********************************************************************!*\
|
25869 |
!*** ./node_modules/core-js/library/modules/_object-keys-internal.js ***!
|
25870 |
\***********************************************************************/
|
25874 |
|
25875 |
var has = __webpack_require__(/*! ./_has */ 26);
|
25876 |
var toIObject = __webpack_require__(/*! ./_to-iobject */ 39);
|
25877 |
+
var arrayIndexOf = __webpack_require__(/*! ./_array-includes */ 826)(false);
|
25878 |
+
var IE_PROTO = __webpack_require__(/*! ./_shared-key */ 136)('IE_PROTO');
|
25879 |
|
25880 |
module.exports = function (object, names) {
|
25881 |
var O = toIObject(object);
|
25892 |
|
25893 |
|
25894 |
/***/ }),
|
25895 |
+
/* 245 */
|
25896 |
/*!**********************************************************!*\
|
25897 |
!*** ./node_modules/core-js/library/modules/_iobject.js ***!
|
25898 |
\**********************************************************/
|
25901 |
/***/ (function(module, exports, __webpack_require__) {
|
25902 |
|
25903 |
// fallback for non-array-like ES3 and non-enumerable old V8 strings
|
25904 |
+
var cof = __webpack_require__(/*! ./_cof */ 246);
|
25905 |
// eslint-disable-next-line no-prototype-builtins
|
25906 |
module.exports = Object('z').propertyIsEnumerable(0) ? Object : function (it) {
|
25907 |
return cof(it) == 'String' ? it.split('') : Object(it);
|
25909 |
|
25910 |
|
25911 |
/***/ }),
|
25912 |
+
/* 246 */
|
25913 |
/*!******************************************************!*\
|
25914 |
!*** ./node_modules/core-js/library/modules/_cof.js ***!
|
25915 |
\******************************************************/
|
25925 |
|
25926 |
|
25927 |
/***/ }),
|
25928 |
+
/* 247 */
|
25929 |
/*!*************************************************************!*\
|
25930 |
!*** ./node_modules/core-js/library/modules/_object-gpo.js ***!
|
25931 |
\*************************************************************/
|
25935 |
|
25936 |
// 19.1.2.9 / 15.2.3.2 Object.getPrototypeOf(O)
|
25937 |
var has = __webpack_require__(/*! ./_has */ 26);
|
25938 |
+
var toObject = __webpack_require__(/*! ./_to-object */ 140);
|
25939 |
+
var IE_PROTO = __webpack_require__(/*! ./_shared-key */ 136)('IE_PROTO');
|
25940 |
var ObjectProto = Object.prototype;
|
25941 |
|
25942 |
module.exports = Object.getPrototypeOf || function (O) {
|
25949 |
|
25950 |
|
25951 |
/***/ }),
|
25952 |
+
/* 248 */
|
25953 |
/*!******************************************************!*\
|
25954 |
!*** ./node_modules/babel-runtime/helpers/typeof.js ***!
|
25955 |
\******************************************************/
|
25962 |
|
25963 |
exports.__esModule = true;
|
25964 |
|
25965 |
+
var _iterator = __webpack_require__(/*! ../core-js/symbol/iterator */ 839);
|
25966 |
|
25967 |
var _iterator2 = _interopRequireDefault(_iterator);
|
25968 |
|
25969 |
+
var _symbol = __webpack_require__(/*! ../core-js/symbol */ 850);
|
25970 |
|
25971 |
var _symbol2 = _interopRequireDefault(_symbol);
|
25972 |
|
25981 |
};
|
25982 |
|
25983 |
/***/ }),
|
25984 |
+
/* 249 */
|
25985 |
/*!**************************************************************!*\
|
25986 |
!*** ./node_modules/core-js/library/modules/_iter-define.js ***!
|
25987 |
\**************************************************************/
|
25991 |
|
25992 |
"use strict";
|
25993 |
|
25994 |
+
var LIBRARY = __webpack_require__(/*! ./_library */ 71);
|
25995 |
var $export = __webpack_require__(/*! ./_export */ 23);
|
25996 |
+
var redefine = __webpack_require__(/*! ./_redefine */ 250);
|
25997 |
var hide = __webpack_require__(/*! ./_hide */ 36);
|
25998 |
+
var Iterators = __webpack_require__(/*! ./_iterators */ 141);
|
25999 |
+
var $iterCreate = __webpack_require__(/*! ./_iter-create */ 843);
|
26000 |
+
var setToStringTag = __webpack_require__(/*! ./_set-to-string-tag */ 143);
|
26001 |
+
var getPrototypeOf = __webpack_require__(/*! ./_object-gpo */ 247);
|
26002 |
var ITERATOR = __webpack_require__(/*! ./_wks */ 40)('iterator');
|
26003 |
var BUGGY = !([].keys && 'next' in [].keys()); // Safari has buggy iterators w/o `next`
|
26004 |
var FF_ITERATOR = '@@iterator';
|
26062 |
|
26063 |
|
26064 |
/***/ }),
|
26065 |
+
/* 250 */
|
26066 |
/*!***********************************************************!*\
|
26067 |
!*** ./node_modules/core-js/library/modules/_redefine.js ***!
|
26068 |
\***********************************************************/
|
26074 |
|
26075 |
|
26076 |
/***/ }),
|
26077 |
+
/* 251 */
|
26078 |
/*!**************************************************************!*\
|
26079 |
!*** ./node_modules/core-js/library/modules/_object-gopn.js ***!
|
26080 |
\**************************************************************/
|
26083 |
/***/ (function(module, exports, __webpack_require__) {
|
26084 |
|
26085 |
// 19.1.2.7 / 15.2.3.4 Object.getOwnPropertyNames(O)
|
26086 |
+
var $keys = __webpack_require__(/*! ./_object-keys-internal */ 244);
|
26087 |
+
var hiddenKeys = __webpack_require__(/*! ./_enum-bug-keys */ 138).concat('length', 'prototype');
|
26088 |
|
26089 |
exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
|
26090 |
return $keys(O, hiddenKeys);
|
26092 |
|
26093 |
|
26094 |
/***/ }),
|
26095 |
+
/* 252 */
|
26096 |
/*!**************************************************************!*\
|
26097 |
!*** ./node_modules/core-js/library/modules/_object-gopd.js ***!
|
26098 |
\**************************************************************/
|
26100 |
/*! all exports used */
|
26101 |
/***/ (function(module, exports, __webpack_require__) {
|
26102 |
|
26103 |
+
var pIE = __webpack_require__(/*! ./_object-pie */ 73);
|
26104 |
+
var createDesc = __webpack_require__(/*! ./_property-desc */ 69);
|
26105 |
var toIObject = __webpack_require__(/*! ./_to-iobject */ 39);
|
26106 |
+
var toPrimitive = __webpack_require__(/*! ./_to-primitive */ 133);
|
26107 |
var has = __webpack_require__(/*! ./_has */ 26);
|
26108 |
+
var IE8_DOM_DEFINE = __webpack_require__(/*! ./_ie8-dom-define */ 242);
|
26109 |
var gOPD = Object.getOwnPropertyDescriptor;
|
26110 |
|
26111 |
exports.f = __webpack_require__(/*! ./_descriptors */ 25) ? gOPD : function getOwnPropertyDescriptor(O, P) {
|
26119 |
|
26120 |
|
26121 |
/***/ }),
|
26122 |
+
/* 253 */
|
26123 |
/*!***********************!*\
|
26124 |
!*** ./src/blocks.js ***!
|
26125 |
\***********************/
|
26129 |
|
26130 |
"use strict";
|
26131 |
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
26132 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__blocks_extensions_attributes_js__ = __webpack_require__(/*! ./blocks/extensions/attributes.js */ 254);
|
26133 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__blocks_extensions_attributes_js___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__blocks_extensions_attributes_js__);
|
26134 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__blocks_advanced_heading_block_js__ = __webpack_require__(/*! ./blocks/advanced-heading/block.js */ 255);
|
26135 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__blocks_post_block_js__ = __webpack_require__(/*! ./blocks/post/block.js */ 382);
|
26136 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blocks_section_block_js__ = __webpack_require__(/*! ./blocks/section/block.js */ 497);
|
26137 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__blocks_buttons_block_js__ = __webpack_require__(/*! ./blocks/buttons/block.js */ 504);
|
26138 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blocks_buttons_child_block_js__ = __webpack_require__(/*! ./blocks/buttons-child/block.js */ 512);
|
26139 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__blocks_info_box_block_js__ = __webpack_require__(/*! ./blocks/info-box/block.js */ 529);
|
26140 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__blocks_testimonial_block_js__ = __webpack_require__(/*! ./blocks/testimonial/block.js */ 538);
|
26141 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__blocks_team_block_js__ = __webpack_require__(/*! ./blocks/team/block.js */ 546);
|
26142 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__blocks_social_share_block_js__ = __webpack_require__(/*! ./blocks/social-share/block.js */ 553);
|
26143 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__blocks_social_share_child_block_js__ = __webpack_require__(/*! ./blocks/social-share-child/block.js */ 561);
|
26144 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__blocks_google_map_block_js__ = __webpack_require__(/*! ./blocks/google-map/block.js */ 568);
|
26145 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__blocks_icon_list_block_js__ = __webpack_require__(/*! ./blocks/icon-list/block.js */ 570);
|
26146 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__blocks_icon_list_child_block_js__ = __webpack_require__(/*! ./blocks/icon-list-child/block.js */ 577);
|
26147 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__blocks_price_list_block_js__ = __webpack_require__(/*! ./blocks/price-list/block.js */ 584);
|
26148 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__blocks_price_list_child_block_js__ = __webpack_require__(/*! ./blocks/price-list-child/block.js */ 591);
|
26149 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__blocks_timeline_block_js__ = __webpack_require__(/*! ./blocks/timeline/block.js */ 596);
|
26150 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__blocks_call_to_action_block_js__ = __webpack_require__(/*! ./blocks/call-to-action/block.js */ 621);
|
26151 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__blocks_column_block_js__ = __webpack_require__(/*! ./blocks/column/block.js */ 629);
|
26152 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__blocks_columns_block_js__ = __webpack_require__(/*! ./blocks/columns/block.js */ 637);
|
26153 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_20__blocks_cf7_styler_block_js__ = __webpack_require__(/*! ./blocks/cf7-styler/block.js */ 656);
|
26154 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_21__blocks_gf_styler_block_js__ = __webpack_require__(/*! ./blocks/gf-styler/block.js */ 661);
|
26155 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_22__blocks_blockquote_block_js__ = __webpack_require__(/*! ./blocks/blockquote/block.js */ 666);
|
26156 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_23__blocks_marketing_button_block_js__ = __webpack_require__(/*! ./blocks/marketing-button/block.js */ 674);
|
26157 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_24__blocks_table_of_contents_block_js__ = __webpack_require__(/*! ./blocks/table-of-contents/block.js */ 681);
|
26158 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_25__blocks_how_to_block_js__ = __webpack_require__(/*! ./blocks/how-to/block.js */ 689);
|
26159 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_26__blocks_faq_block_js__ = __webpack_require__(/*! ./blocks/faq/block.js */ 696);
|
26160 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_27__blocks_faq_child_block_js__ = __webpack_require__(/*! ./blocks/faq-child/block.js */ 703);
|
26161 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_28__blocks_inline_notice_block_js__ = __webpack_require__(/*! ./blocks/inline-notice/block.js */ 709);
|
26162 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_29__blocks_wp_search_block_js__ = __webpack_require__(/*! ./blocks/wp-search/block.js */ 716);
|
26163 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_30__blocks_review_block_js__ = __webpack_require__(/*! ./blocks/review/block.js */ 723);
|
26164 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_31__blocks_taxonomy_list_block_js__ = __webpack_require__(/*! ./blocks/taxonomy-list/block.js */ 731);
|
26165 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_32__blocks_forms_block_js__ = __webpack_require__(/*! ./blocks/forms/block.js */ 736);
|
26166 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_33__blocks_forms_child_blocks_name_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/name/block.js */ 744);
|
26167 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_34__blocks_forms_child_blocks_email_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/email/block.js */ 749);
|
26168 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_35__blocks_forms_child_blocks_hidden_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/hidden/block.js */ 754);
|
26169 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_36__blocks_forms_child_blocks_phone_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/phone/block.js */ 758);
|
26170 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_37__blocks_forms_child_blocks_textarea_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/textarea/block.js */ 763);
|
26171 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_38__blocks_forms_child_blocks_checkbox_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/checkbox/block.js */ 767);
|
26172 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_39__blocks_forms_child_blocks_radio_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/radio/block.js */ 772);
|
26173 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_40__blocks_forms_child_blocks_url_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/url/block.js */ 777);
|
26174 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_41__blocks_forms_child_blocks_select_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/select/block.js */ 781);
|
26175 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_42__blocks_forms_child_blocks_toggle_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/toggle/block.js */ 786);
|
26176 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_43__blocks_forms_child_blocks_date_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/date/block.js */ 791);
|
26177 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_44__blocks_forms_child_blocks_accept_block_js__ = __webpack_require__(/*! ./blocks/forms/child-blocks/accept/block.js */ 796);
|
26178 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_45__blocks_extensions_block_js__ = __webpack_require__(/*! ./blocks/extensions/block.js */ 801);
|
26179 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_46__blocks_tabs_block_js__ = __webpack_require__(/*! ./blocks/tabs/block.js */ 803);
|
26180 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_47__blocks_tabs_child_block_js__ = __webpack_require__(/*! ./blocks/tabs-child/block.js */ 810);
|
26181 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_48__blocks_lottie_block_js__ = __webpack_require__(/*! ./blocks/lottie/block.js */ 815);
|
26182 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_49__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../dist/blocks/uagb-controls/block-icons */ 1);
|
26183 |
/**
|
26184 |
* Gutenberg Blocks
|
26185 |
*
|
26210 |
|
26211 |
|
26212 |
|
26213 |
+
|
26214 |
+
|
26215 |
+
|
26216 |
+
|
26217 |
+
|
26218 |
+
|
26219 |
+
|
26220 |
+
|
26221 |
+
|
26222 |
+
|
26223 |
+
|
26224 |
+
|
26225 |
+
|
26226 |
|
26227 |
|
26228 |
|
26246 |
|
26247 |
|
26248 |
updateCategory("uagb", {
|
26249 |
+
icon: __WEBPACK_IMPORTED_MODULE_49__dist_blocks_uagb_controls_block_icons__["a" /* default */].logo
|
26250 |
});
|
26251 |
|
26252 |
/***/ }),
|
26253 |
+
/* 254 */
|
26254 |
/*!*********************************************!*\
|
26255 |
!*** ./src/blocks/extensions/attributes.js ***!
|
26256 |
\*********************************************/
|
26258 |
/***/ (function(module, exports) {
|
26259 |
|
26260 |
function addAttributes(settings) {
|
26261 |
+
var excludeBlock = ['wpforms/form-selector'];
|
26262 |
|
26263 |
+
if (!excludeBlock.includes(settings.name)) {
|
26264 |
+
|
26265 |
+
if (settings.attributes) {
|
26266 |
+
settings.attributes = Object.assign(settings.attributes, {
|
26267 |
+
UAGUserRole: {
|
26268 |
+
type: "string"
|
26269 |
+
},
|
26270 |
+
UAGBrowser: {
|
26271 |
+
type: "string"
|
26272 |
+
},
|
26273 |
+
UAGSystem: {
|
26274 |
+
type: "string"
|
26275 |
+
},
|
26276 |
+
UAGDisplayConditions: {
|
26277 |
+
type: "string"
|
26278 |
+
},
|
26279 |
+
UAGHideDesktop: {
|
26280 |
+
type: "boolean",
|
26281 |
+
default: false
|
26282 |
+
},
|
26283 |
+
UAGHideMob: {
|
26284 |
+
type: "boolean",
|
26285 |
+
default: false
|
26286 |
+
},
|
26287 |
+
UAGHideTab: {
|
26288 |
+
type: "boolean",
|
26289 |
+
default: false
|
26290 |
+
},
|
26291 |
+
UAGLoggedIn: {
|
26292 |
+
type: "boolean",
|
26293 |
+
default: false
|
26294 |
+
},
|
26295 |
+
UAGLoggedOut: {
|
26296 |
+
type: "boolean",
|
26297 |
+
default: false
|
26298 |
+
}
|
26299 |
+
});
|
26300 |
+
}
|
26301 |
}
|
26302 |
return settings;
|
26303 |
}
|
26305 |
wp.hooks.addFilter('blocks.registerBlockType', 'uagb/advanced-control-block', addAttributes);
|
26306 |
|
26307 |
/***/ }),
|
26308 |
+
/* 255 */
|
26309 |
/*!**********************************************!*\
|
26310 |
!*** ./src/blocks/advanced-heading/block.js ***!
|
26311 |
\**********************************************/
|
26314 |
|
26315 |
"use strict";
|
26316 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
26317 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 146);
|
26318 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 256);
|
26319 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 380);
|
26320 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 381);
|
26321 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 183);
|
26322 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
26323 |
/**
|
26324 |
* BLOCK: Advanced Heading
|
26404 |
});
|
26405 |
|
26406 |
/***/ }),
|
26407 |
+
/* 256 */
|
26408 |
/*!*********************************************!*\
|
26409 |
!*** ./src/blocks/advanced-heading/edit.js ***!
|
26410 |
\*********************************************/
|
26415 |
"use strict";
|
26416 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
26417 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
26418 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 257);
|
26419 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
26420 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
26421 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 183);
|
26422 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
26423 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
26424 |
|
26912 |
})(UAGBAdvancedHeading));
|
26913 |
|
26914 |
/***/ }),
|
26915 |
+
/* 257 */
|
26916 |
/*!************************************************!*\
|
26917 |
!*** ./src/blocks/advanced-heading/styling.js ***!
|
26918 |
\************************************************/
|
27035 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
27036 |
|
27037 |
/***/ }),
|
27038 |
+
/* 258 */
|
27039 |
/*!******************************************************!*\
|
27040 |
!*** ./src/components/typography/font-typography.js ***!
|
27041 |
\******************************************************/
|
27044 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
27045 |
|
27046 |
"use strict";
|
27047 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
27048 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_map__);
|
27049 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__fonts__ = __webpack_require__(/*! ./fonts */ 325);
|
27050 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_select__ = __webpack_require__(/*! react-select */ 326);
|
27051 |
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
27052 |
|
27053 |
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
27210 |
/* harmony default export */ __webpack_exports__["a"] = (FontFamilyControl);
|
27211 |
|
27212 |
/***/ }),
|
27213 |
+
/* 259 */
|
27214 |
/*!*********************************************!*\
|
27215 |
!*** ./node_modules/lodash/_baseMatches.js ***!
|
27216 |
\*********************************************/
|
27218 |
/*! all exports used */
|
27219 |
/***/ (function(module, exports, __webpack_require__) {
|
27220 |
|
27221 |
+
var baseIsMatch = __webpack_require__(/*! ./_baseIsMatch */ 260),
|
27222 |
+
getMatchData = __webpack_require__(/*! ./_getMatchData */ 309),
|
27223 |
+
matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */ 162);
|
27224 |
|
27225 |
/**
|
27226 |
* The base implementation of `_.matches` which doesn't clone `source`.
|
27243 |
|
27244 |
|
27245 |
/***/ }),
|
27246 |
+
/* 260 */
|
27247 |
/*!*********************************************!*\
|
27248 |
!*** ./node_modules/lodash/_baseIsMatch.js ***!
|
27249 |
\*********************************************/
|
27251 |
/*! all exports used */
|
27252 |
/***/ (function(module, exports, __webpack_require__) {
|
27253 |
|
27254 |
+
var Stack = __webpack_require__(/*! ./_Stack */ 74),
|
27255 |
+
baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */ 151);
|
27256 |
|
27257 |
/** Used to compose bitmasks for value comparisons. */
|
27258 |
var COMPARE_PARTIAL_FLAG = 1,
|
27316 |
|
27317 |
|
27318 |
/***/ }),
|
27319 |
+
/* 261 */
|
27320 |
/*!************************************************!*\
|
27321 |
!*** ./node_modules/lodash/_listCacheClear.js ***!
|
27322 |
\************************************************/
|
27340 |
|
27341 |
|
27342 |
/***/ }),
|
27343 |
+
/* 262 */
|
27344 |
/*!*************************************************!*\
|
27345 |
!*** ./node_modules/lodash/_listCacheDelete.js ***!
|
27346 |
\*************************************************/
|
27348 |
/*! all exports used */
|
27349 |
/***/ (function(module, exports, __webpack_require__) {
|
27350 |
|
27351 |
+
var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */ 47);
|
27352 |
|
27353 |
/** Used for built-in method references. */
|
27354 |
var arrayProto = Array.prototype;
|
27386 |
|
27387 |
|
27388 |
/***/ }),
|
27389 |
+
/* 263 */
|
27390 |
/*!**********************************************!*\
|
27391 |
!*** ./node_modules/lodash/_listCacheGet.js ***!
|
27392 |
\**********************************************/
|
27394 |
/*! all exports used */
|
27395 |
/***/ (function(module, exports, __webpack_require__) {
|
27396 |
|
27397 |
+
var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */ 47);
|
27398 |
|
27399 |
/**
|
27400 |
* Gets the list cache value for `key`.
|
27416 |
|
27417 |
|
27418 |
/***/ }),
|
27419 |
+
/* 264 */
|
27420 |
/*!**********************************************!*\
|
27421 |
!*** ./node_modules/lodash/_listCacheHas.js ***!
|
27422 |
\**********************************************/
|
27424 |
/*! all exports used */
|
27425 |
/***/ (function(module, exports, __webpack_require__) {
|
27426 |
|
27427 |
+
var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */ 47);
|
27428 |
|
27429 |
/**
|
27430 |
* Checks if a list cache value for `key` exists.
|
27443 |
|
27444 |
|
27445 |
/***/ }),
|
27446 |
+
/* 265 */
|
27447 |
/*!**********************************************!*\
|
27448 |
!*** ./node_modules/lodash/_listCacheSet.js ***!
|
27449 |
\**********************************************/
|
27451 |
/*! all exports used */
|
27452 |
/***/ (function(module, exports, __webpack_require__) {
|
27453 |
|
27454 |
+
var assocIndexOf = __webpack_require__(/*! ./_assocIndexOf */ 47);
|
27455 |
|
27456 |
/**
|
27457 |
* Sets the list cache `key` to `value`.
|
27480 |
|
27481 |
|
27482 |
/***/ }),
|
27483 |
+
/* 266 */
|
27484 |
/*!********************************************!*\
|
27485 |
!*** ./node_modules/lodash/_stackClear.js ***!
|
27486 |
\********************************************/
|
27488 |
/*! all exports used */
|
27489 |
/***/ (function(module, exports, __webpack_require__) {
|
27490 |
|
27491 |
+
var ListCache = __webpack_require__(/*! ./_ListCache */ 46);
|
27492 |
|
27493 |
/**
|
27494 |
* Removes all key-value entries from the stack.
|
27506 |
|
27507 |
|
27508 |
/***/ }),
|
27509 |
+
/* 267 */
|
27510 |
/*!*********************************************!*\
|
27511 |
!*** ./node_modules/lodash/_stackDelete.js ***!
|
27512 |
\*********************************************/
|
27535 |
|
27536 |
|
27537 |
/***/ }),
|
27538 |
+
/* 268 */
|
27539 |
/*!******************************************!*\
|
27540 |
!*** ./node_modules/lodash/_stackGet.js ***!
|
27541 |
\******************************************/
|
27560 |
|
27561 |
|
27562 |
/***/ }),
|
27563 |
+
/* 269 */
|
27564 |
/*!******************************************!*\
|
27565 |
!*** ./node_modules/lodash/_stackHas.js ***!
|
27566 |
\******************************************/
|
27585 |
|
27586 |
|
27587 |
/***/ }),
|
27588 |
+
/* 270 */
|
27589 |
/*!******************************************!*\
|
27590 |
!*** ./node_modules/lodash/_stackSet.js ***!
|
27591 |
\******************************************/
|
27593 |
/*! all exports used */
|
27594 |
/***/ (function(module, exports, __webpack_require__) {
|
27595 |
|
27596 |
+
var ListCache = __webpack_require__(/*! ./_ListCache */ 46),
|
27597 |
+
Map = __webpack_require__(/*! ./_Map */ 75),
|
27598 |
+
MapCache = __webpack_require__(/*! ./_MapCache */ 77);
|
27599 |
|
27600 |
/** Used as the size to enable large array optimizations. */
|
27601 |
var LARGE_ARRAY_SIZE = 200;
|
27630 |
|
27631 |
|
27632 |
/***/ }),
|
27633 |
+
/* 271 */
|
27634 |
/*!**********************************************!*\
|
27635 |
!*** ./node_modules/lodash/_baseIsNative.js ***!
|
27636 |
\**********************************************/
|
27638 |
/*! all exports used */
|
27639 |
/***/ (function(module, exports, __webpack_require__) {
|
27640 |
|
27641 |
+
var isFunction = __webpack_require__(/*! ./isFunction */ 148),
|
27642 |
+
isMasked = __webpack_require__(/*! ./_isMasked */ 274),
|
27643 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
27644 |
+
toSource = __webpack_require__(/*! ./_toSource */ 150);
|
27645 |
|
27646 |
/**
|
27647 |
* Used to match `RegExp`
|
27688 |
|
27689 |
|
27690 |
/***/ }),
|
27691 |
+
/* 272 */
|
27692 |
/*!*******************************************!*\
|
27693 |
!*** ./node_modules/lodash/_getRawTag.js ***!
|
27694 |
\*******************************************/
|
27745 |
|
27746 |
|
27747 |
/***/ }),
|
27748 |
+
/* 273 */
|
27749 |
/*!************************************************!*\
|
27750 |
!*** ./node_modules/lodash/_objectToString.js ***!
|
27751 |
\************************************************/
|
27778 |
|
27779 |
|
27780 |
/***/ }),
|
27781 |
+
/* 274 */
|
27782 |
/*!******************************************!*\
|
27783 |
!*** ./node_modules/lodash/_isMasked.js ***!
|
27784 |
\******************************************/
|
27786 |
/*! all exports used */
|
27787 |
/***/ (function(module, exports, __webpack_require__) {
|
27788 |
|
27789 |
+
var coreJsData = __webpack_require__(/*! ./_coreJsData */ 275);
|
27790 |
|
27791 |
/** Used to detect methods masquerading as native. */
|
27792 |
var maskSrcKey = (function() {
|
27809 |
|
27810 |
|
27811 |
/***/ }),
|
27812 |
+
/* 275 */
|
27813 |
/*!********************************************!*\
|
27814 |
!*** ./node_modules/lodash/_coreJsData.js ***!
|
27815 |
\********************************************/
|
27826 |
|
27827 |
|
27828 |
/***/ }),
|
27829 |
+
/* 276 */
|
27830 |
/*!******************************************!*\
|
27831 |
!*** ./node_modules/lodash/_getValue.js ***!
|
27832 |
\******************************************/
|
27850 |
|
27851 |
|
27852 |
/***/ }),
|
27853 |
+
/* 277 */
|
27854 |
/*!***********************************************!*\
|
27855 |
!*** ./node_modules/lodash/_mapCacheClear.js ***!
|
27856 |
\***********************************************/
|
27858 |
/*! all exports used */
|
27859 |
/***/ (function(module, exports, __webpack_require__) {
|
27860 |
|
27861 |
+
var Hash = __webpack_require__(/*! ./_Hash */ 278),
|
27862 |
+
ListCache = __webpack_require__(/*! ./_ListCache */ 46),
|
27863 |
+
Map = __webpack_require__(/*! ./_Map */ 75);
|
27864 |
|
27865 |
/**
|
27866 |
* Removes all key-value entries from the map.
|
27882 |
|
27883 |
|
27884 |
/***/ }),
|
27885 |
+
/* 278 */
|
27886 |
/*!**************************************!*\
|
27887 |
!*** ./node_modules/lodash/_Hash.js ***!
|
27888 |
\**************************************/
|
27890 |
/*! all exports used */
|
27891 |
/***/ (function(module, exports, __webpack_require__) {
|
27892 |
|
27893 |
+
var hashClear = __webpack_require__(/*! ./_hashClear */ 279),
|
27894 |
+
hashDelete = __webpack_require__(/*! ./_hashDelete */ 280),
|
27895 |
+
hashGet = __webpack_require__(/*! ./_hashGet */ 281),
|
27896 |
+
hashHas = __webpack_require__(/*! ./_hashHas */ 282),
|
27897 |
+
hashSet = __webpack_require__(/*! ./_hashSet */ 283);
|
27898 |
|
27899 |
/**
|
27900 |
* Creates a hash object.
|
27925 |
|
27926 |
|
27927 |
/***/ }),
|
27928 |
+
/* 279 */
|
27929 |
/*!*******************************************!*\
|
27930 |
!*** ./node_modules/lodash/_hashClear.js ***!
|
27931 |
\*******************************************/
|
27933 |
/*! all exports used */
|
27934 |
/***/ (function(module, exports, __webpack_require__) {
|
27935 |
|
27936 |
+
var nativeCreate = __webpack_require__(/*! ./_nativeCreate */ 49);
|
27937 |
|
27938 |
/**
|
27939 |
* Removes all key-value entries from the hash.
|
27951 |
|
27952 |
|
27953 |
/***/ }),
|
27954 |
+
/* 280 */
|
27955 |
/*!********************************************!*\
|
27956 |
!*** ./node_modules/lodash/_hashDelete.js ***!
|
27957 |
\********************************************/
|
27979 |
|
27980 |
|
27981 |
/***/ }),
|
27982 |
+
/* 281 */
|
27983 |
/*!*****************************************!*\
|
27984 |
!*** ./node_modules/lodash/_hashGet.js ***!
|
27985 |
\*****************************************/
|
27987 |
/*! all exports used */
|
27988 |
/***/ (function(module, exports, __webpack_require__) {
|
27989 |
|
27990 |
+
var nativeCreate = __webpack_require__(/*! ./_nativeCreate */ 49);
|
27991 |
|
27992 |
/** Used to stand-in for `undefined` hash values. */
|
27993 |
var HASH_UNDEFINED = '__lodash_hash_undefined__';
|
28020 |
|
28021 |
|
28022 |
/***/ }),
|
28023 |
+
/* 282 */
|
28024 |
/*!*****************************************!*\
|
28025 |
!*** ./node_modules/lodash/_hashHas.js ***!
|
28026 |
\*****************************************/
|
28028 |
/*! all exports used */
|
28029 |
/***/ (function(module, exports, __webpack_require__) {
|
28030 |
|
28031 |
+
var nativeCreate = __webpack_require__(/*! ./_nativeCreate */ 49);
|
28032 |
|
28033 |
/** Used for built-in method references. */
|
28034 |
var objectProto = Object.prototype;
|
28054 |
|
28055 |
|
28056 |
/***/ }),
|
28057 |
+
/* 283 */
|
28058 |
/*!*****************************************!*\
|
28059 |
!*** ./node_modules/lodash/_hashSet.js ***!
|
28060 |
\*****************************************/
|
28062 |
/*! all exports used */
|
28063 |
/***/ (function(module, exports, __webpack_require__) {
|
28064 |
|
28065 |
+
var nativeCreate = __webpack_require__(/*! ./_nativeCreate */ 49);
|
28066 |
|
28067 |
/** Used to stand-in for `undefined` hash values. */
|
28068 |
var HASH_UNDEFINED = '__lodash_hash_undefined__';
|
28088 |
|
28089 |
|
28090 |
/***/ }),
|
28091 |
+
/* 284 */
|
28092 |
/*!************************************************!*\
|
28093 |
!*** ./node_modules/lodash/_mapCacheDelete.js ***!
|
28094 |
\************************************************/
|
28096 |
/*! all exports used */
|
28097 |
/***/ (function(module, exports, __webpack_require__) {
|
28098 |
|
28099 |
+
var getMapData = __webpack_require__(/*! ./_getMapData */ 50);
|
28100 |
|
28101 |
/**
|
28102 |
* Removes `key` and its value from the map.
|
28117 |
|
28118 |
|
28119 |
/***/ }),
|
28120 |
+
/* 285 */
|
28121 |
/*!*******************************************!*\
|
28122 |
!*** ./node_modules/lodash/_isKeyable.js ***!
|
28123 |
\*******************************************/
|
28143 |
|
28144 |
|
28145 |
/***/ }),
|
28146 |
+
/* 286 */
|
28147 |
/*!*********************************************!*\
|
28148 |
!*** ./node_modules/lodash/_mapCacheGet.js ***!
|
28149 |
\*********************************************/
|
28151 |
/*! all exports used */
|
28152 |
/***/ (function(module, exports, __webpack_require__) {
|
28153 |
|
28154 |
+
var getMapData = __webpack_require__(/*! ./_getMapData */ 50);
|
28155 |
|
28156 |
/**
|
28157 |
* Gets the map value for `key`.
|
28170 |
|
28171 |
|
28172 |
/***/ }),
|
28173 |
+
/* 287 */
|
28174 |
/*!*********************************************!*\
|
28175 |
!*** ./node_modules/lodash/_mapCacheHas.js ***!
|
28176 |
\*********************************************/
|
28178 |
/*! all exports used */
|
28179 |
/***/ (function(module, exports, __webpack_require__) {
|
28180 |
|
28181 |
+
var getMapData = __webpack_require__(/*! ./_getMapData */ 50);
|
28182 |
|
28183 |
/**
|
28184 |
* Checks if a map value for `key` exists.
|
28197 |
|
28198 |
|
28199 |
/***/ }),
|
28200 |
+
/* 288 */
|
28201 |
/*!*********************************************!*\
|
28202 |
!*** ./node_modules/lodash/_mapCacheSet.js ***!
|
28203 |
\*********************************************/
|
28205 |
/*! all exports used */
|
28206 |
/***/ (function(module, exports, __webpack_require__) {
|
28207 |
|
28208 |
+
var getMapData = __webpack_require__(/*! ./_getMapData */ 50);
|
28209 |
|
28210 |
/**
|
28211 |
* Sets the map `key` to `value`.
|
28230 |
|
28231 |
|
28232 |
/***/ }),
|
28233 |
+
/* 289 */
|
28234 |
/*!*************************************************!*\
|
28235 |
!*** ./node_modules/lodash/_baseIsEqualDeep.js ***!
|
28236 |
\*************************************************/
|
28238 |
/*! all exports used */
|
28239 |
/***/ (function(module, exports, __webpack_require__) {
|
28240 |
|
28241 |
+
var Stack = __webpack_require__(/*! ./_Stack */ 74),
|
28242 |
+
equalArrays = __webpack_require__(/*! ./_equalArrays */ 152),
|
28243 |
+
equalByTag = __webpack_require__(/*! ./_equalByTag */ 295),
|
28244 |
+
equalObjects = __webpack_require__(/*! ./_equalObjects */ 298),
|
28245 |
+
getTag = __webpack_require__(/*! ./_getTag */ 55),
|
28246 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
28247 |
+
isBuffer = __webpack_require__(/*! ./isBuffer */ 81),
|
28248 |
+
isTypedArray = __webpack_require__(/*! ./isTypedArray */ 159);
|
28249 |
|
28250 |
/** Used to compose bitmasks for value comparisons. */
|
28251 |
var COMPARE_PARTIAL_FLAG = 1;
|
28324 |
|
28325 |
|
28326 |
/***/ }),
|
28327 |
+
/* 290 */
|
28328 |
/*!******************************************!*\
|
28329 |
!*** ./node_modules/lodash/_SetCache.js ***!
|
28330 |
\******************************************/
|
28332 |
/*! all exports used */
|
28333 |
/***/ (function(module, exports, __webpack_require__) {
|
28334 |
|
28335 |
+
var MapCache = __webpack_require__(/*! ./_MapCache */ 77),
|
28336 |
+
setCacheAdd = __webpack_require__(/*! ./_setCacheAdd */ 291),
|
28337 |
+
setCacheHas = __webpack_require__(/*! ./_setCacheHas */ 292);
|
28338 |
|
28339 |
/**
|
28340 |
*
|
28362 |
|
28363 |
|
28364 |
/***/ }),
|
28365 |
+
/* 291 */
|
28366 |
/*!*********************************************!*\
|
28367 |
!*** ./node_modules/lodash/_setCacheAdd.js ***!
|
28368 |
\*********************************************/
|
28392 |
|
28393 |
|
28394 |
/***/ }),
|
28395 |
+
/* 292 */
|
28396 |
/*!*********************************************!*\
|
28397 |
!*** ./node_modules/lodash/_setCacheHas.js ***!
|
28398 |
\*********************************************/
|
28417 |
|
28418 |
|
28419 |
/***/ }),
|
28420 |
+
/* 293 */
|
28421 |
/*!*******************************************!*\
|
28422 |
!*** ./node_modules/lodash/_arraySome.js ***!
|
28423 |
\*******************************************/
|
28451 |
|
28452 |
|
28453 |
/***/ }),
|
28454 |
+
/* 294 */
|
28455 |
/*!******************************************!*\
|
28456 |
!*** ./node_modules/lodash/_cacheHas.js ***!
|
28457 |
\******************************************/
|
28475 |
|
28476 |
|
28477 |
/***/ }),
|
28478 |
+
/* 295 */
|
28479 |
/*!********************************************!*\
|
28480 |
!*** ./node_modules/lodash/_equalByTag.js ***!
|
28481 |
\********************************************/
|
28484 |
/***/ (function(module, exports, __webpack_require__) {
|
28485 |
|
28486 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 27),
|
28487 |
+
Uint8Array = __webpack_require__(/*! ./_Uint8Array */ 153),
|
28488 |
+
eq = __webpack_require__(/*! ./eq */ 48),
|
28489 |
+
equalArrays = __webpack_require__(/*! ./_equalArrays */ 152),
|
28490 |
+
mapToArray = __webpack_require__(/*! ./_mapToArray */ 296),
|
28491 |
+
setToArray = __webpack_require__(/*! ./_setToArray */ 297);
|
28492 |
|
28493 |
/** Used to compose bitmasks for value comparisons. */
|
28494 |
var COMPARE_PARTIAL_FLAG = 1,
|
28598 |
|
28599 |
|
28600 |
/***/ }),
|
28601 |
+
/* 296 */
|
28602 |
/*!********************************************!*\
|
28603 |
!*** ./node_modules/lodash/_mapToArray.js ***!
|
28604 |
\********************************************/
|
28627 |
|
28628 |
|
28629 |
/***/ }),
|
28630 |
+
/* 297 */
|
28631 |
/*!********************************************!*\
|
28632 |
!*** ./node_modules/lodash/_setToArray.js ***!
|
28633 |
\********************************************/
|
28656 |
|
28657 |
|
28658 |
/***/ }),
|
28659 |
+
/* 298 */
|
28660 |
/*!**********************************************!*\
|
28661 |
!*** ./node_modules/lodash/_equalObjects.js ***!
|
28662 |
\**********************************************/
|
28664 |
/*! all exports used */
|
28665 |
/***/ (function(module, exports, __webpack_require__) {
|
28666 |
|
28667 |
+
var getAllKeys = __webpack_require__(/*! ./_getAllKeys */ 154);
|
28668 |
|
28669 |
/** Used to compose bitmasks for value comparisons. */
|
28670 |
var COMPARE_PARTIAL_FLAG = 1;
|
28756 |
|
28757 |
|
28758 |
/***/ }),
|
28759 |
+
/* 299 */
|
28760 |
/*!*********************************************!*\
|
28761 |
!*** ./node_modules/lodash/_arrayFilter.js ***!
|
28762 |
\*********************************************/
|
28792 |
|
28793 |
|
28794 |
/***/ }),
|
28795 |
+
/* 300 */
|
28796 |
/*!*************************************************!*\
|
28797 |
!*** ./node_modules/lodash/_baseIsArguments.js ***!
|
28798 |
\*************************************************/
|
28821 |
|
28822 |
|
28823 |
/***/ }),
|
28824 |
+
/* 301 */
|
28825 |
/*!******************************************!*\
|
28826 |
!*** ./node_modules/lodash/stubFalse.js ***!
|
28827 |
\******************************************/
|
28850 |
|
28851 |
|
28852 |
/***/ }),
|
28853 |
+
/* 302 */
|
28854 |
/*!**************************************************!*\
|
28855 |
!*** ./node_modules/lodash/_baseIsTypedArray.js ***!
|
28856 |
\**************************************************/
|
28859 |
/***/ (function(module, exports, __webpack_require__) {
|
28860 |
|
28861 |
var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 22),
|
28862 |
+
isLength = __webpack_require__(/*! ./isLength */ 83),
|
28863 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
28864 |
|
28865 |
/** `Object#toString` result references. */
|
28921 |
|
28922 |
|
28923 |
/***/ }),
|
28924 |
+
/* 303 */
|
28925 |
/*!******************************************!*\
|
28926 |
!*** ./node_modules/lodash/_baseKeys.js ***!
|
28927 |
\******************************************/
|
28929 |
/*! all exports used */
|
28930 |
/***/ (function(module, exports, __webpack_require__) {
|
28931 |
|
28932 |
+
var isPrototype = __webpack_require__(/*! ./_isPrototype */ 54),
|
28933 |
+
nativeKeys = __webpack_require__(/*! ./_nativeKeys */ 304);
|
28934 |
|
28935 |
/** Used for built-in method references. */
|
28936 |
var objectProto = Object.prototype;
|
28962 |
|
28963 |
|
28964 |
/***/ }),
|
28965 |
+
/* 304 */
|
28966 |
/*!********************************************!*\
|
28967 |
!*** ./node_modules/lodash/_nativeKeys.js ***!
|
28968 |
\********************************************/
|
28970 |
/*! all exports used */
|
28971 |
/***/ (function(module, exports, __webpack_require__) {
|
28972 |
|
28973 |
+
var overArg = __webpack_require__(/*! ./_overArg */ 160);
|
28974 |
|
28975 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
28976 |
var nativeKeys = overArg(Object.keys, Object);
|
28979 |
|
28980 |
|
28981 |
/***/ }),
|
28982 |
+
/* 305 */
|
28983 |
/*!******************************************!*\
|
28984 |
!*** ./node_modules/lodash/_DataView.js ***!
|
28985 |
\******************************************/
|
28997 |
|
28998 |
|
28999 |
/***/ }),
|
29000 |
+
/* 306 */
|
29001 |
/*!*****************************************!*\
|
29002 |
!*** ./node_modules/lodash/_Promise.js ***!
|
29003 |
\*****************************************/
|
29015 |
|
29016 |
|
29017 |
/***/ }),
|
29018 |
+
/* 307 */
|
29019 |
/*!*************************************!*\
|
29020 |
!*** ./node_modules/lodash/_Set.js ***!
|
29021 |
\*************************************/
|
29033 |
|
29034 |
|
29035 |
/***/ }),
|
29036 |
+
/* 308 */
|
29037 |
/*!*****************************************!*\
|
29038 |
!*** ./node_modules/lodash/_WeakMap.js ***!
|
29039 |
\*****************************************/
|
29051 |
|
29052 |
|
29053 |
/***/ }),
|
29054 |
+
/* 309 */
|
29055 |
/*!**********************************************!*\
|
29056 |
!*** ./node_modules/lodash/_getMatchData.js ***!
|
29057 |
\**********************************************/
|
29059 |
/*! all exports used */
|
29060 |
/***/ (function(module, exports, __webpack_require__) {
|
29061 |
|
29062 |
+
var isStrictComparable = __webpack_require__(/*! ./_isStrictComparable */ 161),
|
29063 |
keys = __webpack_require__(/*! ./keys */ 28);
|
29064 |
|
29065 |
/**
|
29086 |
|
29087 |
|
29088 |
/***/ }),
|
29089 |
+
/* 310 */
|
29090 |
/*!*****************************************************!*\
|
29091 |
!*** ./node_modules/lodash/_baseMatchesProperty.js ***!
|
29092 |
\*****************************************************/
|
29094 |
/*! all exports used */
|
29095 |
/***/ (function(module, exports, __webpack_require__) {
|
29096 |
|
29097 |
+
var baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */ 151),
|
29098 |
+
get = __webpack_require__(/*! ./get */ 163),
|
29099 |
+
hasIn = __webpack_require__(/*! ./hasIn */ 314),
|
29100 |
+
isKey = __webpack_require__(/*! ./_isKey */ 84),
|
29101 |
+
isStrictComparable = __webpack_require__(/*! ./_isStrictComparable */ 161),
|
29102 |
+
matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */ 162),
|
29103 |
toKey = __webpack_require__(/*! ./_toKey */ 31);
|
29104 |
|
29105 |
/** Used to compose bitmasks for value comparisons. */
|
29130 |
|
29131 |
|
29132 |
/***/ }),
|
29133 |
+
/* 311 */
|
29134 |
/*!**********************************************!*\
|
29135 |
!*** ./node_modules/lodash/_stringToPath.js ***!
|
29136 |
\**********************************************/
|
29138 |
/*! all exports used */
|
29139 |
/***/ (function(module, exports, __webpack_require__) {
|
29140 |
|
29141 |
+
var memoizeCapped = __webpack_require__(/*! ./_memoizeCapped */ 312);
|
29142 |
|
29143 |
/** Used to match property names within property paths. */
|
29144 |
var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g;
|
29168 |
|
29169 |
|
29170 |
/***/ }),
|
29171 |
+
/* 312 */
|
29172 |
/*!***********************************************!*\
|
29173 |
!*** ./node_modules/lodash/_memoizeCapped.js ***!
|
29174 |
\***********************************************/
|
29176 |
/*! all exports used */
|
29177 |
/***/ (function(module, exports, __webpack_require__) {
|
29178 |
|
29179 |
+
var memoize = __webpack_require__(/*! ./memoize */ 313);
|
29180 |
|
29181 |
/** Used as the maximum memoize cache size. */
|
29182 |
var MAX_MEMOIZE_SIZE = 500;
|
29205 |
|
29206 |
|
29207 |
/***/ }),
|
29208 |
+
/* 313 */
|
29209 |
/*!****************************************!*\
|
29210 |
!*** ./node_modules/lodash/memoize.js ***!
|
29211 |
\****************************************/
|
29213 |
/*! all exports used */
|
29214 |
/***/ (function(module, exports, __webpack_require__) {
|
29215 |
|
29216 |
+
var MapCache = __webpack_require__(/*! ./_MapCache */ 77);
|
29217 |
|
29218 |
/** Error message constants. */
|
29219 |
var FUNC_ERROR_TEXT = 'Expected a function';
|
29289 |
|
29290 |
|
29291 |
/***/ }),
|
29292 |
+
/* 314 */
|
29293 |
/*!**************************************!*\
|
29294 |
!*** ./node_modules/lodash/hasIn.js ***!
|
29295 |
\**************************************/
|
29297 |
/*! all exports used */
|
29298 |
/***/ (function(module, exports, __webpack_require__) {
|
29299 |
|
29300 |
+
var baseHasIn = __webpack_require__(/*! ./_baseHasIn */ 315),
|
29301 |
+
hasPath = __webpack_require__(/*! ./_hasPath */ 316);
|
29302 |
|
29303 |
/**
|
29304 |
* Checks if `path` is a direct or inherited property of `object`.
|
29334 |
|
29335 |
|
29336 |
/***/ }),
|
29337 |
+
/* 315 */
|
29338 |
/*!*******************************************!*\
|
29339 |
!*** ./node_modules/lodash/_baseHasIn.js ***!
|
29340 |
\*******************************************/
|
29358 |
|
29359 |
|
29360 |
/***/ }),
|
29361 |
+
/* 316 */
|
29362 |
/*!*****************************************!*\
|
29363 |
!*** ./node_modules/lodash/_hasPath.js ***!
|
29364 |
\*****************************************/
|
29367 |
/***/ (function(module, exports, __webpack_require__) {
|
29368 |
|
29369 |
var castPath = __webpack_require__(/*! ./_castPath */ 30),
|
29370 |
+
isArguments = __webpack_require__(/*! ./isArguments */ 80),
|
29371 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
29372 |
+
isIndex = __webpack_require__(/*! ./_isIndex */ 51),
|
29373 |
+
isLength = __webpack_require__(/*! ./isLength */ 83),
|
29374 |
toKey = __webpack_require__(/*! ./_toKey */ 31);
|
29375 |
|
29376 |
/**
|
29408 |
|
29409 |
|
29410 |
/***/ }),
|
29411 |
+
/* 317 */
|
29412 |
/*!*****************************************!*\
|
29413 |
!*** ./node_modules/lodash/property.js ***!
|
29414 |
\*****************************************/
|
29416 |
/*! all exports used */
|
29417 |
/***/ (function(module, exports, __webpack_require__) {
|
29418 |
|
29419 |
+
var baseProperty = __webpack_require__(/*! ./_baseProperty */ 166),
|
29420 |
+
basePropertyDeep = __webpack_require__(/*! ./_basePropertyDeep */ 318),
|
29421 |
+
isKey = __webpack_require__(/*! ./_isKey */ 84),
|
29422 |
toKey = __webpack_require__(/*! ./_toKey */ 31);
|
29423 |
|
29424 |
/**
|
29451 |
|
29452 |
|
29453 |
/***/ }),
|
29454 |
+
/* 318 */
|
29455 |
/*!**************************************************!*\
|
29456 |
!*** ./node_modules/lodash/_basePropertyDeep.js ***!
|
29457 |
\**************************************************/
|
29459 |
/*! all exports used */
|
29460 |
/***/ (function(module, exports, __webpack_require__) {
|
29461 |
|
29462 |
+
var baseGet = __webpack_require__(/*! ./_baseGet */ 56);
|
29463 |
|
29464 |
/**
|
29465 |
* A specialized version of `baseProperty` which supports deep paths.
|
29478 |
|
29479 |
|
29480 |
/***/ }),
|
29481 |
+
/* 319 */
|
29482 |
/*!*****************************************!*\
|
29483 |
!*** ./node_modules/lodash/_baseMap.js ***!
|
29484 |
\*****************************************/
|
29486 |
/*! all exports used */
|
29487 |
/***/ (function(module, exports, __webpack_require__) {
|
29488 |
|
29489 |
+
var baseEach = __webpack_require__(/*! ./_baseEach */ 320),
|
29490 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 29);
|
29491 |
|
29492 |
/**
|
29511 |
|
29512 |
|
29513 |
/***/ }),
|
29514 |
+
/* 320 */
|
29515 |
/*!******************************************!*\
|
29516 |
!*** ./node_modules/lodash/_baseEach.js ***!
|
29517 |
\******************************************/
|
29519 |
/*! all exports used */
|
29520 |
/***/ (function(module, exports, __webpack_require__) {
|
29521 |
|
29522 |
+
var baseForOwn = __webpack_require__(/*! ./_baseForOwn */ 321),
|
29523 |
+
createBaseEach = __webpack_require__(/*! ./_createBaseEach */ 324);
|
29524 |
|
29525 |
/**
|
29526 |
* The base implementation of `_.forEach` without support for iteratee shorthands.
|
29536 |
|
29537 |
|
29538 |
/***/ }),
|
29539 |
+
/* 321 */
|
29540 |
/*!********************************************!*\
|
29541 |
!*** ./node_modules/lodash/_baseForOwn.js ***!
|
29542 |
\********************************************/
|
29544 |
/*! all exports used */
|
29545 |
/***/ (function(module, exports, __webpack_require__) {
|
29546 |
|
29547 |
+
var baseFor = __webpack_require__(/*! ./_baseFor */ 322),
|
29548 |
keys = __webpack_require__(/*! ./keys */ 28);
|
29549 |
|
29550 |
/**
|
29563 |
|
29564 |
|
29565 |
/***/ }),
|
29566 |
+
/* 322 */
|
29567 |
/*!*****************************************!*\
|
29568 |
!*** ./node_modules/lodash/_baseFor.js ***!
|
29569 |
\*****************************************/
|
29571 |
/*! all exports used */
|
29572 |
/***/ (function(module, exports, __webpack_require__) {
|
29573 |
|
29574 |
+
var createBaseFor = __webpack_require__(/*! ./_createBaseFor */ 323);
|
29575 |
|
29576 |
/**
|
29577 |
* The base implementation of `baseForOwn` which iterates over `object`
|
29590 |
|
29591 |
|
29592 |
/***/ }),
|
29593 |
+
/* 323 */
|
29594 |
/*!***********************************************!*\
|
29595 |
!*** ./node_modules/lodash/_createBaseFor.js ***!
|
29596 |
\***********************************************/
|
29626 |
|
29627 |
|
29628 |
/***/ }),
|
29629 |
+
/* 324 */
|
29630 |
/*!************************************************!*\
|
29631 |
!*** ./node_modules/lodash/_createBaseEach.js ***!
|
29632 |
\************************************************/
|
29669 |
|
29670 |
|
29671 |
/***/ }),
|
29672 |
+
/* 325 */
|
29673 |
/*!********************************************!*\
|
29674 |
!*** ./src/components/typography/fonts.js ***!
|
29675 |
\********************************************/
|
30574 |
/* harmony default export */ __webpack_exports__["a"] = (fonts);
|
30575 |
|
30576 |
/***/ }),
|
30577 |
+
/* 326 */
|
30578 |
/*!********************************************************************!*\
|
30579 |
!*** ./node_modules/react-select/dist/react-select.browser.esm.js ***!
|
30580 |
\********************************************************************/
|
30584 |
|
30585 |
"use strict";
|
30586 |
/* unused harmony export NonceProvider */
|
30587 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_objectWithoutProperties__ = __webpack_require__(/*! @babel/runtime/helpers/objectWithoutProperties */ 327);
|
30588 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_objectWithoutProperties___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_objectWithoutProperties__);
|
30589 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_extends__ = __webpack_require__(/*! @babel/runtime/helpers/extends */ 329);
|
30590 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_extends___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_extends__);
|
30591 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_slicedToArray__ = __webpack_require__(/*! @babel/runtime/helpers/slicedToArray */ 330);
|
30592 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_slicedToArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_slicedToArray__);
|
30593 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_toConsumableArray__ = __webpack_require__(/*! @babel/runtime/helpers/toConsumableArray */ 334);
|
30594 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_toConsumableArray___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_toConsumableArray__);
|
30595 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_defineProperty__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ 338);
|
30596 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_defineProperty___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_defineProperty__);
|
30597 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__babel_runtime_helpers_esm_classCallCheck__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ 59);
|
30598 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__babel_runtime_helpers_esm_createClass__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ 60);
|
30599 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_assertThisInitialized__ = __webpack_require__(/*! @babel/runtime/helpers/assertThisInitialized */ 339);
|
30600 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_assertThisInitialized___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__babel_runtime_helpers_assertThisInitialized__);
|
30601 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__babel_runtime_helpers_esm_inherits__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */ 61);
|
30602 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__babel_runtime_helpers_esm_possibleConstructorReturn__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */ 62);
|
30603 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__babel_runtime_helpers_esm_getPrototypeOf__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */ 63);
|
30604 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11_react__ = __webpack_require__(/*! react */ 5);
|
30605 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_11_react__);
|
30606 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12_memoize_one__ = __webpack_require__(/*! memoize-one */ 171);
|
30607 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__emotion_core__ = __webpack_require__(/*! @emotion/core */ 87);
|
30608 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_dom__ = __webpack_require__(/*! react-dom */ 33);
|
30609 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_14_react_dom__);
|
30610 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__babel_runtime_helpers_typeof__ = __webpack_require__(/*! @babel/runtime/helpers/typeof */ 169);
|
30611 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__babel_runtime_helpers_typeof___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_15__babel_runtime_helpers_typeof__);
|
30612 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__index_75b02bac_browser_esm_js__ = __webpack_require__(/*! ./index-75b02bac.browser.esm.js */ 176);
|
30613 |
/* unused harmony reexport components */
|
30614 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__Select_e1cf49ae_browser_esm_js__ = __webpack_require__(/*! ./Select-e1cf49ae.browser.esm.js */ 180);
|
30615 |
/* unused harmony reexport createFilter */
|
30616 |
/* unused harmony reexport defaultTheme */
|
30617 |
/* unused harmony reexport mergeStyles */
|
30618 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__emotion_css__ = __webpack_require__(/*! @emotion/css */ 41);
|
30619 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__babel_runtime_helpers_taggedTemplateLiteral__ = __webpack_require__(/*! @babel/runtime/helpers/taggedTemplateLiteral */ 374);
|
30620 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__babel_runtime_helpers_taggedTemplateLiteral___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_19__babel_runtime_helpers_taggedTemplateLiteral__);
|
30621 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_20_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */ 178);
|
30622 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_20_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_20_react_input_autosize__);
|
30623 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_21__stateManager_2f2b6f5b_browser_esm_js__ = __webpack_require__(/*! ./stateManager-2f2b6f5b.browser.esm.js */ 375);
|
30624 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_22__emotion_cache__ = __webpack_require__(/*! @emotion/cache */ 88);
|
30625 |
|
30626 |
|
30627 |
|
30686 |
return NonceProvider;
|
30687 |
}(__WEBPACK_IMPORTED_MODULE_11_react__["Component"]);
|
30688 |
|
30689 |
+
var index = Object(__WEBPACK_IMPORTED_MODULE_21__stateManager_2f2b6f5b_browser_esm_js__["a" /* m */])(__WEBPACK_IMPORTED_MODULE_17__Select_e1cf49ae_browser_esm_js__["a" /* S */]);
|
30690 |
|
30691 |
/* harmony default export */ __webpack_exports__["a"] = (index);
|
30692 |
|
30693 |
|
30694 |
|
30695 |
/***/ }),
|
30696 |
+
/* 327 */
|
30697 |
/*!**************************************************************************************************!*\
|
30698 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/objectWithoutProperties.js ***!
|
30699 |
\**************************************************************************************************/
|
30700 |
/*! dynamic exports provided */
|
30701 |
/***/ (function(module, exports, __webpack_require__) {
|
30702 |
|
30703 |
+
var objectWithoutPropertiesLoose = __webpack_require__(/*! ./objectWithoutPropertiesLoose.js */ 328);
|
30704 |
|
30705 |
function _objectWithoutProperties(source, excluded) {
|
30706 |
if (source == null) return {};
|
30722 |
}
|
30723 |
|
30724 |
module.exports = _objectWithoutProperties;
|
30725 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30726 |
|
30727 |
/***/ }),
|
30728 |
+
/* 328 */
|
30729 |
/*!*******************************************************************************************************!*\
|
30730 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js ***!
|
30731 |
\*******************************************************************************************************/
|
30749 |
}
|
30750 |
|
30751 |
module.exports = _objectWithoutPropertiesLoose;
|
30752 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30753 |
|
30754 |
/***/ }),
|
30755 |
+
/* 329 */
|
30756 |
/*!**********************************************************************************!*\
|
30757 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/extends.js ***!
|
30758 |
\**********************************************************************************/
|
30774 |
return target;
|
30775 |
};
|
30776 |
|
30777 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30778 |
return _extends.apply(this, arguments);
|
30779 |
}
|
30780 |
|
30781 |
module.exports = _extends;
|
30782 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30783 |
|
30784 |
/***/ }),
|
30785 |
+
/* 330 */
|
30786 |
/*!****************************************************************************************!*\
|
30787 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/slicedToArray.js ***!
|
30788 |
\****************************************************************************************/
|
30789 |
/*! dynamic exports provided */
|
30790 |
/***/ (function(module, exports, __webpack_require__) {
|
30791 |
|
30792 |
+
var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ 331);
|
30793 |
|
30794 |
+
var iterableToArrayLimit = __webpack_require__(/*! ./iterableToArrayLimit.js */ 332);
|
30795 |
|
30796 |
+
var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ 167);
|
30797 |
|
30798 |
+
var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ 333);
|
30799 |
|
30800 |
function _slicedToArray(arr, i) {
|
30801 |
return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();
|
30802 |
}
|
30803 |
|
30804 |
module.exports = _slicedToArray;
|
30805 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30806 |
|
30807 |
/***/ }),
|
30808 |
+
/* 331 */
|
30809 |
/*!*****************************************************************************************!*\
|
30810 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/arrayWithHoles.js ***!
|
30811 |
\*****************************************************************************************/
|
30818 |
}
|
30819 |
|
30820 |
module.exports = _arrayWithHoles;
|
30821 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30822 |
|
30823 |
/***/ }),
|
30824 |
+
/* 332 */
|
30825 |
/*!***********************************************************************************************!*\
|
30826 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js ***!
|
30827 |
\***********************************************************************************************/
|
30857 |
}
|
30858 |
|
30859 |
module.exports = _iterableToArrayLimit;
|
30860 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30861 |
|
30862 |
/***/ }),
|
30863 |
+
/* 333 */
|
30864 |
/*!******************************************************************************************!*\
|
30865 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/nonIterableRest.js ***!
|
30866 |
\******************************************************************************************/
|
30873 |
}
|
30874 |
|
30875 |
module.exports = _nonIterableRest;
|
30876 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30877 |
|
30878 |
/***/ }),
|
30879 |
+
/* 334 */
|
30880 |
/*!********************************************************************************************!*\
|
30881 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/toConsumableArray.js ***!
|
30882 |
\********************************************************************************************/
|
30883 |
/*! dynamic exports provided */
|
30884 |
/***/ (function(module, exports, __webpack_require__) {
|
30885 |
|
30886 |
+
var arrayWithoutHoles = __webpack_require__(/*! ./arrayWithoutHoles.js */ 335);
|
30887 |
|
30888 |
+
var iterableToArray = __webpack_require__(/*! ./iterableToArray.js */ 336);
|
30889 |
|
30890 |
+
var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ 167);
|
30891 |
|
30892 |
+
var nonIterableSpread = __webpack_require__(/*! ./nonIterableSpread.js */ 337);
|
30893 |
|
30894 |
function _toConsumableArray(arr) {
|
30895 |
return arrayWithoutHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableSpread();
|
30896 |
}
|
30897 |
|
30898 |
module.exports = _toConsumableArray;
|
30899 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30900 |
|
30901 |
/***/ }),
|
30902 |
+
/* 335 */
|
30903 |
/*!********************************************************************************************!*\
|
30904 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js ***!
|
30905 |
\********************************************************************************************/
|
30907 |
/*! all exports used */
|
30908 |
/***/ (function(module, exports, __webpack_require__) {
|
30909 |
|
30910 |
+
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ 168);
|
30911 |
|
30912 |
function _arrayWithoutHoles(arr) {
|
30913 |
if (Array.isArray(arr)) return arrayLikeToArray(arr);
|
30914 |
}
|
30915 |
|
30916 |
module.exports = _arrayWithoutHoles;
|
30917 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30918 |
|
30919 |
/***/ }),
|
30920 |
+
/* 336 */
|
30921 |
/*!******************************************************************************************!*\
|
30922 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/iterableToArray.js ***!
|
30923 |
\******************************************************************************************/
|
30930 |
}
|
30931 |
|
30932 |
module.exports = _iterableToArray;
|
30933 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30934 |
|
30935 |
/***/ }),
|
30936 |
+
/* 337 */
|
30937 |
/*!********************************************************************************************!*\
|
30938 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/nonIterableSpread.js ***!
|
30939 |
\********************************************************************************************/
|
30946 |
}
|
30947 |
|
30948 |
module.exports = _nonIterableSpread;
|
30949 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30950 |
|
30951 |
/***/ }),
|
30952 |
+
/* 338 */
|
30953 |
/*!*****************************************************************************************!*\
|
30954 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/defineProperty.js ***!
|
30955 |
\*****************************************************************************************/
|
30972 |
}
|
30973 |
|
30974 |
module.exports = _defineProperty;
|
30975 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30976 |
|
30977 |
/***/ }),
|
30978 |
+
/* 339 */
|
30979 |
/*!************************************************************************************************!*\
|
30980 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/assertThisInitialized.js ***!
|
30981 |
\************************************************************************************************/
|
30991 |
}
|
30992 |
|
30993 |
module.exports = _assertThisInitialized;
|
30994 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
30995 |
|
30996 |
/***/ }),
|
30997 |
+
/* 340 */
|
30998 |
/*!*********************************************************************************************!*\
|
30999 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
31000 |
\*********************************************************************************************/
|
31014 |
}
|
31015 |
|
31016 |
/***/ }),
|
31017 |
+
/* 341 */
|
31018 |
/*!********************************************************!*\
|
31019 |
!*** ./node_modules/react/cjs/react.production.min.js ***!
|
31020 |
\********************************************************/
|
31051 |
|
31052 |
|
31053 |
/***/ }),
|
31054 |
+
/* 342 */
|
31055 |
/*!*****************************************************!*\
|
31056 |
!*** ./node_modules/react/cjs/react.development.js ***!
|
31057 |
\*****************************************************/
|
31078 |
'use strict';
|
31079 |
|
31080 |
var _assign = __webpack_require__(/*! object-assign */ 32);
|
31081 |
+
var checkPropTypes = __webpack_require__(/*! prop-types/checkPropTypes */ 85);
|
31082 |
|
31083 |
var ReactVersion = '16.14.0';
|
31084 |
|
32976 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
32977 |
|
32978 |
/***/ }),
|
32979 |
+
/* 343 */
|
32980 |
/*!*********************************************************************************************!*\
|
32981 |
!*** ./node_modules/@emotion/core/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js ***!
|
32982 |
\*********************************************************************************************/
|
32986 |
|
32987 |
"use strict";
|
32988 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _inheritsLoose;
|
32989 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__setPrototypeOf_js__ = __webpack_require__(/*! ./setPrototypeOf.js */ 344);
|
32990 |
+
|
32991 |
function _inheritsLoose(subClass, superClass) {
|
32992 |
subClass.prototype = Object.create(superClass.prototype);
|
32993 |
subClass.prototype.constructor = subClass;
|
32994 |
+
Object(__WEBPACK_IMPORTED_MODULE_0__setPrototypeOf_js__["a" /* default */])(subClass, superClass);
|
32995 |
}
|
32996 |
|
32997 |
/***/ }),
|
32998 |
+
/* 344 */
|
32999 |
+
/*!**********************************************************************************************!*\
|
33000 |
+
!*** ./node_modules/@emotion/core/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
33001 |
+
\**********************************************************************************************/
|
33002 |
+
/*! exports provided: default */
|
33003 |
+
/*! exports used: default */
|
33004 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
33005 |
+
|
33006 |
+
"use strict";
|
33007 |
+
/* harmony export (immutable) */ __webpack_exports__["a"] = _setPrototypeOf;
|
33008 |
+
function _setPrototypeOf(o, p) {
|
33009 |
+
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
33010 |
+
o.__proto__ = p;
|
33011 |
+
return o;
|
33012 |
+
};
|
33013 |
+
|
33014 |
+
return _setPrototypeOf(o, p);
|
33015 |
+
}
|
33016 |
+
|
33017 |
+
/***/ }),
|
33018 |
+
/* 345 */
|
33019 |
/*!*****************************************************************!*\
|
33020 |
!*** ./node_modules/@emotion/stylis/dist/stylis.browser.esm.js ***!
|
33021 |
\*****************************************************************/
|
33642 |
|
33643 |
|
33644 |
/***/ }),
|
33645 |
+
/* 346 */
|
33646 |
/*!*****************************************************************************!*\
|
33647 |
!*** ./node_modules/@emotion/weak-memoize/dist/weak-memoize.browser.esm.js ***!
|
33648 |
\*****************************************************************************/
|
33669 |
|
33670 |
|
33671 |
/***/ }),
|
33672 |
+
/* 347 */
|
33673 |
/*!*****************************************************************************************!*\
|
33674 |
!*** ./node_modules/@emotion/core/node_modules/@babel/runtime/helpers/inheritsLoose.js ***!
|
33675 |
\*****************************************************************************************/
|
33676 |
/*! dynamic exports provided */
|
33677 |
+
/***/ (function(module, exports, __webpack_require__) {
|
33678 |
+
|
33679 |
+
var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ 348);
|
33680 |
|
33681 |
function _inheritsLoose(subClass, superClass) {
|
33682 |
subClass.prototype = Object.create(superClass.prototype);
|
33683 |
subClass.prototype.constructor = subClass;
|
33684 |
+
setPrototypeOf(subClass, superClass);
|
33685 |
}
|
33686 |
|
33687 |
module.exports = _inheritsLoose;
|
33688 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
33689 |
|
33690 |
/***/ }),
|
33691 |
+
/* 348 */
|
33692 |
+
/*!******************************************************************************************!*\
|
33693 |
+
!*** ./node_modules/@emotion/core/node_modules/@babel/runtime/helpers/setPrototypeOf.js ***!
|
33694 |
+
\******************************************************************************************/
|
33695 |
+
/*! dynamic exports provided */
|
33696 |
+
/*! all exports used */
|
33697 |
+
/***/ (function(module, exports) {
|
33698 |
+
|
33699 |
+
function _setPrototypeOf(o, p) {
|
33700 |
+
module.exports = _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
33701 |
+
o.__proto__ = p;
|
33702 |
+
return o;
|
33703 |
+
};
|
33704 |
+
|
33705 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
33706 |
+
return _setPrototypeOf(o, p);
|
33707 |
+
}
|
33708 |
+
|
33709 |
+
module.exports = _setPrototypeOf;
|
33710 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
33711 |
+
|
33712 |
+
/***/ }),
|
33713 |
+
/* 349 */
|
33714 |
/*!*************************************************************!*\
|
33715 |
!*** ./node_modules/@emotion/hash/dist/hash.browser.esm.js ***!
|
33716 |
\*************************************************************/
|
33777 |
|
33778 |
|
33779 |
/***/ }),
|
33780 |
+
/* 350 */
|
33781 |
/*!*********************************************************************!*\
|
33782 |
!*** ./node_modules/@emotion/unitless/dist/unitless.browser.esm.js ***!
|
33783 |
\*********************************************************************/
|
33839 |
|
33840 |
|
33841 |
/***/ }),
|
33842 |
+
/* 351 */
|
33843 |
/*!*******************************************************************!*\
|
33844 |
!*** ./node_modules/@emotion/memoize/dist/memoize.browser.esm.js ***!
|
33845 |
\*******************************************************************/
|
33860 |
|
33861 |
|
33862 |
/***/ }),
|
33863 |
+
/* 352 */
|
33864 |
/*!****************************************************************!*\
|
33865 |
!*** ./node_modules/react-dom/cjs/react-dom.production.min.js ***!
|
33866 |
\****************************************************************/
|
33881 |
/*
|
33882 |
Modernizr 3.0.0pre (Custom Build) | MIT
|
33883 |
*/
|
33884 |
+
var aa=__webpack_require__(/*! react */ 5),n=__webpack_require__(/*! object-assign */ 32),r=__webpack_require__(/*! scheduler */ 175);function u(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;c<arguments.length;c++)b+="&args[]="+encodeURIComponent(arguments[c]);return"Minified React error #"+a+"; visit "+b+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}if(!aa)throw Error(u(227));
|
33885 |
function ba(a,b,c,d,e,f,g,h,k){var l=Array.prototype.slice.call(arguments,3);try{b.apply(c,l)}catch(m){this.onError(m)}}var da=!1,ea=null,fa=!1,ha=null,ia={onError:function(a){da=!0;ea=a}};function ja(a,b,c,d,e,f,g,h,k){da=!1;ea=null;ba.apply(ia,arguments)}function ka(a,b,c,d,e,f,g,h,k){ja.apply(this,arguments);if(da){if(da){var l=ea;da=!1;ea=null}else throw Error(u(198));fa||(fa=!0,ha=l)}}var la=null,ma=null,na=null;
|
33886 |
function oa(a,b,c){var d=a.type||"unknown-event";a.currentTarget=na(c);ka(d,b,void 0,a);a.currentTarget=null}var pa=null,qa={};
|
33887 |
function ra(){if(pa)for(var a in qa){var b=qa[a],c=pa.indexOf(a);if(!(-1<c))throw Error(u(96,a));if(!sa[c]){if(!b.extractEvents)throw Error(u(97,a));sa[c]=b;c=b.eventTypes;for(var d in c){var e=void 0;var f=c[d],g=b,h=d;if(ta.hasOwnProperty(h))throw Error(u(99,h));ta[h]=f;var k=f.phasedRegistrationNames;if(k){for(e in k)k.hasOwnProperty(e)&&ua(k[e],g,h);e=!0}else f.registrationName?(ua(f.registrationName,g,h),e=!0):e=!1;if(!e)throw Error(u(98,d,a));}}}}
|
34164 |
|
34165 |
|
34166 |
/***/ }),
|
34167 |
+
/* 353 */
|
34168 |
/*!****************************************************************!*\
|
34169 |
!*** ./node_modules/scheduler/cjs/scheduler.production.min.js ***!
|
34170 |
\****************************************************************/
|
34197 |
|
34198 |
|
34199 |
/***/ }),
|
34200 |
+
/* 354 */
|
34201 |
/*!*************************************************************!*\
|
34202 |
!*** ./node_modules/scheduler/cjs/scheduler.development.js ***!
|
34203 |
\*************************************************************/
|
35068 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
35069 |
|
35070 |
/***/ }),
|
35071 |
+
/* 355 */
|
35072 |
/*!*************************************************************!*\
|
35073 |
!*** ./node_modules/react-dom/cjs/react-dom.development.js ***!
|
35074 |
\*************************************************************/
|
35096 |
|
35097 |
var React = __webpack_require__(/*! react */ 5);
|
35098 |
var _assign = __webpack_require__(/*! object-assign */ 32);
|
35099 |
+
var Scheduler = __webpack_require__(/*! scheduler */ 175);
|
35100 |
+
var checkPropTypes = __webpack_require__(/*! prop-types/checkPropTypes */ 85);
|
35101 |
+
var tracing = __webpack_require__(/*! scheduler/tracing */ 356);
|
35102 |
|
35103 |
var ReactSharedInternals = React.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED; // Prevent newer renderers from RTE when used with older react package versions.
|
35104 |
// Current owner and dispatcher used to share the same ref,
|
60093 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
60094 |
|
60095 |
/***/ }),
|
60096 |
+
/* 356 */
|
60097 |
/*!*******************************************!*\
|
60098 |
!*** ./node_modules/scheduler/tracing.js ***!
|
60099 |
\*******************************************/
|
60105 |
/* WEBPACK VAR INJECTION */(function(process) {
|
60106 |
|
60107 |
if (process.env.NODE_ENV === 'production') {
|
60108 |
+
module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.production.min.js */ 357);
|
60109 |
} else {
|
60110 |
+
module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.development.js */ 358);
|
60111 |
}
|
60112 |
|
60113 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
60114 |
|
60115 |
/***/ }),
|
60116 |
+
/* 357 */
|
60117 |
/*!************************************************************************!*\
|
60118 |
!*** ./node_modules/scheduler/cjs/scheduler-tracing.production.min.js ***!
|
60119 |
\************************************************************************/
|
60135 |
|
60136 |
|
60137 |
/***/ }),
|
60138 |
+
/* 358 */
|
60139 |
/*!*********************************************************************!*\
|
60140 |
!*** ./node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
|
60141 |
\*********************************************************************/
|
60497 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
60498 |
|
60499 |
/***/ }),
|
60500 |
+
/* 359 */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60501 |
/*!***********************************************************************************************************!*\
|
60502 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js ***!
|
60503 |
\***********************************************************************************************************/
|
60523 |
}
|
60524 |
|
60525 |
/***/ }),
|
60526 |
+
/* 360 */
|
60527 |
+
/*!*************************************************************************************!*\
|
60528 |
+
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/typeof.js ***!
|
60529 |
+
\*************************************************************************************/
|
60530 |
+
/*! exports provided: default */
|
60531 |
+
/*! exports used: default */
|
60532 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
60533 |
+
|
60534 |
+
"use strict";
|
60535 |
+
/* harmony export (immutable) */ __webpack_exports__["a"] = _typeof;
|
60536 |
+
function _typeof(obj) {
|
60537 |
+
"@babel/helpers - typeof";
|
60538 |
+
|
60539 |
+
if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") {
|
60540 |
+
_typeof = function _typeof(obj) {
|
60541 |
+
return typeof obj;
|
60542 |
+
};
|
60543 |
+
} else {
|
60544 |
+
_typeof = function _typeof(obj) {
|
60545 |
+
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
60546 |
+
};
|
60547 |
+
}
|
60548 |
+
|
60549 |
+
return _typeof(obj);
|
60550 |
+
}
|
60551 |
+
|
60552 |
+
/***/ }),
|
60553 |
+
/* 361 */
|
60554 |
/*!****************************************************************************************************!*\
|
60555 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js ***!
|
60556 |
\****************************************************************************************************/
|
60573 |
}
|
60574 |
|
60575 |
/***/ }),
|
60576 |
+
/* 362 */
|
60577 |
/*!**************************************************************!*\
|
60578 |
!*** ./node_modules/react-is/cjs/react-is.production.min.js ***!
|
60579 |
\**************************************************************/
|
60600 |
|
60601 |
|
60602 |
/***/ }),
|
60603 |
+
/* 363 */
|
60604 |
/*!***********************************************************!*\
|
60605 |
!*** ./node_modules/react-is/cjs/react-is.development.js ***!
|
60606 |
\***********************************************************/
|
60840 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
60841 |
|
60842 |
/***/ }),
|
60843 |
+
/* 364 */
|
60844 |
/*!************************************************************!*\
|
60845 |
!*** ./node_modules/prop-types/factoryWithTypeCheckers.js ***!
|
60846 |
\************************************************************/
|
60858 |
|
60859 |
|
60860 |
|
60861 |
+
var ReactIs = __webpack_require__(/*! react-is */ 179);
|
60862 |
var assign = __webpack_require__(/*! object-assign */ 32);
|
60863 |
|
60864 |
+
var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ 86);
|
60865 |
+
var checkPropTypes = __webpack_require__(/*! ./checkPropTypes */ 85);
|
60866 |
|
60867 |
var has = Function.call.bind(Object.prototype.hasOwnProperty);
|
60868 |
var printWarning = function() {};
|
61444 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
61445 |
|
61446 |
/***/ }),
|
61447 |
+
/* 365 */
|
61448 |
/*!*************************************************************!*\
|
61449 |
!*** ./node_modules/prop-types/factoryWithThrowingShims.js ***!
|
61450 |
\*************************************************************/
|
61462 |
|
61463 |
|
61464 |
|
61465 |
+
var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ 86);
|
61466 |
|
61467 |
function emptyFunction() {}
|
61468 |
function emptyFunctionWithReset() {}
|
61520 |
|
61521 |
|
61522 |
/***/ }),
|
61523 |
+
/* 366 */
|
61524 |
/*!********************************************************************************************!*\
|
61525 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/slicedToArray.js ***!
|
61526 |
\********************************************************************************************/
|
61530 |
|
61531 |
"use strict";
|
61532 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _slicedToArray;
|
61533 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__arrayWithHoles_js__ = __webpack_require__(/*! ./arrayWithHoles.js */ 367);
|
61534 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__iterableToArrayLimit_js__ = __webpack_require__(/*! ./iterableToArrayLimit.js */ 368);
|
61535 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__unsupportedIterableToArray_js__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ 181);
|
61536 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__nonIterableRest_js__ = __webpack_require__(/*! ./nonIterableRest.js */ 369);
|
61537 |
|
61538 |
|
61539 |
|
61540 |
|
61541 |
function _slicedToArray(arr, i) {
|
61542 |
+
return Object(__WEBPACK_IMPORTED_MODULE_0__arrayWithHoles_js__["a" /* default */])(arr) || Object(__WEBPACK_IMPORTED_MODULE_1__iterableToArrayLimit_js__["a" /* default */])(arr, i) || Object(__WEBPACK_IMPORTED_MODULE_2__unsupportedIterableToArray_js__["a" /* default */])(arr, i) || Object(__WEBPACK_IMPORTED_MODULE_3__nonIterableRest_js__["a" /* default */])();
|
61543 |
}
|
61544 |
|
61545 |
/***/ }),
|
61546 |
+
/* 367 */
|
61547 |
/*!*********************************************************************************************!*\
|
61548 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js ***!
|
61549 |
\*********************************************************************************************/
|
61558 |
}
|
61559 |
|
61560 |
/***/ }),
|
61561 |
+
/* 368 */
|
61562 |
/*!***************************************************************************************************!*\
|
61563 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js ***!
|
61564 |
\***************************************************************************************************/
|
61596 |
}
|
61597 |
|
61598 |
/***/ }),
|
61599 |
+
/* 369 */
|
61600 |
/*!**********************************************************************************************!*\
|
61601 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js ***!
|
61602 |
\**********************************************************************************************/
|
61611 |
}
|
61612 |
|
61613 |
/***/ }),
|
61614 |
+
/* 370 */
|
61615 |
/*!************************************************************************************************!*\
|
61616 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js ***!
|
61617 |
\************************************************************************************************/
|
61621 |
|
61622 |
"use strict";
|
61623 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _toConsumableArray;
|
61624 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__arrayWithoutHoles_js__ = __webpack_require__(/*! ./arrayWithoutHoles.js */ 371);
|
61625 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__iterableToArray_js__ = __webpack_require__(/*! ./iterableToArray.js */ 372);
|
61626 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__unsupportedIterableToArray_js__ = __webpack_require__(/*! ./unsupportedIterableToArray.js */ 181);
|
61627 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__nonIterableSpread_js__ = __webpack_require__(/*! ./nonIterableSpread.js */ 373);
|
61628 |
|
61629 |
|
61630 |
|
61631 |
|
61632 |
function _toConsumableArray(arr) {
|
61633 |
+
return Object(__WEBPACK_IMPORTED_MODULE_0__arrayWithoutHoles_js__["a" /* default */])(arr) || Object(__WEBPACK_IMPORTED_MODULE_1__iterableToArray_js__["a" /* default */])(arr) || Object(__WEBPACK_IMPORTED_MODULE_2__unsupportedIterableToArray_js__["a" /* default */])(arr) || Object(__WEBPACK_IMPORTED_MODULE_3__nonIterableSpread_js__["a" /* default */])();
|
61634 |
}
|
61635 |
|
61636 |
/***/ }),
|
61637 |
+
/* 371 */
|
61638 |
/*!************************************************************************************************!*\
|
61639 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js ***!
|
61640 |
\************************************************************************************************/
|
61644 |
|
61645 |
"use strict";
|
61646 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _arrayWithoutHoles;
|
61647 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__arrayLikeToArray_js__ = __webpack_require__(/*! ./arrayLikeToArray.js */ 182);
|
61648 |
|
61649 |
function _arrayWithoutHoles(arr) {
|
61650 |
+
if (Array.isArray(arr)) return Object(__WEBPACK_IMPORTED_MODULE_0__arrayLikeToArray_js__["a" /* default */])(arr);
|
61651 |
}
|
61652 |
|
61653 |
/***/ }),
|
61654 |
+
/* 372 */
|
61655 |
/*!**********************************************************************************************!*\
|
61656 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/iterableToArray.js ***!
|
61657 |
\**********************************************************************************************/
|
61666 |
}
|
61667 |
|
61668 |
/***/ }),
|
61669 |
+
/* 373 */
|
61670 |
/*!************************************************************************************************!*\
|
61671 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js ***!
|
61672 |
\************************************************************************************************/
|
61681 |
}
|
61682 |
|
61683 |
/***/ }),
|
61684 |
+
/* 374 */
|
61685 |
/*!************************************************************************************************!*\
|
61686 |
!*** ./node_modules/react-select/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js ***!
|
61687 |
\************************************************************************************************/
|
61701 |
}
|
61702 |
|
61703 |
module.exports = _taggedTemplateLiteral;
|
61704 |
+
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
61705 |
|
61706 |
/***/ }),
|
61707 |
+
/* 375 */
|
61708 |
/*!*****************************************************************************!*\
|
61709 |
!*** ./node_modules/react-select/dist/stateManager-2f2b6f5b.browser.esm.js ***!
|
61710 |
\*****************************************************************************/
|
61714 |
|
61715 |
"use strict";
|
61716 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return manageState; });
|
61717 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutProperties__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutProperties */ 90);
|
61718 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_extends__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ 91);
|
61719 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_esm_classCallCheck__ = __webpack_require__(/*! @babel/runtime/helpers/esm/classCallCheck */ 59);
|
61720 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__babel_runtime_helpers_esm_createClass__ = __webpack_require__(/*! @babel/runtime/helpers/esm/createClass */ 60);
|
61721 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__babel_runtime_helpers_esm_inherits__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inherits */ 61);
|
61722 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__babel_runtime_helpers_esm_possibleConstructorReturn__ = __webpack_require__(/*! @babel/runtime/helpers/esm/possibleConstructorReturn */ 62);
|
61723 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__babel_runtime_helpers_esm_getPrototypeOf__ = __webpack_require__(/*! @babel/runtime/helpers/esm/getPrototypeOf */ 63);
|
61724 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_react__ = __webpack_require__(/*! react */ 5);
|
61725 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_react__);
|
61726 |
|
61867 |
|
61868 |
|
61869 |
/***/ }),
|
61870 |
+
/* 376 */
|
61871 |
/*!*******************************************************!*\
|
61872 |
!*** ./src/components/typography/range-typography.js ***!
|
61873 |
\*******************************************************/
|
61876 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
61877 |
|
61878 |
"use strict";
|
61879 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
61880 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_map__);
|
61881 |
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
61882 |
|
62030 |
/* harmony default export */ __webpack_exports__["a"] = (RangeTypographyControl);
|
62031 |
|
62032 |
/***/ }),
|
62033 |
+
/* 377 */
|
62034 |
/*!****************************************************!*\
|
62035 |
!*** ./src/components/typography/inline-styles.js ***!
|
62036 |
\****************************************************/
|
62050 |
/* unused harmony default export */ var _unused_webpack_default_export = (TypographyStyles);
|
62051 |
|
62052 |
/***/ }),
|
62053 |
+
/* 378 */
|
62054 |
/*!***********************************************!*\
|
62055 |
!*** ./src/components/typography/editor.scss ***!
|
62056 |
\***********************************************/
|
62060 |
// removed by extract-text-webpack-plugin
|
62061 |
|
62062 |
/***/ }),
|
62063 |
+
/* 379 */
|
62064 |
/*!*****************************************************!*\
|
62065 |
!*** ./node_modules/webfontloader/webfontloader.js ***!
|
62066 |
\*****************************************************/
|
62089 |
|
62090 |
|
62091 |
/***/ }),
|
62092 |
+
/* 380 */
|
62093 |
/*!*********************************************!*\
|
62094 |
!*** ./src/blocks/advanced-heading/save.js ***!
|
62095 |
\*********************************************/
|
62149 |
}
|
62150 |
|
62151 |
/***/ }),
|
62152 |
+
/* 381 */
|
62153 |
/*!***************************************************!*\
|
62154 |
!*** ./src/blocks/advanced-heading/deprecated.js ***!
|
62155 |
\***************************************************/
|
62158 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
62159 |
|
62160 |
"use strict";
|
62161 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__attributes__ = __webpack_require__(/*! ./attributes */ 146);
|
62162 |
/**
|
62163 |
* BLOCK: Advanced Heading - Deprecated Block
|
62164 |
*/
|
62245 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
62246 |
|
62247 |
/***/ }),
|
62248 |
+
/* 382 */
|
62249 |
/*!**********************************!*\
|
62250 |
!*** ./src/blocks/post/block.js ***!
|
62251 |
\**********************************/
|
62253 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
62254 |
|
62255 |
"use strict";
|
62256 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__post_grid_block_js__ = __webpack_require__(/*! ./post-grid/block.js */ 383);
|
62257 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_masonry_block_js__ = __webpack_require__(/*! ./post-masonry/block.js */ 397);
|
62258 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__post_carousel_block_js__ = __webpack_require__(/*! ./post-carousel/block.js */ 462);
|
62259 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__post_title_block_js__ = __webpack_require__(/*! ./post-title/block.js */ 480);
|
62260 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__post_image_block_js__ = __webpack_require__(/*! ./post-image/block.js */ 484);
|
62261 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__post_button_block_js__ = __webpack_require__(/*! ./post-button/block.js */ 487);
|
62262 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__post_excerpt_block_js__ = __webpack_require__(/*! ./post-excerpt/block.js */ 490);
|
62263 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__post_meta_block_js__ = __webpack_require__(/*! ./post-meta/block.js */ 493);
|
62264 |
/**
|
62265 |
* Gutenberg Blocks
|
62266 |
*
|
62282 |
|
62283 |
|
62284 |
/***/ }),
|
62285 |
+
/* 383 */
|
62286 |
/*!********************************************!*\
|
62287 |
!*** ./src/blocks/post/post-grid/block.js ***!
|
62288 |
\********************************************/
|
62290 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
62291 |
|
62292 |
"use strict";
|
62293 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 384);
|
62294 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
62295 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 96);
|
62296 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
62297 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 97);
|
62298 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
62299 |
/**
|
62300 |
* BLOCK: UAGB - post-grid
|
62331 |
});
|
62332 |
|
62333 |
/***/ }),
|
62334 |
+
/* 384 */
|
62335 |
/*!*******************************************!*\
|
62336 |
!*** ./src/blocks/post/post-grid/edit.js ***!
|
62337 |
\*******************************************/
|
62345 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
62346 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
62347 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
62348 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__blog__ = __webpack_require__(/*! ./blog */ 385);
|
62349 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! .././styling */ 95);
|
62350 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__function__ = __webpack_require__(/*! .././function */ 34);
|
62351 |
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
|
62352 |
|
64035 |
}))(UAGBPostGrid));
|
64036 |
|
64037 |
/***/ }),
|
64038 |
+
/* 385 */
|
64039 |
/*!*******************************************!*\
|
64040 |
!*** ./src/blocks/post/post-grid/blog.js ***!
|
64041 |
\*******************************************/
|
64137 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
64138 |
|
64139 |
/***/ }),
|
64140 |
+
/* 386 */
|
64141 |
/*!*****************************************!*\
|
64142 |
!*** ./node_modules/lodash/truncate.js ***!
|
64143 |
\*****************************************/
|
64144 |
/*! dynamic exports provided */
|
64145 |
/***/ (function(module, exports, __webpack_require__) {
|
64146 |
|
64147 |
+
var baseToString = __webpack_require__(/*! ./_baseToString */ 165),
|
64148 |
+
castSlice = __webpack_require__(/*! ./_castSlice */ 387),
|
64149 |
+
hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 93),
|
64150 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
64151 |
+
isRegExp = __webpack_require__(/*! ./isRegExp */ 388),
|
64152 |
+
stringSize = __webpack_require__(/*! ./_stringSize */ 390),
|
64153 |
+
stringToArray = __webpack_require__(/*! ./_stringToArray */ 393),
|
64154 |
+
toInteger = __webpack_require__(/*! ./toInteger */ 94),
|
64155 |
+
toString = __webpack_require__(/*! ./toString */ 164);
|
64156 |
|
64157 |
/** Used as default options for `_.truncate`. */
|
64158 |
var DEFAULT_TRUNC_LENGTH = 30,
|
64258 |
|
64259 |
|
64260 |
/***/ }),
|
64261 |
+
/* 387 */
|
64262 |
/*!*******************************************!*\
|
64263 |
!*** ./node_modules/lodash/_castSlice.js ***!
|
64264 |
\*******************************************/
|
64266 |
/*! all exports used */
|
64267 |
/***/ (function(module, exports, __webpack_require__) {
|
64268 |
|
64269 |
+
var baseSlice = __webpack_require__(/*! ./_baseSlice */ 92);
|
64270 |
|
64271 |
/**
|
64272 |
* Casts `array` to a slice if it's needed.
|
64287 |
|
64288 |
|
64289 |
/***/ }),
|
64290 |
+
/* 388 */
|
64291 |
/*!*****************************************!*\
|
64292 |
!*** ./node_modules/lodash/isRegExp.js ***!
|
64293 |
\*****************************************/
|
64295 |
/*! all exports used */
|
64296 |
/***/ (function(module, exports, __webpack_require__) {
|
64297 |
|
64298 |
+
var baseIsRegExp = __webpack_require__(/*! ./_baseIsRegExp */ 389),
|
64299 |
+
baseUnary = __webpack_require__(/*! ./_baseUnary */ 52),
|
64300 |
+
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 53);
|
64301 |
|
64302 |
/* Node.js helper references. */
|
64303 |
var nodeIsRegExp = nodeUtil && nodeUtil.isRegExp;
|
64325 |
|
64326 |
|
64327 |
/***/ }),
|
64328 |
+
/* 389 */
|
64329 |
/*!**********************************************!*\
|
64330 |
!*** ./node_modules/lodash/_baseIsRegExp.js ***!
|
64331 |
\**********************************************/
|
64354 |
|
64355 |
|
64356 |
/***/ }),
|
64357 |
+
/* 390 */
|
64358 |
/*!********************************************!*\
|
64359 |
!*** ./node_modules/lodash/_stringSize.js ***!
|
64360 |
\********************************************/
|
64362 |
/*! all exports used */
|
64363 |
/***/ (function(module, exports, __webpack_require__) {
|
64364 |
|
64365 |
+
var asciiSize = __webpack_require__(/*! ./_asciiSize */ 391),
|
64366 |
+
hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 93),
|
64367 |
+
unicodeSize = __webpack_require__(/*! ./_unicodeSize */ 392);
|
64368 |
|
64369 |
/**
|
64370 |
* Gets the number of symbols in `string`.
|
64383 |
|
64384 |
|
64385 |
/***/ }),
|
64386 |
+
/* 391 */
|
64387 |
/*!*******************************************!*\
|
64388 |
!*** ./node_modules/lodash/_asciiSize.js ***!
|
64389 |
\*******************************************/
|
64391 |
/*! all exports used */
|
64392 |
/***/ (function(module, exports, __webpack_require__) {
|
64393 |
|
64394 |
+
var baseProperty = __webpack_require__(/*! ./_baseProperty */ 166);
|
64395 |
|
64396 |
/**
|
64397 |
* Gets the size of an ASCII `string`.
|
64406 |
|
64407 |
|
64408 |
/***/ }),
|
64409 |
+
/* 392 */
|
64410 |
/*!*********************************************!*\
|
64411 |
!*** ./node_modules/lodash/_unicodeSize.js ***!
|
64412 |
\*********************************************/
|
64461 |
|
64462 |
|
64463 |
/***/ }),
|
64464 |
+
/* 393 */
|
64465 |
/*!***********************************************!*\
|
64466 |
!*** ./node_modules/lodash/_stringToArray.js ***!
|
64467 |
\***********************************************/
|
64469 |
/*! all exports used */
|
64470 |
/***/ (function(module, exports, __webpack_require__) {
|
64471 |
|
64472 |
+
var asciiToArray = __webpack_require__(/*! ./_asciiToArray */ 394),
|
64473 |
+
hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 93),
|
64474 |
+
unicodeToArray = __webpack_require__(/*! ./_unicodeToArray */ 395);
|
64475 |
|
64476 |
/**
|
64477 |
* Converts `string` to an array.
|
64490 |
|
64491 |
|
64492 |
/***/ }),
|
64493 |
+
/* 394 */
|
64494 |
/*!**********************************************!*\
|
64495 |
!*** ./node_modules/lodash/_asciiToArray.js ***!
|
64496 |
\**********************************************/
|
64513 |
|
64514 |
|
64515 |
/***/ }),
|
64516 |
+
/* 395 */
|
64517 |
/*!************************************************!*\
|
64518 |
!*** ./node_modules/lodash/_unicodeToArray.js ***!
|
64519 |
\************************************************/
|
64564 |
|
64565 |
|
64566 |
/***/ }),
|
64567 |
+
/* 396 */
|
64568 |
/*!*****************************************!*\
|
64569 |
!*** ./node_modules/lodash/toFinite.js ***!
|
64570 |
\*****************************************/
|
64572 |
/*! all exports used */
|
64573 |
/***/ (function(module, exports, __webpack_require__) {
|
64574 |
|
64575 |
+
var toNumber = __webpack_require__(/*! ./toNumber */ 188);
|
64576 |
|
64577 |
/** Used as references for various `Number` constants. */
|
64578 |
var INFINITY = 1 / 0,
|
64617 |
|
64618 |
|
64619 |
/***/ }),
|
64620 |
+
/* 397 */
|
64621 |
/*!***********************************************!*\
|
64622 |
!*** ./src/blocks/post/post-masonry/block.js ***!
|
64623 |
\***********************************************/
|
64625 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
64626 |
|
64627 |
"use strict";
|
64628 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 398);
|
64629 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
64630 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 96);
|
64631 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
64632 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 97);
|
64633 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
64634 |
/**
|
64635 |
* BLOCK: UAGB - post-masonry
|
64667 |
});
|
64668 |
|
64669 |
/***/ }),
|
64670 |
+
/* 398 */
|
64671 |
/*!**********************************************!*\
|
64672 |
!*** ./src/blocks/post/post-masonry/edit.js ***!
|
64673 |
\**********************************************/
|
64679 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
64680 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
64681 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
64682 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blog__ = __webpack_require__(/*! ./blog */ 399);
|
64683 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! .././styling */ 95);
|
64684 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__function__ = __webpack_require__(/*! .././function */ 34);
|
64685 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
64686 |
|
66538 |
}))(UAGBPostMasonry));
|
66539 |
|
66540 |
/***/ }),
|
66541 |
+
/* 399 */
|
66542 |
/*!**********************************************!*\
|
66543 |
!*** ./src/blocks/post/post-masonry/blog.js ***!
|
66544 |
\**********************************************/
|
66549 |
"use strict";
|
66550 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
66551 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
66552 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component__ = __webpack_require__(/*! react-masonry-component */ 400);
|
66553 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_masonry_component__);
|
66554 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__function__ = __webpack_require__(/*! .././function */ 34);
|
66555 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
66667 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
66668 |
|
66669 |
/***/ }),
|
66670 |
+
/* 400 */
|
66671 |
/*!***********************************************************!*\
|
66672 |
!*** ./node_modules/react-masonry-component/lib/index.js ***!
|
66673 |
\***********************************************************/
|
66676 |
/***/ (function(module, exports, __webpack_require__) {
|
66677 |
|
66678 |
var isBrowser = typeof window !== 'undefined';
|
66679 |
+
var Masonry = isBrowser ? window.Masonry || __webpack_require__(/*! masonry-layout */ 401) : null;
|
66680 |
+
var imagesloaded = isBrowser ? __webpack_require__(/*! imagesloaded */ 406) : null;
|
66681 |
+
var assign = __webpack_require__(/*! lodash/assign */ 407);
|
66682 |
+
var elementResizeDetectorMaker = __webpack_require__(/*! element-resize-detector */ 415);
|
66683 |
+
var debounce = __webpack_require__(/*! lodash/debounce */ 426);
|
66684 |
+
var omit = __webpack_require__(/*! lodash/omit */ 428);
|
66685 |
var PropTypes = __webpack_require__(/*! prop-types */ 15);
|
66686 |
var React = __webpack_require__(/*! react */ 5);
|
66687 |
+
var createReactClass = __webpack_require__(/*! create-react-class */ 460);
|
66688 |
|
66689 |
var propTypes = {
|
66690 |
enableResizableChildren: PropTypes.bool,
|
66993 |
|
66994 |
|
66995 |
/***/ }),
|
66996 |
+
/* 401 */
|
66997 |
/*!************************************************!*\
|
66998 |
!*** ./node_modules/masonry-layout/masonry.js ***!
|
66999 |
\************************************************/
|
67015 |
if ( true ) {
|
67016 |
// AMD
|
67017 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
67018 |
+
__webpack_require__(/*! outlayer/outlayer */ 402),
|
67019 |
+
__webpack_require__(/*! get-size/get-size */ 99)
|
67020 |
], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
67021 |
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
67022 |
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
67245 |
|
67246 |
|
67247 |
/***/ }),
|
67248 |
+
/* 402 */
|
67249 |
/*!*******************************************!*\
|
67250 |
!*** ./node_modules/outlayer/outlayer.js ***!
|
67251 |
\*******************************************/
|
67266 |
if ( true ) {
|
67267 |
// AMD - RequireJS
|
67268 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
67269 |
+
__webpack_require__(/*! ev-emitter/ev-emitter */ 98),
|
67270 |
+
__webpack_require__(/*! get-size/get-size */ 99),
|
67271 |
+
__webpack_require__(/*! fizzy-ui-utils/utils */ 403),
|
67272 |
+
__webpack_require__(/*! ./item */ 405)
|
67273 |
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( EvEmitter, getSize, utils, Item ) {
|
67274 |
return factory( window, EvEmitter, getSize, utils, Item);
|
67275 |
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
68194 |
|
68195 |
|
68196 |
/***/ }),
|
68197 |
+
/* 403 */
|
68198 |
/*!**********************************************!*\
|
68199 |
!*** ./node_modules/fizzy-ui-utils/utils.js ***!
|
68200 |
\**********************************************/
|
68216 |
if ( true ) {
|
68217 |
// AMD
|
68218 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
68219 |
+
__webpack_require__(/*! desandro-matches-selector/matches-selector */ 404)
|
68220 |
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( matchesSelector ) {
|
68221 |
return factory( window, matchesSelector );
|
68222 |
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
68447 |
|
68448 |
|
68449 |
/***/ }),
|
68450 |
+
/* 404 */
|
68451 |
/*!********************************************************************!*\
|
68452 |
!*** ./node_modules/desandro-matches-selector/matches-selector.js ***!
|
68453 |
\********************************************************************/
|
68515 |
|
68516 |
|
68517 |
/***/ }),
|
68518 |
+
/* 405 */
|
68519 |
/*!***************************************!*\
|
68520 |
!*** ./node_modules/outlayer/item.js ***!
|
68521 |
\***************************************/
|
68533 |
if ( true ) {
|
68534 |
// AMD - RequireJS
|
68535 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
68536 |
+
__webpack_require__(/*! ev-emitter/ev-emitter */ 98),
|
68537 |
+
__webpack_require__(/*! get-size/get-size */ 99)
|
68538 |
], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
68539 |
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
68540 |
(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),
|
69081 |
|
69082 |
|
69083 |
/***/ }),
|
69084 |
+
/* 406 */
|
69085 |
/*!***************************************************!*\
|
69086 |
!*** ./node_modules/imagesloaded/imagesloaded.js ***!
|
69087 |
\***************************************************/
|
69103 |
if ( true ) {
|
69104 |
// AMD
|
69105 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
69106 |
+
__webpack_require__(/*! ev-emitter/ev-emitter */ 98)
|
69107 |
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( EvEmitter ) {
|
69108 |
return factory( window, EvEmitter );
|
69109 |
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
69470 |
|
69471 |
|
69472 |
/***/ }),
|
69473 |
+
/* 407 */
|
69474 |
/*!***************************************!*\
|
69475 |
!*** ./node_modules/lodash/assign.js ***!
|
69476 |
\***************************************/
|
69478 |
/*! all exports used */
|
69479 |
/***/ (function(module, exports, __webpack_require__) {
|
69480 |
|
69481 |
+
var assignValue = __webpack_require__(/*! ./_assignValue */ 64),
|
69482 |
copyObject = __webpack_require__(/*! ./_copyObject */ 35),
|
69483 |
+
createAssigner = __webpack_require__(/*! ./_createAssigner */ 408),
|
69484 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 29),
|
69485 |
+
isPrototype = __webpack_require__(/*! ./_isPrototype */ 54),
|
69486 |
keys = __webpack_require__(/*! ./keys */ 28);
|
69487 |
|
69488 |
/** Used for built-in method references. */
|
69539 |
|
69540 |
|
69541 |
/***/ }),
|
69542 |
+
/* 408 */
|
69543 |
/*!************************************************!*\
|
69544 |
!*** ./node_modules/lodash/_createAssigner.js ***!
|
69545 |
\************************************************/
|
69547 |
/*! all exports used */
|
69548 |
/***/ (function(module, exports, __webpack_require__) {
|
69549 |
|
69550 |
+
var baseRest = __webpack_require__(/*! ./_baseRest */ 409),
|
69551 |
+
isIterateeCall = __webpack_require__(/*! ./_isIterateeCall */ 414);
|
69552 |
|
69553 |
/**
|
69554 |
* Creates a function like `_.assign`.
|
69587 |
|
69588 |
|
69589 |
/***/ }),
|
69590 |
+
/* 409 */
|
69591 |
/*!******************************************!*\
|
69592 |
!*** ./node_modules/lodash/_baseRest.js ***!
|
69593 |
\******************************************/
|
69595 |
/*! all exports used */
|
69596 |
/***/ (function(module, exports, __webpack_require__) {
|
69597 |
|
69598 |
+
var identity = __webpack_require__(/*! ./identity */ 58),
|
69599 |
+
overRest = __webpack_require__(/*! ./_overRest */ 192),
|
69600 |
+
setToString = __webpack_require__(/*! ./_setToString */ 193);
|
69601 |
|
69602 |
/**
|
69603 |
* The base implementation of `_.rest` which doesn't validate or coerce arguments.
|
69615 |
|
69616 |
|
69617 |
/***/ }),
|
69618 |
+
/* 410 */
|
69619 |
/*!***************************************!*\
|
69620 |
!*** ./node_modules/lodash/_apply.js ***!
|
69621 |
\***************************************/
|
69647 |
|
69648 |
|
69649 |
/***/ }),
|
69650 |
+
/* 411 */
|
69651 |
/*!*************************************************!*\
|
69652 |
!*** ./node_modules/lodash/_baseSetToString.js ***!
|
69653 |
\*************************************************/
|
69655 |
/*! all exports used */
|
69656 |
/***/ (function(module, exports, __webpack_require__) {
|
69657 |
|
69658 |
+
var constant = __webpack_require__(/*! ./constant */ 412),
|
69659 |
+
defineProperty = __webpack_require__(/*! ./_defineProperty */ 191),
|
69660 |
+
identity = __webpack_require__(/*! ./identity */ 58);
|
69661 |
|
69662 |
/**
|
69663 |
* The base implementation of `setToString` without support for hot loop shorting.
|
69680 |
|
69681 |
|
69682 |
/***/ }),
|
69683 |
+
/* 412 */
|
69684 |
/*!*****************************************!*\
|
69685 |
!*** ./node_modules/lodash/constant.js ***!
|
69686 |
\*****************************************/
|
69717 |
|
69718 |
|
69719 |
/***/ }),
|
69720 |
+
/* 413 */
|
69721 |
/*!******************************************!*\
|
69722 |
!*** ./node_modules/lodash/_shortOut.js ***!
|
69723 |
\******************************************/
|
69765 |
|
69766 |
|
69767 |
/***/ }),
|
69768 |
+
/* 414 */
|
69769 |
/*!************************************************!*\
|
69770 |
!*** ./node_modules/lodash/_isIterateeCall.js ***!
|
69771 |
\************************************************/
|
69773 |
/*! all exports used */
|
69774 |
/***/ (function(module, exports, __webpack_require__) {
|
69775 |
|
69776 |
+
var eq = __webpack_require__(/*! ./eq */ 48),
|
69777 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 29),
|
69778 |
+
isIndex = __webpack_require__(/*! ./_isIndex */ 51),
|
69779 |
isObject = __webpack_require__(/*! ./isObject */ 13);
|
69780 |
|
69781 |
/**
|
69806 |
|
69807 |
|
69808 |
/***/ }),
|
69809 |
+
/* 415 */
|
69810 |
/*!*****************************************************************************!*\
|
69811 |
!*** ./node_modules/element-resize-detector/src/element-resize-detector.js ***!
|
69812 |
\*****************************************************************************/
|
69817 |
"use strict";
|
69818 |
|
69819 |
|
69820 |
+
var forEach = __webpack_require__(/*! ./collection-utils */ 194).forEach;
|
69821 |
+
var elementUtilsMaker = __webpack_require__(/*! ./element-utils */ 416);
|
69822 |
+
var listenerHandlerMaker = __webpack_require__(/*! ./listener-handler */ 417);
|
69823 |
+
var idGeneratorMaker = __webpack_require__(/*! ./id-generator */ 418);
|
69824 |
+
var idHandlerMaker = __webpack_require__(/*! ./id-handler */ 419);
|
69825 |
+
var reporterMaker = __webpack_require__(/*! ./reporter */ 420);
|
69826 |
+
var browserDetector = __webpack_require__(/*! ./browser-detector */ 195);
|
69827 |
+
var batchProcessorMaker = __webpack_require__(/*! batch-processor */ 421);
|
69828 |
+
var stateHandler = __webpack_require__(/*! ./state-handler */ 423);
|
69829 |
|
69830 |
//Detection strategies.
|
69831 |
+
var objectStrategyMaker = __webpack_require__(/*! ./detection-strategy/object.js */ 424);
|
69832 |
+
var scrollStrategyMaker = __webpack_require__(/*! ./detection-strategy/scroll.js */ 425);
|
69833 |
|
69834 |
function isCollection(obj) {
|
69835 |
return Array.isArray(obj) || obj.length !== undefined;
|
70146 |
|
70147 |
|
70148 |
/***/ }),
|
70149 |
+
/* 416 */
|
70150 |
/*!*******************************************************************!*\
|
70151 |
!*** ./node_modules/element-resize-detector/src/element-utils.js ***!
|
70152 |
\*******************************************************************/
|
70210 |
|
70211 |
|
70212 |
/***/ }),
|
70213 |
+
/* 417 */
|
70214 |
/*!**********************************************************************!*\
|
70215 |
!*** ./node_modules/element-resize-detector/src/listener-handler.js ***!
|
70216 |
\**********************************************************************/
|
70282 |
|
70283 |
|
70284 |
/***/ }),
|
70285 |
+
/* 418 */
|
70286 |
/*!******************************************************************!*\
|
70287 |
!*** ./node_modules/element-resize-detector/src/id-generator.js ***!
|
70288 |
\******************************************************************/
|
70312 |
|
70313 |
|
70314 |
/***/ }),
|
70315 |
+
/* 419 */
|
70316 |
/*!****************************************************************!*\
|
70317 |
!*** ./node_modules/element-resize-detector/src/id-handler.js ***!
|
70318 |
\****************************************************************/
|
70371 |
|
70372 |
|
70373 |
/***/ }),
|
70374 |
+
/* 420 */
|
70375 |
/*!**************************************************************!*\
|
70376 |
!*** ./node_modules/element-resize-detector/src/reporter.js ***!
|
70377 |
\**************************************************************/
|
70425 |
};
|
70426 |
|
70427 |
/***/ }),
|
70428 |
+
/* 421 */
|
70429 |
/*!*************************************************************!*\
|
70430 |
!*** ./node_modules/batch-processor/src/batch-processor.js ***!
|
70431 |
\*************************************************************/
|
70436 |
"use strict";
|
70437 |
|
70438 |
|
70439 |
+
var utils = __webpack_require__(/*! ./utils */ 422);
|
70440 |
|
70441 |
module.exports = function batchProcessorMaker(options) {
|
70442 |
options = options || {};
|
70575 |
|
70576 |
|
70577 |
/***/ }),
|
70578 |
+
/* 422 */
|
70579 |
/*!***************************************************!*\
|
70580 |
!*** ./node_modules/batch-processor/src/utils.js ***!
|
70581 |
\***************************************************/
|
70602 |
|
70603 |
|
70604 |
/***/ }),
|
70605 |
+
/* 423 */
|
70606 |
/*!*******************************************************************!*\
|
70607 |
!*** ./node_modules/element-resize-detector/src/state-handler.js ***!
|
70608 |
\*******************************************************************/
|
70636 |
|
70637 |
|
70638 |
/***/ }),
|
70639 |
+
/* 424 */
|
70640 |
/*!*******************************************************************************!*\
|
70641 |
!*** ./node_modules/element-resize-detector/src/detection-strategy/object.js ***!
|
70642 |
\*******************************************************************************/
|
70652 |
|
70653 |
|
70654 |
|
70655 |
+
var browserDetector = __webpack_require__(/*! ../browser-detector */ 195);
|
70656 |
|
70657 |
module.exports = function(options) {
|
70658 |
options = options || {};
|
70895 |
|
70896 |
|
70897 |
/***/ }),
|
70898 |
+
/* 425 */
|
70899 |
/*!*******************************************************************************!*\
|
70900 |
!*** ./node_modules/element-resize-detector/src/detection-strategy/scroll.js ***!
|
70901 |
\*******************************************************************************/
|
70911 |
|
70912 |
|
70913 |
|
70914 |
+
var forEach = __webpack_require__(/*! ../collection-utils */ 194).forEach;
|
70915 |
|
70916 |
module.exports = function(options) {
|
70917 |
options = options || {};
|
71568 |
|
71569 |
|
71570 |
/***/ }),
|
71571 |
+
/* 426 */
|
71572 |
/*!*****************************************!*\
|
71573 |
!*** ./node_modules/lodash/debounce.js ***!
|
71574 |
\*****************************************/
|
71577 |
/***/ (function(module, exports, __webpack_require__) {
|
71578 |
|
71579 |
var isObject = __webpack_require__(/*! ./isObject */ 13),
|
71580 |
+
now = __webpack_require__(/*! ./now */ 427),
|
71581 |
+
toNumber = __webpack_require__(/*! ./toNumber */ 188);
|
71582 |
|
71583 |
/** Error message constants. */
|
71584 |
var FUNC_ERROR_TEXT = 'Expected a function';
|
71770 |
|
71771 |
|
71772 |
/***/ }),
|
71773 |
+
/* 427 */
|
71774 |
/*!************************************!*\
|
71775 |
!*** ./node_modules/lodash/now.js ***!
|
71776 |
\************************************/
|
71804 |
|
71805 |
|
71806 |
/***/ }),
|
71807 |
+
/* 428 */
|
71808 |
/*!*************************************!*\
|
71809 |
!*** ./node_modules/lodash/omit.js ***!
|
71810 |
\*************************************/
|
71812 |
/*! all exports used */
|
71813 |
/***/ (function(module, exports, __webpack_require__) {
|
71814 |
|
71815 |
+
var arrayMap = __webpack_require__(/*! ./_arrayMap */ 45),
|
71816 |
+
baseClone = __webpack_require__(/*! ./_baseClone */ 429),
|
71817 |
+
baseUnset = __webpack_require__(/*! ./_baseUnset */ 451),
|
71818 |
castPath = __webpack_require__(/*! ./_castPath */ 30),
|
71819 |
copyObject = __webpack_require__(/*! ./_copyObject */ 35),
|
71820 |
+
customOmitClone = __webpack_require__(/*! ./_customOmitClone */ 454),
|
71821 |
+
flatRest = __webpack_require__(/*! ./_flatRest */ 456),
|
71822 |
+
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 101);
|
71823 |
|
71824 |
/** Used to compose bitmasks for cloning. */
|
71825 |
var CLONE_DEEP_FLAG = 1,
|
71872 |
|
71873 |
|
71874 |
/***/ }),
|
71875 |
+
/* 429 */
|
71876 |
/*!*******************************************!*\
|
71877 |
!*** ./node_modules/lodash/_baseClone.js ***!
|
71878 |
\*******************************************/
|
71880 |
/*! all exports used */
|
71881 |
/***/ (function(module, exports, __webpack_require__) {
|
71882 |
|
71883 |
+
var Stack = __webpack_require__(/*! ./_Stack */ 74),
|
71884 |
+
arrayEach = __webpack_require__(/*! ./_arrayEach */ 430),
|
71885 |
+
assignValue = __webpack_require__(/*! ./_assignValue */ 64),
|
71886 |
+
baseAssign = __webpack_require__(/*! ./_baseAssign */ 431),
|
71887 |
+
baseAssignIn = __webpack_require__(/*! ./_baseAssignIn */ 432),
|
71888 |
+
cloneBuffer = __webpack_require__(/*! ./_cloneBuffer */ 435),
|
71889 |
+
copyArray = __webpack_require__(/*! ./_copyArray */ 436),
|
71890 |
+
copySymbols = __webpack_require__(/*! ./_copySymbols */ 437),
|
71891 |
+
copySymbolsIn = __webpack_require__(/*! ./_copySymbolsIn */ 438),
|
71892 |
+
getAllKeys = __webpack_require__(/*! ./_getAllKeys */ 154),
|
71893 |
+
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 101),
|
71894 |
+
getTag = __webpack_require__(/*! ./_getTag */ 55),
|
71895 |
+
initCloneArray = __webpack_require__(/*! ./_initCloneArray */ 439),
|
71896 |
+
initCloneByTag = __webpack_require__(/*! ./_initCloneByTag */ 440),
|
71897 |
+
initCloneObject = __webpack_require__(/*! ./_initCloneObject */ 445),
|
71898 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
71899 |
+
isBuffer = __webpack_require__(/*! ./isBuffer */ 81),
|
71900 |
+
isMap = __webpack_require__(/*! ./isMap */ 447),
|
71901 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
71902 |
+
isSet = __webpack_require__(/*! ./isSet */ 449),
|
71903 |
keys = __webpack_require__(/*! ./keys */ 28);
|
71904 |
|
71905 |
/** Used to compose bitmasks for cloning. */
|
72048 |
|
72049 |
|
72050 |
/***/ }),
|
72051 |
+
/* 430 */
|
72052 |
/*!*******************************************!*\
|
72053 |
!*** ./node_modules/lodash/_arrayEach.js ***!
|
72054 |
\*******************************************/
|
72081 |
|
72082 |
|
72083 |
/***/ }),
|
72084 |
+
/* 431 */
|
72085 |
/*!********************************************!*\
|
72086 |
!*** ./node_modules/lodash/_baseAssign.js ***!
|
72087 |
\********************************************/
|
72109 |
|
72110 |
|
72111 |
/***/ }),
|
72112 |
+
/* 432 */
|
72113 |
/*!**********************************************!*\
|
72114 |
!*** ./node_modules/lodash/_baseAssignIn.js ***!
|
72115 |
\**********************************************/
|
72118 |
/***/ (function(module, exports, __webpack_require__) {
|
72119 |
|
72120 |
var copyObject = __webpack_require__(/*! ./_copyObject */ 35),
|
72121 |
+
keysIn = __webpack_require__(/*! ./keysIn */ 196);
|
72122 |
|
72123 |
/**
|
72124 |
* The base implementation of `_.assignIn` without support for multiple sources
|
72137 |
|
72138 |
|
72139 |
/***/ }),
|
72140 |
+
/* 433 */
|
72141 |
/*!********************************************!*\
|
72142 |
!*** ./node_modules/lodash/_baseKeysIn.js ***!
|
72143 |
\********************************************/
|
72146 |
/***/ (function(module, exports, __webpack_require__) {
|
72147 |
|
72148 |
var isObject = __webpack_require__(/*! ./isObject */ 13),
|
72149 |
+
isPrototype = __webpack_require__(/*! ./_isPrototype */ 54),
|
72150 |
+
nativeKeysIn = __webpack_require__(/*! ./_nativeKeysIn */ 434);
|
72151 |
|
72152 |
/** Used for built-in method references. */
|
72153 |
var objectProto = Object.prototype;
|
72181 |
|
72182 |
|
72183 |
/***/ }),
|
72184 |
+
/* 434 */
|
72185 |
/*!**********************************************!*\
|
72186 |
!*** ./node_modules/lodash/_nativeKeysIn.js ***!
|
72187 |
\**********************************************/
|
72212 |
|
72213 |
|
72214 |
/***/ }),
|
72215 |
+
/* 435 */
|
72216 |
/*!*********************************************!*\
|
72217 |
!*** ./node_modules/lodash/_cloneBuffer.js ***!
|
72218 |
\*********************************************/
|
72256 |
|
72257 |
module.exports = cloneBuffer;
|
72258 |
|
72259 |
+
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */ 82)(module)))
|
72260 |
|
72261 |
/***/ }),
|
72262 |
+
/* 436 */
|
72263 |
/*!*******************************************!*\
|
72264 |
!*** ./node_modules/lodash/_copyArray.js ***!
|
72265 |
\*******************************************/
|
72290 |
|
72291 |
|
72292 |
/***/ }),
|
72293 |
+
/* 437 */
|
72294 |
/*!*********************************************!*\
|
72295 |
!*** ./node_modules/lodash/_copySymbols.js ***!
|
72296 |
\*********************************************/
|
72299 |
/***/ (function(module, exports, __webpack_require__) {
|
72300 |
|
72301 |
var copyObject = __webpack_require__(/*! ./_copyObject */ 35),
|
72302 |
+
getSymbols = __webpack_require__(/*! ./_getSymbols */ 79);
|
72303 |
|
72304 |
/**
|
72305 |
* Copies own symbols of `source` to `object`.
|
72317 |
|
72318 |
|
72319 |
/***/ }),
|
72320 |
+
/* 438 */
|
72321 |
/*!***********************************************!*\
|
72322 |
!*** ./node_modules/lodash/_copySymbolsIn.js ***!
|
72323 |
\***********************************************/
|
72326 |
/***/ (function(module, exports, __webpack_require__) {
|
72327 |
|
72328 |
var copyObject = __webpack_require__(/*! ./_copyObject */ 35),
|
72329 |
+
getSymbolsIn = __webpack_require__(/*! ./_getSymbolsIn */ 197);
|
72330 |
|
72331 |
/**
|
72332 |
* Copies own and inherited symbols of `source` to `object`.
|
72344 |
|
72345 |
|
72346 |
/***/ }),
|
72347 |
+
/* 439 */
|
72348 |
/*!************************************************!*\
|
72349 |
!*** ./node_modules/lodash/_initCloneArray.js ***!
|
72350 |
\************************************************/
|
72381 |
|
72382 |
|
72383 |
/***/ }),
|
72384 |
+
/* 440 */
|
72385 |
/*!************************************************!*\
|
72386 |
!*** ./node_modules/lodash/_initCloneByTag.js ***!
|
72387 |
\************************************************/
|
72389 |
/*! all exports used */
|
72390 |
/***/ (function(module, exports, __webpack_require__) {
|
72391 |
|
72392 |
+
var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */ 102),
|
72393 |
+
cloneDataView = __webpack_require__(/*! ./_cloneDataView */ 441),
|
72394 |
+
cloneRegExp = __webpack_require__(/*! ./_cloneRegExp */ 442),
|
72395 |
+
cloneSymbol = __webpack_require__(/*! ./_cloneSymbol */ 443),
|
72396 |
+
cloneTypedArray = __webpack_require__(/*! ./_cloneTypedArray */ 444);
|
72397 |
|
72398 |
/** `Object#toString` result references. */
|
72399 |
var boolTag = '[object Boolean]',
|
72469 |
|
72470 |
|
72471 |
/***/ }),
|
72472 |
+
/* 441 */
|
72473 |
/*!***********************************************!*\
|
72474 |
!*** ./node_modules/lodash/_cloneDataView.js ***!
|
72475 |
\***********************************************/
|
72477 |
/*! all exports used */
|
72478 |
/***/ (function(module, exports, __webpack_require__) {
|
72479 |
|
72480 |
+
var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */ 102);
|
72481 |
|
72482 |
/**
|
72483 |
* Creates a clone of `dataView`.
|
72496 |
|
72497 |
|
72498 |
/***/ }),
|
72499 |
+
/* 442 */
|
72500 |
/*!*********************************************!*\
|
72501 |
!*** ./node_modules/lodash/_cloneRegExp.js ***!
|
72502 |
\*********************************************/
|
72524 |
|
72525 |
|
72526 |
/***/ }),
|
72527 |
+
/* 443 */
|
72528 |
/*!*********************************************!*\
|
72529 |
!*** ./node_modules/lodash/_cloneSymbol.js ***!
|
72530 |
\*********************************************/
|
72553 |
|
72554 |
|
72555 |
/***/ }),
|
72556 |
+
/* 444 */
|
72557 |
/*!*************************************************!*\
|
72558 |
!*** ./node_modules/lodash/_cloneTypedArray.js ***!
|
72559 |
\*************************************************/
|
72561 |
/*! all exports used */
|
72562 |
/***/ (function(module, exports, __webpack_require__) {
|
72563 |
|
72564 |
+
var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */ 102);
|
72565 |
|
72566 |
/**
|
72567 |
* Creates a clone of `typedArray`.
|
72580 |
|
72581 |
|
72582 |
/***/ }),
|
72583 |
+
/* 445 */
|
72584 |
/*!*************************************************!*\
|
72585 |
!*** ./node_modules/lodash/_initCloneObject.js ***!
|
72586 |
\*************************************************/
|
72588 |
/*! all exports used */
|
72589 |
/***/ (function(module, exports, __webpack_require__) {
|
72590 |
|
72591 |
+
var baseCreate = __webpack_require__(/*! ./_baseCreate */ 446),
|
72592 |
+
getPrototype = __webpack_require__(/*! ./_getPrototype */ 100),
|
72593 |
+
isPrototype = __webpack_require__(/*! ./_isPrototype */ 54);
|
72594 |
|
72595 |
/**
|
72596 |
* Initializes an object clone.
|
72609 |
|
72610 |
|
72611 |
/***/ }),
|
72612 |
+
/* 446 */
|
72613 |
/*!********************************************!*\
|
72614 |
!*** ./node_modules/lodash/_baseCreate.js ***!
|
72615 |
\********************************************/
|
72650 |
|
72651 |
|
72652 |
/***/ }),
|
72653 |
+
/* 447 */
|
72654 |
/*!**************************************!*\
|
72655 |
!*** ./node_modules/lodash/isMap.js ***!
|
72656 |
\**************************************/
|
72658 |
/*! all exports used */
|
72659 |
/***/ (function(module, exports, __webpack_require__) {
|
72660 |
|
72661 |
+
var baseIsMap = __webpack_require__(/*! ./_baseIsMap */ 448),
|
72662 |
+
baseUnary = __webpack_require__(/*! ./_baseUnary */ 52),
|
72663 |
+
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 53);
|
72664 |
|
72665 |
/* Node.js helper references. */
|
72666 |
var nodeIsMap = nodeUtil && nodeUtil.isMap;
|
72688 |
|
72689 |
|
72690 |
/***/ }),
|
72691 |
+
/* 448 */
|
72692 |
/*!*******************************************!*\
|
72693 |
!*** ./node_modules/lodash/_baseIsMap.js ***!
|
72694 |
\*******************************************/
|
72696 |
/*! all exports used */
|
72697 |
/***/ (function(module, exports, __webpack_require__) {
|
72698 |
|
72699 |
+
var getTag = __webpack_require__(/*! ./_getTag */ 55),
|
72700 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
72701 |
|
72702 |
/** `Object#toString` result references. */
|
72717 |
|
72718 |
|
72719 |
/***/ }),
|
72720 |
+
/* 449 */
|
72721 |
/*!**************************************!*\
|
72722 |
!*** ./node_modules/lodash/isSet.js ***!
|
72723 |
\**************************************/
|
72725 |
/*! all exports used */
|
72726 |
/***/ (function(module, exports, __webpack_require__) {
|
72727 |
|
72728 |
+
var baseIsSet = __webpack_require__(/*! ./_baseIsSet */ 450),
|
72729 |
+
baseUnary = __webpack_require__(/*! ./_baseUnary */ 52),
|
72730 |
+
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 53);
|
72731 |
|
72732 |
/* Node.js helper references. */
|
72733 |
var nodeIsSet = nodeUtil && nodeUtil.isSet;
|
72755 |
|
72756 |
|
72757 |
/***/ }),
|
72758 |
+
/* 450 */
|
72759 |
/*!*******************************************!*\
|
72760 |
!*** ./node_modules/lodash/_baseIsSet.js ***!
|
72761 |
\*******************************************/
|
72763 |
/*! all exports used */
|
72764 |
/***/ (function(module, exports, __webpack_require__) {
|
72765 |
|
72766 |
+
var getTag = __webpack_require__(/*! ./_getTag */ 55),
|
72767 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
72768 |
|
72769 |
/** `Object#toString` result references. */
|
72784 |
|
72785 |
|
72786 |
/***/ }),
|
72787 |
+
/* 451 */
|
72788 |
/*!*******************************************!*\
|
72789 |
!*** ./node_modules/lodash/_baseUnset.js ***!
|
72790 |
\*******************************************/
|
72793 |
/***/ (function(module, exports, __webpack_require__) {
|
72794 |
|
72795 |
var castPath = __webpack_require__(/*! ./_castPath */ 30),
|
72796 |
+
last = __webpack_require__(/*! ./last */ 452),
|
72797 |
+
parent = __webpack_require__(/*! ./_parent */ 453),
|
72798 |
toKey = __webpack_require__(/*! ./_toKey */ 31);
|
72799 |
|
72800 |
/**
|
72815 |
|
72816 |
|
72817 |
/***/ }),
|
72818 |
+
/* 452 */
|
72819 |
/*!*************************************!*\
|
72820 |
!*** ./node_modules/lodash/last.js ***!
|
72821 |
\*************************************/
|
72846 |
|
72847 |
|
72848 |
/***/ }),
|
72849 |
+
/* 453 */
|
72850 |
/*!****************************************!*\
|
72851 |
!*** ./node_modules/lodash/_parent.js ***!
|
72852 |
\****************************************/
|
72854 |
/*! all exports used */
|
72855 |
/***/ (function(module, exports, __webpack_require__) {
|
72856 |
|
72857 |
+
var baseGet = __webpack_require__(/*! ./_baseGet */ 56),
|
72858 |
+
baseSlice = __webpack_require__(/*! ./_baseSlice */ 92);
|
72859 |
|
72860 |
/**
|
72861 |
* Gets the parent value at `path` of `object`.
|
72873 |
|
72874 |
|
72875 |
/***/ }),
|
72876 |
+
/* 454 */
|
72877 |
/*!*************************************************!*\
|
72878 |
!*** ./node_modules/lodash/_customOmitClone.js ***!
|
72879 |
\*************************************************/
|
72881 |
/*! all exports used */
|
72882 |
/***/ (function(module, exports, __webpack_require__) {
|
72883 |
|
72884 |
+
var isPlainObject = __webpack_require__(/*! ./isPlainObject */ 455);
|
72885 |
|
72886 |
/**
|
72887 |
* Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain
|
72900 |
|
72901 |
|
72902 |
/***/ }),
|
72903 |
+
/* 455 */
|
72904 |
/*!**********************************************!*\
|
72905 |
!*** ./node_modules/lodash/isPlainObject.js ***!
|
72906 |
\**********************************************/
|
72909 |
/***/ (function(module, exports, __webpack_require__) {
|
72910 |
|
72911 |
var baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 22),
|
72912 |
+
getPrototype = __webpack_require__(/*! ./_getPrototype */ 100),
|
72913 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 18);
|
72914 |
|
72915 |
/** `Object#toString` result references. */
|
72973 |
|
72974 |
|
72975 |
/***/ }),
|
72976 |
+
/* 456 */
|
72977 |
/*!******************************************!*\
|
72978 |
!*** ./node_modules/lodash/_flatRest.js ***!
|
72979 |
\******************************************/
|
72981 |
/*! all exports used */
|
72982 |
/***/ (function(module, exports, __webpack_require__) {
|
72983 |
|
72984 |
+
var flatten = __webpack_require__(/*! ./flatten */ 457),
|
72985 |
+
overRest = __webpack_require__(/*! ./_overRest */ 192),
|
72986 |
+
setToString = __webpack_require__(/*! ./_setToString */ 193);
|
72987 |
|
72988 |
/**
|
72989 |
* A specialized version of `baseRest` which flattens the rest array.
|
73000 |
|
73001 |
|
73002 |
/***/ }),
|
73003 |
+
/* 457 */
|
73004 |
/*!****************************************!*\
|
73005 |
!*** ./node_modules/lodash/flatten.js ***!
|
73006 |
\****************************************/
|
73008 |
/*! all exports used */
|
73009 |
/***/ (function(module, exports, __webpack_require__) {
|
73010 |
|
73011 |
+
var baseFlatten = __webpack_require__(/*! ./_baseFlatten */ 458);
|
73012 |
|
73013 |
/**
|
73014 |
* Flattens `array` a single level deep.
|
73033 |
|
73034 |
|
73035 |
/***/ }),
|
73036 |
+
/* 458 */
|
73037 |
/*!*********************************************!*\
|
73038 |
!*** ./node_modules/lodash/_baseFlatten.js ***!
|
73039 |
\*********************************************/
|
73041 |
/*! all exports used */
|
73042 |
/***/ (function(module, exports, __webpack_require__) {
|
73043 |
|
73044 |
+
var arrayPush = __webpack_require__(/*! ./_arrayPush */ 78),
|
73045 |
+
isFlattenable = __webpack_require__(/*! ./_isFlattenable */ 459);
|
73046 |
|
73047 |
/**
|
73048 |
* The base implementation of `_.flatten` with support for restricting flattening.
|
73082 |
|
73083 |
|
73084 |
/***/ }),
|
73085 |
+
/* 459 */
|
73086 |
/*!***********************************************!*\
|
73087 |
!*** ./node_modules/lodash/_isFlattenable.js ***!
|
73088 |
\***********************************************/
|
73091 |
/***/ (function(module, exports, __webpack_require__) {
|
73092 |
|
73093 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 27),
|
73094 |
+
isArguments = __webpack_require__(/*! ./isArguments */ 80),
|
73095 |
isArray = __webpack_require__(/*! ./isArray */ 14);
|
73096 |
|
73097 |
/** Built-in value references. */
|
73113 |
|
73114 |
|
73115 |
/***/ }),
|
73116 |
+
/* 460 */
|
73117 |
/*!**************************************************!*\
|
73118 |
!*** ./node_modules/create-react-class/index.js ***!
|
73119 |
\**************************************************/
|
73133 |
|
73134 |
|
73135 |
var React = __webpack_require__(/*! react */ 5);
|
73136 |
+
var factory = __webpack_require__(/*! ./factory */ 461);
|
73137 |
|
73138 |
if (typeof React === 'undefined') {
|
73139 |
throw Error(
|
73153 |
|
73154 |
|
73155 |
/***/ }),
|
73156 |
+
/* 461 */
|
73157 |
/*!****************************************************!*\
|
73158 |
!*** ./node_modules/create-react-class/factory.js ***!
|
73159 |
\****************************************************/
|
74168 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 6)))
|
74169 |
|
74170 |
/***/ }),
|
74171 |
+
/* 462 */
|
74172 |
/*!************************************************!*\
|
74173 |
!*** ./src/blocks/post/post-carousel/block.js ***!
|
74174 |
\************************************************/
|
74176 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
74177 |
|
74178 |
"use strict";
|
74179 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 463);
|
74180 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
74181 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 96);
|
74182 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
74183 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 97);
|
74184 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
74185 |
/**
|
74186 |
* BLOCK: UAGb - post-carousel
|
74218 |
});
|
74219 |
|
74220 |
/***/ }),
|
74221 |
+
/* 463 */
|
74222 |
/*!***********************************************!*\
|
74223 |
!*** ./src/blocks/post/post-carousel/edit.js ***!
|
74224 |
\***********************************************/
|
74227 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
74228 |
|
74229 |
"use strict";
|
74230 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_get__ = __webpack_require__(/*! lodash/get */ 163);
|
74231 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_get___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_get__);
|
74232 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
74233 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_map__);
|
74234 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
74235 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
74236 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
74237 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blog__ = __webpack_require__(/*! ./blog */ 464);
|
74238 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__styling__ = __webpack_require__(/*! .././styling */ 95);
|
74239 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__function__ = __webpack_require__(/*! .././function */ 34);
|
74240 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
74241 |
|
75760 |
}))(UAGBPostCarousel));
|
75761 |
|
75762 |
/***/ }),
|
75763 |
+
/* 464 */
|
75764 |
/*!***********************************************!*\
|
75765 |
!*** ./src/blocks/post/post-carousel/blog.js ***!
|
75766 |
\***********************************************/
|
75771 |
"use strict";
|
75772 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
75773 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
75774 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick__ = __webpack_require__(/*! react-slick */ 198);
|
75775 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_slick__);
|
75776 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
75777 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__function__ = __webpack_require__(/*! .././function */ 34);
|
75955 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
75956 |
|
75957 |
/***/ }),
|
75958 |
+
/* 465 */
|
75959 |
/*!************************************************!*\
|
75960 |
!*** ./node_modules/react-slick/lib/slider.js ***!
|
75961 |
\************************************************/
|
75973 |
|
75974 |
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 5));
|
75975 |
|
75976 |
+
var _innerSlider = __webpack_require__(/*! ./inner-slider */ 466);
|
75977 |
|
75978 |
+
var _json2mq = _interopRequireDefault(__webpack_require__(/*! json2mq */ 473));
|
75979 |
|
75980 |
+
var _defaultProps = _interopRequireDefault(__webpack_require__(/*! ./default-props */ 475));
|
75981 |
|
75982 |
var _innerSliderUtils = __webpack_require__(/*! ./utils/innerSliderUtils */ 42);
|
75983 |
|
76009 |
|
76010 |
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
76011 |
|
76012 |
+
var enquire = (0, _innerSliderUtils.canUseDOM)() && __webpack_require__(/*! enquire.js */ 476);
|
76013 |
|
76014 |
var Slider =
|
76015 |
/*#__PURE__*/
|
76252 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
76253 |
|
76254 |
/***/ }),
|
76255 |
+
/* 466 */
|
76256 |
/*!******************************************************!*\
|
76257 |
!*** ./node_modules/react-slick/lib/inner-slider.js ***!
|
76258 |
\******************************************************/
|
76270 |
|
76271 |
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 5));
|
76272 |
|
76273 |
+
var _initialState = _interopRequireDefault(__webpack_require__(/*! ./initial-state */ 467));
|
76274 |
|
76275 |
+
var _lodash = _interopRequireDefault(__webpack_require__(/*! lodash.debounce */ 468));
|
76276 |
|
76277 |
var _classnames = _interopRequireDefault(__webpack_require__(/*! classnames */ 0));
|
76278 |
|
76279 |
var _innerSliderUtils = __webpack_require__(/*! ./utils/innerSliderUtils */ 42);
|
76280 |
|
76281 |
+
var _track = __webpack_require__(/*! ./track */ 469);
|
76282 |
|
76283 |
+
var _dots = __webpack_require__(/*! ./dots */ 470);
|
76284 |
|
76285 |
+
var _arrows = __webpack_require__(/*! ./arrows */ 471);
|
76286 |
|
76287 |
+
var _resizeObserverPolyfill = _interopRequireDefault(__webpack_require__(/*! resize-observer-polyfill */ 472));
|
76288 |
|
76289 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
76290 |
|
77134 |
exports.InnerSlider = InnerSlider;
|
77135 |
|
77136 |
/***/ }),
|
77137 |
+
/* 467 */
|
77138 |
/*!*******************************************************!*\
|
77139 |
!*** ./node_modules/react-slick/lib/initial-state.js ***!
|
77140 |
\*******************************************************/
|
77184 |
exports["default"] = _default;
|
77185 |
|
77186 |
/***/ }),
|
77187 |
+
/* 468 */
|
77188 |
/*!***********************************************!*\
|
77189 |
!*** ./node_modules/lodash.debounce/index.js ***!
|
77190 |
\***********************************************/
|
77570 |
|
77571 |
module.exports = debounce;
|
77572 |
|
77573 |
+
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 76)))
|
77574 |
|
77575 |
/***/ }),
|
77576 |
+
/* 469 */
|
77577 |
/*!***********************************************!*\
|
77578 |
!*** ./node_modules/react-slick/lib/track.js ***!
|
77579 |
\***********************************************/
|
77870 |
exports.Track = Track;
|
77871 |
|
77872 |
/***/ }),
|
77873 |
+
/* 470 */
|
77874 |
/*!**********************************************!*\
|
77875 |
!*** ./node_modules/react-slick/lib/dots.js ***!
|
77876 |
\**********************************************/
|
78012 |
exports.Dots = Dots;
|
78013 |
|
78014 |
/***/ }),
|
78015 |
+
/* 471 */
|
78016 |
/*!************************************************!*\
|
78017 |
!*** ./node_modules/react-slick/lib/arrows.js ***!
|
78018 |
\************************************************/
|
78201 |
exports.NextArrow = NextArrow;
|
78202 |
|
78203 |
/***/ }),
|
78204 |
+
/* 472 */
|
78205 |
/*!*************************************************************************!*\
|
78206 |
!*** ./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js ***!
|
78207 |
\*************************************************************************/
|
79140 |
|
79141 |
/* harmony default export */ __webpack_exports__["default"] = (index);
|
79142 |
|
79143 |
+
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../webpack/buildin/global.js */ 76)))
|
79144 |
|
79145 |
/***/ }),
|
79146 |
+
/* 473 */
|
79147 |
/*!***************************************!*\
|
79148 |
!*** ./node_modules/json2mq/index.js ***!
|
79149 |
\***************************************/
|
79151 |
/*! all exports used */
|
79152 |
/***/ (function(module, exports, __webpack_require__) {
|
79153 |
|
79154 |
+
var camel2hyphen = __webpack_require__(/*! string-convert/camel2hyphen */ 474);
|
79155 |
|
79156 |
var isDimension = function (feature) {
|
79157 |
var re = /[height|width]$/;
|
79204 |
module.exports = json2mq;
|
79205 |
|
79206 |
/***/ }),
|
79207 |
+
/* 474 */
|
79208 |
/*!*****************************************************!*\
|
79209 |
!*** ./node_modules/string-convert/camel2hyphen.js ***!
|
79210 |
\*****************************************************/
|
79223 |
module.exports = camel2hyphen;
|
79224 |
|
79225 |
/***/ }),
|
79226 |
+
/* 475 */
|
79227 |
/*!*******************************************************!*\
|
79228 |
!*** ./node_modules/react-slick/lib/default-props.js ***!
|
79229 |
\*******************************************************/
|
79307 |
exports["default"] = _default;
|
79308 |
|
79309 |
/***/ }),
|
79310 |
+
/* 476 */
|
79311 |
/*!**********************************************!*\
|
79312 |
!*** ./node_modules/enquire.js/src/index.js ***!
|
79313 |
\**********************************************/
|
79315 |
/*! all exports used */
|
79316 |
/***/ (function(module, exports, __webpack_require__) {
|
79317 |
|
79318 |
+
var MediaQueryDispatch = __webpack_require__(/*! ./MediaQueryDispatch */ 477);
|
79319 |
module.exports = new MediaQueryDispatch();
|
79320 |
|
79321 |
|
79322 |
/***/ }),
|
79323 |
+
/* 477 */
|
79324 |
/*!***********************************************************!*\
|
79325 |
!*** ./node_modules/enquire.js/src/MediaQueryDispatch.js ***!
|
79326 |
\***********************************************************/
|
79328 |
/*! all exports used */
|
79329 |
/***/ (function(module, exports, __webpack_require__) {
|
79330 |
|
79331 |
+
var MediaQuery = __webpack_require__(/*! ./MediaQuery */ 478);
|
79332 |
+
var Util = __webpack_require__(/*! ./Util */ 199);
|
79333 |
var each = Util.each;
|
79334 |
var isFunction = Util.isFunction;
|
79335 |
var isArray = Util.isArray;
|
79416 |
|
79417 |
|
79418 |
/***/ }),
|
79419 |
+
/* 478 */
|
79420 |
/*!***************************************************!*\
|
79421 |
!*** ./node_modules/enquire.js/src/MediaQuery.js ***!
|
79422 |
\***************************************************/
|
79424 |
/*! all exports used */
|
79425 |
/***/ (function(module, exports, __webpack_require__) {
|
79426 |
|
79427 |
+
var QueryHandler = __webpack_require__(/*! ./QueryHandler */ 479);
|
79428 |
+
var each = __webpack_require__(/*! ./Util */ 199).each;
|
79429 |
|
79430 |
/**
|
79431 |
* Represents a single media query, manages it's state and registered handlers for this query
|
79520 |
|
79521 |
|
79522 |
/***/ }),
|
79523 |
+
/* 479 */
|
79524 |
/*!*****************************************************!*\
|
79525 |
!*** ./node_modules/enquire.js/src/QueryHandler.js ***!
|
79526 |
\*****************************************************/
|
79605 |
|
79606 |
|
79607 |
/***/ }),
|
79608 |
+
/* 480 */
|
79609 |
/*!*********************************************!*\
|
79610 |
!*** ./src/blocks/post/post-title/block.js ***!
|
79611 |
\*********************************************/
|
79613 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
79614 |
|
79615 |
"use strict";
|
79616 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 184);
|
79617 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! ./style.scss */ 481);
|
79618 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
79619 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 482);
|
79620 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
79621 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 483);
|
79622 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
79623 |
/**
|
79624 |
* BLOCK: Post Title
|
79653 |
});
|
79654 |
|
79655 |
/***/ }),
|
79656 |
+
/* 481 */
|
79657 |
/*!***********************************************!*\
|
79658 |
!*** ./src/blocks/post/post-title/style.scss ***!
|
79659 |
\***********************************************/
|
79663 |
// removed by extract-text-webpack-plugin
|
79664 |
|
79665 |
/***/ }),
|
79666 |
+
/* 482 */
|
79667 |
/*!************************************************!*\
|
79668 |
!*** ./src/blocks/post/post-title/editor.scss ***!
|
79669 |
\************************************************/
|
79673 |
// removed by extract-text-webpack-plugin
|
79674 |
|
79675 |
/***/ }),
|
79676 |
+
/* 483 */
|
79677 |
/*!********************************************!*\
|
79678 |
!*** ./src/blocks/post/post-title/save.js ***!
|
79679 |
\********************************************/
|
79699 |
}
|
79700 |
|
79701 |
/***/ }),
|
79702 |
+
/* 484 */
|
79703 |
/*!*********************************************!*\
|
79704 |
!*** ./src/blocks/post/post-image/block.js ***!
|
79705 |
\*********************************************/
|
79707 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
79708 |
|
79709 |
"use strict";
|
79710 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 186);
|
79711 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__save__ = __webpack_require__(/*! ./save */ 485);
|
79712 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
79713 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 486);
|
79714 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
79715 |
/**
|
79716 |
* BLOCK: Post Image
|
79743 |
});
|
79744 |
|
79745 |
/***/ }),
|
79746 |
+
/* 485 */
|
79747 |
/*!********************************************!*\
|
79748 |
!*** ./src/blocks/post/post-image/save.js ***!
|
79749 |
\********************************************/
|
79764 |
}
|
79765 |
|
79766 |
/***/ }),
|
79767 |
+
/* 486 */
|
79768 |
/*!************************************************!*\
|
79769 |
!*** ./src/blocks/post/post-image/editor.scss ***!
|
79770 |
\************************************************/
|
79774 |
// removed by extract-text-webpack-plugin
|
79775 |
|
79776 |
/***/ }),
|
79777 |
+
/* 487 */
|
79778 |
/*!**********************************************!*\
|
79779 |
!*** ./src/blocks/post/post-button/block.js ***!
|
79780 |
\**********************************************/
|
79782 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
79783 |
|
79784 |
"use strict";
|
79785 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 189);
|
79786 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__save__ = __webpack_require__(/*! ./save */ 488);
|
79787 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
79788 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 489);
|
79789 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
79790 |
/**
|
79791 |
* BLOCK: Post Button
|
79818 |
});
|
79819 |
|
79820 |
/***/ }),
|
79821 |
+
/* 488 */
|
79822 |
/*!*********************************************!*\
|
79823 |
!*** ./src/blocks/post/post-button/save.js ***!
|
79824 |
\*********************************************/
|
79841 |
}
|
79842 |
|
79843 |
/***/ }),
|
79844 |
+
/* 489 */
|
79845 |
/*!*************************************************!*\
|
79846 |
!*** ./src/blocks/post/post-button/editor.scss ***!
|
79847 |
\*************************************************/
|
79851 |
// removed by extract-text-webpack-plugin
|
79852 |
|
79853 |
/***/ }),
|
79854 |
+
/* 490 */
|
79855 |
/*!***********************************************!*\
|
79856 |
!*** ./src/blocks/post/post-excerpt/block.js ***!
|
79857 |
\***********************************************/
|
79859 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
79860 |
|
79861 |
"use strict";
|
79862 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 187);
|
79863 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__save__ = __webpack_require__(/*! ./save */ 491);
|
79864 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
79865 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 492);
|
79866 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
79867 |
/**
|
79868 |
* BLOCK: Post Excerpt
|
79896 |
});
|
79897 |
|
79898 |
/***/ }),
|
79899 |
+
/* 491 */
|
79900 |
/*!**********************************************!*\
|
79901 |
!*** ./src/blocks/post/post-excerpt/save.js ***!
|
79902 |
\**********************************************/
|
79917 |
}
|
79918 |
|
79919 |
/***/ }),
|
79920 |
+
/* 492 */
|
79921 |
/*!*************************************************!*\
|
79922 |
!*** ./src/blocks/post/post-excerpt/style.scss ***!
|
79923 |
\*************************************************/
|
79927 |
// removed by extract-text-webpack-plugin
|
79928 |
|
79929 |
/***/ }),
|
79930 |
+
/* 493 */
|
79931 |
/*!********************************************!*\
|
79932 |
!*** ./src/blocks/post/post-meta/block.js ***!
|
79933 |
\********************************************/
|
79935 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
79936 |
|
79937 |
"use strict";
|
79938 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 185);
|
79939 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__save__ = __webpack_require__(/*! ./save */ 494);
|
79940 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
79941 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 495);
|
79942 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
79943 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 496);
|
79944 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__editor_scss__);
|
79945 |
/**
|
79946 |
* BLOCK: Post Meta
|
79974 |
});
|
79975 |
|
79976 |
/***/ }),
|
79977 |
+
/* 494 */
|
79978 |
/*!*******************************************!*\
|
79979 |
!*** ./src/blocks/post/post-meta/save.js ***!
|
79980 |
\*******************************************/
|
80018 |
}
|
80019 |
|
80020 |
/***/ }),
|
80021 |
+
/* 495 */
|
80022 |
/*!**********************************************!*\
|
80023 |
!*** ./src/blocks/post/post-meta/style.scss ***!
|
80024 |
\**********************************************/
|
80028 |
// removed by extract-text-webpack-plugin
|
80029 |
|
80030 |
/***/ }),
|
80031 |
+
/* 496 */
|
80032 |
/*!***********************************************!*\
|
80033 |
!*** ./src/blocks/post/post-meta/editor.scss ***!
|
80034 |
\***********************************************/
|
80038 |
// removed by extract-text-webpack-plugin
|
80039 |
|
80040 |
/***/ }),
|
80041 |
+
/* 497 */
|
80042 |
/*!*************************************!*\
|
80043 |
!*** ./src/blocks/section/block.js ***!
|
80044 |
\*************************************/
|
80049 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
80050 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
80051 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
80052 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */ 498);
|
80053 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
80054 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 499);
|
80055 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
80056 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 200);
|
80057 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__edit__ = __webpack_require__(/*! ./edit */ 500);
|
80058 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__save__ = __webpack_require__(/*! ./save */ 502);
|
80059 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__deprecated__ = __webpack_require__(/*! ./deprecated */ 503);
|
80060 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 201);
|
80061 |
/**
|
80062 |
* BLOCK: Section
|
80063 |
*/
|
80104 |
});
|
80105 |
|
80106 |
/***/ }),
|
80107 |
+
/* 498 */
|
80108 |
/*!***************************************!*\
|
80109 |
!*** ./src/blocks/section/style.scss ***!
|
80110 |
\***************************************/
|
80114 |
// removed by extract-text-webpack-plugin
|
80115 |
|
80116 |
/***/ }),
|
80117 |
+
/* 499 */
|
80118 |
/*!****************************************!*\
|
80119 |
!*** ./src/blocks/section/editor.scss ***!
|
80120 |
\****************************************/
|
80124 |
// removed by extract-text-webpack-plugin
|
80125 |
|
80126 |
/***/ }),
|
80127 |
+
/* 500 */
|
80128 |
/*!************************************!*\
|
80129 |
!*** ./src/blocks/section/edit.js ***!
|
80130 |
\************************************/
|
80135 |
"use strict";
|
80136 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
80137 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
80138 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 501);
|
80139 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
80140 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 65);
|
80141 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 103);
|
80142 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
80143 |
|
80144 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
81345 |
/* harmony default export */ __webpack_exports__["a"] = (withNotices(UAGBSectionEdit));
|
81346 |
|
81347 |
/***/ }),
|
81348 |
+
/* 501 */
|
81349 |
/*!***************************************!*\
|
81350 |
!*** ./src/blocks/section/styling.js ***!
|
81351 |
\***************************************/
|
81354 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
81355 |
|
81356 |
"use strict";
|
81357 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 201);
|
81358 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 4);
|
81359 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 3);
|
81360 |
/**
|
81559 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
81560 |
|
81561 |
/***/ }),
|
81562 |
+
/* 502 */
|
81563 |
/*!************************************!*\
|
81564 |
!*** ./src/blocks/section/save.js ***!
|
81565 |
\************************************/
|
81629 |
}
|
81630 |
|
81631 |
/***/ }),
|
81632 |
+
/* 503 */
|
81633 |
/*!******************************************!*\
|
81634 |
!*** ./src/blocks/section/deprecated.js ***!
|
81635 |
\******************************************/
|
81640 |
"use strict";
|
81641 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
81642 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
81643 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 200);
|
81644 |
/**
|
81645 |
* BLOCK: Price List - Deprecated Block
|
81646 |
*/
|
81749 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
81750 |
|
81751 |
/***/ }),
|
81752 |
+
/* 504 */
|
81753 |
/*!*************************************!*\
|
81754 |
!*** ./src/blocks/buttons/block.js ***!
|
81755 |
\*************************************/
|
81758 |
|
81759 |
"use strict";
|
81760 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
81761 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 202);
|
81762 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 505);
|
81763 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 508);
|
81764 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 509);
|
81765 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 510);
|
81766 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
81767 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 511);
|
81768 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
81769 |
/**
|
81770 |
* BLOCK: Multi Buttons
|
81818 |
});
|
81819 |
|
81820 |
/***/ }),
|
81821 |
+
/* 505 */
|
81822 |
/*!************************************!*\
|
81823 |
!*** ./src/blocks/buttons/edit.js ***!
|
81824 |
\************************************/
|
81831 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
81832 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
81833 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
81834 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 507);
|
81835 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 19);
|
81836 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
81837 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
82054 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBMultiButtonEdit);
|
82055 |
|
82056 |
/***/ }),
|
82057 |
+
/* 506 */
|
82058 |
/*!**********************************************!*\
|
82059 |
!*** ./node_modules/lodash/_castFunction.js ***!
|
82060 |
\**********************************************/
|
82062 |
/*! all exports used */
|
82063 |
/***/ (function(module, exports, __webpack_require__) {
|
82064 |
|
82065 |
+
var identity = __webpack_require__(/*! ./identity */ 58);
|
82066 |
|
82067 |
/**
|
82068 |
* Casts `value` to `identity` if it's not a function.
|
82079 |
|
82080 |
|
82081 |
/***/ }),
|
82082 |
+
/* 507 */
|
82083 |
/*!***************************************!*\
|
82084 |
!*** ./src/blocks/buttons/styling.js ***!
|
82085 |
\***************************************/
|
82203 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
82204 |
|
82205 |
/***/ }),
|
82206 |
+
/* 508 */
|
82207 |
/*!******************************************!*\
|
82208 |
!*** ./src/blocks/buttons/deprecated.js ***!
|
82209 |
\******************************************/
|
82216 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
82217 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
82218 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
82219 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 202);
|
82220 |
/**
|
82221 |
* BLOCK: Buttons - Deprecated Block
|
82222 |
*/
|
82381 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
82382 |
|
82383 |
/***/ }),
|
82384 |
+
/* 509 */
|
82385 |
/*!************************************!*\
|
82386 |
!*** ./src/blocks/buttons/save.js ***!
|
82387 |
\************************************/
|
82427 |
}
|
82428 |
|
82429 |
/***/ }),
|
82430 |
+
/* 510 */
|
82431 |
/*!***************************************!*\
|
82432 |
!*** ./src/blocks/buttons/style.scss ***!
|
82433 |
\***************************************/
|
82437 |
// removed by extract-text-webpack-plugin
|
82438 |
|
82439 |
/***/ }),
|
82440 |
+
/* 511 */
|
82441 |
/*!****************************************!*\
|
82442 |
!*** ./src/blocks/buttons/editor.scss ***!
|
82443 |
\****************************************/
|
82447 |
// removed by extract-text-webpack-plugin
|
82448 |
|
82449 |
/***/ }),
|
82450 |
+
/* 512 */
|
82451 |
/*!*******************************************!*\
|
82452 |
!*** ./src/blocks/buttons-child/block.js ***!
|
82453 |
\*******************************************/
|
82456 |
|
82457 |
"use strict";
|
82458 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
82459 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 203);
|
82460 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */ 513);
|
82461 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 514);
|
82462 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 527);
|
82463 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 528);
|
82464 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
82465 |
/**
|
82466 |
* BLOCK: Buttons - Child
|
82489 |
});
|
82490 |
|
82491 |
/***/ }),
|
82492 |
+
/* 513 */
|
82493 |
/*!************************************************!*\
|
82494 |
!*** ./src/blocks/buttons-child/deprecated.js ***!
|
82495 |
\************************************************/
|
82500 |
"use strict";
|
82501 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
82502 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
82503 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 203);
|
82504 |
/**
|
82505 |
* BLOCK: Button Child - Deprecated Block
|
82506 |
*/
|
82552 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
82553 |
|
82554 |
/***/ }),
|
82555 |
+
/* 514 */
|
82556 |
/*!******************************************!*\
|
82557 |
!*** ./src/blocks/buttons-child/edit.js ***!
|
82558 |
\******************************************/
|
82563 |
"use strict";
|
82564 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
82565 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
82566 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 515);
|
82567 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
82568 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
82569 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__);
|
83421 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBButtonsChild);
|
83422 |
|
83423 |
/***/ }),
|
83424 |
+
/* 515 */
|
83425 |
/*!*********************************************!*\
|
83426 |
!*** ./src/blocks/buttons-child/styling.js ***!
|
83427 |
\*********************************************/
|
83554 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
83555 |
|
83556 |
/***/ }),
|
83557 |
+
/* 516 */
|
83558 |
+
/*!**********************************************************!*\
|
83559 |
+
!*** ./node_modules/react-transition-group/esm/index.js ***!
|
83560 |
+
\**********************************************************/
|
83561 |
+
/*! exports provided: CSSTransition, ReplaceTransition, SwitchTransition, TransitionGroup, Transition, config */
|
83562 |
/*! all exports used */
|
83563 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
83564 |
|
83565 |
"use strict";
|
83566 |
+
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
83567 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__CSSTransition__ = __webpack_require__(/*! ./CSSTransition */ 517);
|
83568 |
+
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "CSSTransition", function() { return __WEBPACK_IMPORTED_MODULE_0__CSSTransition__["a"]; });
|
83569 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__ReplaceTransition__ = __webpack_require__(/*! ./ReplaceTransition */ 522);
|
83570 |
+
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "ReplaceTransition", function() { return __WEBPACK_IMPORTED_MODULE_1__ReplaceTransition__["a"]; });
|
83571 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__SwitchTransition__ = __webpack_require__(/*! ./SwitchTransition */ 525);
|
83572 |
+
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "SwitchTransition", function() { return __WEBPACK_IMPORTED_MODULE_2__SwitchTransition__["a"]; });
|
83573 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__TransitionGroup__ = __webpack_require__(/*! ./TransitionGroup */ 207);
|
83574 |
+
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "TransitionGroup", function() { return __WEBPACK_IMPORTED_MODULE_3__TransitionGroup__["a"]; });
|
83575 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__Transition__ = __webpack_require__(/*! ./Transition */ 105);
|
83576 |
+
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "Transition", function() { return __WEBPACK_IMPORTED_MODULE_4__Transition__["d"]; });
|
83577 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__config__ = __webpack_require__(/*! ./config */ 205);
|
83578 |
+
/* harmony reexport (binding) */ __webpack_require__.d(__webpack_exports__, "config", function() { return __WEBPACK_IMPORTED_MODULE_5__config__["a"]; });
|
83579 |
|
83580 |
|
|
|
|
|
|
|
83581 |
|
|
|
83582 |
|
|
|
83583 |
|
|
|
83584 |
|
|
|
|
|
|
|
|
|
|
|
|
|
83585 |
|
83586 |
/***/ }),
|
83587 |
+
/* 517 */
|
83588 |
+
/*!******************************************************************!*\
|
83589 |
+
!*** ./node_modules/react-transition-group/esm/CSSTransition.js ***!
|
83590 |
+
\******************************************************************/
|
83591 |
+
/*! exports provided: default */
|
83592 |
+
/*! exports used: default */
|
83593 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
83594 |
|
83595 |
"use strict";
|
83596 |
+
/* WEBPACK VAR INJECTION */(function(process) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_extends__ = __webpack_require__(/*! @babel/runtime/helpers/esm/extends */ 204);
|
83597 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_objectWithoutPropertiesLoose__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutPropertiesLoose */ 66);
|
83598 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_esm_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inheritsLoose */ 43);
|
83599 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
83600 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__);
|
83601 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_dom_helpers_addClass__ = __webpack_require__(/*! dom-helpers/addClass */ 519);
|
83602 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_dom_helpers_removeClass__ = __webpack_require__(/*! dom-helpers/removeClass */ 521);
|
83603 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react__ = __webpack_require__(/*! react */ 5);
|
83604 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react__);
|
83605 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__Transition__ = __webpack_require__(/*! ./Transition */ 105);
|
83606 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__utils_PropTypes__ = __webpack_require__(/*! ./utils/PropTypes */ 206);
|
83607 |
|
|
|
83608 |
|
|
|
83609 |
|
|
|
83610 |
|
|
|
83611 |
|
|
|
83612 |
|
|
|
83613 |
|
|
|
83614 |
|
|
|
83615 |
|
|
|
83616 |
|
83617 |
+
var _addClass = function addClass(node, classes) {
|
83618 |
return node && classes && classes.split(' ').forEach(function (c) {
|
83619 |
+
return Object(__WEBPACK_IMPORTED_MODULE_4_dom_helpers_addClass__["a" /* default */])(node, c);
|
83620 |
});
|
83621 |
};
|
83622 |
|
83623 |
var removeClass = function removeClass(node, classes) {
|
83624 |
return node && classes && classes.split(' ').forEach(function (c) {
|
83625 |
+
return Object(__WEBPACK_IMPORTED_MODULE_5_dom_helpers_removeClass__["a" /* default */])(node, c);
|
83626 |
});
|
83627 |
};
|
83628 |
/**
|
83629 |
* A transition component inspired by the excellent
|
83630 |
+
* [ng-animate](https://docs.angularjs.org/api/ngAnimate) library, you should
|
83631 |
+
* use it if you're using CSS transitions or animations. It's built upon the
|
83632 |
* [`Transition`](https://reactcommunity.org/react-transition-group/transition)
|
83633 |
* component, so it inherits all of its props.
|
83634 |
*
|
83635 |
* `CSSTransition` applies a pair of class names during the `appear`, `enter`,
|
83636 |
* and `exit` states of the transition. The first class is applied and then a
|
83637 |
+
* second `*-active` class in order to activate the CSS transition. After the
|
83638 |
* transition, matching `*-done` class names are applied to persist the
|
83639 |
* transition state.
|
83640 |
*
|
83679 |
* }
|
83680 |
* .my-node-exit-active {
|
83681 |
* opacity: 0;
|
83682 |
+
* transition: opacity 200ms;
|
83683 |
* }
|
83684 |
* ```
|
83685 |
*
|
83686 |
+
* `*-active` classes represent which styles you want to animate **to**, so it's
|
83687 |
+
* important to add `transition` declaration only to them, otherwise transitions
|
83688 |
+
* might not behave as intended! This might not be obvious when the transitions
|
83689 |
+
* are symmetrical, i.e. when `*-enter-active` is the same as `*-exit`, like in
|
83690 |
+
* the example above (minus `transition`), but it becomes apparent in more
|
83691 |
+
* complex transitions.
|
83692 |
+
*
|
83693 |
+
* **Note**: If you're using the
|
83694 |
+
* [`appear`](http://reactcommunity.org/react-transition-group/transition#Transition-prop-appear)
|
83695 |
+
* prop, make sure to define styles for `.appear-*` classes as well.
|
83696 |
*/
|
83697 |
|
83698 |
|
83699 |
+
var CSSTransition = /*#__PURE__*/function (_React$Component) {
|
83700 |
+
Object(__WEBPACK_IMPORTED_MODULE_2__babel_runtime_helpers_esm_inheritsLoose__["a" /* default */])(CSSTransition, _React$Component);
|
|
|
|
|
83701 |
|
83702 |
function CSSTransition() {
|
83703 |
var _this;
|
83707 |
}
|
83708 |
|
83709 |
_this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
|
83710 |
+
_this.appliedClasses = {
|
83711 |
+
appear: {},
|
83712 |
+
enter: {},
|
83713 |
+
exit: {}
|
83714 |
+
};
|
83715 |
|
83716 |
+
_this.onEnter = function (maybeNode, maybeAppearing) {
|
83717 |
+
var _this$resolveArgument = _this.resolveArguments(maybeNode, maybeAppearing),
|
83718 |
+
node = _this$resolveArgument[0],
|
83719 |
+
appearing = _this$resolveArgument[1];
|
83720 |
|
83721 |
_this.removeClasses(node, 'exit');
|
83722 |
|
83723 |
+
_this.addClass(node, appearing ? 'appear' : 'enter', 'base');
|
83724 |
|
83725 |
if (_this.props.onEnter) {
|
83726 |
+
_this.props.onEnter(maybeNode, maybeAppearing);
|
83727 |
}
|
83728 |
};
|
83729 |
|
83730 |
+
_this.onEntering = function (maybeNode, maybeAppearing) {
|
83731 |
+
var _this$resolveArgument2 = _this.resolveArguments(maybeNode, maybeAppearing),
|
83732 |
+
node = _this$resolveArgument2[0],
|
83733 |
+
appearing = _this$resolveArgument2[1];
|
83734 |
+
|
83735 |
+
var type = appearing ? 'appear' : 'enter';
|
83736 |
|
83737 |
+
_this.addClass(node, type, 'active');
|
83738 |
|
83739 |
if (_this.props.onEntering) {
|
83740 |
+
_this.props.onEntering(maybeNode, maybeAppearing);
|
83741 |
}
|
83742 |
};
|
83743 |
|
83744 |
+
_this.onEntered = function (maybeNode, maybeAppearing) {
|
83745 |
+
var _this$resolveArgument3 = _this.resolveArguments(maybeNode, maybeAppearing),
|
83746 |
+
node = _this$resolveArgument3[0],
|
83747 |
+
appearing = _this$resolveArgument3[1];
|
83748 |
|
83749 |
+
var type = appearing ? 'appear' : 'enter';
|
83750 |
|
83751 |
+
_this.removeClasses(node, type);
|
83752 |
|
83753 |
+
_this.addClass(node, type, 'done');
|
|
|
|
|
83754 |
|
83755 |
if (_this.props.onEntered) {
|
83756 |
+
_this.props.onEntered(maybeNode, maybeAppearing);
|
83757 |
}
|
83758 |
};
|
83759 |
|
83760 |
+
_this.onExit = function (maybeNode) {
|
83761 |
+
var _this$resolveArgument4 = _this.resolveArguments(maybeNode),
|
83762 |
+
node = _this$resolveArgument4[0];
|
83763 |
|
83764 |
_this.removeClasses(node, 'appear');
|
83765 |
|
83766 |
_this.removeClasses(node, 'enter');
|
83767 |
|
83768 |
+
_this.addClass(node, 'exit', 'base');
|
83769 |
|
83770 |
if (_this.props.onExit) {
|
83771 |
+
_this.props.onExit(maybeNode);
|
83772 |
}
|
83773 |
};
|
83774 |
|
83775 |
+
_this.onExiting = function (maybeNode) {
|
83776 |
+
var _this$resolveArgument5 = _this.resolveArguments(maybeNode),
|
83777 |
+
node = _this$resolveArgument5[0];
|
83778 |
|
83779 |
+
_this.addClass(node, 'exit', 'active');
|
83780 |
|
83781 |
if (_this.props.onExiting) {
|
83782 |
+
_this.props.onExiting(maybeNode);
|
83783 |
}
|
83784 |
};
|
83785 |
|
83786 |
+
_this.onExited = function (maybeNode) {
|
83787 |
+
var _this$resolveArgument6 = _this.resolveArguments(maybeNode),
|
83788 |
+
node = _this$resolveArgument6[0];
|
83789 |
|
83790 |
_this.removeClasses(node, 'exit');
|
83791 |
|
83792 |
+
_this.addClass(node, 'exit', 'done');
|
83793 |
|
83794 |
if (_this.props.onExited) {
|
83795 |
+
_this.props.onExited(maybeNode);
|
83796 |
}
|
83797 |
};
|
83798 |
|
83799 |
+
_this.resolveArguments = function (maybeNode, maybeAppearing) {
|
83800 |
+
return _this.props.nodeRef ? [_this.props.nodeRef.current, maybeNode] // here `maybeNode` is actually `appearing`
|
83801 |
+
: [maybeNode, maybeAppearing];
|
83802 |
+
};
|
83803 |
+
|
83804 |
_this.getClassNames = function (type) {
|
83805 |
var classNames = _this.props.classNames;
|
83806 |
var isStringClassNames = typeof classNames === 'string';
|
83807 |
+
var prefix = isStringClassNames && classNames ? classNames + "-" : '';
|
83808 |
+
var baseClassName = isStringClassNames ? "" + prefix + type : classNames[type];
|
83809 |
+
var activeClassName = isStringClassNames ? baseClassName + "-active" : classNames[type + "Active"];
|
83810 |
+
var doneClassName = isStringClassNames ? baseClassName + "-done" : classNames[type + "Done"];
|
83811 |
return {
|
83812 |
+
baseClassName: baseClassName,
|
83813 |
activeClassName: activeClassName,
|
83814 |
doneClassName: doneClassName
|
83815 |
};
|
83820 |
|
83821 |
var _proto = CSSTransition.prototype;
|
83822 |
|
83823 |
+
_proto.addClass = function addClass(node, type, phase) {
|
83824 |
+
var className = this.getClassNames(type)[phase + "ClassName"];
|
83825 |
+
|
83826 |
+
var _this$getClassNames = this.getClassNames('enter'),
|
83827 |
+
doneClassName = _this$getClassNames.doneClassName;
|
|
|
|
|
|
|
|
|
|
|
83828 |
|
83829 |
+
if (type === 'appear' && phase === 'done' && doneClassName) {
|
83830 |
+
className += " " + doneClassName;
|
83831 |
+
} // This is for to force a repaint,
|
83832 |
// which is necessary in order to transition styles when adding a class name.
|
83833 |
+
|
83834 |
+
|
83835 |
+
if (phase === 'active') {
|
83836 |
/* eslint-disable no-unused-expressions */
|
83837 |
node && node.scrollTop;
|
83838 |
+
}
|
83839 |
+
|
83840 |
+
if (className) {
|
83841 |
+
this.appliedClasses[type][phase] = className;
|
83842 |
|
83843 |
+
_addClass(node, className);
|
83844 |
+
}
|
83845 |
+
};
|
83846 |
+
|
83847 |
+
_proto.removeClasses = function removeClasses(node, type) {
|
83848 |
+
var _this$appliedClasses$ = this.appliedClasses[type],
|
83849 |
+
baseClassName = _this$appliedClasses$.base,
|
83850 |
+
activeClassName = _this$appliedClasses$.active,
|
83851 |
+
doneClassName = _this$appliedClasses$.done;
|
83852 |
+
this.appliedClasses[type] = {};
|
83853 |
+
|
83854 |
+
if (baseClassName) {
|
83855 |
+
removeClass(node, baseClassName);
|
83856 |
+
}
|
83857 |
+
|
83858 |
+
if (activeClassName) {
|
83859 |
+
removeClass(node, activeClassName);
|
83860 |
+
}
|
83861 |
+
|
83862 |
+
if (doneClassName) {
|
83863 |
+
removeClass(node, doneClassName);
|
83864 |
}
|
83865 |
};
|
83866 |
|
83867 |
_proto.render = function render() {
|
83868 |
+
var _this$props = this.props,
|
83869 |
+
_ = _this$props.classNames,
|
83870 |
+
props = Object(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_objectWithoutPropertiesLoose__["a" /* default */])(_this$props, ["classNames"]);
|
83871 |
|
83872 |
+
return /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_6_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_7__Transition__["d" /* default */], Object(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_extends__["a" /* default */])({}, props, {
|
|
|
83873 |
onEnter: this.onEnter,
|
83874 |
onEntered: this.onEntered,
|
83875 |
onEntering: this.onEntering,
|
83880 |
};
|
83881 |
|
83882 |
return CSSTransition;
|
83883 |
+
}(__WEBPACK_IMPORTED_MODULE_6_react___default.a.Component);
|
83884 |
|
83885 |
CSSTransition.defaultProps = {
|
83886 |
classNames: ''
|
83887 |
};
|
83888 |
+
CSSTransition.propTypes = process.env.NODE_ENV !== "production" ? Object(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_extends__["a" /* default */])({}, __WEBPACK_IMPORTED_MODULE_7__Transition__["d" /* default */].propTypes, {
|
83889 |
/**
|
83890 |
+
* The animation classNames applied to the component as it appears, enters,
|
83891 |
+
* exits or has finished the transition. A single name can be provided, which
|
83892 |
+
* will be suffixed for each stage, e.g. `classNames="fade"` applies:
|
83893 |
+
*
|
83894 |
+
* - `fade-appear`, `fade-appear-active`, `fade-appear-done`
|
83895 |
+
* - `fade-enter`, `fade-enter-active`, `fade-enter-done`
|
83896 |
+
* - `fade-exit`, `fade-exit-active`, `fade-exit-done`
|
83897 |
*
|
83898 |
+
* A few details to note about how these classes are applied:
|
|
|
|
|
83899 |
*
|
83900 |
+
* 1. They are _joined_ with the ones that are already defined on the child
|
83901 |
+
* component, so if you want to add some base styles, you can use
|
83902 |
+
* `className` without worrying that it will be overridden.
|
83903 |
+
*
|
83904 |
+
* 2. If the transition component mounts with `in={false}`, no classes are
|
83905 |
+
* applied yet. You might be expecting `*-exit-done`, but if you think
|
83906 |
+
* about it, a component cannot finish exiting if it hasn't entered yet.
|
83907 |
+
*
|
83908 |
+
* 2. `fade-appear-done` and `fade-enter-done` will _both_ be applied. This
|
83909 |
+
* allows you to define different behavior for when appearing is done and
|
83910 |
+
* when regular entering is done, using selectors like
|
83911 |
+
* `.fade-enter-done:not(.fade-appear-done)`. For example, you could apply
|
83912 |
+
* an epic entrance animation when element first appears in the DOM using
|
83913 |
+
* [Animate.css](https://daneden.github.io/animate.css/). Otherwise you can
|
83914 |
+
* simply use `fade-enter-done` for defining both cases.
|
83915 |
*
|
83916 |
* Each individual classNames can also be specified independently like:
|
83917 |
*
|
83954 |
* exitDone?: string,
|
83955 |
* }}
|
83956 |
*/
|
83957 |
+
classNames: __WEBPACK_IMPORTED_MODULE_8__utils_PropTypes__["a" /* classNamesShape */],
|
83958 |
|
83959 |
/**
|
83960 |
* A `<Transition>` callback fired immediately after the 'enter' or 'appear' class is
|
83961 |
* applied.
|
83962 |
*
|
83963 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
83964 |
+
*
|
83965 |
* @type Function(node: HtmlElement, isAppearing: bool)
|
83966 |
*/
|
83967 |
+
onEnter: __WEBPACK_IMPORTED_MODULE_3_prop_types___default.a.func,
|
83968 |
|
83969 |
/**
|
83970 |
* A `<Transition>` callback fired immediately after the 'enter-active' or
|
83971 |
* 'appear-active' class is applied.
|
83972 |
*
|
83973 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
83974 |
+
*
|
83975 |
* @type Function(node: HtmlElement, isAppearing: bool)
|
83976 |
*/
|
83977 |
+
onEntering: __WEBPACK_IMPORTED_MODULE_3_prop_types___default.a.func,
|
83978 |
|
83979 |
/**
|
83980 |
* A `<Transition>` callback fired immediately after the 'enter' or
|
83981 |
* 'appear' classes are **removed** and the `done` class is added to the DOM node.
|
83982 |
*
|
83983 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed.
|
83984 |
+
*
|
83985 |
* @type Function(node: HtmlElement, isAppearing: bool)
|
83986 |
*/
|
83987 |
+
onEntered: __WEBPACK_IMPORTED_MODULE_3_prop_types___default.a.func,
|
83988 |
|
83989 |
/**
|
83990 |
* A `<Transition>` callback fired immediately after the 'exit' class is
|
83991 |
* applied.
|
83992 |
*
|
83993 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed
|
83994 |
+
*
|
83995 |
* @type Function(node: HtmlElement)
|
83996 |
*/
|
83997 |
+
onExit: __WEBPACK_IMPORTED_MODULE_3_prop_types___default.a.func,
|
83998 |
|
83999 |
/**
|
84000 |
* A `<Transition>` callback fired immediately after the 'exit-active' is applied.
|
84001 |
*
|
84002 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed
|
84003 |
+
*
|
84004 |
* @type Function(node: HtmlElement)
|
84005 |
*/
|
84006 |
+
onExiting: __WEBPACK_IMPORTED_MODULE_3_prop_types___default.a.func,
|
84007 |
|
84008 |
/**
|
84009 |
* A `<Transition>` callback fired immediately after the 'exit' classes
|
84010 |
* are **removed** and the `exit-done` class is added to the DOM node.
|
84011 |
*
|
84012 |
+
* **Note**: when `nodeRef` prop is passed, `node` is not passed
|
84013 |
+
*
|
84014 |
* @type Function(node: HtmlElement)
|
84015 |
*/
|
84016 |
+
onExited: __WEBPACK_IMPORTED_MODULE_3_prop_types___default.a.func
|
84017 |
}) : {};
|
84018 |
+
/* harmony default export */ __webpack_exports__["a"] = (CSSTransition);
|
84019 |
+
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
|
|
|
|
84020 |
|
84021 |
/***/ }),
|
84022 |
+
/* 518 */
|
84023 |
+
/*!*******************************************************************************************************!*\
|
84024 |
+
!*** ./node_modules/react-transition-group/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js ***!
|
84025 |
+
\*******************************************************************************************************/
|
84026 |
+
/*! exports provided: default */
|
84027 |
+
/*! exports used: default */
|
84028 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
84029 |
|
84030 |
"use strict";
|
84031 |
+
/* harmony export (immutable) */ __webpack_exports__["a"] = _setPrototypeOf;
|
84032 |
+
function _setPrototypeOf(o, p) {
|
84033 |
+
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
84034 |
+
o.__proto__ = p;
|
84035 |
+
return o;
|
84036 |
+
};
|
84037 |
|
84038 |
+
return _setPrototypeOf(o, p);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84039 |
}
|
84040 |
|
|
|
|
|
84041 |
/***/ }),
|
84042 |
+
/* 519 */
|
84043 |
+
/*!**************************************************!*\
|
84044 |
+
!*** ./node_modules/dom-helpers/esm/addClass.js ***!
|
84045 |
+
\**************************************************/
|
84046 |
+
/*! exports provided: default */
|
84047 |
+
/*! exports used: default */
|
84048 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
84049 |
|
84050 |
+
"use strict";
|
84051 |
+
/* harmony export (immutable) */ __webpack_exports__["a"] = addClass;
|
84052 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__hasClass__ = __webpack_require__(/*! ./hasClass */ 520);
|
|
|
|
|
84053 |
|
84054 |
+
function addClass(element, className) {
|
84055 |
+
if (element.classList) element.classList.add(className);else if (!Object(__WEBPACK_IMPORTED_MODULE_0__hasClass__["a" /* default */])(element, className)) if (typeof element.className === 'string') element.className = element.className + " " + className;else element.setAttribute('class', (element.className && element.className.baseVal || '') + " " + className);
|
84056 |
+
}
|
84057 |
|
84058 |
/***/ }),
|
84059 |
+
/* 520 */
|
84060 |
+
/*!**************************************************!*\
|
84061 |
+
!*** ./node_modules/dom-helpers/esm/hasClass.js ***!
|
84062 |
+
\**************************************************/
|
84063 |
+
/*! exports provided: default */
|
84064 |
+
/*! exports used: default */
|
84065 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
84066 |
|
84067 |
"use strict";
|
84068 |
+
/* harmony export (immutable) */ __webpack_exports__["a"] = hasClass;
|
|
|
|
|
|
|
|
|
84069 |
function hasClass(element, className) {
|
84070 |
+
if (element.classList) return !!className && element.classList.contains(className);
|
84071 |
+
return (" " + (element.className.baseVal || element.className) + " ").indexOf(" " + className + " ") !== -1;
|
84072 |
}
|
84073 |
|
|
|
|
|
84074 |
/***/ }),
|
84075 |
+
/* 521 */
|
84076 |
+
/*!*****************************************************!*\
|
84077 |
+
!*** ./node_modules/dom-helpers/esm/removeClass.js ***!
|
84078 |
+
\*****************************************************/
|
84079 |
+
/*! exports provided: default */
|
84080 |
+
/*! exports used: default */
|
84081 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
84082 |
|
84083 |
"use strict";
|
84084 |
+
/* harmony export (immutable) */ __webpack_exports__["a"] = removeClass;
|
|
|
84085 |
function replaceClassName(origClass, classToRemove) {
|
84086 |
+
return origClass.replace(new RegExp("(^|\\s)" + classToRemove + "(?:\\s|$)", 'g'), '$1').replace(/\s+/g, ' ').replace(/^\s*|\s*$/g, '');
|
84087 |
}
|
84088 |
|
84089 |
+
function removeClass(element, className) {
|
84090 |
+
if (element.classList) {
|
84091 |
+
element.classList.remove(className);
|
84092 |
+
} else if (typeof element.className === 'string') {
|
84093 |
+
;
|
84094 |
+
element.className = replaceClassName(element.className, className);
|
84095 |
+
} else {
|
84096 |
+
element.setAttribute('class', replaceClassName(element.className && element.className.baseVal || '', className));
|
84097 |
+
}
|
84098 |
+
}
|
84099 |
|
84100 |
/***/ }),
|
84101 |
+
/* 522 */
|
84102 |
+
/*!**********************************************************************!*\
|
84103 |
+
!*** ./node_modules/react-transition-group/esm/ReplaceTransition.js ***!
|
84104 |
+
\**********************************************************************/
|
84105 |
+
/*! exports provided: default */
|
84106 |
+
/*! exports used: default */
|
84107 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
84108 |
|
84109 |
"use strict";
|
84110 |
+
/* WEBPACK VAR INJECTION */(function(process) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutPropertiesLoose__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectWithoutPropertiesLoose */ 66);
|
84111 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inheritsLoose */ 43);
|
84112 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
84113 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_prop_types__);
|
84114 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react__ = __webpack_require__(/*! react */ 5);
|
84115 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react__);
|
84116 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react_dom__ = __webpack_require__(/*! react-dom */ 33);
|
84117 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_react_dom__);
|
84118 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__TransitionGroup__ = __webpack_require__(/*! ./TransitionGroup */ 207);
|
84119 |
|
|
|
|
|
84120 |
|
|
|
84121 |
|
|
|
84122 |
|
|
|
84123 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84124 |
|
84125 |
/**
|
84126 |
* The `<ReplaceTransition>` component is a specialized `Transition` component
|
84133 |
* </ReplaceTransition>
|
84134 |
* ```
|
84135 |
*/
|
84136 |
+
|
84137 |
+
var ReplaceTransition = /*#__PURE__*/function (_React$Component) {
|
84138 |
+
Object(__WEBPACK_IMPORTED_MODULE_1__babel_runtime_helpers_esm_inheritsLoose__["a" /* default */])(ReplaceTransition, _React$Component);
|
|
|
84139 |
|
84140 |
function ReplaceTransition() {
|
84141 |
var _this;
|
84203 |
var _child$props;
|
84204 |
|
84205 |
var children = this.props.children;
|
84206 |
+
var child = __WEBPACK_IMPORTED_MODULE_3_react___default.a.Children.toArray(children)[idx];
|
|
|
|
|
84207 |
if (child.props[handler]) (_child$props = child.props)[handler].apply(_child$props, originalArgs);
|
84208 |
+
|
84209 |
+
if (this.props[handler]) {
|
84210 |
+
var maybeNode = child.props.nodeRef ? undefined : __WEBPACK_IMPORTED_MODULE_4_react_dom___default.a.findDOMNode(this);
|
84211 |
+
this.props[handler](maybeNode);
|
84212 |
+
}
|
84213 |
};
|
84214 |
|
84215 |
_proto.render = function render() {
|
84216 |
var _this$props = this.props,
|
84217 |
children = _this$props.children,
|
84218 |
inProp = _this$props.in,
|
84219 |
+
props = Object(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectWithoutPropertiesLoose__["a" /* default */])(_this$props, ["children", "in"]);
|
84220 |
|
84221 |
+
var _React$Children$toArr = __WEBPACK_IMPORTED_MODULE_3_react___default.a.Children.toArray(children),
|
84222 |
first = _React$Children$toArr[0],
|
84223 |
second = _React$Children$toArr[1];
|
84224 |
|
84228 |
delete props.onExit;
|
84229 |
delete props.onExiting;
|
84230 |
delete props.onExited;
|
84231 |
+
return /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_3_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_5__TransitionGroup__["a" /* default */], props, inProp ? __WEBPACK_IMPORTED_MODULE_3_react___default.a.cloneElement(first, {
|
84232 |
key: 'first',
|
84233 |
onEnter: this.handleEnter,
|
84234 |
onEntering: this.handleEntering,
|
84235 |
onEntered: this.handleEntered
|
84236 |
+
}) : __WEBPACK_IMPORTED_MODULE_3_react___default.a.cloneElement(second, {
|
84237 |
key: 'second',
|
84238 |
onEnter: this.handleExit,
|
84239 |
onEntering: this.handleExiting,
|
84242 |
};
|
84243 |
|
84244 |
return ReplaceTransition;
|
84245 |
+
}(__WEBPACK_IMPORTED_MODULE_3_react___default.a.Component);
|
84246 |
|
84247 |
ReplaceTransition.propTypes = process.env.NODE_ENV !== "production" ? {
|
84248 |
+
in: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.bool.isRequired,
|
84249 |
children: function children(props, propName) {
|
84250 |
+
if (__WEBPACK_IMPORTED_MODULE_3_react___default.a.Children.count(props[propName]) !== 2) return new Error("\"" + propName + "\" must be exactly two transition components.");
|
84251 |
return null;
|
84252 |
}
|
84253 |
} : {};
|
84254 |
+
/* harmony default export */ __webpack_exports__["a"] = (ReplaceTransition);
|
84255 |
+
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
|
|
|
|
84256 |
|
84257 |
/***/ }),
|
84258 |
+
/* 523 */
|
84259 |
+
/*!**************************************************************************************************************!*\
|
84260 |
+
!*** ./node_modules/react-transition-group/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js ***!
|
84261 |
+
\**************************************************************************************************************/
|
84262 |
+
/*! exports provided: default */
|
84263 |
+
/*! exports used: default */
|
84264 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
84265 |
|
84266 |
"use strict";
|
84267 |
+
/* harmony export (immutable) */ __webpack_exports__["a"] = _assertThisInitialized;
|
84268 |
+
function _assertThisInitialized(self) {
|
84269 |
+
if (self === void 0) {
|
84270 |
+
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
84271 |
+
}
|
84272 |
|
84273 |
+
return self;
|
84274 |
+
}
|
84275 |
|
84276 |
+
/***/ }),
|
84277 |
+
/* 524 */
|
84278 |
+
/*!***********************************************************************!*\
|
84279 |
+
!*** ./node_modules/react-transition-group/esm/utils/ChildMapping.js ***!
|
84280 |
+
\***********************************************************************/
|
84281 |
+
/*! exports provided: getChildMapping, mergeChildMappings, getInitialChildMapping, getNextChildMapping */
|
84282 |
+
/*! exports used: getChildMapping, getInitialChildMapping, getNextChildMapping */
|
84283 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
84284 |
|
84285 |
+
"use strict";
|
84286 |
+
/* harmony export (immutable) */ __webpack_exports__["a"] = getChildMapping;
|
84287 |
+
/* unused harmony export mergeChildMappings */
|
84288 |
+
/* harmony export (immutable) */ __webpack_exports__["b"] = getInitialChildMapping;
|
84289 |
+
/* harmony export (immutable) */ __webpack_exports__["c"] = getNextChildMapping;
|
84290 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 5);
|
84291 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
|
84292 |
|
84293 |
/**
|
84294 |
* Given `this.props.children`, return an object mapping key to child.
|
84296 |
* @param {*} children `this.props.children`
|
84297 |
* @return {object} Mapping of key to child
|
84298 |
*/
|
84299 |
+
|
84300 |
function getChildMapping(children, mapFn) {
|
84301 |
var mapper = function mapper(child) {
|
84302 |
+
return mapFn && Object(__WEBPACK_IMPORTED_MODULE_0_react__["isValidElement"])(child) ? mapFn(child) : child;
|
84303 |
};
|
84304 |
|
84305 |
var result = Object.create(null);
|
84306 |
+
if (children) __WEBPACK_IMPORTED_MODULE_0_react__["Children"].map(children, function (c) {
|
84307 |
return c;
|
84308 |
}).forEach(function (child) {
|
84309 |
// run the map function here instead so that the key is the computed one
|
84329 |
* in `next` in a reasonable order.
|
84330 |
*/
|
84331 |
|
|
|
84332 |
function mergeChildMappings(prev, next) {
|
84333 |
prev = prev || {};
|
84334 |
next = next || {};
|
84381 |
|
84382 |
function getInitialChildMapping(props, onExited) {
|
84383 |
return getChildMapping(props.children, function (child) {
|
84384 |
+
return Object(__WEBPACK_IMPORTED_MODULE_0_react__["cloneElement"])(child, {
|
84385 |
onExited: onExited.bind(null, child),
|
84386 |
in: true,
|
84387 |
appear: getProp(child, 'appear', props),
|
84390 |
});
|
84391 |
});
|
84392 |
}
|
|
|
84393 |
function getNextChildMapping(nextProps, prevChildMapping, onExited) {
|
84394 |
var nextChildMapping = getChildMapping(nextProps.children);
|
84395 |
var children = mergeChildMappings(prevChildMapping, nextChildMapping);
|
84396 |
Object.keys(children).forEach(function (key) {
|
84397 |
var child = children[key];
|
84398 |
+
if (!Object(__WEBPACK_IMPORTED_MODULE_0_react__["isValidElement"])(child)) return;
|
84399 |
+
var hasPrev = (key in prevChildMapping);
|
84400 |
+
var hasNext = (key in nextChildMapping);
|
84401 |
var prevChild = prevChildMapping[key];
|
84402 |
+
var isLeaving = Object(__WEBPACK_IMPORTED_MODULE_0_react__["isValidElement"])(prevChild) && !prevChild.props.in; // item is new (entering)
|
84403 |
|
84404 |
if (hasNext && (!hasPrev || isLeaving)) {
|
84405 |
// console.log('entering', key)
|
84406 |
+
children[key] = Object(__WEBPACK_IMPORTED_MODULE_0_react__["cloneElement"])(child, {
|
84407 |
onExited: onExited.bind(null, child),
|
84408 |
in: true,
|
84409 |
exit: getProp(child, 'exit', nextProps),
|
84412 |
} else if (!hasNext && hasPrev && !isLeaving) {
|
84413 |
// item is old (exiting)
|
84414 |
// console.log('leaving', key)
|
84415 |
+
children[key] = Object(__WEBPACK_IMPORTED_MODULE_0_react__["cloneElement"])(child, {
|
84416 |
in: false
|
84417 |
});
|
84418 |
+
} else if (hasNext && hasPrev && Object(__WEBPACK_IMPORTED_MODULE_0_react__["isValidElement"])(prevChild)) {
|
84419 |
// item hasn't changed transition states
|
84420 |
// copy over the last transition props;
|
84421 |
// console.log('unchanged', key)
|
84422 |
+
children[key] = Object(__WEBPACK_IMPORTED_MODULE_0_react__["cloneElement"])(child, {
|
84423 |
onExited: onExited.bind(null, child),
|
84424 |
in: prevChild.props.in,
|
84425 |
exit: getProp(child, 'exit', nextProps),
|
84431 |
}
|
84432 |
|
84433 |
/***/ }),
|
84434 |
+
/* 525 */
|
84435 |
+
/*!*********************************************************************!*\
|
84436 |
+
!*** ./node_modules/react-transition-group/esm/SwitchTransition.js ***!
|
84437 |
+
\*********************************************************************/
|
84438 |
+
/*! exports provided: modes, default */
|
84439 |
+
/*! exports used: default */
|
84440 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
84441 |
+
|
84442 |
+
"use strict";
|
84443 |
+
/* WEBPACK VAR INJECTION */(function(process) {/* unused harmony export modes */
|
84444 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/esm/inheritsLoose */ 43);
|
84445 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 5);
|
84446 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
84447 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
84448 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_prop_types__);
|
84449 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__Transition__ = __webpack_require__(/*! ./Transition */ 105);
|
84450 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__TransitionGroupContext__ = __webpack_require__(/*! ./TransitionGroupContext */ 106);
|
84451 |
+
|
84452 |
+
|
84453 |
+
var _leaveRenders, _enterRenders;
|
84454 |
+
|
84455 |
+
|
84456 |
+
|
84457 |
+
|
84458 |
+
|
84459 |
+
|
84460 |
+
function areChildrenDifferent(oldChildren, newChildren) {
|
84461 |
+
if (oldChildren === newChildren) return false;
|
84462 |
+
|
84463 |
+
if (__WEBPACK_IMPORTED_MODULE_1_react___default.a.isValidElement(oldChildren) && __WEBPACK_IMPORTED_MODULE_1_react___default.a.isValidElement(newChildren) && oldChildren.key != null && oldChildren.key === newChildren.key) {
|
84464 |
+
return false;
|
84465 |
+
}
|
84466 |
+
|
84467 |
+
return true;
|
84468 |
+
}
|
84469 |
+
/**
|
84470 |
+
* Enum of modes for SwitchTransition component
|
84471 |
+
* @enum { string }
|
84472 |
+
*/
|
84473 |
+
|
84474 |
+
|
84475 |
+
var modes = {
|
84476 |
+
out: 'out-in',
|
84477 |
+
in: 'in-out'
|
84478 |
+
};
|
84479 |
+
|
84480 |
+
var callHook = function callHook(element, name, cb) {
|
84481 |
+
return function () {
|
84482 |
+
var _element$props;
|
84483 |
+
|
84484 |
+
element.props[name] && (_element$props = element.props)[name].apply(_element$props, arguments);
|
84485 |
+
cb();
|
84486 |
+
};
|
84487 |
+
};
|
84488 |
+
|
84489 |
+
var leaveRenders = (_leaveRenders = {}, _leaveRenders[modes.out] = function (_ref) {
|
84490 |
+
var current = _ref.current,
|
84491 |
+
changeState = _ref.changeState;
|
84492 |
+
return __WEBPACK_IMPORTED_MODULE_1_react___default.a.cloneElement(current, {
|
84493 |
+
in: false,
|
84494 |
+
onExited: callHook(current, 'onExited', function () {
|
84495 |
+
changeState(__WEBPACK_IMPORTED_MODULE_3__Transition__["b" /* ENTERING */], null);
|
84496 |
+
})
|
84497 |
+
});
|
84498 |
+
}, _leaveRenders[modes.in] = function (_ref2) {
|
84499 |
+
var current = _ref2.current,
|
84500 |
+
changeState = _ref2.changeState,
|
84501 |
+
children = _ref2.children;
|
84502 |
+
return [current, __WEBPACK_IMPORTED_MODULE_1_react___default.a.cloneElement(children, {
|
84503 |
+
in: true,
|
84504 |
+
onEntered: callHook(children, 'onEntered', function () {
|
84505 |
+
changeState(__WEBPACK_IMPORTED_MODULE_3__Transition__["b" /* ENTERING */]);
|
84506 |
+
})
|
84507 |
+
})];
|
84508 |
+
}, _leaveRenders);
|
84509 |
+
var enterRenders = (_enterRenders = {}, _enterRenders[modes.out] = function (_ref3) {
|
84510 |
+
var children = _ref3.children,
|
84511 |
+
changeState = _ref3.changeState;
|
84512 |
+
return __WEBPACK_IMPORTED_MODULE_1_react___default.a.cloneElement(children, {
|
84513 |
+
in: true,
|
84514 |
+
onEntered: callHook(children, 'onEntered', function () {
|
84515 |
+
changeState(__WEBPACK_IMPORTED_MODULE_3__Transition__["a" /* ENTERED */], __WEBPACK_IMPORTED_MODULE_1_react___default.a.cloneElement(children, {
|
84516 |
+
in: true
|
84517 |
+
}));
|
84518 |
+
})
|
84519 |
+
});
|
84520 |
+
}, _enterRenders[modes.in] = function (_ref4) {
|
84521 |
+
var current = _ref4.current,
|
84522 |
+
children = _ref4.children,
|
84523 |
+
changeState = _ref4.changeState;
|
84524 |
+
return [__WEBPACK_IMPORTED_MODULE_1_react___default.a.cloneElement(current, {
|
84525 |
+
in: false,
|
84526 |
+
onExited: callHook(current, 'onExited', function () {
|
84527 |
+
changeState(__WEBPACK_IMPORTED_MODULE_3__Transition__["a" /* ENTERED */], __WEBPACK_IMPORTED_MODULE_1_react___default.a.cloneElement(children, {
|
84528 |
+
in: true
|
84529 |
+
}));
|
84530 |
+
})
|
84531 |
+
}), __WEBPACK_IMPORTED_MODULE_1_react___default.a.cloneElement(children, {
|
84532 |
+
in: true
|
84533 |
+
})];
|
84534 |
+
}, _enterRenders);
|
84535 |
+
/**
|
84536 |
+
* A transition component inspired by the [vue transition modes](https://vuejs.org/v2/guide/transitions.html#Transition-Modes).
|
84537 |
+
* You can use it when you want to control the render between state transitions.
|
84538 |
+
* Based on the selected mode and the child's key which is the `Transition` or `CSSTransition` component, the `SwitchTransition` makes a consistent transition between them.
|
84539 |
+
*
|
84540 |
+
* If the `out-in` mode is selected, the `SwitchTransition` waits until the old child leaves and then inserts a new child.
|
84541 |
+
* If the `in-out` mode is selected, the `SwitchTransition` inserts a new child first, waits for the new child to enter and then removes the old child.
|
84542 |
+
*
|
84543 |
+
* **Note**: If you want the animation to happen simultaneously
|
84544 |
+
* (that is, to have the old child removed and a new child inserted **at the same time**),
|
84545 |
+
* you should use
|
84546 |
+
* [`TransitionGroup`](https://reactcommunity.org/react-transition-group/transition-group)
|
84547 |
+
* instead.
|
84548 |
+
*
|
84549 |
+
* ```jsx
|
84550 |
+
* function App() {
|
84551 |
+
* const [state, setState] = useState(false);
|
84552 |
+
* return (
|
84553 |
+
* <SwitchTransition>
|
84554 |
+
* <CSSTransition
|
84555 |
+
* key={state ? "Goodbye, world!" : "Hello, world!"}
|
84556 |
+
* addEndListener={(node, done) => node.addEventListener("transitionend", done, false)}
|
84557 |
+
* classNames='fade'
|
84558 |
+
* >
|
84559 |
+
* <button onClick={() => setState(state => !state)}>
|
84560 |
+
* {state ? "Goodbye, world!" : "Hello, world!"}
|
84561 |
+
* </button>
|
84562 |
+
* </CSSTransition>
|
84563 |
+
* </SwitchTransition>
|
84564 |
+
* );
|
84565 |
+
* }
|
84566 |
+
* ```
|
84567 |
+
*
|
84568 |
+
* ```css
|
84569 |
+
* .fade-enter{
|
84570 |
+
* opacity: 0;
|
84571 |
+
* }
|
84572 |
+
* .fade-exit{
|
84573 |
+
* opacity: 1;
|
84574 |
+
* }
|
84575 |
+
* .fade-enter-active{
|
84576 |
+
* opacity: 1;
|
84577 |
+
* }
|
84578 |
+
* .fade-exit-active{
|
84579 |
+
* opacity: 0;
|
84580 |
+
* }
|
84581 |
+
* .fade-enter-active,
|
84582 |
+
* .fade-exit-active{
|
84583 |
+
* transition: opacity 500ms;
|
84584 |
+
* }
|
84585 |
+
* ```
|
84586 |
+
*/
|
84587 |
+
|
84588 |
+
var SwitchTransition = /*#__PURE__*/function (_React$Component) {
|
84589 |
+
Object(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_inheritsLoose__["a" /* default */])(SwitchTransition, _React$Component);
|
84590 |
+
|
84591 |
+
function SwitchTransition() {
|
84592 |
+
var _this;
|
84593 |
+
|
84594 |
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
84595 |
+
args[_key] = arguments[_key];
|
84596 |
+
}
|
84597 |
+
|
84598 |
+
_this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
|
84599 |
+
_this.state = {
|
84600 |
+
status: __WEBPACK_IMPORTED_MODULE_3__Transition__["a" /* ENTERED */],
|
84601 |
+
current: null
|
84602 |
+
};
|
84603 |
+
_this.appeared = false;
|
84604 |
+
|
84605 |
+
_this.changeState = function (status, current) {
|
84606 |
+
if (current === void 0) {
|
84607 |
+
current = _this.state.current;
|
84608 |
+
}
|
84609 |
+
|
84610 |
+
_this.setState({
|
84611 |
+
status: status,
|
84612 |
+
current: current
|
84613 |
+
});
|
84614 |
+
};
|
84615 |
+
|
84616 |
+
return _this;
|
84617 |
+
}
|
84618 |
+
|
84619 |
+
var _proto = SwitchTransition.prototype;
|
84620 |
+
|
84621 |
+
_proto.componentDidMount = function componentDidMount() {
|
84622 |
+
this.appeared = true;
|
84623 |
+
};
|
84624 |
+
|
84625 |
+
SwitchTransition.getDerivedStateFromProps = function getDerivedStateFromProps(props, state) {
|
84626 |
+
if (props.children == null) {
|
84627 |
+
return {
|
84628 |
+
current: null
|
84629 |
+
};
|
84630 |
+
}
|
84631 |
+
|
84632 |
+
if (state.status === __WEBPACK_IMPORTED_MODULE_3__Transition__["b" /* ENTERING */] && props.mode === modes.in) {
|
84633 |
+
return {
|
84634 |
+
status: __WEBPACK_IMPORTED_MODULE_3__Transition__["b" /* ENTERING */]
|
84635 |
+
};
|
84636 |
+
}
|
84637 |
+
|
84638 |
+
if (state.current && areChildrenDifferent(state.current, props.children)) {
|
84639 |
+
return {
|
84640 |
+
status: __WEBPACK_IMPORTED_MODULE_3__Transition__["c" /* EXITING */]
|
84641 |
+
};
|
84642 |
+
}
|
84643 |
+
|
84644 |
+
return {
|
84645 |
+
current: __WEBPACK_IMPORTED_MODULE_1_react___default.a.cloneElement(props.children, {
|
84646 |
+
in: true
|
84647 |
+
})
|
84648 |
+
};
|
84649 |
+
};
|
84650 |
+
|
84651 |
+
_proto.render = function render() {
|
84652 |
+
var _this$props = this.props,
|
84653 |
+
children = _this$props.children,
|
84654 |
+
mode = _this$props.mode,
|
84655 |
+
_this$state = this.state,
|
84656 |
+
status = _this$state.status,
|
84657 |
+
current = _this$state.current;
|
84658 |
+
var data = {
|
84659 |
+
children: children,
|
84660 |
+
current: current,
|
84661 |
+
changeState: this.changeState,
|
84662 |
+
status: status
|
84663 |
+
};
|
84664 |
+
var component;
|
84665 |
+
|
84666 |
+
switch (status) {
|
84667 |
+
case __WEBPACK_IMPORTED_MODULE_3__Transition__["b" /* ENTERING */]:
|
84668 |
+
component = enterRenders[mode](data);
|
84669 |
+
break;
|
84670 |
+
|
84671 |
+
case __WEBPACK_IMPORTED_MODULE_3__Transition__["c" /* EXITING */]:
|
84672 |
+
component = leaveRenders[mode](data);
|
84673 |
+
break;
|
84674 |
+
|
84675 |
+
case __WEBPACK_IMPORTED_MODULE_3__Transition__["a" /* ENTERED */]:
|
84676 |
+
component = current;
|
84677 |
+
}
|
84678 |
+
|
84679 |
+
return /*#__PURE__*/__WEBPACK_IMPORTED_MODULE_1_react___default.a.createElement(__WEBPACK_IMPORTED_MODULE_4__TransitionGroupContext__["a" /* default */].Provider, {
|
84680 |
+
value: {
|
84681 |
+
isMounting: !this.appeared
|
84682 |
+
}
|
84683 |
+
}, component);
|
84684 |
+
};
|
84685 |
+
|
84686 |
+
return SwitchTransition;
|
84687 |
+
}(__WEBPACK_IMPORTED_MODULE_1_react___default.a.Component);
|
84688 |
+
|
84689 |
+
SwitchTransition.propTypes = process.env.NODE_ENV !== "production" ? {
|
84690 |
+
/**
|
84691 |
+
* Transition modes.
|
84692 |
+
* `out-in`: Current element transitions out first, then when complete, the new element transitions in.
|
84693 |
+
* `in-out`: New element transitions in first, then when complete, the current element transitions out.
|
84694 |
+
*
|
84695 |
+
* @type {'out-in'|'in-out'}
|
84696 |
+
*/
|
84697 |
+
mode: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.oneOf([modes.in, modes.out]),
|
84698 |
+
|
84699 |
+
/**
|
84700 |
+
* Any `Transition` or `CSSTransition` component.
|
84701 |
+
*/
|
84702 |
+
children: __WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.oneOfType([__WEBPACK_IMPORTED_MODULE_2_prop_types___default.a.element.isRequired])
|
84703 |
+
} : {};
|
84704 |
+
SwitchTransition.defaultProps = {
|
84705 |
+
mode: modes.out
|
84706 |
+
};
|
84707 |
+
/* harmony default export */ __webpack_exports__["a"] = (SwitchTransition);
|
84708 |
+
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 6)))
|
84709 |
+
|
84710 |
+
/***/ }),
|
84711 |
+
/* 526 */
|
84712 |
/*!************************************************!*\
|
84713 |
!*** ./dist/blocks/uagb-controls/parseIcon.js ***!
|
84714 |
\************************************************/
|
84731 |
/* harmony default export */ __webpack_exports__["a"] = (parseSVG);
|
84732 |
|
84733 |
/***/ }),
|
84734 |
+
/* 527 */
|
84735 |
/*!******************************************!*\
|
84736 |
!*** ./src/blocks/buttons-child/save.js ***!
|
84737 |
\******************************************/
|
84807 |
}
|
84808 |
|
84809 |
/***/ }),
|
84810 |
+
/* 528 */
|
84811 |
/*!*********************************************!*\
|
84812 |
!*** ./src/blocks/buttons-child/style.scss ***!
|
84813 |
\*********************************************/
|
84817 |
// removed by extract-text-webpack-plugin
|
84818 |
|
84819 |
/***/ }),
|
84820 |
+
/* 529 */
|
84821 |
/*!**************************************!*\
|
84822 |
!*** ./src/blocks/info-box/block.js ***!
|
84823 |
\**************************************/
|
84826 |
|
84827 |
"use strict";
|
84828 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
84829 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 530);
|
84830 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 531);
|
84831 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 210);
|
84832 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 532);
|
84833 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 536);
|
84834 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
84835 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 537);
|
84836 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
84837 |
/**
|
84838 |
* BLOCK: Info Box
|
84867 |
});
|
84868 |
|
84869 |
/***/ }),
|
84870 |
+
/* 530 */
|
84871 |
/*!*************************************!*\
|
84872 |
!*** ./src/blocks/info-box/edit.js ***!
|
84873 |
\*************************************/
|
84882 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
|
84883 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
84884 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
84885 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */ 107);
|
84886 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Title__ = __webpack_require__(/*! ./components/Title */ 108);
|
84887 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 109);
|
84888 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */ 110);
|
84889 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__classes__ = __webpack_require__(/*! ./classes */ 111);
|
84890 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */ 112);
|
84891 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 113);
|
84892 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 208);
|
84893 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_IconImage__ = __webpack_require__(/*! ./components/IconImage */ 209);
|
84894 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
84895 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
84896 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
86371 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBinfoBox);
|
86372 |
|
86373 |
/***/ }),
|
86374 |
+
/* 531 */
|
86375 |
/*!*************************************!*\
|
86376 |
!*** ./src/blocks/info-box/save.js ***!
|
86377 |
\*************************************/
|
86383 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
86384 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
86385 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
86386 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */ 107);
|
86387 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */ 108);
|
86388 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */ 110);
|
86389 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 109);
|
86390 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */ 111);
|
86391 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */ 112);
|
86392 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 113);
|
86393 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_IconImage__ = __webpack_require__(/*! ./components/IconImage */ 209);
|
86394 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
86395 |
|
86396 |
/**
|
86553 |
}
|
86554 |
|
86555 |
/***/ }),
|
86556 |
+
/* 532 */
|
86557 |
/*!*******************************************!*\
|
86558 |
!*** ./src/blocks/info-box/deprecated.js ***!
|
86559 |
\*******************************************/
|
86564 |
"use strict";
|
86565 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
86566 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
86567 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */ 107);
|
86568 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */ 108);
|
86569 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */ 110);
|
86570 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_InfoBoxIcon__ = __webpack_require__(/*! ./components/InfoBoxIcon */ 533);
|
86571 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 109);
|
86572 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! ./classes */ 111);
|
86573 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */ 112);
|
86574 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxCta__ = __webpack_require__(/*! ./components/InfoBoxCta */ 534);
|
86575 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 113);
|
86576 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 208);
|
86577 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_InfoBoxIconImage__ = __webpack_require__(/*! ./components/InfoBoxIconImage */ 535);
|
86578 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__attributes__ = __webpack_require__(/*! ./attributes */ 210);
|
86579 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
86580 |
|
86581 |
/**
|
87602 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
87603 |
|
87604 |
/***/ }),
|
87605 |
+
/* 533 */
|
87606 |
/*!*******************************************************!*\
|
87607 |
!*** ./src/blocks/info-box/components/InfoBoxIcon.js ***!
|
87608 |
\*******************************************************/
|
87662 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxIcon);
|
87663 |
|
87664 |
/***/ }),
|
87665 |
+
/* 534 */
|
87666 |
/*!******************************************************!*\
|
87667 |
!*** ./src/blocks/info-box/components/InfoBoxCta.js ***!
|
87668 |
\******************************************************/
|
87760 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxCta);
|
87761 |
|
87762 |
/***/ }),
|
87763 |
+
/* 535 */
|
87764 |
/*!************************************************************!*\
|
87765 |
!*** ./src/blocks/info-box/components/InfoBoxIconImage.js ***!
|
87766 |
\************************************************************/
|
87840 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxIconImage);
|
87841 |
|
87842 |
/***/ }),
|
87843 |
+
/* 536 */
|
87844 |
/*!*****************************************!*\
|
87845 |
!*** ./src/blocks/info-box/editor.scss ***!
|
87846 |
\*****************************************/
|
87850 |
// removed by extract-text-webpack-plugin
|
87851 |
|
87852 |
/***/ }),
|
87853 |
+
/* 537 */
|
87854 |
/*!****************************************!*\
|
87855 |
!*** ./src/blocks/info-box/style.scss ***!
|
87856 |
\****************************************/
|
87860 |
// removed by extract-text-webpack-plugin
|
87861 |
|
87862 |
/***/ }),
|
87863 |
+
/* 538 */
|
87864 |
/*!*****************************************!*\
|
87865 |
!*** ./src/blocks/testimonial/block.js ***!
|
87866 |
\*****************************************/
|
87871 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
87872 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
87873 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
87874 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 539);
|
87875 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 541);
|
87876 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 212);
|
87877 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */ 542);
|
87878 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 544);
|
87879 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
87880 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 545);
|
87881 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
|
87882 |
/**
|
87883 |
* BLOCK: Testimonial
|
87912 |
});
|
87913 |
|
87914 |
/***/ }),
|
87915 |
+
/* 539 */
|
87916 |
/*!****************************************!*\
|
87917 |
!*** ./src/blocks/testimonial/edit.js ***!
|
87918 |
\****************************************/
|
87923 |
"use strict";
|
87924 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
87925 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
87926 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */ 114);
|
87927 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Company__ = __webpack_require__(/*! ./components/Company */ 115);
|
87928 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 116);
|
87929 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */ 117);
|
87930 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 540);
|
87931 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_Image__ = __webpack_require__(/*! ./components/Image */ 211);
|
87932 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
87933 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_times__);
|
87934 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react_slick__ = __webpack_require__(/*! react-slick */ 198);
|
87935 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react_slick___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_react_slick__);
|
87936 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
87937 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
89118 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBtestimonial);
|
89119 |
|
89120 |
/***/ }),
|
89121 |
+
/* 540 */
|
89122 |
/*!*************************************************!*\
|
89123 |
!*** ./src/blocks/testimonial/inline-styles.js ***!
|
89124 |
\*************************************************/
|
89363 |
/* harmony default export */ __webpack_exports__["a"] = (TestimonialStyle);
|
89364 |
|
89365 |
/***/ }),
|
89366 |
+
/* 541 */
|
89367 |
/*!****************************************!*\
|
89368 |
!*** ./src/blocks/testimonial/save.js ***!
|
89369 |
\****************************************/
|
89375 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
89376 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
89377 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
89378 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */ 114);
|
89379 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Company__ = __webpack_require__(/*! ./components/Company */ 115);
|
89380 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 116);
|
89381 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */ 117);
|
89382 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Image__ = __webpack_require__(/*! ./components/Image */ 211);
|
89383 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
89384 |
|
89385 |
/**
|
89475 |
}
|
89476 |
|
89477 |
/***/ }),
|
89478 |
+
/* 542 */
|
89479 |
/*!**********************************************!*\
|
89480 |
!*** ./src/blocks/testimonial/deprecated.js ***!
|
89481 |
\**********************************************/
|
89486 |
"use strict";
|
89487 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
89488 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
89489 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 212);
|
89490 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
89491 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */ 114);
|
89492 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Company__ = __webpack_require__(/*! ./components/Company */ 115);
|
89493 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */ 116);
|
89494 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! ./classes */ 117);
|
89495 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_TestimonialImage__ = __webpack_require__(/*! ./components/TestimonialImage */ 543);
|
89496 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
89497 |
|
89498 |
/**
|
89784 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
89785 |
|
89786 |
/***/ }),
|
89787 |
+
/* 543 */
|
89788 |
/*!***************************************************************!*\
|
89789 |
!*** ./src/blocks/testimonial/components/TestimonialImage.js ***!
|
89790 |
\***************************************************************/
|
89869 |
/* harmony default export */ __webpack_exports__["a"] = (TestimonialImage);
|
89870 |
|
89871 |
/***/ }),
|
89872 |
+
/* 544 */
|
89873 |
/*!*******************************************!*\
|
89874 |
!*** ./src/blocks/testimonial/style.scss ***!
|
89875 |
\*******************************************/
|
89879 |
// removed by extract-text-webpack-plugin
|
89880 |
|
89881 |
/***/ }),
|
89882 |
+
/* 545 */
|
89883 |
/*!********************************************!*\
|
89884 |
!*** ./src/blocks/testimonial/editor.scss ***!
|
89885 |
\********************************************/
|
89889 |
// removed by extract-text-webpack-plugin
|
89890 |
|
89891 |
/***/ }),
|
89892 |
+
/* 546 */
|
89893 |
/*!**********************************!*\
|
89894 |
!*** ./src/blocks/team/block.js ***!
|
89895 |
\**********************************/
|
89901 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
89902 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
89903 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
89904 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 547);
|
89905 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 549);
|
89906 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */ 550);
|
89907 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 213);
|
89908 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 551);
|
89909 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
|
89910 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss__ = __webpack_require__(/*! ./style.scss */ 552);
|
89911 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__style_scss__);
|
89912 |
/**
|
89913 |
* BLOCK: Team
|
89944 |
});
|
89945 |
|
89946 |
/***/ }),
|
89947 |
+
/* 547 */
|
89948 |
/*!*********************************!*\
|
89949 |
!*** ./src/blocks/team/edit.js ***!
|
89950 |
\*********************************/
|
89959 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
|
89960 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
89961 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
89962 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 548);
|
89963 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
89964 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
89965 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
90874 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBTeam);
|
90875 |
|
90876 |
/***/ }),
|
90877 |
+
/* 548 */
|
90878 |
/*!************************************!*\
|
90879 |
!*** ./src/blocks/team/styling.js ***!
|
90880 |
\************************************/
|
91099 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
91100 |
|
91101 |
/***/ }),
|
91102 |
+
/* 549 */
|
91103 |
/*!*********************************!*\
|
91104 |
!*** ./src/blocks/team/save.js ***!
|
91105 |
\*********************************/
|
91244 |
}
|
91245 |
|
91246 |
/***/ }),
|
91247 |
+
/* 550 */
|
91248 |
/*!***************************************!*\
|
91249 |
!*** ./src/blocks/team/deprecated.js ***!
|
91250 |
\***************************************/
|
91255 |
"use strict";
|
91256 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
91257 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
91258 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 213);
|
91259 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
91260 |
/**
|
91261 |
* BLOCK: Table of Contents - Deprecated Block
|
91620 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
91621 |
|
91622 |
/***/ }),
|
91623 |
+
/* 551 */
|
91624 |
/*!*************************************!*\
|
91625 |
!*** ./src/blocks/team/editor.scss ***!
|
91626 |
\*************************************/
|
91630 |
// removed by extract-text-webpack-plugin
|
91631 |
|
91632 |
/***/ }),
|
91633 |
+
/* 552 */
|
91634 |
/*!************************************!*\
|
91635 |
!*** ./src/blocks/team/style.scss ***!
|
91636 |
\************************************/
|
91640 |
// removed by extract-text-webpack-plugin
|
91641 |
|
91642 |
/***/ }),
|
91643 |
+
/* 553 */
|
91644 |
/*!******************************************!*\
|
91645 |
!*** ./src/blocks/social-share/block.js ***!
|
91646 |
\******************************************/
|
91652 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
91653 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
91654 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
91655 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 554);
|
91656 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
91657 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 555);
|
91658 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__editor_scss__);
|
91659 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__transform__ = __webpack_require__(/*! ./transform */ 556);
|
91660 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 214);
|
91661 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__edit__ = __webpack_require__(/*! ./edit */ 557);
|
91662 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__links__ = __webpack_require__(/*! ./links */ 118);
|
91663 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__save__ = __webpack_require__(/*! ./save */ 559);
|
91664 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__deprecated__ = __webpack_require__(/*! ./deprecated */ 560);
|
91665 |
/**
|
91666 |
* BLOCK: Social Share
|
91667 |
*/
|
91708 |
});
|
91709 |
|
91710 |
/***/ }),
|
91711 |
+
/* 554 */
|
91712 |
/*!********************************************!*\
|
91713 |
!*** ./src/blocks/social-share/style.scss ***!
|
91714 |
\********************************************/
|
91718 |
// removed by extract-text-webpack-plugin
|
91719 |
|
91720 |
/***/ }),
|
91721 |
+
/* 555 */
|
91722 |
/*!*********************************************!*\
|
91723 |
!*** ./src/blocks/social-share/editor.scss ***!
|
91724 |
\*********************************************/
|
91728 |
// removed by extract-text-webpack-plugin
|
91729 |
|
91730 |
/***/ }),
|
91731 |
+
/* 556 */
|
91732 |
/*!**********************************************!*\
|
91733 |
!*** ./src/blocks/social-share/transform.js ***!
|
91734 |
\**********************************************/
|
91782 |
/* harmony default export */ __webpack_exports__["a"] = (transform);
|
91783 |
|
91784 |
/***/ }),
|
91785 |
+
/* 557 */
|
91786 |
/*!*****************************************!*\
|
91787 |
!*** ./src/blocks/social-share/edit.js ***!
|
91788 |
\*****************************************/
|
91795 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
91796 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
91797 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
91798 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
91799 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
|
91800 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 19);
|
91801 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
91802 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
91803 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json__);
|
91804 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 558);
|
91805 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
91806 |
|
91807 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
92131 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShare);
|
92132 |
|
92133 |
/***/ }),
|
92134 |
+
/* 558 */
|
92135 |
/*!********************************************!*\
|
92136 |
!*** ./src/blocks/social-share/styling.js ***!
|
92137 |
\********************************************/
|
92341 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
92342 |
|
92343 |
/***/ }),
|
92344 |
+
/* 559 */
|
92345 |
/*!*****************************************!*\
|
92346 |
!*** ./src/blocks/social-share/save.js ***!
|
92347 |
\*****************************************/
|
92354 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
92355 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
92356 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
92357 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__links__ = __webpack_require__(/*! ./links */ 118);
|
92358 |
/**
|
92359 |
* BLOCK: Column - Save Block
|
92360 |
*/
|
92391 |
}
|
92392 |
|
92393 |
/***/ }),
|
92394 |
+
/* 560 */
|
92395 |
/*!***********************************************!*\
|
92396 |
!*** ./src/blocks/social-share/deprecated.js ***!
|
92397 |
\***********************************************/
|
92402 |
"use strict";
|
92403 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
92404 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
92405 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 214);
|
92406 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
92407 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__links__ = __webpack_require__(/*! ./links */ 118);
|
92408 |
/**
|
92409 |
* BLOCK: Social Share - Deprecated Block
|
92410 |
*/
|
92626 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
92627 |
|
92628 |
/***/ }),
|
92629 |
+
/* 561 */
|
92630 |
/*!************************************************!*\
|
92631 |
!*** ./src/blocks/social-share-child/block.js ***!
|
92632 |
\************************************************/
|
92635 |
|
92636 |
"use strict";
|
92637 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
92638 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 215);
|
92639 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 562);
|
92640 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 564);
|
92641 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 565);
|
92642 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
92643 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 566);
|
92644 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
92645 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 567);
|
92646 |
/**
|
92647 |
* BLOCK: Social Share Child
|
92648 |
*/
|
92673 |
});
|
92674 |
|
92675 |
/***/ }),
|
92676 |
+
/* 562 */
|
92677 |
/*!***********************************************!*\
|
92678 |
!*** ./src/blocks/social-share-child/edit.js ***!
|
92679 |
\***********************************************/
|
92688 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
|
92689 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
92690 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
92691 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 563);
|
92692 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
92693 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
92694 |
|
93135 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShareChild);
|
93136 |
|
93137 |
/***/ }),
|
93138 |
+
/* 563 */
|
93139 |
/*!**************************************************!*\
|
93140 |
!*** ./src/blocks/social-share-child/styling.js ***!
|
93141 |
\**************************************************/
|
93191 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
93192 |
|
93193 |
/***/ }),
|
93194 |
+
/* 564 */
|
93195 |
/*!***********************************************!*\
|
93196 |
!*** ./src/blocks/social-share-child/save.js ***!
|
93197 |
\***********************************************/
|
93204 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
93205 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
93206 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
93207 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__links__ = __webpack_require__(/*! ./links */ 216);
|
93208 |
/**
|
93209 |
* BLOCK: Social Share - Save Block
|
93210 |
*/
|
93265 |
}
|
93266 |
|
93267 |
/***/ }),
|
93268 |
+
/* 565 */
|
93269 |
/*!**************************************************!*\
|
93270 |
!*** ./src/blocks/social-share-child/style.scss ***!
|
93271 |
\**************************************************/
|
93275 |
// removed by extract-text-webpack-plugin
|
93276 |
|
93277 |
/***/ }),
|
93278 |
+
/* 566 */
|
93279 |
/*!***************************************************!*\
|
93280 |
!*** ./src/blocks/social-share-child/editor.scss ***!
|
93281 |
\***************************************************/
|
93285 |
// removed by extract-text-webpack-plugin
|
93286 |
|
93287 |
/***/ }),
|
93288 |
+
/* 567 */
|
93289 |
/*!*****************************************************!*\
|
93290 |
!*** ./src/blocks/social-share-child/deprecated.js ***!
|
93291 |
\*****************************************************/
|
93296 |
"use strict";
|
93297 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
93298 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
93299 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 215);
|
93300 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
93301 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__links__ = __webpack_require__(/*! ./links */ 216);
|
93302 |
/**
|
93303 |
* BLOCK: Social Share child - Deprecated Block
|
93304 |
*/
|
93367 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
93368 |
|
93369 |
/***/ }),
|
93370 |
+
/* 568 */
|
93371 |
/*!****************************************!*\
|
93372 |
!*** ./src/blocks/google-map/block.js ***!
|
93373 |
\****************************************/
|
93378 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
93379 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
93380 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
93381 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */ 569);
|
93382 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
93383 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
93384 |
|
93699 |
});
|
93700 |
|
93701 |
/***/ }),
|
93702 |
+
/* 569 */
|
93703 |
/*!******************************************!*\
|
93704 |
!*** ./src/blocks/google-map/style.scss ***!
|
93705 |
\******************************************/
|
93709 |
// removed by extract-text-webpack-plugin
|
93710 |
|
93711 |
/***/ }),
|
93712 |
+
/* 570 */
|
93713 |
/*!***************************************!*\
|
93714 |
!*** ./src/blocks/icon-list/block.js ***!
|
93715 |
\***************************************/
|
93718 |
|
93719 |
"use strict";
|
93720 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
93721 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 217);
|
93722 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 571);
|
93723 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 573);
|
93724 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 574);
|
93725 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 575);
|
93726 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
93727 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 576);
|
93728 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
93729 |
/**
|
93730 |
* BLOCK: Icon List
|
93767 |
});
|
93768 |
|
93769 |
/***/ }),
|
93770 |
+
/* 571 */
|
93771 |
/*!**************************************!*\
|
93772 |
!*** ./src/blocks/icon-list/edit.js ***!
|
93773 |
\**************************************/
|
93780 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
93781 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
93782 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
93783 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
93784 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
|
93785 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 19);
|
93786 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
93787 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */ 572);
|
93788 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
93789 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
93790 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
94203 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBIconList);
|
94204 |
|
94205 |
/***/ }),
|
94206 |
+
/* 572 */
|
94207 |
/*!*****************************************!*\
|
94208 |
!*** ./src/blocks/icon-list/styling.js ***!
|
94209 |
\*****************************************/
|
94435 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
94436 |
|
94437 |
/***/ }),
|
94438 |
+
/* 573 */
|
94439 |
/*!**************************************!*\
|
94440 |
!*** ./src/blocks/icon-list/save.js ***!
|
94441 |
\**************************************/
|
94482 |
}
|
94483 |
|
94484 |
/***/ }),
|
94485 |
+
/* 574 */
|
94486 |
/*!********************************************!*\
|
94487 |
!*** ./src/blocks/icon-list/deprecated.js ***!
|
94488 |
\********************************************/
|
94494 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
94495 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
94496 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
94497 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 217);
|
94498 |
/**
|
94499 |
* BLOCK: Columns - Deprecated Block
|
94500 |
*/
|
94938 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
94939 |
|
94940 |
/***/ }),
|
94941 |
+
/* 575 */
|
94942 |
/*!*****************************************!*\
|
94943 |
!*** ./src/blocks/icon-list/style.scss ***!
|
94944 |
\*****************************************/
|
94948 |
// removed by extract-text-webpack-plugin
|
94949 |
|
94950 |
/***/ }),
|
94951 |
+
/* 576 */
|
94952 |
/*!******************************************!*\
|
94953 |
!*** ./src/blocks/icon-list/editor.scss ***!
|
94954 |
\******************************************/
|
94958 |
// removed by extract-text-webpack-plugin
|
94959 |
|
94960 |
/***/ }),
|
94961 |
+
/* 577 */
|
94962 |
/*!*********************************************!*\
|
94963 |
!*** ./src/blocks/icon-list-child/block.js ***!
|
94964 |
\*********************************************/
|
94967 |
|
94968 |
"use strict";
|
94969 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
94970 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 218);
|
94971 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 578);
|
94972 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 580);
|
94973 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 581);
|
94974 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
94975 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 582);
|
94976 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
94977 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 583);
|
94978 |
/**
|
94979 |
* BLOCK: Icon List - Child
|
94980 |
*/
|
95004 |
});
|
95005 |
|
95006 |
/***/ }),
|
95007 |
+
/* 578 */
|
95008 |
/*!********************************************!*\
|
95009 |
!*** ./src/blocks/icon-list-child/edit.js ***!
|
95010 |
\********************************************/
|
95019 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
|
95020 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
95021 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
95022 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 579);
|
95023 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
95024 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
95025 |
|
95620 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBIconListChild);
|
95621 |
|
95622 |
/***/ }),
|
95623 |
+
/* 579 */
|
95624 |
/*!***********************************************!*\
|
95625 |
!*** ./src/blocks/icon-list-child/styling.js ***!
|
95626 |
\***********************************************/
|
95688 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
95689 |
|
95690 |
/***/ }),
|
95691 |
+
/* 580 */
|
95692 |
/*!********************************************!*\
|
95693 |
!*** ./src/blocks/icon-list-child/save.js ***!
|
95694 |
\********************************************/
|
95772 |
}
|
95773 |
|
95774 |
/***/ }),
|
95775 |
+
/* 581 */
|
95776 |
/*!***********************************************!*\
|
95777 |
!*** ./src/blocks/icon-list-child/style.scss ***!
|
95778 |
\***********************************************/
|
95782 |
// removed by extract-text-webpack-plugin
|
95783 |
|
95784 |
/***/ }),
|
95785 |
+
/* 582 */
|
95786 |
/*!************************************************!*\
|
95787 |
!*** ./src/blocks/icon-list-child/editor.scss ***!
|
95788 |
\************************************************/
|
95792 |
// removed by extract-text-webpack-plugin
|
95793 |
|
95794 |
/***/ }),
|
95795 |
+
/* 583 */
|
95796 |
/*!**************************************************!*\
|
95797 |
!*** ./src/blocks/icon-list-child/deprecated.js ***!
|
95798 |
\**************************************************/
|
95804 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
95805 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
95806 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
95807 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 218);
|
95808 |
/**
|
95809 |
* BLOCK: Icon List - Child - Deprecated Block
|
95810 |
*/
|
95881 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
95882 |
|
95883 |
/***/ }),
|
95884 |
+
/* 584 */
|
95885 |
/*!****************************************!*\
|
95886 |
!*** ./src/blocks/price-list/block.js ***!
|
95887 |
\****************************************/
|
95890 |
|
95891 |
"use strict";
|
95892 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
95893 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 585);
|
95894 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 587);
|
95895 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 588);
|
95896 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 219);
|
95897 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 589);
|
95898 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
95899 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 590);
|
95900 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
95901 |
var _registerBlockType;
|
95902 |
|
95974 |
addFilter('editor.BlockEdit', 'uagb/restaurant-menu', withPriceList);
|
95975 |
|
95976 |
/***/ }),
|
95977 |
+
/* 585 */
|
95978 |
/*!***************************************!*\
|
95979 |
!*** ./src/blocks/price-list/edit.js ***!
|
95980 |
\***************************************/
|
95985 |
"use strict";
|
95986 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
95987 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
95988 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__classes__ = __webpack_require__(/*! ./classes */ 67);
|
95989 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 586);
|
95990 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
95991 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_times__);
|
95992 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
96806 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBRestaurantMenu);
|
96807 |
|
96808 |
/***/ }),
|
96809 |
+
/* 586 */
|
96810 |
/*!************************************************!*\
|
96811 |
!*** ./src/blocks/price-list/inline-styles.js ***!
|
96812 |
\************************************************/
|
97023 |
/* harmony default export */ __webpack_exports__["a"] = (RestMenuStyle);
|
97024 |
|
97025 |
/***/ }),
|
97026 |
+
/* 587 */
|
97027 |
/*!***************************************!*\
|
97028 |
!*** ./src/blocks/price-list/save.js ***!
|
97029 |
\***************************************/
|
97060 |
}
|
97061 |
|
97062 |
/***/ }),
|
97063 |
+
/* 588 */
|
97064 |
/*!*********************************************!*\
|
97065 |
!*** ./src/blocks/price-list/deprecated.js ***!
|
97066 |
\*********************************************/
|
97071 |
"use strict";
|
97072 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
97073 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
97074 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 219);
|
97075 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__price_list_child_components_Title__ = __webpack_require__(/*! ../price-list-child/components/Title */ 119);
|
97076 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__price_list_child_components_Price__ = __webpack_require__(/*! ../price-list-child/components/Price */ 120);
|
97077 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__price_list_child_components_Description__ = __webpack_require__(/*! ../price-list-child/components/Description */ 121);
|
97078 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */ 67);
|
97079 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__price_list_child_components_RestMenuImage__ = __webpack_require__(/*! ../price-list-child/components/RestMenuImage */ 122);
|
97080 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
97081 |
|
97082 |
/**
|
97252 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
97253 |
|
97254 |
/***/ }),
|
97255 |
+
/* 589 */
|
97256 |
/*!******************************************!*\
|
97257 |
!*** ./src/blocks/price-list/style.scss ***!
|
97258 |
\******************************************/
|
97262 |
// removed by extract-text-webpack-plugin
|
97263 |
|
97264 |
/***/ }),
|
97265 |
+
/* 590 */
|
97266 |
/*!*******************************************!*\
|
97267 |
!*** ./src/blocks/price-list/editor.scss ***!
|
97268 |
\*******************************************/
|
97272 |
// removed by extract-text-webpack-plugin
|
97273 |
|
97274 |
/***/ }),
|
97275 |
+
/* 591 */
|
97276 |
/*!**********************************************!*\
|
97277 |
!*** ./src/blocks/price-list-child/block.js ***!
|
97278 |
\**********************************************/
|
97281 |
|
97282 |
"use strict";
|
97283 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
97284 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 592);
|
97285 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 593);
|
97286 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 594);
|
97287 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 595);
|
97288 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
97289 |
/**
|
97290 |
* BLOCK: Price List
|
97318 |
});
|
97319 |
|
97320 |
/***/ }),
|
97321 |
+
/* 592 */
|
97322 |
/*!*********************************************!*\
|
97323 |
!*** ./src/blocks/price-list-child/edit.js ***!
|
97324 |
\*********************************************/
|
97329 |
"use strict";
|
97330 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
97331 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
97332 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__price_list_classes__ = __webpack_require__(/*! ../price-list/classes */ 67);
|
97333 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */ 122);
|
97334 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! ./components/Title */ 119);
|
97335 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Price__ = __webpack_require__(/*! ./components/Price */ 120);
|
97336 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */ 121);
|
97337 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
97338 |
|
97339 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
97581 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBRestaurantMenuChild);
|
97582 |
|
97583 |
/***/ }),
|
97584 |
+
/* 593 */
|
97585 |
/*!*********************************************!*\
|
97586 |
!*** ./src/blocks/price-list-child/save.js ***!
|
97587 |
\*********************************************/
|
97593 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
97594 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
97595 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
97596 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */ 119);
|
97597 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Price__ = __webpack_require__(/*! ./components/Price */ 120);
|
97598 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 121);
|
97599 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__price_list_classes__ = __webpack_require__(/*! ../price-list/classes */ 67);
|
97600 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */ 122);
|
97601 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
97602 |
|
97603 |
/**
|
97681 |
}
|
97682 |
|
97683 |
/***/ }),
|
97684 |
+
/* 594 */
|
97685 |
/*!***************************************************!*\
|
97686 |
!*** ./src/blocks/price-list-child/attributes.js ***!
|
97687 |
\***************************************************/
|
97750 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
97751 |
|
97752 |
/***/ }),
|
97753 |
+
/* 595 */
|
97754 |
/*!************************************************!*\
|
97755 |
!*** ./src/blocks/price-list-child/style.scss ***!
|
97756 |
\************************************************/
|
97760 |
// removed by extract-text-webpack-plugin
|
97761 |
|
97762 |
/***/ }),
|
97763 |
+
/* 596 */
|
97764 |
/*!**************************************!*\
|
97765 |
!*** ./src/blocks/timeline/block.js ***!
|
97766 |
\**************************************/
|
97768 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
97769 |
|
97770 |
"use strict";
|
97771 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__content_timeline_block_js__ = __webpack_require__(/*! ./content-timeline/block.js */ 597);
|
97772 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__content_timeline_child_block_js__ = __webpack_require__(/*! ./content-timeline-child/block.js */ 602);
|
97773 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__post_timeline_block_js__ = __webpack_require__(/*! ./post-timeline/block.js */ 607);
|
97774 |
|
97775 |
|
97776 |
|
97777 |
|
97778 |
/***/ }),
|
97779 |
+
/* 597 */
|
97780 |
/*!*******************************************************!*\
|
97781 |
!*** ./src/blocks/timeline/content-timeline/block.js ***!
|
97782 |
\*******************************************************/
|
97785 |
|
97786 |
"use strict";
|
97787 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
97788 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! .././style.scss */ 123);
|
97789 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
97790 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */ 598);
|
97791 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
97792 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 599);
|
97793 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 600);
|
97794 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__attributes__ = __webpack_require__(/*! ./attributes */ 220);
|
97795 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__edit__ = __webpack_require__(/*! ./edit */ 601);
|
97796 |
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
|
97797 |
|
97798 |
/**
|
97911 |
addFilter('editor.BlockEdit', 'uagb/content-timeline', withcontentTimeline);
|
97912 |
|
97913 |
/***/ }),
|
97914 |
+
/* 598 */
|
97915 |
/*!*********************************************************!*\
|
97916 |
!*** ./src/blocks/timeline/content-timeline/style.scss ***!
|
97917 |
\*********************************************************/
|
97921 |
// removed by extract-text-webpack-plugin
|
97922 |
|
97923 |
/***/ }),
|
97924 |
+
/* 599 */
|
97925 |
/*!************************************************************!*\
|
97926 |
!*** ./src/blocks/timeline/content-timeline/deprecated.js ***!
|
97927 |
\************************************************************/
|
97932 |
"use strict";
|
97933 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
97934 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
97935 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 220);
|
97936 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! .././inline-styles */ 221);
|
97937 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! .././classes */ 68);
|
97938 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__align_classes__ = __webpack_require__(/*! .././align-classes */ 222);
|
97939 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__day_align_classes__ = __webpack_require__(/*! .././day-align-classes */ 223);
|
97940 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
97941 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
97942 |
|
98504 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
98505 |
|
98506 |
/***/ }),
|
98507 |
+
/* 600 */
|
98508 |
/*!******************************************************!*\
|
98509 |
!*** ./src/blocks/timeline/content-timeline/save.js ***!
|
98510 |
\******************************************************/
|
98516 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
98517 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
98518 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
98519 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 224);
|
98520 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__classes__ = __webpack_require__(/*! .././classes */ 68);
|
98521 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
98522 |
|
98523 |
/**
|
98564 |
}
|
98565 |
|
98566 |
/***/ }),
|
98567 |
+
/* 601 */
|
98568 |
/*!******************************************************!*\
|
98569 |
!*** ./src/blocks/timeline/content-timeline/edit.js ***!
|
98570 |
\******************************************************/
|
98583 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__);
|
98584 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
98585 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__fonticonpicker_react_fonticonpicker__);
|
98586 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 224);
|
98587 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! .././classes */ 68);
|
98588 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
98589 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
98590 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
98645 |
|
98646 |
var svg_icons = Object.keys(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default.a);
|
98647 |
|
98648 |
+
var $ = jQuery;
|
98649 |
+
|
98650 |
var UAGBcontentTimeline = function (_Component) {
|
98651 |
_inherits(UAGBcontentTimeline, _Component);
|
98652 |
|
99499 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBcontentTimeline);
|
99500 |
|
99501 |
/***/ }),
|
99502 |
+
/* 602 */
|
99503 |
/*!*************************************************************!*\
|
99504 |
!*** ./src/blocks/timeline/content-timeline-child/block.js ***!
|
99505 |
\*************************************************************/
|
99508 |
|
99509 |
"use strict";
|
99510 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
99511 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! .././style.scss */ 123);
|
99512 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
99513 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */ 603);
|
99514 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
99515 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 604);
|
99516 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 225);
|
99517 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__edit__ = __webpack_require__(/*! ./edit */ 605);
|
99518 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 606);
|
99519 |
/**
|
99520 |
* BLOCK: Content Timeline Child
|
99521 |
*/
|
99546 |
});
|
99547 |
|
99548 |
/***/ }),
|
99549 |
+
/* 603 */
|
99550 |
/*!***************************************************************!*\
|
99551 |
!*** ./src/blocks/timeline/content-timeline-child/style.scss ***!
|
99552 |
\***************************************************************/
|
99556 |
// removed by extract-text-webpack-plugin
|
99557 |
|
99558 |
/***/ }),
|
99559 |
+
/* 604 */
|
99560 |
/*!************************************************************!*\
|
99561 |
!*** ./src/blocks/timeline/content-timeline-child/save.js ***!
|
99562 |
\************************************************************/
|
99679 |
}
|
99680 |
|
99681 |
/***/ }),
|
99682 |
+
/* 605 */
|
99683 |
/*!************************************************************!*\
|
99684 |
!*** ./src/blocks/timeline/content-timeline-child/edit.js ***!
|
99685 |
\************************************************************/
|
99920 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBcontentTimelineChild);
|
99921 |
|
99922 |
/***/ }),
|
99923 |
+
/* 606 */
|
99924 |
/*!******************************************************************!*\
|
99925 |
!*** ./src/blocks/timeline/content-timeline-child/deprecated.js ***!
|
99926 |
\******************************************************************/
|
99931 |
"use strict";
|
99932 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
99933 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
99934 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 225);
|
99935 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
99936 |
|
99937 |
|
100047 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
100048 |
|
100049 |
/***/ }),
|
100050 |
+
/* 607 */
|
100051 |
/*!****************************************************!*\
|
100052 |
!*** ./src/blocks/timeline/post-timeline/block.js ***!
|
100053 |
\****************************************************/
|
100057 |
"use strict";
|
100058 |
/* unused harmony export name */
|
100059 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
100060 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! .././style.scss */ 123);
|
100061 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
100062 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 608);
|
100063 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
100064 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 609);
|
100065 |
/**
|
100066 |
* BLOCK: Post Timeline Js.
|
100067 |
*/
|
100100 |
});
|
100101 |
|
100102 |
/***/ }),
|
100103 |
+
/* 608 */
|
100104 |
/*!*****************************************!*\
|
100105 |
!*** ./src/blocks/timeline/editor.scss ***!
|
100106 |
\*****************************************/
|
100110 |
// removed by extract-text-webpack-plugin
|
100111 |
|
100112 |
/***/ }),
|
100113 |
+
/* 609 */
|
100114 |
/*!***************************************************!*\
|
100115 |
!*** ./src/blocks/timeline/post-timeline/edit.js ***!
|
100116 |
\***************************************************/
|
100119 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
100120 |
|
100121 |
"use strict";
|
100122 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__ = __webpack_require__(/*! lodash/isUndefined */ 610);
|
100123 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__);
|
100124 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__ = __webpack_require__(/*! lodash/pickBy */ 611);
|
100125 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__);
|
100126 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
100127 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
|
100128 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_classnames__ = __webpack_require__(/*! classnames */ 0);
|
100129 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_classnames__);
|
100132 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
100133 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__fonticonpicker_react_fonticonpicker__);
|
100134 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
100135 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__inline_styles__ = __webpack_require__(/*! .././inline-styles */ 221);
|
100136 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__classes__ = __webpack_require__(/*! .././classes */ 68);
|
100137 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__align_classes__ = __webpack_require__(/*! .././align-classes */ 222);
|
100138 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__day_align_classes__ = __webpack_require__(/*! .././day-align-classes */ 223);
|
100139 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_Title__ = __webpack_require__(/*! ./components/Title */ 614);
|
100140 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__components_FeaturedImage__ = __webpack_require__(/*! ./components/FeaturedImage */ 615);
|
100141 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__components_Excerpt__ = __webpack_require__(/*! ./components/Excerpt */ 616);
|
100142 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__components_CtaLink__ = __webpack_require__(/*! ./components/CtaLink */ 617);
|
100143 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__components_Author__ = __webpack_require__(/*! ./components/Author */ 618);
|
100144 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__components_PostDate__ = __webpack_require__(/*! ./components/PostDate */ 619);
|
100145 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 620);
|
100146 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
100147 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
100148 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
100217 |
|
100218 |
var svg_icons = Object.keys(__WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json___default.a);
|
100219 |
|
100220 |
+
var $ = jQuery;
|
100221 |
+
|
100222 |
var UAGBTimeline = function (_Component) {
|
100223 |
_inherits(UAGBTimeline, _Component);
|
100224 |
|
101562 |
})(UAGBTimeline));
|
101563 |
|
101564 |
/***/ }),
|
101565 |
+
/* 610 */
|
101566 |
/*!********************************************!*\
|
101567 |
!*** ./node_modules/lodash/isUndefined.js ***!
|
101568 |
\********************************************/
|
101594 |
|
101595 |
|
101596 |
/***/ }),
|
101597 |
+
/* 611 */
|
101598 |
/*!***************************************!*\
|
101599 |
!*** ./node_modules/lodash/pickBy.js ***!
|
101600 |
\***************************************/
|
101601 |
/*! dynamic exports provided */
|
101602 |
/***/ (function(module, exports, __webpack_require__) {
|
101603 |
|
101604 |
+
var arrayMap = __webpack_require__(/*! ./_arrayMap */ 45),
|
101605 |
+
baseIteratee = __webpack_require__(/*! ./_baseIteratee */ 147),
|
101606 |
+
basePickBy = __webpack_require__(/*! ./_basePickBy */ 612),
|
101607 |
+
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 101);
|
101608 |
|
101609 |
/**
|
101610 |
* Creates an object composed of the `object` properties `predicate` returns
|
101641 |
|
101642 |
|
101643 |
/***/ }),
|
101644 |
+
/* 612 */
|
101645 |
/*!********************************************!*\
|
101646 |
!*** ./node_modules/lodash/_basePickBy.js ***!
|
101647 |
\********************************************/
|
101649 |
/*! all exports used */
|
101650 |
/***/ (function(module, exports, __webpack_require__) {
|
101651 |
|
101652 |
+
var baseGet = __webpack_require__(/*! ./_baseGet */ 56),
|
101653 |
+
baseSet = __webpack_require__(/*! ./_baseSet */ 613),
|
101654 |
castPath = __webpack_require__(/*! ./_castPath */ 30);
|
101655 |
|
101656 |
/**
|
101682 |
|
101683 |
|
101684 |
/***/ }),
|
101685 |
+
/* 613 */
|
101686 |
/*!*****************************************!*\
|
101687 |
!*** ./node_modules/lodash/_baseSet.js ***!
|
101688 |
\*****************************************/
|
101690 |
/*! all exports used */
|
101691 |
/***/ (function(module, exports, __webpack_require__) {
|
101692 |
|
101693 |
+
var assignValue = __webpack_require__(/*! ./_assignValue */ 64),
|
101694 |
castPath = __webpack_require__(/*! ./_castPath */ 30),
|
101695 |
+
isIndex = __webpack_require__(/*! ./_isIndex */ 51),
|
101696 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
101697 |
toKey = __webpack_require__(/*! ./_toKey */ 31);
|
101698 |
|
101740 |
|
101741 |
|
101742 |
/***/ }),
|
101743 |
+
/* 614 */
|
101744 |
/*!***************************************************************!*\
|
101745 |
!*** ./src/blocks/timeline/post-timeline/components/Title.js ***!
|
101746 |
\***************************************************************/
|
101806 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
101807 |
|
101808 |
/***/ }),
|
101809 |
+
/* 615 */
|
101810 |
/*!***********************************************************************!*\
|
101811 |
!*** ./src/blocks/timeline/post-timeline/components/FeaturedImage.js ***!
|
101812 |
\***********************************************************************/
|
101875 |
/* harmony default export */ __webpack_exports__["a"] = (FeaturedImage);
|
101876 |
|
101877 |
/***/ }),
|
101878 |
+
/* 616 */
|
101879 |
/*!*****************************************************************!*\
|
101880 |
!*** ./src/blocks/timeline/post-timeline/components/Excerpt.js ***!
|
101881 |
\*****************************************************************/
|
101934 |
/* harmony default export */ __webpack_exports__["a"] = (Excerpt);
|
101935 |
|
101936 |
/***/ }),
|
101937 |
+
/* 617 */
|
101938 |
/*!*****************************************************************!*\
|
101939 |
!*** ./src/blocks/timeline/post-timeline/components/CtaLink.js ***!
|
101940 |
\*****************************************************************/
|
101994 |
/* harmony default export */ __webpack_exports__["a"] = (CtaLink);
|
101995 |
|
101996 |
/***/ }),
|
101997 |
+
/* 618 */
|
101998 |
/*!****************************************************************!*\
|
101999 |
!*** ./src/blocks/timeline/post-timeline/components/Author.js ***!
|
102000 |
\****************************************************************/
|
102058 |
/* harmony default export */ __webpack_exports__["a"] = (Author);
|
102059 |
|
102060 |
/***/ }),
|
102061 |
+
/* 619 */
|
102062 |
/*!******************************************************************!*\
|
102063 |
!*** ./src/blocks/timeline/post-timeline/components/PostDate.js ***!
|
102064 |
\******************************************************************/
|
102118 |
/* harmony default export */ __webpack_exports__["a"] = (PostDate);
|
102119 |
|
102120 |
/***/ }),
|
102121 |
+
/* 620 */
|
102122 |
/*!**************************************************************!*\
|
102123 |
!*** ./src/blocks/timeline/post-timeline/components/Icon.js ***!
|
102124 |
\**************************************************************/
|
102172 |
/* harmony default export */ __webpack_exports__["a"] = (Icon);
|
102173 |
|
102174 |
/***/ }),
|
102175 |
+
/* 621 */
|
102176 |
/*!********************************************!*\
|
102177 |
!*** ./src/blocks/call-to-action/block.js ***!
|
102178 |
\********************************************/
|
102181 |
|
102182 |
"use strict";
|
102183 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
102184 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 622);
|
102185 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 624);
|
102186 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 226);
|
102187 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 625);
|
102188 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 627);
|
102189 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
102190 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 628);
|
102191 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
102192 |
/**
|
102193 |
* BLOCK: Call To Action.
|
102225 |
});
|
102226 |
|
102227 |
/***/ }),
|
102228 |
+
/* 622 */
|
102229 |
/*!*******************************************!*\
|
102230 |
!*** ./src/blocks/call-to-action/edit.js ***!
|
102231 |
\*******************************************/
|
102240 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_UAGBIcon_json__);
|
102241 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
102242 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
102243 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! ./components/Title */ 124);
|
102244 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Description__ = __webpack_require__(/*! ./components/Description */ 125);
|
102245 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */ 126);
|
102246 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_CTA__ = __webpack_require__(/*! ./components/CTA */ 127);
|
102247 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
102248 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 623);
|
102249 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
102250 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
102251 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
103149 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBCallToAction);
|
103150 |
|
103151 |
/***/ }),
|
103152 |
+
/* 623 */
|
103153 |
/*!****************************************************!*\
|
103154 |
!*** ./src/blocks/call-to-action/inline-styles.js ***!
|
103155 |
\****************************************************/
|
103386 |
/* harmony default export */ __webpack_exports__["a"] = (CtaStyle);
|
103387 |
|
103388 |
/***/ }),
|
103389 |
+
/* 624 */
|
103390 |
/*!*******************************************!*\
|
103391 |
!*** ./src/blocks/call-to-action/save.js ***!
|
103392 |
\*******************************************/
|
103398 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
103399 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
103400 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
103401 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */ 124);
|
103402 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */ 125);
|
103403 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! ./classes */ 126);
|
103404 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_CTA__ = __webpack_require__(/*! ./components/CTA */ 127);
|
103405 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
103406 |
|
103407 |
/**
|
103515 |
}
|
103516 |
|
103517 |
/***/ }),
|
103518 |
+
/* 625 */
|
103519 |
/*!*************************************************!*\
|
103520 |
!*** ./src/blocks/call-to-action/deprecated.js ***!
|
103521 |
\*************************************************/
|
103526 |
"use strict";
|
103527 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
103528 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
103529 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */ 124);
|
103530 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */ 125);
|
103531 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! ./classes */ 126);
|
103532 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 626);
|
103533 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_CTA__ = __webpack_require__(/*! ./components/CTA */ 127);
|
103534 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 226);
|
103535 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
103536 |
|
103537 |
/**
|
103854 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
103855 |
|
103856 |
/***/ }),
|
103857 |
+
/* 626 */
|
103858 |
/*!**************************************************************!*\
|
103859 |
!*** ./src/blocks/call-to-action/components/CallToAction.js ***!
|
103860 |
\**************************************************************/
|
103948 |
/* harmony default export */ __webpack_exports__["a"] = (CallToAction);
|
103949 |
|
103950 |
/***/ }),
|
103951 |
+
/* 627 */
|
103952 |
/*!***********************************************!*\
|
103953 |
!*** ./src/blocks/call-to-action/editor.scss ***!
|
103954 |
\***********************************************/
|
103958 |
// removed by extract-text-webpack-plugin
|
103959 |
|
103960 |
/***/ }),
|
103961 |
+
/* 628 */
|
103962 |
/*!**********************************************!*\
|
103963 |
!*** ./src/blocks/call-to-action/style.scss ***!
|
103964 |
\**********************************************/
|
103968 |
// removed by extract-text-webpack-plugin
|
103969 |
|
103970 |
/***/ }),
|
103971 |
+
/* 629 */
|
103972 |
/*!************************************!*\
|
103973 |
!*** ./src/blocks/column/block.js ***!
|
103974 |
\************************************/
|
103977 |
|
103978 |
"use strict";
|
103979 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
103980 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 630);
|
103981 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 633);
|
103982 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 634);
|
103983 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 227);
|
103984 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 635);
|
103985 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
103986 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 636);
|
103987 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
103988 |
/**
|
103989 |
* BLOCK: Column
|
104019 |
});
|
104020 |
|
104021 |
/***/ }),
|
104022 |
+
/* 630 */
|
104023 |
/*!***********************************!*\
|
104024 |
!*** ./src/blocks/column/edit.js ***!
|
104025 |
\***********************************/
|
104031 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
104032 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
104033 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
104034 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 631);
|
104035 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 103);
|
104036 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
104037 |
|
104038 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
105076 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBColumnEdit);
|
105077 |
|
105078 |
/***/ }),
|
105079 |
+
/* 631 */
|
105080 |
/*!**************************************!*\
|
105081 |
!*** ./src/blocks/column/styling.js ***!
|
105082 |
\**************************************/
|
105085 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
105086 |
|
105087 |
"use strict";
|
105088 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 632);
|
105089 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 4);
|
105090 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 3);
|
105091 |
/**
|
105233 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
105234 |
|
105235 |
/***/ }),
|
105236 |
+
/* 632 */
|
105237 |
/*!********************************************!*\
|
105238 |
!*** ./src/blocks/column/inline-styles.js ***!
|
105239 |
\********************************************/
|
105319 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
105320 |
|
105321 |
/***/ }),
|
105322 |
+
/* 633 */
|
105323 |
/*!***********************************!*\
|
105324 |
!*** ./src/blocks/column/save.js ***!
|
105325 |
\***********************************/
|
105369 |
}
|
105370 |
|
105371 |
/***/ }),
|
105372 |
+
/* 634 */
|
105373 |
/*!*****************************************!*\
|
105374 |
!*** ./src/blocks/column/deprecated.js ***!
|
105375 |
\*****************************************/
|
105380 |
"use strict";
|
105381 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
105382 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
105383 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 227);
|
105384 |
/**
|
105385 |
* BLOCK: Column - Deprecated Block
|
105386 |
*/
|
105430 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
105431 |
|
105432 |
/***/ }),
|
105433 |
+
/* 635 */
|
105434 |
/*!**************************************!*\
|
105435 |
!*** ./src/blocks/column/style.scss ***!
|
105436 |
\**************************************/
|
105440 |
// removed by extract-text-webpack-plugin
|
105441 |
|
105442 |
/***/ }),
|
105443 |
+
/* 636 */
|
105444 |
/*!***************************************!*\
|
105445 |
!*** ./src/blocks/column/editor.scss ***!
|
105446 |
\***************************************/
|
105450 |
// removed by extract-text-webpack-plugin
|
105451 |
|
105452 |
/***/ }),
|
105453 |
+
/* 637 */
|
105454 |
/*!*************************************!*\
|
105455 |
!*** ./src/blocks/columns/block.js ***!
|
105456 |
\*************************************/
|
105461 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
105462 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
105463 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
105464 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 228);
|
105465 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 638);
|
105466 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 643);
|
105467 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__shapes__ = __webpack_require__(/*! ./shapes */ 128);
|
105468 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__variations__ = __webpack_require__(/*! ./variations */ 644);
|
105469 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss__ = __webpack_require__(/*! ./style.scss */ 654);
|
105470 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__style_scss__);
|
105471 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 655);
|
105472 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__editor_scss__);
|
105473 |
/**
|
105474 |
* BLOCK: Columns
|
105580 |
});
|
105581 |
|
105582 |
/***/ }),
|
105583 |
+
/* 638 */
|
105584 |
/*!************************************!*\
|
105585 |
!*** ./src/blocks/columns/edit.js ***!
|
105586 |
\************************************/
|
105589 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
105590 |
|
105591 |
"use strict";
|
105592 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__components_option_selector_control__ = __webpack_require__(/*! ../../components/option-selector-control */ 639);
|
105593 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
|
105594 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
|
105595 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 640);
|
105596 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 19);
|
105597 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
105598 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
105599 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
|
105600 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
105601 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_lodash_map__);
|
105602 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__ = __webpack_require__(/*! lodash/dropRight */ 642);
|
105603 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__);
|
105604 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
105605 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__shapes__ = __webpack_require__(/*! ./shapes */ 128);
|
105606 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 65);
|
105607 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 103);
|
105608 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__icons__ = __webpack_require__(/*! ./icons */ 229);
|
105609 |
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
|
105610 |
|
105611 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
107109 |
/* harmony default export */ __webpack_exports__["a"] = (compose(withNotices, applyWithSelect)(UAGBColumns));
|
107110 |
|
107111 |
/***/ }),
|
107112 |
+
/* 639 */
|
107113 |
/*!*********************************************************!*\
|
107114 |
!*** ./src/components/option-selector-control/index.js ***!
|
107115 |
\*********************************************************/
|
107255 |
/* harmony default export */ __webpack_exports__["a"] = (OptionSelectorControl);
|
107256 |
|
107257 |
/***/ }),
|
107258 |
+
/* 640 */
|
107259 |
/*!***************************************!*\
|
107260 |
!*** ./src/blocks/columns/styling.js ***!
|
107261 |
\***************************************/
|
107264 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
107265 |
|
107266 |
"use strict";
|
107267 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 641);
|
107268 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 4);
|
107269 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */ 104);
|
107270 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 3);
|
107271 |
/**
|
107272 |
* Returns Dynamic Generated CSS
|
107466 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
107467 |
|
107468 |
/***/ }),
|
107469 |
+
/* 641 */
|
107470 |
/*!*********************************************!*\
|
107471 |
!*** ./src/blocks/columns/inline-styles.js ***!
|
107472 |
\*********************************************/
|
107536 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
107537 |
|
107538 |
/***/ }),
|
107539 |
+
/* 642 */
|
107540 |
/*!******************************************!*\
|
107541 |
!*** ./node_modules/lodash/dropRight.js ***!
|
107542 |
\******************************************/
|
107543 |
/*! dynamic exports provided */
|
107544 |
/***/ (function(module, exports, __webpack_require__) {
|
107545 |
|
107546 |
+
var baseSlice = __webpack_require__(/*! ./_baseSlice */ 92),
|
107547 |
+
toInteger = __webpack_require__(/*! ./toInteger */ 94);
|
107548 |
|
107549 |
/**
|
107550 |
* Creates a slice of `array` with `n` elements dropped from the end.
|
107585 |
|
107586 |
|
107587 |
/***/ }),
|
107588 |
+
/* 643 */
|
107589 |
/*!******************************************!*\
|
107590 |
!*** ./src/blocks/columns/deprecated.js ***!
|
107591 |
\******************************************/
|
107596 |
"use strict";
|
107597 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
107598 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
107599 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__shapes__ = __webpack_require__(/*! ./shapes */ 128);
|
107600 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 228);
|
107601 |
/**
|
107602 |
* BLOCK: Columns - Deprecated Block
|
107603 |
*/
|
107757 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
107758 |
|
107759 |
/***/ }),
|
107760 |
+
/* 644 */
|
107761 |
/*!******************************************!*\
|
107762 |
!*** ./src/blocks/columns/variations.js ***!
|
107763 |
\******************************************/
|
107766 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
107767 |
|
107768 |
"use strict";
|
107769 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__icons__ = __webpack_require__(/*! ./icons */ 229);
|
107770 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__wordpress_i18n__ = __webpack_require__(/*! @wordpress/i18n */ 645);
|
107771 |
/**
|
107772 |
* Internal dependencies
|
107773 |
*/
|
107866 |
/* harmony default export */ __webpack_exports__["a"] = (variations);
|
107867 |
|
107868 |
/***/ }),
|
107869 |
+
/* 645 */
|
107870 |
/*!************************************************************!*\
|
107871 |
!*** ./node_modules/@wordpress/i18n/build-module/index.js ***!
|
107872 |
\************************************************************/
|
107881 |
/* unused harmony export _n */
|
107882 |
/* unused harmony export _nx */
|
107883 |
/* unused harmony export sprintf */
|
107884 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectSpread__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread */ 646);
|
107885 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_tannin__ = __webpack_require__(/*! tannin */ 648);
|
107886 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize__ = __webpack_require__(/*! memize */ 19);
|
107887 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_memize__);
|
107888 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js__ = __webpack_require__(/*! sprintf-js */ 653);
|
107889 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_sprintf_js__);
|
107890 |
|
107891 |
|
108063 |
//# sourceMappingURL=index.js.map
|
108064 |
|
108065 |
/***/ }),
|
108066 |
+
/* 646 */
|
108067 |
/*!*****************************************************************!*\
|
108068 |
!*** ./node_modules/@babel/runtime/helpers/esm/objectSpread.js ***!
|
108069 |
\*****************************************************************/
|
108073 |
|
108074 |
"use strict";
|
108075 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _objectSpread;
|
108076 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__defineProperty__ = __webpack_require__(/*! ./defineProperty */ 647);
|
108077 |
|
108078 |
function _objectSpread(target) {
|
108079 |
for (var i = 1; i < arguments.length; i++) {
|
108095 |
}
|
108096 |
|
108097 |
/***/ }),
|
108098 |
+
/* 647 */
|
108099 |
/*!*******************************************************************!*\
|
108100 |
!*** ./node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
108101 |
\*******************************************************************/
|
108121 |
}
|
108122 |
|
108123 |
/***/ }),
|
108124 |
+
/* 648 */
|
108125 |
/*!**************************************!*\
|
108126 |
!*** ./node_modules/tannin/index.js ***!
|
108127 |
\**************************************/
|
108131 |
|
108132 |
"use strict";
|
108133 |
/* harmony export (immutable) */ __webpack_exports__["a"] = Tannin;
|
108134 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_plural_forms__ = __webpack_require__(/*! @tannin/plural-forms */ 649);
|
108135 |
|
108136 |
|
108137 |
/**
|
108275 |
|
108276 |
|
108277 |
/***/ }),
|
108278 |
+
/* 649 */
|
108279 |
/*!****************************************************!*\
|
108280 |
!*** ./node_modules/@tannin/plural-forms/index.js ***!
|
108281 |
\****************************************************/
|
108285 |
|
108286 |
"use strict";
|
108287 |
/* harmony export (immutable) */ __webpack_exports__["a"] = pluralForms;
|
108288 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_compile__ = __webpack_require__(/*! @tannin/compile */ 650);
|
108289 |
|
108290 |
|
108291 |
/**
|
108307 |
|
108308 |
|
108309 |
/***/ }),
|
108310 |
+
/* 650 */
|
108311 |
/*!***********************************************!*\
|
108312 |
!*** ./node_modules/@tannin/compile/index.js ***!
|
108313 |
\***********************************************/
|
108317 |
|
108318 |
"use strict";
|
108319 |
/* harmony export (immutable) */ __webpack_exports__["a"] = compile;
|
108320 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_postfix__ = __webpack_require__(/*! @tannin/postfix */ 651);
|
108321 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__tannin_evaluate__ = __webpack_require__(/*! @tannin/evaluate */ 652);
|
108322 |
|
108323 |
|
108324 |
|
108351 |
|
108352 |
|
108353 |
/***/ }),
|
108354 |
+
/* 651 */
|
108355 |
/*!***********************************************!*\
|
108356 |
!*** ./node_modules/@tannin/postfix/index.js ***!
|
108357 |
\***********************************************/
|
108488 |
|
108489 |
|
108490 |
/***/ }),
|
108491 |
+
/* 652 */
|
108492 |
/*!************************************************!*\
|
108493 |
!*** ./node_modules/@tannin/evaluate/index.js ***!
|
108494 |
\************************************************/
|
108611 |
|
108612 |
|
108613 |
/***/ }),
|
108614 |
+
/* 653 */
|
108615 |
/*!*****************************************************************************!*\
|
108616 |
!*** ./node_modules/@wordpress/i18n/node_modules/sprintf-js/src/sprintf.js ***!
|
108617 |
\*****************************************************************************/
|
108854 |
|
108855 |
|
108856 |
/***/ }),
|
108857 |
+
/* 654 */
|
108858 |
/*!***************************************!*\
|
108859 |
!*** ./src/blocks/columns/style.scss ***!
|
108860 |
\***************************************/
|
108864 |
// removed by extract-text-webpack-plugin
|
108865 |
|
108866 |
/***/ }),
|
108867 |
+
/* 655 */
|
108868 |
/*!****************************************!*\
|
108869 |
!*** ./src/blocks/columns/editor.scss ***!
|
108870 |
\****************************************/
|
108874 |
// removed by extract-text-webpack-plugin
|
108875 |
|
108876 |
/***/ }),
|
108877 |
+
/* 656 */
|
108878 |
/*!****************************************!*\
|
108879 |
!*** ./src/blocks/cf7-styler/block.js ***!
|
108880 |
\****************************************/
|
108883 |
|
108884 |
"use strict";
|
108885 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
108886 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 657);
|
108887 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 659);
|
108888 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
108889 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 660);
|
108890 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
108891 |
/**
|
108892 |
* BLOCK: Contact Form 7 Styler
|
108938 |
}
|
108939 |
|
108940 |
/***/ }),
|
108941 |
+
/* 657 */
|
108942 |
/*!***************************************!*\
|
108943 |
!*** ./src/blocks/cf7-styler/edit.js ***!
|
108944 |
\***************************************/
|
108952 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
108953 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
108954 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
108955 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */ 658);
|
108956 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
108957 |
|
108958 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
110394 |
})(UAGBCF7));
|
110395 |
|
110396 |
/***/ }),
|
110397 |
+
/* 658 */
|
110398 |
/*!******************************************!*\
|
110399 |
!*** ./src/blocks/cf7-styler/styling.js ***!
|
110400 |
\******************************************/
|
110807 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
110808 |
|
110809 |
/***/ }),
|
110810 |
+
/* 659 */
|
110811 |
/*!*******************************************!*\
|
110812 |
!*** ./src/blocks/cf7-styler/editor.scss ***!
|
110813 |
\*******************************************/
|
110817 |
// removed by extract-text-webpack-plugin
|
110818 |
|
110819 |
/***/ }),
|
110820 |
+
/* 660 */
|
110821 |
/*!******************************************!*\
|
110822 |
!*** ./src/blocks/cf7-styler/style.scss ***!
|
110823 |
\******************************************/
|
110827 |
// removed by extract-text-webpack-plugin
|
110828 |
|
110829 |
/***/ }),
|
110830 |
+
/* 661 */
|
110831 |
/*!***************************************!*\
|
110832 |
!*** ./src/blocks/gf-styler/block.js ***!
|
110833 |
\***************************************/
|
110836 |
|
110837 |
"use strict";
|
110838 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
110839 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 662);
|
110840 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 664);
|
110841 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
110842 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 665);
|
110843 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
110844 |
/**
|
110845 |
* BLOCK: Gravity Form Styler
|
110891 |
}
|
110892 |
|
110893 |
/***/ }),
|
110894 |
+
/* 662 */
|
110895 |
/*!**************************************!*\
|
110896 |
!*** ./src/blocks/gf-styler/edit.js ***!
|
110897 |
\**************************************/
|
110905 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
110906 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
110907 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
110908 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
110909 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_map__);
|
110910 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 663);
|
110911 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
110912 |
|
110913 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
112388 |
})(UAGBGF));
|
112389 |
|
112390 |
/***/ }),
|
112391 |
+
/* 663 */
|
112392 |
/*!*****************************************!*\
|
112393 |
!*** ./src/blocks/gf-styler/styling.js ***!
|
112394 |
\*****************************************/
|
113031 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
113032 |
|
113033 |
/***/ }),
|
113034 |
+
/* 664 */
|
113035 |
/*!******************************************!*\
|
113036 |
!*** ./src/blocks/gf-styler/editor.scss ***!
|
113037 |
\******************************************/
|
113041 |
// removed by extract-text-webpack-plugin
|
113042 |
|
113043 |
/***/ }),
|
113044 |
+
/* 665 */
|
113045 |
/*!*****************************************!*\
|
113046 |
!*** ./src/blocks/gf-styler/style.scss ***!
|
113047 |
\*****************************************/
|
113051 |
// removed by extract-text-webpack-plugin
|
113052 |
|
113053 |
/***/ }),
|
113054 |
+
/* 666 */
|
113055 |
/*!****************************************!*\
|
113056 |
!*** ./src/blocks/blockquote/block.js ***!
|
113057 |
\****************************************/
|
113060 |
|
113061 |
"use strict";
|
113062 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
113063 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 667);
|
113064 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */ 669);
|
113065 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 671);
|
113066 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 230);
|
113067 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 672);
|
113068 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
113069 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 673);
|
113070 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
113071 |
/**
|
113072 |
* BLOCK: Quote
|
113162 |
});
|
113163 |
|
113164 |
/***/ }),
|
113165 |
+
/* 667 */
|
113166 |
/*!***************************************!*\
|
113167 |
!*** ./src/blocks/blockquote/edit.js ***!
|
113168 |
\***************************************/
|
113173 |
"use strict";
|
113174 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
113175 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
113176 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */ 129);
|
113177 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */ 130);
|
113178 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */ 131);
|
113179 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */ 132);
|
113180 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 668);
|
113181 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
113182 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_map__);
|
113183 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
113184 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
114611 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBBlockQuote);
|
114612 |
|
114613 |
/***/ }),
|
114614 |
+
/* 668 */
|
114615 |
/*!******************************************!*\
|
114616 |
!*** ./src/blocks/blockquote/styling.js ***!
|
114617 |
\******************************************/
|
114934 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
114935 |
|
114936 |
/***/ }),
|
114937 |
+
/* 669 */
|
114938 |
/*!*********************************************!*\
|
114939 |
!*** ./src/blocks/blockquote/deprecated.js ***!
|
114940 |
\*********************************************/
|
114943 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
114944 |
|
114945 |
"use strict";
|
114946 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__attributes__ = __webpack_require__(/*! ./attributes */ 230);
|
114947 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
|
114948 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
|
114949 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
114950 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_TweetButton__ = __webpack_require__(/*! ./components/TweetButton */ 670);
|
114951 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */ 129);
|
114952 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */ 130);
|
114953 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */ 131);
|
114954 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */ 132);
|
114955 |
/**
|
114956 |
* BLOCK: Advanced Heading - Deprecated Block
|
114957 |
*/
|
115089 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
115090 |
|
115091 |
/***/ }),
|
115092 |
+
/* 670 */
|
115093 |
/*!*********************************************************!*\
|
115094 |
!*** ./src/blocks/blockquote/components/TweetButton.js ***!
|
115095 |
\*********************************************************/
|
115163 |
/* harmony default export */ __webpack_exports__["a"] = (TweetButton);
|
115164 |
|
115165 |
/***/ }),
|
115166 |
+
/* 671 */
|
115167 |
/*!***************************************!*\
|
115168 |
!*** ./src/blocks/blockquote/save.js ***!
|
115169 |
\***************************************/
|
115176 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
115177 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
115178 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
115179 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */ 129);
|
115180 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 130);
|
115181 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */ 131);
|
115182 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */ 132);
|
115183 |
/**
|
115184 |
* BLOCK: Blockquote - Save Block
|
115185 |
*/
|
115256 |
}
|
115257 |
|
115258 |
/***/ }),
|
115259 |
+
/* 672 */
|
115260 |
/*!*******************************************!*\
|
115261 |
!*** ./src/blocks/blockquote/editor.scss ***!
|
115262 |
\*******************************************/
|
115266 |
// removed by extract-text-webpack-plugin
|
115267 |
|
115268 |
/***/ }),
|
115269 |
+
/* 673 */
|
115270 |
/*!******************************************!*\
|
115271 |
!*** ./src/blocks/blockquote/style.scss ***!
|
115272 |
\******************************************/
|
115276 |
// removed by extract-text-webpack-plugin
|
115277 |
|
115278 |
/***/ }),
|
115279 |
+
/* 674 */
|
115280 |
/*!**********************************************!*\
|
115281 |
!*** ./src/blocks/marketing-button/block.js ***!
|
115282 |
\**********************************************/
|
115285 |
|
115286 |
"use strict";
|
115287 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
115288 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 231);
|
115289 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 675);
|
115290 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 677);
|
115291 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 678);
|
115292 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 679);
|
115293 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
115294 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 680);
|
115295 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
115296 |
/**
|
115297 |
* BLOCK: Marketing Button
|
115325 |
});
|
115326 |
|
115327 |
/***/ }),
|
115328 |
+
/* 675 */
|
115329 |
/*!*********************************************!*\
|
115330 |
!*** ./src/blocks/marketing-button/edit.js ***!
|
115331 |
\*********************************************/
|
115336 |
"use strict";
|
115337 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
115338 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
115339 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 676);
|
115340 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
115341 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
115342 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
116350 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBMarketingButtonEdit);
|
116351 |
|
116352 |
/***/ }),
|
116353 |
+
/* 676 */
|
116354 |
/*!************************************************!*\
|
116355 |
!*** ./src/blocks/marketing-button/styling.js ***!
|
116356 |
\************************************************/
|
116360 |
|
116361 |
"use strict";
|
116362 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 4);
|
116363 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */ 104);
|
116364 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 3);
|
116365 |
/**
|
116366 |
* Returns Dynamic Generated CSS
|
116568 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
116569 |
|
116570 |
/***/ }),
|
116571 |
+
/* 677 */
|
116572 |
/*!*********************************************!*\
|
116573 |
!*** ./src/blocks/marketing-button/save.js ***!
|
116574 |
\*********************************************/
|
116648 |
}
|
116649 |
|
116650 |
/***/ }),
|
116651 |
+
/* 678 */
|
116652 |
/*!***************************************************!*\
|
116653 |
!*** ./src/blocks/marketing-button/deprecated.js ***!
|
116654 |
\***************************************************/
|
116659 |
"use strict";
|
116660 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
116661 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
116662 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 231);
|
116663 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
116664 |
/**
|
116665 |
* BLOCK: Columns - Deprecated Block
|
116734 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
116735 |
|
116736 |
/***/ }),
|
116737 |
+
/* 679 */
|
116738 |
/*!************************************************!*\
|
116739 |
!*** ./src/blocks/marketing-button/style.scss ***!
|
116740 |
\************************************************/
|
116744 |
// removed by extract-text-webpack-plugin
|
116745 |
|
116746 |
/***/ }),
|
116747 |
+
/* 680 */
|
116748 |
/*!*************************************************!*\
|
116749 |
!*** ./src/blocks/marketing-button/editor.scss ***!
|
116750 |
\*************************************************/
|
116754 |
// removed by extract-text-webpack-plugin
|
116755 |
|
116756 |
/***/ }),
|
116757 |
+
/* 681 */
|
116758 |
/*!***********************************************!*\
|
116759 |
!*** ./src/blocks/table-of-contents/block.js ***!
|
116760 |
\***********************************************/
|
116763 |
|
116764 |
"use strict";
|
116765 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
116766 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 232);
|
116767 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 682);
|
116768 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 684);
|
116769 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 687);
|
116770 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
116771 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 688);
|
116772 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
|
|
116773 |
/**
|
116774 |
* BLOCK: Table of Contents
|
116775 |
*/
|
116781 |
|
116782 |
|
116783 |
|
|
|
116784 |
var __ = wp.i18n.__;
|
116785 |
var registerBlockType = wp.blocks.registerBlockType;
|
116786 |
|
116796 |
},
|
116797 |
attributes: __WEBPACK_IMPORTED_MODULE_1__attributes__["a" /* default */],
|
116798 |
edit: __WEBPACK_IMPORTED_MODULE_2__edit__["a" /* default */],
|
116799 |
+
// Render via PHP
|
116800 |
+
save: function save() {
|
116801 |
+
return null;
|
116802 |
+
},
|
116803 |
+
|
116804 |
example: {},
|
116805 |
+
deprecated: __WEBPACK_IMPORTED_MODULE_3__deprecated__["a" /* default */]
|
116806 |
});
|
116807 |
|
116808 |
/***/ }),
|
116809 |
+
/* 682 */
|
116810 |
/*!**********************************************!*\
|
116811 |
!*** ./src/blocks/table-of-contents/edit.js ***!
|
116812 |
\**********************************************/
|
116817 |
"use strict";
|
116818 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
116819 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
116820 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 683);
|
116821 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
116822 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
116823 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__);
|
116826 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
116827 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
116828 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
116829 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__toc__ = __webpack_require__(/*! ./toc */ 233);
|
116830 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
116831 |
|
116832 |
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
|
116856 |
|
116857 |
|
116858 |
|
116859 |
+
var striptags = __webpack_require__(/*! striptags */ 234);
|
116860 |
var __ = wp.i18n.__;
|
116861 |
var withSelect = wp.data.withSelect;
|
116862 |
var compose = wp.compose.compose;
|
116903 |
}, {
|
116904 |
key: "componentDidUpdate",
|
116905 |
value: function componentDidUpdate(prevProps, prevState) {
|
|
|
|
|
|
|
|
|
|
|
116906 |
|
116907 |
var element = document.getElementById("uagb-style-toc-" + this.props.clientId.substr(0, 8));
|
116908 |
|
116919 |
|
116920 |
this.props.setAttributes({ classMigrate: true });
|
116921 |
|
|
|
|
|
116922 |
// Pushing Scroll To Top div
|
116923 |
var $scrollTop = document.createElement("div");
|
116924 |
$scrollTop.setAttribute("class", "uagb-toc__scroll-top dashicons dashicons-arrow-up-alt2");
|
118214 |
|
118215 |
/* harmony default export */ __webpack_exports__["a"] = (compose(withSelect(function (select, ownProps) {
|
118216 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118217 |
var parseTocSlug = function parseTocSlug(slug) {
|
118218 |
|
118219 |
// If not have the element then return false!
|
118235 |
return decodeURI(encodeURIComponent(parsedSlug));
|
118236 |
};
|
118237 |
|
118238 |
+
var level = 0;
|
|
|
118239 |
|
118240 |
+
var headerArray = $('div.is-root-container').find('h1, h2, h3, h4, h5, h6');
|
118241 |
var headers = [];
|
118242 |
+
if (headerArray != 'undefined') {
|
118243 |
|
118244 |
+
headerArray.each(function (index, value) {
|
118245 |
+
var header = $(this);
|
118246 |
+
var excludeHeading = void 0;
|
118247 |
|
118248 |
+
if (value.className.includes('uagb-toc-hide-heading')) {
|
118249 |
+
excludeHeading = true;
|
118250 |
+
} else if (0 < header.parents('.uagb-toc-hide-heading').length) {
|
118251 |
+
excludeHeading = true;
|
118252 |
+
} else {
|
118253 |
+
excludeHeading = false;
|
118254 |
+
}
|
118255 |
|
118256 |
+
var headerText = parseTocSlug(header.text());
|
118257 |
+
var openLevel = header[0].nodeName.replace(/^H+/, '');
|
118258 |
+
var titleText = header.text();
|
118259 |
|
118260 |
+
level = parseInt(openLevel);
|
|
|
|
|
|
|
|
|
118261 |
|
118262 |
+
if (!excludeHeading) {
|
118263 |
headers.push({
|
118264 |
+
tag: level,
|
118265 |
+
text: titleText,
|
118266 |
+
link: headerText,
|
118267 |
+
content: header.text()
|
118268 |
});
|
118269 |
}
|
118270 |
});
|
118296 |
}))(UAGBTableOfContentsEdit));
|
118297 |
|
118298 |
/***/ }),
|
118299 |
+
/* 683 */
|
118300 |
/*!*************************************************!*\
|
118301 |
!*** ./src/blocks/table-of-contents/styling.js ***!
|
118302 |
\*************************************************/
|
118552 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
118553 |
|
118554 |
/***/ }),
|
118555 |
+
/* 684 */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118556 |
/*!****************************************************!*\
|
118557 |
!*** ./src/blocks/table-of-contents/deprecated.js ***!
|
118558 |
\****************************************************/
|
118563 |
"use strict";
|
118564 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
118565 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
118566 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__deprecated_components__ = __webpack_require__(/*! ./deprecated/components */ 685);
|
118567 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated_table_of_contents__ = __webpack_require__(/*! ./deprecated/table-of-contents */ 686);
|
118568 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__toc__ = __webpack_require__(/*! ./toc */ 233);
|
118569 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 232);
|
118570 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
118571 |
/**
|
118572 |
* BLOCK: Table of Contents - Deprecated Block
|
118573 |
*/
|
118578 |
|
118579 |
|
118580 |
|
118581 |
+
|
118582 |
var RichText = wp.blockEditor.RichText;
|
118583 |
|
118584 |
|
118585 |
var deprecated = [{
|
118586 |
+
attributes: __WEBPACK_IMPORTED_MODULE_4__attributes__["a" /* default */],
|
118587 |
save: function save(props) {
|
118588 |
var className = props.className;
|
118589 |
var _props$attributes = props.attributes,
|
118620 |
);
|
118621 |
}
|
118622 |
}, {
|
118623 |
+
attributes: __WEBPACK_IMPORTED_MODULE_4__attributes__["a" /* default */],
|
118624 |
save: function save(props) {
|
118625 |
var className = props.className;
|
118626 |
var _props$attributes2 = props.attributes,
|
118645 |
icon_html = wp.element.createElement(
|
118646 |
'span',
|
118647 |
{ className: 'uag-toc__collapsible-wrap' },
|
118648 |
+
Object(__WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_renderIcon__["a" /* default */])(icon)
|
118649 |
);
|
118650 |
}
|
118651 |
|
118681 |
);
|
118682 |
}
|
118683 |
}, {
|
118684 |
+
attributes: __WEBPACK_IMPORTED_MODULE_4__attributes__["a" /* default */],
|
118685 |
save: function save(props) {
|
118686 |
var className = props.className;
|
118687 |
var _props$attributes3 = props.attributes,
|
118705 |
icon_html = wp.element.createElement(
|
118706 |
'span',
|
118707 |
{ className: 'uag-toc__collapsible-wrap' },
|
118708 |
+
Object(__WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_renderIcon__["a" /* default */])(icon)
|
118709 |
);
|
118710 |
}
|
118711 |
|
118736 |
)
|
118737 |
);
|
118738 |
}
|
118739 |
+
}, {
|
118740 |
+
attributes: __WEBPACK_IMPORTED_MODULE_4__attributes__["a" /* default */],
|
118741 |
+
save: function save(props) {
|
118742 |
+
var className = props.className;
|
118743 |
+
var _props$attributes4 = props.attributes,
|
118744 |
+
align = _props$attributes4.align,
|
118745 |
+
block_id = _props$attributes4.block_id,
|
118746 |
+
tColumns = _props$attributes4.tColumns,
|
118747 |
+
heading = _props$attributes4.heading,
|
118748 |
+
headerLinks = _props$attributes4.headerLinks,
|
118749 |
+
mappingHeaders = _props$attributes4.mappingHeaders,
|
118750 |
+
smoothScroll = _props$attributes4.smoothScroll,
|
118751 |
+
makeCollapsible = _props$attributes4.makeCollapsible,
|
118752 |
+
icon = _props$attributes4.icon,
|
118753 |
+
initialCollapse = _props$attributes4.initialCollapse,
|
118754 |
+
smoothScrollOffset = _props$attributes4.smoothScrollOffset,
|
118755 |
+
smoothScrollDelay = _props$attributes4.smoothScrollDelay;
|
118756 |
+
|
118757 |
+
|
118758 |
+
var icon_html = '';
|
118759 |
+
|
118760 |
+
if (makeCollapsible && icon) {
|
118761 |
+
icon_html = wp.element.createElement(
|
118762 |
+
'span',
|
118763 |
+
{ className: 'uag-toc__collapsible-wrap' },
|
118764 |
+
Object(__WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_renderIcon__["a" /* default */])(icon)
|
118765 |
+
);
|
118766 |
+
}
|
118767 |
+
|
118768 |
+
return wp.element.createElement(
|
118769 |
+
'div',
|
118770 |
+
{ className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()(className, 'uagb-toc__align-' + align, 'uagb-toc__columns-' + tColumns, initialCollapse ? 'uagb-toc__collapse' : '', 'uagb-block-' + block_id),
|
118771 |
+
'data-scroll': smoothScroll,
|
118772 |
+
'data-offset': smoothScrollOffset,
|
118773 |
+
'data-delay': smoothScrollDelay
|
118774 |
+
},
|
118775 |
+
wp.element.createElement(
|
118776 |
+
'div',
|
118777 |
+
{ className: 'uagb-toc__wrap' },
|
118778 |
+
wp.element.createElement(
|
118779 |
+
'div',
|
118780 |
+
{ className: 'uagb-toc__title-wrap' },
|
118781 |
+
wp.element.createElement(RichText.Content, {
|
118782 |
+
value: heading,
|
118783 |
+
tagName: 'div',
|
118784 |
+
className: 'uagb-toc__title'
|
118785 |
+
}),
|
118786 |
+
icon_html
|
118787 |
+
),
|
118788 |
+
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_3__toc__["a" /* default */], {
|
118789 |
+
mappingHeaders: mappingHeaders,
|
118790 |
+
headers: headerLinks && JSON.parse(headerLinks)
|
118791 |
+
})
|
118792 |
+
)
|
118793 |
+
);
|
118794 |
+
}
|
118795 |
}];
|
118796 |
|
118797 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
118798 |
|
118799 |
/***/ }),
|
118800 |
+
/* 685 */
|
118801 |
/*!***************************************************************!*\
|
118802 |
!*** ./src/blocks/table-of-contents/deprecated/components.js ***!
|
118803 |
\***************************************************************/
|
118825 |
|
118826 |
var __ = wp.i18n.__;
|
118827 |
|
118828 |
+
var striptags = __webpack_require__(/*! striptags */ 234);
|
118829 |
|
118830 |
var TableOfContents = function (_Component) {
|
118831 |
_inherits(TableOfContents, _Component);
|
119036 |
/* harmony default export */ __webpack_exports__["a"] = (TableOfContents);
|
119037 |
|
119038 |
/***/ }),
|
119039 |
+
/* 686 */
|
119040 |
/*!**********************************************************************!*\
|
119041 |
!*** ./src/blocks/table-of-contents/deprecated/table-of-contents.js ***!
|
119042 |
\**********************************************************************/
|
119169 |
/* harmony default export */ __webpack_exports__["a"] = (TOC);
|
119170 |
|
119171 |
/***/ }),
|
119172 |
+
/* 687 */
|
119173 |
/*!*************************************************!*\
|
119174 |
!*** ./src/blocks/table-of-contents/style.scss ***!
|
119175 |
\*************************************************/
|
119179 |
// removed by extract-text-webpack-plugin
|
119180 |
|
119181 |
/***/ }),
|
119182 |
+
/* 688 */
|
119183 |
/*!**************************************************!*\
|
119184 |
!*** ./src/blocks/table-of-contents/editor.scss ***!
|
119185 |
\**************************************************/
|
119189 |
// removed by extract-text-webpack-plugin
|
119190 |
|
119191 |
/***/ }),
|
119192 |
+
/* 689 */
|
119193 |
/*!************************************!*\
|
119194 |
!*** ./src/blocks/how-to/block.js ***!
|
119195 |
\************************************/
|
119198 |
|
119199 |
"use strict";
|
119200 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
119201 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 235);
|
119202 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 690);
|
119203 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 693);
|
119204 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 236);
|
119205 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
119206 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 694);
|
119207 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
119208 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 695);
|
119209 |
/**
|
119210 |
* BLOCK: How-To Schema
|
119211 |
*/
|
119271 |
});
|
119272 |
|
119273 |
/***/ }),
|
119274 |
+
/* 690 */
|
119275 |
/*!***********************************!*\
|
119276 |
!*** ./src/blocks/how-to/edit.js ***!
|
119277 |
\***********************************/
|
119282 |
"use strict";
|
119283 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
119284 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
119285 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__schema_notices__ = __webpack_require__(/*! ./schema-notices */ 691);
|
119286 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
119287 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_times__);
|
119288 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 692);
|
119289 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
119290 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
119291 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 236);
|
119292 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
119293 |
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
119294 |
|
120514 |
}))(UAGBHowTo));
|
120515 |
|
120516 |
/***/ }),
|
120517 |
+
/* 691 */
|
120518 |
/*!*********************************************!*\
|
120519 |
!*** ./src/blocks/how-to/schema-notices.js ***!
|
120520 |
\*********************************************/
|
120680 |
/* harmony default export */ __webpack_exports__["a"] = (SchemaNotices);
|
120681 |
|
120682 |
/***/ }),
|
120683 |
+
/* 692 */
|
120684 |
/*!**************************************!*\
|
120685 |
!*** ./src/blocks/how-to/styling.js ***!
|
120686 |
\**************************************/
|
121015 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
121016 |
|
121017 |
/***/ }),
|
121018 |
+
/* 693 */
|
121019 |
/*!***********************************!*\
|
121020 |
!*** ./src/blocks/how-to/save.js ***!
|
121021 |
\***********************************/
|
121321 |
}
|
121322 |
|
121323 |
/***/ }),
|
121324 |
+
/* 694 */
|
121325 |
/*!***************************************!*\
|
121326 |
!*** ./src/blocks/how-to/editor.scss ***!
|
121327 |
\***************************************/
|
121331 |
// removed by extract-text-webpack-plugin
|
121332 |
|
121333 |
/***/ }),
|
121334 |
+
/* 695 */
|
121335 |
/*!*****************************************!*\
|
121336 |
!*** ./src/blocks/how-to/deprecated.js ***!
|
121337 |
\*****************************************/
|
121342 |
"use strict";
|
121343 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
121344 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
121345 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 235);
|
121346 |
/**
|
121347 |
* BLOCK: How To Schema - Deprecated Block
|
121348 |
*/
|
121561 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
121562 |
|
121563 |
/***/ }),
|
121564 |
+
/* 696 */
|
121565 |
/*!*********************************!*\
|
121566 |
!*** ./src/blocks/faq/block.js ***!
|
121567 |
\*********************************/
|
121570 |
|
121571 |
"use strict";
|
121572 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
121573 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 237);
|
121574 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 697);
|
121575 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 699);
|
121576 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 700);
|
121577 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
121578 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 701);
|
121579 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
121580 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 702);
|
121581 |
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
|
121582 |
|
121583 |
/**
|
121664 |
addFilter('editor.BlockEdit', 'uagb/faq', withFaq);
|
121665 |
|
121666 |
/***/ }),
|
121667 |
+
/* 697 */
|
121668 |
/*!********************************!*\
|
121669 |
!*** ./src/blocks/faq/edit.js ***!
|
121670 |
\********************************/
|
121682 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
|
121683 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 11);
|
121684 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
|
121685 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 698);
|
121686 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize__ = __webpack_require__(/*! memize */ 19);
|
121687 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_memize__);
|
121688 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
123143 |
}))(UAGBFaqEdit));
|
123144 |
|
123145 |
/***/ }),
|
123146 |
+
/* 698 */
|
123147 |
/*!***********************************!*\
|
123148 |
!*** ./src/blocks/faq/styling.js ***!
|
123149 |
\***********************************/
|
123453 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
123454 |
|
123455 |
/***/ }),
|
123456 |
+
/* 699 */
|
123457 |
/*!********************************!*\
|
123458 |
!*** ./src/blocks/faq/save.js ***!
|
123459 |
\********************************/
|
123515 |
}
|
123516 |
|
123517 |
/***/ }),
|
123518 |
+
/* 700 */
|
123519 |
/*!***********************************!*\
|
123520 |
!*** ./src/blocks/faq/style.scss ***!
|
123521 |
\***********************************/
|
123525 |
// removed by extract-text-webpack-plugin
|
123526 |
|
123527 |
/***/ }),
|
123528 |
+
/* 701 */
|
123529 |
/*!************************************!*\
|
123530 |
!*** ./src/blocks/faq/editor.scss ***!
|
123531 |
\************************************/
|
123535 |
// removed by extract-text-webpack-plugin
|
123536 |
|
123537 |
/***/ }),
|
123538 |
+
/* 702 */
|
123539 |
/*!**************************************!*\
|
123540 |
!*** ./src/blocks/faq/deprecated.js ***!
|
123541 |
\**************************************/
|
123546 |
"use strict";
|
123547 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
123548 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
123549 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 237);
|
123550 |
/**
|
123551 |
* BLOCK: How To Schema - Deprecated Block
|
123552 |
*/
|
123601 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
123602 |
|
123603 |
/***/ }),
|
123604 |
+
/* 703 */
|
123605 |
/*!***************************************!*\
|
123606 |
!*** ./src/blocks/faq-child/block.js ***!
|
123607 |
\***************************************/
|
123610 |
|
123611 |
"use strict";
|
123612 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
123613 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 238);
|
123614 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 704);
|
123615 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 705);
|
123616 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 706);
|
123617 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
123618 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 707);
|
123619 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
123620 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 708);
|
123621 |
/**
|
123622 |
* BLOCK: FAQ - Schema - Child
|
123623 |
*/
|
123650 |
});
|
123651 |
|
123652 |
/***/ }),
|
123653 |
+
/* 704 */
|
123654 |
/*!**************************************!*\
|
123655 |
!*** ./src/blocks/faq-child/edit.js ***!
|
123656 |
\**************************************/
|
123831 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBFaqChildEdit);
|
123832 |
|
123833 |
/***/ }),
|
123834 |
+
/* 705 */
|
123835 |
/*!**************************************!*\
|
123836 |
!*** ./src/blocks/faq-child/save.js ***!
|
123837 |
\**************************************/
|
123926 |
}
|
123927 |
|
123928 |
/***/ }),
|
123929 |
+
/* 706 */
|
123930 |
/*!*****************************************!*\
|
123931 |
!*** ./src/blocks/faq-child/style.scss ***!
|
123932 |
\*****************************************/
|
123936 |
// removed by extract-text-webpack-plugin
|
123937 |
|
123938 |
/***/ }),
|
123939 |
+
/* 707 */
|
123940 |
/*!******************************************!*\
|
123941 |
!*** ./src/blocks/faq-child/editor.scss ***!
|
123942 |
\******************************************/
|
123946 |
// removed by extract-text-webpack-plugin
|
123947 |
|
123948 |
/***/ }),
|
123949 |
+
/* 708 */
|
123950 |
/*!********************************************!*\
|
123951 |
!*** ./src/blocks/faq-child/deprecated.js ***!
|
123952 |
\********************************************/
|
123958 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
123959 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
123960 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
123961 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 238);
|
123962 |
/**
|
123963 |
* BLOCK: FAQ-Child - Deprecated Block
|
123964 |
*/
|
124046 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
124047 |
|
124048 |
/***/ }),
|
124049 |
+
/* 709 */
|
124050 |
/*!*******************************************!*\
|
124051 |
!*** ./src/blocks/inline-notice/block.js ***!
|
124052 |
\*******************************************/
|
124055 |
|
124056 |
"use strict";
|
124057 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
124058 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 710);
|
124059 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 711);
|
124060 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 713);
|
124061 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 714);
|
124062 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
124063 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 715);
|
124064 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
124065 |
/**
|
124066 |
* BLOCK: Inline Notice Block.
|
124092 |
});
|
124093 |
|
124094 |
/***/ }),
|
124095 |
+
/* 710 */
|
124096 |
/*!************************************************!*\
|
124097 |
!*** ./src/blocks/inline-notice/attributes.js ***!
|
124098 |
\************************************************/
|
124275 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
124276 |
|
124277 |
/***/ }),
|
124278 |
+
/* 711 */
|
124279 |
/*!******************************************!*\
|
124280 |
!*** ./src/blocks/inline-notice/edit.js ***!
|
124281 |
\******************************************/
|
124286 |
"use strict";
|
124287 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
124288 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
124289 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 712);
|
124290 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
124291 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 10);
|
124292 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
|
124815 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBInlineNoticeEdit);
|
124816 |
|
124817 |
/***/ }),
|
124818 |
+
/* 712 */
|
124819 |
/*!*********************************************!*\
|
124820 |
!*** ./src/blocks/inline-notice/styling.js ***!
|
124821 |
\*********************************************/
|
124982 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
124983 |
|
124984 |
/***/ }),
|
124985 |
+
/* 713 */
|
124986 |
/*!******************************************!*\
|
124987 |
!*** ./src/blocks/inline-notice/save.js ***!
|
124988 |
\******************************************/
|
125054 |
}
|
125055 |
|
125056 |
/***/ }),
|
125057 |
+
/* 714 */
|
125058 |
/*!*********************************************!*\
|
125059 |
!*** ./src/blocks/inline-notice/style.scss ***!
|
125060 |
\*********************************************/
|
125064 |
// removed by extract-text-webpack-plugin
|
125065 |
|
125066 |
/***/ }),
|
125067 |
+
/* 715 */
|
125068 |
/*!**********************************************!*\
|
125069 |
!*** ./src/blocks/inline-notice/editor.scss ***!
|
125070 |
\**********************************************/
|
125074 |
// removed by extract-text-webpack-plugin
|
125075 |
|
125076 |
/***/ }),
|
125077 |
+
/* 716 */
|
125078 |
/*!***************************************!*\
|
125079 |
!*** ./src/blocks/wp-search/block.js ***!
|
125080 |
\***************************************/
|
125082 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
125083 |
|
125084 |
"use strict";
|
125085 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss__ = __webpack_require__(/*! ./style.scss */ 717);
|
125086 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__style_scss__);
|
125087 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 718);
|
125088 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__editor_scss__);
|
125089 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 719);
|
125090 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 720);
|
125091 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 722);
|
125092 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
125093 |
/**
|
125094 |
* BLOCK: WP-Search
|
125121 |
});
|
125122 |
|
125123 |
/***/ }),
|
125124 |
+
/* 717 */
|
125125 |
/*!*****************************************!*\
|
125126 |
!*** ./src/blocks/wp-search/style.scss ***!
|
125127 |
\*****************************************/
|
125131 |
// removed by extract-text-webpack-plugin
|
125132 |
|
125133 |
/***/ }),
|
125134 |
+
/* 718 */
|
125135 |
/*!******************************************!*\
|
125136 |
!*** ./src/blocks/wp-search/editor.scss ***!
|
125137 |
\******************************************/
|
125141 |
// removed by extract-text-webpack-plugin
|
125142 |
|
125143 |
/***/ }),
|
125144 |
+
/* 719 */
|
125145 |
/*!**************************************!*\
|
125146 |
!*** ./src/blocks/wp-search/save.js ***!
|
125147 |
\**************************************/
|
125239 |
}
|
125240 |
|
125241 |
/***/ }),
|
125242 |
+
/* 720 */
|
125243 |
/*!**************************************!*\
|
125244 |
!*** ./src/blocks/wp-search/edit.js ***!
|
125245 |
\**************************************/
|
125248 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
125249 |
|
125250 |
"use strict";
|
125251 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__styling__ = __webpack_require__(/*! ./styling */ 721);
|
125252 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 5);
|
125253 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
125254 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_classnames__ = __webpack_require__(/*! classnames */ 0);
|
125255 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_classnames__);
|
125256 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 65);
|
125257 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
125258 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
125259 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
126132 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBWpSearchEdit);
|
126133 |
|
126134 |
/***/ }),
|
126135 |
+
/* 721 */
|
126136 |
/*!*****************************************!*\
|
126137 |
!*** ./src/blocks/wp-search/styling.js ***!
|
126138 |
\*****************************************/
|
126383 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
126384 |
|
126385 |
/***/ }),
|
126386 |
+
/* 722 */
|
126387 |
/*!********************************************!*\
|
126388 |
!*** ./src/blocks/wp-search/attributes.js ***!
|
126389 |
\********************************************/
|
126615 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
126616 |
|
126617 |
/***/ }),
|
126618 |
+
/* 723 */
|
126619 |
/*!************************************!*\
|
126620 |
!*** ./src/blocks/review/block.js ***!
|
126621 |
\************************************/
|
126624 |
|
126625 |
"use strict";
|
126626 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
126627 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 724);
|
126628 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 725);
|
126629 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 728);
|
126630 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 729);
|
126631 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
126632 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 730);
|
126633 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
126634 |
/**
|
126635 |
* BLOCK: Rating Block.
|
126661 |
});
|
126662 |
|
126663 |
/***/ }),
|
126664 |
+
/* 724 */
|
126665 |
/*!*****************************************!*\
|
126666 |
!*** ./src/blocks/review/attributes.js ***!
|
126667 |
\*****************************************/
|
127139 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
127140 |
|
127141 |
/***/ }),
|
127142 |
+
/* 725 */
|
127143 |
/*!***********************************!*\
|
127144 |
!*** ./src/blocks/review/edit.js ***!
|
127145 |
\***********************************/
|
127151 |
/* unused harmony export removeFromArray */
|
127152 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
127153 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
127154 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 726);
|
127155 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
127156 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__schema_notices__ = __webpack_require__(/*! ./schema-notices */ 727);
|
127157 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components__ = __webpack_require__(/*! ./components */ 239);
|
127158 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
127159 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
127160 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
128366 |
}))(UAGBRatingEdit));
|
128367 |
|
128368 |
/***/ }),
|
128369 |
+
/* 726 */
|
128370 |
/*!**************************************!*\
|
128371 |
!*** ./src/blocks/review/styling.js ***!
|
128372 |
\**************************************/
|
128545 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
128546 |
|
128547 |
/***/ }),
|
128548 |
+
/* 727 */
|
128549 |
/*!*********************************************!*\
|
128550 |
!*** ./src/blocks/review/schema-notices.js ***!
|
128551 |
\*********************************************/
|
128794 |
/* harmony default export */ __webpack_exports__["a"] = (SchemaNotices);
|
128795 |
|
128796 |
/***/ }),
|
128797 |
+
/* 728 */
|
128798 |
/*!***********************************!*\
|
128799 |
!*** ./src/blocks/review/save.js ***!
|
128800 |
\***********************************/
|
128806 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
128807 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
128808 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
128809 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components__ = __webpack_require__(/*! ./components */ 239);
|
128810 |
/**
|
128811 |
* BLOCK: Review block - Save Block
|
128812 |
*/
|
129003 |
}
|
129004 |
|
129005 |
/***/ }),
|
129006 |
+
/* 729 */
|
129007 |
/*!**************************************!*\
|
129008 |
!*** ./src/blocks/review/style.scss ***!
|
129009 |
\**************************************/
|
129013 |
// removed by extract-text-webpack-plugin
|
129014 |
|
129015 |
/***/ }),
|
129016 |
+
/* 730 */
|
129017 |
/*!***************************************!*\
|
129018 |
!*** ./src/blocks/review/editor.scss ***!
|
129019 |
\***************************************/
|
129023 |
// removed by extract-text-webpack-plugin
|
129024 |
|
129025 |
/***/ }),
|
129026 |
+
/* 731 */
|
129027 |
/*!*******************************************!*\
|
129028 |
!*** ./src/blocks/taxonomy-list/block.js ***!
|
129029 |
\*******************************************/
|
129032 |
|
129033 |
"use strict";
|
129034 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
129035 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! ./style.scss */ 732);
|
129036 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
129037 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 733);
|
129038 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
129039 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 734);
|
129040 |
/**
|
129041 |
* BLOCK: UAGB - Taxonomy List
|
129042 |
*/
|
129073 |
});
|
129074 |
|
129075 |
/***/ }),
|
129076 |
+
/* 732 */
|
129077 |
/*!*********************************************!*\
|
129078 |
!*** ./src/blocks/taxonomy-list/style.scss ***!
|
129079 |
\*********************************************/
|
129083 |
// removed by extract-text-webpack-plugin
|
129084 |
|
129085 |
/***/ }),
|
129086 |
+
/* 733 */
|
129087 |
/*!**********************************************!*\
|
129088 |
!*** ./src/blocks/taxonomy-list/editor.scss ***!
|
129089 |
\**********************************************/
|
129093 |
// removed by extract-text-webpack-plugin
|
129094 |
|
129095 |
/***/ }),
|
129096 |
+
/* 734 */
|
129097 |
/*!******************************************!*\
|
129098 |
!*** ./src/blocks/taxonomy-list/edit.js ***!
|
129099 |
\******************************************/
|
129104 |
"use strict";
|
129105 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
129106 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
129107 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 735);
|
129108 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 65);
|
129109 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
129110 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
129111 |
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
130223 |
})(UAGBTaxonomyList));
|
130224 |
|
130225 |
/***/ }),
|
130226 |
+
/* 735 */
|
130227 |
/*!*********************************************!*\
|
130228 |
!*** ./src/blocks/taxonomy-list/styling.js ***!
|
130229 |
\*********************************************/
|
130451 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
130452 |
|
130453 |
/***/ }),
|
130454 |
+
/* 736 */
|
130455 |
+
/*!***********************************!*\
|
130456 |
+
!*** ./src/blocks/forms/block.js ***!
|
130457 |
+
\***********************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130458 |
/*! no exports provided */
|
130459 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
130460 |
|
130461 |
"use strict";
|
130462 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
130463 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 737);
|
130464 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 738);
|
130465 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 740);
|
130466 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 741);
|
130467 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
130468 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 742);
|
130469 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
130470 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__variations__ = __webpack_require__(/*! ./variations */ 743);
|
130471 |
/**
|
130472 |
+
* BLOCK: Forms - Block
|
130473 |
*/
|
130474 |
|
130475 |
|
130479 |
|
130480 |
|
130481 |
|
130482 |
+
|
130483 |
var __ = wp.i18n.__;
|
130484 |
var registerBlockType = wp.blocks.registerBlockType;
|
130485 |
|
130486 |
|
130487 |
+
registerBlockType("uagb/forms", {
|
130488 |
+
title: uagb_blocks_info.blocks["uagb/forms"]["title"],
|
130489 |
+
description: uagb_blocks_info.blocks["uagb/forms"]["description"],
|
130490 |
+
icon: __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__["a" /* default */].forms,
|
130491 |
category: uagb_blocks_info.category,
|
130492 |
+
keywords: [__("forms", "ultimate-addons-for-gutenberg"), __("uag", "ultimate-addons-for-gutenberg")],
|
130493 |
+
example: {},
|
130494 |
+
attributes: __WEBPACK_IMPORTED_MODULE_1__attributes__["a" /* default */],
|
130495 |
+
variations: __WEBPACK_IMPORTED_MODULE_6__variations__["a" /* default */],
|
130496 |
+
edit: __WEBPACK_IMPORTED_MODULE_2__edit__["a" /* default */],
|
130497 |
supports: {
|
130498 |
anchor: true
|
130499 |
},
|
130500 |
+
save: __WEBPACK_IMPORTED_MODULE_3__save__["a" /* default */]
|
|
|
|
|
130501 |
});
|
130502 |
|
130503 |
/***/ }),
|
130504 |
+
/* 737 */
|
130505 |
+
/*!****************************************!*\
|
130506 |
+
!*** ./src/blocks/forms/attributes.js ***!
|
130507 |
+
\****************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130508 |
/*! exports provided: default */
|
130509 |
/*! exports used: default */
|
130510 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
130511 |
|
130512 |
"use strict";
|
|
|
|
|
|
|
130513 |
var __ = wp.i18n.__;
|
130514 |
|
130515 |
+
|
130516 |
var attributes = {
|
130517 |
block_id: {
|
130518 |
type: "string"
|
130519 |
},
|
130520 |
+
submitButtonText: {
|
130521 |
+
type: "string",
|
130522 |
+
default: __("Submit", "ultimate-addons-for-gutenberg")
|
130523 |
},
|
130524 |
+
formLabel: {
|
130525 |
+
type: "string",
|
130526 |
+
default: __("UAG Form", "ultimate-addons-for-gutenberg")
|
130527 |
},
|
130528 |
+
buttonAlign: {
|
130529 |
+
type: "string",
|
130530 |
+
default: 'left'
|
130531 |
},
|
130532 |
+
confirmationType: {
|
130533 |
+
type: "string",
|
130534 |
+
default: 'message'
|
130535 |
},
|
130536 |
+
confirmationMessage: {
|
130537 |
+
type: "string",
|
130538 |
+
default: __('The form has been submitted successfully!', 'ultimate-addons-for-gutenberg')
|
130539 |
},
|
130540 |
+
failedMessage: {
|
130541 |
+
type: "string",
|
130542 |
+
default: __('There has been some error while submitting the form. Please verify all form fields again.', 'ultimate-addons-for-gutenberg')
|
130543 |
},
|
130544 |
+
confirmationUrl: {
|
130545 |
+
type: "string"
|
130546 |
},
|
130547 |
+
sendAfterSubmitEmail: {
|
130548 |
+
type: "boolean",
|
130549 |
+
default: true
|
130550 |
},
|
130551 |
+
afterSubmitToEmail: {
|
130552 |
+
type: "string",
|
130553 |
+
default: ''
|
130554 |
},
|
130555 |
+
afterSubmitCcEmail: {
|
130556 |
+
type: "string",
|
130557 |
+
default: ''
|
130558 |
},
|
130559 |
+
afterSubmitBccEmail: {
|
130560 |
+
type: "string",
|
130561 |
+
default: ''
|
130562 |
},
|
130563 |
+
afterSubmitEmailSubject: {
|
130564 |
+
type: "string",
|
130565 |
+
default: __("Form Submission", "ultimate-addons-for-gutenberg")
|
130566 |
},
|
130567 |
+
submitColor: {
|
130568 |
+
type: "string",
|
130569 |
+
default: "#ffffff"
|
130570 |
},
|
130571 |
+
submitColorHover: {
|
130572 |
+
type: "string",
|
130573 |
+
default: "#000000"
|
130574 |
},
|
130575 |
+
submitBgColor: {
|
130576 |
+
type: "string",
|
130577 |
+
default: "#000000"
|
130578 |
},
|
130579 |
+
submitBgColorHover: {
|
130580 |
+
type: "string",
|
130581 |
+
default: "#ffffff"
|
130582 |
},
|
130583 |
+
buttonSize: {
|
130584 |
+
type: "string",
|
130585 |
+
default: 'medium'
|
130586 |
},
|
130587 |
+
// Border
|
130588 |
+
submitborderStyle: {
|
130589 |
+
type: "string"
|
130590 |
},
|
130591 |
+
submitborderWidth: {
|
130592 |
type: "number"
|
130593 |
},
|
130594 |
+
submitborderRadius: {
|
130595 |
+
type: "number",
|
130596 |
+
default: 3
|
130597 |
},
|
130598 |
+
submitborderColor: {
|
130599 |
+
type: "string"
|
130600 |
},
|
130601 |
+
submitborderHoverColor: {
|
130602 |
+
type: "string"
|
130603 |
},
|
130604 |
+
hPaddingSubmit: {
|
130605 |
type: "number"
|
130606 |
},
|
130607 |
+
vPaddingSubmit: {
|
130608 |
type: "number"
|
130609 |
},
|
130610 |
+
// Submit text Typography
|
130611 |
+
|
130612 |
+
submitTextloadGoogleFonts: {
|
130613 |
+
type: "boolean",
|
130614 |
+
default: false
|
130615 |
+
},
|
130616 |
+
submitTextFontFamily: {
|
130617 |
+
type: "string",
|
130618 |
+
default: "Default"
|
130619 |
+
},
|
130620 |
+
submitTextFontWeight: {
|
130621 |
+
type: "string"
|
130622 |
+
},
|
130623 |
+
submitTextFontSubset: {
|
130624 |
+
type: "string"
|
130625 |
+
},
|
130626 |
+
// submitText Font Size
|
130627 |
+
submitTextFontSize: {
|
130628 |
+
type: "number",
|
130629 |
+
default: 15
|
130630 |
+
},
|
130631 |
+
submitTextFontSizeType: {
|
130632 |
+
type: "string",
|
130633 |
+
default: "px"
|
130634 |
+
},
|
130635 |
+
submitTextFontSizeTablet: {
|
130636 |
+
type: "number",
|
130637 |
+
default: 15
|
130638 |
+
},
|
130639 |
+
submitTextFontSizeMobile: {
|
130640 |
+
type: "number",
|
130641 |
+
default: 15
|
130642 |
+
},
|
130643 |
+
// submitText Line Height
|
130644 |
+
submitTextLineHeightType: {
|
130645 |
+
type: "string",
|
130646 |
+
default: "em"
|
130647 |
+
},
|
130648 |
+
submitTextLineHeight: {
|
130649 |
type: "number"
|
130650 |
},
|
130651 |
+
submitTextLineHeightTablet: {
|
130652 |
type: "number"
|
130653 |
},
|
130654 |
+
submitTextLineHeightMobile: {
|
130655 |
type: "number"
|
130656 |
},
|
130657 |
+
|
130658 |
+
// Label Font Family
|
130659 |
+
|
130660 |
+
labelloadGoogleFonts: {
|
130661 |
+
type: "boolean",
|
130662 |
+
default: false
|
130663 |
+
},
|
130664 |
+
labelFontFamily: {
|
130665 |
+
type: "string",
|
130666 |
+
default: "Default"
|
130667 |
+
},
|
130668 |
+
labelFontWeight: {
|
130669 |
+
type: "string"
|
130670 |
+
},
|
130671 |
+
labelFontSubset: {
|
130672 |
+
type: "string"
|
130673 |
+
},
|
130674 |
+
// label Font Size
|
130675 |
+
labelFontSize: {
|
130676 |
+
type: "number",
|
130677 |
+
default: 15
|
130678 |
+
},
|
130679 |
+
labelFontSizeType: {
|
130680 |
type: "string",
|
130681 |
default: "px"
|
130682 |
},
|
130683 |
+
labelFontSizeTablet: {
|
130684 |
+
type: "number",
|
130685 |
+
default: 15
|
130686 |
+
},
|
130687 |
+
labelFontSizeMobile: {
|
130688 |
+
type: "number",
|
130689 |
+
default: 15
|
130690 |
+
},
|
130691 |
+
// label Line Height
|
130692 |
+
labelLineHeightType: {
|
130693 |
+
type: "string",
|
130694 |
+
default: "em"
|
130695 |
+
},
|
130696 |
+
labelLineHeight: {
|
130697 |
type: "number"
|
130698 |
},
|
130699 |
+
labelLineHeightTablet: {
|
130700 |
type: "number"
|
130701 |
},
|
130702 |
+
labelLineHeightMobile: {
|
130703 |
+
type: "number"
|
130704 |
+
},
|
130705 |
+
|
130706 |
+
// Input Font Family
|
130707 |
+
|
130708 |
+
inputloadGoogleFonts: {
|
130709 |
+
type: "boolean",
|
130710 |
+
default: false
|
130711 |
+
},
|
130712 |
+
inputFontFamily: {
|
130713 |
type: "string",
|
130714 |
default: "Default"
|
130715 |
},
|
130716 |
+
inputFontWeight: {
|
130717 |
type: "string"
|
130718 |
},
|
130719 |
+
inputFontSubset: {
|
130720 |
type: "string"
|
130721 |
},
|
130722 |
+
// input Font Size
|
130723 |
+
inputFontSize: {
|
130724 |
+
type: "number"
|
130725 |
+
},
|
130726 |
+
inputFontSizeType: {
|
130727 |
+
type: "string",
|
130728 |
+
default: "px"
|
130729 |
+
},
|
130730 |
+
inputFontSizeTablet: {
|
130731 |
+
type: "number",
|
130732 |
+
default: 15
|
130733 |
+
},
|
130734 |
+
inputFontSizeMobile: {
|
130735 |
+
type: "number",
|
130736 |
+
default: 15
|
130737 |
+
},
|
130738 |
+
// input Line Height
|
130739 |
+
inputLineHeightType: {
|
130740 |
type: "string",
|
130741 |
default: "em"
|
130742 |
},
|
130743 |
+
inputLineHeight: {
|
130744 |
type: "number"
|
130745 |
},
|
130746 |
+
toggleSize: {
|
130747 |
+
type: "number",
|
130748 |
+
default: 15
|
130749 |
+
},
|
130750 |
+
toggleWidthSize: {
|
130751 |
+
type: "number",
|
130752 |
+
default: 0
|
130753 |
+
},
|
130754 |
+
toggleActiveColor: {
|
130755 |
+
type: "string",
|
130756 |
+
default: "#000000"
|
130757 |
+
},
|
130758 |
+
toggleHeightSize: {
|
130759 |
+
type: "number",
|
130760 |
+
default: 0
|
130761 |
+
},
|
130762 |
+
inputLineHeightTablet: {
|
130763 |
type: "number"
|
130764 |
},
|
130765 |
+
inputLineHeightMobile: {
|
130766 |
type: "number"
|
130767 |
},
|
130768 |
+
|
130769 |
+
//Color.
|
130770 |
+
labelColor: {
|
130771 |
+
type: "string",
|
130772 |
+
default: "#000000"
|
130773 |
+
},
|
130774 |
+
inputColor: {
|
130775 |
+
type: "string",
|
130776 |
+
default: "#000000"
|
130777 |
+
},
|
130778 |
+
bgColor: {
|
130779 |
+
type: "string"
|
130780 |
+
},
|
130781 |
+
inputplaceholderColor: {
|
130782 |
+
type: "string",
|
130783 |
+
default: "#abb8c3"
|
130784 |
+
},
|
130785 |
+
inputactiveColor: {
|
130786 |
+
type: "string",
|
130787 |
+
default: "#000000"
|
130788 |
+
},
|
130789 |
+
|
130790 |
+
// InputBorder
|
130791 |
+
inputborderStyle: {
|
130792 |
+
type: "string",
|
130793 |
+
default: "solid"
|
130794 |
+
},
|
130795 |
+
inputborderWidth: {
|
130796 |
+
type: "number",
|
130797 |
+
default: 1
|
130798 |
+
},
|
130799 |
+
inputborderRadius: {
|
130800 |
+
type: "number",
|
130801 |
+
default: 3
|
130802 |
+
},
|
130803 |
+
inputborderColor: {
|
130804 |
+
type: "string",
|
130805 |
+
default: "#BDBDBD"
|
130806 |
+
},
|
130807 |
+
inputborderHoverColor: {
|
130808 |
+
type: "string"
|
130809 |
+
},
|
130810 |
+
hPaddingField: {
|
130811 |
+
type: "number",
|
130812 |
+
default: 10
|
130813 |
+
},
|
130814 |
+
vPaddingField: {
|
130815 |
+
type: "number",
|
130816 |
+
default: 10
|
130817 |
+
},
|
130818 |
+
fieldGap: {
|
130819 |
+
type: "number",
|
130820 |
+
default: 20
|
130821 |
+
},
|
130822 |
+
|
130823 |
+
formStyle: {
|
130824 |
+
type: "string",
|
130825 |
+
default: "boxed"
|
130826 |
+
},
|
130827 |
+
overallAlignment: {
|
130828 |
+
type: "string",
|
130829 |
+
default: 'left'
|
130830 |
+
},
|
130831 |
+
|
130832 |
+
//recaptha.
|
130833 |
+
reCaptchaEnable: {
|
130834 |
type: "boolean",
|
130835 |
default: false
|
130836 |
},
|
130837 |
+
reCaptchaType: {
|
130838 |
type: "string",
|
130839 |
+
default: "v2"
|
130840 |
},
|
130841 |
+
reCaptchaSiteKeyV2: {
|
130842 |
+
type: "string",
|
130843 |
+
default: ""
|
130844 |
+
},
|
130845 |
+
reCaptchaSecretKeyV2: {
|
130846 |
+
type: "string",
|
130847 |
+
default: ""
|
130848 |
+
},
|
130849 |
+
reCaptchaSiteKeyV3: {
|
130850 |
+
type: "string",
|
130851 |
+
default: ""
|
130852 |
+
},
|
130853 |
+
reCaptchaSecretKeyV3: {
|
130854 |
+
type: "string",
|
130855 |
+
default: ""
|
130856 |
+
},
|
130857 |
+
hidereCaptchaBatch: {
|
130858 |
type: "boolean",
|
130859 |
default: false
|
130860 |
},
|
130861 |
+
//message attributes
|
130862 |
+
successMessageTextColor: {
|
130863 |
+
type: "string",
|
130864 |
+
default: "#000000"
|
130865 |
},
|
130866 |
+
successMessageBGColor: {
|
130867 |
type: "string",
|
130868 |
+
default: "#00800030"
|
130869 |
},
|
130870 |
+
successMessageBorderColor: {
|
130871 |
type: "string",
|
130872 |
+
default: "green"
|
130873 |
},
|
130874 |
+
successMessageBorderStyle: {
|
130875 |
+
type: "string",
|
130876 |
+
default: "solid"
|
130877 |
},
|
130878 |
+
successMessageBorderWidth: {
|
130879 |
+
type: "string",
|
130880 |
+
default: "2"
|
130881 |
},
|
130882 |
+
failedMessageTextColor: {
|
130883 |
+
type: "string",
|
130884 |
+
default: "#000000"
|
130885 |
+
},
|
130886 |
+
failedMessageBorderColor: {
|
130887 |
+
type: "string",
|
130888 |
+
default: "red"
|
130889 |
+
},
|
130890 |
+
failedMessageBGColor: {
|
130891 |
+
type: "string",
|
130892 |
+
default: "#f5f5f5"
|
130893 |
+
},
|
130894 |
+
captchaMessage: {
|
130895 |
+
type: "string",
|
130896 |
+
default: __("Please fill up the above captcha.", 'ultimate-addons-for-gutenberg')
|
130897 |
}
|
130898 |
};
|
|
|
130899 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
130900 |
|
130901 |
/***/ }),
|
130902 |
+
/* 738 */
|
130903 |
+
/*!**********************************!*\
|
130904 |
+
!*** ./src/blocks/forms/edit.js ***!
|
130905 |
+
\**********************************/
|
130906 |
/*! exports provided: default */
|
130907 |
/*! exports used: default */
|
130908 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
130910 |
"use strict";
|
130911 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
130912 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
130913 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 5);
|
130914 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
130915 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 739);
|
130916 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
130917 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_lodash_map__);
|
130918 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
130919 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
130920 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
130921 |
+
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
|
|
|
|
|
130922 |
|
130923 |
+
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }();
|
130924 |
+
|
130925 |
+
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
130926 |
|
130927 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
130928 |
|
130931 |
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
130932 |
|
130933 |
/**
|
130934 |
+
* BLOCK: Forms - Edit
|
130935 |
*/
|
130936 |
|
130937 |
|
130938 |
|
130939 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130940 |
|
130941 |
|
130942 |
+
// Import all of our Text Options requirements.
|
130943 |
|
|
|
|
|
|
|
|
|
130944 |
|
130945 |
+
// Import Web font loader for google fonts.
|
130946 |
|
|
|
130947 |
|
130948 |
+
var _wp$data = wp.data,
|
130949 |
+
withSelect = _wp$data.withSelect,
|
130950 |
+
useDispatch = _wp$data.useDispatch;
|
130951 |
+
var _wp$compose = wp.compose,
|
130952 |
+
compose = _wp$compose.compose,
|
130953 |
+
createHigherOrderComponent = _wp$compose.createHigherOrderComponent;
|
130954 |
+
var Component = wp.element.Component;
|
130955 |
+
var createBlock = wp.blocks.createBlock;
|
130956 |
var _wp$blockEditor = wp.blockEditor,
|
|
|
|
|
130957 |
InnerBlocks = _wp$blockEditor.InnerBlocks,
|
|
|
130958 |
RichText = _wp$blockEditor.RichText,
|
130959 |
+
InspectorControls = _wp$blockEditor.InspectorControls,
|
130960 |
+
ColorPalette = _wp$blockEditor.ColorPalette,
|
130961 |
+
__experimentalBlockVariationPicker = _wp$blockEditor.__experimentalBlockVariationPicker;
|
130962 |
var _wp$components = wp.components,
|
130963 |
PanelBody = _wp$components.PanelBody,
|
|
|
130964 |
SelectControl = _wp$components.SelectControl,
|
130965 |
RangeControl = _wp$components.RangeControl,
|
|
|
|
|
|
|
130966 |
Button = _wp$components.Button,
|
130967 |
+
TextControl = _wp$components.TextControl,
|
130968 |
+
ToggleControl = _wp$components.ToggleControl,
|
130969 |
+
TabPanel = _wp$components.TabPanel,
|
130970 |
+
ButtonGroup = _wp$components.ButtonGroup,
|
130971 |
+
TextareaControl = _wp$components.TextareaControl,
|
130972 |
+
CheckboxControl = _wp$components.CheckboxControl,
|
130973 |
+
ExternalLink = _wp$components.ExternalLink,
|
130974 |
+
withNotices = _wp$components.withNotices;
|
130975 |
+
var __ = wp.i18n.__;
|
130976 |
|
|
|
|
|
130977 |
|
130978 |
+
var ALLOWED_BLOCKS = ["uagb/forms-name", "uagb/forms-email", "uagb/forms-hidden", "uagb/forms-phone", "uagb/forms-textarea", "uagb/forms-url", "uagb/forms-select", "uagb/forms-radio", "uagb/forms-checkbox", "uagb/forms-toggle", "uagb/forms-date", "uagb/forms-accept"];
|
|
|
130979 |
|
130980 |
+
var UAGBFormsEdit = function (_Component) {
|
130981 |
+
_inherits(UAGBFormsEdit, _Component);
|
130982 |
|
130983 |
+
function UAGBFormsEdit() {
|
130984 |
+
_classCallCheck(this, UAGBFormsEdit);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130985 |
|
130986 |
+
var _this = _possibleConstructorReturn(this, (UAGBFormsEdit.__proto__ || Object.getPrototypeOf(UAGBFormsEdit)).apply(this, arguments));
|
130987 |
|
130988 |
+
_this.blockVariationPickerOnSelect = _this.blockVariationPickerOnSelect.bind(_this);
|
130989 |
+
return _this;
|
130990 |
+
}
|
130991 |
+
|
130992 |
+
_createClass(UAGBFormsEdit, [{
|
130993 |
+
key: "onSubmitClick",
|
130994 |
+
value: function onSubmitClick(e) {
|
130995 |
+
e.preventDefault();
|
130996 |
}
|
130997 |
}, {
|
130998 |
+
key: "blockVariationPickerOnSelect",
|
130999 |
+
value: function blockVariationPickerOnSelect() {
|
131000 |
+
var nextVariation = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this.props.defaultVariation;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131001 |
|
|
|
131002 |
|
131003 |
+
if (nextVariation.attributes) {
|
131004 |
+
this.props.setAttributes(nextVariation.attributes);
|
131005 |
+
}
|
|
|
|
|
|
|
131006 |
|
131007 |
+
if (nextVariation.innerBlocks) {
|
131008 |
+
this.props.replaceInnerBlocks(this.props.clientId, this.createBlocksFromInnerBlocksTemplate(nextVariation.innerBlocks));
|
131009 |
+
}
|
131010 |
}
|
131011 |
}, {
|
131012 |
+
key: "createBlocksFromInnerBlocksTemplate",
|
131013 |
+
value: function createBlocksFromInnerBlocksTemplate(innerBlocksTemplate) {
|
131014 |
+
var _this2 = this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131015 |
|
131016 |
+
return __WEBPACK_IMPORTED_MODULE_3_lodash_map___default()(innerBlocksTemplate, function (_ref) {
|
131017 |
+
var _ref2 = _slicedToArray(_ref, 3),
|
131018 |
+
name = _ref2[0],
|
131019 |
+
attributes = _ref2[1],
|
131020 |
+
_ref2$ = _ref2[2],
|
131021 |
+
innerBlocks = _ref2$ === undefined ? [] : _ref2$;
|
131022 |
|
131023 |
+
return createBlock(name, attributes, _this2.createBlocksFromInnerBlocksTemplate(innerBlocks));
|
|
|
131024 |
});
|
131025 |
}
|
131026 |
}, {
|
131027 |
+
key: "render",
|
131028 |
+
value: function render() {
|
131029 |
+
var _this3 = this;
|
|
|
|
|
|
|
|
|
|
|
|
|
131030 |
|
131031 |
+
var _props = this.props,
|
131032 |
+
attributes = _props.attributes,
|
131033 |
+
setAttributes = _props.setAttributes,
|
131034 |
+
variations = _props.variations,
|
131035 |
+
hasInnerBlocks = _props.hasInnerBlocks;
|
131036 |
+
var block_id = attributes.block_id,
|
131037 |
+
submitButtonText = attributes.submitButtonText,
|
131038 |
+
formLabel = attributes.formLabel,
|
131039 |
+
buttonAlign = attributes.buttonAlign,
|
131040 |
+
buttonSize = attributes.buttonSize,
|
131041 |
+
confirmationType = attributes.confirmationType,
|
131042 |
+
confirmationMessage = attributes.confirmationMessage,
|
131043 |
+
failedMessage = attributes.failedMessage,
|
131044 |
+
confirmationUrl = attributes.confirmationUrl,
|
131045 |
+
sendAfterSubmitEmail = attributes.sendAfterSubmitEmail,
|
131046 |
+
afterSubmitToEmail = attributes.afterSubmitToEmail,
|
131047 |
+
afterSubmitCcEmail = attributes.afterSubmitCcEmail,
|
131048 |
+
afterSubmitBccEmail = attributes.afterSubmitBccEmail,
|
131049 |
+
afterSubmitEmailSubject = attributes.afterSubmitEmailSubject,
|
131050 |
+
submitColor = attributes.submitColor,
|
131051 |
+
submitColorHover = attributes.submitColorHover,
|
131052 |
+
submitBgColor = attributes.submitBgColor,
|
131053 |
+
submitBgColorHover = attributes.submitBgColorHover,
|
131054 |
+
submitborderStyle = attributes.submitborderStyle,
|
131055 |
+
submitborderWidth = attributes.submitborderWidth,
|
131056 |
+
submitborderRadius = attributes.submitborderRadius,
|
131057 |
+
submitborderColor = attributes.submitborderColor,
|
131058 |
+
submitborderHoverColor = attributes.submitborderHoverColor,
|
131059 |
+
vPaddingSubmit = attributes.vPaddingSubmit,
|
131060 |
+
hPaddingSubmit = attributes.hPaddingSubmit,
|
131061 |
+
submitTextloadGoogleFonts = attributes.submitTextloadGoogleFonts,
|
131062 |
+
submitTextFontFamily = attributes.submitTextFontFamily,
|
131063 |
+
submitTextFontWeight = attributes.submitTextFontWeight,
|
131064 |
+
submitTextFontSubset = attributes.submitTextFontSubset,
|
131065 |
+
submitTextFontSize = attributes.submitTextFontSize,
|
131066 |
+
submitTextFontSizeType = attributes.submitTextFontSizeType,
|
131067 |
+
submitTextFontSizeTablet = attributes.submitTextFontSizeTablet,
|
131068 |
+
submitTextFontSizeMobile = attributes.submitTextFontSizeMobile,
|
131069 |
+
submitTextLineHeightType = attributes.submitTextLineHeightType,
|
131070 |
+
submitTextLineHeight = attributes.submitTextLineHeight,
|
131071 |
+
submitTextLineHeightTablet = attributes.submitTextLineHeightTablet,
|
131072 |
+
submitTextLineHeightMobile = attributes.submitTextLineHeightMobile,
|
131073 |
+
labelloadGoogleFonts = attributes.labelloadGoogleFonts,
|
131074 |
+
labelFontFamily = attributes.labelFontFamily,
|
131075 |
+
labelFontWeight = attributes.labelFontWeight,
|
131076 |
+
labelFontSubset = attributes.labelFontSubset,
|
131077 |
+
labelFontSize = attributes.labelFontSize,
|
131078 |
+
labelFontSizeType = attributes.labelFontSizeType,
|
131079 |
+
labelFontSizeTablet = attributes.labelFontSizeTablet,
|
131080 |
+
labelFontSizeMobile = attributes.labelFontSizeMobile,
|
131081 |
+
labelLineHeightType = attributes.labelLineHeightType,
|
131082 |
+
labelLineHeight = attributes.labelLineHeight,
|
131083 |
+
labelLineHeightTablet = attributes.labelLineHeightTablet,
|
131084 |
+
labelLineHeightMobile = attributes.labelLineHeightMobile,
|
131085 |
+
inputloadGoogleFonts = attributes.inputloadGoogleFonts,
|
131086 |
+
inputFontFamily = attributes.inputFontFamily,
|
131087 |
+
inputFontWeight = attributes.inputFontWeight,
|
131088 |
+
inputFontSubset = attributes.inputFontSubset,
|
131089 |
+
inputFontSize = attributes.inputFontSize,
|
131090 |
+
inputFontSizeType = attributes.inputFontSizeType,
|
131091 |
+
inputFontSizeTablet = attributes.inputFontSizeTablet,
|
131092 |
+
inputFontSizeMobile = attributes.inputFontSizeMobile,
|
131093 |
+
inputLineHeightType = attributes.inputLineHeightType,
|
131094 |
+
inputLineHeight = attributes.inputLineHeight,
|
131095 |
+
inputLineHeightTablet = attributes.inputLineHeightTablet,
|
131096 |
+
inputLineHeightMobile = attributes.inputLineHeightMobile,
|
131097 |
+
toggleSize = attributes.toggleSize,
|
131098 |
+
toggleWidthSize = attributes.toggleWidthSize,
|
131099 |
+
toggleHeightSize = attributes.toggleHeightSize,
|
131100 |
+
toggleActiveColor = attributes.toggleActiveColor,
|
131101 |
+
labelColor = attributes.labelColor,
|
131102 |
+
inputColor = attributes.inputColor,
|
131103 |
+
bgColor = attributes.bgColor,
|
131104 |
+
inputplaceholderColor = attributes.inputplaceholderColor,
|
131105 |
+
inputactiveColor = attributes.inputactiveColor,
|
131106 |
+
inputborderStyle = attributes.inputborderStyle,
|
131107 |
+
inputborderWidth = attributes.inputborderWidth,
|
131108 |
+
inputborderRadius = attributes.inputborderRadius,
|
131109 |
+
inputborderColor = attributes.inputborderColor,
|
131110 |
+
inputborderHoverColor = attributes.inputborderHoverColor,
|
131111 |
+
vPaddingField = attributes.vPaddingField,
|
131112 |
+
hPaddingField = attributes.hPaddingField,
|
131113 |
+
fieldGap = attributes.fieldGap,
|
131114 |
+
formStyle = attributes.formStyle,
|
131115 |
+
overallAlignment = attributes.overallAlignment,
|
131116 |
+
reCaptchaEnable = attributes.reCaptchaEnable,
|
131117 |
+
reCaptchaType = attributes.reCaptchaType,
|
131118 |
+
reCaptchaSecretKeyV2 = attributes.reCaptchaSecretKeyV2,
|
131119 |
+
reCaptchaSiteKeyV2 = attributes.reCaptchaSiteKeyV2,
|
131120 |
+
reCaptchaSecretKeyV3 = attributes.reCaptchaSecretKeyV3,
|
131121 |
+
reCaptchaSiteKeyV3 = attributes.reCaptchaSiteKeyV3,
|
131122 |
+
hidereCaptchaBatch = attributes.hidereCaptchaBatch,
|
131123 |
+
successMessageTextColor = attributes.successMessageTextColor,
|
131124 |
+
successMessageBGColor = attributes.successMessageBGColor,
|
131125 |
+
successMessageBorderColor = attributes.successMessageBorderColor,
|
131126 |
+
successMessageBorderStyle = attributes.successMessageBorderStyle,
|
131127 |
+
successMessageBorderWidth = attributes.successMessageBorderWidth,
|
131128 |
+
failedMessageTextColor = attributes.failedMessageTextColor,
|
131129 |
+
failedMessageBorderColor = attributes.failedMessageBorderColor,
|
131130 |
+
failedMessageBorderStyle = attributes.failedMessageBorderStyle,
|
131131 |
+
failedMessageBorderWidth = attributes.failedMessageBorderWidth,
|
131132 |
+
failedMessageBGColor = attributes.failedMessageBGColor;
|
131133 |
+
|
131134 |
+
|
131135 |
+
var loadsubmittextGoogleFonts = void 0;
|
131136 |
+
|
131137 |
+
if (submitTextloadGoogleFonts == true) {
|
131138 |
|
131139 |
+
var qconfig = {
|
131140 |
+
google: {
|
131141 |
+
families: [submitTextFontFamily + (submitTextFontWeight ? ':' + submitTextFontWeight : '')]
|
131142 |
+
}
|
131143 |
+
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131144 |
|
131145 |
+
loadsubmittextGoogleFonts = wp.element.createElement(__WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__["a" /* default */], { config: qconfig });
|
131146 |
+
}
|
131147 |
|
131148 |
+
var loadlabelGoogleFonts = void 0;
|
|
|
131149 |
|
131150 |
+
if (labelloadGoogleFonts == true) {
|
131151 |
|
131152 |
+
var _qconfig = {
|
131153 |
+
google: {
|
131154 |
+
families: [labelFontFamily + (labelFontWeight ? ':' + labelFontWeight : '')]
|
131155 |
+
}
|
131156 |
+
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131157 |
|
131158 |
+
loadlabelGoogleFonts = wp.element.createElement(__WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__["a" /* default */], { config: _qconfig });
|
131159 |
+
}
|
131160 |
|
131161 |
+
var loadinputGoogleFonts = void 0;
|
|
|
131162 |
|
131163 |
+
if (inputloadGoogleFonts == true) {
|
131164 |
|
131165 |
+
var _qconfig2 = {
|
131166 |
+
google: {
|
131167 |
+
families: [inputFontFamily + (inputFontWeight ? ':' + inputFontWeight : '')]
|
131168 |
+
}
|
131169 |
+
};
|
|
|
|
|
|
|
|
|
|
|
131170 |
|
131171 |
+
loadinputGoogleFonts = wp.element.createElement(__WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__["a" /* default */], { config: _qconfig2 });
|
131172 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131173 |
|
131174 |
+
var generalSettings = function generalSettings() {
|
131175 |
|
131176 |
+
return wp.element.createElement(
|
131177 |
+
PanelBody,
|
131178 |
+
{
|
131179 |
+
title: __("General", "ultimate-addons-for-gutenberg"),
|
131180 |
+
initialOpen: true,
|
131181 |
+
className: "uagb__url-panel-body"
|
131182 |
+
},
|
131183 |
+
wp.element.createElement(TextControl, {
|
131184 |
+
label: __("Hidden Field Label", "ultimate-addons-for-gutenberg"),
|
131185 |
+
value: formLabel,
|
131186 |
+
onChange: function onChange(value) {
|
131187 |
+
return setAttributes({ formLabel: value });
|
131188 |
+
}
|
131189 |
+
}),
|
131190 |
+
wp.element.createElement(SelectControl, {
|
131191 |
+
label: __("Style", "ultimate-addons-for-gutenberg"),
|
131192 |
+
value: formStyle,
|
131193 |
+
onChange: function onChange(value) {
|
131194 |
+
return setAttributes({ formStyle: value });
|
131195 |
+
},
|
131196 |
+
options: [{ value: "boxed", label: __("Boxed", "ultimate-addons-for-gutenberg") }, { value: "underlined", label: __("Underlined", "ultimate-addons-for-gutenberg") }]
|
131197 |
+
}),
|
131198 |
wp.element.createElement(
|
131199 |
+
"h2",
|
131200 |
+
null,
|
131201 |
+
" ",
|
131202 |
+
__("Overall Alignment", "ultimate-addons-for-gutenberg")
|
131203 |
+
),
|
131204 |
+
wp.element.createElement(Button, {
|
131205 |
+
key: "left",
|
131206 |
+
icon: "editor-alignleft",
|
131207 |
+
label: __("Left", "ultimate-addons-for-gutenberg"),
|
131208 |
+
onClick: function onClick() {
|
131209 |
+
return setAttributes({ overallAlignment: "left" });
|
131210 |
+
},
|
131211 |
+
"aria-pressed": "left" === overallAlignment,
|
131212 |
+
isPrimary: "left" === overallAlignment
|
131213 |
+
}),
|
131214 |
+
wp.element.createElement(Button, {
|
131215 |
+
key: "center",
|
131216 |
+
icon: "editor-aligncenter",
|
131217 |
+
label: __("Right", "ultimate-addons-for-gutenberg"),
|
131218 |
+
onClick: function onClick() {
|
131219 |
+
return setAttributes({ overallAlignment: "center" });
|
131220 |
+
},
|
131221 |
+
"aria-pressed": "center" === overallAlignment,
|
131222 |
+
isPrimary: "center" === overallAlignment
|
131223 |
+
}),
|
131224 |
+
wp.element.createElement(Button, {
|
131225 |
+
key: "right",
|
131226 |
+
icon: "editor-alignright",
|
131227 |
+
label: __("Right", "ultimate-addons-for-gutenberg"),
|
131228 |
+
onClick: function onClick() {
|
131229 |
+
return setAttributes({ overallAlignment: "right" });
|
131230 |
+
},
|
131231 |
+
"aria-pressed": "right" === overallAlignment,
|
131232 |
+
isPrimary: "right" === overallAlignment
|
131233 |
+
}),
|
131234 |
+
wp.element.createElement(
|
131235 |
+
"h2",
|
131236 |
+
null,
|
131237 |
+
" ",
|
131238 |
+
__("Confirmation Type", "ultimate-addons-for-gutenberg")
|
131239 |
+
),
|
131240 |
+
wp.element.createElement(
|
131241 |
+
ButtonGroup,
|
131242 |
+
{ className: "uagb-forms-button-group", "aria-label": __("Confirmation Type", "ultimate-addons-for-gutenberg") },
|
131243 |
wp.element.createElement(
|
131244 |
+
Button,
|
131245 |
+
{
|
131246 |
+
key: "message",
|
131247 |
+
isSmall: true,
|
131248 |
+
isPrimary: confirmationType === "message",
|
131249 |
+
"aria-pressed": confirmationType === "message",
|
131250 |
+
onClick: function onClick() {
|
131251 |
+
return setAttributes({ confirmationType: "message" });
|
131252 |
+
}
|
131253 |
+
},
|
131254 |
+
__("Message", "ultimate-addons-for-gutenberg")
|
131255 |
+
),
|
131256 |
+
wp.element.createElement(
|
131257 |
+
Button,
|
131258 |
+
{
|
131259 |
+
key: "url",
|
131260 |
+
isSmall: true,
|
131261 |
+
isPrimary: confirmationType === "url",
|
131262 |
+
"aria-pressed": confirmationType === "url",
|
131263 |
+
onClick: function onClick() {
|
131264 |
+
return setAttributes({ confirmationType: "url" });
|
131265 |
+
}
|
131266 |
+
},
|
131267 |
+
__("URL", "ultimate-addons-for-gutenberg")
|
131268 |
+
)
|
131269 |
+
),
|
131270 |
+
'message' === confirmationType && wp.element.createElement(
|
131271 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
131272 |
+
null,
|
131273 |
+
wp.element.createElement(
|
131274 |
+
PanelBody,
|
131275 |
+
{
|
131276 |
+
title: __("Success Message", "ultimate-addons-for-gutenberg"),
|
131277 |
+
initialOpen: false,
|
131278 |
+
className: "uagb__url-panel-body" },
|
131279 |
+
wp.element.createElement(TextareaControl, {
|
131280 |
+
label: "Success Message Text",
|
131281 |
+
help: __("Enter a message you want to display after successfull form submission", "ultimate-addons-for-gutenberg"),
|
131282 |
+
value: confirmationMessage,
|
131283 |
+
onChange: function onChange(value) {
|
131284 |
+
return setAttributes({ confirmationMessage: value });
|
131285 |
+
}
|
131286 |
+
}),
|
131287 |
+
wp.element.createElement(
|
131288 |
+
"p",
|
131289 |
+
{ className: "uagb-setting-label" },
|
131290 |
+
__("Text Color", "ultimate-addons-for-gutenberg"),
|
131291 |
+
wp.element.createElement(
|
131292 |
+
"span",
|
131293 |
+
{ className: "components-base-control__label" },
|
131294 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { Color: successMessageTextColor } })
|
131295 |
+
)
|
131296 |
+
),
|
131297 |
+
wp.element.createElement(ColorPalette, {
|
131298 |
+
value: successMessageTextColor,
|
131299 |
+
onChange: function onChange(colorValue) {
|
131300 |
+
return setAttributes({ successMessageTextColor: colorValue });
|
131301 |
+
},
|
131302 |
+
allowReset: true
|
131303 |
+
}),
|
131304 |
+
wp.element.createElement(
|
131305 |
+
"p",
|
131306 |
+
{ className: "uagb-setting-label" },
|
131307 |
+
__("Background Color", "ultimate-addons-for-gutenberg"),
|
131308 |
+
wp.element.createElement(
|
131309 |
+
"span",
|
131310 |
+
{ className: "components-base-control__label" },
|
131311 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: successMessageBGColor } })
|
131312 |
+
)
|
131313 |
+
),
|
131314 |
+
wp.element.createElement(ColorPalette, {
|
131315 |
+
value: successMessageBGColor,
|
131316 |
+
onChange: function onChange(colorValue) {
|
131317 |
+
return setAttributes({ successMessageBGColor: colorValue });
|
131318 |
+
},
|
131319 |
+
allowReset: true
|
131320 |
+
}),
|
131321 |
+
wp.element.createElement(SelectControl, {
|
131322 |
+
label: __("Border Style", "ultimate-addons-for-gutenberg"),
|
131323 |
+
value: successMessageBorderStyle,
|
131324 |
+
onChange: function onChange(value) {
|
131325 |
+
return setAttributes({ successMessageBorderStyle: value });
|
131326 |
+
},
|
131327 |
+
options: [{ value: "none", label: __("None", "ultimate-addons-for-gutenberg") }, { value: "solid", label: __("Solid", "ultimate-addons-for-gutenberg") }, { value: "dotted", label: __("Dotted", "ultimate-addons-for-gutenberg") }, { value: "dashed", label: __("Dashed", "ultimate-addons-for-gutenberg") }, { value: "double", label: __("Double", "ultimate-addons-for-gutenberg") }, { value: "groove", label: __("Groove", "ultimate-addons-for-gutenberg") }, { value: "inset", label: __("Inset", "ultimate-addons-for-gutenberg") }, { value: "outset", label: __("Outset", "ultimate-addons-for-gutenberg") }, { value: "ridge", label: __("Ridge", "ultimate-addons-for-gutenberg") }]
|
131328 |
+
}),
|
131329 |
+
wp.element.createElement(RangeControl, {
|
131330 |
+
label: __("Border Width", "ultimate-addons-for-gutenberg"),
|
131331 |
+
value: successMessageBorderWidth,
|
131332 |
+
onChange: function onChange(value) {
|
131333 |
+
return setAttributes({ successMessageBorderWidth: value });
|
131334 |
+
},
|
131335 |
+
min: 0,
|
131336 |
+
max: 50,
|
131337 |
+
allowReset: true
|
131338 |
+
}),
|
131339 |
+
wp.element.createElement(
|
131340 |
+
"p",
|
131341 |
+
{ className: "uagb-setting-label" },
|
131342 |
+
__("Border Color", "ultimate-addons-for-gutenberg"),
|
131343 |
+
wp.element.createElement(
|
131344 |
+
"span",
|
131345 |
+
{ className: "components-base-control__label" },
|
131346 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: successMessageBorderColor } })
|
131347 |
+
)
|
131348 |
+
),
|
131349 |
+
wp.element.createElement(ColorPalette, {
|
131350 |
+
value: successMessageBorderColor,
|
131351 |
+
onChange: function onChange(colorValue) {
|
131352 |
+
return setAttributes({ successMessageBorderColor: colorValue });
|
131353 |
+
},
|
131354 |
+
allowReset: true
|
131355 |
+
})
|
131356 |
+
),
|
131357 |
+
wp.element.createElement(
|
131358 |
+
PanelBody,
|
131359 |
+
{ title: __("Error Message ", "ultimate-addons-for-gutenberg"),
|
131360 |
+
initialOpen: false,
|
131361 |
+
className: "uagb__url-panel-body" },
|
131362 |
+
wp.element.createElement(TextareaControl, {
|
131363 |
+
label: "Error Message Text",
|
131364 |
+
help: __("Enter a message you want to display after unsuccessfull form submission", "ultimate-addons-for-gutenberg"),
|
131365 |
+
value: failedMessage,
|
131366 |
+
onChange: function onChange(value) {
|
131367 |
+
return setAttributes({ failedMessage: value });
|
131368 |
+
}
|
131369 |
+
}),
|
131370 |
+
wp.element.createElement(
|
131371 |
+
"p",
|
131372 |
+
{ className: "uagb-setting-label" },
|
131373 |
+
__("Text Color", "ultimate-addons-for-gutenberg"),
|
131374 |
+
wp.element.createElement(
|
131375 |
+
"span",
|
131376 |
+
{ className: "components-base-control__label" },
|
131377 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: failedMessageTextColor } })
|
131378 |
+
)
|
131379 |
+
),
|
131380 |
+
wp.element.createElement(ColorPalette, {
|
131381 |
+
value: failedMessageTextColor,
|
131382 |
+
onChange: function onChange(colorValue) {
|
131383 |
+
return setAttributes({ failedMessageTextColor: colorValue });
|
131384 |
+
},
|
131385 |
+
allowReset: true
|
131386 |
+
}),
|
131387 |
+
wp.element.createElement(
|
131388 |
+
"p",
|
131389 |
+
{ className: "uagb-setting-label" },
|
131390 |
+
__("Background Color", "ultimate-addons-for-gutenberg"),
|
131391 |
+
wp.element.createElement(
|
131392 |
+
"span",
|
131393 |
+
{ className: "components-base-control__label" },
|
131394 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: failedMessageBGColor } })
|
131395 |
+
)
|
131396 |
+
),
|
131397 |
+
wp.element.createElement(ColorPalette, {
|
131398 |
+
value: failedMessageBGColor,
|
131399 |
+
onChange: function onChange(colorValue) {
|
131400 |
+
return setAttributes({ failedMessageBGColor: colorValue });
|
131401 |
+
},
|
131402 |
+
allowReset: true
|
131403 |
+
}),
|
131404 |
+
wp.element.createElement(SelectControl, {
|
131405 |
+
label: __("Border Style", "ultimate-addons-for-gutenberg"),
|
131406 |
+
value: failedMessageBorderStyle,
|
131407 |
+
onChange: function onChange(value) {
|
131408 |
+
return setAttributes({ failedMessageBorderStyle: value });
|
131409 |
+
},
|
131410 |
+
options: [{ value: "none", label: __("None", "ultimate-addons-for-gutenberg") }, { value: "solid", label: __("Solid", "ultimate-addons-for-gutenberg") }, { value: "dotted", label: __("Dotted", "ultimate-addons-for-gutenberg") }, { value: "dashed", label: __("Dashed", "ultimate-addons-for-gutenberg") }, { value: "double", label: __("Double", "ultimate-addons-for-gutenberg") }, { value: "groove", label: __("Groove", "ultimate-addons-for-gutenberg") }, { value: "inset", label: __("Inset", "ultimate-addons-for-gutenberg") }, { value: "outset", label: __("Outset", "ultimate-addons-for-gutenberg") }, { value: "ridge", label: __("Ridge", "ultimate-addons-for-gutenberg") }]
|
131411 |
+
}),
|
131412 |
+
wp.element.createElement(RangeControl, {
|
131413 |
+
label: __("Border Width", "ultimate-addons-for-gutenberg"),
|
131414 |
+
value: failedMessageBorderWidth,
|
131415 |
+
onChange: function onChange(value) {
|
131416 |
+
return setAttributes({ failedMessageBorderWidth: value });
|
131417 |
+
},
|
131418 |
+
min: 0,
|
131419 |
+
max: 50,
|
131420 |
+
allowReset: true
|
131421 |
+
}),
|
131422 |
+
wp.element.createElement(
|
131423 |
+
"p",
|
131424 |
+
{ className: "uagb-setting-label" },
|
131425 |
+
__("Border Color", "ultimate-addons-for-gutenberg"),
|
131426 |
+
wp.element.createElement(
|
131427 |
+
"span",
|
131428 |
+
{ className: "components-base-control__label" },
|
131429 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: failedMessageBorderColor } })
|
131430 |
+
)
|
131431 |
+
),
|
131432 |
+
wp.element.createElement(ColorPalette, {
|
131433 |
+
value: failedMessageBorderColor,
|
131434 |
+
onChange: function onChange(colorValue) {
|
131435 |
+
return setAttributes({ failedMessageBorderColor: colorValue });
|
131436 |
+
},
|
131437 |
+
allowReset: true
|
131438 |
+
})
|
131439 |
+
)
|
131440 |
+
),
|
131441 |
+
'url' === confirmationType && wp.element.createElement(TextControl, {
|
131442 |
+
label: __("Success Redirect URL", "ultimate-addons-for-gutenberg"),
|
131443 |
+
help: __("Enter a URL you want to redirect your page to after form Submission", "ultimate-addons-for-gutenberg"),
|
131444 |
+
value: confirmationUrl,
|
131445 |
+
onChange: function onChange(value) {
|
131446 |
+
return setAttributes({ confirmationUrl: value });
|
131447 |
+
}
|
131448 |
+
})
|
131449 |
+
);
|
131450 |
+
};
|
131451 |
+
|
131452 |
+
var submitButtonSettings = function submitButtonSettings() {
|
131453 |
+
return wp.element.createElement(
|
131454 |
+
PanelBody,
|
131455 |
+
{
|
131456 |
+
title: __("Submit Button", "ultimate-addons-for-gutenberg"),
|
131457 |
+
initialOpen: false,
|
131458 |
+
className: "uagb__url-panel-body"
|
131459 |
+
},
|
131460 |
+
wp.element.createElement(
|
131461 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
131462 |
+
null,
|
131463 |
+
wp.element.createElement(SelectControl, {
|
131464 |
+
label: __("Button Size", "ultimate-addons-for-gutenberg"),
|
131465 |
+
value: buttonSize,
|
131466 |
+
onChange: function onChange(value) {
|
131467 |
+
return setAttributes({ buttonSize: value });
|
131468 |
+
},
|
131469 |
+
options: [{ value: "small", label: __("Small", "ultimate-addons-for-gutenberg") }, { value: "medium", label: __("Medium", "ultimate-addons-for-gutenberg") }, { value: "large", label: __("Large", "ultimate-addons-for-gutenberg") }, { value: "extralarge", label: __("Extra Large", "ultimate-addons-for-gutenberg") }, { value: "full", label: __("Full", "ultimate-addons-for-gutenberg") }]
|
131470 |
+
}),
|
131471 |
+
wp.element.createElement(
|
131472 |
+
"h2",
|
131473 |
+
null,
|
131474 |
+
" ",
|
131475 |
+
__("Button Alignment", "ultimate-addons-for-gutenberg")
|
131476 |
+
),
|
131477 |
+
wp.element.createElement(Button, {
|
131478 |
+
key: "left",
|
131479 |
+
icon: "editor-alignleft",
|
131480 |
+
label: __("Left", "ultimate-addons-for-gutenberg"),
|
131481 |
+
onClick: function onClick() {
|
131482 |
+
return setAttributes({ buttonAlign: "left" });
|
131483 |
+
},
|
131484 |
+
"aria-pressed": "left" === buttonAlign,
|
131485 |
+
isPrimary: "left" === buttonAlign
|
131486 |
+
}),
|
131487 |
+
wp.element.createElement(Button, {
|
131488 |
+
key: "center",
|
131489 |
+
icon: "editor-aligncenter",
|
131490 |
+
label: __("Right", "ultimate-addons-for-gutenberg"),
|
131491 |
+
onClick: function onClick() {
|
131492 |
+
return setAttributes({ buttonAlign: "center" });
|
131493 |
+
},
|
131494 |
+
"aria-pressed": "center" === buttonAlign,
|
131495 |
+
isPrimary: "center" === buttonAlign
|
131496 |
+
}),
|
131497 |
+
wp.element.createElement(Button, {
|
131498 |
+
key: "right",
|
131499 |
+
icon: "editor-alignright",
|
131500 |
+
label: __("Right", "ultimate-addons-for-gutenberg"),
|
131501 |
+
onClick: function onClick() {
|
131502 |
+
return setAttributes({ buttonAlign: "right" });
|
131503 |
+
},
|
131504 |
+
"aria-pressed": "right" === buttonAlign,
|
131505 |
+
isPrimary: "right" === buttonAlign
|
131506 |
+
}),
|
131507 |
+
wp.element.createElement(
|
131508 |
+
"h2",
|
131509 |
+
null,
|
131510 |
+
__("Button Padding", "ultimate-addons-for-gutenberg")
|
131511 |
+
),
|
131512 |
+
wp.element.createElement(RangeControl, {
|
131513 |
+
label: __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_block_icons__["a" /* default */].vertical_spacing,
|
131514 |
+
className: "uagb-padding-control submit-btn-control",
|
131515 |
+
value: vPaddingSubmit,
|
131516 |
+
onChange: function onChange(value) {
|
131517 |
+
return setAttributes({ vPaddingSubmit: value });
|
131518 |
+
},
|
131519 |
+
min: 0,
|
131520 |
+
max: 100
|
131521 |
+
}),
|
131522 |
+
wp.element.createElement(RangeControl, {
|
131523 |
+
label: __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_block_icons__["a" /* default */].horizontal_spacing,
|
131524 |
+
className: "uagb-padding-control submit-btn-control",
|
131525 |
+
value: hPaddingSubmit,
|
131526 |
+
onChange: function onChange(value) {
|
131527 |
+
return setAttributes({ hPaddingSubmit: value });
|
131528 |
+
},
|
131529 |
+
min: 0,
|
131530 |
+
max: 100
|
131531 |
+
})
|
131532 |
+
),
|
131533 |
+
wp.element.createElement(
|
131534 |
+
TabPanel,
|
131535 |
+
{ className: "uagb-inspect-tabs uagb-inspect-tabs-col-2",
|
131536 |
+
activeClass: "active-tab",
|
131537 |
+
tabs: [{
|
131538 |
+
name: "normal",
|
131539 |
+
title: __("Normal", "ultimate-addons-for-gutenberg"),
|
131540 |
+
className: "uagb-normal-tab"
|
131541 |
+
}, {
|
131542 |
+
name: "hover",
|
131543 |
+
title: __("Hover", "ultimate-addons-for-gutenberg"),
|
131544 |
+
className: "uagb-focus-tab"
|
131545 |
+
}] },
|
131546 |
+
function (tabName) {
|
131547 |
+
var tabout_submitColor = void 0;
|
131548 |
+
if ("normal" === tabName.name) {
|
131549 |
+
tabout_submitColor = wp.element.createElement(
|
131550 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
131551 |
+
null,
|
131552 |
+
wp.element.createElement(
|
131553 |
+
"p",
|
131554 |
+
{ className: "uagb-setting-label" },
|
131555 |
+
__("Submit Color", "ultimate-addons-for-gutenberg"),
|
131556 |
+
wp.element.createElement(
|
131557 |
+
"span",
|
131558 |
+
{ className: "components-base-control__label" },
|
131559 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: submitColor } })
|
131560 |
+
)
|
131561 |
+
),
|
131562 |
+
wp.element.createElement(ColorPalette, {
|
131563 |
+
value: submitColor,
|
131564 |
+
onChange: function onChange(colorValue) {
|
131565 |
+
return setAttributes({ submitColor: colorValue });
|
131566 |
+
},
|
131567 |
+
allowReset: true
|
131568 |
+
}),
|
131569 |
+
wp.element.createElement(
|
131570 |
+
"p",
|
131571 |
+
{ className: "uagb-setting-label" },
|
131572 |
+
__("Background Color", "ultimate-addons-for-gutenberg"),
|
131573 |
+
wp.element.createElement(
|
131574 |
+
"span",
|
131575 |
+
{ className: "components-base-control__label" },
|
131576 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: submitBgColor } })
|
131577 |
+
)
|
131578 |
+
),
|
131579 |
+
wp.element.createElement(ColorPalette, {
|
131580 |
+
value: submitBgColor,
|
131581 |
+
onChange: function onChange(colorValue) {
|
131582 |
+
return setAttributes({ submitBgColor: colorValue });
|
131583 |
+
},
|
131584 |
+
allowReset: true
|
131585 |
+
})
|
131586 |
+
);
|
131587 |
+
} else {
|
131588 |
+
tabout_submitColor = wp.element.createElement(
|
131589 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
131590 |
+
null,
|
131591 |
+
wp.element.createElement(
|
131592 |
+
"p",
|
131593 |
+
{ className: "uagb-setting-label" },
|
131594 |
+
__("Submit Hover Color", "ultimate-addons-for-gutenberg"),
|
131595 |
+
wp.element.createElement(
|
131596 |
+
"span",
|
131597 |
+
{ className: "components-base-control__label" },
|
131598 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: submitColorHover } })
|
131599 |
+
)
|
131600 |
+
),
|
131601 |
+
wp.element.createElement(ColorPalette, {
|
131602 |
+
value: submitColorHover,
|
131603 |
+
onChange: function onChange(colorValue) {
|
131604 |
+
return setAttributes({ submitColorHover: colorValue });
|
131605 |
+
},
|
131606 |
+
allowReset: true
|
131607 |
+
}),
|
131608 |
+
wp.element.createElement(
|
131609 |
+
"p",
|
131610 |
+
{ className: "uagb-setting-label" },
|
131611 |
+
__("Background Hover Color", "ultimate-addons-for-gutenberg"),
|
131612 |
+
wp.element.createElement(
|
131613 |
+
"span",
|
131614 |
+
{ className: "components-base-control__label" },
|
131615 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: submitBgColorHover } })
|
131616 |
+
)
|
131617 |
+
),
|
131618 |
+
wp.element.createElement(ColorPalette, {
|
131619 |
+
value: submitBgColorHover,
|
131620 |
+
onChange: function onChange(colorValue) {
|
131621 |
+
return setAttributes({ submitBgColorHover: colorValue });
|
131622 |
+
},
|
131623 |
+
allowReset: true
|
131624 |
+
})
|
131625 |
+
);
|
131626 |
+
}
|
131627 |
+
return wp.element.createElement(
|
131628 |
+
"div",
|
131629 |
+
null,
|
131630 |
+
tabout_submitColor
|
131631 |
+
);
|
131632 |
+
}
|
131633 |
+
),
|
131634 |
+
wp.element.createElement(SelectControl, {
|
131635 |
+
label: __("Border Style", "ultimate-addons-for-gutenberg"),
|
131636 |
+
value: submitborderStyle,
|
131637 |
+
onChange: function onChange(value) {
|
131638 |
+
return setAttributes({ submitborderStyle: value });
|
131639 |
+
},
|
131640 |
+
options: [{ value: "none", label: __("None", "ultimate-addons-for-gutenberg") }, { value: "solid", label: __("Solid", "ultimate-addons-for-gutenberg") }, { value: "dotted", label: __("Dotted", "ultimate-addons-for-gutenberg") }, { value: "dashed", label: __("Dashed", "ultimate-addons-for-gutenberg") }, { value: "double", label: __("Double", "ultimate-addons-for-gutenberg") }, { value: "groove", label: __("Groove", "ultimate-addons-for-gutenberg") }, { value: "inset", label: __("Inset", "ultimate-addons-for-gutenberg") }, { value: "outset", label: __("Outset", "ultimate-addons-for-gutenberg") }, { value: "ridge", label: __("Ridge", "ultimate-addons-for-gutenberg") }]
|
131641 |
+
}),
|
131642 |
+
"none" != submitborderStyle && wp.element.createElement(
|
131643 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
131644 |
+
null,
|
131645 |
+
wp.element.createElement(RangeControl, {
|
131646 |
+
label: __("Border Width", "ultimate-addons-for-gutenberg"),
|
131647 |
+
value: submitborderWidth,
|
131648 |
+
onChange: function onChange(value) {
|
131649 |
+
return setAttributes({ submitborderWidth: value });
|
131650 |
+
},
|
131651 |
+
min: 0,
|
131652 |
+
max: 50,
|
131653 |
+
allowReset: true
|
131654 |
+
}),
|
131655 |
+
wp.element.createElement(RangeControl, {
|
131656 |
+
label: __("Border Radius", "ultimate-addons-for-gutenberg"),
|
131657 |
+
value: submitborderRadius,
|
131658 |
+
onChange: function onChange(value) {
|
131659 |
+
return setAttributes({ submitborderRadius: value });
|
131660 |
+
},
|
131661 |
+
min: 0,
|
131662 |
+
max: 100,
|
131663 |
+
allowReset: true
|
131664 |
+
}),
|
131665 |
+
wp.element.createElement(
|
131666 |
+
"p",
|
131667 |
+
{ className: "uagb-setting-label" },
|
131668 |
+
__("Border Color", "ultimate-addons-for-gutenberg"),
|
131669 |
+
wp.element.createElement(
|
131670 |
+
"span",
|
131671 |
+
{ className: "components-base-control__label" },
|
131672 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: submitborderColor } })
|
131673 |
+
)
|
131674 |
+
),
|
131675 |
+
wp.element.createElement(ColorPalette, {
|
131676 |
+
value: submitborderColor,
|
131677 |
+
onChange: function onChange(colorValue) {
|
131678 |
+
return setAttributes({ submitborderColor: colorValue });
|
131679 |
+
},
|
131680 |
+
allowReset: true
|
131681 |
+
}),
|
131682 |
+
wp.element.createElement(
|
131683 |
+
"p",
|
131684 |
+
{ className: "uagb-setting-label" },
|
131685 |
+
__("Border Hover Color", "ultimate-addons-for-gutenberg"),
|
131686 |
+
wp.element.createElement(
|
131687 |
+
"span",
|
131688 |
+
{ className: "components-base-control__label" },
|
131689 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: submitborderHoverColor } })
|
131690 |
+
)
|
131691 |
+
),
|
131692 |
+
wp.element.createElement(ColorPalette, {
|
131693 |
+
value: submitborderHoverColor,
|
131694 |
+
onChange: function onChange(colorValue) {
|
131695 |
+
return setAttributes({ submitborderHoverColor: colorValue });
|
131696 |
+
},
|
131697 |
+
allowReset: true
|
131698 |
+
})
|
131699 |
+
),
|
131700 |
+
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_5__components_typography__["a" /* default */], {
|
131701 |
+
label: __("Typography", "ultimate-addons-for-gutenberg"),
|
131702 |
+
attributes: attributes,
|
131703 |
+
setAttributes: setAttributes,
|
131704 |
+
loadGoogleFonts: { value: submitTextloadGoogleFonts, label: __("submitTextloadGoogleFonts", "ultimate-addons-for-gutenberg") },
|
131705 |
+
fontFamily: { value: submitTextFontFamily, label: __("submitTextFontFamily", "ultimate-addons-for-gutenberg") },
|
131706 |
+
fontWeight: { value: submitTextFontWeight, label: __("submitTextFontWeight", "ultimate-addons-for-gutenberg") },
|
131707 |
+
fontSubset: { value: submitTextFontSubset, label: __("submitTextFontSubset", "ultimate-addons-for-gutenberg") },
|
131708 |
+
fontSizeType: { value: submitTextFontSizeType, label: __("submitTextFontSizeType", "ultimate-addons-for-gutenberg") },
|
131709 |
+
fontSize: { value: submitTextFontSize, label: __("submitTextFontSize", "ultimate-addons-for-gutenberg") },
|
131710 |
+
fontSizeMobile: { value: submitTextFontSizeMobile, label: __("submitTextFontSizeMobile", "ultimate-addons-for-gutenberg") },
|
131711 |
+
fontSizeTablet: { value: submitTextFontSizeTablet, label: __("submitTextFontSizeTablet", "ultimate-addons-for-gutenberg") },
|
131712 |
+
lineHeightType: { value: submitTextLineHeightType, label: __("submitTextLineHeightType", "ultimate-addons-for-gutenberg") },
|
131713 |
+
lineHeight: { value: submitTextLineHeight, label: __("submitTextLineHeight", "ultimate-addons-for-gutenberg") },
|
131714 |
+
lineHeightMobile: { value: submitTextLineHeightMobile, label: __("submitTextLineHeightMobile", "ultimate-addons-for-gutenberg") },
|
131715 |
+
lineHeightTablet: { value: submitTextLineHeightTablet, label: __("submitTextLineHeightTablet", "ultimate-addons-for-gutenberg") }
|
131716 |
+
})
|
131717 |
+
);
|
131718 |
+
};
|
131719 |
+
|
131720 |
+
var afterSubmitActions = function afterSubmitActions() {
|
131721 |
+
return wp.element.createElement(
|
131722 |
+
PanelBody,
|
131723 |
+
{
|
131724 |
+
title: __("After Submit Actions"),
|
131725 |
+
initialOpen: false,
|
131726 |
+
className: "uagb__url-panel-body"
|
131727 |
+
},
|
131728 |
+
wp.element.createElement(CheckboxControl, {
|
131729 |
+
label: "Email",
|
131730 |
+
checked: sendAfterSubmitEmail,
|
131731 |
+
onChange: function onChange(value) {
|
131732 |
+
return setAttributes({ sendAfterSubmitEmail: value });
|
131733 |
+
}
|
131734 |
+
}),
|
131735 |
+
true === sendAfterSubmitEmail && wp.element.createElement(
|
131736 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
131737 |
+
null,
|
131738 |
+
wp.element.createElement(
|
131739 |
+
TabPanel,
|
131740 |
+
{ className: "uagb-size-type-field-tabs uagb-size-type-field__common-tabs uagb-inline-margin uagb-email-controls-tabs", activeClass: "active-tab",
|
131741 |
+
tabs: [{
|
131742 |
+
name: "to",
|
131743 |
+
title: "To",
|
131744 |
+
className: "uagb-desktop-tab uagb-responsive-tabs"
|
131745 |
+
}, {
|
131746 |
+
name: "cc",
|
131747 |
+
title: "CC",
|
131748 |
+
className: "uagb-tablet-tab uagb-responsive-tabs"
|
131749 |
+
}, {
|
131750 |
+
name: "bcc",
|
131751 |
+
title: "BCC",
|
131752 |
+
className: "uagb-mobile-tab uagb-responsive-tabs"
|
131753 |
+
}] },
|
131754 |
+
function (tab) {
|
131755 |
+
var tabout = void 0;
|
131756 |
+
|
131757 |
+
if ("to" === tab.name) {
|
131758 |
+
tabout = wp.element.createElement(TextControl, {
|
131759 |
+
label: __("To", "ultimate-addons-for-gutenberg"),
|
131760 |
+
placeholder: __("Email", "ultimate-addons-for-gutenberg"),
|
131761 |
+
value: afterSubmitToEmail,
|
131762 |
+
onChange: function onChange(value) {
|
131763 |
+
return setAttributes({ afterSubmitToEmail: value });
|
131764 |
+
}
|
131765 |
+
});
|
131766 |
+
} else if ("cc" === tab.name) {
|
131767 |
+
tabout = wp.element.createElement(TextControl, {
|
131768 |
+
label: __("CC", "ultimate-addons-for-gutenberg"),
|
131769 |
+
placeholder: __("Email", "ultimate-addons-for-gutenberg"),
|
131770 |
+
value: afterSubmitCcEmail,
|
131771 |
+
onChange: function onChange(value) {
|
131772 |
+
return setAttributes({ afterSubmitCcEmail: value });
|
131773 |
+
}
|
131774 |
+
});
|
131775 |
+
} else {
|
131776 |
+
tabout = wp.element.createElement(TextControl, {
|
131777 |
+
label: __("BCC", "ultimate-addons-for-gutenberg"),
|
131778 |
+
placeholder: __("Email", "ultimate-addons-for-gutenberg"),
|
131779 |
+
value: afterSubmitBccEmail,
|
131780 |
+
onChange: function onChange(value) {
|
131781 |
+
return setAttributes({ afterSubmitBccEmail: value });
|
131782 |
+
}
|
131783 |
+
});
|
131784 |
+
}
|
131785 |
+
|
131786 |
+
return wp.element.createElement(
|
131787 |
+
"div",
|
131788 |
+
{ className: "uagb-form-emailto" },
|
131789 |
+
tabout
|
131790 |
+
);
|
131791 |
+
}
|
131792 |
+
),
|
131793 |
+
wp.element.createElement(TextControl, {
|
131794 |
+
label: __("Subject", "ultimate-addons-for-gutenberg"),
|
131795 |
+
placeholder: __("Subject", "ultimate-addons-for-gutenberg"),
|
131796 |
+
value: afterSubmitEmailSubject,
|
131797 |
+
onChange: function onChange(value) {
|
131798 |
+
return setAttributes({ afterSubmitEmailSubject: value });
|
131799 |
+
}
|
131800 |
+
})
|
131801 |
+
)
|
131802 |
+
);
|
131803 |
+
};
|
131804 |
+
|
131805 |
+
var designSettings = function designSettings() {
|
131806 |
+
return wp.element.createElement(
|
131807 |
+
PanelBody,
|
131808 |
+
{
|
131809 |
+
title: __("Design", "ultimate-addons-for-gutenberg"),
|
131810 |
+
initialOpen: false,
|
131811 |
+
className: "uagb__url-panel-body"
|
131812 |
+
},
|
131813 |
+
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_5__components_typography__["a" /* default */], {
|
131814 |
+
label: __("Label Typography", "ultimate-addons-for-gutenberg"),
|
131815 |
+
attributes: attributes,
|
131816 |
+
setAttributes: setAttributes,
|
131817 |
+
loadGoogleFonts: { value: labelloadGoogleFonts, label: __("labelloadGoogleFonts", "ultimate-addons-for-gutenberg") },
|
131818 |
+
fontFamily: { value: labelFontFamily, label: __("labelFontFamily", "ultimate-addons-for-gutenberg") },
|
131819 |
+
fontWeight: { value: labelFontWeight, label: __("labelFontWeight", "ultimate-addons-for-gutenberg") },
|
131820 |
+
fontSubset: { value: labelFontSubset, label: __("labelFontSubset", "ultimate-addons-for-gutenberg") },
|
131821 |
+
fontSizeType: { value: labelFontSizeType, label: __("labelFontSizeType", "ultimate-addons-for-gutenberg") },
|
131822 |
+
fontSize: { value: labelFontSize, label: __("labelFontSize", "ultimate-addons-for-gutenberg") },
|
131823 |
+
fontSizeMobile: { value: labelFontSizeMobile, label: __("labelFontSizeMobile", "ultimate-addons-for-gutenberg") },
|
131824 |
+
fontSizeTablet: { value: labelFontSizeTablet, label: __("labelFontSizeTablet", "ultimate-addons-for-gutenberg") },
|
131825 |
+
lineHeightType: { value: labelLineHeightType, label: __("labelLineHeightType", "ultimate-addons-for-gutenberg") },
|
131826 |
+
lineHeight: { value: labelLineHeight, label: __("labelLineHeight", "ultimate-addons-for-gutenberg") },
|
131827 |
+
lineHeightMobile: { value: labelLineHeightMobile, label: __("labelLineHeightMobile", "ultimate-addons-for-gutenberg") },
|
131828 |
+
lineHeightTablet: { value: labelLineHeightTablet, label: __("labelLineHeightTablet", "ultimate-addons-for-gutenberg") }
|
131829 |
+
}),
|
131830 |
+
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_5__components_typography__["a" /* default */], {
|
131831 |
+
label: __("Input Typography", "ultimate-addons-for-gutenberg"),
|
131832 |
+
attributes: attributes,
|
131833 |
+
setAttributes: setAttributes,
|
131834 |
+
loadGoogleFonts: { value: inputloadGoogleFonts, label: __("inputloadGoogleFonts", "ultimate-addons-for-gutenberg") },
|
131835 |
+
fontFamily: { value: inputFontFamily, label: __("inputFontFamily", "ultimate-addons-for-gutenberg") },
|
131836 |
+
fontWeight: { value: inputFontWeight, label: __("inputFontWeight", "ultimate-addons-for-gutenberg") },
|
131837 |
+
fontSubset: { value: inputFontSubset, label: __("inputFontSubset", "ultimate-addons-for-gutenberg") },
|
131838 |
+
fontSizeType: { value: inputFontSizeType, label: __("inputFontSizeType", "ultimate-addons-for-gutenberg") },
|
131839 |
+
fontSize: { value: inputFontSize, label: __("inputFontSize", "ultimate-addons-for-gutenberg") },
|
131840 |
+
fontSizeMobile: { value: inputFontSizeMobile, label: __("inputFontSizeMobile", "ultimate-addons-for-gutenberg") },
|
131841 |
+
fontSizeTablet: { value: inputFontSizeTablet, label: __("inputFontSizeTablet", "ultimate-addons-for-gutenberg") },
|
131842 |
+
lineHeightType: { value: inputLineHeightType, label: __("inputLineHeightType", "ultimate-addons-for-gutenberg") },
|
131843 |
+
lineHeight: { value: inputLineHeight, label: __("inputLineHeight", "ultimate-addons-for-gutenberg") },
|
131844 |
+
lineHeightMobile: { value: inputLineHeightMobile, label: __("inputLineHeightMobile", "ultimate-addons-for-gutenberg") },
|
131845 |
+
lineHeightTablet: { value: inputLineHeightTablet, label: __("inputLineHeightTablet", "ultimate-addons-for-gutenberg") }
|
131846 |
+
}),
|
131847 |
+
wp.element.createElement(RangeControl, {
|
131848 |
+
label: __("Checkbox/Radio Size", "ultimate-addons-for-gutenberg"),
|
131849 |
+
value: toggleSize,
|
131850 |
+
onChange: function onChange(value) {
|
131851 |
+
return setAttributes({ toggleSize: value });
|
131852 |
+
},
|
131853 |
+
min: 0,
|
131854 |
+
max: 50,
|
131855 |
+
allowReset: true
|
131856 |
+
}),
|
131857 |
+
wp.element.createElement(RangeControl, {
|
131858 |
+
label: __("Toggle Width", "ultimate-addons-for-gutenberg"),
|
131859 |
+
value: toggleWidthSize,
|
131860 |
+
onChange: function onChange(value) {
|
131861 |
+
return setAttributes({ toggleWidthSize: value });
|
131862 |
+
},
|
131863 |
+
min: 0,
|
131864 |
+
max: 50,
|
131865 |
+
allowReset: true
|
131866 |
+
}),
|
131867 |
+
wp.element.createElement(RangeControl, {
|
131868 |
+
label: __("Toggle Height", "ultimate-addons-for-gutenberg"),
|
131869 |
+
value: toggleHeightSize,
|
131870 |
+
onChange: function onChange(value) {
|
131871 |
+
return setAttributes({ toggleHeightSize: value });
|
131872 |
+
},
|
131873 |
+
min: 0,
|
131874 |
+
max: 50,
|
131875 |
+
allowReset: true
|
131876 |
+
}),
|
131877 |
+
wp.element.createElement(
|
131878 |
+
"p",
|
131879 |
+
{ className: "uagb-setting-label" },
|
131880 |
+
__("Toggle Active Color", 'ultimate-addons-for-gutenberg'),
|
131881 |
+
wp.element.createElement(
|
131882 |
+
"span",
|
131883 |
+
{ className: "components-base-control__label" },
|
131884 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: toggleActiveColor } })
|
131885 |
+
)
|
131886 |
+
),
|
131887 |
+
wp.element.createElement(ColorPalette, {
|
131888 |
+
value: toggleActiveColor,
|
131889 |
+
onChange: function onChange(colorValue) {
|
131890 |
+
return setAttributes({ toggleActiveColor: colorValue });
|
131891 |
+
},
|
131892 |
+
allowReset: true
|
131893 |
+
}),
|
131894 |
+
wp.element.createElement(
|
131895 |
+
"p",
|
131896 |
+
{ className: "uagb-setting-label" },
|
131897 |
+
__("Label Color", "ultimate-addons-for-gutenberg"),
|
131898 |
+
wp.element.createElement(
|
131899 |
+
"span",
|
131900 |
+
{ className: "components-base-control__label" },
|
131901 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: labelColor } })
|
131902 |
+
)
|
131903 |
+
),
|
131904 |
+
wp.element.createElement(ColorPalette, {
|
131905 |
+
value: labelColor,
|
131906 |
+
onChange: function onChange(colorValue) {
|
131907 |
+
return setAttributes({ labelColor: colorValue });
|
131908 |
+
},
|
131909 |
+
allowReset: true
|
131910 |
+
}),
|
131911 |
+
wp.element.createElement(
|
131912 |
+
"p",
|
131913 |
+
{ className: "uagb-setting-label" },
|
131914 |
+
__("Input Color", "ultimate-addons-for-gutenberg"),
|
131915 |
+
wp.element.createElement(
|
131916 |
+
"span",
|
131917 |
+
{ className: "components-base-control__label" },
|
131918 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: inputColor } })
|
131919 |
+
)
|
131920 |
+
),
|
131921 |
+
wp.element.createElement(ColorPalette, {
|
131922 |
+
value: inputColor,
|
131923 |
+
onChange: function onChange(colorValue) {
|
131924 |
+
return setAttributes({ inputColor: colorValue });
|
131925 |
+
},
|
131926 |
+
allowReset: true
|
131927 |
+
}),
|
131928 |
+
wp.element.createElement(
|
131929 |
+
"p",
|
131930 |
+
{ className: "uagb-setting-label" },
|
131931 |
+
__("Field Background Color", "ultimate-addons-for-gutenberg"),
|
131932 |
+
wp.element.createElement(
|
131933 |
+
"span",
|
131934 |
+
{ className: "components-base-control__label" },
|
131935 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: bgColor } })
|
131936 |
+
)
|
131937 |
+
),
|
131938 |
+
wp.element.createElement(ColorPalette, {
|
131939 |
+
value: bgColor,
|
131940 |
+
onChange: function onChange(colorValue) {
|
131941 |
+
return setAttributes({ bgColor: colorValue });
|
131942 |
+
},
|
131943 |
+
allowReset: true
|
131944 |
+
}),
|
131945 |
+
wp.element.createElement(
|
131946 |
+
"p",
|
131947 |
+
{ className: "uagb-setting-label" },
|
131948 |
+
__("Field Placeholder Color", "ultimate-addons-for-gutenberg"),
|
131949 |
+
wp.element.createElement(
|
131950 |
+
"span",
|
131951 |
+
{ className: "components-base-control__label" },
|
131952 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: inputplaceholderColor } })
|
131953 |
+
)
|
131954 |
+
),
|
131955 |
+
wp.element.createElement(ColorPalette, {
|
131956 |
+
value: inputplaceholderColor,
|
131957 |
+
onChange: function onChange(colorValue) {
|
131958 |
+
return setAttributes({ inputplaceholderColor: colorValue });
|
131959 |
+
},
|
131960 |
+
allowReset: true
|
131961 |
+
}),
|
131962 |
+
wp.element.createElement(
|
131963 |
+
"p",
|
131964 |
+
{ className: "uagb-setting-label" },
|
131965 |
+
__("Field Active Color", "ultimate-addons-for-gutenberg"),
|
131966 |
+
wp.element.createElement(
|
131967 |
+
"span",
|
131968 |
+
{ className: "components-base-control__label" },
|
131969 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: inputactiveColor } })
|
131970 |
+
)
|
131971 |
+
),
|
131972 |
+
wp.element.createElement(ColorPalette, {
|
131973 |
+
value: inputactiveColor,
|
131974 |
+
onChange: function onChange(colorValue) {
|
131975 |
+
return setAttributes({ inputactiveColor: colorValue });
|
131976 |
+
},
|
131977 |
+
allowReset: true
|
131978 |
+
}),
|
131979 |
+
wp.element.createElement(SelectControl, {
|
131980 |
+
label: __("Border Style", "ultimate-addons-for-gutenberg"),
|
131981 |
+
value: inputborderStyle,
|
131982 |
+
onChange: function onChange(value) {
|
131983 |
+
return setAttributes({ inputborderStyle: value });
|
131984 |
+
},
|
131985 |
+
options: [{ value: "none", label: __("None", "ultimate-addons-for-gutenberg") }, { value: "solid", label: __("Solid", "ultimate-addons-for-gutenberg") }, { value: "dotted", label: __("Dotted", "ultimate-addons-for-gutenberg") }, { value: "dashed", label: __("Dashed", "ultimate-addons-for-gutenberg") }, { value: "double", label: __("Double", "ultimate-addons-for-gutenberg") }, { value: "groove", label: __("Groove", "ultimate-addons-for-gutenberg") }, { value: "inset", label: __("Inset", "ultimate-addons-for-gutenberg") }, { value: "outset", label: __("Outset", "ultimate-addons-for-gutenberg") }, { value: "ridge", label: __("Ridge", "ultimate-addons-for-gutenberg") }]
|
131986 |
+
}),
|
131987 |
+
"none" != inputborderStyle && wp.element.createElement(
|
131988 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
131989 |
+
null,
|
131990 |
+
wp.element.createElement(RangeControl, {
|
131991 |
+
label: __("Border Width", "ultimate-addons-for-gutenberg"),
|
131992 |
+
value: inputborderWidth,
|
131993 |
+
onChange: function onChange(value) {
|
131994 |
+
return setAttributes({ inputborderWidth: value });
|
131995 |
+
},
|
131996 |
+
min: 0,
|
131997 |
+
max: 50,
|
131998 |
+
allowReset: true
|
131999 |
+
}),
|
132000 |
+
"boxed" == formStyle && wp.element.createElement(RangeControl, {
|
132001 |
+
label: __("Border Radius", "ultimate-addons-for-gutenberg"),
|
132002 |
+
value: inputborderRadius,
|
132003 |
+
onChange: function onChange(value) {
|
132004 |
+
return setAttributes({ inputborderRadius: value });
|
132005 |
+
},
|
132006 |
+
min: 0,
|
132007 |
+
max: 100,
|
132008 |
+
allowReset: true
|
132009 |
+
}),
|
132010 |
+
wp.element.createElement(
|
132011 |
+
"p",
|
132012 |
+
{ className: "uagb-setting-label" },
|
132013 |
+
__("Border Color", "ultimate-addons-for-gutenberg"),
|
132014 |
+
wp.element.createElement(
|
132015 |
+
"span",
|
132016 |
+
{ className: "components-base-control__label" },
|
132017 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: inputborderColor } })
|
132018 |
+
)
|
132019 |
+
),
|
132020 |
+
wp.element.createElement(ColorPalette, {
|
132021 |
+
value: inputborderColor,
|
132022 |
+
onChange: function onChange(colorValue) {
|
132023 |
+
return setAttributes({ inputborderColor: colorValue });
|
132024 |
+
},
|
132025 |
+
allowReset: true
|
132026 |
+
}),
|
132027 |
+
wp.element.createElement(
|
132028 |
+
"p",
|
132029 |
+
{ className: "uagb-setting-label" },
|
132030 |
+
__("Border Hover Color", "ultimate-addons-for-gutenberg"),
|
132031 |
+
wp.element.createElement(
|
132032 |
+
"span",
|
132033 |
+
{ className: "components-base-control__label" },
|
132034 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: inputborderHoverColor } })
|
132035 |
+
)
|
132036 |
+
),
|
132037 |
+
wp.element.createElement(ColorPalette, {
|
132038 |
+
value: inputborderHoverColor,
|
132039 |
+
onChange: function onChange(colorValue) {
|
132040 |
+
return setAttributes({ inputborderHoverColor: colorValue });
|
132041 |
+
},
|
132042 |
+
allowReset: true
|
132043 |
+
})
|
132044 |
+
),
|
132045 |
+
wp.element.createElement(RangeControl, {
|
132046 |
+
label: __("Spacing between fields (px)", "ultimate-addons-for-gutenberg"),
|
132047 |
+
className: "uagb-padding-control",
|
132048 |
+
value: fieldGap,
|
132049 |
+
onChange: function onChange(value) {
|
132050 |
+
return setAttributes({ fieldGap: value });
|
132051 |
+
},
|
132052 |
+
min: 0,
|
132053 |
+
max: 100
|
132054 |
+
}),
|
132055 |
+
wp.element.createElement(
|
132056 |
+
"h2",
|
132057 |
+
null,
|
132058 |
+
__("Field Padding (px)", "ultimate-addons-for-gutenberg")
|
132059 |
+
),
|
132060 |
+
wp.element.createElement(RangeControl, {
|
132061 |
+
label: __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_block_icons__["a" /* default */].vertical_spacing,
|
132062 |
+
className: "uagb-padding-control",
|
132063 |
+
value: vPaddingField,
|
132064 |
+
onChange: function onChange(value) {
|
132065 |
+
return setAttributes({ vPaddingField: value });
|
132066 |
+
},
|
132067 |
+
min: 0,
|
132068 |
+
max: 100
|
132069 |
+
}),
|
132070 |
+
wp.element.createElement(RangeControl, {
|
132071 |
+
label: __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_block_icons__["a" /* default */].horizontal_spacing,
|
132072 |
+
className: "uagb-padding-control",
|
132073 |
+
value: hPaddingField,
|
132074 |
+
onChange: function onChange(value) {
|
132075 |
+
return setAttributes({ hPaddingField: value });
|
132076 |
+
},
|
132077 |
+
min: 0,
|
132078 |
+
max: 100
|
132079 |
+
})
|
132080 |
+
);
|
132081 |
+
};
|
132082 |
+
|
132083 |
+
var googleReCaptcha = function googleReCaptcha() {
|
132084 |
+
return wp.element.createElement(
|
132085 |
+
PanelBody,
|
132086 |
+
{
|
132087 |
+
title: __("Google reCAPTCHA", "ultimate-addons-for-gutenberg"),
|
132088 |
+
initialOpen: false
|
132089 |
+
},
|
132090 |
+
wp.element.createElement(
|
132091 |
+
"p",
|
132092 |
+
{ className: "uagb-form-notice" },
|
132093 |
+
__('P.S. Note that If you are using two forms on the same page with the different reCAPTCHA versions (V2 checkbox and V3), it will create conflicts between the versions. Kindly avoid using different versions on same page. ', "ultimate-addons-for-gutenberg")
|
132094 |
+
),
|
132095 |
+
wp.element.createElement(ToggleControl, {
|
132096 |
+
label: __("Enable reCAPTCHA ", "ultimate-addons-for-gutenberg"),
|
132097 |
+
checked: reCaptchaEnable,
|
132098 |
+
onChange: function onChange(value) {
|
132099 |
+
return setAttributes({ reCaptchaEnable: !reCaptchaEnable });
|
132100 |
+
}
|
132101 |
+
}),
|
132102 |
+
reCaptchaEnable && wp.element.createElement(SelectControl, {
|
132103 |
+
label: __("Select Version", "ultimate-addons-for-gutenberg"),
|
132104 |
+
value: reCaptchaType,
|
132105 |
+
onChange: function onChange(value) {
|
132106 |
+
return setAttributes({ reCaptchaType: value });
|
132107 |
+
},
|
132108 |
+
options: [{ value: "v2", label: __("V2", "ultimate-addons-for-gutenberg") }, { value: "v3", label: __("V3", "ultimate-addons-for-gutenberg") }]
|
132109 |
+
}),
|
132110 |
+
reCaptchaEnable && "v2" === reCaptchaType && wp.element.createElement(
|
132111 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
132112 |
+
null,
|
132113 |
+
wp.element.createElement(TextControl, {
|
132114 |
+
label: __("Site Key", "ultimate-addons-for-gutenberg"),
|
132115 |
+
value: reCaptchaSiteKeyV2,
|
132116 |
+
onChange: function onChange(value) {
|
132117 |
+
return setAttributes({ reCaptchaSiteKeyV2: value });
|
132118 |
+
},
|
132119 |
+
placeholder: __("Enter v2 Keys", "ultimate-addons-for-gutenberg")
|
132120 |
+
|
132121 |
+
}),
|
132122 |
+
wp.element.createElement(TextControl, {
|
132123 |
+
label: __("Secret Key", "ultimate-addons-for-gutenberg"),
|
132124 |
+
value: reCaptchaSecretKeyV2,
|
132125 |
+
onChange: function onChange(value) {
|
132126 |
+
return setAttributes({ reCaptchaSecretKeyV2: value });
|
132127 |
+
},
|
132128 |
+
placeholder: __("Enter v2 Keys", "ultimate-addons-for-gutenberg")
|
132129 |
+
|
132130 |
+
})
|
132131 |
+
),
|
132132 |
+
reCaptchaEnable && "v3" === reCaptchaType && wp.element.createElement(
|
132133 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
132134 |
+
null,
|
132135 |
+
wp.element.createElement(TextControl, {
|
132136 |
+
label: __("Site Key", "ultimate-addons-for-gutenberg"),
|
132137 |
+
value: reCaptchaSiteKeyV3,
|
132138 |
+
onChange: function onChange(value) {
|
132139 |
+
return setAttributes({ reCaptchaSiteKeyV3: value });
|
132140 |
+
},
|
132141 |
+
placeholder: __("Enter v3 Keys", "ultimate-addons-for-gutenberg")
|
132142 |
+
|
132143 |
+
}),
|
132144 |
+
wp.element.createElement(TextControl, {
|
132145 |
+
label: __("Secret Key", "ultimate-addons-for-gutenberg"),
|
132146 |
+
value: reCaptchaSecretKeyV3,
|
132147 |
+
onChange: function onChange(value) {
|
132148 |
+
return setAttributes({ reCaptchaSecretKeyV3: value });
|
132149 |
+
},
|
132150 |
+
placeholder: __("Enter v3 Keys", "ultimate-addons-for-gutenberg")
|
132151 |
+
|
132152 |
+
}),
|
132153 |
+
wp.element.createElement(ToggleControl, {
|
132154 |
+
label: __("Hide reCAPTCHA Badge", "ultimate-addons-for-gutenberg"),
|
132155 |
+
checked: hidereCaptchaBatch,
|
132156 |
+
onChange: function onChange(value) {
|
132157 |
+
return setAttributes({ hidereCaptchaBatch: !hidereCaptchaBatch });
|
132158 |
+
}
|
132159 |
+
})
|
132160 |
+
),
|
132161 |
+
wp.element.createElement(
|
132162 |
+
"h2",
|
132163 |
+
null,
|
132164 |
+
" ",
|
132165 |
+
__("Know More", "ultimate-addons-for-gutenberg")
|
132166 |
+
),
|
132167 |
+
wp.element.createElement(
|
132168 |
+
ExternalLink,
|
132169 |
+
{ href: "https://www.google.com/recaptcha/admin/create" },
|
132170 |
+
__("Get Keys", "ultimate-addons-for-gutenberg")
|
132171 |
+
),
|
132172 |
+
wp.element.createElement(
|
132173 |
+
ExternalLink,
|
132174 |
+
{ href: "https://developers.google.com/recaptcha/intro" },
|
132175 |
+
__(" | Documentation", "ultimate-addons-for-gutenberg")
|
132176 |
+
)
|
132177 |
+
);
|
132178 |
+
};
|
132179 |
+
|
132180 |
+
var renderButtonHtml = function renderButtonHtml() {
|
132181 |
+
|
132182 |
+
return wp.element.createElement(
|
132183 |
+
"button",
|
132184 |
+
{ onClick: _this3.onSubmitClick, className: "uagb-forms-main-submit-button" },
|
132185 |
+
wp.element.createElement(RichText, {
|
132186 |
+
tagName: "div",
|
132187 |
+
placeholder: __("Submit", "ultimate-addons-for-gutenberg"),
|
132188 |
+
value: submitButtonText,
|
132189 |
+
onChange: function onChange(value) {
|
132190 |
+
return setAttributes({ submitButtonText: value });
|
132191 |
+
},
|
132192 |
+
className: "uagb-forms-main-submit-button-text",
|
132193 |
+
multiline: false,
|
132194 |
+
allowedFormats: ['core/bold', 'core/italic', 'core/strikethrough']
|
132195 |
+
})
|
132196 |
+
);
|
132197 |
+
};
|
132198 |
+
|
132199 |
+
if (!hasInnerBlocks) {
|
132200 |
+
return wp.element.createElement(
|
132201 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
132202 |
+
null,
|
132203 |
+
wp.element.createElement(__experimentalBlockVariationPicker, {
|
132204 |
+
icon: __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_block_icons__["a" /* default */].columns,
|
132205 |
+
label: uagb_blocks_info.blocks["uagb/forms"]["title"],
|
132206 |
+
instructions: __('Select a variation to start with.', "ultimate-addons-for-gutenberg"),
|
132207 |
+
variations: variations,
|
132208 |
+
allowSkip: true,
|
132209 |
+
onSelect: function onSelect(nextVariation) {
|
132210 |
+
return _this3.blockVariationPickerOnSelect(nextVariation);
|
132211 |
+
},
|
132212 |
+
className: "uagb-forms-variations"
|
132213 |
+
})
|
132214 |
+
);
|
132215 |
+
}
|
132216 |
+
|
132217 |
+
return wp.element.createElement(
|
132218 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
132219 |
+
null,
|
132220 |
+
wp.element.createElement(
|
132221 |
+
InspectorControls,
|
132222 |
+
null,
|
132223 |
+
generalSettings(),
|
132224 |
+
submitButtonSettings(),
|
132225 |
+
afterSubmitActions(),
|
132226 |
+
designSettings(),
|
132227 |
+
googleReCaptcha()
|
132228 |
+
),
|
132229 |
+
wp.element.createElement(
|
132230 |
+
"div",
|
132231 |
+
{ className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()("uagb-forms__outer-wrap", "uagb-block-" + block_id, "uagb-forms__" + buttonSize + "-btn")
|
132232 |
+
},
|
132233 |
+
wp.element.createElement(
|
132234 |
+
"form",
|
132235 |
+
{ className: "uagb-forms-main-form", name: "uagb-form-" + block_id },
|
132236 |
+
wp.element.createElement(InnerBlocks, {
|
132237 |
+
allowedBlocks: ALLOWED_BLOCKS
|
132238 |
+
}),
|
132239 |
+
wp.element.createElement(
|
132240 |
+
"div",
|
132241 |
+
{ className: "uagb-forms-form-hidden-data" },
|
132242 |
+
reCaptchaEnable && wp.element.createElement("input", { type: "hidden", id: "g-recaptcha-response", className: "uagb-forms-recaptcha" }),
|
132243 |
+
wp.element.createElement("input", { type: "hidden", name: "uagb_forms_form_label", value: formLabel }),
|
132244 |
+
wp.element.createElement("input", { type: "hidden", name: "uagb_forms_form_id", value: "uagb-form-" + block_id })
|
132245 |
+
),
|
132246 |
+
reCaptchaEnable && "v2" === reCaptchaType && reCaptchaSiteKeyV2 && reCaptchaSecretKeyV2 && wp.element.createElement(
|
132247 |
+
__WEBPACK_IMPORTED_MODULE_1_react__["Fragment"],
|
132248 |
+
null,
|
132249 |
+
wp.element.createElement("div", { className: "g-recaptcha uagb-forms-field-set", "data-sitekey": reCaptchaSiteKeyV2 }),
|
132250 |
+
wp.element.createElement("div", { className: "uagb-form-reacaptcha-error-" + block_id })
|
132251 |
+
),
|
132252 |
+
wp.element.createElement(
|
132253 |
+
"div",
|
132254 |
+
{ className: "uagb-forms-main-submit-button-wrap" },
|
132255 |
+
renderButtonHtml()
|
132256 |
+
)
|
132257 |
+
)
|
132258 |
+
),
|
132259 |
+
loadsubmittextGoogleFonts,
|
132260 |
+
loadlabelGoogleFonts,
|
132261 |
+
loadinputGoogleFonts
|
132262 |
+
);
|
132263 |
+
}
|
132264 |
+
}, {
|
132265 |
+
key: "componentDidMount",
|
132266 |
+
value: function componentDidMount() {
|
132267 |
+
var _props2 = this.props,
|
132268 |
+
attributes = _props2.attributes,
|
132269 |
+
setAttributes = _props2.setAttributes;
|
132270 |
+
|
132271 |
+
// Assigning block_id in the attribute.
|
132272 |
+
|
132273 |
+
setAttributes({ block_id: this.props.clientId.substr(0, 8) });
|
132274 |
+
|
132275 |
+
// Pushing Style tag for this block css.
|
132276 |
+
var $style = document.createElement("style");
|
132277 |
+
$style.setAttribute("id", "uagb-style-forms-" + this.props.clientId.substr(0, 8));
|
132278 |
+
document.head.appendChild($style);
|
132279 |
+
|
132280 |
+
var id = this.props.clientId;
|
132281 |
+
window.addEventListener("load", this.renderReadyClasses(id));
|
132282 |
+
}
|
132283 |
+
}, {
|
132284 |
+
key: "componentDidUpdate",
|
132285 |
+
value: function componentDidUpdate(prevProps, prevState) {
|
132286 |
+
|
132287 |
+
var element = document.getElementById("uagb-style-forms-" + this.props.clientId.substr(0, 8));
|
132288 |
+
|
132289 |
+
if (null !== element && undefined !== element) {
|
132290 |
+
element.innerHTML = Object(__WEBPACK_IMPORTED_MODULE_2__styling__["a" /* default */])(this.props);
|
132291 |
+
}
|
132292 |
+
}
|
132293 |
+
}, {
|
132294 |
+
key: "renderReadyClasses",
|
132295 |
+
value: function renderReadyClasses(id) {
|
132296 |
+
var mainDiv = document.getElementById("block-" + id);
|
132297 |
+
var formscope = mainDiv.getElementsByClassName('uagb-forms__outer-wrap');
|
132298 |
+
|
132299 |
+
if (null !== formscope[0] && undefined !== formscope[0]) {
|
132300 |
+
|
132301 |
+
var editorwrap = formscope[0].children;
|
132302 |
+
var formInnerWrap = editorwrap[0].children;
|
132303 |
+
var editorBlockWrap = formInnerWrap[0].getElementsByClassName('block-editor-block-list__layout');
|
132304 |
+
var sibling = editorBlockWrap[0].children;
|
132305 |
+
|
132306 |
+
for (var index = 0; index < sibling.length; index++) {
|
132307 |
+
|
132308 |
+
if (sibling[index].classList.contains("uag-col-2") && sibling[index + 1].classList.contains("uag-col-2")) {
|
132309 |
+
var div = document.createElement('div');
|
132310 |
+
div.className = 'uag-col-2-wrap uag-col-wrap-' + index;
|
132311 |
+
sibling[index + 1].after(div);
|
132312 |
+
var wrapper_div = formscope[0].getElementsByClassName('uag-col-wrap-' + index);
|
132313 |
+
wrapper_div[0].appendChild(sibling[index]);
|
132314 |
+
wrapper_div[0].appendChild(sibling[index]);
|
132315 |
+
} else if (sibling[index].classList.contains("uag-col-3") && sibling[index + 1].classList.contains("uag-col-3") && sibling[index + 2].classList.contains("uag-col-3")) {
|
132316 |
+
var _div = document.createElement('div');
|
132317 |
+
_div.className = 'uag-col-3-wrap uag-col-wrap-' + index;
|
132318 |
+
sibling[index + 2].after(_div);
|
132319 |
+
var _wrapper_div = formscope[0].getElementsByClassName('uag-col-wrap-' + index);
|
132320 |
+
_wrapper_div[0].appendChild(sibling[index]);
|
132321 |
+
_wrapper_div[0].appendChild(sibling[index]);
|
132322 |
+
_wrapper_div[0].appendChild(sibling[index]);
|
132323 |
+
} else if (sibling[index].classList.contains("uag-col-4") && sibling[index + 1].classList.contains("uag-col-4") && sibling[index + 2].classList.contains("uag-col-4") && sibling[index + 3].classList.contains("uag-col-4")) {
|
132324 |
+
var _div2 = document.createElement('div');
|
132325 |
+
_div2.className = 'uag-col-4-wrap uag-col-wrap-' + index;
|
132326 |
+
sibling[index + 3].after(_div2);
|
132327 |
+
var _wrapper_div2 = formscope[0].getElementsByClassName('uag-col-wrap-' + index);
|
132328 |
+
_wrapper_div2[0].appendChild(sibling[index]);
|
132329 |
+
_wrapper_div2[0].appendChild(sibling[index]);
|
132330 |
+
_wrapper_div2[0].appendChild(sibling[index]);
|
132331 |
+
_wrapper_div2[0].appendChild(sibling[index]);
|
132332 |
+
}
|
132333 |
+
}
|
132334 |
+
}
|
132335 |
+
}
|
132336 |
+
}]);
|
132337 |
+
|
132338 |
+
return UAGBFormsEdit;
|
132339 |
+
}(Component);
|
132340 |
+
|
132341 |
+
var applyWithSelect = withSelect(function (select, props) {
|
132342 |
+
var _select = select('core/block-editor'),
|
132343 |
+
getBlocks = _select.getBlocks,
|
132344 |
+
getBlocksByClientId = _select.getBlocksByClientId;
|
132345 |
+
|
132346 |
+
var _select2 = select('core/blocks'),
|
132347 |
+
getBlockType = _select2.getBlockType,
|
132348 |
+
getBlockVariations = _select2.getBlockVariations,
|
132349 |
+
getDefaultBlockVariation = _select2.getDefaultBlockVariation;
|
132350 |
+
|
132351 |
+
var innerBlocks = getBlocks(props.clientId);
|
132352 |
+
|
132353 |
+
var _useDispatch = useDispatch('core/block-editor'),
|
132354 |
+
replaceInnerBlocks = _useDispatch.replaceInnerBlocks;
|
132355 |
+
|
132356 |
+
return {
|
132357 |
+
// Subscribe to changes of the innerBlocks to control the display of the layout selection placeholder.
|
132358 |
+
innerBlocks: innerBlocks,
|
132359 |
+
hasInnerBlocks: select('core/block-editor').getBlocks(props.clientId).length > 0,
|
132360 |
+
|
132361 |
+
blockType: getBlockType(props.name),
|
132362 |
+
defaultVariation: typeof getDefaultBlockVariation === 'undefined' ? null : getDefaultBlockVariation(props.name),
|
132363 |
+
variations: typeof getBlockVariations === 'undefined' ? null : getBlockVariations(props.name),
|
132364 |
+
replaceInnerBlocks: replaceInnerBlocks
|
132365 |
+
};
|
132366 |
+
});
|
132367 |
+
|
132368 |
+
var addAdvancedClasses = createHigherOrderComponent(function (BlockListBlock) {
|
132369 |
+
return function (props) {
|
132370 |
+
return wp.element.createElement(BlockListBlock, _extends({}, props, { className: props.attributes.className }));
|
132371 |
+
};
|
132372 |
+
}, 'addAdvancedClasses');
|
132373 |
+
|
132374 |
+
wp.hooks.addFilter('editor.BlockListBlock', 'uagb/forms', addAdvancedClasses);
|
132375 |
+
|
132376 |
+
/* harmony default export */ __webpack_exports__["a"] = (compose(withNotices, applyWithSelect, addAdvancedClasses)(UAGBFormsEdit));
|
132377 |
+
|
132378 |
+
/***/ }),
|
132379 |
+
/* 739 */
|
132380 |
+
/*!*************************************!*\
|
132381 |
+
!*** ./src/blocks/forms/styling.js ***!
|
132382 |
+
\*************************************/
|
132383 |
+
/*! exports provided: default */
|
132384 |
+
/*! exports used: default */
|
132385 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
132386 |
+
|
132387 |
+
"use strict";
|
132388 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 4);
|
132389 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 3);
|
132390 |
+
/**
|
132391 |
+
* Returns Dynamic Generated CSS
|
132392 |
+
*/
|
132393 |
+
|
132394 |
+
|
132395 |
+
|
132396 |
+
|
132397 |
+
function styling(props) {
|
132398 |
+
var _props$attributes = props.attributes,
|
132399 |
+
block_id = _props$attributes.block_id,
|
132400 |
+
buttonAlign = _props$attributes.buttonAlign,
|
132401 |
+
submitColor = _props$attributes.submitColor,
|
132402 |
+
submitColorHover = _props$attributes.submitColorHover,
|
132403 |
+
submitBgColor = _props$attributes.submitBgColor,
|
132404 |
+
submitBgColorHover = _props$attributes.submitBgColorHover,
|
132405 |
+
toggleWidthSize = _props$attributes.toggleWidthSize,
|
132406 |
+
toggleHeightSize = _props$attributes.toggleHeightSize,
|
132407 |
+
submitborderStyle = _props$attributes.submitborderStyle,
|
132408 |
+
submitborderWidth = _props$attributes.submitborderWidth,
|
132409 |
+
submitborderRadius = _props$attributes.submitborderRadius,
|
132410 |
+
submitborderColor = _props$attributes.submitborderColor,
|
132411 |
+
submitborderHoverColor = _props$attributes.submitborderHoverColor,
|
132412 |
+
vPaddingSubmit = _props$attributes.vPaddingSubmit,
|
132413 |
+
hPaddingSubmit = _props$attributes.hPaddingSubmit,
|
132414 |
+
submitTextFontFamily = _props$attributes.submitTextFontFamily,
|
132415 |
+
submitTextFontWeight = _props$attributes.submitTextFontWeight,
|
132416 |
+
submitTextFontSubset = _props$attributes.submitTextFontSubset,
|
132417 |
+
submitTextFontSize = _props$attributes.submitTextFontSize,
|
132418 |
+
submitTextFontSizeType = _props$attributes.submitTextFontSizeType,
|
132419 |
+
submitTextFontSizeTablet = _props$attributes.submitTextFontSizeTablet,
|
132420 |
+
submitTextFontSizeMobile = _props$attributes.submitTextFontSizeMobile,
|
132421 |
+
submitTextLineHeightType = _props$attributes.submitTextLineHeightType,
|
132422 |
+
submitTextLineHeight = _props$attributes.submitTextLineHeight,
|
132423 |
+
submitTextLineHeightTablet = _props$attributes.submitTextLineHeightTablet,
|
132424 |
+
submitTextLineHeightMobile = _props$attributes.submitTextLineHeightMobile,
|
132425 |
+
labelloadGoogleFonts = _props$attributes.labelloadGoogleFonts,
|
132426 |
+
labelFontFamily = _props$attributes.labelFontFamily,
|
132427 |
+
labelFontWeight = _props$attributes.labelFontWeight,
|
132428 |
+
labelFontSubset = _props$attributes.labelFontSubset,
|
132429 |
+
labelFontSize = _props$attributes.labelFontSize,
|
132430 |
+
labelFontSizeType = _props$attributes.labelFontSizeType,
|
132431 |
+
labelFontSizeTablet = _props$attributes.labelFontSizeTablet,
|
132432 |
+
labelFontSizeMobile = _props$attributes.labelFontSizeMobile,
|
132433 |
+
labelLineHeightType = _props$attributes.labelLineHeightType,
|
132434 |
+
labelLineHeight = _props$attributes.labelLineHeight,
|
132435 |
+
labelLineHeightTablet = _props$attributes.labelLineHeightTablet,
|
132436 |
+
labelLineHeightMobile = _props$attributes.labelLineHeightMobile,
|
132437 |
+
inputloadGoogleFonts = _props$attributes.inputloadGoogleFonts,
|
132438 |
+
inputFontFamily = _props$attributes.inputFontFamily,
|
132439 |
+
inputFontWeight = _props$attributes.inputFontWeight,
|
132440 |
+
inputFontSubset = _props$attributes.inputFontSubset,
|
132441 |
+
inputFontSize = _props$attributes.inputFontSize,
|
132442 |
+
inputFontSizeType = _props$attributes.inputFontSizeType,
|
132443 |
+
inputFontSizeTablet = _props$attributes.inputFontSizeTablet,
|
132444 |
+
inputFontSizeMobile = _props$attributes.inputFontSizeMobile,
|
132445 |
+
inputLineHeightType = _props$attributes.inputLineHeightType,
|
132446 |
+
inputLineHeight = _props$attributes.inputLineHeight,
|
132447 |
+
inputLineHeightTablet = _props$attributes.inputLineHeightTablet,
|
132448 |
+
inputLineHeightMobile = _props$attributes.inputLineHeightMobile,
|
132449 |
+
toggleActiveColor = _props$attributes.toggleActiveColor,
|
132450 |
+
labelColor = _props$attributes.labelColor,
|
132451 |
+
inputColor = _props$attributes.inputColor,
|
132452 |
+
bgColor = _props$attributes.bgColor,
|
132453 |
+
inputplaceholderColor = _props$attributes.inputplaceholderColor,
|
132454 |
+
inputactiveColor = _props$attributes.inputactiveColor,
|
132455 |
+
inputborderStyle = _props$attributes.inputborderStyle,
|
132456 |
+
inputborderWidth = _props$attributes.inputborderWidth,
|
132457 |
+
inputborderRadius = _props$attributes.inputborderRadius,
|
132458 |
+
inputborderColor = _props$attributes.inputborderColor,
|
132459 |
+
inputborderHoverColor = _props$attributes.inputborderHoverColor,
|
132460 |
+
vPaddingField = _props$attributes.vPaddingField,
|
132461 |
+
hPaddingField = _props$attributes.hPaddingField,
|
132462 |
+
fieldGap = _props$attributes.fieldGap,
|
132463 |
+
formStyle = _props$attributes.formStyle,
|
132464 |
+
overallAlignment = _props$attributes.overallAlignment,
|
132465 |
+
toggleSize = _props$attributes.toggleSize;
|
132466 |
+
|
132467 |
+
|
132468 |
+
var selectors = {};
|
132469 |
+
var tablet_selectors = {};
|
132470 |
+
var mobile_selectors = {};
|
132471 |
+
|
132472 |
+
selectors = {
|
132473 |
+
|
132474 |
+
" form.uagb-forms-main-form, form.uagb-forms-main-form .uagb-forms-input, form.
|