Version Description
- Improvement: Post Masonry - Added Pagination option.
- Improvement: Advanced Columns - New Gradient Palette is introduced to set background.
- Improvement: Sections - New Gradient Palette is introduced to set background.
- Improvement: FAQ Schema - Added heading options for question.
- Improvement: Post Layouts - Added an option to exclude current post.
- Improvement: Post Layouts - Option to Display Post Content Type as Excerpt/Full-Post.
- Improvement: Inline Notice - Added heading options for Notice title.
- Fix: Post Grid - Page Limit issue with less number of Posts.
- Fix: FAQ Schema - Clicking on answer collapsed the FAQ.
- Fix: Social Share - Fixed an issue with reusable block.
- Fix: Multi Buttons - Full Width layout for buttons not working in editor mode.
- Fix: Multi Buttons - Inherit from theme skipping the Font Family in few case scenarios.
- Fix: Info Box - Fixed an issue with CSS selector.
- Fix: Icon List - Icon Top Alignment issue.
Download this release
Release Info
Developer | brainstormworg |
Plugin | Gutenberg Blocks – Ultimate Addons for Gutenberg |
Version | 1.16.1 |
Comparing to | |
See all releases |
Code changes from version 1.16.0 to 1.16.1
- admin/uagb-general.php +1 -1
- assets/css/blocks/buttons.css +1 -1
- assets/css/blocks/faq-child.css +1 -1
- assets/css/blocks/icon-list.css +1 -1
- assets/css/blocks/info-box.css +1 -1
- assets/css/blocks/inline-notice.css +1 -1
- assets/css/blocks/post.css +1 -1
- assets/js/faq.js +5 -5
- assets/js/post-carousel.js +0 -97
- assets/js/post.js +184 -0
- classes/class-uagb-block-helper.php +81 -25
- classes/class-uagb-config.php +113 -85
- classes/class-uagb-helper.php +12 -1
- classes/class-uagb-init-blocks.php +10 -0
- classes/class-uagb-loader.php +2 -2
- dist/blocks.build.js +3351 -2571
- dist/blocks.editor.build.css +3 -3
- dist/blocks.style.build.css +6 -6
- dist/blocks.style.css +14 -14
- dist/blocks/post-timeline/class-uagb-post-timeline.php +5 -0
- dist/blocks/post/class-uagb-post.php +165 -35
admin/uagb-general.php
CHANGED
@@ -144,7 +144,7 @@ $has_read_write_perms = UAGB_Helper::has_read_write_permissions();
|
|
144 |
</h2>
|
145 |
<img class="uagb-ast-img" src="<?php echo esc_url( UAGB_URL . 'admin/assets/images/welcome-screen-astra.jpg' ); ?>">
|
146 |
<div class="inside">
|
147 |
-
<p><?php esc_html_e( 'Join over
|
148 |
<h4><?php esc_html_e( 'Why Astra Theme?', 'ultimate-addons-for-gutenberg' ); ?></h4>
|
149 |
<p><strong><?php esc_html_e( 'Faster Performance - ', 'ultimate-addons-for-gutenberg' ); ?></strong><?php esc_html_e( 'Built with speed and performance in mind, Astra follows the best coding standards and lets you build faster loading and better performing websites.', 'ultimate-addons-for-gutenberg' ); ?></p>
|
150 |
<p><strong><?php esc_html_e( 'Easy Customization - ', 'ultimate-addons-for-gutenberg' ); ?></strong><?php esc_html_e( 'With all the settings managed through the customizer, Astra keeps it simple and gives you lots of options to customize everything with a few clicks.', 'ultimate-addons-for-gutenberg' ); ?></p>
|
144 |
</h2>
|
145 |
<img class="uagb-ast-img" src="<?php echo esc_url( UAGB_URL . 'admin/assets/images/welcome-screen-astra.jpg' ); ?>">
|
146 |
<div class="inside">
|
147 |
+
<p><?php esc_html_e( 'Join over 1+ million active users empowering their websites with Astra! From beginners to industry leaders, everyone loves the Astra theme.', 'ultimate-addons-for-gutenberg' ); ?></p>
|
148 |
<h4><?php esc_html_e( 'Why Astra Theme?', 'ultimate-addons-for-gutenberg' ); ?></h4>
|
149 |
<p><strong><?php esc_html_e( 'Faster Performance - ', 'ultimate-addons-for-gutenberg' ); ?></strong><?php esc_html_e( 'Built with speed and performance in mind, Astra follows the best coding standards and lets you build faster loading and better performing websites.', 'ultimate-addons-for-gutenberg' ); ?></p>
|
150 |
<p><strong><?php esc_html_e( 'Easy Customization - ', 'ultimate-addons-for-gutenberg' ); ?></strong><?php esc_html_e( 'With all the settings managed through the customizer, Astra keeps it simple and gives you lots of options to customize everything with a few clicks.', 'ultimate-addons-for-gutenberg' ); ?></p>
|
assets/css/blocks/buttons.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:flex;align-items:center;justify-content:center}.uagb-buttons__outer-wrap a{color:inherit}
|
1 |
+
.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:flex;align-items:center;justify-content:center}.uagb-buttons__outer-wrap a{color:inherit}
|
assets/css/blocks/faq-child.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100
|
1 |
+
.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child .uagb-faq-content span{display:inline-block}.wp-block-uagb-faq-child .uagb-faq-content p{margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
|
assets/css/blocks/icon-list.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.uagb-icon-list__outer-wrap .uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:focus,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:active,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:visited{text-decoration:none}.uagb-icon-list__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap,.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{width:inherit;display:inline-block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{display:inherit;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon,.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon:before{font-size:40px;width:40px;height:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__source-
|
1 |
+
.uagb-icon-list__outer-wrap .uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:focus,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:active,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:visited{text-decoration:none}.uagb-icon-list__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap,.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{width:inherit;display:inline-block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{display:inherit;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon,.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon:before{font-size:40px;width:40px;height:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap span.uagb-icon-list__source-wrap{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:first-child{margin-left:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:last-child{margin-right:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper[href="/"]{pointer-events:none;cursor:text}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap .uagb-icon-list__wrapper{text-decoration:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap .uagb-icon-list__wrapper{box-shadow:none}.uagb-icon-list__outer-wrap.uagb-icon-list__icon-at-top .uagb-icon-list__source-wrap{align-self:flex-start}.uagb-icon-list__outer-wrap:not(.uagb-icon-list__no-label) .uagb-icon-list__source-wrap{margin-right:15px}.uagb-icon-list__no-label .uagb-icon-list__label-wrap{display:none}
|
assets/css/blocks/info-box.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.uagb-ifb-icon-wrap,.uagb-ifb-icon-wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-icon-wrap .uagb-ifb-icon,.uagb-ifb-content{display:inline-block}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.infobox-icon-above-title .uagb-ifb-left-right-wrap{text-align:center}a.uagb-infobox-cta-link span{font-size:inherit}.uagb-ifb-cta.uagb-infobox-cta-link-style:empty{display:none}a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none}a.uagb-infobox-cta-link:hover,.entry .entry-content a.uagb-infobox-cta-link:hover,a.uagb-infobox-link-wrap:hover,.entry .entry-content a.uagb-infobox-link-wrap:hover .entry .entry-content a.uagb-infobox-cta-link:hover{color:inherit}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-left{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.uagb-infobox-center{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center}.uagb-infobox-right{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-left-right-wrap{width:100%;word-break:break-word}.uagb-infobox-icon-above-title .uagb-ifb-left-right-wrap,.uagb-infobox-icon-below-title .uagb-ifb-left-right-wrap{display:block;min-width:100%;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-icon-wrap .uagb-ifb-icon span{font-style:initial;height:auto;width:auto}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content{display:inline-block;line-height:0;position:relative;max-width:100%}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content img{display:inline;height:auto !important;max-width:100%;width:auto;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-ifb-imgicon-wrap .uagb-image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-ifb-imgicon-wrap .uagb-image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-infobox-module-link{position:absolute;width:100%;height:100%;left:0;top:0;bottom:0;right:0;z-index:4}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-left:5px;margin-right:0}.uagb-infobox-link-icon-before{margin-left:0;margin-right:5px}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox{position:relative}.uagb-ifb-separator{width:30%;border-top-width:2px;border-top-color:#333;border-top-style:solid;display:inline-block;margin:0}.uagb-ifb-separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px}.uagb-ifb-cta-button{display:inline-block;line-height:1;background-color:#818a91;color:#fff;text-align:center}.uagb-ifb-button-wrapper .wp-block-button__link svg{fill:currentColor}.uagb-ifb-cta a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title-wrap .uagb-ifb-title,.uagb-ifb-title-wrap .uagb-ifb-title-prefix{padding:0;margin:0;display:block}.uagb-infobox__content-wrap.uagb-infobox{position:relative}.uagb-ifb-icon span{font-size:40px;height:40px;color:#333;width:40px}.uagb-ifb-icon svg{fill:#333}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}.uagb-ifb-left-right-wrap
|
1 |
+
.uagb-ifb-icon-wrap,.uagb-ifb-icon-wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-icon-wrap .uagb-ifb-icon,.uagb-ifb-content{display:inline-block}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.infobox-icon-above-title .uagb-ifb-left-right-wrap{text-align:center}a.uagb-infobox-cta-link span{font-size:inherit}.uagb-ifb-cta.uagb-infobox-cta-link-style:empty{display:none}a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none}a.uagb-infobox-cta-link:hover,.entry .entry-content a.uagb-infobox-cta-link:hover,a.uagb-infobox-link-wrap:hover,.entry .entry-content a.uagb-infobox-link-wrap:hover .entry .entry-content a.uagb-infobox-cta-link:hover{color:inherit}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-left{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.uagb-infobox-center{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center}.uagb-infobox-right{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-left-right-wrap{width:100%;word-break:break-word}.uagb-infobox-icon-above-title .uagb-ifb-left-right-wrap,.uagb-infobox-icon-below-title .uagb-ifb-left-right-wrap{display:block;min-width:100%;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-icon-wrap .uagb-ifb-icon span{font-style:initial;height:auto;width:auto}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content{display:inline-block;line-height:0;position:relative;max-width:100%}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content img{display:inline;height:auto !important;max-width:100%;width:auto;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-ifb-imgicon-wrap .uagb-image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-ifb-imgicon-wrap .uagb-image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-infobox-module-link{position:absolute;width:100%;height:100%;left:0;top:0;bottom:0;right:0;z-index:4}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-left:5px;margin-right:0}.uagb-infobox-link-icon-before{margin-left:0;margin-right:5px}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox{position:relative}.uagb-ifb-separator{width:30%;border-top-width:2px;border-top-color:#333;border-top-style:solid;display:inline-block;margin:0}.uagb-ifb-separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px}.uagb-ifb-cta-button{display:inline-block;line-height:1;background-color:#818a91;color:#fff;text-align:center}.uagb-ifb-button-wrapper .wp-block-button__link svg{fill:currentColor}.uagb-ifb-cta a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title-wrap .uagb-ifb-title,.uagb-ifb-title-wrap .uagb-ifb-title-prefix{padding:0;margin:0;display:block}.uagb-infobox__content-wrap.uagb-infobox{position:relative}.uagb-ifb-icon span{font-size:40px;height:40px;color:#333;width:40px}.uagb-ifb-icon svg{fill:#333}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}.uagb-ifb-left-right-wrap{z-index:1}.uagb-infobox-cta-link{cursor:pointer}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox .uagb-ifb-icon,.uagb-infobox .uagb-ifb-image-content img{display:inline-block;box-sizing:content-box}.uagb-ifb-align-icon-after{margin-left:5px}.uagb-ifb-align-icon-before{margin-right:5px}span.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-text-icon{height:15px;width:15px;font-size:15px;line-height:15px;vertical-align:middle;display:inline-block}.uagb-ifb-button-icon svg,.uagb-ifb-text-icon svg{height:inherit;width:inherit;display:inline-block}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox__outer-wrap{position:relative}a.uagb-infbox__link-to-all{height:100%;width:100%;top:0;left:0;position:absolute;z-index:3;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-mobile.uagb-reverse-order-mobile .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}
|
assets/css/blocks/inline-notice.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice
|
1 |
+
.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;display:inline-block}.wp-block-uagb-inline-notice .uagb-notice-text{border:solid 2px #000;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:.8;padding:0;background:none;transition:.3s ease}
|
assets/css/blocks/post.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.uagb-post-grid{margin:0;position:relative}.uagb-post-grid .is-grid article{float:left;display:inline-block}.uagb-post-grid .uagb-post__items{display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uagb-post-grid .is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:100%}.uagb-post-grid .is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__inner-wrap>p{display:none}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px}.uagb-post-grid .uagb-post__columns-8 article{width:12.5%}.uagb-post-grid .uagb-post__columns-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-5 article{width:20%}.uagb-post-grid .uagb-post__columns-4 article{width:25%}.uagb-post-grid .uagb-post__columns-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-2 article{width:50%}.uagb-post-grid .uagb-post__columns-1 article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%}.uagb-post-grid .uagb-post__text{text-align:left;box-sizing:border-box}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:15px;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline{text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-bottom:15px}.uagb-post-grid .uagb-post__text .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child):after,.uagb-post-grid .uagb-post__date:not(:last-child):after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{margin-bottom:25px;word-break:break-word}.uagb-post-grid .uagb-post__text p{margin:0 0 15px 0}.uagb-post-grid .uagb-post__text p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block}.uagb-post-grid .uagb-post__link{display:inline-block;box-shadow:none;transition:.3s ease;font-weight:bold;color:inherit;text-decoration:none;padding:5px 10px}.uagb-post-grid .uagb-post__excerpt div+p{margin-top:15px}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.uagb-post-grid .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:relative}.uagb-post__image-position-background .uagb-post__image{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:-45px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:-45px;right:auto}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid .is-grid article,.uagb-post-grid .is-masonry article,.uagb-post-grid .is-carousel article{box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}.uagb-post-grid .uagb-post__columns-tablet-1 article{width:100%}.uagb-post-grid .uagb-post__columns-tablet-2 article{width:50%}.uagb-post-grid .uagb-post__columns-tablet-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-tablet-4 article{width:25%}.uagb-post-grid .uagb-post__columns-tablet-5 article{width:20%}.uagb-post-grid .uagb-post__columns-tablet-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){.uagb-post-grid .uagb-post__columns-mobile-1 article{width:100%}.uagb-post-grid .uagb-post__columns-mobile-2 article{width:50%}.uagb-post-grid .uagb-post__columns-mobile-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-mobile-4 article{width:25%}.uagb-post-grid .uagb-post__columns-mobile-5 article{width:20%}.uagb-post-grid .uagb-post__columns-mobile-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:inline-block}
|
1 |
+
.uagb-post-grid{margin:0;position:relative}.uagb-post-grid .uagb-post__load-more-wrap{width:100%}.uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button{cursor:pointer}.uagb-post-grid .uagb-post__load-more-wrap a{color:inherit}.uagb-post-grid .is-grid article{float:left;display:inline-block}.uagb-post-grid .uagb-post__items{display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uagb-post-grid .is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:100%}.uagb-post-grid .is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__inner-wrap>p{display:none}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px}.uagb-post-grid .uagb-post__columns-8 article{width:12.5%}.uagb-post-grid .uagb-post__columns-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-5 article{width:20%}.uagb-post-grid .uagb-post__columns-4 article{width:25%}.uagb-post-grid .uagb-post__columns-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-2 article{width:50%}.uagb-post-grid .uagb-post__columns-1 article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%}.uagb-post-grid .uagb-post__text{text-align:left;box-sizing:border-box}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:15px;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline{text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-bottom:15px}.uagb-post-grid .uagb-post__text .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child):after,.uagb-post-grid .uagb-post__date:not(:last-child):after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{margin-bottom:25px;word-break:break-word}.uagb-post-grid .uagb-post__text p{margin:0 0 15px 0}.uagb-post-grid .uagb-post__text p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block}.uagb-post-grid .uagb-post__link{display:inline-block;box-shadow:none;transition:.3s ease;font-weight:bold;color:inherit;text-decoration:none;padding:5px 10px}.uagb-post-grid .uagb-post__excerpt div+p{margin-top:15px}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.uagb-post-grid .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:relative}.uagb-post__image-position-background .uagb-post__image{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:-45px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:-45px;right:auto}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid .is-grid article,.uagb-post-grid .is-masonry article,.uagb-post-grid .is-carousel article{box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}.uagb-post-grid .uagb-post__columns-tablet-1 article{width:100%}.uagb-post-grid .uagb-post__columns-tablet-2 article{width:50%}.uagb-post-grid .uagb-post__columns-tablet-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-tablet-4 article{width:25%}.uagb-post-grid .uagb-post__columns-tablet-5 article{width:20%}.uagb-post-grid .uagb-post__columns-tablet-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){.uagb-post-grid .uagb-post__columns-mobile-1 article{width:100%}.uagb-post-grid .uagb-post__columns-mobile-2 article{width:50%}.uagb-post-grid .uagb-post__columns-mobile-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-mobile-4 article{width:25%}.uagb-post-grid .uagb-post__columns-mobile-5 article{width:20%}.uagb-post-grid .uagb-post__columns-mobile-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:inline-block}.uagb-post-grid .uagb-post-inf-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.uagb-post-grid .uagb-post-inf-loader div{width:18px;height:18px;background-color:#0085ba;-webkit-border-radius:100%;border-radius:100%;display:inline-block;-webkit-animation:sk-bouncedelay 1.4s infinite ease-in-out both;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}@-webkit-keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}
|
assets/js/faq.js
CHANGED
@@ -111,11 +111,11 @@ window.addEventListener(
|
|
111 |
|
112 |
for ( var button = 0; button < questionButtons.length; button++ ) {
|
113 |
|
114 |
-
questionButtons[button].
|
115 |
-
faqClick( e, this, questionButtons );
|
116 |
});
|
117 |
-
questionButtons[button].
|
118 |
-
faqClick( e, this, questionButtons );
|
119 |
});
|
120 |
}
|
121 |
}
|
@@ -141,7 +141,7 @@ function faqClick( e, faqItem, questionButtons ) {
|
|
141 |
slideDown( faqItem.getElementsByClassName( 'uagb-faq-content' )[0], 500 );
|
142 |
if( 'true' === faqToggle ) {
|
143 |
for ( var buttonChild = 0; buttonChild < questionButtons.length; buttonChild++ ) {
|
144 |
-
buttonItem = questionButtons[buttonChild].parentElement
|
145 |
if ( buttonItem === faqItem ) {
|
146 |
continue;
|
147 |
}
|
111 |
|
112 |
for ( var button = 0; button < questionButtons.length; button++ ) {
|
113 |
|
114 |
+
questionButtons[button].addEventListener("click", function( e ) {
|
115 |
+
faqClick( e, this.parentElement, questionButtons );
|
116 |
});
|
117 |
+
questionButtons[button].addEventListener("keypress", function( e ) {
|
118 |
+
faqClick( e, this.parentElement, questionButtons );
|
119 |
});
|
120 |
}
|
121 |
}
|
141 |
slideDown( faqItem.getElementsByClassName( 'uagb-faq-content' )[0], 500 );
|
142 |
if( 'true' === faqToggle ) {
|
143 |
for ( var buttonChild = 0; buttonChild < questionButtons.length; buttonChild++ ) {
|
144 |
+
var buttonItem = questionButtons[buttonChild].parentElement
|
145 |
if ( buttonItem === faqItem ) {
|
146 |
continue;
|
147 |
}
|
assets/js/post-carousel.js
DELETED
@@ -1,97 +0,0 @@
|
|
1 |
-
( function( $ ) {
|
2 |
-
|
3 |
-
$ = jQuery;
|
4 |
-
|
5 |
-
UAGBPostCarousel = {
|
6 |
-
|
7 |
-
_setHeight: function( scope ) {
|
8 |
-
var post_wrapper = scope.find(".slick-slide"),
|
9 |
-
post_active = scope.find(".slick-slide.slick-active"),
|
10 |
-
max_height = -1,
|
11 |
-
wrapper_height = -1,
|
12 |
-
post_active_height = -1,
|
13 |
-
is_background_enabled = scope.parents(".uagb-post-grid").hasClass("uagb-post__image-position-background")
|
14 |
-
|
15 |
-
post_active.each( function( i ) {
|
16 |
-
var this_height = $( this ).outerHeight(),
|
17 |
-
blog_post = $( this ).find( ".uagb-post__inner-wrap" ),
|
18 |
-
blog_post_height = blog_post.outerHeight(),
|
19 |
-
post_img_ht = $( this ).find( ".uagb-post__image" ).outerHeight(),
|
20 |
-
post_text_ht = $( this ).find( ".uagb-post__text" ).outerHeight()
|
21 |
-
|
22 |
-
if( is_background_enabled ){
|
23 |
-
blog_post_height = post_text_ht
|
24 |
-
}else{
|
25 |
-
blog_post_height = post_img_ht+ post_text_ht
|
26 |
-
}
|
27 |
-
|
28 |
-
if( max_height < blog_post_height ) {
|
29 |
-
max_height = blog_post_height
|
30 |
-
post_active_height = max_height + 15
|
31 |
-
}
|
32 |
-
|
33 |
-
if ( wrapper_height < this_height ) {
|
34 |
-
wrapper_height = this_height
|
35 |
-
}
|
36 |
-
})
|
37 |
-
|
38 |
-
post_active.each( function( i ) {
|
39 |
-
var selector = $( this ).find( ".uagb-post__inner-wrap" )
|
40 |
-
selector.animate({ height: max_height }, { duration: 200, easing: "linear" })
|
41 |
-
})
|
42 |
-
|
43 |
-
scope.find(".slick-list").animate({ height: post_active_height }, { duration: 200, easing: "linear" })
|
44 |
-
|
45 |
-
max_height = -1
|
46 |
-
wrapper_height = -1
|
47 |
-
|
48 |
-
post_wrapper.each(function() {
|
49 |
-
|
50 |
-
var $this = jQuery( this ),
|
51 |
-
selector = $this.find( ".uagb-post__inner-wrap" ),
|
52 |
-
blog_post_height = selector.outerHeight()
|
53 |
-
|
54 |
-
if ( $this.hasClass("slick-active") ) {
|
55 |
-
return true
|
56 |
-
}
|
57 |
-
|
58 |
-
selector.css( "height", blog_post_height )
|
59 |
-
})
|
60 |
-
|
61 |
-
},
|
62 |
-
_unSetHeight:function( scope ) {
|
63 |
-
var post_wrapper = scope.find(".slick-slide"),
|
64 |
-
post_active = scope.find(".slick-active")
|
65 |
-
|
66 |
-
post_active.each( function( i ) {
|
67 |
-
var selector = $( this ).find( ".uagb-post__inner-wrap" )
|
68 |
-
selector.css( "height", "auto" )
|
69 |
-
})
|
70 |
-
|
71 |
-
post_wrapper.each(function() {
|
72 |
-
var $this = jQuery( this ),
|
73 |
-
selector = $this.find( ".uagb-post__inner-wrap" )
|
74 |
-
if ( $this.hasClass("slick-active") ) {
|
75 |
-
return true
|
76 |
-
}
|
77 |
-
selector.css( "height", "auto" )
|
78 |
-
})
|
79 |
-
|
80 |
-
},
|
81 |
-
}
|
82 |
-
|
83 |
-
} )( jQuery )
|
84 |
-
|
85 |
-
// Set Carousel Height for Customiser.
|
86 |
-
function uagb_carousel_height( id ) {
|
87 |
-
var wrap = jQuery("#block-"+id)
|
88 |
-
var scope = wrap.find(".wp-block-uagb-post-carousel").find( ".is-carousel" )
|
89 |
-
UAGBPostCarousel._setHeight( scope )
|
90 |
-
}
|
91 |
-
|
92 |
-
// Unset Carousel Height for Customiser.
|
93 |
-
function uagb_carousel_unset_height( id ) {
|
94 |
-
var wrap = jQuery("#block-"+id)
|
95 |
-
var scope = wrap.find(".wp-block-uagb-post-carousel").find( ".is-carousel" )
|
96 |
-
UAGBPostCarousel._unSetHeight( scope )
|
97 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/js/post.js
ADDED
@@ -0,0 +1,184 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
( function( $ ) {
|
2 |
+
|
3 |
+
$ = jQuery;
|
4 |
+
var loadStatus = true;
|
5 |
+
UAGBPostCarousel = {
|
6 |
+
|
7 |
+
_setHeight: function( scope ) {
|
8 |
+
var post_wrapper = scope.find(".slick-slide"),
|
9 |
+
post_active = scope.find(".slick-slide.slick-active"),
|
10 |
+
max_height = -1,
|
11 |
+
wrapper_height = -1,
|
12 |
+
post_active_height = -1,
|
13 |
+
is_background_enabled = scope.parents(".uagb-post-grid").hasClass("uagb-post__image-position-background")
|
14 |
+
|
15 |
+
post_active.each( function( i ) {
|
16 |
+
var this_height = $( this ).outerHeight(),
|
17 |
+
blog_post = $( this ).find( ".uagb-post__inner-wrap" ),
|
18 |
+
blog_post_height = blog_post.outerHeight(),
|
19 |
+
post_img_ht = $( this ).find( ".uagb-post__image" ).outerHeight(),
|
20 |
+
post_text_ht = $( this ).find( ".uagb-post__text" ).outerHeight()
|
21 |
+
|
22 |
+
if( is_background_enabled ){
|
23 |
+
blog_post_height = post_text_ht
|
24 |
+
}else{
|
25 |
+
blog_post_height = post_img_ht+ post_text_ht
|
26 |
+
}
|
27 |
+
|
28 |
+
if( max_height < blog_post_height ) {
|
29 |
+
max_height = blog_post_height
|
30 |
+
post_active_height = max_height + 15
|
31 |
+
}
|
32 |
+
|
33 |
+
if ( wrapper_height < this_height ) {
|
34 |
+
wrapper_height = this_height
|
35 |
+
}
|
36 |
+
})
|
37 |
+
|
38 |
+
post_active.each( function( i ) {
|
39 |
+
var selector = $( this ).find( ".uagb-post__inner-wrap" )
|
40 |
+
selector.animate({ height: max_height }, { duration: 200, easing: "linear" })
|
41 |
+
})
|
42 |
+
|
43 |
+
scope.find(".slick-list").animate({ height: post_active_height }, { duration: 200, easing: "linear" })
|
44 |
+
|
45 |
+
max_height = -1
|
46 |
+
wrapper_height = -1
|
47 |
+
|
48 |
+
post_wrapper.each(function() {
|
49 |
+
|
50 |
+
var $this = jQuery( this ),
|
51 |
+
selector = $this.find( ".uagb-post__inner-wrap" ),
|
52 |
+
blog_post_height = selector.outerHeight()
|
53 |
+
|
54 |
+
if ( $this.hasClass("slick-active") ) {
|
55 |
+
return true
|
56 |
+
}
|
57 |
+
|
58 |
+
selector.css( "height", blog_post_height )
|
59 |
+
})
|
60 |
+
|
61 |
+
},
|
62 |
+
_unSetHeight:function( scope ) {
|
63 |
+
var post_wrapper = scope.find(".slick-slide"),
|
64 |
+
post_active = scope.find(".slick-active")
|
65 |
+
|
66 |
+
post_active.each( function( i ) {
|
67 |
+
var selector = $( this ).find( ".uagb-post__inner-wrap" )
|
68 |
+
selector.css( "height", "auto" )
|
69 |
+
})
|
70 |
+
|
71 |
+
post_wrapper.each(function() {
|
72 |
+
var $this = jQuery( this ),
|
73 |
+
selector = $this.find( ".uagb-post__inner-wrap" )
|
74 |
+
if ( $this.hasClass("slick-active") ) {
|
75 |
+
return true
|
76 |
+
}
|
77 |
+
selector.css( "height", "auto" )
|
78 |
+
})
|
79 |
+
|
80 |
+
},
|
81 |
+
}
|
82 |
+
UAGBPostMasonry = {
|
83 |
+
|
84 |
+
_init : function( $attr, $selector ) {
|
85 |
+
|
86 |
+
var count = 2;
|
87 |
+
var windowHeight50 = jQuery( window ).outerHeight() / 1.25;
|
88 |
+
var $scope = $( $selector );
|
89 |
+
var loader = $scope.find( '.uagb-post-inf-loader' );
|
90 |
+
|
91 |
+
$scope.find( '.is-masonry' ).isotope();
|
92 |
+
|
93 |
+
if ( "scroll" === $attr.paginationEventType ) {
|
94 |
+
|
95 |
+
$( window ).scroll( function () {
|
96 |
+
|
97 |
+
if( ( $( window ).scrollTop() + windowHeight50 ) >= ( $scope.find( '.uagb-post__items:last' ).offset().top ) ) {
|
98 |
+
|
99 |
+
var $args = {
|
100 |
+
'page_number' : count
|
101 |
+
};
|
102 |
+
total = $scope.data( 'total' );
|
103 |
+
if( true == loadStatus ) {
|
104 |
+
|
105 |
+
if ( count <= total ) {
|
106 |
+
loader.show();
|
107 |
+
UAGBPostMasonry._callAjax( $scope, $args, $attr, loader, false, count );
|
108 |
+
count++;
|
109 |
+
loadStatus = false;
|
110 |
+
}
|
111 |
+
|
112 |
+
}
|
113 |
+
}
|
114 |
+
} );
|
115 |
+
}
|
116 |
+
if ( "button" === $attr.paginationEventType ) {
|
117 |
+
$( document ).on( 'click', '.uagb-post-pagination-button', function( e ) {
|
118 |
+
|
119 |
+
$scope = $( this ).closest( '.uagb-post-grid' );
|
120 |
+
total = $scope.data( 'total' );
|
121 |
+
var $args = {
|
122 |
+
'total' : total,
|
123 |
+
'page_number' : count
|
124 |
+
};
|
125 |
+
$scope.find('.uagb-post__load-more-wrap').hide();
|
126 |
+
if( true == loadStatus ) {
|
127 |
+
|
128 |
+
if ( count <= total ) {
|
129 |
+
loader.show();
|
130 |
+
UAGBPostMasonry._callAjax( $scope, $args, $attr, loader, true, count );
|
131 |
+
count++;
|
132 |
+
loadStatus = false;
|
133 |
+
}
|
134 |
+
|
135 |
+
}
|
136 |
+
} );
|
137 |
+
}
|
138 |
+
|
139 |
+
},
|
140 |
+
_callAjax : function( $scope, $obj, $attr, loader, append = false, count ) {
|
141 |
+
|
142 |
+
$.ajax({
|
143 |
+
url: uagb_data.ajax_url,
|
144 |
+
data: {
|
145 |
+
action: 'uagb_get_posts',
|
146 |
+
page_number : $obj.page_number,
|
147 |
+
attr : $attr,
|
148 |
+
nonce : uagb_data.uagb_masonry_ajax_nonce,
|
149 |
+
},
|
150 |
+
dataType: 'json',
|
151 |
+
type: 'POST',
|
152 |
+
success: function( data ) {
|
153 |
+
$scope.find( '.is-masonry' ).isotope( 'insert',$( data.data ));
|
154 |
+
loadStatus = true;
|
155 |
+
loader.hide();
|
156 |
+
|
157 |
+
if ( true === append ) {
|
158 |
+
$scope.find('.uagb-post__load-more-wrap').show();
|
159 |
+
}
|
160 |
+
|
161 |
+
if ( count == $obj.total ) {
|
162 |
+
$scope.find('.uagb-post__load-more-wrap').hide();
|
163 |
+
}
|
164 |
+
}
|
165 |
+
});
|
166 |
+
}
|
167 |
+
|
168 |
+
}
|
169 |
+
|
170 |
+
} )( jQuery )
|
171 |
+
|
172 |
+
// Set Carousel Height for Customiser.
|
173 |
+
function uagb_carousel_height( id ) {
|
174 |
+
var wrap = jQuery("#block-"+id)
|
175 |
+
var scope = wrap.find(".wp-block-uagb-post-carousel").find( ".is-carousel" )
|
176 |
+
UAGBPostCarousel._setHeight( scope )
|
177 |
+
}
|
178 |
+
|
179 |
+
// Unset Carousel Height for Customiser.
|
180 |
+
function uagb_carousel_unset_height( id ) {
|
181 |
+
var wrap = jQuery("#block-"+id)
|
182 |
+
var scope = wrap.find(".wp-block-uagb-post-carousel").find( ".is-carousel" )
|
183 |
+
UAGBPostCarousel._unSetHeight( scope )
|
184 |
+
}
|
classes/class-uagb-block-helper.php
CHANGED
@@ -50,7 +50,7 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
50 |
}
|
51 |
|
52 |
$selectors = array(
|
53 |
-
'
|
54 |
'color' => $attr['titleColor'],
|
55 |
'background-color' => $attr['noticeColor'],
|
56 |
'padding-left' => UAGB_Helper::get_css_value( $lPadding, 'px' ),
|
@@ -350,11 +350,15 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
350 |
$selectors[' > .uagb-section__overlay']['background-color'] = 'transparent';
|
351 |
$selectors[' > .uagb-section__overlay']['opacity'] = ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '';
|
352 |
|
353 |
-
if (
|
354 |
-
|
355 |
-
$selectors[' > .uagb-section__overlay']['background-image'] = 'linear-gradient(' . $attr['gradientAngle'] . 'deg, ' . $attr['gradientColor1'] . ' ' . $attr['gradientLocation1'] . '%, ' . $attr['gradientColor2'] . ' ' . $attr['gradientLocation2'] . '%)';
|
356 |
} else {
|
357 |
-
|
|
|
|
|
|
|
|
|
|
|
358 |
}
|
359 |
}
|
360 |
|
@@ -530,12 +534,14 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
530 |
$selectors[' > .uagb-columns__overlay']['background-color'] = 'transparent';
|
531 |
$selectors[' > .uagb-columns__overlay']['opacity'] = ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '';
|
532 |
|
533 |
-
if (
|
534 |
-
|
535 |
-
$selectors[' > .uagb-columns__overlay']['background-image'] = 'linear-gradient(' . $attr['gradientAngle'] . 'deg, ' . $attr['gradientColor1'] . ' ' . $attr['gradientLocation1'] . '%, ' . $attr['gradientColor2'] . ' ' . $attr['gradientLocation2'] . '%)';
|
536 |
} else {
|
537 |
-
|
538 |
-
|
|
|
|
|
|
|
539 |
}
|
540 |
}
|
541 |
|
@@ -669,12 +675,14 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
669 |
$selectors[' > .uagb-column__overlay']['background-color'] = 'transparent';
|
670 |
$selectors[' > .uagb-column__overlay']['opacity'] = ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '';
|
671 |
|
672 |
-
if (
|
673 |
-
|
674 |
-
$selectors[' > .uagb-column__overlay']['background-image'] = 'linear-gradient(' . $attr['gradientAngle'] . 'deg, ' . $attr['gradientColor1'] . ' ' . $attr['gradientLocation1'] . '%, ' . $attr['gradientColor2'] . ' ' . $attr['gradientLocation2'] . '%)';
|
675 |
} else {
|
676 |
-
|
677 |
-
|
|
|
|
|
|
|
678 |
}
|
679 |
}
|
680 |
|
@@ -907,7 +915,7 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
907 |
}
|
908 |
}
|
909 |
if ( $attr['childMigrate'] ) {
|
910 |
-
$selectors[' .uagb-buttons-repeater'] = array(
|
911 |
'font-family' => $attr['fontFamily'],
|
912 |
'font-weight' => $attr['fontWeight'],
|
913 |
);
|
@@ -915,12 +923,16 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
915 |
|
916 |
if ( ! $attr['childMigrate'] ) {
|
917 |
|
|
|
|
|
918 |
foreach ( $attr['buttons'] as $key => $button ) {
|
919 |
|
920 |
if ( $attr['btn_count'] <= $key ) {
|
921 |
break;
|
922 |
}
|
923 |
|
|
|
|
|
924 |
$wrapper = ( ! $attr['childMigrate'] ) ? ' .uagb-buttons-repeater-' . $key . '.uagb-button__wrapper' : ' .uagb-buttons-repeater';
|
925 |
|
926 |
$selectors[ $wrapper ] = array(
|
@@ -1787,8 +1799,11 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
1787 |
|
1788 |
if ( ! $attr['childMigrate'] ) {
|
1789 |
|
|
|
|
|
1790 |
foreach ( $attr['socials'] as $key => $socials ) {
|
1791 |
|
|
|
1792 |
$socials['icon_color'] = ( isset( $socials['icon_color'] ) ) ? $socials['icon_color'] : '';
|
1793 |
$socials['icon_hover_color'] = ( isset( $socials['icon_hover_color'] ) ) ? $socials['icon_hover_color'] : '';
|
1794 |
$socials['icon_bg_color'] = ( isset( $socials['icon_bg_color'] ) ) ? $socials['icon_bg_color'] : '';
|
@@ -2144,6 +2159,8 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
2144 |
}
|
2145 |
if ( ! $attr['childMigrate'] ) {
|
2146 |
|
|
|
|
|
2147 |
foreach ( $attr['icons'] as $key => $icon ) {
|
2148 |
|
2149 |
$wrapper = ( ! $attr['childMigrate'] ) ? ' .uagb-icon-list-repeater-' . $key . '.uagb-icon-list__wrapper' : ' .uagb-icon-list-repeater';
|
@@ -2167,19 +2184,12 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
2167 |
'line-height' => $attr['lineHeightTablet'] . $attr['lineHeightType'],
|
2168 |
);
|
2169 |
|
2170 |
-
$icon['icon_color'] = ( isset( $icon['icon_color'] ) ) ? $icon['icon_color'] : '';
|
2171 |
-
$icon['icon_hover_color'] = ( isset( $icon['icon_hover_color'] ) ) ? $icon['icon_hover_color'] : '';
|
2172 |
-
$icon['icon_bg_color'] = ( isset( $icon['icon_bg_color'] ) ) ? $icon['icon_bg_color'] : '';
|
2173 |
-
$icon['icon_bg_hover_color'] = ( isset( $icon['icon_bg_hover_color'] ) ) ? $icon['icon_bg_hover_color'] : '';
|
2174 |
-
$icon['icon_border_color'] = ( isset( $icon['icon_border_color'] ) ) ? $icon['icon_border_color'] : '';
|
2175 |
-
$icon['icon_border_hover_color'] = ( isset( $icon['icon_border_hover_color'] ) ) ? $icon['icon_border_hover_color'] : '';
|
2176 |
-
$icon['label_color'] = ( isset( $icon['label_color'] ) ) ? $icon['label_color'] : '';
|
2177 |
-
$icon['label_hover_color'] = ( isset( $icon['label_hover_color'] ) ) ? $icon['label_hover_color'] : '';
|
2178 |
-
|
2179 |
if ( $attr['icon_count'] <= $key ) {
|
2180 |
break;
|
2181 |
}
|
2182 |
|
|
|
|
|
2183 |
$child_selectors = self::get_icon_list_child_selectors( $icon, $key, $attr['childMigrate'] );
|
2184 |
$selectors = array_merge( $selectors, (array) $child_selectors );
|
2185 |
$t_selectors = array_merge( $t_selectors, (array) $t_selectors_child );
|
@@ -2777,6 +2787,51 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
2777 |
|
2778 |
$t_selectors = self::get_post_tablet_selectors( $attr );
|
2779 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2780 |
$combined_selectors = array(
|
2781 |
'desktop' => $selectors,
|
2782 |
'tablet' => $t_selectors,
|
@@ -2793,6 +2848,7 @@ if ( ! class_exists( 'UAGB_Block_Helper' ) ) {
|
|
2793 |
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'excerpt', ' .uagb-post__text .uagb-post__excerpt', $combined_selectors );
|
2794 |
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-post__text .uagb-post__cta', $combined_selectors );
|
2795 |
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-post__text .uagb-post__cta a', $combined_selectors );
|
|
|
2796 |
}
|
2797 |
|
2798 |
return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
|
50 |
}
|
51 |
|
52 |
$selectors = array(
|
53 |
+
' .uagb-notice-title' => array(
|
54 |
'color' => $attr['titleColor'],
|
55 |
'background-color' => $attr['noticeColor'],
|
56 |
'padding-left' => UAGB_Helper::get_css_value( $lPadding, 'px' ),
|
350 |
$selectors[' > .uagb-section__overlay']['background-color'] = 'transparent';
|
351 |
$selectors[' > .uagb-section__overlay']['opacity'] = ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '';
|
352 |
|
353 |
+
if ( $attr['gradientValue'] ) {
|
354 |
+
$selectors[' > .uagb-section__overlay']['background-image'] = $attr['gradientValue'];
|
|
|
355 |
} else {
|
356 |
+
if ( 'linear' === $attr['gradientType'] ) {
|
357 |
+
|
358 |
+
$selectors[' > .uagb-section__overlay']['background-image'] = 'linear-gradient(' . $attr['gradientAngle'] . 'deg, ' . $attr['gradientColor1'] . ' ' . $attr['gradientLocation1'] . '%, ' . $attr['gradientColor2'] . ' ' . $attr['gradientLocation2'] . '%)';
|
359 |
+
} else {
|
360 |
+
$selectors[' > .uagb-section__overlay']['background-image'] = 'radial-gradient( at ' . $gradientPosition . ', ' . $attr['gradientColor1'] . ' ' . $attr['gradientLocation1'] . '%, ' . $attr['gradientColor2'] . ' ' . $attr['gradientLocation2'] . '%)';
|
361 |
+
}
|
362 |
}
|
363 |
}
|
364 |
|
534 |
$selectors[' > .uagb-columns__overlay']['background-color'] = 'transparent';
|
535 |
$selectors[' > .uagb-columns__overlay']['opacity'] = ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '';
|
536 |
|
537 |
+
if ( $attr['gradientValue'] ) {
|
538 |
+
$selectors[' > .uagb-columns__overlay']['background-image'] = $attr['gradientValue'];
|
|
|
539 |
} else {
|
540 |
+
if ( 'linear' === $attr['gradientType'] ) {
|
541 |
+
$selectors[' > .uagb-columns__overlay']['background-image'] = 'linear-gradient(' . $attr['gradientAngle'] . 'deg, ' . $attr['gradientColor1'] . ' ' . $attr['gradientLocation1'] . '%, ' . $attr['gradientColor2'] . ' ' . $attr['gradientLocation2'] . '%)';
|
542 |
+
} else {
|
543 |
+
$selectors[' > .uagb-columns__overlay']['background-image'] = 'radial-gradient( at center center, ' . $attr['gradientColor1'] . ' ' . $attr['gradientLocation1'] . '%, ' . $attr['gradientColor2'] . ' ' . $attr['gradientLocation2'] . '%)';
|
544 |
+
}
|
545 |
}
|
546 |
}
|
547 |
|
675 |
$selectors[' > .uagb-column__overlay']['background-color'] = 'transparent';
|
676 |
$selectors[' > .uagb-column__overlay']['opacity'] = ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '';
|
677 |
|
678 |
+
if ( $attr['gradientValue'] ) {
|
679 |
+
$selectors[' > .uagb-column__overlay']['background-image'] = $attr['gradientValue'];
|
|
|
680 |
} else {
|
681 |
+
if ( 'linear' === $attr['gradientType'] ) {
|
682 |
+
$selectors[' > .uagb-column__overlay']['background-image'] = 'linear-gradient(' . $attr['gradientAngle'] . 'deg, ' . $attr['gradientColor1'] . ' ' . $attr['gradientLocation1'] . '%, ' . $attr['gradientColor2'] . ' ' . $attr['gradientLocation2'] . '%)';
|
683 |
+
} else {
|
684 |
+
$selectors[' > .uagb-column__overlay']['background-image'] = 'radial-gradient( at center center, ' . $attr['gradientColor1'] . ' ' . $attr['gradientLocation1'] . '%, ' . $attr['gradientColor2'] . ' ' . $attr['gradientLocation2'] . '%)';
|
685 |
+
}
|
686 |
}
|
687 |
}
|
688 |
|
915 |
}
|
916 |
}
|
917 |
if ( $attr['childMigrate'] ) {
|
918 |
+
$selectors[' .uagb-buttons-repeater:not(.wp-block-button__link)'] = array(
|
919 |
'font-family' => $attr['fontFamily'],
|
920 |
'font-weight' => $attr['fontWeight'],
|
921 |
);
|
923 |
|
924 |
if ( ! $attr['childMigrate'] ) {
|
925 |
|
926 |
+
$defaults = UAGB_Helper::$block_list['uagb/buttons-child']['attributes'];
|
927 |
+
|
928 |
foreach ( $attr['buttons'] as $key => $button ) {
|
929 |
|
930 |
if ( $attr['btn_count'] <= $key ) {
|
931 |
break;
|
932 |
}
|
933 |
|
934 |
+
$button = array_merge( $defaults, (array) $button );
|
935 |
+
|
936 |
$wrapper = ( ! $attr['childMigrate'] ) ? ' .uagb-buttons-repeater-' . $key . '.uagb-button__wrapper' : ' .uagb-buttons-repeater';
|
937 |
|
938 |
$selectors[ $wrapper ] = array(
|
1799 |
|
1800 |
if ( ! $attr['childMigrate'] ) {
|
1801 |
|
1802 |
+
$defaults = UAGB_Helper::$block_list['uagb/social-share-child']['attributes'];
|
1803 |
+
|
1804 |
foreach ( $attr['socials'] as $key => $socials ) {
|
1805 |
|
1806 |
+
$socials = array_merge( $defaults, (array) $socials );
|
1807 |
$socials['icon_color'] = ( isset( $socials['icon_color'] ) ) ? $socials['icon_color'] : '';
|
1808 |
$socials['icon_hover_color'] = ( isset( $socials['icon_hover_color'] ) ) ? $socials['icon_hover_color'] : '';
|
1809 |
$socials['icon_bg_color'] = ( isset( $socials['icon_bg_color'] ) ) ? $socials['icon_bg_color'] : '';
|
2159 |
}
|
2160 |
if ( ! $attr['childMigrate'] ) {
|
2161 |
|
2162 |
+
$defaults = UAGB_Helper::$block_list['uagb/icon-list-child']['attributes'];
|
2163 |
+
|
2164 |
foreach ( $attr['icons'] as $key => $icon ) {
|
2165 |
|
2166 |
$wrapper = ( ! $attr['childMigrate'] ) ? ' .uagb-icon-list-repeater-' . $key . '.uagb-icon-list__wrapper' : ' .uagb-icon-list-repeater';
|
2184 |
'line-height' => $attr['lineHeightTablet'] . $attr['lineHeightType'],
|
2185 |
);
|
2186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2187 |
if ( $attr['icon_count'] <= $key ) {
|
2188 |
break;
|
2189 |
}
|
2190 |
|
2191 |
+
$icon = array_merge( $defaults, (array) $icon );
|
2192 |
+
|
2193 |
$child_selectors = self::get_icon_list_child_selectors( $icon, $key, $attr['childMigrate'] );
|
2194 |
$selectors = array_merge( $selectors, (array) $child_selectors );
|
2195 |
$t_selectors = array_merge( $t_selectors, (array) $t_selectors_child );
|
2787 |
|
2788 |
$t_selectors = self::get_post_tablet_selectors( $attr );
|
2789 |
|
2790 |
+
if ( 'infinite' === $attr['paginationType'] ) {
|
2791 |
+
|
2792 |
+
$selectors[' .uagb-post__load-more-wrap'] = array(
|
2793 |
+
'text-align' => $attr['paginationAlign'],
|
2794 |
+
);
|
2795 |
+
|
2796 |
+
$selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button'] = array(
|
2797 |
+
|
2798 |
+
'color' => $attr['paginationTextColor'],
|
2799 |
+
'background-color' => $attr['paginationMasonryBgColor'],
|
2800 |
+
'border-style' => $attr['paginationMasonryBorderStyle'],
|
2801 |
+
'border-width' => UAGB_Helper::get_css_value( $attr['paginationMasonryBorderWidth'], 'px' ),
|
2802 |
+
'border-radius' => UAGB_Helper::get_css_value( $attr['paginationMasonryBorderRadius'], 'px' ),
|
2803 |
+
'border-color' => $attr['paginationMasonryBorderColor'],
|
2804 |
+
'font-size' => UAGB_Helper::get_css_value( $attr['paginationFontSize'], 'px' ),
|
2805 |
+
'padding-top' => UAGB_Helper::get_css_value( $attr['vpaginationButtonPaddingDesktop'], $attr['paginationButtonPaddingType'] ),
|
2806 |
+
'padding-bottom' => UAGB_Helper::get_css_value( $attr['vpaginationButtonPaddingDesktop'], $attr['paginationButtonPaddingType'] ),
|
2807 |
+
'padding-right' => UAGB_Helper::get_css_value( $attr['hpaginationButtonPaddingDesktop'], $attr['paginationButtonPaddingType'] ),
|
2808 |
+
'padding-left' => UAGB_Helper::get_css_value( $attr['hpaginationButtonPaddingDesktop'], $attr['paginationButtonPaddingType'] ),
|
2809 |
+
|
2810 |
+
);
|
2811 |
+
$selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button:hover'] = array(
|
2812 |
+
'color' => $attr['paginationTextHoverColor'],
|
2813 |
+
'background-color' => $attr['paginationBgHoverColor'],
|
2814 |
+
);
|
2815 |
+
$m_selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button'] = array(
|
2816 |
+
'padding-top' => UAGB_Helper::get_css_value( $attr['vpaginationButtonPaddingMobile'], $attr['paginationButtonPaddingType'] ),
|
2817 |
+
'padding-bottom' => UAGB_Helper::get_css_value( $attr['vpaginationButtonPaddingMobile'], $attr['paginationButtonPaddingType'] ),
|
2818 |
+
'padding-right' => UAGB_Helper::get_css_value( $attr['hpaginationButtonPaddingMobile'], $attr['paginationButtonPaddingType'] ),
|
2819 |
+
'padding-left' => UAGB_Helper::get_css_value( $attr['hpaginationButtonPaddingMobile'], $attr['paginationButtonPaddingType'] ),
|
2820 |
+
);
|
2821 |
+
$t_selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button'] = array(
|
2822 |
+
'padding-top' => UAGB_Helper::get_css_value( $attr['vpaginationButtonPaddingTablet'], $attr['paginationButtonPaddingType'] ),
|
2823 |
+
'padding-bottom' => UAGB_Helper::get_css_value( $attr['vpaginationButtonPaddingTablet'], $attr['paginationButtonPaddingType'] ),
|
2824 |
+
'padding-right' => UAGB_Helper::get_css_value( $attr['hpaginationButtonPaddingTablet'], $attr['paginationButtonPaddingType'] ),
|
2825 |
+
'padding-left' => UAGB_Helper::get_css_value( $attr['hpaginationButtonPaddingTablet'], $attr['paginationButtonPaddingType'] ),
|
2826 |
+
);
|
2827 |
+
|
2828 |
+
$selectors['.uagb-post-grid .uagb-post-inf-loader div'] = array(
|
2829 |
+
'width' => UAGB_Helper::get_css_value( $attr['loaderSize'], 'px' ),
|
2830 |
+
'height' => UAGB_Helper::get_css_value( $attr['loaderSize'], 'px' ),
|
2831 |
+
'background-color' => $attr['loaderColor'],
|
2832 |
+
);
|
2833 |
+
}
|
2834 |
+
|
2835 |
$combined_selectors = array(
|
2836 |
'desktop' => $selectors,
|
2837 |
'tablet' => $t_selectors,
|
2848 |
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'excerpt', ' .uagb-post__text .uagb-post__excerpt', $combined_selectors );
|
2849 |
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-post__text .uagb-post__cta', $combined_selectors );
|
2850 |
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-post__text .uagb-post__cta a', $combined_selectors );
|
2851 |
+
|
2852 |
}
|
2853 |
|
2854 |
return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
|
classes/class-uagb-config.php
CHANGED
@@ -168,6 +168,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
168 |
'boxShadowBlur' => '',
|
169 |
'boxShadowSpread' => '',
|
170 |
'boxShadowPosition' => 'outset',
|
|
|
171 |
),
|
172 |
),
|
173 |
'uagb/column' => array(
|
@@ -241,6 +242,8 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
241 |
'gradientOverlayLocation1' => '0',
|
242 |
'gradientOverlayLocation2' => '100',
|
243 |
'gradientOverlayAngle' => '0',
|
|
|
|
|
244 |
),
|
245 |
),
|
246 |
'uagb/blockquote' => array(
|
@@ -634,7 +637,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
634 |
'enableSeparator' => false,
|
635 |
'rowsGap' => 10,
|
636 |
'columnsGap' => 10,
|
637 |
-
'boxBgColor' => '#
|
638 |
'boxPaddingTypeMobile' => 'px',
|
639 |
'boxPaddingTypeTablet' => 'px',
|
640 |
'boxPaddingTypeDesktop' => 'px',
|
@@ -646,10 +649,10 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
646 |
'hBoxPaddingDesktop' => 10,
|
647 |
'borderStyle' => 'solid',
|
648 |
'borderWidth' => 1,
|
649 |
-
'borderRadius' =>
|
650 |
-
'borderColor' => '#
|
651 |
'questionTextColor' => '#313131',
|
652 |
-
'questionTextActiveColor' => '#
|
653 |
'questionPaddingTypeDesktop' => 'px',
|
654 |
'vquestionPaddingMobile' => 10,
|
655 |
'vquestionPaddingTablet' => 10,
|
@@ -695,7 +698,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
695 |
'icon' => 'fas fa-plus',
|
696 |
'iconActive' => 'fas fa-minus',
|
697 |
'iconAlign' => 'row',
|
698 |
-
'iconSize' =>
|
699 |
'iconSizeMobile' => 15,
|
700 |
'iconSizeTablet' => 15,
|
701 |
'iconSizeType' => 'px',
|
@@ -715,6 +718,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
715 |
'title' => __( 'FAQ - Schema Child', 'ultimate-addons-for-gutenberg' ),
|
716 |
'description' => __( 'This block helps you add single FAQ.', 'ultimate-addons-for-gutenberg' ),
|
717 |
'default' => true,
|
|
|
718 |
'attributes' => array(
|
719 |
'block_id' => '',
|
720 |
'question' => '',
|
@@ -1318,7 +1322,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
1318 |
'title' => __( 'Post Carousel', 'ultimate-addons-for-gutenberg' ),
|
1319 |
'description' => __( 'This block fetches the blog posts you may have on your website and displays them in a carousel layout.', 'ultimate-addons-for-gutenberg' ),
|
1320 |
'default' => true,
|
1321 |
-
'js_assets' => array( 'uagb-slick-js', 'uagb-
|
1322 |
'css_assets' => array( 'uagb-slick-css' ),
|
1323 |
'attributes' => array(
|
1324 |
'inheritFromTheme' => false,
|
@@ -1509,84 +1513,107 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
1509 |
'title' => __( 'Post Masonry', 'ultimate-addons-for-gutenberg' ),
|
1510 |
'description' => __( 'This block fetches the blog posts you may have on your website and displays them in a masonry layout.', 'ultimate-addons-for-gutenberg' ),
|
1511 |
'default' => true,
|
1512 |
-
'js_assets' => array( 'uagb-masonry', 'uagb-imagesloaded' ),
|
1513 |
'attributes' => array(
|
1514 |
-
'
|
1515 |
-
'
|
1516 |
-
'
|
1517 |
-
'
|
1518 |
-
'
|
1519 |
-
'
|
1520 |
-
'
|
1521 |
-
'
|
1522 |
-
'
|
1523 |
-
'
|
1524 |
-
'
|
1525 |
-
'
|
1526 |
-
'
|
1527 |
-
'
|
1528 |
-
'
|
1529 |
-
'
|
1530 |
-
'
|
1531 |
-
'
|
1532 |
-
'
|
1533 |
-
'
|
1534 |
-
'
|
1535 |
-
'
|
1536 |
-
'
|
1537 |
-
'
|
1538 |
-
'
|
1539 |
-
'
|
1540 |
-
'
|
1541 |
-
'
|
1542 |
-
'
|
1543 |
-
'
|
1544 |
-
'
|
1545 |
-
'
|
1546 |
-
'
|
1547 |
-
'
|
1548 |
-
'
|
1549 |
-
'
|
1550 |
-
'
|
1551 |
-
'
|
1552 |
-
'
|
1553 |
-
'
|
1554 |
-
'
|
1555 |
-
'
|
1556 |
-
'
|
1557 |
-
'
|
1558 |
-
'
|
1559 |
-
'
|
1560 |
-
'
|
1561 |
-
'
|
1562 |
-
'
|
1563 |
-
'
|
1564 |
-
'
|
1565 |
-
'
|
1566 |
-
'
|
1567 |
-
'
|
1568 |
-
'
|
1569 |
-
'
|
1570 |
-
'
|
1571 |
-
'
|
1572 |
-
'
|
1573 |
-
'
|
1574 |
-
'
|
1575 |
-
'
|
1576 |
-
'
|
1577 |
-
'
|
1578 |
-
'
|
1579 |
-
'
|
1580 |
-
'
|
1581 |
-
'
|
1582 |
-
'
|
1583 |
-
'
|
1584 |
-
'
|
1585 |
-
'
|
1586 |
-
'
|
1587 |
-
'
|
1588 |
-
'
|
1589 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1590 |
),
|
1591 |
),
|
1592 |
'uagb/post-timeline' => array(
|
@@ -1842,6 +1869,7 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
1842 |
'boxShadowBlur' => '',
|
1843 |
'boxShadowSpread' => '',
|
1844 |
'boxShadowPosition' => 'outset',
|
|
|
1845 |
),
|
1846 |
),
|
1847 |
'uagb/social-share' => array(
|
@@ -2260,8 +2288,8 @@ if ( ! class_exists( 'UAGB_Config' ) ) {
|
|
2260 |
'src' => UAGB_URL . 'assets/css/slick.css',
|
2261 |
'dep' => array(),
|
2262 |
),
|
2263 |
-
'uagb-
|
2264 |
-
'src' => UAGB_URL . 'assets/js/post
|
2265 |
'dep' => array( 'jquery', 'uagb-slick-js' ),
|
2266 |
),
|
2267 |
'uagb-faq-js' => array(
|
168 |
'boxShadowBlur' => '',
|
169 |
'boxShadowSpread' => '',
|
170 |
'boxShadowPosition' => 'outset',
|
171 |
+
'gradientValue' => '',
|
172 |
),
|
173 |
),
|
174 |
'uagb/column' => array(
|
242 |
'gradientOverlayLocation1' => '0',
|
243 |
'gradientOverlayLocation2' => '100',
|
244 |
'gradientOverlayAngle' => '0',
|
245 |
+
'gradientValue' => '',
|
246 |
+
|
247 |
),
|
248 |
),
|
249 |
'uagb/blockquote' => array(
|
637 |
'enableSeparator' => false,
|
638 |
'rowsGap' => 10,
|
639 |
'columnsGap' => 10,
|
640 |
+
'boxBgColor' => '#FFFFFF',
|
641 |
'boxPaddingTypeMobile' => 'px',
|
642 |
'boxPaddingTypeTablet' => 'px',
|
643 |
'boxPaddingTypeDesktop' => 'px',
|
649 |
'hBoxPaddingDesktop' => 10,
|
650 |
'borderStyle' => 'solid',
|
651 |
'borderWidth' => 1,
|
652 |
+
'borderRadius' => 2,
|
653 |
+
'borderColor' => '#D2D2D2',
|
654 |
'questionTextColor' => '#313131',
|
655 |
+
'questionTextActiveColor' => '#656565',
|
656 |
'questionPaddingTypeDesktop' => 'px',
|
657 |
'vquestionPaddingMobile' => 10,
|
658 |
'vquestionPaddingTablet' => 10,
|
698 |
'icon' => 'fas fa-plus',
|
699 |
'iconActive' => 'fas fa-minus',
|
700 |
'iconAlign' => 'row',
|
701 |
+
'iconSize' => 12,
|
702 |
'iconSizeMobile' => 15,
|
703 |
'iconSizeTablet' => 15,
|
704 |
'iconSizeType' => 'px',
|
718 |
'title' => __( 'FAQ - Schema Child', 'ultimate-addons-for-gutenberg' ),
|
719 |
'description' => __( 'This block helps you add single FAQ.', 'ultimate-addons-for-gutenberg' ),
|
720 |
'default' => true,
|
721 |
+
'is_child' => true,
|
722 |
'attributes' => array(
|
723 |
'block_id' => '',
|
724 |
'question' => '',
|
1322 |
'title' => __( 'Post Carousel', 'ultimate-addons-for-gutenberg' ),
|
1323 |
'description' => __( 'This block fetches the blog posts you may have on your website and displays them in a carousel layout.', 'ultimate-addons-for-gutenberg' ),
|
1324 |
'default' => true,
|
1325 |
+
'js_assets' => array( 'uagb-slick-js', 'uagb-post-js', 'uagb-imagesloaded' ),
|
1326 |
'css_assets' => array( 'uagb-slick-css' ),
|
1327 |
'attributes' => array(
|
1328 |
'inheritFromTheme' => false,
|
1513 |
'title' => __( 'Post Masonry', 'ultimate-addons-for-gutenberg' ),
|
1514 |
'description' => __( 'This block fetches the blog posts you may have on your website and displays them in a masonry layout.', 'ultimate-addons-for-gutenberg' ),
|
1515 |
'default' => true,
|
1516 |
+
'js_assets' => array( 'uagb-masonry', 'uagb-imagesloaded', 'uagb-post-js' ),
|
1517 |
'attributes' => array(
|
1518 |
+
'postType' => 'post',
|
1519 |
+
'inheritFromTheme' => false,
|
1520 |
+
'align' => 'left',
|
1521 |
+
'rowGap' => '20',
|
1522 |
+
'columnGap' => '20',
|
1523 |
+
'bgColor' => '#e4e4e4',
|
1524 |
+
'titleColor' => '#3b3b3b',
|
1525 |
+
'titleTag' => 'h3',
|
1526 |
+
'titleFontSize' => '',
|
1527 |
+
'titleFontSizeType' => 'px',
|
1528 |
+
'titleFontSizeMobile' => '',
|
1529 |
+
'titleFontSizeTablet' => '',
|
1530 |
+
'titleFontFamily' => '',
|
1531 |
+
'titleFontWeight' => '',
|
1532 |
+
'titleFontSubset' => '',
|
1533 |
+
'titleLineHeightType' => 'em',
|
1534 |
+
'titleLineHeight' => '',
|
1535 |
+
'titleLineHeightTablet' => '',
|
1536 |
+
'titleLineHeightMobile' => '',
|
1537 |
+
'titleLoadGoogleFonts' => false,
|
1538 |
+
'metaFontSize' => '',
|
1539 |
+
'metaFontSizeType' => 'px',
|
1540 |
+
'metaFontSizeMobile' => '',
|
1541 |
+
'metaFontSizeTablet' => '',
|
1542 |
+
'metaFontFamily' => '',
|
1543 |
+
'metaFontWeight' => '',
|
1544 |
+
'metaFontSubset' => '',
|
1545 |
+
'metaLineHeightType' => 'em',
|
1546 |
+
'metaLineHeight' => '',
|
1547 |
+
'metaLineHeightTablet' => '',
|
1548 |
+
'metaLineHeightMobile' => '',
|
1549 |
+
'metaLoadGoogleFonts' => false,
|
1550 |
+
'excerptFontSize' => '',
|
1551 |
+
'excerptFontSizeType' => 'px',
|
1552 |
+
'excerptFontSizeMobile' => '',
|
1553 |
+
'excerptFontSizeTablet' => '',
|
1554 |
+
'excerptFontFamily' => '',
|
1555 |
+
'excerptFontWeight' => '',
|
1556 |
+
'excerptFontSubset' => '',
|
1557 |
+
'excerptLineHeightType' => 'em',
|
1558 |
+
'excerptLineHeight' => '',
|
1559 |
+
'excerptLineHeightTablet' => '',
|
1560 |
+
'excerptLineHeightMobile' => '',
|
1561 |
+
'excerptLoadGoogleFonts' => false,
|
1562 |
+
'ctaFontSize' => '',
|
1563 |
+
'ctaFontSizeType' => 'px',
|
1564 |
+
'ctaFontSizeTablet' => '',
|
1565 |
+
'ctaFontSizeMobile' => '',
|
1566 |
+
'ctaFontFamily' => '',
|
1567 |
+
'ctaFontWeight' => '',
|
1568 |
+
'ctaFontSubset' => '',
|
1569 |
+
'ctaLineHeightType' => 'em',
|
1570 |
+
'ctaLineHeight' => '',
|
1571 |
+
'ctaLineHeightTablet' => '',
|
1572 |
+
'ctaLineHeightMobile' => '',
|
1573 |
+
'ctaLoadGoogleFonts' => false,
|
1574 |
+
'metaColor' => '#777777',
|
1575 |
+
'excerptColor' => '',
|
1576 |
+
'ctaColor' => '#ffffff',
|
1577 |
+
'ctaBgColor' => '#333333',
|
1578 |
+
'ctaHColor' => '',
|
1579 |
+
'ctaBgHColor' => '',
|
1580 |
+
'contentPadding' => '20',
|
1581 |
+
'contentPaddingMobile' => '',
|
1582 |
+
'btnVPadding' => '5',
|
1583 |
+
'btnHPadding' => '10',
|
1584 |
+
'titleBottomSpace' => '15',
|
1585 |
+
'metaBottomSpace' => '15',
|
1586 |
+
'excerptBottomSpace' => '25',
|
1587 |
+
'overlayOpacity' => '50',
|
1588 |
+
'bgOverlayColor' => '#ffffff',
|
1589 |
+
'ctaText' => __( 'Read More', 'ultimate-addons-for-gutenberg' ),
|
1590 |
+
'borderWidth' => '1',
|
1591 |
+
'borderStyle' => 'none',
|
1592 |
+
'borderColor' => '',
|
1593 |
+
'borderHColor' => '',
|
1594 |
+
'borderRadius' => '0',
|
1595 |
+
'paginationType' => 'none',
|
1596 |
+
'paginationEventType' => 'button',
|
1597 |
+
'buttonText' => 'Load More',
|
1598 |
+
'paginationAlign' => 'center',
|
1599 |
+
'paginationTextColor' => '',
|
1600 |
+
'paginationMasonryBgColor' => '',
|
1601 |
+
'paginationBgHoverColor' => '',
|
1602 |
+
'paginationTextHoverColor' => '',
|
1603 |
+
'paginationMasonryBorderStyle' => 'solid',
|
1604 |
+
'paginationMasonryBorderWidth' => 1,
|
1605 |
+
'paginationMasonryBorderRadius' => 2,
|
1606 |
+
'paginationMasonryBorderColor' => '',
|
1607 |
+
'paginationFontSize' => 13,
|
1608 |
+
'loaderColor' => '#0085ba',
|
1609 |
+
'loaderSize' => 18,
|
1610 |
+
'paginationButtonPaddingType' => 'px',
|
1611 |
+
'vpaginationButtonPaddingMobile' => 8,
|
1612 |
+
'vpaginationButtonPaddingTablet' => 8,
|
1613 |
+
'vpaginationButtonPaddingDesktop' => 8,
|
1614 |
+
'hpaginationButtonPaddingMobile' => 12,
|
1615 |
+
'hpaginationButtonPaddingTablet' => 12,
|
1616 |
+
'hpaginationButtonPaddingDesktop' => 12,
|
1617 |
),
|
1618 |
),
|
1619 |
'uagb/post-timeline' => array(
|
1869 |
'boxShadowBlur' => '',
|
1870 |
'boxShadowSpread' => '',
|
1871 |
'boxShadowPosition' => 'outset',
|
1872 |
+
'gradientValue' => '',
|
1873 |
),
|
1874 |
),
|
1875 |
'uagb/social-share' => array(
|
2288 |
'src' => UAGB_URL . 'assets/css/slick.css',
|
2289 |
'dep' => array(),
|
2290 |
),
|
2291 |
+
'uagb-post-js' => array(
|
2292 |
+
'src' => UAGB_URL . 'assets/js/post.js',
|
2293 |
'dep' => array( 'jquery', 'uagb-slick-js' ),
|
2294 |
),
|
2295 |
'uagb-faq-js' => array(
|
classes/class-uagb-helper.php
CHANGED
@@ -928,8 +928,13 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
928 |
'order' => ( isset( $attributes['order'] ) ) ? $attributes['order'] : 'desc',
|
929 |
'orderby' => ( isset( $attributes['orderBy'] ) ) ? $attributes['orderBy'] : 'date',
|
930 |
'ignore_sticky_posts' => 1,
|
|
|
931 |
);
|
932 |
|
|
|
|
|
|
|
|
|
933 |
if ( isset( $attributes['categories'] ) && '' !== $attributes['categories'] ) {
|
934 |
$query_args['tax_query'][] = array(
|
935 |
'taxonomy' => ( isset( $attributes['taxonomyType'] ) ) ? $attributes['taxonomyType'] : 'category',
|
@@ -939,7 +944,7 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
939 |
);
|
940 |
}
|
941 |
|
942 |
-
if ( isset( $attributes['postPagination'] ) && true === $attributes['postPagination'] ) {
|
943 |
|
944 |
if ( get_query_var( 'paged' ) ) {
|
945 |
|
@@ -959,6 +964,12 @@ if ( ! class_exists( 'UAGB_Helper' ) ) {
|
|
959 |
|
960 |
}
|
961 |
|
|
|
|
|
|
|
|
|
|
|
|
|
962 |
$query_args = apply_filters( "uagb_post_query_args_{$block_type}", $query_args, $attributes );
|
963 |
|
964 |
return new WP_Query( $query_args );
|
928 |
'order' => ( isset( $attributes['order'] ) ) ? $attributes['order'] : 'desc',
|
929 |
'orderby' => ( isset( $attributes['orderBy'] ) ) ? $attributes['orderBy'] : 'date',
|
930 |
'ignore_sticky_posts' => 1,
|
931 |
+
'paged' => 1,
|
932 |
);
|
933 |
|
934 |
+
if ( $attributes['excludeCurrentPost'] ) {
|
935 |
+
$query_args['post__not_in'] = array( get_the_ID() );
|
936 |
+
}
|
937 |
+
|
938 |
if ( isset( $attributes['categories'] ) && '' !== $attributes['categories'] ) {
|
939 |
$query_args['tax_query'][] = array(
|
940 |
'taxonomy' => ( isset( $attributes['taxonomyType'] ) ) ? $attributes['taxonomyType'] : 'category',
|
944 |
);
|
945 |
}
|
946 |
|
947 |
+
if ( 'grid' === $block_type && isset( $attributes['postPagination'] ) && true === $attributes['postPagination'] ) {
|
948 |
|
949 |
if ( get_query_var( 'paged' ) ) {
|
950 |
|
964 |
|
965 |
}
|
966 |
|
967 |
+
if ( 'masonry' === $block_type && isset( $attributes['paginationType'] ) && 'none' !== $attributes['paginationType'] && isset( $attributes['paged'] ) ) {
|
968 |
+
|
969 |
+
$query_args['paged'] = $attributes['paged'];
|
970 |
+
|
971 |
+
}
|
972 |
+
|
973 |
$query_args = apply_filters( "uagb_post_query_args_{$block_type}", $query_args, $attributes );
|
974 |
|
975 |
return new WP_Query( $query_args );
|
classes/class-uagb-init-blocks.php
CHANGED
@@ -211,6 +211,16 @@ class UAGB_Init_Blocks {
|
|
211 |
}
|
212 |
}
|
213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
} // End function editor_assets().
|
215 |
|
216 |
/**
|
211 |
}
|
212 |
}
|
213 |
|
214 |
+
$uagb_masonry_ajax_nonce = wp_create_nonce( 'uagb_masonry_ajax_nonce' );
|
215 |
+
wp_localize_script(
|
216 |
+
'uagb-post-js',
|
217 |
+
'uagb_data',
|
218 |
+
array(
|
219 |
+
'ajax_url' => admin_url( 'admin-ajax.php' ),
|
220 |
+
'uagb_masonry_ajax_nonce' => $uagb_masonry_ajax_nonce,
|
221 |
+
)
|
222 |
+
);
|
223 |
+
|
224 |
} // End function editor_assets().
|
225 |
|
226 |
/**
|
classes/class-uagb-loader.php
CHANGED
@@ -80,7 +80,7 @@ if ( ! class_exists( 'UAGB_Loader' ) ) {
|
|
80 |
define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
|
81 |
define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
|
82 |
define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
|
83 |
-
define( 'UAGB_VER', '1.16.
|
84 |
define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
|
85 |
define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
|
86 |
define( 'UAGB_SLUG', 'uag' );
|
@@ -122,7 +122,7 @@ if ( ! class_exists( 'UAGB_Loader' ) ) {
|
|
122 |
* Load Ultimate Gutenberg Text Domain.
|
123 |
* This will load the translation textdomain depending on the file priorities.
|
124 |
* 1. Global Languages /wp-content/languages/ultimate-addons-for-gutenberg/ folder
|
125 |
-
* 2. Local
|
126 |
*
|
127 |
* @since 1.0.0
|
128 |
* @return void
|
80 |
define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
|
81 |
define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
|
82 |
define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
|
83 |
+
define( 'UAGB_VER', '1.16.1' );
|
84 |
define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
|
85 |
define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
|
86 |
define( 'UAGB_SLUG', 'uag' );
|
122 |
* Load Ultimate Gutenberg Text Domain.
|
123 |
* This will load the translation textdomain depending on the file priorities.
|
124 |
* 1. Global Languages /wp-content/languages/ultimate-addons-for-gutenberg/ folder
|
125 |
+
* 2. Local directory /wp-content/plugins/ultimate-addons-for-gutenberg/languages/ folder
|
126 |
*
|
127 |
* @since 1.0.0
|
128 |
* @return void
|
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 |
/******/ ([
|
@@ -207,7 +207,7 @@ var UAGB_Block_Icons = {
|
|
207 |
"use strict";
|
208 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon__ = __webpack_require__(/*! ./UAGBIcon */ 9);
|
209 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__UAGBIcon__);
|
210 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__parseIcon__ = __webpack_require__(/*! ./parseIcon */
|
211 |
/**
|
212 |
* Set inline CSS class.
|
213 |
* @param {object} props - The block object.
|
@@ -545,9 +545,9 @@ function generateCSS(selectors, id) {
|
|
545 |
/* WEBPACK VAR INJECTION */(function(process) {
|
546 |
|
547 |
if (process.env.NODE_ENV === 'production') {
|
548 |
-
module.exports = __webpack_require__(/*! ./cjs/react.production.min.js */
|
549 |
} else {
|
550 |
-
module.exports = __webpack_require__(/*! ./cjs/react.development.js */
|
551 |
}
|
552 |
|
553 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
@@ -562,10 +562,10 @@ if (process.env.NODE_ENV === 'production') {
|
|
562 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
563 |
|
564 |
"use strict";
|
565 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__font_typography__ = __webpack_require__(/*! ./font-typography */
|
566 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__range_typography__ = __webpack_require__(/*! ./range-typography */
|
567 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
568 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
569 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
570 |
/* unused harmony reexport TypographyStyles */
|
571 |
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; };
|
@@ -809,7 +809,7 @@ var TypographyControl = function (_Component) {
|
|
809 |
"use strict";
|
810 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
811 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__);
|
812 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader__ = __webpack_require__(/*! webfontloader */
|
813 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_webfontloader__);
|
814 |
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; };
|
815 |
|
@@ -944,8 +944,8 @@ module.exports = {"500px":{"changes":["4.4","5.0.0"],"ligatures":[],"search":{"t
|
|
944 |
/*! exports used: default */
|
945 |
/***/ (function(module, exports, __webpack_require__) {
|
946 |
|
947 |
-
var baseTimes = __webpack_require__(/*! ./_baseTimes */
|
948 |
-
castFunction = __webpack_require__(/*! ./_castFunction */
|
949 |
toInteger = __webpack_require__(/*! ./toInteger */ 71);
|
950 |
|
951 |
/** Used as references for various `Number` constants. */
|
@@ -1023,7 +1023,7 @@ module.exports = times;
|
|
1023 |
* https://opensource.org/licenses/MIT
|
1024 |
*
|
1025 |
*/
|
1026 |
-
!function(e,t){ true?module.exports=t(__webpack_require__(/*! prop-types */ 15),__webpack_require__(/*! react */ 6),__webpack_require__(/*! classnames */ 0),__webpack_require__(/*! react-dom */ 18),__webpack_require__(/*! react-transition-group */ 404)):"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});
|
1027 |
//# sourceMappingURL=fonticonpicker.react.js.map
|
1028 |
|
1029 |
/***/ }),
|
@@ -1035,7 +1035,7 @@ module.exports = times;
|
|
1035 |
/*! all exports used */
|
1036 |
/***/ (function(module, exports, __webpack_require__) {
|
1037 |
|
1038 |
-
var freeGlobal = __webpack_require__(/*! ./_freeGlobal */
|
1039 |
|
1040 |
/** Detect free variable `self`. */
|
1041 |
var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
|
@@ -1142,16 +1142,16 @@ module.exports = isArray;
|
|
1142 |
*/
|
1143 |
|
1144 |
if (process.env.NODE_ENV !== 'production') {
|
1145 |
-
var ReactIs = __webpack_require__(/*! react-is */
|
1146 |
|
1147 |
// By explicitly using `prop-types` you are opting into new development behavior.
|
1148 |
// http://fb.me/prop-types-in-prod
|
1149 |
var throwOnDirectAccess = true;
|
1150 |
-
module.exports = __webpack_require__(/*! ./factoryWithTypeCheckers */
|
1151 |
} else {
|
1152 |
// By explicitly using `prop-types` you are opting into new production behavior.
|
1153 |
// http://fb.me/prop-types-in-prod
|
1154 |
-
module.exports = __webpack_require__(/*! ./factoryWithThrowingShims */
|
1155 |
}
|
1156 |
|
1157 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
@@ -1166,8 +1166,8 @@ if (process.env.NODE_ENV !== 'production') {
|
|
1166 |
/***/ (function(module, exports, __webpack_require__) {
|
1167 |
|
1168 |
var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
|
1169 |
-
baseIteratee = __webpack_require__(/*! ./_baseIteratee */
|
1170 |
-
baseMap = __webpack_require__(/*! ./_baseMap */
|
1171 |
isArray = __webpack_require__(/*! ./isArray */ 14);
|
1172 |
|
1173 |
/**
|
@@ -1304,9 +1304,9 @@ if (process.env.NODE_ENV === 'production') {
|
|
1304 |
// DCE check should happen before ReactDOM bundle executes so that
|
1305 |
// DevTools can report bad minification during injection.
|
1306 |
checkDCE();
|
1307 |
-
module.exports = __webpack_require__(/*! ./cjs/react-dom.production.min.js */
|
1308 |
} else {
|
1309 |
-
module.exports = __webpack_require__(/*! ./cjs/react-dom.development.js */
|
1310 |
}
|
1311 |
|
1312 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
@@ -1320,8 +1320,8 @@ if (process.env.NODE_ENV === 'production') {
|
|
1320 |
/*! all exports used */
|
1321 |
/***/ (function(module, exports, __webpack_require__) {
|
1322 |
|
1323 |
-
var baseIsNative = __webpack_require__(/*! ./_baseIsNative */
|
1324 |
-
getValue = __webpack_require__(/*! ./_getValue */
|
1325 |
|
1326 |
/**
|
1327 |
* Gets the native function at `key` of `object`.
|
@@ -1349,8 +1349,8 @@ module.exports = getNative;
|
|
1349 |
/***/ (function(module, exports, __webpack_require__) {
|
1350 |
|
1351 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 21),
|
1352 |
-
getRawTag = __webpack_require__(/*! ./_getRawTag */
|
1353 |
-
objectToString = __webpack_require__(/*! ./_objectToString */
|
1354 |
|
1355 |
/** `Object#toString` result references. */
|
1356 |
var nullTag = '[object Null]',
|
@@ -1404,8 +1404,8 @@ module.exports = Symbol;
|
|
1404 |
/*! all exports used */
|
1405 |
/***/ (function(module, exports, __webpack_require__) {
|
1406 |
|
1407 |
-
var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */
|
1408 |
-
baseKeys = __webpack_require__(/*! ./_baseKeys */
|
1409 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
|
1410 |
|
1411 |
/**
|
@@ -1452,7 +1452,7 @@ module.exports = keys;
|
|
1452 |
/*! all exports used */
|
1453 |
/***/ (function(module, exports, __webpack_require__) {
|
1454 |
|
1455 |
-
var isFunction = __webpack_require__(/*! ./isFunction */
|
1456 |
isLength = __webpack_require__(/*! ./isLength */ 59);
|
1457 |
|
1458 |
/**
|
@@ -1498,8 +1498,8 @@ module.exports = isArrayLike;
|
|
1498 |
|
1499 |
var isArray = __webpack_require__(/*! ./isArray */ 14),
|
1500 |
isKey = __webpack_require__(/*! ./_isKey */ 60),
|
1501 |
-
stringToPath = __webpack_require__(/*! ./_stringToPath */
|
1502 |
-
toString = __webpack_require__(/*! ./toString */
|
1503 |
|
1504 |
/**
|
1505 |
* Casts `value` to a path array if it's not one.
|
@@ -1663,7 +1663,7 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
1663 |
/***/ (function(module, exports, __webpack_require__) {
|
1664 |
|
1665 |
var assignValue = __webpack_require__(/*! ./_assignValue */ 48),
|
1666 |
-
baseAssignValue = __webpack_require__(/*! ./_baseAssignValue */
|
1667 |
|
1668 |
/**
|
1669 |
* Copies properties of `source` to `object`.
|
@@ -1843,7 +1843,7 @@ module.exports = copyObject;
|
|
1843 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
1844 |
|
1845 |
"use strict";
|
1846 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */
|
1847 |
|
1848 |
|
1849 |
function css() {
|
@@ -2451,11 +2451,11 @@ module.exports = arrayMap;
|
|
2451 |
/*! all exports used */
|
2452 |
/***/ (function(module, exports, __webpack_require__) {
|
2453 |
|
2454 |
-
var listCacheClear = __webpack_require__(/*! ./_listCacheClear */
|
2455 |
-
listCacheDelete = __webpack_require__(/*! ./_listCacheDelete */
|
2456 |
-
listCacheGet = __webpack_require__(/*! ./_listCacheGet */
|
2457 |
-
listCacheHas = __webpack_require__(/*! ./_listCacheHas */
|
2458 |
-
listCacheSet = __webpack_require__(/*! ./_listCacheSet */
|
2459 |
|
2460 |
/**
|
2461 |
* Creates an list cache object.
|
@@ -2591,7 +2591,7 @@ module.exports = nativeCreate;
|
|
2591 |
/*! all exports used */
|
2592 |
/***/ (function(module, exports, __webpack_require__) {
|
2593 |
|
2594 |
-
var isKeyable = __webpack_require__(/*! ./_isKeyable */
|
2595 |
|
2596 |
/**
|
2597 |
* Gets the data for `map`.
|
@@ -2681,7 +2681,7 @@ module.exports = baseUnary;
|
|
2681 |
/*! all exports used */
|
2682 |
/***/ (function(module, exports, __webpack_require__) {
|
2683 |
|
2684 |
-
/* WEBPACK VAR INJECTION */(function(module) {var freeGlobal = __webpack_require__(/*! ./_freeGlobal */
|
2685 |
|
2686 |
/** Detect free variable `exports`. */
|
2687 |
var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
|
@@ -2752,13 +2752,13 @@ module.exports = isPrototype;
|
|
2752 |
/*! all exports used */
|
2753 |
/***/ (function(module, exports, __webpack_require__) {
|
2754 |
|
2755 |
-
var DataView = __webpack_require__(/*! ./_DataView */
|
2756 |
Map = __webpack_require__(/*! ./_Map */ 51),
|
2757 |
-
Promise = __webpack_require__(/*! ./_Promise */
|
2758 |
-
Set = __webpack_require__(/*! ./_Set */
|
2759 |
-
WeakMap = __webpack_require__(/*! ./_WeakMap */
|
2760 |
baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 20),
|
2761 |
-
toSource = __webpack_require__(/*! ./_toSource */
|
2762 |
|
2763 |
/** `Object#toString` result references. */
|
2764 |
var mapTag = '[object Map]',
|
@@ -2928,7 +2928,7 @@ module.exports = identity;
|
|
2928 |
/*! all exports used */
|
2929 |
/***/ (function(module, exports, __webpack_require__) {
|
2930 |
|
2931 |
-
var baseAssignValue = __webpack_require__(/*! ./_baseAssignValue */
|
2932 |
eq = __webpack_require__(/*! ./eq */ 37);
|
2933 |
|
2934 |
/** Used for built-in method references. */
|
@@ -3721,11 +3721,11 @@ var canUseDOM = exports.canUseDOM = function canUseDOM() {
|
|
3721 |
/***/ (function(module, exports, __webpack_require__) {
|
3722 |
|
3723 |
var ListCache = __webpack_require__(/*! ./_ListCache */ 35),
|
3724 |
-
stackClear = __webpack_require__(/*! ./_stackClear */
|
3725 |
-
stackDelete = __webpack_require__(/*! ./_stackDelete */
|
3726 |
-
stackGet = __webpack_require__(/*! ./_stackGet */
|
3727 |
-
stackHas = __webpack_require__(/*! ./_stackHas */
|
3728 |
-
stackSet = __webpack_require__(/*! ./_stackSet */
|
3729 |
|
3730 |
/**
|
3731 |
* Creates a stack cache object to store key-value pairs.
|
@@ -3776,27 +3776,27 @@ module.exports = Map;
|
|
3776 |
/*! all exports used */
|
3777 |
/***/ (function(module, exports) {
|
3778 |
|
3779 |
-
var g;
|
3780 |
-
|
3781 |
-
// This works in non-strict mode
|
3782 |
-
g = (function() {
|
3783 |
-
return this;
|
3784 |
-
})();
|
3785 |
-
|
3786 |
-
try {
|
3787 |
-
// This works if eval is allowed (see CSP)
|
3788 |
-
g = g || Function("return this")() || (1,eval)("this");
|
3789 |
-
} catch(e) {
|
3790 |
-
// This works if the window reference is available
|
3791 |
-
if(typeof window === "object")
|
3792 |
-
g = window;
|
3793 |
-
}
|
3794 |
-
|
3795 |
-
// g can still be undefined, but nothing to do about it...
|
3796 |
-
// We return undefined, instead of nothing here, so it's
|
3797 |
-
// easier to handle this case. if(!global) { ...}
|
3798 |
-
|
3799 |
-
module.exports = g;
|
3800 |
|
3801 |
|
3802 |
/***/ }),
|
@@ -3808,11 +3808,11 @@ module.exports = g;
|
|
3808 |
/*! all exports used */
|
3809 |
/***/ (function(module, exports, __webpack_require__) {
|
3810 |
|
3811 |
-
var mapCacheClear = __webpack_require__(/*! ./_mapCacheClear */
|
3812 |
-
mapCacheDelete = __webpack_require__(/*! ./_mapCacheDelete */
|
3813 |
-
mapCacheGet = __webpack_require__(/*! ./_mapCacheGet */
|
3814 |
-
mapCacheHas = __webpack_require__(/*! ./_mapCacheHas */
|
3815 |
-
mapCacheSet = __webpack_require__(/*! ./_mapCacheSet */
|
3816 |
|
3817 |
/**
|
3818 |
* Creates a map cache object to store key-value pairs.
|
@@ -3882,8 +3882,8 @@ module.exports = arrayPush;
|
|
3882 |
/*! all exports used */
|
3883 |
/***/ (function(module, exports, __webpack_require__) {
|
3884 |
|
3885 |
-
var arrayFilter = __webpack_require__(/*! ./_arrayFilter */
|
3886 |
-
stubArray = __webpack_require__(/*! ./stubArray */
|
3887 |
|
3888 |
/** Used for built-in method references. */
|
3889 |
var objectProto = Object.prototype;
|
@@ -3923,7 +3923,7 @@ module.exports = getSymbols;
|
|
3923 |
/*! all exports used */
|
3924 |
/***/ (function(module, exports, __webpack_require__) {
|
3925 |
|
3926 |
-
var baseIsArguments = __webpack_require__(/*! ./_baseIsArguments */
|
3927 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
|
3928 |
|
3929 |
/** Used for built-in method references. */
|
@@ -3971,7 +3971,7 @@ module.exports = isArguments;
|
|
3971 |
/***/ (function(module, exports, __webpack_require__) {
|
3972 |
|
3973 |
/* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(/*! ./_root */ 12),
|
3974 |
-
stubFalse = __webpack_require__(/*! ./stubFalse */
|
3975 |
|
3976 |
/** Detect free variable `exports`. */
|
3977 |
var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
|
@@ -4020,28 +4020,28 @@ module.exports = isBuffer;
|
|
4020 |
/*! all exports used */
|
4021 |
/***/ (function(module, exports) {
|
4022 |
|
4023 |
-
module.exports = function(module) {
|
4024 |
-
if(!module.webpackPolyfill) {
|
4025 |
-
module.deprecate = function() {};
|
4026 |
-
module.paths = [];
|
4027 |
-
// module.parent = undefined by default
|
4028 |
-
if(!module.children) module.children = [];
|
4029 |
-
Object.defineProperty(module, "loaded", {
|
4030 |
-
enumerable: true,
|
4031 |
-
get: function() {
|
4032 |
-
return module.l;
|
4033 |
-
}
|
4034 |
-
});
|
4035 |
-
Object.defineProperty(module, "id", {
|
4036 |
-
enumerable: true,
|
4037 |
-
get: function() {
|
4038 |
-
return module.i;
|
4039 |
-
}
|
4040 |
-
});
|
4041 |
-
module.webpackPolyfill = 1;
|
4042 |
-
}
|
4043 |
-
return module;
|
4044 |
-
};
|
4045 |
|
4046 |
|
4047 |
/***/ }),
|
@@ -4286,14 +4286,14 @@ module.exports = ReactPropTypesSecret;
|
|
4286 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return jsx; });
|
4287 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return keyframes; });
|
4288 |
/* unused harmony export withEmotionCache */
|
4289 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/inheritsLoose */
|
4290 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__);
|
4291 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 6);
|
4292 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
4293 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_cache__ = __webpack_require__(/*! @emotion/cache */
|
4294 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__emotion_utils__ = __webpack_require__(/*! @emotion/utils */
|
4295 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */
|
4296 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */
|
4297 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
|
4298 |
/* unused harmony reexport css */
|
4299 |
|
@@ -5140,7 +5140,7 @@ var Meta = function (_React$Component) {
|
|
5140 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
5141 |
|
5142 |
"use strict";
|
5143 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate__ = __webpack_require__(/*! lodash/truncate */
|
5144 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_truncate__);
|
5145 |
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; }; }();
|
5146 |
|
@@ -5187,13 +5187,20 @@ var Excerpt = function (_React$Component) {
|
|
5187 |
excerpt += " ...";
|
5188 |
}
|
5189 |
|
5190 |
-
if (attributes.displayPostExcerpt) {
|
5191 |
|
5192 |
return wp.element.createElement(
|
5193 |
"div",
|
5194 |
{ className: "uagb-post__excerpt" },
|
5195 |
wp.element.createElement("div", { dangerouslySetInnerHTML: { __html: excerpt } })
|
5196 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5197 |
} else {
|
5198 |
return null;
|
5199 |
}
|
@@ -5293,7 +5300,7 @@ module.exports = hasUnicode;
|
|
5293 |
/*! all exports used */
|
5294 |
/***/ (function(module, exports, __webpack_require__) {
|
5295 |
|
5296 |
-
var toFinite = __webpack_require__(/*! ./toFinite */
|
5297 |
|
5298 |
/**
|
5299 |
* Converts `value` to an integer.
|
@@ -5372,6 +5379,10 @@ var Button = function (_React$Component) {
|
|
5372 |
attributes = _props.attributes;
|
5373 |
|
5374 |
|
|
|
|
|
|
|
|
|
5375 |
var target = attributes.newTab ? "_blank" : "_self";
|
5376 |
|
5377 |
if (attributes.displayPostLink) {
|
@@ -5506,7 +5517,28 @@ function styling(props) {
|
|
5506 |
paginationAlignment = _props$attributes.paginationAlignment,
|
5507 |
inheritFromTheme = _props$attributes.inheritFromTheme,
|
5508 |
postPagination = _props$attributes.postPagination,
|
5509 |
-
paginationMarkup = _props$attributes.paginationMarkup
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5510 |
|
5511 |
|
5512 |
var mobile_selectors = {};
|
@@ -5793,6 +5825,53 @@ function styling(props) {
|
|
5793 |
};
|
5794 |
}
|
5795 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5796 |
mobile_selectors[" .uagb-post__text"] = {
|
5797 |
"padding": contentPaddingMobile + "px"
|
5798 |
};
|
@@ -6188,7 +6267,7 @@ return getSize;
|
|
6188 |
/*! all exports used */
|
6189 |
/***/ (function(module, exports, __webpack_require__) {
|
6190 |
|
6191 |
-
var overArg = __webpack_require__(/*! ./_overArg */
|
6192 |
|
6193 |
/** Built-in value references. */
|
6194 |
var getPrototype = overArg(Object.getPrototypeOf, Object);
|
@@ -6205,9 +6284,9 @@ module.exports = getPrototype;
|
|
6205 |
/*! all exports used */
|
6206 |
/***/ (function(module, exports, __webpack_require__) {
|
6207 |
|
6208 |
-
var baseGetAllKeys = __webpack_require__(/*! ./_baseGetAllKeys */
|
6209 |
-
getSymbolsIn = __webpack_require__(/*! ./_getSymbolsIn */
|
6210 |
-
keysIn = __webpack_require__(/*! ./keysIn */
|
6211 |
|
6212 |
/**
|
6213 |
* Creates an array of own and inherited enumerable property names and
|
@@ -6233,7 +6312,7 @@ module.exports = getAllKeysIn;
|
|
6233 |
/*! all exports used */
|
6234 |
/***/ (function(module, exports, __webpack_require__) {
|
6235 |
|
6236 |
-
var Uint8Array = __webpack_require__(/*! ./_Uint8Array */
|
6237 |
|
6238 |
/**
|
6239 |
* Creates a clone of `arrayBuffer`.
|
@@ -6501,6 +6580,116 @@ var BoxShadowControl = function (_Component) {
|
|
6501 |
|
6502 |
/***/ }),
|
6503 |
/* 82 */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6504 |
/*!**************************************************!*\
|
6505 |
!*** ./src/blocks/info-box/components/Prefix.js ***!
|
6506 |
\**************************************************/
|
@@ -6581,7 +6770,7 @@ var Prefix = function (_React$Component) {
|
|
6581 |
/* harmony default export */ __webpack_exports__["a"] = (Prefix);
|
6582 |
|
6583 |
/***/ }),
|
6584 |
-
/*
|
6585 |
/*!*************************************************!*\
|
6586 |
!*** ./src/blocks/info-box/components/Title.js ***!
|
6587 |
\*************************************************/
|
@@ -6661,7 +6850,7 @@ var Title = function (_React$Component) {
|
|
6661 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
6662 |
|
6663 |
/***/ }),
|
6664 |
-
/*
|
6665 |
/*!************************************************!*\
|
6666 |
!*** ./src/blocks/info-box/components/Icon.js ***!
|
6667 |
\************************************************/
|
@@ -6721,7 +6910,7 @@ var Icon = function (_React$Component) {
|
|
6721 |
/* harmony default export */ __webpack_exports__["a"] = (Icon);
|
6722 |
|
6723 |
/***/ }),
|
6724 |
-
/*
|
6725 |
/*!*******************************************************!*\
|
6726 |
!*** ./src/blocks/info-box/components/InfoBoxDesc.js ***!
|
6727 |
\*******************************************************/
|
@@ -6800,7 +6989,7 @@ var InfoBoxDesc = function (_React$Component) {
|
|
6800 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxDesc);
|
6801 |
|
6802 |
/***/ }),
|
6803 |
-
/*
|
6804 |
/*!****************************************!*\
|
6805 |
!*** ./src/blocks/info-box/classes.js ***!
|
6806 |
\****************************************/
|
@@ -6857,7 +7046,7 @@ function InfoBoxPositionClasses(attributes) {
|
|
6857 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxPositionClasses);
|
6858 |
|
6859 |
/***/ }),
|
6860 |
-
/*
|
6861 |
/*!************************************************************!*\
|
6862 |
!*** ./src/blocks/info-box/components/InfoBoxSeparator.js ***!
|
6863 |
\************************************************************/
|
@@ -6903,7 +7092,7 @@ var InfoBoxSeparator = function (_React$Component) {
|
|
6903 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxSeparator);
|
6904 |
|
6905 |
/***/ }),
|
6906 |
-
/*
|
6907 |
/*!********************************************************!*\
|
6908 |
!*** ./src/blocks/info-box/components/CallToAction.js ***!
|
6909 |
\********************************************************/
|
@@ -7047,7 +7236,7 @@ var InfoBoxCta = function (_React$Component) {
|
|
7047 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxCta);
|
7048 |
|
7049 |
/***/ }),
|
7050 |
-
/*
|
7051 |
/*!************************************************************!*\
|
7052 |
!*** ./src/blocks/info-box/components/InfoBoxIconImage.js ***!
|
7053 |
\************************************************************/
|
@@ -7127,7 +7316,7 @@ var InfoBoxIconImage = function (_React$Component) {
|
|
7127 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxIconImage);
|
7128 |
|
7129 |
/***/ }),
|
7130 |
-
/*
|
7131 |
/*!*********************************************************!*\
|
7132 |
!*** ./src/blocks/testimonial/components/AuthorName.js ***!
|
7133 |
\*********************************************************/
|
@@ -7217,7 +7406,7 @@ var AuthorName = function (_React$Component) {
|
|
7217 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorName);
|
7218 |
|
7219 |
/***/ }),
|
7220 |
-
/*
|
7221 |
/*!******************************************************!*\
|
7222 |
!*** ./src/blocks/testimonial/components/Company.js ***!
|
7223 |
\******************************************************/
|
@@ -7308,7 +7497,7 @@ var Company = function (_React$Component) {
|
|
7308 |
/* harmony default export */ __webpack_exports__["a"] = (Company);
|
7309 |
|
7310 |
/***/ }),
|
7311 |
-
/*
|
7312 |
/*!**********************************************************!*\
|
7313 |
!*** ./src/blocks/testimonial/components/Description.js ***!
|
7314 |
\**********************************************************/
|
@@ -7399,7 +7588,7 @@ var Description = function (_React$Component) {
|
|
7399 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
7400 |
|
7401 |
/***/ }),
|
7402 |
-
/*
|
7403 |
/*!*******************************************!*\
|
7404 |
!*** ./src/blocks/testimonial/classes.js ***!
|
7405 |
\*******************************************/
|
@@ -7436,7 +7625,7 @@ function PositionClasses(attributes) {
|
|
7436 |
/* harmony default export */ __webpack_exports__["a"] = (PositionClasses);
|
7437 |
|
7438 |
/***/ }),
|
7439 |
-
/*
|
7440 |
/*!***************************************************************!*\
|
7441 |
!*** ./src/blocks/testimonial/components/TestimonialImage.js ***!
|
7442 |
\***************************************************************/
|
@@ -7521,7 +7710,7 @@ var TestimonialImage = function (_React$Component) {
|
|
7521 |
/* harmony default export */ __webpack_exports__["a"] = (TestimonialImage);
|
7522 |
|
7523 |
/***/ }),
|
7524 |
-
/*
|
7525 |
/*!******************************************!*\
|
7526 |
!*** ./src/blocks/social-share/links.js ***!
|
7527 |
\******************************************/
|
@@ -7548,7 +7737,7 @@ var links = {
|
|
7548 |
/* harmony default export */ __webpack_exports__["a"] = (links);
|
7549 |
|
7550 |
/***/ }),
|
7551 |
-
/*
|
7552 |
/*!***************************************************!*\
|
7553 |
!*** ./src/blocks/price-list/components/Title.js ***!
|
7554 |
\***************************************************/
|
@@ -7637,7 +7826,7 @@ var Title = function (_React$Component) {
|
|
7637 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
7638 |
|
7639 |
/***/ }),
|
7640 |
-
/*
|
7641 |
/*!***************************************************!*\
|
7642 |
!*** ./src/blocks/price-list/components/Price.js ***!
|
7643 |
\***************************************************/
|
@@ -7728,7 +7917,7 @@ var Price = function (_React$Component) {
|
|
7728 |
/* harmony default export */ __webpack_exports__["a"] = (Price);
|
7729 |
|
7730 |
/***/ }),
|
7731 |
-
/*
|
7732 |
/*!*********************************************************!*\
|
7733 |
!*** ./src/blocks/price-list/components/Description.js ***!
|
7734 |
\*********************************************************/
|
@@ -7817,7 +8006,7 @@ var Description = function (_React$Component) {
|
|
7817 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
7818 |
|
7819 |
/***/ }),
|
7820 |
-
/*
|
7821 |
/*!******************************************!*\
|
7822 |
!*** ./src/blocks/price-list/classes.js ***!
|
7823 |
\******************************************/
|
@@ -7871,7 +8060,7 @@ function PositionClasses(attributes) {
|
|
7871 |
/* harmony default export */ __webpack_exports__["a"] = (PositionClasses);
|
7872 |
|
7873 |
/***/ }),
|
7874 |
-
/*
|
7875 |
/*!***********************************************************!*\
|
7876 |
!*** ./src/blocks/price-list/components/RestMenuImage.js ***!
|
7877 |
\***********************************************************/
|
@@ -7956,7 +8145,7 @@ var RestMenuImage = function (_React$Component) {
|
|
7956 |
/* harmony default export */ __webpack_exports__["a"] = (RestMenuImage);
|
7957 |
|
7958 |
/***/ }),
|
7959 |
-
/*
|
7960 |
/*!*******************************************************!*\
|
7961 |
!*** ./src/blocks/call-to-action/components/Title.js ***!
|
7962 |
\*******************************************************/
|
@@ -8034,7 +8223,7 @@ var Title = function (_React$Component) {
|
|
8034 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
8035 |
|
8036 |
/***/ }),
|
8037 |
-
/*
|
8038 |
/*!*************************************************************!*\
|
8039 |
!*** ./src/blocks/call-to-action/components/Description.js ***!
|
8040 |
\*************************************************************/
|
@@ -8111,7 +8300,7 @@ var Description = function (_React$Component) {
|
|
8111 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
8112 |
|
8113 |
/***/ }),
|
8114 |
-
/*
|
8115 |
/*!**********************************************!*\
|
8116 |
!*** ./src/blocks/call-to-action/classes.js ***!
|
8117 |
\**********************************************/
|
@@ -8153,7 +8342,7 @@ function CtaPositionClasses(attributes) {
|
|
8153 |
/* harmony default export */ __webpack_exports__["a"] = (CtaPositionClasses);
|
8154 |
|
8155 |
/***/ }),
|
8156 |
-
/*
|
8157 |
/*!*****************************************************!*\
|
8158 |
!*** ./src/blocks/call-to-action/components/CTA.js ***!
|
8159 |
\*****************************************************/
|
@@ -8254,7 +8443,7 @@ var CTA = function (_React$Component) {
|
|
8254 |
/* harmony default export */ __webpack_exports__["a"] = (CTA);
|
8255 |
|
8256 |
/***/ }),
|
8257 |
-
/*
|
8258 |
/*!**************************************!*\
|
8259 |
!*** ./src/blocks/columns/shapes.js ***!
|
8260 |
\**************************************/
|
@@ -8289,7 +8478,7 @@ var shapes = {
|
|
8289 |
/* harmony default export */ __webpack_exports__["a"] = (shapes);
|
8290 |
|
8291 |
/***/ }),
|
8292 |
-
/*
|
8293 |
/*!************************************************************!*\
|
8294 |
!*** ./src/blocks/blockquote/components/TweetButtonCTA.js ***!
|
8295 |
\************************************************************/
|
@@ -8363,7 +8552,7 @@ var TweetButtonCTA = function (_React$Component) {
|
|
8363 |
/* harmony default export */ __webpack_exports__["a"] = (TweetButtonCTA);
|
8364 |
|
8365 |
/***/ }),
|
8366 |
-
/*
|
8367 |
/*!*********************************************************!*\
|
8368 |
!*** ./src/blocks/blockquote/components/Description.js ***!
|
8369 |
\*********************************************************/
|
@@ -8440,7 +8629,7 @@ var Description = function (_React$Component) {
|
|
8440 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
8441 |
|
8442 |
/***/ }),
|
8443 |
-
/*
|
8444 |
/*!********************************************************!*\
|
8445 |
!*** ./src/blocks/blockquote/components/AuthorText.js ***!
|
8446 |
\********************************************************/
|
@@ -8517,7 +8706,7 @@ var AuthorText = function (_React$Component) {
|
|
8517 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorText);
|
8518 |
|
8519 |
/***/ }),
|
8520 |
-
/*
|
8521 |
/*!*********************************************************!*\
|
8522 |
!*** ./src/blocks/blockquote/components/AuthorImage.js ***!
|
8523 |
\*********************************************************/
|
@@ -8586,7 +8775,7 @@ var AuthorImage = function (_React$Component) {
|
|
8586 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorImage);
|
8587 |
|
8588 |
/***/ }),
|
8589 |
-
/*
|
8590 |
/*!***************************************************!*\
|
8591 |
!*** ./src/blocks/advanced-heading/attributes.js ***!
|
8592 |
\***************************************************/
|
@@ -8743,7 +8932,7 @@ var attributes = {
|
|
8743 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
8744 |
|
8745 |
/***/ }),
|
8746 |
-
/*
|
8747 |
/*!**********************************************!*\
|
8748 |
!*** ./node_modules/lodash/_baseIteratee.js ***!
|
8749 |
\**********************************************/
|
@@ -8751,11 +8940,11 @@ var attributes = {
|
|
8751 |
/*! all exports used */
|
8752 |
/***/ (function(module, exports, __webpack_require__) {
|
8753 |
|
8754 |
-
var baseMatches = __webpack_require__(/*! ./_baseMatches */
|
8755 |
-
baseMatchesProperty = __webpack_require__(/*! ./_baseMatchesProperty */
|
8756 |
identity = __webpack_require__(/*! ./identity */ 47),
|
8757 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
8758 |
-
property = __webpack_require__(/*! ./property */
|
8759 |
|
8760 |
/**
|
8761 |
* The base implementation of `_.iteratee`.
|
@@ -8785,7 +8974,7 @@ module.exports = baseIteratee;
|
|
8785 |
|
8786 |
|
8787 |
/***/ }),
|
8788 |
-
/*
|
8789 |
/*!*******************************************!*\
|
8790 |
!*** ./node_modules/lodash/isFunction.js ***!
|
8791 |
\*******************************************/
|
@@ -8833,7 +9022,7 @@ module.exports = isFunction;
|
|
8833 |
|
8834 |
|
8835 |
/***/ }),
|
8836 |
-
/*
|
8837 |
/*!********************************************!*\
|
8838 |
!*** ./node_modules/lodash/_freeGlobal.js ***!
|
8839 |
\********************************************/
|
@@ -8849,7 +9038,7 @@ module.exports = freeGlobal;
|
|
8849 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 52)))
|
8850 |
|
8851 |
/***/ }),
|
8852 |
-
/*
|
8853 |
/*!******************************************!*\
|
8854 |
!*** ./node_modules/lodash/_toSource.js ***!
|
8855 |
\******************************************/
|
@@ -8886,7 +9075,7 @@ module.exports = toSource;
|
|
8886 |
|
8887 |
|
8888 |
/***/ }),
|
8889 |
-
/*
|
8890 |
/*!*********************************************!*\
|
8891 |
!*** ./node_modules/lodash/_baseIsEqual.js ***!
|
8892 |
\*********************************************/
|
@@ -8894,7 +9083,7 @@ module.exports = toSource;
|
|
8894 |
/*! all exports used */
|
8895 |
/***/ (function(module, exports, __webpack_require__) {
|
8896 |
|
8897 |
-
var baseIsEqualDeep = __webpack_require__(/*! ./_baseIsEqualDeep */
|
8898 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
|
8899 |
|
8900 |
/**
|
@@ -8925,7 +9114,7 @@ module.exports = baseIsEqual;
|
|
8925 |
|
8926 |
|
8927 |
/***/ }),
|
8928 |
-
/*
|
8929 |
/*!*********************************************!*\
|
8930 |
!*** ./node_modules/lodash/_equalArrays.js ***!
|
8931 |
\*********************************************/
|
@@ -8933,9 +9122,9 @@ module.exports = baseIsEqual;
|
|
8933 |
/*! all exports used */
|
8934 |
/***/ (function(module, exports, __webpack_require__) {
|
8935 |
|
8936 |
-
var SetCache = __webpack_require__(/*! ./_SetCache */
|
8937 |
-
arraySome = __webpack_require__(/*! ./_arraySome */
|
8938 |
-
cacheHas = __webpack_require__(/*! ./_cacheHas */
|
8939 |
|
8940 |
/** Used to compose bitmasks for value comparisons. */
|
8941 |
var COMPARE_PARTIAL_FLAG = 1,
|
@@ -9019,7 +9208,7 @@ module.exports = equalArrays;
|
|
9019 |
|
9020 |
|
9021 |
/***/ }),
|
9022 |
-
/*
|
9023 |
/*!********************************************!*\
|
9024 |
!*** ./node_modules/lodash/_Uint8Array.js ***!
|
9025 |
\********************************************/
|
@@ -9036,7 +9225,7 @@ module.exports = Uint8Array;
|
|
9036 |
|
9037 |
|
9038 |
/***/ }),
|
9039 |
-
/*
|
9040 |
/*!********************************************!*\
|
9041 |
!*** ./node_modules/lodash/_getAllKeys.js ***!
|
9042 |
\********************************************/
|
@@ -9044,7 +9233,7 @@ module.exports = Uint8Array;
|
|
9044 |
/*! all exports used */
|
9045 |
/***/ (function(module, exports, __webpack_require__) {
|
9046 |
|
9047 |
-
var baseGetAllKeys = __webpack_require__(/*! ./_baseGetAllKeys */
|
9048 |
getSymbols = __webpack_require__(/*! ./_getSymbols */ 55),
|
9049 |
keys = __webpack_require__(/*! ./keys */ 22);
|
9050 |
|
@@ -9063,7 +9252,7 @@ module.exports = getAllKeys;
|
|
9063 |
|
9064 |
|
9065 |
/***/ }),
|
9066 |
-
/*
|
9067 |
/*!************************************************!*\
|
9068 |
!*** ./node_modules/lodash/_baseGetAllKeys.js ***!
|
9069 |
\************************************************/
|
@@ -9094,7 +9283,7 @@ module.exports = baseGetAllKeys;
|
|
9094 |
|
9095 |
|
9096 |
/***/ }),
|
9097 |
-
/*
|
9098 |
/*!******************************************!*\
|
9099 |
!*** ./node_modules/lodash/stubArray.js ***!
|
9100 |
\******************************************/
|
@@ -9128,7 +9317,7 @@ module.exports = stubArray;
|
|
9128 |
|
9129 |
|
9130 |
/***/ }),
|
9131 |
-
/*
|
9132 |
/*!***********************************************!*\
|
9133 |
!*** ./node_modules/lodash/_arrayLikeKeys.js ***!
|
9134 |
\***********************************************/
|
@@ -9136,12 +9325,12 @@ module.exports = stubArray;
|
|
9136 |
/*! all exports used */
|
9137 |
/***/ (function(module, exports, __webpack_require__) {
|
9138 |
|
9139 |
-
var baseTimes = __webpack_require__(/*! ./_baseTimes */
|
9140 |
isArguments = __webpack_require__(/*! ./isArguments */ 56),
|
9141 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
9142 |
isBuffer = __webpack_require__(/*! ./isBuffer */ 57),
|
9143 |
isIndex = __webpack_require__(/*! ./_isIndex */ 40),
|
9144 |
-
isTypedArray = __webpack_require__(/*! ./isTypedArray */
|
9145 |
|
9146 |
/** Used for built-in method references. */
|
9147 |
var objectProto = Object.prototype;
|
@@ -9188,7 +9377,7 @@ module.exports = arrayLikeKeys;
|
|
9188 |
|
9189 |
|
9190 |
/***/ }),
|
9191 |
-
/*
|
9192 |
/*!*******************************************!*\
|
9193 |
!*** ./node_modules/lodash/_baseTimes.js ***!
|
9194 |
\*******************************************/
|
@@ -9219,7 +9408,7 @@ module.exports = baseTimes;
|
|
9219 |
|
9220 |
|
9221 |
/***/ }),
|
9222 |
-
/*
|
9223 |
/*!*********************************************!*\
|
9224 |
!*** ./node_modules/lodash/isTypedArray.js ***!
|
9225 |
\*********************************************/
|
@@ -9227,7 +9416,7 @@ module.exports = baseTimes;
|
|
9227 |
/*! all exports used */
|
9228 |
/***/ (function(module, exports, __webpack_require__) {
|
9229 |
|
9230 |
-
var baseIsTypedArray = __webpack_require__(/*! ./_baseIsTypedArray */
|
9231 |
baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
|
9232 |
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
|
9233 |
|
@@ -9257,7 +9446,7 @@ module.exports = isTypedArray;
|
|
9257 |
|
9258 |
|
9259 |
/***/ }),
|
9260 |
-
/*
|
9261 |
/*!*****************************************!*\
|
9262 |
!*** ./node_modules/lodash/_overArg.js ***!
|
9263 |
\*****************************************/
|
@@ -9283,7 +9472,7 @@ module.exports = overArg;
|
|
9283 |
|
9284 |
|
9285 |
/***/ }),
|
9286 |
-
/*
|
9287 |
/*!****************************************************!*\
|
9288 |
!*** ./node_modules/lodash/_isStrictComparable.js ***!
|
9289 |
\****************************************************/
|
@@ -9309,7 +9498,7 @@ module.exports = isStrictComparable;
|
|
9309 |
|
9310 |
|
9311 |
/***/ }),
|
9312 |
-
/*
|
9313 |
/*!*********************************************************!*\
|
9314 |
!*** ./node_modules/lodash/_matchesStrictComparable.js ***!
|
9315 |
\*********************************************************/
|
@@ -9340,7 +9529,7 @@ module.exports = matchesStrictComparable;
|
|
9340 |
|
9341 |
|
9342 |
/***/ }),
|
9343 |
-
/*
|
9344 |
/*!************************************!*\
|
9345 |
!*** ./node_modules/lodash/get.js ***!
|
9346 |
\************************************/
|
@@ -9384,7 +9573,7 @@ module.exports = get;
|
|
9384 |
|
9385 |
|
9386 |
/***/ }),
|
9387 |
-
/*
|
9388 |
/*!*****************************************!*\
|
9389 |
!*** ./node_modules/lodash/toString.js ***!
|
9390 |
\*****************************************/
|
@@ -9392,7 +9581,7 @@ module.exports = get;
|
|
9392 |
/*! all exports used */
|
9393 |
/***/ (function(module, exports, __webpack_require__) {
|
9394 |
|
9395 |
-
var baseToString = __webpack_require__(/*! ./_baseToString */
|
9396 |
|
9397 |
/**
|
9398 |
* Converts `value` to a string. An empty string is returned for `null`
|
@@ -9423,7 +9612,7 @@ module.exports = toString;
|
|
9423 |
|
9424 |
|
9425 |
/***/ }),
|
9426 |
-
/*
|
9427 |
/*!**********************************************!*\
|
9428 |
!*** ./node_modules/lodash/_baseToString.js ***!
|
9429 |
\**********************************************/
|
@@ -9471,7 +9660,7 @@ module.exports = baseToString;
|
|
9471 |
|
9472 |
|
9473 |
/***/ }),
|
9474 |
-
/*
|
9475 |
/*!**********************************************!*\
|
9476 |
!*** ./node_modules/lodash/_baseProperty.js ***!
|
9477 |
\**********************************************/
|
@@ -9496,7 +9685,7 @@ module.exports = baseProperty;
|
|
9496 |
|
9497 |
|
9498 |
/***/ }),
|
9499 |
-
/*
|
9500 |
/*!************************************************************************************!*\
|
9501 |
!*** ./node_modules/react-select/node_modules/memoize-one/dist/memoize-one.esm.js ***!
|
9502 |
\************************************************************************************/
|
@@ -9544,7 +9733,7 @@ function memoizeOne(resultFn, isEqual) {
|
|
9544 |
|
9545 |
|
9546 |
/***/ }),
|
9547 |
-
/*
|
9548 |
/*!***************************************************************!*\
|
9549 |
!*** ./node_modules/@emotion/cache/dist/cache.browser.esm.js ***!
|
9550 |
\***************************************************************/
|
@@ -9553,9 +9742,9 @@ function memoizeOne(resultFn, isEqual) {
|
|
9553 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
9554 |
|
9555 |
"use strict";
|
9556 |
-
/* WEBPACK VAR INJECTION */(function(process) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */
|
9557 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_stylis__ = __webpack_require__(/*! @emotion/stylis */
|
9558 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_weak_memoize__ = __webpack_require__(/*! @emotion/weak-memoize */
|
9559 |
|
9560 |
|
9561 |
|
@@ -9770,7 +9959,7 @@ var createCache = function createCache(options) {
|
|
9770 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
|
9771 |
|
9772 |
/***/ }),
|
9773 |
-
/*
|
9774 |
/*!***************************************************************!*\
|
9775 |
!*** ./node_modules/@emotion/sheet/dist/sheet.browser.esm.js ***!
|
9776 |
\***************************************************************/
|
@@ -9919,7 +10108,7 @@ function () {
|
|
9919 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
|
9920 |
|
9921 |
/***/ }),
|
9922 |
-
/*
|
9923 |
/*!***********************************************************************!*\
|
9924 |
!*** ./node_modules/@emotion/serialize/dist/serialize.browser.esm.js ***!
|
9925 |
\***********************************************************************/
|
@@ -9929,9 +10118,9 @@ function () {
|
|
9929 |
|
9930 |
"use strict";
|
9931 |
/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return serializeStyles; });
|
9932 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_hash__ = __webpack_require__(/*! @emotion/hash */
|
9933 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_unitless__ = __webpack_require__(/*! @emotion/unitless */
|
9934 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_memoize__ = __webpack_require__(/*! @emotion/memoize */
|
9935 |
|
9936 |
|
9937 |
|
@@ -10258,7 +10447,7 @@ var serializeStyles = function serializeStyles(args, registered, mergedProps) {
|
|
10258 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
|
10259 |
|
10260 |
/***/ }),
|
10261 |
-
/*
|
10262 |
/*!****************************************************************!*\
|
10263 |
!*** ./node_modules/react-dom/node_modules/scheduler/index.js ***!
|
10264 |
\****************************************************************/
|
@@ -10270,15 +10459,15 @@ var serializeStyles = function serializeStyles(args, registered, mergedProps) {
|
|
10270 |
/* WEBPACK VAR INJECTION */(function(process) {
|
10271 |
|
10272 |
if (process.env.NODE_ENV === 'production') {
|
10273 |
-
module.exports = __webpack_require__(/*! ./cjs/scheduler.production.min.js */
|
10274 |
} else {
|
10275 |
-
module.exports = __webpack_require__(/*! ./cjs/scheduler.development.js */
|
10276 |
}
|
10277 |
|
10278 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
|
10279 |
|
10280 |
/***/ }),
|
10281 |
-
/*
|
10282 |
/*!****************************************!*\
|
10283 |
!*** ./node_modules/react-is/index.js ***!
|
10284 |
\****************************************/
|
@@ -10290,15 +10479,15 @@ if (process.env.NODE_ENV === 'production') {
|
|
10290 |
/* WEBPACK VAR INJECTION */(function(process) {
|
10291 |
|
10292 |
if (process.env.NODE_ENV === 'production') {
|
10293 |
-
module.exports = __webpack_require__(/*! ./cjs/react-is.production.min.js */
|
10294 |
} else {
|
10295 |
-
module.exports = __webpack_require__(/*! ./cjs/react-is.development.js */
|
10296 |
}
|
10297 |
|
10298 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
10299 |
|
10300 |
/***/ }),
|
10301 |
-
/*
|
10302 |
/*!**********************************************************************!*\
|
10303 |
!*** ./node_modules/react-select/dist/index-4322c0ed.browser.esm.js ***!
|
10304 |
\**********************************************************************/
|
@@ -10342,7 +10531,7 @@ if (process.env.NODE_ENV === 'production') {
|
|
10342 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__);
|
10343 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 64);
|
10344 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
|
10345 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */
|
10346 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react_input_autosize__);
|
10347 |
|
10348 |
|
@@ -11629,7 +11818,7 @@ var defaultComponents = function defaultComponents(props) {
|
|
11629 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
11630 |
|
11631 |
/***/ }),
|
11632 |
-
/*
|
11633 |
/*!****************************************************************!*\
|
11634 |
!*** ./node_modules/react-input-autosize/lib/AutosizeInput.js ***!
|
11635 |
\****************************************************************/
|
@@ -11908,7 +12097,7 @@ AutosizeInput.defaultProps = {
|
|
11908 |
exports.default = AutosizeInput;
|
11909 |
|
11910 |
/***/ }),
|
11911 |
-
/*
|
11912 |
/*!***********************************************************************!*\
|
11913 |
!*** ./node_modules/react-select/dist/Select-9fdb8cd0.browser.esm.js ***!
|
11914 |
\***********************************************************************/
|
@@ -11924,12 +12113,12 @@ exports.default = AutosizeInput;
|
|
11924 |
/* unused harmony export m */
|
11925 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 6);
|
11926 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
|
11927 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_memoize_one__ = __webpack_require__(/*! memoize-one */
|
11928 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_core__ = __webpack_require__(/*! @emotion/core */ 63);
|
11929 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom__ = __webpack_require__(/*! react-dom */ 18);
|
11930 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react_dom__);
|
11931 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 64);
|
11932 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__index_4322c0ed_browser_esm_js__ = __webpack_require__(/*! ./index-4322c0ed.browser.esm.js */
|
11933 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
|
11934 |
|
11935 |
|
@@ -14669,7 +14858,7 @@ Select.defaultProps = defaultProps;
|
|
14669 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
14670 |
|
14671 |
/***/ }),
|
14672 |
-
/*
|
14673 |
/*!************************************************!*\
|
14674 |
!*** ./src/blocks/advanced-heading/style.scss ***!
|
14675 |
\************************************************/
|
@@ -14679,7 +14868,7 @@ Select.defaultProps = defaultProps;
|
|
14679 |
// removed by extract-text-webpack-plugin
|
14680 |
|
14681 |
/***/ }),
|
14682 |
-
/*
|
14683 |
/*!*****************************************!*\
|
14684 |
!*** ./node_modules/lodash/toNumber.js ***!
|
14685 |
\*****************************************/
|
@@ -14756,7 +14945,7 @@ module.exports = toNumber;
|
|
14756 |
|
14757 |
|
14758 |
/***/ }),
|
14759 |
-
/*
|
14760 |
/*!*************************************************!*\
|
14761 |
!*** ./node_modules/lodash/_baseAssignValue.js ***!
|
14762 |
\*************************************************/
|
@@ -14764,7 +14953,7 @@ module.exports = toNumber;
|
|
14764 |
/*! all exports used */
|
14765 |
/***/ (function(module, exports, __webpack_require__) {
|
14766 |
|
14767 |
-
var defineProperty = __webpack_require__(/*! ./_defineProperty */
|
14768 |
|
14769 |
/**
|
14770 |
* The base implementation of `assignValue` and `assignMergeValue` without
|
@@ -14792,7 +14981,7 @@ module.exports = baseAssignValue;
|
|
14792 |
|
14793 |
|
14794 |
/***/ }),
|
14795 |
-
/*
|
14796 |
/*!************************************************!*\
|
14797 |
!*** ./node_modules/lodash/_defineProperty.js ***!
|
14798 |
\************************************************/
|
@@ -14814,7 +15003,7 @@ module.exports = defineProperty;
|
|
14814 |
|
14815 |
|
14816 |
/***/ }),
|
14817 |
-
/*
|
14818 |
/*!******************************************!*\
|
14819 |
!*** ./node_modules/lodash/_overRest.js ***!
|
14820 |
\******************************************/
|
@@ -14822,7 +15011,7 @@ module.exports = defineProperty;
|
|
14822 |
/*! all exports used */
|
14823 |
/***/ (function(module, exports, __webpack_require__) {
|
14824 |
|
14825 |
-
var apply = __webpack_require__(/*! ./_apply */
|
14826 |
|
14827 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
14828 |
var nativeMax = Math.max;
|
@@ -14861,7 +15050,7 @@ module.exports = overRest;
|
|
14861 |
|
14862 |
|
14863 |
/***/ }),
|
14864 |
-
/*
|
14865 |
/*!*********************************************!*\
|
14866 |
!*** ./node_modules/lodash/_setToString.js ***!
|
14867 |
\*********************************************/
|
@@ -14869,8 +15058,8 @@ module.exports = overRest;
|
|
14869 |
/*! all exports used */
|
14870 |
/***/ (function(module, exports, __webpack_require__) {
|
14871 |
|
14872 |
-
var baseSetToString = __webpack_require__(/*! ./_baseSetToString */
|
14873 |
-
shortOut = __webpack_require__(/*! ./_shortOut */
|
14874 |
|
14875 |
/**
|
14876 |
* Sets the `toString` method of `func` to return `string`.
|
@@ -14886,7 +15075,7 @@ module.exports = setToString;
|
|
14886 |
|
14887 |
|
14888 |
/***/ }),
|
14889 |
-
/*
|
14890 |
/*!**********************************************************************!*\
|
14891 |
!*** ./node_modules/element-resize-detector/src/collection-utils.js ***!
|
14892 |
\**********************************************************************/
|
@@ -14917,7 +15106,7 @@ utils.forEach = function(collection, callback) {
|
|
14917 |
|
14918 |
|
14919 |
/***/ }),
|
14920 |
-
/*
|
14921 |
/*!**********************************************************************!*\
|
14922 |
!*** ./node_modules/element-resize-detector/src/browser-detector.js ***!
|
14923 |
\**********************************************************************/
|
@@ -14968,7 +15157,7 @@ detector.isLegacyOpera = function() {
|
|
14968 |
|
14969 |
|
14970 |
/***/ }),
|
14971 |
-
/*
|
14972 |
/*!***************************************!*\
|
14973 |
!*** ./node_modules/lodash/keysIn.js ***!
|
14974 |
\***************************************/
|
@@ -14976,8 +15165,8 @@ detector.isLegacyOpera = function() {
|
|
14976 |
/*! all exports used */
|
14977 |
/***/ (function(module, exports, __webpack_require__) {
|
14978 |
|
14979 |
-
var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */
|
14980 |
-
baseKeysIn = __webpack_require__(/*! ./_baseKeysIn */
|
14981 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
|
14982 |
|
14983 |
/**
|
@@ -15011,7 +15200,7 @@ module.exports = keysIn;
|
|
15011 |
|
15012 |
|
15013 |
/***/ }),
|
15014 |
-
/*
|
15015 |
/*!**********************************************!*\
|
15016 |
!*** ./node_modules/lodash/_getSymbolsIn.js ***!
|
15017 |
\**********************************************/
|
@@ -15022,7 +15211,7 @@ module.exports = keysIn;
|
|
15022 |
var arrayPush = __webpack_require__(/*! ./_arrayPush */ 54),
|
15023 |
getPrototype = __webpack_require__(/*! ./_getPrototype */ 78),
|
15024 |
getSymbols = __webpack_require__(/*! ./_getSymbols */ 55),
|
15025 |
-
stubArray = __webpack_require__(/*! ./stubArray */
|
15026 |
|
15027 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
15028 |
var nativeGetSymbols = Object.getOwnPropertySymbols;
|
@@ -15047,7 +15236,7 @@ module.exports = getSymbolsIn;
|
|
15047 |
|
15048 |
|
15049 |
/***/ }),
|
15050 |
-
/*
|
15051 |
/*!***********************************************!*\
|
15052 |
!*** ./node_modules/react-slick/lib/index.js ***!
|
15053 |
\***********************************************/
|
@@ -15060,7 +15249,7 @@ module.exports = getSymbolsIn;
|
|
15060 |
|
15061 |
exports.__esModule = true;
|
15062 |
|
15063 |
-
var _slider = __webpack_require__(/*! ./slider */
|
15064 |
|
15065 |
var _slider2 = _interopRequireDefault(_slider);
|
15066 |
|
@@ -15069,7 +15258,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
15069 |
exports.default = _slider2.default;
|
15070 |
|
15071 |
/***/ }),
|
15072 |
-
/*
|
15073 |
/*!*********************************************!*\
|
15074 |
!*** ./node_modules/enquire.js/src/Util.js ***!
|
15075 |
\*********************************************/
|
@@ -15124,7 +15313,7 @@ module.exports = {
|
|
15124 |
|
15125 |
|
15126 |
/***/ }),
|
15127 |
-
/*
|
15128 |
/*!******************************************!*\
|
15129 |
!*** ./src/blocks/section/attributes.js ***!
|
15130 |
\******************************************/
|
@@ -15425,13 +15614,17 @@ var attributes = {
|
|
15425 |
boxShadowPosition: {
|
15426 |
type: "string",
|
15427 |
default: "outset"
|
|
|
|
|
|
|
|
|
15428 |
}
|
15429 |
};
|
15430 |
|
15431 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
15432 |
|
15433 |
/***/ }),
|
15434 |
-
/*
|
15435 |
/*!*********************************************!*\
|
15436 |
!*** ./src/blocks/section/inline-styles.js ***!
|
15437 |
\*********************************************/
|
@@ -15542,7 +15735,7 @@ function inlineStyles(props, isEditor) {
|
|
15542 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
15543 |
|
15544 |
/***/ }),
|
15545 |
-
/*
|
15546 |
/*!******************************************!*\
|
15547 |
!*** ./src/blocks/buttons/attributes.js ***!
|
15548 |
\******************************************/
|
@@ -15635,7 +15828,7 @@ var attributes = {
|
|
15635 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
15636 |
|
15637 |
/***/ }),
|
15638 |
-
/*
|
15639 |
/*!************************************************!*\
|
15640 |
!*** ./src/blocks/buttons-child/attributes.js ***!
|
15641 |
\************************************************/
|
@@ -15789,7 +15982,7 @@ var attributes = {
|
|
15789 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
15790 |
|
15791 |
/***/ }),
|
15792 |
-
/*
|
15793 |
/*!***********************************************************!*\
|
15794 |
!*** ./node_modules/react-transition-group/Transition.js ***!
|
15795 |
\***********************************************************/
|
@@ -15809,9 +16002,9 @@ var _react = _interopRequireDefault(__webpack_require__(/*! react */ 6));
|
|
15809 |
|
15810 |
var _reactDom = _interopRequireDefault(__webpack_require__(/*! react-dom */ 18));
|
15811 |
|
15812 |
-
var _reactLifecyclesCompat = __webpack_require__(/*! react-lifecycles-compat */
|
15813 |
|
15814 |
-
var _PropTypes = __webpack_require__(/*! ./utils/PropTypes */
|
15815 |
|
15816 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
15817 |
|
@@ -16410,7 +16603,7 @@ exports.default = _default;
|
|
16410 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
16411 |
|
16412 |
/***/ }),
|
16413 |
-
/*
|
16414 |
/*!****************************************************************************!*\
|
16415 |
!*** ./node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js ***!
|
16416 |
\****************************************************************************/
|
@@ -16582,7 +16775,7 @@ function polyfill(Component) {
|
|
16582 |
|
16583 |
|
16584 |
/***/ }),
|
16585 |
-
/*
|
16586 |
/*!****************************************************************!*\
|
16587 |
!*** ./node_modules/react-transition-group/utils/PropTypes.js ***!
|
16588 |
\****************************************************************/
|
@@ -16622,7 +16815,7 @@ exports.classNamesShape = classNamesShape;
|
|
16622 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
16623 |
|
16624 |
/***/ }),
|
16625 |
-
/*
|
16626 |
/*!****************************************************************!*\
|
16627 |
!*** ./node_modules/react-transition-group/TransitionGroup.js ***!
|
16628 |
\****************************************************************/
|
@@ -16640,9 +16833,9 @@ var _propTypes = _interopRequireDefault(__webpack_require__(/*! prop-types */ 15
|
|
16640 |
|
16641 |
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 6));
|
16642 |
|
16643 |
-
var _reactLifecyclesCompat = __webpack_require__(/*! react-lifecycles-compat */
|
16644 |
|
16645 |
-
var _ChildMapping = __webpack_require__(/*! ./utils/ChildMapping */
|
16646 |
|
16647 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
16648 |
|
@@ -16842,7 +17035,7 @@ module.exports = exports["default"];
|
|
16842 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
16843 |
|
16844 |
/***/ }),
|
16845 |
-
/*
|
16846 |
/*!**********************************************!*\
|
16847 |
!*** ./src/blocks/info-box/inline-styles.js ***!
|
16848 |
\**********************************************/
|
@@ -17159,7 +17352,7 @@ function InfoBoxStyle(props) {
|
|
17159 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxStyle);
|
17160 |
|
17161 |
/***/ }),
|
17162 |
-
/*
|
17163 |
/*!*******************************************!*\
|
17164 |
!*** ./src/blocks/info-box/attributes.js ***!
|
17165 |
\*******************************************/
|
@@ -17576,7 +17769,7 @@ var attributes = {
|
|
17576 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
17577 |
|
17578 |
/***/ }),
|
17579 |
-
/*
|
17580 |
/*!**********************************************!*\
|
17581 |
!*** ./src/blocks/testimonial/attributes.js ***!
|
17582 |
\**********************************************/
|
@@ -17938,7 +18131,7 @@ var attributes = (_attributes = {
|
|
17938 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
17939 |
|
17940 |
/***/ }),
|
17941 |
-
/*
|
17942 |
/*!***************************************!*\
|
17943 |
!*** ./src/blocks/team/attributes.js ***!
|
17944 |
\***************************************/
|
@@ -18233,7 +18426,7 @@ var attributes = {
|
|
18233 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18234 |
|
18235 |
/***/ }),
|
18236 |
-
/*
|
18237 |
/*!***********************************************!*\
|
18238 |
!*** ./src/blocks/social-share/attributes.js ***!
|
18239 |
\***********************************************/
|
@@ -18339,7 +18532,87 @@ var attributes = {
|
|
18339 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18340 |
|
18341 |
/***/ }),
|
18342 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18343 |
/*!********************************************!*\
|
18344 |
!*** ./src/blocks/icon-list/attributes.js ***!
|
18345 |
\********************************************/
|
@@ -18496,7 +18769,7 @@ var attributes = {
|
|
18496 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18497 |
|
18498 |
/***/ }),
|
18499 |
-
/*
|
18500 |
/*!**************************************************!*\
|
18501 |
!*** ./src/blocks/icon-list-child/attributes.js ***!
|
18502 |
\**************************************************/
|
@@ -18574,7 +18847,7 @@ var attributes = {
|
|
18574 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18575 |
|
18576 |
/***/ }),
|
18577 |
-
/*
|
18578 |
/*!*********************************************!*\
|
18579 |
!*** ./src/blocks/price-list/attributes.js ***!
|
18580 |
\*********************************************/
|
@@ -18863,7 +19136,7 @@ var attributes = {
|
|
18863 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18864 |
|
18865 |
/***/ }),
|
18866 |
-
/*
|
18867 |
/*!****************************************!*\
|
18868 |
!*** ./src/blocks/timeline/style.scss ***!
|
18869 |
\****************************************/
|
@@ -18873,7 +19146,7 @@ var attributes = {
|
|
18873 |
// removed by extract-text-webpack-plugin
|
18874 |
|
18875 |
/***/ }),
|
18876 |
-
/*
|
18877 |
/*!************************************************************!*\
|
18878 |
!*** ./src/blocks/timeline/content-timeline/attributes.js ***!
|
18879 |
\************************************************************/
|
@@ -19143,7 +19416,7 @@ var attributes = (_attributes = {
|
|
19143 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19144 |
|
19145 |
/***/ }),
|
19146 |
-
/*
|
19147 |
/*!*************************************************!*\
|
19148 |
!*** ./src/blocks/call-to-action/attributes.js ***!
|
19149 |
\*************************************************/
|
@@ -19409,7 +19682,7 @@ var attributes = {
|
|
19409 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19410 |
|
19411 |
/***/ }),
|
19412 |
-
/*
|
19413 |
/*!*****************************************!*\
|
19414 |
!*** ./src/blocks/column/attributes.js ***!
|
19415 |
\*****************************************/
|
@@ -19663,13 +19936,17 @@ var attributes = {
|
|
19663 |
desktopPaddingType: {
|
19664 |
type: "string",
|
19665 |
default: 'px'
|
|
|
|
|
|
|
|
|
19666 |
}
|
19667 |
};
|
19668 |
|
19669 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19670 |
|
19671 |
/***/ }),
|
19672 |
-
/*
|
19673 |
/*!******************************************!*\
|
19674 |
!*** ./src/blocks/columns/attributes.js ***!
|
19675 |
\******************************************/
|
@@ -19979,62 +20256,18 @@ var attributes = {
|
|
19979 |
boxShadowPosition: {
|
19980 |
type: "string",
|
19981 |
default: "outset"
|
|
|
|
|
|
|
|
|
19982 |
}
|
|
|
19983 |
};
|
19984 |
|
19985 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19986 |
|
19987 |
/***/ }),
|
19988 |
-
/*
|
19989 |
-
/*!************************************************!*\
|
19990 |
-
!*** ./dist/blocks/uagb-controls/hexToRgba.js ***!
|
19991 |
-
\************************************************/
|
19992 |
-
/*! exports provided: default */
|
19993 |
-
/*! exports used: default */
|
19994 |
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
19995 |
-
|
19996 |
-
"use strict";
|
19997 |
-
/**
|
19998 |
-
* Get HEX color and return RGBA. Default return RGB color.
|
19999 |
-
* @param {string} color - The color string.
|
20000 |
-
* @return {boolean} opacity The inline CSS class.
|
20001 |
-
*/
|
20002 |
-
|
20003 |
-
function hexToRgba(color, opacity) {
|
20004 |
-
|
20005 |
-
if (undefined == color) {
|
20006 |
-
return "";
|
20007 |
-
}
|
20008 |
-
|
20009 |
-
if (undefined == opacity || "" == opacity) {
|
20010 |
-
opacity = 100;
|
20011 |
-
}
|
20012 |
-
|
20013 |
-
color = color.replace("#", "");
|
20014 |
-
|
20015 |
-
opacity = typeof opacity != "undefined" ? opacity / 100 : 1;
|
20016 |
-
|
20017 |
-
// Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF")
|
20018 |
-
var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
|
20019 |
-
color = color.replace(shorthandRegex, function (m, r, g, b) {
|
20020 |
-
return r + r + g + g + b + b;
|
20021 |
-
});
|
20022 |
-
|
20023 |
-
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(color);
|
20024 |
-
|
20025 |
-
var parsed_color = result ? {
|
20026 |
-
r: parseInt(result[1], 16),
|
20027 |
-
g: parseInt(result[2], 16),
|
20028 |
-
b: parseInt(result[3], 16)
|
20029 |
-
} : null;
|
20030 |
-
|
20031 |
-
return "rgba(" + parsed_color.r + "," + parsed_color.g + "," + parsed_color.b + "," + opacity + ")";
|
20032 |
-
}
|
20033 |
-
|
20034 |
-
/* harmony default export */ __webpack_exports__["a"] = (hexToRgba);
|
20035 |
-
|
20036 |
-
/***/ }),
|
20037 |
-
/* 174 */
|
20038 |
/*!*************************************!*\
|
20039 |
!*** ./src/blocks/columns/icons.js ***!
|
20040 |
\*************************************/
|
@@ -20155,7 +20388,7 @@ rowIcons.layout255025 = wp.element.createElement(
|
|
20155 |
/* harmony default export */ __webpack_exports__["a"] = (rowIcons);
|
20156 |
|
20157 |
/***/ }),
|
20158 |
-
/*
|
20159 |
/*!*********************************************!*\
|
20160 |
!*** ./src/blocks/blockquote/attributes.js ***!
|
20161 |
\*********************************************/
|
@@ -20503,7 +20736,7 @@ var attributes = {
|
|
20503 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
20504 |
|
20505 |
/***/ }),
|
20506 |
-
/*
|
20507 |
/*!***************************************************!*\
|
20508 |
!*** ./src/blocks/marketing-button/attributes.js ***!
|
20509 |
\***************************************************/
|
@@ -20797,7 +21030,7 @@ var attributes = {
|
|
20797 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
20798 |
|
20799 |
/***/ }),
|
20800 |
-
/*
|
20801 |
/*!****************************************************!*\
|
20802 |
!*** ./src/blocks/table-of-contents/attributes.js ***!
|
20803 |
\****************************************************/
|
@@ -21140,7 +21373,7 @@ var attributes = {
|
|
21140 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
21141 |
|
21142 |
/***/ }),
|
21143 |
-
/*
|
21144 |
/*!*********************************************!*\
|
21145 |
!*** ./src/blocks/table-of-contents/toc.js ***!
|
21146 |
\*********************************************/
|
@@ -21273,7 +21506,7 @@ var TableOfContents = function (_React$Component) {
|
|
21273 |
/* harmony default export */ __webpack_exports__["a"] = (TableOfContents);
|
21274 |
|
21275 |
/***/ }),
|
21276 |
-
/*
|
21277 |
/*!*************************************************!*\
|
21278 |
!*** ./node_modules/striptags/src/striptags.js ***!
|
21279 |
\*************************************************/
|
@@ -21521,7 +21754,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;
|
|
21521 |
|
21522 |
|
21523 |
/***/ }),
|
21524 |
-
/*
|
21525 |
/*!**************************************!*\
|
21526 |
!*** ./src/blocks/how-to/style.scss ***!
|
21527 |
\**************************************/
|
@@ -21531,7 +21764,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;
|
|
21531 |
// removed by extract-text-webpack-plugin
|
21532 |
|
21533 |
/***/ }),
|
21534 |
-
/*
|
21535 |
/*!********************************************!*\
|
21536 |
!*** ./src/blocks/faq-child/attributes.js ***!
|
21537 |
\********************************************/
|
@@ -21566,14 +21799,18 @@ var attributes = {
|
|
21566 |
layout: {
|
21567 |
type: "string",
|
21568 |
default: "accordion"
|
|
|
|
|
|
|
|
|
|
|
21569 |
}
|
21570 |
-
|
21571 |
};
|
21572 |
|
21573 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
21574 |
|
21575 |
/***/ }),
|
21576 |
-
/*
|
21577 |
/*!***********************!*\
|
21578 |
!*** ./src/blocks.js ***!
|
21579 |
\***********************/
|
@@ -21583,34 +21820,34 @@ var attributes = {
|
|
21583 |
|
21584 |
"use strict";
|
21585 |
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
21586 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__blocks_advanced_heading_block_js__ = __webpack_require__(/*! ./blocks/advanced-heading/block.js */
|
21587 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__blocks_post_block_js__ = __webpack_require__(/*! ./blocks/post/block.js */
|
21588 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__blocks_section_block_js__ = __webpack_require__(/*! ./blocks/section/block.js */
|
21589 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blocks_buttons_block_js__ = __webpack_require__(/*! ./blocks/buttons/block.js */
|
21590 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__blocks_buttons_child_block_js__ = __webpack_require__(/*! ./blocks/buttons-child/block.js */
|
21591 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blocks_info_box_block_js__ = __webpack_require__(/*! ./blocks/info-box/block.js */
|
21592 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__blocks_testimonial_block_js__ = __webpack_require__(/*! ./blocks/testimonial/block.js */
|
21593 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__blocks_team_block_js__ = __webpack_require__(/*! ./blocks/team/block.js */
|
21594 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__blocks_social_share_block_js__ = __webpack_require__(/*! ./blocks/social-share/block.js */
|
21595 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__blocks_social_share_child_block_js__ = __webpack_require__(/*! ./blocks/social-share-child/block.js */
|
21596 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__blocks_google_map_block_js__ = __webpack_require__(/*! ./blocks/google-map/block.js */
|
21597 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__blocks_icon_list_block_js__ = __webpack_require__(/*! ./blocks/icon-list/block.js */
|
21598 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__blocks_icon_list_child_block_js__ = __webpack_require__(/*! ./blocks/icon-list-child/block.js */
|
21599 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__blocks_price_list_block_js__ = __webpack_require__(/*! ./blocks/price-list/block.js */
|
21600 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__blocks_timeline_block_js__ = __webpack_require__(/*! ./blocks/timeline/block.js */
|
21601 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__blocks_call_to_action_block_js__ = __webpack_require__(/*! ./blocks/call-to-action/block.js */
|
21602 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__blocks_column_block_js__ = __webpack_require__(/*! ./blocks/column/block.js */
|
21603 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__blocks_columns_block_js__ = __webpack_require__(/*! ./blocks/columns/block.js */
|
21604 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__blocks_cf7_styler_block_js__ = __webpack_require__(/*! ./blocks/cf7-styler/block.js */
|
21605 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__blocks_gf_styler_block_js__ = __webpack_require__(/*! ./blocks/gf-styler/block.js */
|
21606 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_20__blocks_blockquote_block_js__ = __webpack_require__(/*! ./blocks/blockquote/block.js */
|
21607 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_21__blocks_marketing_button_block_js__ = __webpack_require__(/*! ./blocks/marketing-button/block.js */
|
21608 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_22__blocks_table_of_contents_block_js__ = __webpack_require__(/*! ./blocks/table-of-contents/block.js */
|
21609 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_23__blocks_how_to_block_js__ = __webpack_require__(/*! ./blocks/how-to/block.js */
|
21610 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_24__blocks_faq_block_js__ = __webpack_require__(/*! ./blocks/faq/block.js */
|
21611 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_25__blocks_faq_child_block_js__ = __webpack_require__(/*! ./blocks/faq-child/block.js */
|
21612 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_26__blocks_inline_notice_block_js__ = __webpack_require__(/*! ./blocks/inline-notice/block.js */
|
21613 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_27__blocks_wp_search_block_js__ = __webpack_require__(/*! ./blocks/wp-search/block.js */
|
21614 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_28__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../dist/blocks/uagb-controls/block-icons */ 1);
|
21615 |
/**
|
21616 |
* Gutenberg Blocks
|
@@ -21661,7 +21898,7 @@ updateCategory("uagb", {
|
|
21661 |
});
|
21662 |
|
21663 |
/***/ }),
|
21664 |
-
/*
|
21665 |
/*!**********************************************!*\
|
21666 |
!*** ./src/blocks/advanced-heading/block.js ***!
|
21667 |
\**********************************************/
|
@@ -21670,12 +21907,12 @@ updateCategory("uagb", {
|
|
21670 |
|
21671 |
"use strict";
|
21672 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
21673 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
21674 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
21675 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
21676 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
21677 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__transform__ = __webpack_require__(/*! ./transform */
|
21678 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
21679 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
21680 |
/**
|
21681 |
* BLOCK: Advanced Heading
|
@@ -21711,7 +21948,7 @@ registerBlockType("uagb/advanced-heading", {
|
|
21711 |
});
|
21712 |
|
21713 |
/***/ }),
|
21714 |
-
/*
|
21715 |
/*!*********************************************!*\
|
21716 |
!*** ./src/blocks/advanced-heading/edit.js ***!
|
21717 |
\*********************************************/
|
@@ -21722,10 +21959,10 @@ registerBlockType("uagb/advanced-heading", {
|
|
21722 |
"use strict";
|
21723 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
21724 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
21725 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
21726 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
21727 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
21728 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
21729 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
21730 |
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; }; }();
|
21731 |
|
@@ -22219,7 +22456,7 @@ var UAGBAdvancedHeading = function (_Component) {
|
|
22219 |
})(UAGBAdvancedHeading));
|
22220 |
|
22221 |
/***/ }),
|
22222 |
-
/*
|
22223 |
/*!************************************************!*\
|
22224 |
!*** ./src/blocks/advanced-heading/styling.js ***!
|
22225 |
\************************************************/
|
@@ -22342,7 +22579,7 @@ function styling(props) {
|
|
22342 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
22343 |
|
22344 |
/***/ }),
|
22345 |
-
/*
|
22346 |
/*!******************************************************!*\
|
22347 |
!*** ./src/components/typography/font-typography.js ***!
|
22348 |
\******************************************************/
|
@@ -22353,8 +22590,8 @@ function styling(props) {
|
|
22353 |
"use strict";
|
22354 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
22355 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_map__);
|
22356 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__fonts__ = __webpack_require__(/*! ./fonts */
|
22357 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_select__ = __webpack_require__(/*! react-select */
|
22358 |
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; };
|
22359 |
|
22360 |
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; }
|
@@ -22517,7 +22754,7 @@ function FontFamilyControl(props) {
|
|
22517 |
/* harmony default export */ __webpack_exports__["a"] = (FontFamilyControl);
|
22518 |
|
22519 |
/***/ }),
|
22520 |
-
/*
|
22521 |
/*!*********************************************!*\
|
22522 |
!*** ./node_modules/lodash/_baseMatches.js ***!
|
22523 |
\*********************************************/
|
@@ -22525,9 +22762,9 @@ function FontFamilyControl(props) {
|
|
22525 |
/*! all exports used */
|
22526 |
/***/ (function(module, exports, __webpack_require__) {
|
22527 |
|
22528 |
-
var baseIsMatch = __webpack_require__(/*! ./_baseIsMatch */
|
22529 |
-
getMatchData = __webpack_require__(/*! ./_getMatchData */
|
22530 |
-
matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */
|
22531 |
|
22532 |
/**
|
22533 |
* The base implementation of `_.matches` which doesn't clone `source`.
|
@@ -22550,7 +22787,7 @@ module.exports = baseMatches;
|
|
22550 |
|
22551 |
|
22552 |
/***/ }),
|
22553 |
-
/*
|
22554 |
/*!*********************************************!*\
|
22555 |
!*** ./node_modules/lodash/_baseIsMatch.js ***!
|
22556 |
\*********************************************/
|
@@ -22559,7 +22796,7 @@ module.exports = baseMatches;
|
|
22559 |
/***/ (function(module, exports, __webpack_require__) {
|
22560 |
|
22561 |
var Stack = __webpack_require__(/*! ./_Stack */ 50),
|
22562 |
-
baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */
|
22563 |
|
22564 |
/** Used to compose bitmasks for value comparisons. */
|
22565 |
var COMPARE_PARTIAL_FLAG = 1,
|
@@ -22623,7 +22860,7 @@ module.exports = baseIsMatch;
|
|
22623 |
|
22624 |
|
22625 |
/***/ }),
|
22626 |
-
/*
|
22627 |
/*!************************************************!*\
|
22628 |
!*** ./node_modules/lodash/_listCacheClear.js ***!
|
22629 |
\************************************************/
|
@@ -22647,7 +22884,7 @@ module.exports = listCacheClear;
|
|
22647 |
|
22648 |
|
22649 |
/***/ }),
|
22650 |
-
/*
|
22651 |
/*!*************************************************!*\
|
22652 |
!*** ./node_modules/lodash/_listCacheDelete.js ***!
|
22653 |
\*************************************************/
|
@@ -22693,7 +22930,7 @@ module.exports = listCacheDelete;
|
|
22693 |
|
22694 |
|
22695 |
/***/ }),
|
22696 |
-
/*
|
22697 |
/*!**********************************************!*\
|
22698 |
!*** ./node_modules/lodash/_listCacheGet.js ***!
|
22699 |
\**********************************************/
|
@@ -22723,7 +22960,7 @@ module.exports = listCacheGet;
|
|
22723 |
|
22724 |
|
22725 |
/***/ }),
|
22726 |
-
/*
|
22727 |
/*!**********************************************!*\
|
22728 |
!*** ./node_modules/lodash/_listCacheHas.js ***!
|
22729 |
\**********************************************/
|
@@ -22750,7 +22987,7 @@ module.exports = listCacheHas;
|
|
22750 |
|
22751 |
|
22752 |
/***/ }),
|
22753 |
-
/*
|
22754 |
/*!**********************************************!*\
|
22755 |
!*** ./node_modules/lodash/_listCacheSet.js ***!
|
22756 |
\**********************************************/
|
@@ -22787,7 +23024,7 @@ module.exports = listCacheSet;
|
|
22787 |
|
22788 |
|
22789 |
/***/ }),
|
22790 |
-
/*
|
22791 |
/*!********************************************!*\
|
22792 |
!*** ./node_modules/lodash/_stackClear.js ***!
|
22793 |
\********************************************/
|
@@ -22813,7 +23050,7 @@ module.exports = stackClear;
|
|
22813 |
|
22814 |
|
22815 |
/***/ }),
|
22816 |
-
/*
|
22817 |
/*!*********************************************!*\
|
22818 |
!*** ./node_modules/lodash/_stackDelete.js ***!
|
22819 |
\*********************************************/
|
@@ -22842,7 +23079,7 @@ module.exports = stackDelete;
|
|
22842 |
|
22843 |
|
22844 |
/***/ }),
|
22845 |
-
/*
|
22846 |
/*!******************************************!*\
|
22847 |
!*** ./node_modules/lodash/_stackGet.js ***!
|
22848 |
\******************************************/
|
@@ -22867,7 +23104,7 @@ module.exports = stackGet;
|
|
22867 |
|
22868 |
|
22869 |
/***/ }),
|
22870 |
-
/*
|
22871 |
/*!******************************************!*\
|
22872 |
!*** ./node_modules/lodash/_stackHas.js ***!
|
22873 |
\******************************************/
|
@@ -22892,7 +23129,7 @@ module.exports = stackHas;
|
|
22892 |
|
22893 |
|
22894 |
/***/ }),
|
22895 |
-
/*
|
22896 |
/*!******************************************!*\
|
22897 |
!*** ./node_modules/lodash/_stackSet.js ***!
|
22898 |
\******************************************/
|
@@ -22937,7 +23174,7 @@ module.exports = stackSet;
|
|
22937 |
|
22938 |
|
22939 |
/***/ }),
|
22940 |
-
/*
|
22941 |
/*!**********************************************!*\
|
22942 |
!*** ./node_modules/lodash/_baseIsNative.js ***!
|
22943 |
\**********************************************/
|
@@ -22945,10 +23182,10 @@ module.exports = stackSet;
|
|
22945 |
/*! all exports used */
|
22946 |
/***/ (function(module, exports, __webpack_require__) {
|
22947 |
|
22948 |
-
var isFunction = __webpack_require__(/*! ./isFunction */
|
22949 |
-
isMasked = __webpack_require__(/*! ./_isMasked */
|
22950 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
22951 |
-
toSource = __webpack_require__(/*! ./_toSource */
|
22952 |
|
22953 |
/**
|
22954 |
* Used to match `RegExp`
|
@@ -22995,7 +23232,7 @@ module.exports = baseIsNative;
|
|
22995 |
|
22996 |
|
22997 |
/***/ }),
|
22998 |
-
/*
|
22999 |
/*!*******************************************!*\
|
23000 |
!*** ./node_modules/lodash/_getRawTag.js ***!
|
23001 |
\*******************************************/
|
@@ -23052,7 +23289,7 @@ module.exports = getRawTag;
|
|
23052 |
|
23053 |
|
23054 |
/***/ }),
|
23055 |
-
/*
|
23056 |
/*!************************************************!*\
|
23057 |
!*** ./node_modules/lodash/_objectToString.js ***!
|
23058 |
\************************************************/
|
@@ -23085,7 +23322,7 @@ module.exports = objectToString;
|
|
23085 |
|
23086 |
|
23087 |
/***/ }),
|
23088 |
-
/*
|
23089 |
/*!******************************************!*\
|
23090 |
!*** ./node_modules/lodash/_isMasked.js ***!
|
23091 |
\******************************************/
|
@@ -23093,7 +23330,7 @@ module.exports = objectToString;
|
|
23093 |
/*! all exports used */
|
23094 |
/***/ (function(module, exports, __webpack_require__) {
|
23095 |
|
23096 |
-
var coreJsData = __webpack_require__(/*! ./_coreJsData */
|
23097 |
|
23098 |
/** Used to detect methods masquerading as native. */
|
23099 |
var maskSrcKey = (function() {
|
@@ -23116,7 +23353,7 @@ module.exports = isMasked;
|
|
23116 |
|
23117 |
|
23118 |
/***/ }),
|
23119 |
-
/*
|
23120 |
/*!********************************************!*\
|
23121 |
!*** ./node_modules/lodash/_coreJsData.js ***!
|
23122 |
\********************************************/
|
@@ -23133,7 +23370,7 @@ module.exports = coreJsData;
|
|
23133 |
|
23134 |
|
23135 |
/***/ }),
|
23136 |
-
/*
|
23137 |
/*!******************************************!*\
|
23138 |
!*** ./node_modules/lodash/_getValue.js ***!
|
23139 |
\******************************************/
|
@@ -23157,7 +23394,7 @@ module.exports = getValue;
|
|
23157 |
|
23158 |
|
23159 |
/***/ }),
|
23160 |
-
/*
|
23161 |
/*!***********************************************!*\
|
23162 |
!*** ./node_modules/lodash/_mapCacheClear.js ***!
|
23163 |
\***********************************************/
|
@@ -23165,7 +23402,7 @@ module.exports = getValue;
|
|
23165 |
/*! all exports used */
|
23166 |
/***/ (function(module, exports, __webpack_require__) {
|
23167 |
|
23168 |
-
var Hash = __webpack_require__(/*! ./_Hash */
|
23169 |
ListCache = __webpack_require__(/*! ./_ListCache */ 35),
|
23170 |
Map = __webpack_require__(/*! ./_Map */ 51);
|
23171 |
|
@@ -23189,7 +23426,7 @@ module.exports = mapCacheClear;
|
|
23189 |
|
23190 |
|
23191 |
/***/ }),
|
23192 |
-
/*
|
23193 |
/*!**************************************!*\
|
23194 |
!*** ./node_modules/lodash/_Hash.js ***!
|
23195 |
\**************************************/
|
@@ -23197,11 +23434,11 @@ module.exports = mapCacheClear;
|
|
23197 |
/*! all exports used */
|
23198 |
/***/ (function(module, exports, __webpack_require__) {
|
23199 |
|
23200 |
-
var hashClear = __webpack_require__(/*! ./_hashClear */
|
23201 |
-
hashDelete = __webpack_require__(/*! ./_hashDelete */
|
23202 |
-
hashGet = __webpack_require__(/*! ./_hashGet */
|
23203 |
-
hashHas = __webpack_require__(/*! ./_hashHas */
|
23204 |
-
hashSet = __webpack_require__(/*! ./_hashSet */
|
23205 |
|
23206 |
/**
|
23207 |
* Creates a hash object.
|
@@ -23232,7 +23469,7 @@ module.exports = Hash;
|
|
23232 |
|
23233 |
|
23234 |
/***/ }),
|
23235 |
-
/*
|
23236 |
/*!*******************************************!*\
|
23237 |
!*** ./node_modules/lodash/_hashClear.js ***!
|
23238 |
\*******************************************/
|
@@ -23258,7 +23495,7 @@ module.exports = hashClear;
|
|
23258 |
|
23259 |
|
23260 |
/***/ }),
|
23261 |
-
/*
|
23262 |
/*!********************************************!*\
|
23263 |
!*** ./node_modules/lodash/_hashDelete.js ***!
|
23264 |
\********************************************/
|
@@ -23286,7 +23523,7 @@ module.exports = hashDelete;
|
|
23286 |
|
23287 |
|
23288 |
/***/ }),
|
23289 |
-
/*
|
23290 |
/*!*****************************************!*\
|
23291 |
!*** ./node_modules/lodash/_hashGet.js ***!
|
23292 |
\*****************************************/
|
@@ -23327,7 +23564,7 @@ module.exports = hashGet;
|
|
23327 |
|
23328 |
|
23329 |
/***/ }),
|
23330 |
-
/*
|
23331 |
/*!*****************************************!*\
|
23332 |
!*** ./node_modules/lodash/_hashHas.js ***!
|
23333 |
\*****************************************/
|
@@ -23361,7 +23598,7 @@ module.exports = hashHas;
|
|
23361 |
|
23362 |
|
23363 |
/***/ }),
|
23364 |
-
/*
|
23365 |
/*!*****************************************!*\
|
23366 |
!*** ./node_modules/lodash/_hashSet.js ***!
|
23367 |
\*****************************************/
|
@@ -23395,7 +23632,7 @@ module.exports = hashSet;
|
|
23395 |
|
23396 |
|
23397 |
/***/ }),
|
23398 |
-
/*
|
23399 |
/*!************************************************!*\
|
23400 |
!*** ./node_modules/lodash/_mapCacheDelete.js ***!
|
23401 |
\************************************************/
|
@@ -23424,7 +23661,7 @@ module.exports = mapCacheDelete;
|
|
23424 |
|
23425 |
|
23426 |
/***/ }),
|
23427 |
-
/*
|
23428 |
/*!*******************************************!*\
|
23429 |
!*** ./node_modules/lodash/_isKeyable.js ***!
|
23430 |
\*******************************************/
|
@@ -23450,7 +23687,7 @@ module.exports = isKeyable;
|
|
23450 |
|
23451 |
|
23452 |
/***/ }),
|
23453 |
-
/*
|
23454 |
/*!*********************************************!*\
|
23455 |
!*** ./node_modules/lodash/_mapCacheGet.js ***!
|
23456 |
\*********************************************/
|
@@ -23477,7 +23714,7 @@ module.exports = mapCacheGet;
|
|
23477 |
|
23478 |
|
23479 |
/***/ }),
|
23480 |
-
/*
|
23481 |
/*!*********************************************!*\
|
23482 |
!*** ./node_modules/lodash/_mapCacheHas.js ***!
|
23483 |
\*********************************************/
|
@@ -23504,7 +23741,7 @@ module.exports = mapCacheHas;
|
|
23504 |
|
23505 |
|
23506 |
/***/ }),
|
23507 |
-
/*
|
23508 |
/*!*********************************************!*\
|
23509 |
!*** ./node_modules/lodash/_mapCacheSet.js ***!
|
23510 |
\*********************************************/
|
@@ -23537,7 +23774,7 @@ module.exports = mapCacheSet;
|
|
23537 |
|
23538 |
|
23539 |
/***/ }),
|
23540 |
-
/*
|
23541 |
/*!*************************************************!*\
|
23542 |
!*** ./node_modules/lodash/_baseIsEqualDeep.js ***!
|
23543 |
\*************************************************/
|
@@ -23546,13 +23783,13 @@ module.exports = mapCacheSet;
|
|
23546 |
/***/ (function(module, exports, __webpack_require__) {
|
23547 |
|
23548 |
var Stack = __webpack_require__(/*! ./_Stack */ 50),
|
23549 |
-
equalArrays = __webpack_require__(/*! ./_equalArrays */
|
23550 |
-
equalByTag = __webpack_require__(/*! ./_equalByTag */
|
23551 |
-
equalObjects = __webpack_require__(/*! ./_equalObjects */
|
23552 |
getTag = __webpack_require__(/*! ./_getTag */ 44),
|
23553 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
23554 |
isBuffer = __webpack_require__(/*! ./isBuffer */ 57),
|
23555 |
-
isTypedArray = __webpack_require__(/*! ./isTypedArray */
|
23556 |
|
23557 |
/** Used to compose bitmasks for value comparisons. */
|
23558 |
var COMPARE_PARTIAL_FLAG = 1;
|
@@ -23631,7 +23868,7 @@ module.exports = baseIsEqualDeep;
|
|
23631 |
|
23632 |
|
23633 |
/***/ }),
|
23634 |
-
/*
|
23635 |
/*!******************************************!*\
|
23636 |
!*** ./node_modules/lodash/_SetCache.js ***!
|
23637 |
\******************************************/
|
@@ -23640,8 +23877,8 @@ module.exports = baseIsEqualDeep;
|
|
23640 |
/***/ (function(module, exports, __webpack_require__) {
|
23641 |
|
23642 |
var MapCache = __webpack_require__(/*! ./_MapCache */ 53),
|
23643 |
-
setCacheAdd = __webpack_require__(/*! ./_setCacheAdd */
|
23644 |
-
setCacheHas = __webpack_require__(/*! ./_setCacheHas */
|
23645 |
|
23646 |
/**
|
23647 |
*
|
@@ -23669,7 +23906,7 @@ module.exports = SetCache;
|
|
23669 |
|
23670 |
|
23671 |
/***/ }),
|
23672 |
-
/*
|
23673 |
/*!*********************************************!*\
|
23674 |
!*** ./node_modules/lodash/_setCacheAdd.js ***!
|
23675 |
\*********************************************/
|
@@ -23699,7 +23936,7 @@ module.exports = setCacheAdd;
|
|
23699 |
|
23700 |
|
23701 |
/***/ }),
|
23702 |
-
/*
|
23703 |
/*!*********************************************!*\
|
23704 |
!*** ./node_modules/lodash/_setCacheHas.js ***!
|
23705 |
\*********************************************/
|
@@ -23724,7 +23961,7 @@ module.exports = setCacheHas;
|
|
23724 |
|
23725 |
|
23726 |
/***/ }),
|
23727 |
-
/*
|
23728 |
/*!*******************************************!*\
|
23729 |
!*** ./node_modules/lodash/_arraySome.js ***!
|
23730 |
\*******************************************/
|
@@ -23758,7 +23995,7 @@ module.exports = arraySome;
|
|
23758 |
|
23759 |
|
23760 |
/***/ }),
|
23761 |
-
/*
|
23762 |
/*!******************************************!*\
|
23763 |
!*** ./node_modules/lodash/_cacheHas.js ***!
|
23764 |
\******************************************/
|
@@ -23782,7 +24019,7 @@ module.exports = cacheHas;
|
|
23782 |
|
23783 |
|
23784 |
/***/ }),
|
23785 |
-
/*
|
23786 |
/*!********************************************!*\
|
23787 |
!*** ./node_modules/lodash/_equalByTag.js ***!
|
23788 |
\********************************************/
|
@@ -23791,11 +24028,11 @@ module.exports = cacheHas;
|
|
23791 |
/***/ (function(module, exports, __webpack_require__) {
|
23792 |
|
23793 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 21),
|
23794 |
-
Uint8Array = __webpack_require__(/*! ./_Uint8Array */
|
23795 |
eq = __webpack_require__(/*! ./eq */ 37),
|
23796 |
-
equalArrays = __webpack_require__(/*! ./_equalArrays */
|
23797 |
-
mapToArray = __webpack_require__(/*! ./_mapToArray */
|
23798 |
-
setToArray = __webpack_require__(/*! ./_setToArray */
|
23799 |
|
23800 |
/** Used to compose bitmasks for value comparisons. */
|
23801 |
var COMPARE_PARTIAL_FLAG = 1,
|
@@ -23905,7 +24142,7 @@ module.exports = equalByTag;
|
|
23905 |
|
23906 |
|
23907 |
/***/ }),
|
23908 |
-
/*
|
23909 |
/*!********************************************!*\
|
23910 |
!*** ./node_modules/lodash/_mapToArray.js ***!
|
23911 |
\********************************************/
|
@@ -23934,7 +24171,7 @@ module.exports = mapToArray;
|
|
23934 |
|
23935 |
|
23936 |
/***/ }),
|
23937 |
-
/*
|
23938 |
/*!********************************************!*\
|
23939 |
!*** ./node_modules/lodash/_setToArray.js ***!
|
23940 |
\********************************************/
|
@@ -23963,7 +24200,7 @@ module.exports = setToArray;
|
|
23963 |
|
23964 |
|
23965 |
/***/ }),
|
23966 |
-
/*
|
23967 |
/*!**********************************************!*\
|
23968 |
!*** ./node_modules/lodash/_equalObjects.js ***!
|
23969 |
\**********************************************/
|
@@ -23971,7 +24208,7 @@ module.exports = setToArray;
|
|
23971 |
/*! all exports used */
|
23972 |
/***/ (function(module, exports, __webpack_require__) {
|
23973 |
|
23974 |
-
var getAllKeys = __webpack_require__(/*! ./_getAllKeys */
|
23975 |
|
23976 |
/** Used to compose bitmasks for value comparisons. */
|
23977 |
var COMPARE_PARTIAL_FLAG = 1;
|
@@ -24063,7 +24300,7 @@ module.exports = equalObjects;
|
|
24063 |
|
24064 |
|
24065 |
/***/ }),
|
24066 |
-
/*
|
24067 |
/*!*********************************************!*\
|
24068 |
!*** ./node_modules/lodash/_arrayFilter.js ***!
|
24069 |
\*********************************************/
|
@@ -24099,7 +24336,7 @@ module.exports = arrayFilter;
|
|
24099 |
|
24100 |
|
24101 |
/***/ }),
|
24102 |
-
/*
|
24103 |
/*!*************************************************!*\
|
24104 |
!*** ./node_modules/lodash/_baseIsArguments.js ***!
|
24105 |
\*************************************************/
|
@@ -24128,7 +24365,7 @@ module.exports = baseIsArguments;
|
|
24128 |
|
24129 |
|
24130 |
/***/ }),
|
24131 |
-
/*
|
24132 |
/*!******************************************!*\
|
24133 |
!*** ./node_modules/lodash/stubFalse.js ***!
|
24134 |
\******************************************/
|
@@ -24157,7 +24394,7 @@ module.exports = stubFalse;
|
|
24157 |
|
24158 |
|
24159 |
/***/ }),
|
24160 |
-
/*
|
24161 |
/*!**************************************************!*\
|
24162 |
!*** ./node_modules/lodash/_baseIsTypedArray.js ***!
|
24163 |
\**************************************************/
|
@@ -24228,7 +24465,7 @@ module.exports = baseIsTypedArray;
|
|
24228 |
|
24229 |
|
24230 |
/***/ }),
|
24231 |
-
/*
|
24232 |
/*!******************************************!*\
|
24233 |
!*** ./node_modules/lodash/_baseKeys.js ***!
|
24234 |
\******************************************/
|
@@ -24237,7 +24474,7 @@ module.exports = baseIsTypedArray;
|
|
24237 |
/***/ (function(module, exports, __webpack_require__) {
|
24238 |
|
24239 |
var isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
|
24240 |
-
nativeKeys = __webpack_require__(/*! ./_nativeKeys */
|
24241 |
|
24242 |
/** Used for built-in method references. */
|
24243 |
var objectProto = Object.prototype;
|
@@ -24269,7 +24506,7 @@ module.exports = baseKeys;
|
|
24269 |
|
24270 |
|
24271 |
/***/ }),
|
24272 |
-
/*
|
24273 |
/*!********************************************!*\
|
24274 |
!*** ./node_modules/lodash/_nativeKeys.js ***!
|
24275 |
\********************************************/
|
@@ -24277,7 +24514,7 @@ module.exports = baseKeys;
|
|
24277 |
/*! all exports used */
|
24278 |
/***/ (function(module, exports, __webpack_require__) {
|
24279 |
|
24280 |
-
var overArg = __webpack_require__(/*! ./_overArg */
|
24281 |
|
24282 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
24283 |
var nativeKeys = overArg(Object.keys, Object);
|
@@ -24286,7 +24523,7 @@ module.exports = nativeKeys;
|
|
24286 |
|
24287 |
|
24288 |
/***/ }),
|
24289 |
-
/*
|
24290 |
/*!******************************************!*\
|
24291 |
!*** ./node_modules/lodash/_DataView.js ***!
|
24292 |
\******************************************/
|
@@ -24304,7 +24541,7 @@ module.exports = DataView;
|
|
24304 |
|
24305 |
|
24306 |
/***/ }),
|
24307 |
-
/*
|
24308 |
/*!*****************************************!*\
|
24309 |
!*** ./node_modules/lodash/_Promise.js ***!
|
24310 |
\*****************************************/
|
@@ -24322,7 +24559,7 @@ module.exports = Promise;
|
|
24322 |
|
24323 |
|
24324 |
/***/ }),
|
24325 |
-
/*
|
24326 |
/*!*************************************!*\
|
24327 |
!*** ./node_modules/lodash/_Set.js ***!
|
24328 |
\*************************************/
|
@@ -24340,7 +24577,7 @@ module.exports = Set;
|
|
24340 |
|
24341 |
|
24342 |
/***/ }),
|
24343 |
-
/*
|
24344 |
/*!*****************************************!*\
|
24345 |
!*** ./node_modules/lodash/_WeakMap.js ***!
|
24346 |
\*****************************************/
|
@@ -24358,7 +24595,7 @@ module.exports = WeakMap;
|
|
24358 |
|
24359 |
|
24360 |
/***/ }),
|
24361 |
-
/*
|
24362 |
/*!**********************************************!*\
|
24363 |
!*** ./node_modules/lodash/_getMatchData.js ***!
|
24364 |
\**********************************************/
|
@@ -24366,7 +24603,7 @@ module.exports = WeakMap;
|
|
24366 |
/*! all exports used */
|
24367 |
/***/ (function(module, exports, __webpack_require__) {
|
24368 |
|
24369 |
-
var isStrictComparable = __webpack_require__(/*! ./_isStrictComparable */
|
24370 |
keys = __webpack_require__(/*! ./keys */ 22);
|
24371 |
|
24372 |
/**
|
@@ -24393,7 +24630,7 @@ module.exports = getMatchData;
|
|
24393 |
|
24394 |
|
24395 |
/***/ }),
|
24396 |
-
/*
|
24397 |
/*!*****************************************************!*\
|
24398 |
!*** ./node_modules/lodash/_baseMatchesProperty.js ***!
|
24399 |
\*****************************************************/
|
@@ -24401,12 +24638,12 @@ module.exports = getMatchData;
|
|
24401 |
/*! all exports used */
|
24402 |
/***/ (function(module, exports, __webpack_require__) {
|
24403 |
|
24404 |
-
var baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */
|
24405 |
-
get = __webpack_require__(/*! ./get */
|
24406 |
-
hasIn = __webpack_require__(/*! ./hasIn */
|
24407 |
isKey = __webpack_require__(/*! ./_isKey */ 60),
|
24408 |
-
isStrictComparable = __webpack_require__(/*! ./_isStrictComparable */
|
24409 |
-
matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */
|
24410 |
toKey = __webpack_require__(/*! ./_toKey */ 25);
|
24411 |
|
24412 |
/** Used to compose bitmasks for value comparisons. */
|
@@ -24437,7 +24674,7 @@ module.exports = baseMatchesProperty;
|
|
24437 |
|
24438 |
|
24439 |
/***/ }),
|
24440 |
-
/*
|
24441 |
/*!**********************************************!*\
|
24442 |
!*** ./node_modules/lodash/_stringToPath.js ***!
|
24443 |
\**********************************************/
|
@@ -24445,7 +24682,7 @@ module.exports = baseMatchesProperty;
|
|
24445 |
/*! all exports used */
|
24446 |
/***/ (function(module, exports, __webpack_require__) {
|
24447 |
|
24448 |
-
var memoizeCapped = __webpack_require__(/*! ./_memoizeCapped */
|
24449 |
|
24450 |
/** Used to match property names within property paths. */
|
24451 |
var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g;
|
@@ -24475,7 +24712,7 @@ module.exports = stringToPath;
|
|
24475 |
|
24476 |
|
24477 |
/***/ }),
|
24478 |
-
/*
|
24479 |
/*!***********************************************!*\
|
24480 |
!*** ./node_modules/lodash/_memoizeCapped.js ***!
|
24481 |
\***********************************************/
|
@@ -24483,7 +24720,7 @@ module.exports = stringToPath;
|
|
24483 |
/*! all exports used */
|
24484 |
/***/ (function(module, exports, __webpack_require__) {
|
24485 |
|
24486 |
-
var memoize = __webpack_require__(/*! ./memoize */
|
24487 |
|
24488 |
/** Used as the maximum memoize cache size. */
|
24489 |
var MAX_MEMOIZE_SIZE = 500;
|
@@ -24512,7 +24749,7 @@ module.exports = memoizeCapped;
|
|
24512 |
|
24513 |
|
24514 |
/***/ }),
|
24515 |
-
/*
|
24516 |
/*!****************************************!*\
|
24517 |
!*** ./node_modules/lodash/memoize.js ***!
|
24518 |
\****************************************/
|
@@ -24596,7 +24833,7 @@ module.exports = memoize;
|
|
24596 |
|
24597 |
|
24598 |
/***/ }),
|
24599 |
-
/*
|
24600 |
/*!**************************************!*\
|
24601 |
!*** ./node_modules/lodash/hasIn.js ***!
|
24602 |
\**************************************/
|
@@ -24604,8 +24841,8 @@ module.exports = memoize;
|
|
24604 |
/*! all exports used */
|
24605 |
/***/ (function(module, exports, __webpack_require__) {
|
24606 |
|
24607 |
-
var baseHasIn = __webpack_require__(/*! ./_baseHasIn */
|
24608 |
-
hasPath = __webpack_require__(/*! ./_hasPath */
|
24609 |
|
24610 |
/**
|
24611 |
* Checks if `path` is a direct or inherited property of `object`.
|
@@ -24641,7 +24878,7 @@ module.exports = hasIn;
|
|
24641 |
|
24642 |
|
24643 |
/***/ }),
|
24644 |
-
/*
|
24645 |
/*!*******************************************!*\
|
24646 |
!*** ./node_modules/lodash/_baseHasIn.js ***!
|
24647 |
\*******************************************/
|
@@ -24665,7 +24902,7 @@ module.exports = baseHasIn;
|
|
24665 |
|
24666 |
|
24667 |
/***/ }),
|
24668 |
-
/*
|
24669 |
/*!*****************************************!*\
|
24670 |
!*** ./node_modules/lodash/_hasPath.js ***!
|
24671 |
\*****************************************/
|
@@ -24715,7 +24952,7 @@ module.exports = hasPath;
|
|
24715 |
|
24716 |
|
24717 |
/***/ }),
|
24718 |
-
/*
|
24719 |
/*!*****************************************!*\
|
24720 |
!*** ./node_modules/lodash/property.js ***!
|
24721 |
\*****************************************/
|
@@ -24723,8 +24960,8 @@ module.exports = hasPath;
|
|
24723 |
/*! all exports used */
|
24724 |
/***/ (function(module, exports, __webpack_require__) {
|
24725 |
|
24726 |
-
var baseProperty = __webpack_require__(/*! ./_baseProperty */
|
24727 |
-
basePropertyDeep = __webpack_require__(/*! ./_basePropertyDeep */
|
24728 |
isKey = __webpack_require__(/*! ./_isKey */ 60),
|
24729 |
toKey = __webpack_require__(/*! ./_toKey */ 25);
|
24730 |
|
@@ -24758,7 +24995,7 @@ module.exports = property;
|
|
24758 |
|
24759 |
|
24760 |
/***/ }),
|
24761 |
-
/*
|
24762 |
/*!**************************************************!*\
|
24763 |
!*** ./node_modules/lodash/_basePropertyDeep.js ***!
|
24764 |
\**************************************************/
|
@@ -24785,7 +25022,7 @@ module.exports = basePropertyDeep;
|
|
24785 |
|
24786 |
|
24787 |
/***/ }),
|
24788 |
-
/*
|
24789 |
/*!*****************************************!*\
|
24790 |
!*** ./node_modules/lodash/_baseMap.js ***!
|
24791 |
\*****************************************/
|
@@ -24793,7 +25030,7 @@ module.exports = basePropertyDeep;
|
|
24793 |
/*! all exports used */
|
24794 |
/***/ (function(module, exports, __webpack_require__) {
|
24795 |
|
24796 |
-
var baseEach = __webpack_require__(/*! ./_baseEach */
|
24797 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
|
24798 |
|
24799 |
/**
|
@@ -24818,7 +25055,7 @@ module.exports = baseMap;
|
|
24818 |
|
24819 |
|
24820 |
/***/ }),
|
24821 |
-
/*
|
24822 |
/*!******************************************!*\
|
24823 |
!*** ./node_modules/lodash/_baseEach.js ***!
|
24824 |
\******************************************/
|
@@ -24826,8 +25063,8 @@ module.exports = baseMap;
|
|
24826 |
/*! all exports used */
|
24827 |
/***/ (function(module, exports, __webpack_require__) {
|
24828 |
|
24829 |
-
var baseForOwn = __webpack_require__(/*! ./_baseForOwn */
|
24830 |
-
createBaseEach = __webpack_require__(/*! ./_createBaseEach */
|
24831 |
|
24832 |
/**
|
24833 |
* The base implementation of `_.forEach` without support for iteratee shorthands.
|
@@ -24843,7 +25080,7 @@ module.exports = baseEach;
|
|
24843 |
|
24844 |
|
24845 |
/***/ }),
|
24846 |
-
/*
|
24847 |
/*!********************************************!*\
|
24848 |
!*** ./node_modules/lodash/_baseForOwn.js ***!
|
24849 |
\********************************************/
|
@@ -24851,7 +25088,7 @@ module.exports = baseEach;
|
|
24851 |
/*! all exports used */
|
24852 |
/***/ (function(module, exports, __webpack_require__) {
|
24853 |
|
24854 |
-
var baseFor = __webpack_require__(/*! ./_baseFor */
|
24855 |
keys = __webpack_require__(/*! ./keys */ 22);
|
24856 |
|
24857 |
/**
|
@@ -24870,7 +25107,7 @@ module.exports = baseForOwn;
|
|
24870 |
|
24871 |
|
24872 |
/***/ }),
|
24873 |
-
/*
|
24874 |
/*!*****************************************!*\
|
24875 |
!*** ./node_modules/lodash/_baseFor.js ***!
|
24876 |
\*****************************************/
|
@@ -24878,7 +25115,7 @@ module.exports = baseForOwn;
|
|
24878 |
/*! all exports used */
|
24879 |
/***/ (function(module, exports, __webpack_require__) {
|
24880 |
|
24881 |
-
var createBaseFor = __webpack_require__(/*! ./_createBaseFor */
|
24882 |
|
24883 |
/**
|
24884 |
* The base implementation of `baseForOwn` which iterates over `object`
|
@@ -24897,7 +25134,7 @@ module.exports = baseFor;
|
|
24897 |
|
24898 |
|
24899 |
/***/ }),
|
24900 |
-
/*
|
24901 |
/*!***********************************************!*\
|
24902 |
!*** ./node_modules/lodash/_createBaseFor.js ***!
|
24903 |
\***********************************************/
|
@@ -24933,7 +25170,7 @@ module.exports = createBaseFor;
|
|
24933 |
|
24934 |
|
24935 |
/***/ }),
|
24936 |
-
/*
|
24937 |
/*!************************************************!*\
|
24938 |
!*** ./node_modules/lodash/_createBaseEach.js ***!
|
24939 |
\************************************************/
|
@@ -24976,7 +25213,7 @@ module.exports = createBaseEach;
|
|
24976 |
|
24977 |
|
24978 |
/***/ }),
|
24979 |
-
/*
|
24980 |
/*!********************************************!*\
|
24981 |
!*** ./src/components/typography/fonts.js ***!
|
24982 |
\********************************************/
|
@@ -25881,7 +26118,7 @@ fonts["Zilla Slab Highlight"] = { "v": ["regular", "700"], "subset": ["latin-ext
|
|
25881 |
/* harmony default export */ __webpack_exports__["a"] = (fonts);
|
25882 |
|
25883 |
/***/ }),
|
25884 |
-
/*
|
25885 |
/*!********************************************************************!*\
|
25886 |
!*** ./node_modules/react-select/dist/react-select.browser.esm.js ***!
|
25887 |
\********************************************************************/
|
@@ -25893,24 +26130,24 @@ fonts["Zilla Slab Highlight"] = { "v": ["regular", "700"], "subset": ["latin-ext
|
|
25893 |
/* unused harmony export NonceProvider */
|
25894 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 6);
|
25895 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
|
25896 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_memoize_one__ = __webpack_require__(/*! memoize-one */
|
25897 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_core__ = __webpack_require__(/*! @emotion/core */ 63);
|
25898 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom__ = __webpack_require__(/*! react-dom */ 18);
|
25899 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react_dom__);
|
25900 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
25901 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__);
|
25902 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 64);
|
25903 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__index_4322c0ed_browser_esm_js__ = __webpack_require__(/*! ./index-4322c0ed.browser.esm.js */
|
25904 |
/* unused harmony reexport components */
|
25905 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__Select_9fdb8cd0_browser_esm_js__ = __webpack_require__(/*! ./Select-9fdb8cd0.browser.esm.js */
|
25906 |
/* unused harmony reexport createFilter */
|
25907 |
/* unused harmony reexport defaultTheme */
|
25908 |
/* unused harmony reexport mergeStyles */
|
25909 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
|
25910 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */
|
25911 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_9_react_input_autosize__);
|
25912 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__stateManager_04f734a2_browser_esm_js__ = __webpack_require__(/*! ./stateManager-04f734a2.browser.esm.js */
|
25913 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__emotion_cache__ = __webpack_require__(/*! @emotion/cache */
|
25914 |
|
25915 |
|
25916 |
|
@@ -25966,7 +26203,7 @@ var index = Object(__WEBPACK_IMPORTED_MODULE_10__stateManager_04f734a2_browser_e
|
|
25966 |
|
25967 |
|
25968 |
/***/ }),
|
25969 |
-
/*
|
25970 |
/*!********************************************************!*\
|
25971 |
!*** ./node_modules/react/cjs/react.production.min.js ***!
|
25972 |
\********************************************************/
|
@@ -26003,7 +26240,7 @@ __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:{ReactCurrentDispatcher:I,Rea
|
|
26003 |
|
26004 |
|
26005 |
/***/ }),
|
26006 |
-
/*
|
26007 |
/*!*****************************************************!*\
|
26008 |
!*** ./node_modules/react/cjs/react.development.js ***!
|
26009 |
\*****************************************************/
|
@@ -28336,7 +28573,7 @@ module.exports = react;
|
|
28336 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
28337 |
|
28338 |
/***/ }),
|
28339 |
-
/*
|
28340 |
/*!*****************************************************************************************!*\
|
28341 |
!*** ./node_modules/@emotion/core/node_modules/@babel/runtime/helpers/inheritsLoose.js ***!
|
28342 |
\*****************************************************************************************/
|
@@ -28353,7 +28590,7 @@ function _inheritsLoose(subClass, superClass) {
|
|
28353 |
module.exports = _inheritsLoose;
|
28354 |
|
28355 |
/***/ }),
|
28356 |
-
/*
|
28357 |
/*!*****************************************************************!*\
|
28358 |
!*** ./node_modules/@emotion/stylis/dist/stylis.browser.esm.js ***!
|
28359 |
\*****************************************************************/
|
@@ -28980,7 +29217,7 @@ function stylis_min (W) {
|
|
28980 |
|
28981 |
|
28982 |
/***/ }),
|
28983 |
-
/*
|
28984 |
/*!*****************************************************************************!*\
|
28985 |
!*** ./node_modules/@emotion/weak-memoize/dist/weak-memoize.browser.esm.js ***!
|
28986 |
\*****************************************************************************/
|
@@ -29007,7 +29244,7 @@ var weakMemoize = function weakMemoize(func) {
|
|
29007 |
|
29008 |
|
29009 |
/***/ }),
|
29010 |
-
/*
|
29011 |
/*!***************************************************************!*\
|
29012 |
!*** ./node_modules/@emotion/utils/dist/utils.browser.esm.js ***!
|
29013 |
\***************************************************************/
|
@@ -29061,7 +29298,7 @@ var insertStyles = function insertStyles(cache, serialized, isStringTag) {
|
|
29061 |
|
29062 |
|
29063 |
/***/ }),
|
29064 |
-
/*
|
29065 |
/*!*************************************************************!*\
|
29066 |
!*** ./node_modules/@emotion/hash/dist/hash.browser.esm.js ***!
|
29067 |
\*************************************************************/
|
@@ -29128,7 +29365,7 @@ function murmur2(str) {
|
|
29128 |
|
29129 |
|
29130 |
/***/ }),
|
29131 |
-
/*
|
29132 |
/*!*********************************************************************!*\
|
29133 |
!*** ./node_modules/@emotion/unitless/dist/unitless.browser.esm.js ***!
|
29134 |
\*********************************************************************/
|
@@ -29190,7 +29427,7 @@ var unitlessKeys = {
|
|
29190 |
|
29191 |
|
29192 |
/***/ }),
|
29193 |
-
/*
|
29194 |
/*!*******************************************************************!*\
|
29195 |
!*** ./node_modules/@emotion/memoize/dist/memoize.browser.esm.js ***!
|
29196 |
\*******************************************************************/
|
@@ -29211,7 +29448,7 @@ function memoize(fn) {
|
|
29211 |
|
29212 |
|
29213 |
/***/ }),
|
29214 |
-
/*
|
29215 |
/*!****************************************************************!*\
|
29216 |
!*** ./node_modules/react-dom/cjs/react-dom.production.min.js ***!
|
29217 |
\****************************************************************/
|
@@ -29232,7 +29469,7 @@ function memoize(fn) {
|
|
29232 |
/*
|
29233 |
Modernizr 3.0.0pre (Custom Build) | MIT
|
29234 |
*/
|
29235 |
-
var aa=__webpack_require__(/*! react */ 6),n=__webpack_require__(/*! object-assign */ 26),q=__webpack_require__(/*! scheduler */
|
29236 |
function da(){if(ba)for(var a in ca){var b=ca[a],c=ba.indexOf(a);if(!(-1<c))throw Error(u(96,a));if(!ea[c]){if(!b.extractEvents)throw Error(u(97,a));ea[c]=b;c=b.eventTypes;for(var d in c){var e=void 0;var f=c[d],g=b,h=d;if(fa.hasOwnProperty(h))throw Error(u(99,h));fa[h]=f;var k=f.phasedRegistrationNames;if(k){for(e in k)k.hasOwnProperty(e)&&ha(k[e],g,h);e=!0}else f.registrationName?(ha(f.registrationName,g,h),e=!0):e=!1;if(!e)throw Error(u(98,d,a));}}}}
|
29237 |
function ha(a,b,c){if(ia[a])throw Error(u(100,a));ia[a]=b;ja[a]=b.eventTypes[c].dependencies}var ea=[],fa={},ia={},ja={};function ka(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 la=!1,ma=null,na=!1,oa=null,pa={onError:function(a){la=!0;ma=a}};function qa(a,b,c,d,e,f,g,h,k){la=!1;ma=null;ka.apply(pa,arguments)}
|
29238 |
function ra(a,b,c,d,e,f,g,h,k){qa.apply(this,arguments);if(la){if(la){var l=ma;la=!1;ma=null}else throw Error(u(198));na||(na=!0,oa=l)}}var sa=null,ua=null,va=null;function wa(a,b,c){var d=a.type||"unknown-event";a.currentTarget=va(c);ra(d,b,void 0,a);a.currentTarget=null}function xa(a,b){if(null==b)throw Error(u(30));if(null==a)return b;if(Array.isArray(a)){if(Array.isArray(b))return a.push.apply(a,b),a;a.push(b);return a}return Array.isArray(b)?[a].concat(b):[a,b]}
|
@@ -29513,7 +29750,7 @@ rendererPackageName:"react-dom"});var Dk={default:Ck},Ek=Dk&&Ck||Dk;module.expor
|
|
29513 |
|
29514 |
|
29515 |
/***/ }),
|
29516 |
-
/*
|
29517 |
/*!***************************************************************************************!*\
|
29518 |
!*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler.production.min.js ***!
|
29519 |
\***************************************************************************************/
|
@@ -29547,7 +29784,7 @@ exports.unstable_pauseExecution=function(){};exports.unstable_getFirstCallbackNo
|
|
29547 |
|
29548 |
|
29549 |
/***/ }),
|
29550 |
-
/*
|
29551 |
/*!************************************************************************************!*\
|
29552 |
!*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler.development.js ***!
|
29553 |
\************************************************************************************/
|
@@ -30464,7 +30701,7 @@ exports.unstable_Profiling = unstable_Profiling;
|
|
30464 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../../process/browser.js */ 3)))
|
30465 |
|
30466 |
/***/ }),
|
30467 |
-
/*
|
30468 |
/*!*************************************************************!*\
|
30469 |
!*** ./node_modules/react-dom/cjs/react-dom.development.js ***!
|
30470 |
\*************************************************************/
|
@@ -30492,9 +30729,9 @@ if (process.env.NODE_ENV !== "production") {
|
|
30492 |
|
30493 |
var React = __webpack_require__(/*! react */ 6);
|
30494 |
var _assign = __webpack_require__(/*! object-assign */ 26);
|
30495 |
-
var Scheduler = __webpack_require__(/*! scheduler */
|
30496 |
var checkPropTypes = __webpack_require__(/*! prop-types/checkPropTypes */ 61);
|
30497 |
-
var tracing = __webpack_require__(/*! scheduler/tracing */
|
30498 |
|
30499 |
// Do not require this module directly! Use normal `invariant` calls with
|
30500 |
// template literal strings. The messages will be replaced with error codes
|
@@ -58272,7 +58509,7 @@ module.exports = reactDom;
|
|
58272 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
58273 |
|
58274 |
/***/ }),
|
58275 |
-
/*
|
58276 |
/*!******************************************************************!*\
|
58277 |
!*** ./node_modules/react-dom/node_modules/scheduler/tracing.js ***!
|
58278 |
\******************************************************************/
|
@@ -58284,15 +58521,15 @@ module.exports = reactDom;
|
|
58284 |
/* WEBPACK VAR INJECTION */(function(process) {
|
58285 |
|
58286 |
if (process.env.NODE_ENV === 'production') {
|
58287 |
-
module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.production.min.js */
|
58288 |
} else {
|
58289 |
-
module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.development.js */
|
58290 |
}
|
58291 |
|
58292 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
|
58293 |
|
58294 |
/***/ }),
|
58295 |
-
/*
|
58296 |
/*!***********************************************************************************************!*\
|
58297 |
!*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler-tracing.production.min.js ***!
|
58298 |
\***********************************************************************************************/
|
@@ -58314,7 +58551,7 @@ Object.defineProperty(exports,"__esModule",{value:!0});var b=0;exports.__interac
|
|
58314 |
|
58315 |
|
58316 |
/***/ }),
|
58317 |
-
/*
|
58318 |
/*!********************************************************************************************!*\
|
58319 |
!*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
|
58320 |
\********************************************************************************************/
|
@@ -58750,7 +58987,7 @@ exports.unstable_unsubscribe = unstable_unsubscribe;
|
|
58750 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../../process/browser.js */ 3)))
|
58751 |
|
58752 |
/***/ }),
|
58753 |
-
/*
|
58754 |
/*!**************************************************************!*\
|
58755 |
!*** ./node_modules/react-is/cjs/react-is.production.min.js ***!
|
58756 |
\**************************************************************/
|
@@ -58777,7 +59014,7 @@ exports.isSuspense=function(a){return t(a)===p};
|
|
58777 |
|
58778 |
|
58779 |
/***/ }),
|
58780 |
-
/*
|
58781 |
/*!***********************************************************!*\
|
58782 |
!*** ./node_modules/react-is/cjs/react-is.development.js ***!
|
58783 |
\***********************************************************/
|
@@ -59017,7 +59254,7 @@ exports.isSuspense = isSuspense;
|
|
59017 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
59018 |
|
59019 |
/***/ }),
|
59020 |
-
/*
|
59021 |
/*!************************************************************!*\
|
59022 |
!*** ./node_modules/prop-types/factoryWithTypeCheckers.js ***!
|
59023 |
\************************************************************/
|
@@ -59035,7 +59272,7 @@ exports.isSuspense = isSuspense;
|
|
59035 |
|
59036 |
|
59037 |
|
59038 |
-
var ReactIs = __webpack_require__(/*! react-is */
|
59039 |
var assign = __webpack_require__(/*! object-assign */ 26);
|
59040 |
|
59041 |
var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ 62);
|
@@ -59621,7 +59858,7 @@ module.exports = function(isValidElement, throwOnDirectAccess) {
|
|
59621 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
59622 |
|
59623 |
/***/ }),
|
59624 |
-
/*
|
59625 |
/*!*************************************************************!*\
|
59626 |
!*** ./node_modules/prop-types/factoryWithThrowingShims.js ***!
|
59627 |
\*************************************************************/
|
@@ -59697,7 +59934,7 @@ module.exports = function() {
|
|
59697 |
|
59698 |
|
59699 |
/***/ }),
|
59700 |
-
/*
|
59701 |
/*!*****************************************************************************!*\
|
59702 |
!*** ./node_modules/react-select/dist/stateManager-04f734a2.browser.esm.js ***!
|
59703 |
\*****************************************************************************/
|
@@ -59841,7 +60078,7 @@ var manageState = function manageState(SelectComponent) {
|
|
59841 |
|
59842 |
|
59843 |
/***/ }),
|
59844 |
-
/*
|
59845 |
/*!*******************************************************!*\
|
59846 |
!*** ./src/components/typography/range-typography.js ***!
|
59847 |
\*******************************************************/
|
@@ -60004,7 +60241,7 @@ function RangeTypographyControl(props) {
|
|
60004 |
/* harmony default export */ __webpack_exports__["a"] = (RangeTypographyControl);
|
60005 |
|
60006 |
/***/ }),
|
60007 |
-
/*
|
60008 |
/*!****************************************************!*\
|
60009 |
!*** ./src/components/typography/inline-styles.js ***!
|
60010 |
\****************************************************/
|
@@ -60024,7 +60261,7 @@ function TypographyStyles(props) {
|
|
60024 |
/* unused harmony default export */ var _unused_webpack_default_export = (TypographyStyles);
|
60025 |
|
60026 |
/***/ }),
|
60027 |
-
/*
|
60028 |
/*!***********************************************!*\
|
60029 |
!*** ./src/components/typography/editor.scss ***!
|
60030 |
\***********************************************/
|
@@ -60034,7 +60271,7 @@ function TypographyStyles(props) {
|
|
60034 |
// removed by extract-text-webpack-plugin
|
60035 |
|
60036 |
/***/ }),
|
60037 |
-
/*
|
60038 |
/*!*****************************************************!*\
|
60039 |
!*** ./node_modules/webfontloader/webfontloader.js ***!
|
60040 |
\*****************************************************/
|
@@ -60063,7 +60300,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<
|
|
60063 |
|
60064 |
|
60065 |
/***/ }),
|
60066 |
-
/*
|
60067 |
/*!*********************************************!*\
|
60068 |
!*** ./src/blocks/advanced-heading/save.js ***!
|
60069 |
\*********************************************/
|
@@ -60123,7 +60360,7 @@ function save(props) {
|
|
60123 |
}
|
60124 |
|
60125 |
/***/ }),
|
60126 |
-
/*
|
60127 |
/*!***************************************************!*\
|
60128 |
!*** ./src/blocks/advanced-heading/deprecated.js ***!
|
60129 |
\***************************************************/
|
@@ -60132,7 +60369,7 @@ function save(props) {
|
|
60132 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
60133 |
|
60134 |
"use strict";
|
60135 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__attributes__ = __webpack_require__(/*! ./attributes */
|
60136 |
/**
|
60137 |
* BLOCK: Advanced Heading - Deprecated Block
|
60138 |
*/
|
@@ -60219,7 +60456,7 @@ var deprecated = [{
|
|
60219 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
60220 |
|
60221 |
/***/ }),
|
60222 |
-
/*
|
60223 |
/*!**************************************************!*\
|
60224 |
!*** ./src/blocks/advanced-heading/transform.js ***!
|
60225 |
\**************************************************/
|
@@ -60284,7 +60521,7 @@ var transform = [{
|
|
60284 |
/* harmony default export */ __webpack_exports__["a"] = (transform);
|
60285 |
|
60286 |
/***/ }),
|
60287 |
-
/*
|
60288 |
/*!**********************************!*\
|
60289 |
!*** ./src/blocks/post/block.js ***!
|
60290 |
\**********************************/
|
@@ -60292,9 +60529,9 @@ var transform = [{
|
|
60292 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
60293 |
|
60294 |
"use strict";
|
60295 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__post_grid_block_js__ = __webpack_require__(/*! ./post-grid/block.js */
|
60296 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_masonry_block_js__ = __webpack_require__(/*! ./post-masonry/block.js */
|
60297 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__post_carousel_block_js__ = __webpack_require__(/*! ./post-carousel/block.js */
|
60298 |
/**
|
60299 |
* Gutenberg Blocks
|
60300 |
*
|
@@ -60311,7 +60548,7 @@ var transform = [{
|
|
60311 |
|
60312 |
|
60313 |
/***/ }),
|
60314 |
-
/*
|
60315 |
/*!********************************************!*\
|
60316 |
!*** ./src/blocks/post/post-grid/block.js ***!
|
60317 |
\********************************************/
|
@@ -60319,7 +60556,7 @@ var transform = [{
|
|
60319 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
60320 |
|
60321 |
"use strict";
|
60322 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */
|
60323 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
60324 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 74);
|
60325 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
@@ -60360,7 +60597,7 @@ registerBlockType("uagb/post-grid", {
|
|
60360 |
});
|
60361 |
|
60362 |
/***/ }),
|
60363 |
-
/*
|
60364 |
/*!*******************************************!*\
|
60365 |
!*** ./src/blocks/post/post-grid/edit.js ***!
|
60366 |
\*******************************************/
|
@@ -60372,7 +60609,7 @@ registerBlockType("uagb/post-grid", {
|
|
60372 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
60373 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
60374 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
60375 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blog__ = __webpack_require__(/*! ./blog */
|
60376 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! .././styling */ 73);
|
60377 |
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; }; }();
|
60378 |
|
@@ -60413,7 +60650,9 @@ var _wp$components = wp.components,
|
|
60413 |
ToggleControl = _wp$components.ToggleControl,
|
60414 |
TabPanel = _wp$components.TabPanel,
|
60415 |
Dashicon = _wp$components.Dashicon,
|
60416 |
-
TextControl = _wp$components.TextControl
|
|
|
|
|
60417 |
var _wp$blockEditor = wp.blockEditor,
|
60418 |
InspectorControls = _wp$blockEditor.InspectorControls,
|
60419 |
BlockAlignmentToolbar = _wp$blockEditor.BlockAlignmentToolbar,
|
@@ -60651,7 +60890,9 @@ var UAGBPostGrid = function (_Component) {
|
|
60651 |
paginationPrevText = attributes.paginationPrevText,
|
60652 |
paginationNextText = attributes.paginationNextText,
|
60653 |
inheritFromTheme = attributes.inheritFromTheme,
|
60654 |
-
postDisplaytext = attributes.postDisplaytext
|
|
|
|
|
60655 |
|
60656 |
|
60657 |
var hoverSettings = wp.element.createElement(
|
@@ -60868,6 +61109,13 @@ var UAGBPostGrid = function (_Component) {
|
|
60868 |
}),
|
60869 |
wp.element.createElement("hr", { className: "uagb-editor__separator" })
|
60870 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60871 |
wp.element.createElement(RangeControl, {
|
60872 |
label: __("Posts Per Page"),
|
60873 |
value: postsToShow,
|
@@ -61006,13 +61254,41 @@ var UAGBPostGrid = function (_Component) {
|
|
61006 |
},
|
61007 |
options: [{ value: "border", label: __("Border") }, { value: "filled", label: __("Filled") }]
|
61008 |
}),
|
61009 |
-
wp.element.createElement(
|
61010 |
-
|
61011 |
-
|
61012 |
-
|
61013 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61014 |
},
|
61015 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61016 |
}),
|
61017 |
wp.element.createElement("hr", { className: "uagb-editor__separator" }),
|
61018 |
paginationLayout == "filled" && wp.element.createElement(
|
@@ -61271,18 +61547,28 @@ var UAGBPostGrid = function (_Component) {
|
|
61271 |
return setAttributes({ displayPostExcerpt: !displayPostExcerpt });
|
61272 |
}
|
61273 |
}),
|
61274 |
-
displayPostExcerpt && wp.element.createElement(
|
61275 |
-
label: __(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61276 |
value: excerptLength,
|
61277 |
onChange: function onChange(value) {
|
61278 |
return setAttributes({ excerptLength: value });
|
61279 |
},
|
61280 |
min: 1,
|
61281 |
-
max:
|
61282 |
allowReset: true
|
61283 |
})
|
61284 |
),
|
61285 |
-
wp.element.createElement(
|
61286 |
PanelBody,
|
61287 |
{ title: __("Read More Link"), initialOpen: false },
|
61288 |
wp.element.createElement(ToggleControl, {
|
@@ -61733,7 +62019,8 @@ var UAGBPostGrid = function (_Component) {
|
|
61733 |
postType = _props$attributes.postType,
|
61734 |
taxonomyType = _props$attributes.taxonomyType,
|
61735 |
paginationMarkup = _props$attributes.paginationMarkup,
|
61736 |
-
postPagination = _props$attributes.postPagination
|
|
|
61737 |
var setAttributes = props.setAttributes;
|
61738 |
|
61739 |
var _select = select("core"),
|
@@ -61780,6 +62067,10 @@ var UAGBPostGrid = function (_Component) {
|
|
61780 |
per_page: postsToShow
|
61781 |
};
|
61782 |
|
|
|
|
|
|
|
|
|
61783 |
latestPostsQuery[rest_base] = categories;
|
61784 |
return {
|
61785 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
@@ -61789,7 +62080,7 @@ var UAGBPostGrid = function (_Component) {
|
|
61789 |
})(UAGBPostGrid));
|
61790 |
|
61791 |
/***/ }),
|
61792 |
-
/*
|
61793 |
/*!*******************************************!*\
|
61794 |
!*** ./src/blocks/post/post-grid/blog.js ***!
|
61795 |
\*******************************************/
|
@@ -61897,22 +62188,22 @@ var Blog = function (_React$Component) {
|
|
61897 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
61898 |
|
61899 |
/***/ }),
|
61900 |
-
/*
|
61901 |
/*!*****************************************!*\
|
61902 |
!*** ./node_modules/lodash/truncate.js ***!
|
61903 |
\*****************************************/
|
61904 |
/*! dynamic exports provided */
|
61905 |
/***/ (function(module, exports, __webpack_require__) {
|
61906 |
|
61907 |
-
var baseToString = __webpack_require__(/*! ./_baseToString */
|
61908 |
-
castSlice = __webpack_require__(/*! ./_castSlice */
|
61909 |
hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 70),
|
61910 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
61911 |
-
isRegExp = __webpack_require__(/*! ./isRegExp */
|
61912 |
-
stringSize = __webpack_require__(/*! ./_stringSize */
|
61913 |
-
stringToArray = __webpack_require__(/*! ./_stringToArray */
|
61914 |
toInteger = __webpack_require__(/*! ./toInteger */ 71),
|
61915 |
-
toString = __webpack_require__(/*! ./toString */
|
61916 |
|
61917 |
/** Used as default options for `_.truncate`. */
|
61918 |
var DEFAULT_TRUNC_LENGTH = 30,
|
@@ -62018,7 +62309,7 @@ module.exports = truncate;
|
|
62018 |
|
62019 |
|
62020 |
/***/ }),
|
62021 |
-
/*
|
62022 |
/*!*******************************************!*\
|
62023 |
!*** ./node_modules/lodash/_castSlice.js ***!
|
62024 |
\*******************************************/
|
@@ -62047,7 +62338,7 @@ module.exports = castSlice;
|
|
62047 |
|
62048 |
|
62049 |
/***/ }),
|
62050 |
-
/*
|
62051 |
/*!*****************************************!*\
|
62052 |
!*** ./node_modules/lodash/isRegExp.js ***!
|
62053 |
\*****************************************/
|
@@ -62055,7 +62346,7 @@ module.exports = castSlice;
|
|
62055 |
/*! all exports used */
|
62056 |
/***/ (function(module, exports, __webpack_require__) {
|
62057 |
|
62058 |
-
var baseIsRegExp = __webpack_require__(/*! ./_baseIsRegExp */
|
62059 |
baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
|
62060 |
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
|
62061 |
|
@@ -62085,7 +62376,7 @@ module.exports = isRegExp;
|
|
62085 |
|
62086 |
|
62087 |
/***/ }),
|
62088 |
-
/*
|
62089 |
/*!**********************************************!*\
|
62090 |
!*** ./node_modules/lodash/_baseIsRegExp.js ***!
|
62091 |
\**********************************************/
|
@@ -62114,7 +62405,7 @@ module.exports = baseIsRegExp;
|
|
62114 |
|
62115 |
|
62116 |
/***/ }),
|
62117 |
-
/*
|
62118 |
/*!********************************************!*\
|
62119 |
!*** ./node_modules/lodash/_stringSize.js ***!
|
62120 |
\********************************************/
|
@@ -62122,9 +62413,9 @@ module.exports = baseIsRegExp;
|
|
62122 |
/*! all exports used */
|
62123 |
/***/ (function(module, exports, __webpack_require__) {
|
62124 |
|
62125 |
-
var asciiSize = __webpack_require__(/*! ./_asciiSize */
|
62126 |
hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 70),
|
62127 |
-
unicodeSize = __webpack_require__(/*! ./_unicodeSize */
|
62128 |
|
62129 |
/**
|
62130 |
* Gets the number of symbols in `string`.
|
@@ -62143,7 +62434,7 @@ module.exports = stringSize;
|
|
62143 |
|
62144 |
|
62145 |
/***/ }),
|
62146 |
-
/*
|
62147 |
/*!*******************************************!*\
|
62148 |
!*** ./node_modules/lodash/_asciiSize.js ***!
|
62149 |
\*******************************************/
|
@@ -62151,7 +62442,7 @@ module.exports = stringSize;
|
|
62151 |
/*! all exports used */
|
62152 |
/***/ (function(module, exports, __webpack_require__) {
|
62153 |
|
62154 |
-
var baseProperty = __webpack_require__(/*! ./_baseProperty */
|
62155 |
|
62156 |
/**
|
62157 |
* Gets the size of an ASCII `string`.
|
@@ -62166,7 +62457,7 @@ module.exports = asciiSize;
|
|
62166 |
|
62167 |
|
62168 |
/***/ }),
|
62169 |
-
/*
|
62170 |
/*!*********************************************!*\
|
62171 |
!*** ./node_modules/lodash/_unicodeSize.js ***!
|
62172 |
\*********************************************/
|
@@ -62221,7 +62512,7 @@ module.exports = unicodeSize;
|
|
62221 |
|
62222 |
|
62223 |
/***/ }),
|
62224 |
-
/*
|
62225 |
/*!***********************************************!*\
|
62226 |
!*** ./node_modules/lodash/_stringToArray.js ***!
|
62227 |
\***********************************************/
|
@@ -62229,9 +62520,9 @@ module.exports = unicodeSize;
|
|
62229 |
/*! all exports used */
|
62230 |
/***/ (function(module, exports, __webpack_require__) {
|
62231 |
|
62232 |
-
var asciiToArray = __webpack_require__(/*! ./_asciiToArray */
|
62233 |
hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 70),
|
62234 |
-
unicodeToArray = __webpack_require__(/*! ./_unicodeToArray */
|
62235 |
|
62236 |
/**
|
62237 |
* Converts `string` to an array.
|
@@ -62250,7 +62541,7 @@ module.exports = stringToArray;
|
|
62250 |
|
62251 |
|
62252 |
/***/ }),
|
62253 |
-
/*
|
62254 |
/*!**********************************************!*\
|
62255 |
!*** ./node_modules/lodash/_asciiToArray.js ***!
|
62256 |
\**********************************************/
|
@@ -62273,7 +62564,7 @@ module.exports = asciiToArray;
|
|
62273 |
|
62274 |
|
62275 |
/***/ }),
|
62276 |
-
/*
|
62277 |
/*!************************************************!*\
|
62278 |
!*** ./node_modules/lodash/_unicodeToArray.js ***!
|
62279 |
\************************************************/
|
@@ -62324,7 +62615,7 @@ module.exports = unicodeToArray;
|
|
62324 |
|
62325 |
|
62326 |
/***/ }),
|
62327 |
-
/*
|
62328 |
/*!*****************************************!*\
|
62329 |
!*** ./node_modules/lodash/toFinite.js ***!
|
62330 |
\*****************************************/
|
@@ -62332,7 +62623,7 @@ module.exports = unicodeToArray;
|
|
62332 |
/*! all exports used */
|
62333 |
/***/ (function(module, exports, __webpack_require__) {
|
62334 |
|
62335 |
-
var toNumber = __webpack_require__(/*! ./toNumber */
|
62336 |
|
62337 |
/** Used as references for various `Number` constants. */
|
62338 |
var INFINITY = 1 / 0,
|
@@ -62377,7 +62668,7 @@ module.exports = toFinite;
|
|
62377 |
|
62378 |
|
62379 |
/***/ }),
|
62380 |
-
/*
|
62381 |
/*!***********************************************!*\
|
62382 |
!*** ./src/blocks/post/post-masonry/block.js ***!
|
62383 |
\***********************************************/
|
@@ -62385,7 +62676,7 @@ module.exports = toFinite;
|
|
62385 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
62386 |
|
62387 |
"use strict";
|
62388 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */
|
62389 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
62390 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 74);
|
62391 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
@@ -62426,7 +62717,7 @@ registerBlockType("uagb/post-masonry", {
|
|
62426 |
});
|
62427 |
|
62428 |
/***/ }),
|
62429 |
-
/*
|
62430 |
/*!**********************************************!*\
|
62431 |
!*** ./src/blocks/post/post-masonry/edit.js ***!
|
62432 |
\**********************************************/
|
@@ -62438,7 +62729,7 @@ registerBlockType("uagb/post-masonry", {
|
|
62438 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
62439 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
62440 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
62441 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blog__ = __webpack_require__(/*! ./blog */
|
62442 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! .././styling */ 73);
|
62443 |
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; };
|
62444 |
|
@@ -62478,8 +62769,12 @@ var _wp$components = wp.components,
|
|
62478 |
Spinner = _wp$components.Spinner,
|
62479 |
ToggleControl = _wp$components.ToggleControl,
|
62480 |
TabPanel = _wp$components.TabPanel,
|
|
|
|
|
62481 |
Dashicon = _wp$components.Dashicon,
|
62482 |
-
TextControl = _wp$components.TextControl
|
|
|
|
|
62483 |
var _wp$blockEditor = wp.blockEditor,
|
62484 |
InspectorControls = _wp$blockEditor.InspectorControls,
|
62485 |
BlockAlignmentToolbar = _wp$blockEditor.BlockAlignmentToolbar,
|
@@ -62646,7 +62941,31 @@ var UAGBPostMasonry = function (_Component) {
|
|
62646 |
postType = attributes.postType,
|
62647 |
taxonomyType = attributes.taxonomyType,
|
62648 |
inheritFromTheme = attributes.inheritFromTheme,
|
62649 |
-
postDisplaytext = attributes.postDisplaytext
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62650 |
|
62651 |
|
62652 |
var hoverSettings = wp.element.createElement(
|
@@ -62825,7 +63144,437 @@ var UAGBPostMasonry = function (_Component) {
|
|
62825 |
return categoryListOptions.push({ value: categoriesList[item]["id"], label: categoriesList[item]["name"] });
|
62826 |
});
|
62827 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62828 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62829 |
var inspectorControls = wp.element.createElement(
|
62830 |
InspectorControls,
|
62831 |
null,
|
@@ -62862,6 +63611,13 @@ var UAGBPostMasonry = function (_Component) {
|
|
62862 |
}),
|
62863 |
wp.element.createElement("hr", { className: "uagb-editor__separator" })
|
62864 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62865 |
wp.element.createElement(QueryControls, _extends({ order: order, orderBy: orderBy }, {
|
62866 |
numberOfItems: postsToShow,
|
62867 |
onNumberOfItemsChange: function onNumberOfItemsChange(value) {
|
@@ -62942,6 +63698,30 @@ var UAGBPostMasonry = function (_Component) {
|
|
62942 |
);
|
62943 |
}
|
62944 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62945 |
wp.element.createElement("hr", { className: "uagb-editor__separator" }),
|
62946 |
wp.element.createElement(
|
62947 |
"h2",
|
@@ -62966,6 +63746,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
62966 |
help: __("This will inherit all the Typography and colors for Title, Meta, Excerpt and Read More button from the theme.")
|
62967 |
})
|
62968 |
),
|
|
|
62969 |
wp.element.createElement(
|
62970 |
PanelBody,
|
62971 |
{ title: __("Image"), initialOpen: false },
|
@@ -63076,18 +63857,28 @@ var UAGBPostMasonry = function (_Component) {
|
|
63076 |
return setAttributes({ displayPostExcerpt: !displayPostExcerpt });
|
63077 |
}
|
63078 |
}),
|
63079 |
-
displayPostExcerpt && wp.element.createElement(
|
63080 |
-
label: __(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63081 |
value: excerptLength,
|
63082 |
onChange: function onChange(value) {
|
63083 |
return setAttributes({ excerptLength: value });
|
63084 |
},
|
63085 |
min: 1,
|
63086 |
-
max:
|
63087 |
allowReset: true
|
63088 |
})
|
63089 |
),
|
63090 |
-
wp.element.createElement(
|
63091 |
PanelBody,
|
63092 |
{ title: __("Read More Link"), initialOpen: false },
|
63093 |
wp.element.createElement(ToggleControl, {
|
@@ -63534,7 +64325,8 @@ var UAGBPostMasonry = function (_Component) {
|
|
63534 |
order = _props$attributes.order,
|
63535 |
orderBy = _props$attributes.orderBy,
|
63536 |
postType = _props$attributes.postType,
|
63537 |
-
taxonomyType = _props$attributes.taxonomyType
|
|
|
63538 |
|
63539 |
var _select = select("core"),
|
63540 |
getEntityRecords = _select.getEntityRecords;
|
@@ -63564,6 +64356,9 @@ var UAGBPostMasonry = function (_Component) {
|
|
63564 |
per_page: postsToShow
|
63565 |
};
|
63566 |
|
|
|
|
|
|
|
63567 |
latestPostsQuery[rest_base] = categories;
|
63568 |
|
63569 |
return {
|
@@ -63574,7 +64369,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
63574 |
})(UAGBPostMasonry));
|
63575 |
|
63576 |
/***/ }),
|
63577 |
-
/*
|
63578 |
/*!**********************************************!*\
|
63579 |
!*** ./src/blocks/post/post-masonry/blog.js ***!
|
63580 |
\**********************************************/
|
@@ -63585,7 +64380,7 @@ var UAGBPostMasonry = function (_Component) {
|
|
63585 |
"use strict";
|
63586 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
63587 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
63588 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component__ = __webpack_require__(/*! react-masonry-component */
|
63589 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_masonry_component__);
|
63590 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_FeaturedImage__ = __webpack_require__(/*! .././components/FeaturedImage */ 65);
|
63591 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! .././components/Title */ 66);
|
@@ -63630,12 +64425,44 @@ var Blog = function (_React$Component) {
|
|
63630 |
tcolumns = attributes.tcolumns,
|
63631 |
mcolumns = attributes.mcolumns,
|
63632 |
imgPosition = attributes.imgPosition,
|
63633 |
-
postsToShow = attributes.postsToShow
|
|
|
|
|
|
|
63634 |
|
63635 |
// Removing posts from display should be instant.
|
63636 |
|
63637 |
var displayPosts = latestPosts.length > postsToShow ? latestPosts.slice(0, postsToShow) : latestPosts;
|
63638 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63639 |
return wp.element.createElement(
|
63640 |
"div",
|
63641 |
{
|
@@ -63666,7 +64493,8 @@ var Blog = function (_React$Component) {
|
|
63666 |
)
|
63667 |
);
|
63668 |
})
|
63669 |
-
)
|
|
|
63670 |
);
|
63671 |
}
|
63672 |
}]);
|
@@ -63677,7 +64505,7 @@ var Blog = function (_React$Component) {
|
|
63677 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
63678 |
|
63679 |
/***/ }),
|
63680 |
-
/*
|
63681 |
/*!***********************************************************!*\
|
63682 |
!*** ./node_modules/react-masonry-component/lib/index.js ***!
|
63683 |
\***********************************************************/
|
@@ -63686,15 +64514,15 @@ var Blog = function (_React$Component) {
|
|
63686 |
/***/ (function(module, exports, __webpack_require__) {
|
63687 |
|
63688 |
var isBrowser = typeof window !== 'undefined';
|
63689 |
-
var Masonry = isBrowser ? window.Masonry || __webpack_require__(/*! masonry-layout */
|
63690 |
-
var imagesloaded = isBrowser ? __webpack_require__(/*! imagesloaded */
|
63691 |
-
var assign = __webpack_require__(/*! lodash/assign */
|
63692 |
-
var elementResizeDetectorMaker = __webpack_require__(/*! element-resize-detector */
|
63693 |
-
var debounce = __webpack_require__(/*! lodash/debounce */
|
63694 |
-
var omit = __webpack_require__(/*! lodash/omit */
|
63695 |
var PropTypes = __webpack_require__(/*! prop-types */ 15);
|
63696 |
var React = __webpack_require__(/*! react */ 6);
|
63697 |
-
var createReactClass = __webpack_require__(/*! create-react-class */
|
63698 |
|
63699 |
var propTypes = {
|
63700 |
enableResizableChildren: PropTypes.bool,
|
@@ -64003,7 +64831,7 @@ module.exports.default = MasonryComponent;
|
|
64003 |
|
64004 |
|
64005 |
/***/ }),
|
64006 |
-
/*
|
64007 |
/*!************************************************!*\
|
64008 |
!*** ./node_modules/masonry-layout/masonry.js ***!
|
64009 |
\************************************************/
|
@@ -64025,7 +64853,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
64025 |
if ( true ) {
|
64026 |
// AMD
|
64027 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
64028 |
-
__webpack_require__(/*! outlayer/outlayer */
|
64029 |
__webpack_require__(/*! get-size/get-size */ 77)
|
64030 |
], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
64031 |
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
@@ -64255,7 +65083,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_
|
|
64255 |
|
64256 |
|
64257 |
/***/ }),
|
64258 |
-
/*
|
64259 |
/*!*******************************************!*\
|
64260 |
!*** ./node_modules/outlayer/outlayer.js ***!
|
64261 |
\*******************************************/
|
@@ -64278,8 +65106,8 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
64278 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
64279 |
__webpack_require__(/*! ev-emitter/ev-emitter */ 76),
|
64280 |
__webpack_require__(/*! get-size/get-size */ 77),
|
64281 |
-
__webpack_require__(/*! fizzy-ui-utils/utils */
|
64282 |
-
__webpack_require__(/*! ./item */
|
64283 |
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( EvEmitter, getSize, utils, Item ) {
|
64284 |
return factory( window, EvEmitter, getSize, utils, Item);
|
64285 |
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
@@ -65204,7 +66032,7 @@ return Outlayer;
|
|
65204 |
|
65205 |
|
65206 |
/***/ }),
|
65207 |
-
/*
|
65208 |
/*!**********************************************!*\
|
65209 |
!*** ./node_modules/fizzy-ui-utils/utils.js ***!
|
65210 |
\**********************************************/
|
@@ -65226,7 +66054,7 @@ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
65226 |
if ( true ) {
|
65227 |
// AMD
|
65228 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
65229 |
-
__webpack_require__(/*! desandro-matches-selector/matches-selector */
|
65230 |
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( matchesSelector ) {
|
65231 |
return factory( window, matchesSelector );
|
65232 |
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
@@ -65457,7 +66285,7 @@ return utils;
|
|
65457 |
|
65458 |
|
65459 |
/***/ }),
|
65460 |
-
/*
|
65461 |
/*!********************************************************************!*\
|
65462 |
!*** ./node_modules/desandro-matches-selector/matches-selector.js ***!
|
65463 |
\********************************************************************/
|
@@ -65525,7 +66353,7 @@ var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_RESULT__;/**
|
|
65525 |
|
65526 |
|
65527 |
/***/ }),
|
65528 |
-
/*
|
65529 |
/*!***************************************!*\
|
65530 |
!*** ./node_modules/outlayer/item.js ***!
|
65531 |
\***************************************/
|
@@ -66091,7 +66919,7 @@ return Item;
|
|
66091 |
|
66092 |
|
66093 |
/***/ }),
|
66094 |
-
/*
|
66095 |
/*!***************************************************!*\
|
66096 |
!*** ./node_modules/imagesloaded/imagesloaded.js ***!
|
66097 |
\***************************************************/
|
@@ -66480,7 +67308,7 @@ return ImagesLoaded;
|
|
66480 |
|
66481 |
|
66482 |
/***/ }),
|
66483 |
-
/*
|
66484 |
/*!***************************************!*\
|
66485 |
!*** ./node_modules/lodash/assign.js ***!
|
66486 |
\***************************************/
|
@@ -66490,7 +67318,7 @@ return ImagesLoaded;
|
|
66490 |
|
66491 |
var assignValue = __webpack_require__(/*! ./_assignValue */ 48),
|
66492 |
copyObject = __webpack_require__(/*! ./_copyObject */ 27),
|
66493 |
-
createAssigner = __webpack_require__(/*! ./_createAssigner */
|
66494 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23),
|
66495 |
isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
|
66496 |
keys = __webpack_require__(/*! ./keys */ 22);
|
@@ -66549,7 +67377,7 @@ module.exports = assign;
|
|
66549 |
|
66550 |
|
66551 |
/***/ }),
|
66552 |
-
/*
|
66553 |
/*!************************************************!*\
|
66554 |
!*** ./node_modules/lodash/_createAssigner.js ***!
|
66555 |
\************************************************/
|
@@ -66557,8 +67385,8 @@ module.exports = assign;
|
|
66557 |
/*! all exports used */
|
66558 |
/***/ (function(module, exports, __webpack_require__) {
|
66559 |
|
66560 |
-
var baseRest = __webpack_require__(/*! ./_baseRest */
|
66561 |
-
isIterateeCall = __webpack_require__(/*! ./_isIterateeCall */
|
66562 |
|
66563 |
/**
|
66564 |
* Creates a function like `_.assign`.
|
@@ -66597,7 +67425,7 @@ module.exports = createAssigner;
|
|
66597 |
|
66598 |
|
66599 |
/***/ }),
|
66600 |
-
/*
|
66601 |
/*!******************************************!*\
|
66602 |
!*** ./node_modules/lodash/_baseRest.js ***!
|
66603 |
\******************************************/
|
@@ -66606,8 +67434,8 @@ module.exports = createAssigner;
|
|
66606 |
/***/ (function(module, exports, __webpack_require__) {
|
66607 |
|
66608 |
var identity = __webpack_require__(/*! ./identity */ 47),
|
66609 |
-
overRest = __webpack_require__(/*! ./_overRest */
|
66610 |
-
setToString = __webpack_require__(/*! ./_setToString */
|
66611 |
|
66612 |
/**
|
66613 |
* The base implementation of `_.rest` which doesn't validate or coerce arguments.
|
@@ -66625,7 +67453,7 @@ module.exports = baseRest;
|
|
66625 |
|
66626 |
|
66627 |
/***/ }),
|
66628 |
-
/*
|
66629 |
/*!***************************************!*\
|
66630 |
!*** ./node_modules/lodash/_apply.js ***!
|
66631 |
\***************************************/
|
@@ -66657,7 +67485,7 @@ module.exports = apply;
|
|
66657 |
|
66658 |
|
66659 |
/***/ }),
|
66660 |
-
/*
|
66661 |
/*!*************************************************!*\
|
66662 |
!*** ./node_modules/lodash/_baseSetToString.js ***!
|
66663 |
\*************************************************/
|
@@ -66665,8 +67493,8 @@ module.exports = apply;
|
|
66665 |
/*! all exports used */
|
66666 |
/***/ (function(module, exports, __webpack_require__) {
|
66667 |
|
66668 |
-
var constant = __webpack_require__(/*! ./constant */
|
66669 |
-
defineProperty = __webpack_require__(/*! ./_defineProperty */
|
66670 |
identity = __webpack_require__(/*! ./identity */ 47);
|
66671 |
|
66672 |
/**
|
@@ -66690,7 +67518,7 @@ module.exports = baseSetToString;
|
|
66690 |
|
66691 |
|
66692 |
/***/ }),
|
66693 |
-
/*
|
66694 |
/*!*****************************************!*\
|
66695 |
!*** ./node_modules/lodash/constant.js ***!
|
66696 |
\*****************************************/
|
@@ -66727,7 +67555,7 @@ module.exports = constant;
|
|
66727 |
|
66728 |
|
66729 |
/***/ }),
|
66730 |
-
/*
|
66731 |
/*!******************************************!*\
|
66732 |
!*** ./node_modules/lodash/_shortOut.js ***!
|
66733 |
\******************************************/
|
@@ -66775,7 +67603,7 @@ module.exports = shortOut;
|
|
66775 |
|
66776 |
|
66777 |
/***/ }),
|
66778 |
-
/*
|
66779 |
/*!************************************************!*\
|
66780 |
!*** ./node_modules/lodash/_isIterateeCall.js ***!
|
66781 |
\************************************************/
|
@@ -66816,7 +67644,7 @@ module.exports = isIterateeCall;
|
|
66816 |
|
66817 |
|
66818 |
/***/ }),
|
66819 |
-
/*
|
66820 |
/*!*****************************************************************************!*\
|
66821 |
!*** ./node_modules/element-resize-detector/src/element-resize-detector.js ***!
|
66822 |
\*****************************************************************************/
|
@@ -66827,19 +67655,19 @@ module.exports = isIterateeCall;
|
|
66827 |
"use strict";
|
66828 |
|
66829 |
|
66830 |
-
var forEach = __webpack_require__(/*! ./collection-utils */
|
66831 |
-
var elementUtilsMaker = __webpack_require__(/*! ./element-utils */
|
66832 |
-
var listenerHandlerMaker = __webpack_require__(/*! ./listener-handler */
|
66833 |
-
var idGeneratorMaker = __webpack_require__(/*! ./id-generator */
|
66834 |
-
var idHandlerMaker = __webpack_require__(/*! ./id-handler */
|
66835 |
-
var reporterMaker = __webpack_require__(/*! ./reporter */
|
66836 |
-
var browserDetector = __webpack_require__(/*! ./browser-detector */
|
66837 |
-
var batchProcessorMaker = __webpack_require__(/*! batch-processor */
|
66838 |
-
var stateHandler = __webpack_require__(/*! ./state-handler */
|
66839 |
|
66840 |
//Detection strategies.
|
66841 |
-
var objectStrategyMaker = __webpack_require__(/*! ./detection-strategy/object.js */
|
66842 |
-
var scrollStrategyMaker = __webpack_require__(/*! ./detection-strategy/scroll.js */
|
66843 |
|
66844 |
function isCollection(obj) {
|
66845 |
return Array.isArray(obj) || obj.length !== undefined;
|
@@ -66934,11 +67762,13 @@ module.exports = function(options) {
|
|
66934 |
//The detection strategy to be used.
|
66935 |
var detectionStrategy;
|
66936 |
var desiredStrategy = getOption(options, "strategy", "object");
|
|
|
66937 |
var strategyOptions = {
|
66938 |
reporter: reporter,
|
66939 |
batchProcessor: batchProcessor,
|
66940 |
stateHandler: stateHandler,
|
66941 |
-
idHandler: idHandler
|
|
|
66942 |
};
|
66943 |
|
66944 |
if(desiredStrategy === "scroll") {
|
@@ -67053,7 +67883,7 @@ module.exports = function(options) {
|
|
67053 |
debug && reporter.log(id, "Making detectable...");
|
67054 |
//The element is not prepared to be detectable, so do prepare it and add a listener to it.
|
67055 |
elementUtils.markBusy(element, true);
|
67056 |
-
return detectionStrategy.makeDetectable({ debug: debug }, element, function onElementDetectable(element) {
|
67057 |
debug && reporter.log(id, "onElementDetectable");
|
67058 |
|
67059 |
if (stateHandler.getState(element)) {
|
@@ -67129,11 +67959,16 @@ module.exports = function(options) {
|
|
67129 |
});
|
67130 |
}
|
67131 |
|
|
|
|
|
|
|
|
|
67132 |
return {
|
67133 |
listenTo: listenTo,
|
67134 |
removeListener: eventListenerHandler.removeListener,
|
67135 |
removeAllListeners: eventListenerHandler.removeAllListeners,
|
67136 |
-
uninstall: uninstall
|
|
|
67137 |
};
|
67138 |
};
|
67139 |
|
@@ -67149,7 +67984,7 @@ function getOption(options, name, defaultValue) {
|
|
67149 |
|
67150 |
|
67151 |
/***/ }),
|
67152 |
-
/*
|
67153 |
/*!*******************************************************************!*\
|
67154 |
!*** ./node_modules/element-resize-detector/src/element-utils.js ***!
|
67155 |
\*******************************************************************/
|
@@ -67213,7 +68048,7 @@ module.exports = function(options) {
|
|
67213 |
|
67214 |
|
67215 |
/***/ }),
|
67216 |
-
/*
|
67217 |
/*!**********************************************************************!*\
|
67218 |
!*** ./node_modules/element-resize-detector/src/listener-handler.js ***!
|
67219 |
\**********************************************************************/
|
@@ -67285,7 +68120,7 @@ module.exports = function(idHandler) {
|
|
67285 |
|
67286 |
|
67287 |
/***/ }),
|
67288 |
-
/*
|
67289 |
/*!******************************************************************!*\
|
67290 |
!*** ./node_modules/element-resize-detector/src/id-generator.js ***!
|
67291 |
\******************************************************************/
|
@@ -67315,7 +68150,7 @@ module.exports = function() {
|
|
67315 |
|
67316 |
|
67317 |
/***/ }),
|
67318 |
-
/*
|
67319 |
/*!****************************************************************!*\
|
67320 |
!*** ./node_modules/element-resize-detector/src/id-handler.js ***!
|
67321 |
\****************************************************************/
|
@@ -67374,7 +68209,7 @@ module.exports = function(options) {
|
|
67374 |
|
67375 |
|
67376 |
/***/ }),
|
67377 |
-
/*
|
67378 |
/*!**************************************************************!*\
|
67379 |
!*** ./node_modules/element-resize-detector/src/reporter.js ***!
|
67380 |
\**************************************************************/
|
@@ -67428,7 +68263,7 @@ module.exports = function(quiet) {
|
|
67428 |
};
|
67429 |
|
67430 |
/***/ }),
|
67431 |
-
/*
|
67432 |
/*!*************************************************************!*\
|
67433 |
!*** ./node_modules/batch-processor/src/batch-processor.js ***!
|
67434 |
\*************************************************************/
|
@@ -67439,7 +68274,7 @@ module.exports = function(quiet) {
|
|
67439 |
"use strict";
|
67440 |
|
67441 |
|
67442 |
-
var utils = __webpack_require__(/*! ./utils */
|
67443 |
|
67444 |
module.exports = function batchProcessorMaker(options) {
|
67445 |
options = options || {};
|
@@ -67578,7 +68413,7 @@ function Batch() {
|
|
67578 |
|
67579 |
|
67580 |
/***/ }),
|
67581 |
-
/*
|
67582 |
/*!***************************************************!*\
|
67583 |
!*** ./node_modules/batch-processor/src/utils.js ***!
|
67584 |
\***************************************************/
|
@@ -67605,7 +68440,7 @@ function getOption(options, name, defaultValue) {
|
|
67605 |
|
67606 |
|
67607 |
/***/ }),
|
67608 |
-
/*
|
67609 |
/*!*******************************************************************!*\
|
67610 |
!*** ./node_modules/element-resize-detector/src/state-handler.js ***!
|
67611 |
\*******************************************************************/
|
@@ -67639,7 +68474,7 @@ module.exports = {
|
|
67639 |
|
67640 |
|
67641 |
/***/ }),
|
67642 |
-
/*
|
67643 |
/*!*******************************************************************************!*\
|
67644 |
!*** ./node_modules/element-resize-detector/src/detection-strategy/object.js ***!
|
67645 |
\*******************************************************************************/
|
@@ -67655,7 +68490,7 @@ module.exports = {
|
|
67655 |
|
67656 |
|
67657 |
|
67658 |
-
var browserDetector = __webpack_require__(/*! ../browser-detector */
|
67659 |
|
67660 |
module.exports = function(options) {
|
67661 |
options = options || {};
|
@@ -67674,10 +68509,6 @@ module.exports = function(options) {
|
|
67674 |
* @param {function} listener The listener callback to be called for each resize event of the element. The element will be given as a parameter to the listener callback.
|
67675 |
*/
|
67676 |
function addListener(element, listener) {
|
67677 |
-
if(!getObject(element)) {
|
67678 |
-
throw new Error("Element is not detectable by this strategy.");
|
67679 |
-
}
|
67680 |
-
|
67681 |
function listenerProxy() {
|
67682 |
listener(element);
|
67683 |
}
|
@@ -67690,10 +68521,21 @@ module.exports = function(options) {
|
|
67690 |
element.attachEvent("onresize", listenerProxy);
|
67691 |
} else {
|
67692 |
var object = getObject(element);
|
|
|
|
|
|
|
|
|
|
|
67693 |
object.contentDocument.defaultView.addEventListener("resize", listenerProxy);
|
67694 |
}
|
67695 |
}
|
67696 |
|
|
|
|
|
|
|
|
|
|
|
|
|
67697 |
/**
|
67698 |
* Makes an element detectable and ready to be listened for resize events. Will call the callback when the element is ready to be listened for resize changes.
|
67699 |
* @private
|
@@ -67712,7 +68554,7 @@ module.exports = function(options) {
|
|
67712 |
var debug = options.debug;
|
67713 |
|
67714 |
function injectObject(element, callback) {
|
67715 |
-
var OBJECT_STYLE = "display: block
|
67716 |
|
67717 |
//The target element needs to be positioned (everything except static) so the absolute positioned object will be positioned relative to the target element.
|
67718 |
|
@@ -67733,7 +68575,7 @@ module.exports = function(options) {
|
|
67733 |
function mutateDom() {
|
67734 |
function alterPositionStyles() {
|
67735 |
if(style.position === "static") {
|
67736 |
-
element.style.position
|
67737 |
|
67738 |
var removeRelativeStyles = function(reporter, element, style, property) {
|
67739 |
function getNumericalValue(value) {
|
@@ -67744,7 +68586,7 @@ module.exports = function(options) {
|
|
67744 |
|
67745 |
if(value !== "auto" && getNumericalValue(value) !== "0") {
|
67746 |
reporter.warn("An element that is positioned static has style." + property + "=" + value + " which is ignored due to the static positioning. The element will need to be positioned relative, so the style." + property + " will be set to 0. Element: ", element);
|
67747 |
-
element.style
|
67748 |
}
|
67749 |
};
|
67750 |
|
@@ -67770,7 +68612,12 @@ module.exports = function(options) {
|
|
67770 |
//So if it is not present, poll it with an timeout until it is present.
|
67771 |
//TODO: Could maybe be handled better with object.onreadystatechange or similar.
|
67772 |
if(!element.contentDocument) {
|
67773 |
-
|
|
|
|
|
|
|
|
|
|
|
67774 |
getDocument(element, callback);
|
67775 |
}, 100);
|
67776 |
|
@@ -67803,6 +68650,7 @@ module.exports = function(options) {
|
|
67803 |
object.style.cssText = OBJECT_STYLE;
|
67804 |
object.tabIndex = -1;
|
67805 |
object.type = "text/html";
|
|
|
67806 |
object.onload = onObjectLoad;
|
67807 |
|
67808 |
//Safari: This must occur before adding the object to the DOM.
|
@@ -67811,6 +68659,11 @@ module.exports = function(options) {
|
|
67811 |
object.data = "about:blank";
|
67812 |
}
|
67813 |
|
|
|
|
|
|
|
|
|
|
|
67814 |
element.appendChild(object);
|
67815 |
getState(element).object = object;
|
67816 |
|
@@ -67848,11 +68701,26 @@ module.exports = function(options) {
|
|
67848 |
}
|
67849 |
|
67850 |
function uninstall(element) {
|
67851 |
-
if(
|
67852 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67853 |
} else {
|
67854 |
-
element.removeChild(
|
|
|
|
|
|
|
|
|
67855 |
}
|
|
|
67856 |
delete getState(element).object;
|
67857 |
}
|
67858 |
|
@@ -67865,7 +68733,7 @@ module.exports = function(options) {
|
|
67865 |
|
67866 |
|
67867 |
/***/ }),
|
67868 |
-
/*
|
67869 |
/*!*******************************************************************************!*\
|
67870 |
!*** ./node_modules/element-resize-detector/src/detection-strategy/scroll.js ***!
|
67871 |
\*******************************************************************************/
|
@@ -67881,7 +68749,7 @@ module.exports = function(options) {
|
|
67881 |
|
67882 |
|
67883 |
|
67884 |
-
var forEach = __webpack_require__(/*! ../collection-utils */
|
67885 |
|
67886 |
module.exports = function(options) {
|
67887 |
options = options || {};
|
@@ -67902,21 +68770,32 @@ module.exports = function(options) {
|
|
67902 |
//TODO: Could this perhaps be done at installation time?
|
67903 |
var scrollbarSizes = getScrollbarSizes();
|
67904 |
|
67905 |
-
// Inject the scrollbar styling that prevents them from appearing sometimes in Chrome.
|
67906 |
-
// The injected container needs to have a class, so that it may be styled with CSS (pseudo elements).
|
67907 |
var styleId = "erd_scroll_detection_scrollbar_style";
|
67908 |
var detectionContainerClass = "erd_scroll_detection_container";
|
67909 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67910 |
|
67911 |
function getScrollbarSizes() {
|
67912 |
var width = 500;
|
67913 |
var height = 500;
|
67914 |
|
67915 |
var child = document.createElement("div");
|
67916 |
-
child.style.cssText = "position: absolute
|
67917 |
|
67918 |
var container = document.createElement("div");
|
67919 |
-
container.style.cssText = "position: absolute
|
67920 |
|
67921 |
container.appendChild(child);
|
67922 |
|
@@ -67933,25 +68812,25 @@ module.exports = function(options) {
|
|
67933 |
};
|
67934 |
}
|
67935 |
|
67936 |
-
function injectScrollStyle(styleId, containerClass) {
|
67937 |
function injectStyle(style, method) {
|
67938 |
method = method || function (element) {
|
67939 |
-
|
67940 |
};
|
67941 |
|
67942 |
-
var styleElement =
|
67943 |
styleElement.innerHTML = style;
|
67944 |
styleElement.id = styleId;
|
67945 |
method(styleElement);
|
67946 |
return styleElement;
|
67947 |
}
|
67948 |
|
67949 |
-
if (!
|
67950 |
var containerAnimationClass = containerClass + "_animation";
|
67951 |
var containerAnimationActiveClass = containerClass + "_animation_active";
|
67952 |
var style = "/* Created by the element-resize-detector library. */\n";
|
67953 |
-
style += "." + containerClass + " > div::-webkit-scrollbar { display: none
|
67954 |
-
style += "." + containerAnimationActiveClass + " { -webkit-animation-duration: 0.1s
|
67955 |
style += "@-webkit-keyframes " + containerAnimationClass + " { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }\n";
|
67956 |
style += "@keyframes " + containerAnimationClass + " { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }";
|
67957 |
injectStyle(style);
|
@@ -68153,7 +69032,7 @@ module.exports = function(options) {
|
|
68153 |
if (!container) {
|
68154 |
container = document.createElement("div");
|
68155 |
container.className = detectionContainerClass;
|
68156 |
-
container.style.cssText = "visibility: hidden
|
68157 |
getState(element).container = container;
|
68158 |
addAnimationClass(container);
|
68159 |
element.appendChild(container);
|
@@ -68177,7 +69056,7 @@ module.exports = function(options) {
|
|
68177 |
var style = getState(element).style;
|
68178 |
|
68179 |
if(style.position === "static") {
|
68180 |
-
element.style.position
|
68181 |
|
68182 |
var removeRelativeStyles = function(reporter, element, style, property) {
|
68183 |
function getNumericalValue(value) {
|
@@ -68207,7 +69086,7 @@ module.exports = function(options) {
|
|
68207 |
bottom = (!bottom ? "0" : (bottom + "px"));
|
68208 |
right = (!right ? "0" : (right + "px"));
|
68209 |
|
68210 |
-
return "left: " + left
|
68211 |
}
|
68212 |
|
68213 |
debug("Injecting elements");
|
@@ -68235,12 +69114,12 @@ module.exports = function(options) {
|
|
68235 |
|
68236 |
var scrollbarWidth = scrollbarSizes.width;
|
68237 |
var scrollbarHeight = scrollbarSizes.height;
|
68238 |
-
var containerContainerStyle = "position: absolute
|
68239 |
-
var containerStyle = "position: absolute
|
68240 |
-
var expandStyle = "position: absolute
|
68241 |
-
var shrinkStyle = "position: absolute
|
68242 |
-
var expandChildStyle = "position: absolute
|
68243 |
-
var shrinkChildStyle = "position: absolute
|
68244 |
|
68245 |
var containerContainer = document.createElement("div");
|
68246 |
var container = document.createElement("div");
|
@@ -68291,14 +69170,17 @@ module.exports = function(options) {
|
|
68291 |
var expandChild = getExpandChildElement(element);
|
68292 |
var expandWidth = getExpandWidth(width);
|
68293 |
var expandHeight = getExpandHeight(height);
|
68294 |
-
expandChild.style.width
|
68295 |
-
expandChild.style.height
|
68296 |
}
|
68297 |
|
68298 |
function updateDetectorElements(done) {
|
68299 |
var width = element.offsetWidth;
|
68300 |
var height = element.offsetHeight;
|
68301 |
|
|
|
|
|
|
|
68302 |
debug("Storing current size", width, height);
|
68303 |
|
68304 |
// Store the size of the element sync here, so that multiple scroll events may be ignored in the event listeners.
|
@@ -68309,6 +69191,10 @@ module.exports = function(options) {
|
|
68309 |
// Since there is no way to cancel the fn executions, we need to add an uninstall guard to all fns of the batch.
|
68310 |
|
68311 |
batchProcessor.add(0, function performUpdateChildSizes() {
|
|
|
|
|
|
|
|
|
68312 |
if (!getState(element)) {
|
68313 |
debug("Aborting because element has been uninstalled");
|
68314 |
return;
|
@@ -68332,6 +69218,9 @@ module.exports = function(options) {
|
|
68332 |
});
|
68333 |
|
68334 |
batchProcessor.add(1, function updateScrollbars() {
|
|
|
|
|
|
|
68335 |
if (!getState(element)) {
|
68336 |
debug("Aborting because element has been uninstalled");
|
68337 |
return;
|
@@ -68345,7 +69234,7 @@ module.exports = function(options) {
|
|
68345 |
positionScrollbars(element, width, height);
|
68346 |
});
|
68347 |
|
68348 |
-
if (done) {
|
68349 |
batchProcessor.add(2, function () {
|
68350 |
if (!getState(element)) {
|
68351 |
debug("Aborting because element has been uninstalled");
|
@@ -68375,7 +69264,7 @@ module.exports = function(options) {
|
|
68375 |
|
68376 |
var state = getState(element);
|
68377 |
|
68378 |
-
// Don't notify
|
68379 |
if (isFirstNotify() && state.lastWidth === state.startSize.width && state.lastHeight === state.startSize.height) {
|
68380 |
return debug("Not notifying: Size is the same as the start size, and there has been no notification yet.");
|
68381 |
}
|
@@ -68420,15 +69309,7 @@ module.exports = function(options) {
|
|
68420 |
return;
|
68421 |
}
|
68422 |
|
68423 |
-
|
68424 |
-
var height = element.offsetHeight;
|
68425 |
-
|
68426 |
-
if (width !== getState(element).lastWidth || height !== getState(element).lastHeight) {
|
68427 |
-
debug("Element size changed.");
|
68428 |
-
updateDetectorElements(notifyListenersIfNeeded);
|
68429 |
-
} else {
|
68430 |
-
debug("Element size has not changed (" + width + "x" + height + ").");
|
68431 |
-
}
|
68432 |
}
|
68433 |
|
68434 |
debug("registerListenersAndPositionElements invoked.");
|
@@ -68518,13 +69399,14 @@ module.exports = function(options) {
|
|
68518 |
return {
|
68519 |
makeDetectable: makeDetectable,
|
68520 |
addListener: addListener,
|
68521 |
-
uninstall: uninstall
|
|
|
68522 |
};
|
68523 |
};
|
68524 |
|
68525 |
|
68526 |
/***/ }),
|
68527 |
-
/*
|
68528 |
/*!*****************************************!*\
|
68529 |
!*** ./node_modules/lodash/debounce.js ***!
|
68530 |
\*****************************************/
|
@@ -68533,8 +69415,8 @@ module.exports = function(options) {
|
|
68533 |
/***/ (function(module, exports, __webpack_require__) {
|
68534 |
|
68535 |
var isObject = __webpack_require__(/*! ./isObject */ 13),
|
68536 |
-
now = __webpack_require__(/*! ./now */
|
68537 |
-
toNumber = __webpack_require__(/*! ./toNumber */
|
68538 |
|
68539 |
/** Error message constants. */
|
68540 |
var FUNC_ERROR_TEXT = 'Expected a function';
|
@@ -68726,7 +69608,7 @@ module.exports = debounce;
|
|
68726 |
|
68727 |
|
68728 |
/***/ }),
|
68729 |
-
/*
|
68730 |
/*!************************************!*\
|
68731 |
!*** ./node_modules/lodash/now.js ***!
|
68732 |
\************************************/
|
@@ -68760,7 +69642,7 @@ module.exports = now;
|
|
68760 |
|
68761 |
|
68762 |
/***/ }),
|
68763 |
-
/*
|
68764 |
/*!*************************************!*\
|
68765 |
!*** ./node_modules/lodash/omit.js ***!
|
68766 |
\*************************************/
|
@@ -68769,12 +69651,12 @@ module.exports = now;
|
|
68769 |
/***/ (function(module, exports, __webpack_require__) {
|
68770 |
|
68771 |
var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
|
68772 |
-
baseClone = __webpack_require__(/*! ./_baseClone */
|
68773 |
-
baseUnset = __webpack_require__(/*! ./_baseUnset */
|
68774 |
castPath = __webpack_require__(/*! ./_castPath */ 24),
|
68775 |
copyObject = __webpack_require__(/*! ./_copyObject */ 27),
|
68776 |
-
customOmitClone = __webpack_require__(/*! ./_customOmitClone */
|
68777 |
-
flatRest = __webpack_require__(/*! ./_flatRest */
|
68778 |
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 79);
|
68779 |
|
68780 |
/** Used to compose bitmasks for cloning. */
|
@@ -68828,7 +69710,7 @@ module.exports = omit;
|
|
68828 |
|
68829 |
|
68830 |
/***/ }),
|
68831 |
-
/*
|
68832 |
/*!*******************************************!*\
|
68833 |
!*** ./node_modules/lodash/_baseClone.js ***!
|
68834 |
\*******************************************/
|
@@ -68837,25 +69719,25 @@ module.exports = omit;
|
|
68837 |
/***/ (function(module, exports, __webpack_require__) {
|
68838 |
|
68839 |
var Stack = __webpack_require__(/*! ./_Stack */ 50),
|
68840 |
-
arrayEach = __webpack_require__(/*! ./_arrayEach */
|
68841 |
assignValue = __webpack_require__(/*! ./_assignValue */ 48),
|
68842 |
-
baseAssign = __webpack_require__(/*! ./_baseAssign */
|
68843 |
-
baseAssignIn = __webpack_require__(/*! ./_baseAssignIn */
|
68844 |
-
cloneBuffer = __webpack_require__(/*! ./_cloneBuffer */
|
68845 |
-
copyArray = __webpack_require__(/*! ./_copyArray */
|
68846 |
-
copySymbols = __webpack_require__(/*! ./_copySymbols */
|
68847 |
-
copySymbolsIn = __webpack_require__(/*! ./_copySymbolsIn */
|
68848 |
-
getAllKeys = __webpack_require__(/*! ./_getAllKeys */
|
68849 |
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 79),
|
68850 |
getTag = __webpack_require__(/*! ./_getTag */ 44),
|
68851 |
-
initCloneArray = __webpack_require__(/*! ./_initCloneArray */
|
68852 |
-
initCloneByTag = __webpack_require__(/*! ./_initCloneByTag */
|
68853 |
-
initCloneObject = __webpack_require__(/*! ./_initCloneObject */
|
68854 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
68855 |
isBuffer = __webpack_require__(/*! ./isBuffer */ 57),
|
68856 |
-
isMap = __webpack_require__(/*! ./isMap */
|
68857 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
68858 |
-
isSet = __webpack_require__(/*! ./isSet */
|
68859 |
keys = __webpack_require__(/*! ./keys */ 22);
|
68860 |
|
68861 |
/** Used to compose bitmasks for cloning. */
|
@@ -69004,7 +69886,7 @@ module.exports = baseClone;
|
|
69004 |
|
69005 |
|
69006 |
/***/ }),
|
69007 |
-
/*
|
69008 |
/*!*******************************************!*\
|
69009 |
!*** ./node_modules/lodash/_arrayEach.js ***!
|
69010 |
\*******************************************/
|
@@ -69037,7 +69919,7 @@ module.exports = arrayEach;
|
|
69037 |
|
69038 |
|
69039 |
/***/ }),
|
69040 |
-
/*
|
69041 |
/*!********************************************!*\
|
69042 |
!*** ./node_modules/lodash/_baseAssign.js ***!
|
69043 |
\********************************************/
|
@@ -69065,7 +69947,7 @@ module.exports = baseAssign;
|
|
69065 |
|
69066 |
|
69067 |
/***/ }),
|
69068 |
-
/*
|
69069 |
/*!**********************************************!*\
|
69070 |
!*** ./node_modules/lodash/_baseAssignIn.js ***!
|
69071 |
\**********************************************/
|
@@ -69074,7 +69956,7 @@ module.exports = baseAssign;
|
|
69074 |
/***/ (function(module, exports, __webpack_require__) {
|
69075 |
|
69076 |
var copyObject = __webpack_require__(/*! ./_copyObject */ 27),
|
69077 |
-
keysIn = __webpack_require__(/*! ./keysIn */
|
69078 |
|
69079 |
/**
|
69080 |
* The base implementation of `_.assignIn` without support for multiple sources
|
@@ -69093,7 +69975,7 @@ module.exports = baseAssignIn;
|
|
69093 |
|
69094 |
|
69095 |
/***/ }),
|
69096 |
-
/*
|
69097 |
/*!********************************************!*\
|
69098 |
!*** ./node_modules/lodash/_baseKeysIn.js ***!
|
69099 |
\********************************************/
|
@@ -69103,7 +69985,7 @@ module.exports = baseAssignIn;
|
|
69103 |
|
69104 |
var isObject = __webpack_require__(/*! ./isObject */ 13),
|
69105 |
isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
|
69106 |
-
nativeKeysIn = __webpack_require__(/*! ./_nativeKeysIn */
|
69107 |
|
69108 |
/** Used for built-in method references. */
|
69109 |
var objectProto = Object.prototype;
|
@@ -69137,7 +70019,7 @@ module.exports = baseKeysIn;
|
|
69137 |
|
69138 |
|
69139 |
/***/ }),
|
69140 |
-
/*
|
69141 |
/*!**********************************************!*\
|
69142 |
!*** ./node_modules/lodash/_nativeKeysIn.js ***!
|
69143 |
\**********************************************/
|
@@ -69168,7 +70050,7 @@ module.exports = nativeKeysIn;
|
|
69168 |
|
69169 |
|
69170 |
/***/ }),
|
69171 |
-
/*
|
69172 |
/*!*********************************************!*\
|
69173 |
!*** ./node_modules/lodash/_cloneBuffer.js ***!
|
69174 |
\*********************************************/
|
@@ -69215,7 +70097,7 @@ module.exports = cloneBuffer;
|
|
69215 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */ 58)(module)))
|
69216 |
|
69217 |
/***/ }),
|
69218 |
-
/*
|
69219 |
/*!*******************************************!*\
|
69220 |
!*** ./node_modules/lodash/_copyArray.js ***!
|
69221 |
\*******************************************/
|
@@ -69246,7 +70128,7 @@ module.exports = copyArray;
|
|
69246 |
|
69247 |
|
69248 |
/***/ }),
|
69249 |
-
/*
|
69250 |
/*!*********************************************!*\
|
69251 |
!*** ./node_modules/lodash/_copySymbols.js ***!
|
69252 |
\*********************************************/
|
@@ -69273,7 +70155,7 @@ module.exports = copySymbols;
|
|
69273 |
|
69274 |
|
69275 |
/***/ }),
|
69276 |
-
/*
|
69277 |
/*!***********************************************!*\
|
69278 |
!*** ./node_modules/lodash/_copySymbolsIn.js ***!
|
69279 |
\***********************************************/
|
@@ -69282,7 +70164,7 @@ module.exports = copySymbols;
|
|
69282 |
/***/ (function(module, exports, __webpack_require__) {
|
69283 |
|
69284 |
var copyObject = __webpack_require__(/*! ./_copyObject */ 27),
|
69285 |
-
getSymbolsIn = __webpack_require__(/*! ./_getSymbolsIn */
|
69286 |
|
69287 |
/**
|
69288 |
* Copies own and inherited symbols of `source` to `object`.
|
@@ -69300,7 +70182,7 @@ module.exports = copySymbolsIn;
|
|
69300 |
|
69301 |
|
69302 |
/***/ }),
|
69303 |
-
/*
|
69304 |
/*!************************************************!*\
|
69305 |
!*** ./node_modules/lodash/_initCloneArray.js ***!
|
69306 |
\************************************************/
|
@@ -69337,7 +70219,7 @@ module.exports = initCloneArray;
|
|
69337 |
|
69338 |
|
69339 |
/***/ }),
|
69340 |
-
/*
|
69341 |
/*!************************************************!*\
|
69342 |
!*** ./node_modules/lodash/_initCloneByTag.js ***!
|
69343 |
\************************************************/
|
@@ -69346,10 +70228,10 @@ module.exports = initCloneArray;
|
|
69346 |
/***/ (function(module, exports, __webpack_require__) {
|
69347 |
|
69348 |
var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */ 80),
|
69349 |
-
cloneDataView = __webpack_require__(/*! ./_cloneDataView */
|
69350 |
-
cloneRegExp = __webpack_require__(/*! ./_cloneRegExp */
|
69351 |
-
cloneSymbol = __webpack_require__(/*! ./_cloneSymbol */
|
69352 |
-
cloneTypedArray = __webpack_require__(/*! ./_cloneTypedArray */
|
69353 |
|
69354 |
/** `Object#toString` result references. */
|
69355 |
var boolTag = '[object Boolean]',
|
@@ -69425,7 +70307,7 @@ module.exports = initCloneByTag;
|
|
69425 |
|
69426 |
|
69427 |
/***/ }),
|
69428 |
-
/*
|
69429 |
/*!***********************************************!*\
|
69430 |
!*** ./node_modules/lodash/_cloneDataView.js ***!
|
69431 |
\***********************************************/
|
@@ -69452,7 +70334,7 @@ module.exports = cloneDataView;
|
|
69452 |
|
69453 |
|
69454 |
/***/ }),
|
69455 |
-
/*
|
69456 |
/*!*********************************************!*\
|
69457 |
!*** ./node_modules/lodash/_cloneRegExp.js ***!
|
69458 |
\*********************************************/
|
@@ -69480,7 +70362,7 @@ module.exports = cloneRegExp;
|
|
69480 |
|
69481 |
|
69482 |
/***/ }),
|
69483 |
-
/*
|
69484 |
/*!*********************************************!*\
|
69485 |
!*** ./node_modules/lodash/_cloneSymbol.js ***!
|
69486 |
\*********************************************/
|
@@ -69509,7 +70391,7 @@ module.exports = cloneSymbol;
|
|
69509 |
|
69510 |
|
69511 |
/***/ }),
|
69512 |
-
/*
|
69513 |
/*!*************************************************!*\
|
69514 |
!*** ./node_modules/lodash/_cloneTypedArray.js ***!
|
69515 |
\*************************************************/
|
@@ -69536,7 +70418,7 @@ module.exports = cloneTypedArray;
|
|
69536 |
|
69537 |
|
69538 |
/***/ }),
|
69539 |
-
/*
|
69540 |
/*!*************************************************!*\
|
69541 |
!*** ./node_modules/lodash/_initCloneObject.js ***!
|
69542 |
\*************************************************/
|
@@ -69544,7 +70426,7 @@ module.exports = cloneTypedArray;
|
|
69544 |
/*! all exports used */
|
69545 |
/***/ (function(module, exports, __webpack_require__) {
|
69546 |
|
69547 |
-
var baseCreate = __webpack_require__(/*! ./_baseCreate */
|
69548 |
getPrototype = __webpack_require__(/*! ./_getPrototype */ 78),
|
69549 |
isPrototype = __webpack_require__(/*! ./_isPrototype */ 43);
|
69550 |
|
@@ -69565,7 +70447,7 @@ module.exports = initCloneObject;
|
|
69565 |
|
69566 |
|
69567 |
/***/ }),
|
69568 |
-
/*
|
69569 |
/*!********************************************!*\
|
69570 |
!*** ./node_modules/lodash/_baseCreate.js ***!
|
69571 |
\********************************************/
|
@@ -69606,7 +70488,7 @@ module.exports = baseCreate;
|
|
69606 |
|
69607 |
|
69608 |
/***/ }),
|
69609 |
-
/*
|
69610 |
/*!**************************************!*\
|
69611 |
!*** ./node_modules/lodash/isMap.js ***!
|
69612 |
\**************************************/
|
@@ -69614,7 +70496,7 @@ module.exports = baseCreate;
|
|
69614 |
/*! all exports used */
|
69615 |
/***/ (function(module, exports, __webpack_require__) {
|
69616 |
|
69617 |
-
var baseIsMap = __webpack_require__(/*! ./_baseIsMap */
|
69618 |
baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
|
69619 |
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
|
69620 |
|
@@ -69644,7 +70526,7 @@ module.exports = isMap;
|
|
69644 |
|
69645 |
|
69646 |
/***/ }),
|
69647 |
-
/*
|
69648 |
/*!*******************************************!*\
|
69649 |
!*** ./node_modules/lodash/_baseIsMap.js ***!
|
69650 |
\*******************************************/
|
@@ -69673,7 +70555,7 @@ module.exports = baseIsMap;
|
|
69673 |
|
69674 |
|
69675 |
/***/ }),
|
69676 |
-
/*
|
69677 |
/*!**************************************!*\
|
69678 |
!*** ./node_modules/lodash/isSet.js ***!
|
69679 |
\**************************************/
|
@@ -69681,7 +70563,7 @@ module.exports = baseIsMap;
|
|
69681 |
/*! all exports used */
|
69682 |
/***/ (function(module, exports, __webpack_require__) {
|
69683 |
|
69684 |
-
var baseIsSet = __webpack_require__(/*! ./_baseIsSet */
|
69685 |
baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
|
69686 |
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
|
69687 |
|
@@ -69711,7 +70593,7 @@ module.exports = isSet;
|
|
69711 |
|
69712 |
|
69713 |
/***/ }),
|
69714 |
-
/*
|
69715 |
/*!*******************************************!*\
|
69716 |
!*** ./node_modules/lodash/_baseIsSet.js ***!
|
69717 |
\*******************************************/
|
@@ -69740,7 +70622,7 @@ module.exports = baseIsSet;
|
|
69740 |
|
69741 |
|
69742 |
/***/ }),
|
69743 |
-
/*
|
69744 |
/*!*******************************************!*\
|
69745 |
!*** ./node_modules/lodash/_baseUnset.js ***!
|
69746 |
\*******************************************/
|
@@ -69749,8 +70631,8 @@ module.exports = baseIsSet;
|
|
69749 |
/***/ (function(module, exports, __webpack_require__) {
|
69750 |
|
69751 |
var castPath = __webpack_require__(/*! ./_castPath */ 24),
|
69752 |
-
last = __webpack_require__(/*! ./last */
|
69753 |
-
parent = __webpack_require__(/*! ./_parent */
|
69754 |
toKey = __webpack_require__(/*! ./_toKey */ 25);
|
69755 |
|
69756 |
/**
|
@@ -69771,7 +70653,7 @@ module.exports = baseUnset;
|
|
69771 |
|
69772 |
|
69773 |
/***/ }),
|
69774 |
-
/*
|
69775 |
/*!*************************************!*\
|
69776 |
!*** ./node_modules/lodash/last.js ***!
|
69777 |
\*************************************/
|
@@ -69802,7 +70684,7 @@ module.exports = last;
|
|
69802 |
|
69803 |
|
69804 |
/***/ }),
|
69805 |
-
/*
|
69806 |
/*!****************************************!*\
|
69807 |
!*** ./node_modules/lodash/_parent.js ***!
|
69808 |
\****************************************/
|
@@ -69829,7 +70711,7 @@ module.exports = parent;
|
|
69829 |
|
69830 |
|
69831 |
/***/ }),
|
69832 |
-
/*
|
69833 |
/*!*************************************************!*\
|
69834 |
!*** ./node_modules/lodash/_customOmitClone.js ***!
|
69835 |
\*************************************************/
|
@@ -69837,7 +70719,7 @@ module.exports = parent;
|
|
69837 |
/*! all exports used */
|
69838 |
/***/ (function(module, exports, __webpack_require__) {
|
69839 |
|
69840 |
-
var isPlainObject = __webpack_require__(/*! ./isPlainObject */
|
69841 |
|
69842 |
/**
|
69843 |
* Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain
|
@@ -69856,7 +70738,7 @@ module.exports = customOmitClone;
|
|
69856 |
|
69857 |
|
69858 |
/***/ }),
|
69859 |
-
/*
|
69860 |
/*!**********************************************!*\
|
69861 |
!*** ./node_modules/lodash/isPlainObject.js ***!
|
69862 |
\**********************************************/
|
@@ -69929,7 +70811,7 @@ module.exports = isPlainObject;
|
|
69929 |
|
69930 |
|
69931 |
/***/ }),
|
69932 |
-
/*
|
69933 |
/*!******************************************!*\
|
69934 |
!*** ./node_modules/lodash/_flatRest.js ***!
|
69935 |
\******************************************/
|
@@ -69937,9 +70819,9 @@ module.exports = isPlainObject;
|
|
69937 |
/*! all exports used */
|
69938 |
/***/ (function(module, exports, __webpack_require__) {
|
69939 |
|
69940 |
-
var flatten = __webpack_require__(/*! ./flatten */
|
69941 |
-
overRest = __webpack_require__(/*! ./_overRest */
|
69942 |
-
setToString = __webpack_require__(/*! ./_setToString */
|
69943 |
|
69944 |
/**
|
69945 |
* A specialized version of `baseRest` which flattens the rest array.
|
@@ -69956,7 +70838,7 @@ module.exports = flatRest;
|
|
69956 |
|
69957 |
|
69958 |
/***/ }),
|
69959 |
-
/*
|
69960 |
/*!****************************************!*\
|
69961 |
!*** ./node_modules/lodash/flatten.js ***!
|
69962 |
\****************************************/
|
@@ -69964,7 +70846,7 @@ module.exports = flatRest;
|
|
69964 |
/*! all exports used */
|
69965 |
/***/ (function(module, exports, __webpack_require__) {
|
69966 |
|
69967 |
-
var baseFlatten = __webpack_require__(/*! ./_baseFlatten */
|
69968 |
|
69969 |
/**
|
69970 |
* Flattens `array` a single level deep.
|
@@ -69989,7 +70871,7 @@ module.exports = flatten;
|
|
69989 |
|
69990 |
|
69991 |
/***/ }),
|
69992 |
-
/*
|
69993 |
/*!*********************************************!*\
|
69994 |
!*** ./node_modules/lodash/_baseFlatten.js ***!
|
69995 |
\*********************************************/
|
@@ -69998,7 +70880,7 @@ module.exports = flatten;
|
|
69998 |
/***/ (function(module, exports, __webpack_require__) {
|
69999 |
|
70000 |
var arrayPush = __webpack_require__(/*! ./_arrayPush */ 54),
|
70001 |
-
isFlattenable = __webpack_require__(/*! ./_isFlattenable */
|
70002 |
|
70003 |
/**
|
70004 |
* The base implementation of `_.flatten` with support for restricting flattening.
|
@@ -70038,7 +70920,7 @@ module.exports = baseFlatten;
|
|
70038 |
|
70039 |
|
70040 |
/***/ }),
|
70041 |
-
/*
|
70042 |
/*!***********************************************!*\
|
70043 |
!*** ./node_modules/lodash/_isFlattenable.js ***!
|
70044 |
\***********************************************/
|
@@ -70069,7 +70951,7 @@ module.exports = isFlattenable;
|
|
70069 |
|
70070 |
|
70071 |
/***/ }),
|
70072 |
-
/*
|
70073 |
/*!**************************************************!*\
|
70074 |
!*** ./node_modules/create-react-class/index.js ***!
|
70075 |
\**************************************************/
|
@@ -70089,7 +70971,7 @@ module.exports = isFlattenable;
|
|
70089 |
|
70090 |
|
70091 |
var React = __webpack_require__(/*! react */ 6);
|
70092 |
-
var factory = __webpack_require__(/*! ./factory */
|
70093 |
|
70094 |
if (typeof React === 'undefined') {
|
70095 |
throw Error(
|
@@ -70109,7 +70991,7 @@ module.exports = factory(
|
|
70109 |
|
70110 |
|
70111 |
/***/ }),
|
70112 |
-
/*
|
70113 |
/*!****************************************************!*\
|
70114 |
!*** ./node_modules/create-react-class/factory.js ***!
|
70115 |
\****************************************************/
|
@@ -70130,11 +71012,11 @@ module.exports = factory(
|
|
70130 |
|
70131 |
var _assign = __webpack_require__(/*! object-assign */ 26);
|
70132 |
|
70133 |
-
var emptyObject = __webpack_require__(/*! fbjs/lib/emptyObject */
|
70134 |
-
var _invariant = __webpack_require__(/*! fbjs/lib/invariant */
|
70135 |
|
70136 |
if (process.env.NODE_ENV !== 'production') {
|
70137 |
-
var warning = __webpack_require__(/*! fbjs/lib/warning */
|
70138 |
}
|
70139 |
|
70140 |
var MIXINS_KEY = 'mixins';
|
@@ -71048,7 +71930,7 @@ module.exports = factory;
|
|
71048 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
71049 |
|
71050 |
/***/ }),
|
71051 |
-
/*
|
71052 |
/*!**********************************************!*\
|
71053 |
!*** ./node_modules/fbjs/lib/emptyObject.js ***!
|
71054 |
\**********************************************/
|
@@ -71077,7 +71959,7 @@ module.exports = emptyObject;
|
|
71077 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
71078 |
|
71079 |
/***/ }),
|
71080 |
-
/*
|
71081 |
/*!********************************************!*\
|
71082 |
!*** ./node_modules/fbjs/lib/invariant.js ***!
|
71083 |
\********************************************/
|
@@ -71142,7 +72024,7 @@ module.exports = invariant;
|
|
71142 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
71143 |
|
71144 |
/***/ }),
|
71145 |
-
/*
|
71146 |
/*!******************************************!*\
|
71147 |
!*** ./node_modules/fbjs/lib/warning.js ***!
|
71148 |
\******************************************/
|
@@ -71161,7 +72043,7 @@ module.exports = invariant;
|
|
71161 |
|
71162 |
|
71163 |
|
71164 |
-
var emptyFunction = __webpack_require__(/*! ./emptyFunction */
|
71165 |
|
71166 |
/**
|
71167 |
* Similar to invariant but only logs a warning if the condition is not met.
|
@@ -71216,7 +72098,7 @@ module.exports = warning;
|
|
71216 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
71217 |
|
71218 |
/***/ }),
|
71219 |
-
/*
|
71220 |
/*!************************************************!*\
|
71221 |
!*** ./node_modules/fbjs/lib/emptyFunction.js ***!
|
71222 |
\************************************************/
|
@@ -71263,7 +72145,7 @@ emptyFunction.thatReturnsArgument = function (arg) {
|
|
71263 |
module.exports = emptyFunction;
|
71264 |
|
71265 |
/***/ }),
|
71266 |
-
/*
|
71267 |
/*!************************************************!*\
|
71268 |
!*** ./src/blocks/post/post-carousel/block.js ***!
|
71269 |
\************************************************/
|
@@ -71271,7 +72153,7 @@ module.exports = emptyFunction;
|
|
71271 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
71272 |
|
71273 |
"use strict";
|
71274 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */
|
71275 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
71276 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 74);
|
71277 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
@@ -71312,7 +72194,7 @@ registerBlockType("uagb/post-carousel", {
|
|
71312 |
});
|
71313 |
|
71314 |
/***/ }),
|
71315 |
-
/*
|
71316 |
/*!***********************************************!*\
|
71317 |
!*** ./src/blocks/post/post-carousel/edit.js ***!
|
71318 |
\***********************************************/
|
@@ -71321,14 +72203,14 @@ registerBlockType("uagb/post-carousel", {
|
|
71321 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
71322 |
|
71323 |
"use strict";
|
71324 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_get__ = __webpack_require__(/*! lodash/get */
|
71325 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_get___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_get__);
|
71326 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
71327 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_map__);
|
71328 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
71329 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
71330 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
71331 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blog__ = __webpack_require__(/*! ./blog */
|
71332 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__styling__ = __webpack_require__(/*! .././styling */ 73);
|
71333 |
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; };
|
71334 |
|
@@ -71378,7 +72260,8 @@ var _wp$components = wp.components,
|
|
71378 |
Button = _wp$components.Button,
|
71379 |
TabPanel = _wp$components.TabPanel,
|
71380 |
Dashicon = _wp$components.Dashicon,
|
71381 |
-
TextControl = _wp$components.TextControl
|
|
|
71382 |
var _wp$blockEditor = wp.blockEditor,
|
71383 |
InspectorControls = _wp$blockEditor.InspectorControls,
|
71384 |
BlockAlignmentToolbar = _wp$blockEditor.BlockAlignmentToolbar,
|
@@ -71568,7 +72451,9 @@ var UAGBPostCarousel = function (_Component) {
|
|
71568 |
taxonomyType = attributes.taxonomyType,
|
71569 |
equalHeight = attributes.equalHeight,
|
71570 |
inheritFromTheme = attributes.inheritFromTheme,
|
71571 |
-
postDisplaytext = attributes.postDisplaytext
|
|
|
|
|
71572 |
|
71573 |
|
71574 |
var hoverSettings = wp.element.createElement(
|
@@ -71784,6 +72669,13 @@ var UAGBPostCarousel = function (_Component) {
|
|
71784 |
}),
|
71785 |
wp.element.createElement("hr", { className: "uagb-editor__separator" })
|
71786 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71787 |
wp.element.createElement(QueryControls, _extends({ order: order, orderBy: orderBy }, {
|
71788 |
numberOfItems: postsToShow,
|
71789 |
onNumberOfItemsChange: function onNumberOfItemsChange(value) {
|
@@ -72093,18 +72985,28 @@ var UAGBPostCarousel = function (_Component) {
|
|
72093 |
return setAttributes({ displayPostExcerpt: !displayPostExcerpt });
|
72094 |
}
|
72095 |
}),
|
72096 |
-
displayPostExcerpt && wp.element.createElement(
|
72097 |
-
label: __(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72098 |
value: excerptLength,
|
72099 |
onChange: function onChange(value) {
|
72100 |
return setAttributes({ excerptLength: value });
|
72101 |
},
|
72102 |
min: 1,
|
72103 |
-
max:
|
72104 |
allowReset: true
|
72105 |
})
|
72106 |
),
|
72107 |
-
wp.element.createElement(
|
72108 |
PanelBody,
|
72109 |
{ title: __("Read More Link"), initialOpen: false },
|
72110 |
wp.element.createElement(ToggleControl, {
|
@@ -72568,7 +73470,8 @@ var UAGBPostCarousel = function (_Component) {
|
|
72568 |
order = _props$attributes.order,
|
72569 |
orderBy = _props$attributes.orderBy,
|
72570 |
postType = _props$attributes.postType,
|
72571 |
-
taxonomyType = _props$attributes.taxonomyType
|
|
|
72572 |
|
72573 |
var _select = select("core"),
|
72574 |
getEntityRecords = _select.getEntityRecords;
|
@@ -72598,8 +73501,11 @@ var UAGBPostCarousel = function (_Component) {
|
|
72598 |
per_page: postsToShow
|
72599 |
};
|
72600 |
|
72601 |
-
|
|
|
|
|
72602 |
|
|
|
72603 |
return {
|
72604 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
72605 |
categoriesList: categoriesList,
|
@@ -72608,7 +73514,7 @@ var UAGBPostCarousel = function (_Component) {
|
|
72608 |
})(UAGBPostCarousel));
|
72609 |
|
72610 |
/***/ }),
|
72611 |
-
/*
|
72612 |
/*!***********************************************!*\
|
72613 |
!*** ./src/blocks/post/post-carousel/blog.js ***!
|
72614 |
\***********************************************/
|
@@ -72619,7 +73525,7 @@ var UAGBPostCarousel = function (_Component) {
|
|
72619 |
"use strict";
|
72620 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
72621 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
72622 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick__ = __webpack_require__(/*! react-slick */
|
72623 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_slick__);
|
72624 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_FeaturedImage__ = __webpack_require__(/*! .././components/FeaturedImage */ 65);
|
72625 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! .././components/Title */ 66);
|
@@ -72809,7 +73715,7 @@ var Blog = function (_React$Component) {
|
|
72809 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
72810 |
|
72811 |
/***/ }),
|
72812 |
-
/*
|
72813 |
/*!************************************************!*\
|
72814 |
!*** ./node_modules/react-slick/lib/slider.js ***!
|
72815 |
\************************************************/
|
@@ -72828,13 +73734,13 @@ var _react = __webpack_require__(/*! react */ 6);
|
|
72828 |
|
72829 |
var _react2 = _interopRequireDefault(_react);
|
72830 |
|
72831 |
-
var _innerSlider = __webpack_require__(/*! ./inner-slider */
|
72832 |
|
72833 |
-
var _json2mq = __webpack_require__(/*! json2mq */
|
72834 |
|
72835 |
var _json2mq2 = _interopRequireDefault(_json2mq);
|
72836 |
|
72837 |
-
var _defaultProps = __webpack_require__(/*! ./default-props */
|
72838 |
|
72839 |
var _defaultProps2 = _interopRequireDefault(_defaultProps);
|
72840 |
|
@@ -72848,7 +73754,7 @@ function _possibleConstructorReturn(self, call) { if (!self) { throw new Referen
|
|
72848 |
|
72849 |
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; }
|
72850 |
|
72851 |
-
var enquire = (0, _innerSliderUtils.canUseDOM)() && __webpack_require__(/*! enquire.js */
|
72852 |
|
72853 |
var Slider = function (_React$Component) {
|
72854 |
_inherits(Slider, _React$Component);
|
@@ -73064,7 +73970,7 @@ exports.default = Slider;
|
|
73064 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
73065 |
|
73066 |
/***/ }),
|
73067 |
-
/*
|
73068 |
/*!******************************************************!*\
|
73069 |
!*** ./node_modules/react-slick/lib/inner-slider.js ***!
|
73070 |
\******************************************************/
|
@@ -73090,11 +73996,11 @@ var _reactDom = __webpack_require__(/*! react-dom */ 18);
|
|
73090 |
|
73091 |
var _reactDom2 = _interopRequireDefault(_reactDom);
|
73092 |
|
73093 |
-
var _initialState = __webpack_require__(/*! ./initial-state */
|
73094 |
|
73095 |
var _initialState2 = _interopRequireDefault(_initialState);
|
73096 |
|
73097 |
-
var _lodash = __webpack_require__(/*! lodash.debounce */
|
73098 |
|
73099 |
var _lodash2 = _interopRequireDefault(_lodash);
|
73100 |
|
@@ -73104,13 +74010,13 @@ var _classnames2 = _interopRequireDefault(_classnames);
|
|
73104 |
|
73105 |
var _innerSliderUtils = __webpack_require__(/*! ./utils/innerSliderUtils */ 49);
|
73106 |
|
73107 |
-
var _track = __webpack_require__(/*! ./track */
|
73108 |
|
73109 |
-
var _dots = __webpack_require__(/*! ./dots */
|
73110 |
|
73111 |
-
var _arrows = __webpack_require__(/*! ./arrows */
|
73112 |
|
73113 |
-
var _resizeObserverPolyfill = __webpack_require__(/*! resize-observer-polyfill */
|
73114 |
|
73115 |
var _resizeObserverPolyfill2 = _interopRequireDefault(_resizeObserverPolyfill);
|
73116 |
|
@@ -73816,7 +74722,7 @@ var InnerSlider = exports.InnerSlider = function (_React$Component) {
|
|
73816 |
}(_react2.default.Component);
|
73817 |
|
73818 |
/***/ }),
|
73819 |
-
/*
|
73820 |
/*!*******************************************************!*\
|
73821 |
!*** ./node_modules/react-slick/lib/initial-state.js ***!
|
73822 |
\*******************************************************/
|
@@ -73856,7 +74762,7 @@ var initialState = {
|
|
73856 |
exports.default = initialState;
|
73857 |
|
73858 |
/***/ }),
|
73859 |
-
/*
|
73860 |
/*!***********************************************!*\
|
73861 |
!*** ./node_modules/lodash.debounce/index.js ***!
|
73862 |
\***********************************************/
|
@@ -74245,7 +75151,7 @@ module.exports = debounce;
|
|
74245 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 52)))
|
74246 |
|
74247 |
/***/ }),
|
74248 |
-
/*
|
74249 |
/*!***********************************************!*\
|
74250 |
!*** ./node_modules/react-slick/lib/track.js ***!
|
74251 |
\***********************************************/
|
@@ -74465,7 +75371,7 @@ var Track = exports.Track = function (_React$PureComponent) {
|
|
74465 |
}(_react2.default.PureComponent);
|
74466 |
|
74467 |
/***/ }),
|
74468 |
-
/*
|
74469 |
/*!**********************************************!*\
|
74470 |
!*** ./node_modules/react-slick/lib/dots.js ***!
|
74471 |
\**********************************************/
|
@@ -74575,7 +75481,7 @@ var Dots = exports.Dots = function (_React$PureComponent) {
|
|
74575 |
}(_react2.default.PureComponent);
|
74576 |
|
74577 |
/***/ }),
|
74578 |
-
/*
|
74579 |
/*!************************************************!*\
|
74580 |
!*** ./node_modules/react-slick/lib/arrows.js ***!
|
74581 |
\************************************************/
|
@@ -74720,7 +75626,7 @@ var NextArrow = exports.NextArrow = function (_React$PureComponent2) {
|
|
74720 |
}(_react2.default.PureComponent);
|
74721 |
|
74722 |
/***/ }),
|
74723 |
-
/*
|
74724 |
/*!*************************************************************************!*\
|
74725 |
!*** ./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js ***!
|
74726 |
\*************************************************************************/
|
@@ -74730,931 +75636,931 @@ var NextArrow = exports.NextArrow = function (_React$PureComponent2) {
|
|
74730 |
|
74731 |
"use strict";
|
74732 |
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
74733 |
-
/* WEBPACK VAR INJECTION */(function(global) {/**
|
74734 |
-
* A collection of shims that provide minimal functionality of the ES6 collections.
|
74735 |
-
*
|
74736 |
-
* These implementations are not meant to be used outside of the ResizeObserver
|
74737 |
-
* modules as they cover only a limited range of use cases.
|
74738 |
-
*/
|
74739 |
-
/* eslint-disable require-jsdoc, valid-jsdoc */
|
74740 |
-
var MapShim = (function () {
|
74741 |
-
if (typeof Map !== 'undefined') {
|
74742 |
-
return Map;
|
74743 |
-
}
|
74744 |
-
/**
|
74745 |
-
* Returns index in provided array that matches the specified key.
|
74746 |
-
*
|
74747 |
-
* @param {Array<Array>} arr
|
74748 |
-
* @param {*} key
|
74749 |
-
* @returns {number}
|
74750 |
-
*/
|
74751 |
-
function getIndex(arr, key) {
|
74752 |
-
var result = -1;
|
74753 |
-
arr.some(function (entry, index) {
|
74754 |
-
if (entry[0] === key) {
|
74755 |
-
result = index;
|
74756 |
-
return true;
|
74757 |
-
}
|
74758 |
-
return false;
|
74759 |
-
});
|
74760 |
-
return result;
|
74761 |
-
}
|
74762 |
-
return /** @class */ (function () {
|
74763 |
-
function class_1() {
|
74764 |
-
this.__entries__ = [];
|
74765 |
-
}
|
74766 |
-
Object.defineProperty(class_1.prototype, "size", {
|
74767 |
-
/**
|
74768 |
-
* @returns {boolean}
|
74769 |
-
*/
|
74770 |
-
get: function () {
|
74771 |
-
return this.__entries__.length;
|
74772 |
-
},
|
74773 |
-
enumerable: true,
|
74774 |
-
configurable: true
|
74775 |
-
});
|
74776 |
-
/**
|
74777 |
-
* @param {*} key
|
74778 |
-
* @returns {*}
|
74779 |
-
*/
|
74780 |
-
class_1.prototype.get = function (key) {
|
74781 |
-
var index = getIndex(this.__entries__, key);
|
74782 |
-
var entry = this.__entries__[index];
|
74783 |
-
return entry && entry[1];
|
74784 |
-
};
|
74785 |
-
/**
|
74786 |
-
* @param {*} key
|
74787 |
-
* @param {*} value
|
74788 |
-
* @returns {void}
|
74789 |
-
*/
|
74790 |
-
class_1.prototype.set = function (key, value) {
|
74791 |
-
var index = getIndex(this.__entries__, key);
|
74792 |
-
if (~index) {
|
74793 |
-
this.__entries__[index][1] = value;
|
74794 |
-
}
|
74795 |
-
else {
|
74796 |
-
this.__entries__.push([key, value]);
|
74797 |
-
}
|
74798 |
-
};
|
74799 |
-
/**
|
74800 |
-
* @param {*} key
|
74801 |
-
* @returns {void}
|
74802 |
-
*/
|
74803 |
-
class_1.prototype.delete = function (key) {
|
74804 |
-
var entries = this.__entries__;
|
74805 |
-
var index = getIndex(entries, key);
|
74806 |
-
if (~index) {
|
74807 |
-
entries.splice(index, 1);
|
74808 |
-
}
|
74809 |
-
};
|
74810 |
-
/**
|
74811 |
-
* @param {*} key
|
74812 |
-
* @returns {void}
|
74813 |
-
*/
|
74814 |
-
class_1.prototype.has = function (key) {
|
74815 |
-
return !!~getIndex(this.__entries__, key);
|
74816 |
-
};
|
74817 |
-
/**
|
74818 |
-
* @returns {void}
|
74819 |
-
*/
|
74820 |
-
class_1.prototype.clear = function () {
|
74821 |
-
this.__entries__.splice(0);
|
74822 |
-
};
|
74823 |
-
/**
|
74824 |
-
* @param {Function} callback
|
74825 |
-
* @param {*} [ctx=null]
|
74826 |
-
* @returns {void}
|
74827 |
-
*/
|
74828 |
-
class_1.prototype.forEach = function (callback, ctx) {
|
74829 |
-
if (ctx === void 0) { ctx = null; }
|
74830 |
-
for (var _i = 0, _a = this.__entries__; _i < _a.length; _i++) {
|
74831 |
-
var entry = _a[_i];
|
74832 |
-
callback.call(ctx, entry[1], entry[0]);
|
74833 |
-
}
|
74834 |
-
};
|
74835 |
-
return class_1;
|
74836 |
-
}());
|
74837 |
})();
|
74838 |
|
74839 |
-
/**
|
74840 |
-
* Detects whether window and document objects are available in current environment.
|
74841 |
-
*/
|
74842 |
var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document;
|
74843 |
|
74844 |
-
// Returns global object of a current environment.
|
74845 |
-
var global$1 = (function () {
|
74846 |
-
if (typeof global !== 'undefined' && global.Math === Math) {
|
74847 |
-
return global;
|
74848 |
-
}
|
74849 |
-
if (typeof self !== 'undefined' && self.Math === Math) {
|
74850 |
-
return self;
|
74851 |
-
}
|
74852 |
-
if (typeof window !== 'undefined' && window.Math === Math) {
|
74853 |
-
return window;
|
74854 |
-
}
|
74855 |
-
// eslint-disable-next-line no-new-func
|
74856 |
-
return Function('return this')();
|
74857 |
})();
|
74858 |
|
74859 |
-
/**
|
74860 |
-
* A shim for the requestAnimationFrame which falls back to the setTimeout if
|
74861 |
-
* first one is not supported.
|
74862 |
-
*
|
74863 |
-
* @returns {number} Requests' identifier.
|
74864 |
-
*/
|
74865 |
-
var requestAnimationFrame$1 = (function () {
|
74866 |
-
if (typeof requestAnimationFrame === 'function') {
|
74867 |
-
// It's required to use a bounded function because IE sometimes throws
|
74868 |
-
// an "Invalid calling object" error if rAF is invoked without the global
|
74869 |
-
// object on the left hand side.
|
74870 |
-
return requestAnimationFrame.bind(global$1);
|
74871 |
-
}
|
74872 |
-
return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); };
|
74873 |
})();
|
74874 |
|
74875 |
-
// Defines minimum timeout before adding a trailing call.
|
74876 |
-
var trailingTimeout = 2;
|
74877 |
-
/**
|
74878 |
-
* Creates a wrapper function which ensures that provided callback will be
|
74879 |
-
* invoked only once during the specified delay period.
|
74880 |
-
*
|
74881 |
-
* @param {Function} callback - Function to be invoked after the delay period.
|
74882 |
-
* @param {number} delay - Delay after which to invoke callback.
|
74883 |
-
* @returns {Function}
|
74884 |
-
*/
|
74885 |
-
function throttle (callback, delay) {
|
74886 |
-
var leadingCall = false, trailingCall = false, lastCallTime = 0;
|
74887 |
-
/**
|
74888 |
-
* Invokes the original callback function and schedules new invocation if
|
74889 |
-
* the "proxy" was called during current request.
|
74890 |
-
*
|
74891 |
-
* @returns {void}
|
74892 |
-
*/
|
74893 |
-
function resolvePending() {
|
74894 |
-
if (leadingCall) {
|
74895 |
-
leadingCall = false;
|
74896 |
-
callback();
|
74897 |
-
}
|
74898 |
-
if (trailingCall) {
|
74899 |
-
proxy();
|
74900 |
-
}
|
74901 |
-
}
|
74902 |
-
/**
|
74903 |
-
* Callback invoked after the specified delay. It will further postpone
|
74904 |
-
* invocation of the original function delegating it to the
|
74905 |
-
* requestAnimationFrame.
|
74906 |
-
*
|
74907 |
-
* @returns {void}
|
74908 |
-
*/
|
74909 |
-
function timeoutCallback() {
|
74910 |
-
requestAnimationFrame$1(resolvePending);
|
74911 |
-
}
|
74912 |
-
/**
|
74913 |
-
* Schedules invocation of the original function.
|
74914 |
-
*
|
74915 |
-
* @returns {void}
|
74916 |
-
*/
|
74917 |
-
function proxy() {
|
74918 |
-
var timeStamp = Date.now();
|
74919 |
-
if (leadingCall) {
|
74920 |
-
// Reject immediately following calls.
|
74921 |
-
if (timeStamp - lastCallTime < trailingTimeout) {
|
74922 |
-
return;
|
74923 |
-
}
|
74924 |
-
// Schedule new call to be in invoked when the pending one is resolved.
|
74925 |
-
// This is important for "transitions" which never actually start
|
74926 |
-
// immediately so there is a chance that we might miss one if change
|
74927 |
-
// happens amids the pending invocation.
|
74928 |
-
trailingCall = true;
|
74929 |
-
}
|
74930 |
-
else {
|
74931 |
-
leadingCall = true;
|
74932 |
-
trailingCall = false;
|
74933 |
-
setTimeout(timeoutCallback, delay);
|
74934 |
-
}
|
74935 |
-
lastCallTime = timeStamp;
|
74936 |
-
}
|
74937 |
-
return proxy;
|
74938 |
-
}
|
74939 |
-
|
74940 |
-
// Minimum delay before invoking the update of observers.
|
74941 |
-
var REFRESH_DELAY = 20;
|
74942 |
-
// A list of substrings of CSS properties used to find transition events that
|
74943 |
-
// might affect dimensions of observed elements.
|
74944 |
-
var transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight'];
|
74945 |
-
// Check if MutationObserver is available.
|
74946 |
-
var mutationObserverSupported = typeof MutationObserver !== 'undefined';
|
74947 |
-
/**
|
74948 |
-
* Singleton controller class which handles updates of ResizeObserver instances.
|
74949 |
-
*/
|
74950 |
-
var ResizeObserverController = /** @class */ (function () {
|
74951 |
-
/**
|
74952 |
-
* Creates a new instance of ResizeObserverController.
|
74953 |
-
*
|
74954 |
-
* @private
|
74955 |
-
*/
|
74956 |
-
function ResizeObserverController() {
|
74957 |
-
/**
|
74958 |
-
* Indicates whether DOM listeners have been added.
|
74959 |
-
*
|
74960 |
-
* @private {boolean}
|
74961 |
-
*/
|
74962 |
-
this.connected_ = false;
|
74963 |
-
/**
|
74964 |
-
* Tells that controller has subscribed for Mutation Events.
|
74965 |
-
*
|
74966 |
-
* @private {boolean}
|
74967 |
-
*/
|
74968 |
-
this.mutationEventsAdded_ = false;
|
74969 |
-
/**
|
74970 |
-
* Keeps reference to the instance of MutationObserver.
|
74971 |
-
*
|
74972 |
-
* @private {MutationObserver}
|
74973 |
-
*/
|
74974 |
-
this.mutationsObserver_ = null;
|
74975 |
-
/**
|
74976 |
-
* A list of connected observers.
|
74977 |
-
*
|
74978 |
-
* @private {Array<ResizeObserverSPI>}
|
74979 |
-
*/
|
74980 |
-
this.observers_ = [];
|
74981 |
-
this.onTransitionEnd_ = this.onTransitionEnd_.bind(this);
|
74982 |
-
this.refresh = throttle(this.refresh.bind(this), REFRESH_DELAY);
|
74983 |
-
}
|
74984 |
-
/**
|
74985 |
-
* Adds observer to observers list.
|
74986 |
-
*
|
74987 |
-
* @param {ResizeObserverSPI} observer - Observer to be added.
|
74988 |
-
* @returns {void}
|
74989 |
-
*/
|
74990 |
-
ResizeObserverController.prototype.addObserver = function (observer) {
|
74991 |
-
if (!~this.observers_.indexOf(observer)) {
|
74992 |
-
this.observers_.push(observer);
|
74993 |
-
}
|
74994 |
-
// Add listeners if they haven't been added yet.
|
74995 |
-
if (!this.connected_) {
|
74996 |
-
this.connect_();
|
74997 |
-
}
|
74998 |
-
};
|
74999 |
-
/**
|
75000 |
-
* Removes observer from observers list.
|
75001 |
-
*
|
75002 |
-
* @param {ResizeObserverSPI} observer - Observer to be removed.
|
75003 |
-
* @returns {void}
|
75004 |
-
*/
|
75005 |
-
ResizeObserverController.prototype.removeObserver = function (observer) {
|
75006 |
-
var observers = this.observers_;
|
75007 |
-
var index = observers.indexOf(observer);
|
75008 |
-
// Remove observer if it's present in registry.
|
75009 |
-
if (~index) {
|
75010 |
-
observers.splice(index, 1);
|
75011 |
-
}
|
75012 |
-
// Remove listeners if controller has no connected observers.
|
75013 |
-
if (!observers.length && this.connected_) {
|
75014 |
-
this.disconnect_();
|
75015 |
-
}
|
75016 |
-
};
|
75017 |
-
/**
|
75018 |
-
* Invokes the update of observers. It will continue running updates insofar
|
75019 |
-
* it detects changes.
|
75020 |
-
*
|
75021 |
-
* @returns {void}
|
75022 |
-
*/
|
75023 |
-
ResizeObserverController.prototype.refresh = function () {
|
75024 |
-
var changesDetected = this.updateObservers_();
|
75025 |
-
// Continue running updates if changes have been detected as there might
|
75026 |
-
// be future ones caused by CSS transitions.
|
75027 |
-
if (changesDetected) {
|
75028 |
-
this.refresh();
|
75029 |
-
}
|
75030 |
-
};
|
75031 |
-
/**
|
75032 |
-
* Updates every observer from observers list and notifies them of queued
|
75033 |
-
* entries.
|
75034 |
-
*
|
75035 |
-
* @private
|
75036 |
-
* @returns {boolean} Returns "true" if any observer has detected changes in
|
75037 |
-
* dimensions of it's elements.
|
75038 |
-
*/
|
75039 |
-
ResizeObserverController.prototype.updateObservers_ = function () {
|
75040 |
-
// Collect observers that have active observations.
|
75041 |
-
var activeObservers = this.observers_.filter(function (observer) {
|
75042 |
-
return observer.gatherActive(), observer.hasActive();
|
75043 |
-
});
|
75044 |
-
// Deliver notifications in a separate cycle in order to avoid any
|
75045 |
-
// collisions between observers, e.g. when multiple instances of
|
75046 |
-
// ResizeObserver are tracking the same element and the callback of one
|
75047 |
-
// of them changes content dimensions of the observed target. Sometimes
|
75048 |
-
// this may result in notifications being blocked for the rest of observers.
|
75049 |
-
activeObservers.forEach(function (observer) { return observer.broadcastActive(); });
|
75050 |
-
return activeObservers.length > 0;
|
75051 |
-
};
|
75052 |
-
/**
|
75053 |
-
* Initializes DOM listeners.
|
75054 |
-
*
|
75055 |
-
* @private
|
75056 |
-
* @returns {void}
|
75057 |
-
*/
|
75058 |
-
ResizeObserverController.prototype.connect_ = function () {
|
75059 |
-
// Do nothing if running in a non-browser environment or if listeners
|
75060 |
-
// have been already added.
|
75061 |
-
if (!isBrowser || this.connected_) {
|
75062 |
-
return;
|
75063 |
-
}
|
75064 |
-
// Subscription to the "Transitionend" event is used as a workaround for
|
75065 |
-
// delayed transitions. This way it's possible to capture at least the
|
75066 |
-
// final state of an element.
|
75067 |
-
document.addEventListener('transitionend', this.onTransitionEnd_);
|
75068 |
-
window.addEventListener('resize', this.refresh);
|
75069 |
-
if (mutationObserverSupported) {
|
75070 |
-
this.mutationsObserver_ = new MutationObserver(this.refresh);
|
75071 |
-
this.mutationsObserver_.observe(document, {
|
75072 |
-
attributes: true,
|
75073 |
-
childList: true,
|
75074 |
-
characterData: true,
|
75075 |
-
subtree: true
|
75076 |
-
});
|
75077 |
-
}
|
75078 |
-
else {
|
75079 |
-
document.addEventListener('DOMSubtreeModified', this.refresh);
|
75080 |
-
this.mutationEventsAdded_ = true;
|
75081 |
-
}
|
75082 |
-
this.connected_ = true;
|
75083 |
-
};
|
75084 |
-
/**
|
75085 |
-
* Removes DOM listeners.
|
75086 |
-
*
|
75087 |
-
* @private
|
75088 |
-
* @returns {void}
|
75089 |
-
*/
|
75090 |
-
ResizeObserverController.prototype.disconnect_ = function () {
|
75091 |
-
// Do nothing if running in a non-browser environment or if listeners
|
75092 |
-
// have been already removed.
|
75093 |
-
if (!isBrowser || !this.connected_) {
|
75094 |
-
return;
|
75095 |
-
}
|
75096 |
-
document.removeEventListener('transitionend', this.onTransitionEnd_);
|
75097 |
-
window.removeEventListener('resize', this.refresh);
|
75098 |
-
if (this.mutationsObserver_) {
|
75099 |
-
this.mutationsObserver_.disconnect();
|
75100 |
-
}
|
75101 |
-
if (this.mutationEventsAdded_) {
|
75102 |
-
document.removeEventListener('DOMSubtreeModified', this.refresh);
|
75103 |
-
}
|
75104 |
-
this.mutationsObserver_ = null;
|
75105 |
-
this.mutationEventsAdded_ = false;
|
75106 |
-
this.connected_ = false;
|
75107 |
-
};
|
75108 |
-
/**
|
75109 |
-
* "Transitionend" event handler.
|
75110 |
-
*
|
75111 |
-
* @private
|
75112 |
-
* @param {TransitionEvent} event
|
75113 |
-
* @returns {void}
|
75114 |
-
*/
|
75115 |
-
ResizeObserverController.prototype.onTransitionEnd_ = function (_a) {
|
75116 |
-
var _b = _a.propertyName, propertyName = _b === void 0 ? '' : _b;
|
75117 |
-
// Detect whether transition may affect dimensions of an element.
|
75118 |
-
var isReflowProperty = transitionKeys.some(function (key) {
|
75119 |
-
return !!~propertyName.indexOf(key);
|
75120 |
-
});
|
75121 |
-
if (isReflowProperty) {
|
75122 |
-
this.refresh();
|
75123 |
-
}
|
75124 |
-
};
|
75125 |
-
/**
|
75126 |
-
* Returns instance of the ResizeObserverController.
|
75127 |
-
*
|
75128 |
-
* @returns {ResizeObserverController}
|
75129 |
-
*/
|
75130 |
-
ResizeObserverController.getInstance = function () {
|
75131 |
-
if (!this.instance_) {
|
75132 |
-
this.instance_ = new ResizeObserverController();
|
75133 |
-
}
|
75134 |
-
return this.instance_;
|
75135 |
-
};
|
75136 |
-
/**
|
75137 |
-
* Holds reference to the controller's instance.
|
75138 |
-
*
|
75139 |
-
* @private {ResizeObserverController}
|
75140 |
-
*/
|
75141 |
-
ResizeObserverController.instance_ = null;
|
75142 |
-
return ResizeObserverController;
|
75143 |
}());
|
75144 |
|
75145 |
-
/**
|
75146 |
-
* Defines non-writable/enumerable properties of the provided target object.
|
75147 |
-
*
|
75148 |
-
* @param {Object} target - Object for which to define properties.
|
75149 |
-
* @param {Object} props - Properties to be defined.
|
75150 |
-
* @returns {Object} Target object.
|
75151 |
-
*/
|
75152 |
-
var defineConfigurable = (function (target, props) {
|
75153 |
-
for (var _i = 0, _a = Object.keys(props); _i < _a.length; _i++) {
|
75154 |
-
var key = _a[_i];
|
75155 |
-
Object.defineProperty(target, key, {
|
75156 |
-
value: props[key],
|
75157 |
-
enumerable: false,
|
75158 |
-
writable: false,
|
75159 |
-
configurable: true
|
75160 |
-
});
|
75161 |
-
}
|
75162 |
-
return target;
|
75163 |
});
|
75164 |
|
75165 |
-
/**
|
75166 |
-
* Returns the global object associated with provided element.
|
75167 |
-
*
|
75168 |
-
* @param {Object} target
|
75169 |
-
* @returns {Object}
|
75170 |
-
*/
|
75171 |
-
var getWindowOf = (function (target) {
|
75172 |
-
// Assume that the element is an instance of Node, which means that it
|
75173 |
-
// has the "ownerDocument" property from which we can retrieve a
|
75174 |
-
// corresponding global object.
|
75175 |
-
var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView;
|
75176 |
-
// Return the local global object if it's not possible extract one from
|
75177 |
-
// provided element.
|
75178 |
-
return ownerGlobal || global$1;
|
75179 |
});
|
75180 |
|
75181 |
-
// Placeholder of an empty content rectangle.
|
75182 |
-
var emptyRect = createRectInit(0, 0, 0, 0);
|
75183 |
-
/**
|
75184 |
-
* Converts provided string to a number.
|
75185 |
-
*
|
75186 |
-
* @param {number|string} value
|
75187 |
-
* @returns {number}
|
75188 |
-
*/
|
75189 |
-
function toFloat(value) {
|
75190 |
-
return parseFloat(value) || 0;
|
75191 |
-
}
|
75192 |
-
/**
|
75193 |
-
* Extracts borders size from provided styles.
|
75194 |
-
*
|
75195 |
-
* @param {CSSStyleDeclaration} styles
|
75196 |
-
* @param {...string} positions - Borders positions (top, right, ...)
|
75197 |
-
* @returns {number}
|
75198 |
-
*/
|
75199 |
-
function getBordersSize(styles) {
|
75200 |
-
var positions = [];
|
75201 |
-
for (var _i = 1; _i < arguments.length; _i++) {
|
75202 |
-
positions[_i - 1] = arguments[_i];
|
75203 |
-
}
|
75204 |
-
return positions.reduce(function (size, position) {
|
75205 |
-
var value = styles['border-' + position + '-width'];
|
75206 |
-
return size + toFloat(value);
|
75207 |
-
}, 0);
|
75208 |
-
}
|
75209 |
-
/**
|
75210 |
-
* Extracts paddings sizes from provided styles.
|
75211 |
-
*
|
75212 |
-
* @param {CSSStyleDeclaration} styles
|
75213 |
-
* @returns {Object} Paddings box.
|
75214 |
-
*/
|
75215 |
-
function getPaddings(styles) {
|
75216 |
-
var positions = ['top', 'right', 'bottom', 'left'];
|
75217 |
-
var paddings = {};
|
75218 |
-
for (var _i = 0, positions_1 = positions; _i < positions_1.length; _i++) {
|
75219 |
-
var position = positions_1[_i];
|
75220 |
-
var value = styles['padding-' + position];
|
75221 |
-
paddings[position] = toFloat(value);
|
75222 |
-
}
|
75223 |
-
return paddings;
|
75224 |
-
}
|
75225 |
-
/**
|
75226 |
-
* Calculates content rectangle of provided SVG element.
|
75227 |
-
*
|
75228 |
-
* @param {SVGGraphicsElement} target - Element content rectangle of which needs
|
75229 |
-
* to be calculated.
|
75230 |
-
* @returns {DOMRectInit}
|
75231 |
-
*/
|
75232 |
-
function getSVGContentRect(target) {
|
75233 |
-
var bbox = target.getBBox();
|
75234 |
-
return createRectInit(0, 0, bbox.width, bbox.height);
|
75235 |
-
}
|
75236 |
-
/**
|
75237 |
-
* Calculates content rectangle of provided HTMLElement.
|
75238 |
-
*
|
75239 |
-
* @param {HTMLElement} target - Element for which to calculate the content rectangle.
|
75240 |
-
* @returns {DOMRectInit}
|
75241 |
-
*/
|
75242 |
-
function getHTMLElementContentRect(target) {
|
75243 |
-
// Client width & height properties can't be
|
75244 |
-
// used exclusively as they provide rounded values.
|
75245 |
-
var clientWidth = target.clientWidth, clientHeight = target.clientHeight;
|
75246 |
-
// By this condition we can catch all non-replaced inline, hidden and
|
75247 |
-
// detached elements. Though elements with width & height properties less
|
75248 |
-
// than 0.5 will be discarded as well.
|
75249 |
-
//
|
75250 |
-
// Without it we would need to implement separate methods for each of
|
75251 |
-
// those cases and it's not possible to perform a precise and performance
|
75252 |
-
// effective test for hidden elements. E.g. even jQuery's ':visible' filter
|
75253 |
-
// gives wrong results for elements with width & height less than 0.5.
|
75254 |
-
if (!clientWidth && !clientHeight) {
|
75255 |
-
return emptyRect;
|
75256 |
-
}
|
75257 |
-
var styles = getWindowOf(target).getComputedStyle(target);
|
75258 |
-
var paddings = getPaddings(styles);
|
75259 |
-
var horizPad = paddings.left + paddings.right;
|
75260 |
-
var vertPad = paddings.top + paddings.bottom;
|
75261 |
-
// Computed styles of width & height are being used because they are the
|
75262 |
-
// only dimensions available to JS that contain non-rounded values. It could
|
75263 |
-
// be possible to utilize the getBoundingClientRect if only it's data wasn't
|
75264 |
-
// affected by CSS transformations let alone paddings, borders and scroll bars.
|
75265 |
-
var width = toFloat(styles.width), height = toFloat(styles.height);
|
75266 |
-
// Width & height include paddings and borders when the 'border-box' box
|
75267 |
-
// model is applied (except for IE).
|
75268 |
-
if (styles.boxSizing === 'border-box') {
|
75269 |
-
// Following conditions are required to handle Internet Explorer which
|
75270 |
-
// doesn't include paddings and borders to computed CSS dimensions.
|
75271 |
-
//
|
75272 |
-
// We can say that if CSS dimensions + paddings are equal to the "client"
|
75273 |
-
// properties then it's either IE, and thus we don't need to subtract
|
75274 |
-
// anything, or an element merely doesn't have paddings/borders styles.
|
75275 |
-
if (Math.round(width + horizPad) !== clientWidth) {
|
75276 |
-
width -= getBordersSize(styles, 'left', 'right') + horizPad;
|
75277 |
-
}
|
75278 |
-
if (Math.round(height + vertPad) !== clientHeight) {
|
75279 |
-
height -= getBordersSize(styles, 'top', 'bottom') + vertPad;
|
75280 |
-
}
|
75281 |
-
}
|
75282 |
-
// Following steps can't be applied to the document's root element as its
|
75283 |
-
// client[Width/Height] properties represent viewport area of the window.
|
75284 |
-
// Besides, it's as well not necessary as the <html> itself neither has
|
75285 |
-
// rendered scroll bars nor it can be clipped.
|
75286 |
-
if (!isDocumentElement(target)) {
|
75287 |
-
// In some browsers (only in Firefox, actually) CSS width & height
|
75288 |
-
// include scroll bars size which can be removed at this step as scroll
|
75289 |
-
// bars are the only difference between rounded dimensions + paddings
|
75290 |
-
// and "client" properties, though that is not always true in Chrome.
|
75291 |
-
var vertScrollbar = Math.round(width + horizPad) - clientWidth;
|
75292 |
-
var horizScrollbar = Math.round(height + vertPad) - clientHeight;
|
75293 |
-
// Chrome has a rather weird rounding of "client" properties.
|
75294 |
-
// E.g. for an element with content width of 314.2px it sometimes gives
|
75295 |
-
// the client width of 315px and for the width of 314.7px it may give
|
75296 |
-
// 314px. And it doesn't happen all the time. So just ignore this delta
|
75297 |
-
// as a non-relevant.
|
75298 |
-
if (Math.abs(vertScrollbar) !== 1) {
|
75299 |
-
width -= vertScrollbar;
|
75300 |
-
}
|
75301 |
-
if (Math.abs(horizScrollbar) !== 1) {
|
75302 |
-
height -= horizScrollbar;
|
75303 |
-
}
|
75304 |
-
}
|
75305 |
-
return createRectInit(paddings.left, paddings.top, width, height);
|
75306 |
-
}
|
75307 |
-
/**
|
75308 |
-
* Checks whether provided element is an instance of the SVGGraphicsElement.
|
75309 |
-
*
|
75310 |
-
* @param {Element} target - Element to be checked.
|
75311 |
-
* @returns {boolean}
|
75312 |
-
*/
|
75313 |
-
var isSVGGraphicsElement = (function () {
|
75314 |
-
// Some browsers, namely IE and Edge, don't have the SVGGraphicsElement
|
75315 |
-
// interface.
|
75316 |
-
if (typeof SVGGraphicsElement !== 'undefined') {
|
75317 |
-
return function (target) { return target instanceof getWindowOf(target).SVGGraphicsElement; };
|
75318 |
-
}
|
75319 |
-
// If it's so, then check that element is at least an instance of the
|
75320 |
-
// SVGElement and that it has the "getBBox" method.
|
75321 |
-
// eslint-disable-next-line no-extra-parens
|
75322 |
-
return function (target) { return (target instanceof getWindowOf(target).SVGElement &&
|
75323 |
-
typeof target.getBBox === 'function'); };
|
75324 |
-
})();
|
75325 |
-
/**
|
75326 |
-
* Checks whether provided element is a document element (<html>).
|
75327 |
-
*
|
75328 |
-
* @param {Element} target - Element to be checked.
|
75329 |
-
* @returns {boolean}
|
75330 |
-
*/
|
75331 |
-
function isDocumentElement(target) {
|
75332 |
-
return target === getWindowOf(target).document.documentElement;
|
75333 |
-
}
|
75334 |
-
/**
|
75335 |
-
* Calculates an appropriate content rectangle for provided html or svg element.
|
75336 |
-
*
|
75337 |
-
* @param {Element} target - Element content rectangle of which needs to be calculated.
|
75338 |
-
* @returns {DOMRectInit}
|
75339 |
-
*/
|
75340 |
-
function getContentRect(target) {
|
75341 |
-
if (!isBrowser) {
|
75342 |
-
return emptyRect;
|
75343 |
-
}
|
75344 |
-
if (isSVGGraphicsElement(target)) {
|
75345 |
-
return getSVGContentRect(target);
|
75346 |
-
}
|
75347 |
-
return getHTMLElementContentRect(target);
|
75348 |
-
}
|
75349 |
-
/**
|
75350 |
-
* Creates rectangle with an interface of the DOMRectReadOnly.
|
75351 |
-
* Spec: https://drafts.fxtf.org/geometry/#domrectreadonly
|
75352 |
-
*
|
75353 |
-
* @param {DOMRectInit} rectInit - Object with rectangle's x/y coordinates and dimensions.
|
75354 |
-
* @returns {DOMRectReadOnly}
|
75355 |
-
*/
|
75356 |
-
function createReadOnlyRect(_a) {
|
75357 |
-
var x = _a.x, y = _a.y, width = _a.width, height = _a.height;
|
75358 |
-
// If DOMRectReadOnly is available use it as a prototype for the rectangle.
|
75359 |
-
var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object;
|
75360 |
-
var rect = Object.create(Constr.prototype);
|
75361 |
-
// Rectangle's properties are not writable and non-enumerable.
|
75362 |
-
defineConfigurable(rect, {
|
75363 |
-
x: x, y: y, width: width, height: height,
|
75364 |
-
top: y,
|
75365 |
-
right: x + width,
|
75366 |
-
bottom: height + y,
|
75367 |
-
left: x
|
75368 |
-
});
|
75369 |
-
return rect;
|
75370 |
-
}
|
75371 |
-
/**
|
75372 |
-
* Creates DOMRectInit object based on the provided dimensions and the x/y coordinates.
|
75373 |
-
* Spec: https://drafts.fxtf.org/geometry/#dictdef-domrectinit
|
75374 |
-
*
|
75375 |
-
* @param {number} x - X coordinate.
|
75376 |
-
* @param {number} y - Y coordinate.
|
75377 |
-
* @param {number} width - Rectangle's width.
|
75378 |
-
* @param {number} height - Rectangle's height.
|
75379 |
-
* @returns {DOMRectInit}
|
75380 |
-
*/
|
75381 |
-
function createRectInit(x, y, width, height) {
|
75382 |
-
return { x: x, y: y, width: width, height: height };
|
75383 |
-
}
|
75384 |
-
|
75385 |
-
/**
|
75386 |
-
* Class that is responsible for computations of the content rectangle of
|
75387 |
-
* provided DOM element and for keeping track of it's changes.
|
75388 |
-
*/
|
75389 |
-
var ResizeObservation = /** @class */ (function () {
|
75390 |
-
/**
|
75391 |
-
* Creates an instance of ResizeObservation.
|
75392 |
-
*
|
75393 |
-
* @param {Element} target - Element to be observed.
|
75394 |
-
*/
|
75395 |
-
function ResizeObservation(target) {
|
75396 |
-
/**
|
75397 |
-
* Broadcasted width of content rectangle.
|
75398 |
-
*
|
75399 |
-
* @type {number}
|
75400 |
-
*/
|
75401 |
-
this.broadcastWidth = 0;
|
75402 |
-
/**
|
75403 |
-
* Broadcasted height of content rectangle.
|
75404 |
-
*
|
75405 |
-
* @type {number}
|
75406 |
-
*/
|
75407 |
-
this.broadcastHeight = 0;
|
75408 |
-
/**
|
75409 |
-
* Reference to the last observed content rectangle.
|
75410 |
-
*
|
75411 |
-
* @private {DOMRectInit}
|
75412 |
-
*/
|
75413 |
-
this.contentRect_ = createRectInit(0, 0, 0, 0);
|
75414 |
-
this.target = target;
|
75415 |
-
}
|
75416 |
-
/**
|
75417 |
-
* Updates content rectangle and tells whether it's width or height properties
|
75418 |
-
* have changed since the last broadcast.
|
75419 |
-
*
|
75420 |
-
* @returns {boolean}
|
75421 |
-
*/
|
75422 |
-
ResizeObservation.prototype.isActive = function () {
|
75423 |
-
var rect = getContentRect(this.target);
|
75424 |
-
this.contentRect_ = rect;
|
75425 |
-
return (rect.width !== this.broadcastWidth ||
|
75426 |
-
rect.height !== this.broadcastHeight);
|
75427 |
-
};
|
75428 |
-
/**
|
75429 |
-
* Updates 'broadcastWidth' and 'broadcastHeight' properties with a data
|
75430 |
-
* from the corresponding properties of the last observed content rectangle.
|
75431 |
-
*
|
75432 |
-
* @returns {DOMRectInit} Last observed content rectangle.
|
75433 |
-
*/
|
75434 |
-
ResizeObservation.prototype.broadcastRect = function () {
|
75435 |
-
var rect = this.contentRect_;
|
75436 |
-
this.broadcastWidth = rect.width;
|
75437 |
-
this.broadcastHeight = rect.height;
|
75438 |
-
return rect;
|
75439 |
-
};
|
75440 |
-
return ResizeObservation;
|
75441 |
}());
|
75442 |
|
75443 |
-
var ResizeObserverEntry = /** @class */ (function () {
|
75444 |
-
/**
|
75445 |
-
* Creates an instance of ResizeObserverEntry.
|
75446 |
-
*
|
75447 |
-
* @param {Element} target - Element that is being observed.
|
75448 |
-
* @param {DOMRectInit} rectInit - Data of the element's content rectangle.
|
75449 |
-
*/
|
75450 |
-
function ResizeObserverEntry(target, rectInit) {
|
75451 |
-
var contentRect = createReadOnlyRect(rectInit);
|
75452 |
-
// According to the specification following properties are not writable
|
75453 |
-
// and are also not enumerable in the native implementation.
|
75454 |
-
//
|
75455 |
-
// Property accessors are not being used as they'd require to define a
|
75456 |
-
// private WeakMap storage which may cause memory leaks in browsers that
|
75457 |
-
// don't support this type of collections.
|
75458 |
-
defineConfigurable(this, { target: target, contentRect: contentRect });
|
75459 |
-
}
|
75460 |
-
return ResizeObserverEntry;
|
75461 |
}());
|
75462 |
|
75463 |
-
var ResizeObserverSPI = /** @class */ (function () {
|
75464 |
-
/**
|
75465 |
-
* Creates a new instance of ResizeObserver.
|
75466 |
-
*
|
75467 |
-
* @param {ResizeObserverCallback} callback - Callback function that is invoked
|
75468 |
-
* when one of the observed elements changes it's content dimensions.
|
75469 |
-
* @param {ResizeObserverController} controller - Controller instance which
|
75470 |
-
* is responsible for the updates of observer.
|
75471 |
-
* @param {ResizeObserver} callbackCtx - Reference to the public
|
75472 |
-
* ResizeObserver instance which will be passed to callback function.
|
75473 |
-
*/
|
75474 |
-
function ResizeObserverSPI(callback, controller, callbackCtx) {
|
75475 |
-
/**
|
75476 |
-
* Collection of resize observations that have detected changes in dimensions
|
75477 |
-
* of elements.
|
75478 |
-
*
|
75479 |
-
* @private {Array<ResizeObservation>}
|
75480 |
-
*/
|
75481 |
-
this.activeObservations_ = [];
|
75482 |
-
/**
|
75483 |
-
* Registry of the ResizeObservation instances.
|
75484 |
-
*
|
75485 |
-
* @private {Map<Element, ResizeObservation>}
|
75486 |
-
*/
|
75487 |
-
this.observations_ = new MapShim();
|
75488 |
-
if (typeof callback !== 'function') {
|
75489 |
-
throw new TypeError('The callback provided as parameter 1 is not a function.');
|
75490 |
-
}
|
75491 |
-
this.callback_ = callback;
|
75492 |
-
this.controller_ = controller;
|
75493 |
-
this.callbackCtx_ = callbackCtx;
|
75494 |
-
}
|
75495 |
-
/**
|
75496 |
-
* Starts observing provided element.
|
75497 |
-
*
|
75498 |
-
* @param {Element} target - Element to be observed.
|
75499 |
-
* @returns {void}
|
75500 |
-
*/
|
75501 |
-
ResizeObserverSPI.prototype.observe = function (target) {
|
75502 |
-
if (!arguments.length) {
|
75503 |
-
throw new TypeError('1 argument required, but only 0 present.');
|
75504 |
-
}
|
75505 |
-
// Do nothing if current environment doesn't have the Element interface.
|
75506 |
-
if (typeof Element === 'undefined' || !(Element instanceof Object)) {
|
75507 |
-
return;
|
75508 |
-
}
|
75509 |
-
if (!(target instanceof getWindowOf(target).Element)) {
|
75510 |
-
throw new TypeError('parameter 1 is not of type "Element".');
|
75511 |
-
}
|
75512 |
-
var observations = this.observations_;
|
75513 |
-
// Do nothing if element is already being observed.
|
75514 |
-
if (observations.has(target)) {
|
75515 |
-
return;
|
75516 |
-
}
|
75517 |
-
observations.set(target, new ResizeObservation(target));
|
75518 |
-
this.controller_.addObserver(this);
|
75519 |
-
// Force the update of observations.
|
75520 |
-
this.controller_.refresh();
|
75521 |
-
};
|
75522 |
-
/**
|
75523 |
-
* Stops observing provided element.
|
75524 |
-
*
|
75525 |
-
* @param {Element} target - Element to stop observing.
|
75526 |
-
* @returns {void}
|
75527 |
-
*/
|
75528 |
-
ResizeObserverSPI.prototype.unobserve = function (target) {
|
75529 |
-
if (!arguments.length) {
|
75530 |
-
throw new TypeError('1 argument required, but only 0 present.');
|
75531 |
-
}
|
75532 |
-
// Do nothing if current environment doesn't have the Element interface.
|
75533 |
-
if (typeof Element === 'undefined' || !(Element instanceof Object)) {
|
75534 |
-
return;
|
75535 |
-
}
|
75536 |
-
if (!(target instanceof getWindowOf(target).Element)) {
|
75537 |
-
throw new TypeError('parameter 1 is not of type "Element".');
|
75538 |
-
}
|
75539 |
-
var observations = this.observations_;
|
75540 |
-
// Do nothing if element is not being observed.
|
75541 |
-
if (!observations.has(target)) {
|
75542 |
-
return;
|
75543 |
-
}
|
75544 |
-
observations.delete(target);
|
75545 |
-
if (!observations.size) {
|
75546 |
-
this.controller_.removeObserver(this);
|
75547 |
-
}
|
75548 |
-
};
|
75549 |
-
/**
|
75550 |
-
* Stops observing all elements.
|
75551 |
-
*
|
75552 |
-
* @returns {void}
|
75553 |
-
*/
|
75554 |
-
ResizeObserverSPI.prototype.disconnect = function () {
|
75555 |
-
this.clearActive();
|
75556 |
-
this.observations_.clear();
|
75557 |
-
this.controller_.removeObserver(this);
|
75558 |
-
};
|
75559 |
-
/**
|
75560 |
-
* Collects observation instances the associated element of which has changed
|
75561 |
-
* it's content rectangle.
|
75562 |
-
*
|
75563 |
-
* @returns {void}
|
75564 |
-
*/
|
75565 |
-
ResizeObserverSPI.prototype.gatherActive = function () {
|
75566 |
-
var _this = this;
|
75567 |
-
this.clearActive();
|
75568 |
-
this.observations_.forEach(function (observation) {
|
75569 |
-
if (observation.isActive()) {
|
75570 |
-
_this.activeObservations_.push(observation);
|
75571 |
-
}
|
75572 |
-
});
|
75573 |
-
};
|
75574 |
-
/**
|
75575 |
-
* Invokes initial callback function with a list of ResizeObserverEntry
|
75576 |
-
* instances collected from active resize observations.
|
75577 |
-
*
|
75578 |
-
* @returns {void}
|
75579 |
-
*/
|
75580 |
-
ResizeObserverSPI.prototype.broadcastActive = function () {
|
75581 |
-
// Do nothing if observer doesn't have active observations.
|
75582 |
-
if (!this.hasActive()) {
|
75583 |
-
return;
|
75584 |
-
}
|
75585 |
-
var ctx = this.callbackCtx_;
|
75586 |
-
// Create ResizeObserverEntry instance for every active observation.
|
75587 |
-
var entries = this.activeObservations_.map(function (observation) {
|
75588 |
-
return new ResizeObserverEntry(observation.target, observation.broadcastRect());
|
75589 |
-
});
|
75590 |
-
this.callback_.call(ctx, entries, ctx);
|
75591 |
-
this.clearActive();
|
75592 |
-
};
|
75593 |
-
/**
|
75594 |
-
* Clears the collection of active observations.
|
75595 |
-
*
|
75596 |
-
* @returns {void}
|
75597 |
-
*/
|
75598 |
-
ResizeObserverSPI.prototype.clearActive = function () {
|
75599 |
-
this.activeObservations_.splice(0);
|
75600 |
-
};
|
75601 |
-
/**
|
75602 |
-
* Tells whether observer has active observations.
|
75603 |
-
*
|
75604 |
-
* @returns {boolean}
|
75605 |
-
*/
|
75606 |
-
ResizeObserverSPI.prototype.hasActive = function () {
|
75607 |
-
return this.activeObservations_.length > 0;
|
75608 |
-
};
|
75609 |
-
return ResizeObserverSPI;
|
75610 |
}());
|
75611 |
|
75612 |
-
// Registry of internal observers. If WeakMap is not available use current shim
|
75613 |
-
// for the Map collection as it has all required methods and because WeakMap
|
75614 |
-
// can't be fully polyfilled anyway.
|
75615 |
-
var observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim();
|
75616 |
-
/**
|
75617 |
-
* ResizeObserver API. Encapsulates the ResizeObserver SPI implementation
|
75618 |
-
* exposing only those methods and properties that are defined in the spec.
|
75619 |
-
*/
|
75620 |
-
var ResizeObserver = /** @class */ (function () {
|
75621 |
-
/**
|
75622 |
-
* Creates a new instance of ResizeObserver.
|
75623 |
-
*
|
75624 |
-
* @param {ResizeObserverCallback} callback - Callback that is invoked when
|
75625 |
-
* dimensions of the observed elements change.
|
75626 |
-
*/
|
75627 |
-
function ResizeObserver(callback) {
|
75628 |
-
if (!(this instanceof ResizeObserver)) {
|
75629 |
-
throw new TypeError('Cannot call a class as a function.');
|
75630 |
-
}
|
75631 |
-
if (!arguments.length) {
|
75632 |
-
throw new TypeError('1 argument required, but only 0 present.');
|
75633 |
-
}
|
75634 |
-
var controller = ResizeObserverController.getInstance();
|
75635 |
-
var observer = new ResizeObserverSPI(callback, controller, this);
|
75636 |
-
observers.set(this, observer);
|
75637 |
-
}
|
75638 |
-
return ResizeObserver;
|
75639 |
-
}());
|
75640 |
-
// Expose public methods of ResizeObserver.
|
75641 |
-
[
|
75642 |
-
'observe',
|
75643 |
-
'unobserve',
|
75644 |
-
'disconnect'
|
75645 |
-
].forEach(function (method) {
|
75646 |
-
ResizeObserver.prototype[method] = function () {
|
75647 |
-
var _a;
|
75648 |
-
return (_a = observers.get(this))[method].apply(_a, arguments);
|
75649 |
-
};
|
75650 |
});
|
75651 |
|
75652 |
-
var index = (function () {
|
75653 |
-
// Export existing implementation if available.
|
75654 |
-
if (typeof global$1.ResizeObserver !== 'undefined') {
|
75655 |
-
return global$1.ResizeObserver;
|
75656 |
-
}
|
75657 |
-
return ResizeObserver;
|
75658 |
})();
|
75659 |
|
75660 |
/* harmony default export */ __webpack_exports__["default"] = (index);
|
@@ -75662,7 +76568,7 @@ var index = (function () {
|
|
75662 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../webpack/buildin/global.js */ 52)))
|
75663 |
|
75664 |
/***/ }),
|
75665 |
-
/*
|
75666 |
/*!***************************************!*\
|
75667 |
!*** ./node_modules/json2mq/index.js ***!
|
75668 |
\***************************************/
|
@@ -75670,7 +76576,7 @@ var index = (function () {
|
|
75670 |
/*! all exports used */
|
75671 |
/***/ (function(module, exports, __webpack_require__) {
|
75672 |
|
75673 |
-
var camel2hyphen = __webpack_require__(/*! string-convert/camel2hyphen */
|
75674 |
|
75675 |
var isDimension = function (feature) {
|
75676 |
var re = /[height|width]$/;
|
@@ -75723,7 +76629,7 @@ var json2mq = function (query) {
|
|
75723 |
module.exports = json2mq;
|
75724 |
|
75725 |
/***/ }),
|
75726 |
-
/*
|
75727 |
/*!*****************************************************!*\
|
75728 |
!*** ./node_modules/string-convert/camel2hyphen.js ***!
|
75729 |
\*****************************************************/
|
@@ -75742,7 +76648,7 @@ var camel2hyphen = function (str) {
|
|
75742 |
module.exports = camel2hyphen;
|
75743 |
|
75744 |
/***/ }),
|
75745 |
-
/*
|
75746 |
/*!*******************************************************!*\
|
75747 |
!*** ./node_modules/react-slick/lib/default-props.js ***!
|
75748 |
\*******************************************************/
|
@@ -75829,7 +76735,7 @@ var defaultProps = {
|
|
75829 |
exports.default = defaultProps;
|
75830 |
|
75831 |
/***/ }),
|
75832 |
-
/*
|
75833 |
/*!**********************************************!*\
|
75834 |
!*** ./node_modules/enquire.js/src/index.js ***!
|
75835 |
\**********************************************/
|
@@ -75837,12 +76743,12 @@ exports.default = defaultProps;
|
|
75837 |
/*! all exports used */
|
75838 |
/***/ (function(module, exports, __webpack_require__) {
|
75839 |
|
75840 |
-
var MediaQueryDispatch = __webpack_require__(/*! ./MediaQueryDispatch */
|
75841 |
module.exports = new MediaQueryDispatch();
|
75842 |
|
75843 |
|
75844 |
/***/ }),
|
75845 |
-
/*
|
75846 |
/*!***********************************************************!*\
|
75847 |
!*** ./node_modules/enquire.js/src/MediaQueryDispatch.js ***!
|
75848 |
\***********************************************************/
|
@@ -75850,8 +76756,8 @@ module.exports = new MediaQueryDispatch();
|
|
75850 |
/*! all exports used */
|
75851 |
/***/ (function(module, exports, __webpack_require__) {
|
75852 |
|
75853 |
-
var MediaQuery = __webpack_require__(/*! ./MediaQuery */
|
75854 |
-
var Util = __webpack_require__(/*! ./Util */
|
75855 |
var each = Util.each;
|
75856 |
var isFunction = Util.isFunction;
|
75857 |
var isArray = Util.isArray;
|
@@ -75938,7 +76844,7 @@ module.exports = MediaQueryDispatch;
|
|
75938 |
|
75939 |
|
75940 |
/***/ }),
|
75941 |
-
/*
|
75942 |
/*!***************************************************!*\
|
75943 |
!*** ./node_modules/enquire.js/src/MediaQuery.js ***!
|
75944 |
\***************************************************/
|
@@ -75946,8 +76852,8 @@ module.exports = MediaQueryDispatch;
|
|
75946 |
/*! all exports used */
|
75947 |
/***/ (function(module, exports, __webpack_require__) {
|
75948 |
|
75949 |
-
var QueryHandler = __webpack_require__(/*! ./QueryHandler */
|
75950 |
-
var each = __webpack_require__(/*! ./Util */
|
75951 |
|
75952 |
/**
|
75953 |
* Represents a single media query, manages it's state and registered handlers for this query
|
@@ -76042,7 +76948,7 @@ module.exports = MediaQuery;
|
|
76042 |
|
76043 |
|
76044 |
/***/ }),
|
76045 |
-
/*
|
76046 |
/*!*****************************************************!*\
|
76047 |
!*** ./node_modules/enquire.js/src/QueryHandler.js ***!
|
76048 |
\*****************************************************/
|
@@ -76127,7 +77033,7 @@ module.exports = QueryHandler;
|
|
76127 |
|
76128 |
|
76129 |
/***/ }),
|
76130 |
-
/*
|
76131 |
/*!*************************************!*\
|
76132 |
!*** ./src/blocks/section/block.js ***!
|
76133 |
\*************************************/
|
@@ -76138,15 +77044,15 @@ module.exports = QueryHandler;
|
|
76138 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
76139 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
76140 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
76141 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */
|
76142 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
76143 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
76144 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
76145 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
76146 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__edit__ = __webpack_require__(/*! ./edit */
|
76147 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__save__ = __webpack_require__(/*! ./save */
|
76148 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__deprecated__ = __webpack_require__(/*! ./deprecated */
|
76149 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
76150 |
/**
|
76151 |
* BLOCK: Section
|
76152 |
*/
|
@@ -76192,7 +77098,7 @@ registerBlockType("uagb/section", {
|
|
76192 |
});
|
76193 |
|
76194 |
/***/ }),
|
76195 |
-
/*
|
76196 |
/*!***************************************!*\
|
76197 |
!*** ./src/blocks/section/style.scss ***!
|
76198 |
\***************************************/
|
@@ -76202,7 +77108,7 @@ registerBlockType("uagb/section", {
|
|
76202 |
// removed by extract-text-webpack-plugin
|
76203 |
|
76204 |
/***/ }),
|
76205 |
-
/*
|
76206 |
/*!****************************************!*\
|
76207 |
!*** ./src/blocks/section/editor.scss ***!
|
76208 |
\****************************************/
|
@@ -76212,7 +77118,7 @@ registerBlockType("uagb/section", {
|
|
76212 |
// removed by extract-text-webpack-plugin
|
76213 |
|
76214 |
/***/ }),
|
76215 |
-
/*
|
76216 |
/*!************************************!*\
|
76217 |
!*** ./src/blocks/section/edit.js ***!
|
76218 |
\************************************/
|
@@ -76223,9 +77129,10 @@ registerBlockType("uagb/section", {
|
|
76223 |
"use strict";
|
76224 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
76225 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
76226 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
76227 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
76228 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 81);
|
|
|
76229 |
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; }; }();
|
76230 |
|
76231 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
@@ -76244,6 +77151,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
|
|
76244 |
|
76245 |
|
76246 |
|
|
|
76247 |
var __ = wp.i18n.__;
|
76248 |
var _wp$element = wp.element,
|
76249 |
Component = _wp$element.Component,
|
@@ -76454,7 +77362,8 @@ var UAGBSectionEdit = function (_Component) {
|
|
76454 |
boxShadowVOffset = attributes.boxShadowVOffset,
|
76455 |
boxShadowBlur = attributes.boxShadowBlur,
|
76456 |
boxShadowSpread = attributes.boxShadowSpread,
|
76457 |
-
boxShadowPosition = attributes.boxShadowPosition
|
|
|
76458 |
|
76459 |
|
76460 |
var CustomTag = "" + tag;
|
@@ -77262,86 +78171,7 @@ var UAGBSectionEdit = function (_Component) {
|
|
77262 |
"gradient" == backgroundType && wp.element.createElement(
|
77263 |
Fragment,
|
77264 |
null,
|
77265 |
-
wp.element.createElement(
|
77266 |
-
"p",
|
77267 |
-
{ className: "uagb-setting-label" },
|
77268 |
-
__("Color 1"),
|
77269 |
-
wp.element.createElement(
|
77270 |
-
"span",
|
77271 |
-
{ className: "components-base-control__label" },
|
77272 |
-
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: backgroundVideoColor } })
|
77273 |
-
)
|
77274 |
-
),
|
77275 |
-
wp.element.createElement(ColorPalette, {
|
77276 |
-
value: gradientColor1,
|
77277 |
-
onChange: function onChange(colorValue) {
|
77278 |
-
return setAttributes({ gradientColor1: colorValue });
|
77279 |
-
},
|
77280 |
-
allowReset: true
|
77281 |
-
}),
|
77282 |
-
wp.element.createElement(RangeControl, {
|
77283 |
-
label: __("Location 1"),
|
77284 |
-
value: gradientLocation1,
|
77285 |
-
onChange: function onChange(value) {
|
77286 |
-
return setAttributes({ gradientLocation1: value });
|
77287 |
-
},
|
77288 |
-
min: 0,
|
77289 |
-
max: 100,
|
77290 |
-
allowReset: true
|
77291 |
-
}),
|
77292 |
-
wp.element.createElement(
|
77293 |
-
"p",
|
77294 |
-
{ className: "uagb-setting-label" },
|
77295 |
-
__("Color 2"),
|
77296 |
-
wp.element.createElement(
|
77297 |
-
"span",
|
77298 |
-
{ className: "components-base-control__label" },
|
77299 |
-
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: backgroundVideoColor } })
|
77300 |
-
)
|
77301 |
-
),
|
77302 |
-
wp.element.createElement(ColorPalette, {
|
77303 |
-
value: gradientColor2,
|
77304 |
-
onChange: function onChange(colorValue) {
|
77305 |
-
return setAttributes({ gradientColor2: colorValue });
|
77306 |
-
},
|
77307 |
-
allowReset: true
|
77308 |
-
}),
|
77309 |
-
wp.element.createElement(RangeControl, {
|
77310 |
-
label: __("Location 2"),
|
77311 |
-
value: gradientLocation2,
|
77312 |
-
onChange: function onChange(value) {
|
77313 |
-
return setAttributes({ gradientLocation2: value });
|
77314 |
-
},
|
77315 |
-
min: 0,
|
77316 |
-
max: 100,
|
77317 |
-
allowReset: true
|
77318 |
-
}),
|
77319 |
-
wp.element.createElement(SelectControl, {
|
77320 |
-
label: __("Type"),
|
77321 |
-
value: gradientType,
|
77322 |
-
onChange: function onChange(value) {
|
77323 |
-
return setAttributes({ gradientType: value });
|
77324 |
-
},
|
77325 |
-
options: [{ value: "linear", label: __("Linear") }, { value: "radial", label: __("Radial") }]
|
77326 |
-
}),
|
77327 |
-
"linear" == gradientType && wp.element.createElement(RangeControl, {
|
77328 |
-
label: __("Angle"),
|
77329 |
-
value: gradientAngle,
|
77330 |
-
onChange: function onChange(value) {
|
77331 |
-
return setAttributes({ gradientAngle: value });
|
77332 |
-
},
|
77333 |
-
min: 0,
|
77334 |
-
max: 360,
|
77335 |
-
allowReset: true
|
77336 |
-
}),
|
77337 |
-
"radial" == gradientType && wp.element.createElement(SelectControl, {
|
77338 |
-
label: __("Type"),
|
77339 |
-
value: gradientPosition,
|
77340 |
-
onChange: function onChange(value) {
|
77341 |
-
return setAttributes({ gradientPosition: value });
|
77342 |
-
},
|
77343 |
-
options: [{ value: "center center", label: __("Center Center") }, { value: "center left", label: __("Center Left") }, { value: "center right", label: __("Center Right") }, { value: "top center", label: __("Top Center") }, { value: "top left", label: __("Top Left") }, { value: "top right", label: __("Top Right") }, { value: "bottom center", label: __("Bottom Center") }, { value: "bottom left", label: __("Bottom Left") }, { value: "bottom right", label: __("Bottom Right") }]
|
77344 |
-
})
|
77345 |
),
|
77346 |
"video" == backgroundType && wp.element.createElement(
|
77347 |
BaseControl,
|
@@ -77509,7 +78339,7 @@ var UAGBSectionEdit = function (_Component) {
|
|
77509 |
/* harmony default export */ __webpack_exports__["a"] = (withNotices(UAGBSectionEdit));
|
77510 |
|
77511 |
/***/ }),
|
77512 |
-
/*
|
77513 |
/*!***************************************!*\
|
77514 |
!*** ./src/blocks/section/styling.js ***!
|
77515 |
\***************************************/
|
@@ -77518,7 +78348,7 @@ var UAGBSectionEdit = function (_Component) {
|
|
77518 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
77519 |
|
77520 |
"use strict";
|
77521 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
77522 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
|
77523 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
|
77524 |
/**
|
@@ -77583,7 +78413,8 @@ function styling(props) {
|
|
77583 |
boxShadowVOffset = _props$attributes.boxShadowVOffset,
|
77584 |
boxShadowBlur = _props$attributes.boxShadowBlur,
|
77585 |
boxShadowSpread = _props$attributes.boxShadowSpread,
|
77586 |
-
boxShadowPosition = _props$attributes.boxShadowPosition
|
|
|
77587 |
|
77588 |
|
77589 |
var inner_width = "100%";
|
@@ -77650,12 +78481,16 @@ function styling(props) {
|
|
77650 |
selectors[" > .uagb-section__overlay"]["background-color"] = "transparent";
|
77651 |
selectors[" > .uagb-section__overlay"]["opacity"] = typeof backgroundOpacity != "undefined" ? backgroundOpacity / 100 : "";
|
77652 |
|
77653 |
-
if (
|
77654 |
-
|
77655 |
-
selectors[" > .uagb-section__overlay"]["background-image"] = "linear-gradient(" + gradientAngle + "deg, " + gradientColor1 + " " + gradientLocation1 + "%, " + gradientColor2 + " " + gradientLocation2 + "%)";
|
77656 |
} else {
|
|
|
77657 |
|
77658 |
-
|
|
|
|
|
|
|
|
|
77659 |
}
|
77660 |
}
|
77661 |
|
@@ -77718,7 +78553,7 @@ function styling(props) {
|
|
77718 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
77719 |
|
77720 |
/***/ }),
|
77721 |
-
/*
|
77722 |
/*!************************************!*\
|
77723 |
!*** ./src/blocks/section/save.js ***!
|
77724 |
\************************************/
|
@@ -77788,7 +78623,7 @@ function save(props) {
|
|
77788 |
}
|
77789 |
|
77790 |
/***/ }),
|
77791 |
-
/*
|
77792 |
/*!******************************************!*\
|
77793 |
!*** ./src/blocks/section/deprecated.js ***!
|
77794 |
\******************************************/
|
@@ -77799,7 +78634,7 @@ function save(props) {
|
|
77799 |
"use strict";
|
77800 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
77801 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
77802 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
77803 |
/**
|
77804 |
* BLOCK: Price List - Deprecated Block
|
77805 |
*/
|
@@ -77908,7 +78743,7 @@ var deprecated = [{
|
|
77908 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
77909 |
|
77910 |
/***/ }),
|
77911 |
-
/*
|
77912 |
/*!*************************************!*\
|
77913 |
!*** ./src/blocks/buttons/block.js ***!
|
77914 |
\*************************************/
|
@@ -77917,13 +78752,13 @@ var deprecated = [{
|
|
77917 |
|
77918 |
"use strict";
|
77919 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
77920 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
77921 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
77922 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */
|
77923 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */
|
77924 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
77925 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
77926 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
77927 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
77928 |
/**
|
77929 |
* BLOCK: Multi Buttons
|
@@ -77962,7 +78797,7 @@ registerBlockType("uagb/buttons", {
|
|
77962 |
});
|
77963 |
|
77964 |
/***/ }),
|
77965 |
-
/*
|
77966 |
/*!************************************!*\
|
77967 |
!*** ./src/blocks/buttons/edit.js ***!
|
77968 |
\************************************/
|
@@ -77975,7 +78810,7 @@ registerBlockType("uagb/buttons", {
|
|
77975 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
77976 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
77977 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
77978 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */
|
77979 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
|
77980 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
77981 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
@@ -78198,7 +79033,7 @@ var UAGBMultiButtonEdit = function (_Component) {
|
|
78198 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBMultiButtonEdit);
|
78199 |
|
78200 |
/***/ }),
|
78201 |
-
/*
|
78202 |
/*!**********************************************!*\
|
78203 |
!*** ./node_modules/lodash/_castFunction.js ***!
|
78204 |
\**********************************************/
|
@@ -78223,7 +79058,7 @@ module.exports = castFunction;
|
|
78223 |
|
78224 |
|
78225 |
/***/ }),
|
78226 |
-
/*
|
78227 |
/*!***************************************!*\
|
78228 |
!*** ./src/blocks/buttons/styling.js ***!
|
78229 |
\***************************************/
|
@@ -78254,7 +79089,7 @@ function styling(props) {
|
|
78254 |
var tablet_selectors = {};
|
78255 |
var mobile_selectors = {};
|
78256 |
|
78257 |
-
selectors[" .uagb-buttons-repeater"] = {
|
78258 |
"font-family": fontFamily,
|
78259 |
"font-weight": fontWeight
|
78260 |
};
|
@@ -78323,7 +79158,7 @@ function styling(props) {
|
|
78323 |
}
|
78324 |
} else {
|
78325 |
selectors[" .uagb-button__wrapper"]["justify-content"] = "center";
|
78326 |
-
selectors[" .uagb-
|
78327 |
selectors[" .wp-block[data-type='uagb/buttons-child']:first-child .uagb-button__wrapper"] = {
|
78328 |
"margin-left": 0
|
78329 |
};
|
@@ -78345,7 +79180,7 @@ function styling(props) {
|
|
78345 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
78346 |
|
78347 |
/***/ }),
|
78348 |
-
/*
|
78349 |
/*!******************************************!*\
|
78350 |
!*** ./src/blocks/buttons/deprecated.js ***!
|
78351 |
\******************************************/
|
@@ -78358,7 +79193,7 @@ function styling(props) {
|
|
78358 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
78359 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
78360 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
78361 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
78362 |
/**
|
78363 |
* BLOCK: Buttons - Deprecated Block
|
78364 |
*/
|
@@ -78523,7 +79358,7 @@ var deprecated = [{
|
|
78523 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
78524 |
|
78525 |
/***/ }),
|
78526 |
-
/*
|
78527 |
/*!************************************!*\
|
78528 |
!*** ./src/blocks/buttons/save.js ***!
|
78529 |
\************************************/
|
@@ -78569,7 +79404,7 @@ function save(props) {
|
|
78569 |
}
|
78570 |
|
78571 |
/***/ }),
|
78572 |
-
/*
|
78573 |
/*!***************************************!*\
|
78574 |
!*** ./src/blocks/buttons/style.scss ***!
|
78575 |
\***************************************/
|
@@ -78579,7 +79414,7 @@ function save(props) {
|
|
78579 |
// removed by extract-text-webpack-plugin
|
78580 |
|
78581 |
/***/ }),
|
78582 |
-
/*
|
78583 |
/*!****************************************!*\
|
78584 |
!*** ./src/blocks/buttons/editor.scss ***!
|
78585 |
\****************************************/
|
@@ -78589,7 +79424,7 @@ function save(props) {
|
|
78589 |
// removed by extract-text-webpack-plugin
|
78590 |
|
78591 |
/***/ }),
|
78592 |
-
/*
|
78593 |
/*!*******************************************!*\
|
78594 |
!*** ./src/blocks/buttons-child/block.js ***!
|
78595 |
\*******************************************/
|
@@ -78598,11 +79433,11 @@ function save(props) {
|
|
78598 |
|
78599 |
"use strict";
|
78600 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
78601 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
78602 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */
|
78603 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */
|
78604 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */
|
78605 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
78606 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
78607 |
/**
|
78608 |
* BLOCK: Buttons - Child
|
@@ -78631,7 +79466,7 @@ registerBlockType("uagb/buttons-child", {
|
|
78631 |
});
|
78632 |
|
78633 |
/***/ }),
|
78634 |
-
/*
|
78635 |
/*!************************************************!*\
|
78636 |
!*** ./src/blocks/buttons-child/deprecated.js ***!
|
78637 |
\************************************************/
|
@@ -78642,7 +79477,7 @@ registerBlockType("uagb/buttons-child", {
|
|
78642 |
"use strict";
|
78643 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
78644 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
78645 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
78646 |
/**
|
78647 |
* BLOCK: Button Child - Deprecated Block
|
78648 |
*/
|
@@ -78694,7 +79529,7 @@ var deprecated = [{
|
|
78694 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
78695 |
|
78696 |
/***/ }),
|
78697 |
-
/*
|
78698 |
/*!******************************************!*\
|
78699 |
!*** ./src/blocks/buttons-child/edit.js ***!
|
78700 |
\******************************************/
|
@@ -78705,7 +79540,7 @@ var deprecated = [{
|
|
78705 |
"use strict";
|
78706 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
78707 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
78708 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
78709 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
78710 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
78711 |
/* 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__);
|
@@ -79563,7 +80398,7 @@ var UAGBButtonsChild = function (_Component) {
|
|
79563 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBButtonsChild);
|
79564 |
|
79565 |
/***/ }),
|
79566 |
-
/*
|
79567 |
/*!*********************************************!*\
|
79568 |
!*** ./src/blocks/buttons-child/styling.js ***!
|
79569 |
\*********************************************/
|
@@ -79696,7 +80531,7 @@ function styling(props) {
|
|
79696 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
79697 |
|
79698 |
/***/ }),
|
79699 |
-
/*
|
79700 |
/*!******************************************************!*\
|
79701 |
!*** ./node_modules/react-transition-group/index.js ***!
|
79702 |
\******************************************************/
|
@@ -79707,13 +80542,13 @@ function styling(props) {
|
|
79707 |
"use strict";
|
79708 |
|
79709 |
|
79710 |
-
var _CSSTransition = _interopRequireDefault(__webpack_require__(/*! ./CSSTransition */
|
79711 |
|
79712 |
-
var _ReplaceTransition = _interopRequireDefault(__webpack_require__(/*! ./ReplaceTransition */
|
79713 |
|
79714 |
-
var _TransitionGroup = _interopRequireDefault(__webpack_require__(/*! ./TransitionGroup */
|
79715 |
|
79716 |
-
var _Transition = _interopRequireDefault(__webpack_require__(/*! ./Transition */
|
79717 |
|
79718 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
79719 |
|
@@ -79725,7 +80560,7 @@ module.exports = {
|
|
79725 |
};
|
79726 |
|
79727 |
/***/ }),
|
79728 |
-
/*
|
79729 |
/*!**************************************************************!*\
|
79730 |
!*** ./node_modules/react-transition-group/CSSTransition.js ***!
|
79731 |
\**************************************************************/
|
@@ -79741,15 +80576,15 @@ exports.default = void 0;
|
|
79741 |
|
79742 |
var PropTypes = _interopRequireWildcard(__webpack_require__(/*! prop-types */ 15));
|
79743 |
|
79744 |
-
var _addClass = _interopRequireDefault(__webpack_require__(/*! dom-helpers/class/addClass */
|
79745 |
|
79746 |
-
var _removeClass = _interopRequireDefault(__webpack_require__(/*! dom-helpers/class/removeClass */
|
79747 |
|
79748 |
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 6));
|
79749 |
|
79750 |
-
var _Transition = _interopRequireDefault(__webpack_require__(/*! ./Transition */
|
79751 |
|
79752 |
-
var _PropTypes = __webpack_require__(/*! ./utils/PropTypes */
|
79753 |
|
79754 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
79755 |
|
@@ -80101,7 +80936,7 @@ module.exports = exports["default"];
|
|
80101 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
80102 |
|
80103 |
/***/ }),
|
80104 |
-
/*
|
80105 |
/*!****************************************************!*\
|
80106 |
!*** ./node_modules/dom-helpers/class/addClass.js ***!
|
80107 |
\****************************************************/
|
@@ -80112,12 +80947,12 @@ module.exports = exports["default"];
|
|
80112 |
"use strict";
|
80113 |
|
80114 |
|
80115 |
-
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */
|
80116 |
|
80117 |
exports.__esModule = true;
|
80118 |
exports.default = addClass;
|
80119 |
|
80120 |
-
var _hasClass = _interopRequireDefault(__webpack_require__(/*! ./hasClass */
|
80121 |
|
80122 |
function addClass(element, className) {
|
80123 |
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);
|
@@ -80126,7 +80961,7 @@ function addClass(element, className) {
|
|
80126 |
module.exports = exports["default"];
|
80127 |
|
80128 |
/***/ }),
|
80129 |
-
/*
|
80130 |
/*!**********************************************************************!*\
|
80131 |
!*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
|
80132 |
\**********************************************************************/
|
@@ -80143,7 +80978,7 @@ function _interopRequireDefault(obj) {
|
|
80143 |
module.exports = _interopRequireDefault;
|
80144 |
|
80145 |
/***/ }),
|
80146 |
-
/*
|
80147 |
/*!****************************************************!*\
|
80148 |
!*** ./node_modules/dom-helpers/class/hasClass.js ***!
|
80149 |
\****************************************************/
|
@@ -80164,7 +80999,7 @@ function hasClass(element, className) {
|
|
80164 |
module.exports = exports["default"];
|
80165 |
|
80166 |
/***/ }),
|
80167 |
-
/*
|
80168 |
/*!*******************************************************!*\
|
80169 |
!*** ./node_modules/dom-helpers/class/removeClass.js ***!
|
80170 |
\*******************************************************/
|
@@ -80184,7 +81019,7 @@ module.exports = function removeClass(element, className) {
|
|
80184 |
};
|
80185 |
|
80186 |
/***/ }),
|
80187 |
-
/*
|
80188 |
/*!******************************************************************!*\
|
80189 |
!*** ./node_modules/react-transition-group/ReplaceTransition.js ***!
|
80190 |
\******************************************************************/
|
@@ -80204,7 +81039,7 @@ var _react = _interopRequireDefault(__webpack_require__(/*! react */ 6));
|
|
80204 |
|
80205 |
var _reactDom = __webpack_require__(/*! react-dom */ 18);
|
80206 |
|
80207 |
-
var _TransitionGroup = _interopRequireDefault(__webpack_require__(/*! ./TransitionGroup */
|
80208 |
|
80209 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
80210 |
|
@@ -80346,7 +81181,7 @@ module.exports = exports["default"];
|
|
80346 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
80347 |
|
80348 |
/***/ }),
|
80349 |
-
/*
|
80350 |
/*!*******************************************************************!*\
|
80351 |
!*** ./node_modules/react-transition-group/utils/ChildMapping.js ***!
|
80352 |
\*******************************************************************/
|
@@ -80507,7 +81342,7 @@ function getNextChildMapping(nextProps, prevChildMapping, onExited) {
|
|
80507 |
}
|
80508 |
|
80509 |
/***/ }),
|
80510 |
-
/*
|
80511 |
/*!************************************************!*\
|
80512 |
!*** ./dist/blocks/uagb-controls/parseIcon.js ***!
|
80513 |
\************************************************/
|
@@ -80530,7 +81365,7 @@ function parseSVG(svg) {
|
|
80530 |
/* harmony default export */ __webpack_exports__["a"] = (parseSVG);
|
80531 |
|
80532 |
/***/ }),
|
80533 |
-
/*
|
80534 |
/*!******************************************!*\
|
80535 |
!*** ./src/blocks/buttons-child/save.js ***!
|
80536 |
\******************************************/
|
@@ -80606,7 +81441,7 @@ function save(props) {
|
|
80606 |
}
|
80607 |
|
80608 |
/***/ }),
|
80609 |
-
/*
|
80610 |
/*!*********************************************!*\
|
80611 |
!*** ./src/blocks/buttons-child/style.scss ***!
|
80612 |
\*********************************************/
|
@@ -80616,7 +81451,7 @@ function save(props) {
|
|
80616 |
// removed by extract-text-webpack-plugin
|
80617 |
|
80618 |
/***/ }),
|
80619 |
-
/*
|
80620 |
/*!**************************************!*\
|
80621 |
!*** ./src/blocks/info-box/block.js ***!
|
80622 |
\**************************************/
|
@@ -80625,13 +81460,13 @@ function save(props) {
|
|
80625 |
|
80626 |
"use strict";
|
80627 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
80628 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
80629 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */
|
80630 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */
|
80631 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
80632 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
80633 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
80634 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
80635 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
80636 |
/**
|
80637 |
* BLOCK: Info Box
|
@@ -80665,7 +81500,7 @@ registerBlockType("uagb/info-box", {
|
|
80665 |
});
|
80666 |
|
80667 |
/***/ }),
|
80668 |
-
/*
|
80669 |
/*!*************************************!*\
|
80670 |
!*** ./src/blocks/info-box/edit.js ***!
|
80671 |
\*************************************/
|
@@ -80680,15 +81515,15 @@ registerBlockType("uagb/info-box", {
|
|
80680 |
/* 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__);
|
80681 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
80682 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
80683 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */
|
80684 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Title__ = __webpack_require__(/*! ./components/Title */
|
80685 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Icon__ = __webpack_require__(/*! ./components/Icon */
|
80686 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */
|
80687 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__classes__ = __webpack_require__(/*! ./classes */
|
80688 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */
|
80689 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */
|
80690 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
80691 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_InfoBoxIconImage__ = __webpack_require__(/*! ./components/InfoBoxIconImage */
|
80692 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
80693 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
80694 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
@@ -82155,7 +82990,7 @@ var UAGBinfoBox = function (_Component) {
|
|
82155 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBinfoBox);
|
82156 |
|
82157 |
/***/ }),
|
82158 |
-
/*
|
82159 |
/*!*************************************!*\
|
82160 |
!*** ./src/blocks/info-box/save.js ***!
|
82161 |
\*************************************/
|
@@ -82167,14 +83002,14 @@ var UAGBinfoBox = function (_Component) {
|
|
82167 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
82168 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
82169 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
82170 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */
|
82171 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */
|
82172 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */
|
82173 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Icon__ = __webpack_require__(/*! ./components/Icon */
|
82174 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */
|
82175 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */
|
82176 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */
|
82177 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxIconImage__ = __webpack_require__(/*! ./components/InfoBoxIconImage */
|
82178 |
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); } }
|
82179 |
|
82180 |
/**
|
@@ -82337,7 +83172,7 @@ function save(props) {
|
|
82337 |
}
|
82338 |
|
82339 |
/***/ }),
|
82340 |
-
/*
|
82341 |
/*!*******************************************!*\
|
82342 |
!*** ./src/blocks/info-box/deprecated.js ***!
|
82343 |
\*******************************************/
|
@@ -82348,18 +83183,18 @@ function save(props) {
|
|
82348 |
"use strict";
|
82349 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
82350 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
82351 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */
|
82352 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */
|
82353 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */
|
82354 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_InfoBoxIcon__ = __webpack_require__(/*! ./components/InfoBoxIcon */
|
82355 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Icon__ = __webpack_require__(/*! ./components/Icon */
|
82356 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! ./classes */
|
82357 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */
|
82358 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxCta__ = __webpack_require__(/*! ./components/InfoBoxCta */
|
82359 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */
|
82360 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
82361 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_InfoBoxIconImage__ = __webpack_require__(/*! ./components/InfoBoxIconImage */
|
82362 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__attributes__ = __webpack_require__(/*! ./attributes */
|
82363 |
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); } }
|
82364 |
|
82365 |
/**
|
@@ -83104,7 +83939,7 @@ var deprecated = [{
|
|
83104 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
83105 |
|
83106 |
/***/ }),
|
83107 |
-
/*
|
83108 |
/*!*******************************************************!*\
|
83109 |
!*** ./src/blocks/info-box/components/InfoBoxIcon.js ***!
|
83110 |
\*******************************************************/
|
@@ -83164,7 +83999,7 @@ var InfoBoxIcon = function (_React$Component) {
|
|
83164 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxIcon);
|
83165 |
|
83166 |
/***/ }),
|
83167 |
-
/*
|
83168 |
/*!******************************************************!*\
|
83169 |
!*** ./src/blocks/info-box/components/InfoBoxCta.js ***!
|
83170 |
\******************************************************/
|
@@ -83262,7 +84097,7 @@ var InfoBoxCta = function (_React$Component) {
|
|
83262 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxCta);
|
83263 |
|
83264 |
/***/ }),
|
83265 |
-
/*
|
83266 |
/*!*****************************************!*\
|
83267 |
!*** ./src/blocks/info-box/editor.scss ***!
|
83268 |
\*****************************************/
|
@@ -83272,7 +84107,7 @@ var InfoBoxCta = function (_React$Component) {
|
|
83272 |
// removed by extract-text-webpack-plugin
|
83273 |
|
83274 |
/***/ }),
|
83275 |
-
/*
|
83276 |
/*!****************************************!*\
|
83277 |
!*** ./src/blocks/info-box/style.scss ***!
|
83278 |
\****************************************/
|
@@ -83282,7 +84117,7 @@ var InfoBoxCta = function (_React$Component) {
|
|
83282 |
// removed by extract-text-webpack-plugin
|
83283 |
|
83284 |
/***/ }),
|
83285 |
-
/*
|
83286 |
/*!*****************************************!*\
|
83287 |
!*** ./src/blocks/testimonial/block.js ***!
|
83288 |
\*****************************************/
|
@@ -83293,13 +84128,13 @@ var InfoBoxCta = function (_React$Component) {
|
|
83293 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
83294 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
83295 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
83296 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
83297 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
83298 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
83299 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */
|
83300 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
83301 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
83302 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
83303 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
|
83304 |
/**
|
83305 |
* BLOCK: Testimonial
|
@@ -83333,7 +84168,7 @@ registerBlockType("uagb/testimonial", {
|
|
83333 |
});
|
83334 |
|
83335 |
/***/ }),
|
83336 |
-
/*
|
83337 |
/*!****************************************!*\
|
83338 |
!*** ./src/blocks/testimonial/edit.js ***!
|
83339 |
\****************************************/
|
@@ -83344,15 +84179,15 @@ registerBlockType("uagb/testimonial", {
|
|
83344 |
"use strict";
|
83345 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
83346 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
83347 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */
|
83348 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Company__ = __webpack_require__(/*! ./components/Company */
|
83349 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */
|
83350 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */
|
83351 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
83352 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_TestimonialImage__ = __webpack_require__(/*! ./components/TestimonialImage */
|
83353 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
83354 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_times__);
|
83355 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react_slick__ = __webpack_require__(/*! react-slick */
|
83356 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react_slick___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_react_slick__);
|
83357 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
83358 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
@@ -84539,7 +85374,7 @@ var UAGBtestimonial = function (_Component) {
|
|
84539 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBtestimonial);
|
84540 |
|
84541 |
/***/ }),
|
84542 |
-
/*
|
84543 |
/*!*************************************************!*\
|
84544 |
!*** ./src/blocks/testimonial/inline-styles.js ***!
|
84545 |
\*************************************************/
|
@@ -84784,7 +85619,7 @@ function TestimonialStyle(props) {
|
|
84784 |
/* harmony default export */ __webpack_exports__["a"] = (TestimonialStyle);
|
84785 |
|
84786 |
/***/ }),
|
84787 |
-
/*
|
84788 |
/*!****************************************!*\
|
84789 |
!*** ./src/blocks/testimonial/save.js ***!
|
84790 |
\****************************************/
|
@@ -84796,11 +85631,11 @@ function TestimonialStyle(props) {
|
|
84796 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
84797 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
84798 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
84799 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */
|
84800 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Company__ = __webpack_require__(/*! ./components/Company */
|
84801 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */
|
84802 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */
|
84803 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_TestimonialImage__ = __webpack_require__(/*! ./components/TestimonialImage */
|
84804 |
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); } }
|
84805 |
|
84806 |
/**
|
@@ -84900,7 +85735,7 @@ function save(props) {
|
|
84900 |
}
|
84901 |
|
84902 |
/***/ }),
|
84903 |
-
/*
|
84904 |
/*!**********************************************!*\
|
84905 |
!*** ./src/blocks/testimonial/deprecated.js ***!
|
84906 |
\**********************************************/
|
@@ -84911,13 +85746,13 @@ function save(props) {
|
|
84911 |
"use strict";
|
84912 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
84913 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
84914 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
84915 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
84916 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */
|
84917 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Company__ = __webpack_require__(/*! ./components/Company */
|
84918 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */
|
84919 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! ./classes */
|
84920 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_TestimonialImage__ = __webpack_require__(/*! ./components/TestimonialImage */
|
84921 |
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); } }
|
84922 |
|
84923 |
/**
|
@@ -85126,7 +85961,7 @@ var deprecated = [{
|
|
85126 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
85127 |
|
85128 |
/***/ }),
|
85129 |
-
/*
|
85130 |
/*!*******************************************!*\
|
85131 |
!*** ./src/blocks/testimonial/style.scss ***!
|
85132 |
\*******************************************/
|
@@ -85136,7 +85971,7 @@ var deprecated = [{
|
|
85136 |
// removed by extract-text-webpack-plugin
|
85137 |
|
85138 |
/***/ }),
|
85139 |
-
/*
|
85140 |
/*!********************************************!*\
|
85141 |
!*** ./src/blocks/testimonial/editor.scss ***!
|
85142 |
\********************************************/
|
@@ -85146,7 +85981,7 @@ var deprecated = [{
|
|
85146 |
// removed by extract-text-webpack-plugin
|
85147 |
|
85148 |
/***/ }),
|
85149 |
-
/*
|
85150 |
/*!**********************************!*\
|
85151 |
!*** ./src/blocks/team/block.js ***!
|
85152 |
\**********************************/
|
@@ -85158,13 +85993,13 @@ var deprecated = [{
|
|
85158 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
85159 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
85160 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
85161 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */
|
85162 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */
|
85163 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */
|
85164 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */
|
85165 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
85166 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
|
85167 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss__ = __webpack_require__(/*! ./style.scss */
|
85168 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__style_scss__);
|
85169 |
/**
|
85170 |
* BLOCK: Team
|
@@ -85200,7 +86035,7 @@ registerBlockType("uagb/team", {
|
|
85200 |
});
|
85201 |
|
85202 |
/***/ }),
|
85203 |
-
/*
|
85204 |
/*!*********************************!*\
|
85205 |
!*** ./src/blocks/team/edit.js ***!
|
85206 |
\*********************************/
|
@@ -85215,7 +86050,7 @@ registerBlockType("uagb/team", {
|
|
85215 |
/* 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__);
|
85216 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
85217 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
85218 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */
|
85219 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
85220 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
85221 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
@@ -86130,7 +86965,7 @@ var UAGBTeam = function (_Component) {
|
|
86130 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBTeam);
|
86131 |
|
86132 |
/***/ }),
|
86133 |
-
/*
|
86134 |
/*!************************************!*\
|
86135 |
!*** ./src/blocks/team/styling.js ***!
|
86136 |
\************************************/
|
@@ -86355,7 +87190,7 @@ function styling(props) {
|
|
86355 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
86356 |
|
86357 |
/***/ }),
|
86358 |
-
/*
|
86359 |
/*!*********************************!*\
|
86360 |
!*** ./src/blocks/team/save.js ***!
|
86361 |
\*********************************/
|
@@ -86500,7 +87335,7 @@ function save(props) {
|
|
86500 |
}
|
86501 |
|
86502 |
/***/ }),
|
86503 |
-
/*
|
86504 |
/*!***************************************!*\
|
86505 |
!*** ./src/blocks/team/deprecated.js ***!
|
86506 |
\***************************************/
|
@@ -86511,7 +87346,7 @@ function save(props) {
|
|
86511 |
"use strict";
|
86512 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
86513 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
86514 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
86515 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
86516 |
/**
|
86517 |
* BLOCK: Table of Contents - Deprecated Block
|
@@ -86876,7 +87711,7 @@ var deprecated = [{
|
|
86876 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
86877 |
|
86878 |
/***/ }),
|
86879 |
-
/*
|
86880 |
/*!*************************************!*\
|
86881 |
!*** ./src/blocks/team/editor.scss ***!
|
86882 |
\*************************************/
|
@@ -86886,7 +87721,7 @@ var deprecated = [{
|
|
86886 |
// removed by extract-text-webpack-plugin
|
86887 |
|
86888 |
/***/ }),
|
86889 |
-
/*
|
86890 |
/*!************************************!*\
|
86891 |
!*** ./src/blocks/team/style.scss ***!
|
86892 |
\************************************/
|
@@ -86896,7 +87731,7 @@ var deprecated = [{
|
|
86896 |
// removed by extract-text-webpack-plugin
|
86897 |
|
86898 |
/***/ }),
|
86899 |
-
/*
|
86900 |
/*!******************************************!*\
|
86901 |
!*** ./src/blocks/social-share/block.js ***!
|
86902 |
\******************************************/
|
@@ -86908,16 +87743,16 @@ var deprecated = [{
|
|
86908 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
86909 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
86910 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
86911 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */
|
86912 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
86913 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
86914 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__editor_scss__);
|
86915 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__transform__ = __webpack_require__(/*! ./transform */
|
86916 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */
|
86917 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__edit__ = __webpack_require__(/*! ./edit */
|
86918 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__links__ = __webpack_require__(/*! ./links */
|
86919 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__save__ = __webpack_require__(/*! ./save */
|
86920 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__deprecated__ = __webpack_require__(/*! ./deprecated */
|
86921 |
/**
|
86922 |
* BLOCK: Social Share
|
86923 |
*/
|
@@ -86955,7 +87790,7 @@ registerBlockType("uagb/social-share", {
|
|
86955 |
});
|
86956 |
|
86957 |
/***/ }),
|
86958 |
-
/*
|
86959 |
/*!********************************************!*\
|
86960 |
!*** ./src/blocks/social-share/style.scss ***!
|
86961 |
\********************************************/
|
@@ -86965,7 +87800,7 @@ registerBlockType("uagb/social-share", {
|
|
86965 |
// removed by extract-text-webpack-plugin
|
86966 |
|
86967 |
/***/ }),
|
86968 |
-
/*
|
86969 |
/*!*********************************************!*\
|
86970 |
!*** ./src/blocks/social-share/editor.scss ***!
|
86971 |
\*********************************************/
|
@@ -86975,7 +87810,7 @@ registerBlockType("uagb/social-share", {
|
|
86975 |
// removed by extract-text-webpack-plugin
|
86976 |
|
86977 |
/***/ }),
|
86978 |
-
/*
|
86979 |
/*!**********************************************!*\
|
86980 |
!*** ./src/blocks/social-share/transform.js ***!
|
86981 |
\**********************************************/
|
@@ -87029,7 +87864,7 @@ var transform = {
|
|
87029 |
/* harmony default export */ __webpack_exports__["a"] = (transform);
|
87030 |
|
87031 |
/***/ }),
|
87032 |
-
/*
|
87033 |
/*!*****************************************!*\
|
87034 |
!*** ./src/blocks/social-share/edit.js ***!
|
87035 |
\*****************************************/
|
@@ -87048,7 +87883,7 @@ var transform = {
|
|
87048 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
87049 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
87050 |
/* 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__);
|
87051 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */
|
87052 |
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; }; }();
|
87053 |
|
87054 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
@@ -87378,7 +88213,7 @@ var UAGBSocialShare = function (_Component) {
|
|
87378 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShare);
|
87379 |
|
87380 |
/***/ }),
|
87381 |
-
/*
|
87382 |
/*!********************************************!*\
|
87383 |
!*** ./src/blocks/social-share/styling.js ***!
|
87384 |
\********************************************/
|
@@ -87588,7 +88423,7 @@ function styling(props) {
|
|
87588 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
87589 |
|
87590 |
/***/ }),
|
87591 |
-
/*
|
87592 |
/*!*****************************************!*\
|
87593 |
!*** ./src/blocks/social-share/save.js ***!
|
87594 |
\*****************************************/
|
@@ -87601,7 +88436,7 @@ function styling(props) {
|
|
87601 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
87602 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
87603 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
87604 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__links__ = __webpack_require__(/*! ./links */
|
87605 |
/**
|
87606 |
* BLOCK: Column - Save Block
|
87607 |
*/
|
@@ -87638,7 +88473,7 @@ function save(props) {
|
|
87638 |
}
|
87639 |
|
87640 |
/***/ }),
|
87641 |
-
/*
|
87642 |
/*!***********************************************!*\
|
87643 |
!*** ./src/blocks/social-share/deprecated.js ***!
|
87644 |
\***********************************************/
|
@@ -87649,9 +88484,9 @@ function save(props) {
|
|
87649 |
"use strict";
|
87650 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
87651 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
87652 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
87653 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
87654 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__links__ = __webpack_require__(/*! ./links */
|
87655 |
/**
|
87656 |
* BLOCK: Social Share - Deprecated Block
|
87657 |
*/
|
@@ -87873,7 +88708,7 @@ var deprecated = [{
|
|
87873 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
87874 |
|
87875 |
/***/ }),
|
87876 |
-
/*
|
87877 |
/*!************************************************!*\
|
87878 |
!*** ./src/blocks/social-share-child/block.js ***!
|
87879 |
\************************************************/
|
@@ -87882,13 +88717,14 @@ var deprecated = [{
|
|
87882 |
|
87883 |
"use strict";
|
87884 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
87885 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
87886 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
87887 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
87888 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
87889 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
87890 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
87891 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
|
|
87892 |
/**
|
87893 |
* BLOCK: Social Share Child
|
87894 |
*/
|
@@ -87900,6 +88736,7 @@ var deprecated = [{
|
|
87900 |
|
87901 |
|
87902 |
|
|
|
87903 |
var __ = wp.i18n.__;
|
87904 |
var registerBlockType = wp.blocks.registerBlockType;
|
87905 |
|
@@ -87913,64 +88750,12 @@ registerBlockType("uagb/social-share-child", {
|
|
87913 |
keywords: [__("social share"), __("icon"), __("uag")],
|
87914 |
attributes: __WEBPACK_IMPORTED_MODULE_1__attributes__["a" /* default */],
|
87915 |
edit: __WEBPACK_IMPORTED_MODULE_2__edit__["a" /* default */],
|
87916 |
-
save: __WEBPACK_IMPORTED_MODULE_3__save__["a" /* default */]
|
|
|
87917 |
});
|
87918 |
|
87919 |
/***/ }),
|
87920 |
-
/*
|
87921 |
-
/*!*****************************************************!*\
|
87922 |
-
!*** ./src/blocks/social-share-child/attributes.js ***!
|
87923 |
-
\*****************************************************/
|
87924 |
-
/*! exports provided: default */
|
87925 |
-
/*! exports used: default */
|
87926 |
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
87927 |
-
|
87928 |
-
"use strict";
|
87929 |
-
/**
|
87930 |
-
* BLOCK: Social Share Child - Attributes
|
87931 |
-
*/
|
87932 |
-
|
87933 |
-
var attributes = {
|
87934 |
-
block_id: {
|
87935 |
-
type: "string"
|
87936 |
-
},
|
87937 |
-
type: {
|
87938 |
-
type: "string",
|
87939 |
-
default: "facebook"
|
87940 |
-
},
|
87941 |
-
image_icon: {
|
87942 |
-
type: "string",
|
87943 |
-
default: "icon"
|
87944 |
-
},
|
87945 |
-
current_url: {
|
87946 |
-
type: "string"
|
87947 |
-
},
|
87948 |
-
icon: {
|
87949 |
-
type: "string",
|
87950 |
-
default: "fab fa-facebook"
|
87951 |
-
},
|
87952 |
-
image: {
|
87953 |
-
type: "object"
|
87954 |
-
},
|
87955 |
-
icon_color: {
|
87956 |
-
type: "string",
|
87957 |
-
default: "#3a3a3a"
|
87958 |
-
},
|
87959 |
-
icon_hover_color: {
|
87960 |
-
type: "string"
|
87961 |
-
},
|
87962 |
-
icon_bg_color: {
|
87963 |
-
type: "string"
|
87964 |
-
},
|
87965 |
-
icon_bg_hover_color: {
|
87966 |
-
type: "string"
|
87967 |
-
}
|
87968 |
-
};
|
87969 |
-
|
87970 |
-
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
87971 |
-
|
87972 |
-
/***/ }),
|
87973 |
-
/* 447 */
|
87974 |
/*!***********************************************!*\
|
87975 |
!*** ./src/blocks/social-share-child/edit.js ***!
|
87976 |
\***********************************************/
|
@@ -87985,7 +88770,7 @@ var attributes = {
|
|
87985 |
/* 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__);
|
87986 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
87987 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
87988 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */
|
87989 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
87990 |
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; }; }();
|
87991 |
|
@@ -88424,7 +89209,7 @@ var UAGBSocialShareChild = function (_Component) {
|
|
88424 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShareChild);
|
88425 |
|
88426 |
/***/ }),
|
88427 |
-
/*
|
88428 |
/*!**************************************************!*\
|
88429 |
!*** ./src/blocks/social-share-child/styling.js ***!
|
88430 |
\**************************************************/
|
@@ -88480,7 +89265,7 @@ function styling(props) {
|
|
88480 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
88481 |
|
88482 |
/***/ }),
|
88483 |
-
/*
|
88484 |
/*!***********************************************!*\
|
88485 |
!*** ./src/blocks/social-share-child/save.js ***!
|
88486 |
\***********************************************/
|
@@ -88493,7 +89278,7 @@ function styling(props) {
|
|
88493 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
88494 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
88495 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
88496 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__links__ = __webpack_require__(/*! ./links */
|
88497 |
/**
|
88498 |
* BLOCK: Social Share - Save Block
|
88499 |
*/
|
@@ -88510,7 +89295,6 @@ function save(props) {
|
|
88510 |
var attributes = props.attributes,
|
88511 |
className = props.className;
|
88512 |
var _props$attributes = props.attributes,
|
88513 |
-
current_url = _props$attributes.current_url,
|
88514 |
type = _props$attributes.type,
|
88515 |
image_icon = _props$attributes.image_icon,
|
88516 |
icon = _props$attributes.icon,
|
@@ -88519,11 +89303,7 @@ function save(props) {
|
|
88519 |
link = _props$attributes.link;
|
88520 |
|
88521 |
|
88522 |
-
var url = "";
|
88523 |
-
|
88524 |
-
if (null != current_url) {
|
88525 |
-
url = __WEBPACK_IMPORTED_MODULE_2__links__["a" /* default */][type];
|
88526 |
-
}
|
88527 |
|
88528 |
var image_icon_html = "";
|
88529 |
|
@@ -88559,34 +89339,7 @@ function save(props) {
|
|
88559 |
}
|
88560 |
|
88561 |
/***/ }),
|
88562 |
-
/*
|
88563 |
-
/*!************************************************!*\
|
88564 |
-
!*** ./src/blocks/social-share-child/links.js ***!
|
88565 |
-
\************************************************/
|
88566 |
-
/*! exports provided: default */
|
88567 |
-
/*! exports used: default */
|
88568 |
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
88569 |
-
|
88570 |
-
"use strict";
|
88571 |
-
var links = {
|
88572 |
-
facebook: "https://www.facebook.com/sharer.php?u=",
|
88573 |
-
twitter: "https://twitter.com/share?url=",
|
88574 |
-
google: "https://plus.google.com/share?url=",
|
88575 |
-
pinterest: "https://pinterest.com/pin/create/link/?url=",
|
88576 |
-
linkedin: "https://www.linkedin.com/shareArticle?url=",
|
88577 |
-
digg: "http://digg.com/submit?url=",
|
88578 |
-
blogger: "https://www.blogger.com/blog_this.pyra?t&u=",
|
88579 |
-
reddit: "https://reddit.com/submit?url=",
|
88580 |
-
stumbleupon: "https://www.stumbleupon.com/submit?url=",
|
88581 |
-
tumblr: "https://www.tumblr.com/widgets/share/tool?canonicalUrl=",
|
88582 |
-
myspace: "https://myspace.com/post?u=",
|
88583 |
-
email: "mailto:?body="
|
88584 |
-
};
|
88585 |
-
|
88586 |
-
/* harmony default export */ __webpack_exports__["a"] = (links);
|
88587 |
-
|
88588 |
-
/***/ }),
|
88589 |
-
/* 451 */
|
88590 |
/*!**************************************************!*\
|
88591 |
!*** ./src/blocks/social-share-child/style.scss ***!
|
88592 |
\**************************************************/
|
@@ -88596,7 +89349,7 @@ var links = {
|
|
88596 |
// removed by extract-text-webpack-plugin
|
88597 |
|
88598 |
/***/ }),
|
88599 |
-
/*
|
88600 |
/*!***************************************************!*\
|
88601 |
!*** ./src/blocks/social-share-child/editor.scss ***!
|
88602 |
\***************************************************/
|
@@ -88606,7 +89359,89 @@ var links = {
|
|
88606 |
// removed by extract-text-webpack-plugin
|
88607 |
|
88608 |
/***/ }),
|
88609 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88610 |
/*!****************************************!*\
|
88611 |
!*** ./src/blocks/google-map/block.js ***!
|
88612 |
\****************************************/
|
@@ -88617,7 +89452,7 @@ var links = {
|
|
88617 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
88618 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
88619 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
88620 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */
|
88621 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
88622 |
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; }; }();
|
88623 |
|
@@ -88879,7 +89714,7 @@ registerBlockType("uagb/google-map", {
|
|
88879 |
});
|
88880 |
|
88881 |
/***/ }),
|
88882 |
-
/*
|
88883 |
/*!******************************************!*\
|
88884 |
!*** ./src/blocks/google-map/style.scss ***!
|
88885 |
\******************************************/
|
@@ -88889,7 +89724,7 @@ registerBlockType("uagb/google-map", {
|
|
88889 |
// removed by extract-text-webpack-plugin
|
88890 |
|
88891 |
/***/ }),
|
88892 |
-
/*
|
88893 |
/*!***************************************!*\
|
88894 |
!*** ./src/blocks/icon-list/block.js ***!
|
88895 |
\***************************************/
|
@@ -88898,14 +89733,14 @@ registerBlockType("uagb/google-map", {
|
|
88898 |
|
88899 |
"use strict";
|
88900 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
88901 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
88902 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
88903 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
88904 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__transform__ = __webpack_require__(/*! ./transform */
|
88905 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */
|
88906 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
88907 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
88908 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
88909 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
|
88910 |
/**
|
88911 |
* BLOCK: Icon List
|
@@ -88941,7 +89776,7 @@ registerBlockType("uagb/icon-list", {
|
|
88941 |
});
|
88942 |
|
88943 |
/***/ }),
|
88944 |
-
/*
|
88945 |
/*!**************************************!*\
|
88946 |
!*** ./src/blocks/icon-list/edit.js ***!
|
88947 |
\**************************************/
|
@@ -88958,7 +89793,7 @@ registerBlockType("uagb/icon-list", {
|
|
88958 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
|
88959 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
|
88960 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
88961 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */
|
88962 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
88963 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
88964 |
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; }; }();
|
@@ -89377,7 +90212,7 @@ var UAGBIconList = function (_Component) {
|
|
89377 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBIconList);
|
89378 |
|
89379 |
/***/ }),
|
89380 |
-
/*
|
89381 |
/*!*****************************************!*\
|
89382 |
!*** ./src/blocks/icon-list/styling.js ***!
|
89383 |
\*****************************************/
|
@@ -89609,7 +90444,7 @@ function styling(props) {
|
|
89609 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
89610 |
|
89611 |
/***/ }),
|
89612 |
-
/*
|
89613 |
/*!**************************************!*\
|
89614 |
!*** ./src/blocks/icon-list/save.js ***!
|
89615 |
\**************************************/
|
@@ -89656,7 +90491,7 @@ function save(props) {
|
|
89656 |
}
|
89657 |
|
89658 |
/***/ }),
|
89659 |
-
/*
|
89660 |
/*!*******************************************!*\
|
89661 |
!*** ./src/blocks/icon-list/transform.js ***!
|
89662 |
\*******************************************/
|
@@ -89710,7 +90545,7 @@ var transform = {
|
|
89710 |
/* harmony default export */ __webpack_exports__["a"] = (transform);
|
89711 |
|
89712 |
/***/ }),
|
89713 |
-
/*
|
89714 |
/*!********************************************!*\
|
89715 |
!*** ./src/blocks/icon-list/deprecated.js ***!
|
89716 |
\********************************************/
|
@@ -89722,7 +90557,7 @@ var transform = {
|
|
89722 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
89723 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
89724 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
89725 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
89726 |
/**
|
89727 |
* BLOCK: Columns - Deprecated Block
|
89728 |
*/
|
@@ -90166,7 +91001,7 @@ var deprecated = [{
|
|
90166 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
90167 |
|
90168 |
/***/ }),
|
90169 |
-
/*
|
90170 |
/*!*****************************************!*\
|
90171 |
!*** ./src/blocks/icon-list/style.scss ***!
|
90172 |
\*****************************************/
|
@@ -90176,7 +91011,7 @@ var deprecated = [{
|
|
90176 |
// removed by extract-text-webpack-plugin
|
90177 |
|
90178 |
/***/ }),
|
90179 |
-
/*
|
90180 |
/*!******************************************!*\
|
90181 |
!*** ./src/blocks/icon-list/editor.scss ***!
|
90182 |
\******************************************/
|
@@ -90186,7 +91021,7 @@ var deprecated = [{
|
|
90186 |
// removed by extract-text-webpack-plugin
|
90187 |
|
90188 |
/***/ }),
|
90189 |
-
/*
|
90190 |
/*!*********************************************!*\
|
90191 |
!*** ./src/blocks/icon-list-child/block.js ***!
|
90192 |
\*********************************************/
|
@@ -90195,14 +91030,14 @@ var deprecated = [{
|
|
90195 |
|
90196 |
"use strict";
|
90197 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
90198 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
90199 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
90200 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
90201 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
90202 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
90203 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
90204 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
90205 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */
|
90206 |
/**
|
90207 |
* BLOCK: Icon List - Child
|
90208 |
*/
|
@@ -90232,7 +91067,7 @@ registerBlockType("uagb/icon-list-child", {
|
|
90232 |
});
|
90233 |
|
90234 |
/***/ }),
|
90235 |
-
/*
|
90236 |
/*!********************************************!*\
|
90237 |
!*** ./src/blocks/icon-list-child/edit.js ***!
|
90238 |
\********************************************/
|
@@ -90247,7 +91082,7 @@ registerBlockType("uagb/icon-list-child", {
|
|
90247 |
/* 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__);
|
90248 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
90249 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
90250 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */
|
90251 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
90252 |
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; }; }();
|
90253 |
|
@@ -90848,7 +91683,7 @@ var UAGBIconListChild = function (_Component) {
|
|
90848 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBIconListChild);
|
90849 |
|
90850 |
/***/ }),
|
90851 |
-
/*
|
90852 |
/*!***********************************************!*\
|
90853 |
!*** ./src/blocks/icon-list-child/styling.js ***!
|
90854 |
\***********************************************/
|
@@ -90916,7 +91751,7 @@ function styling(props) {
|
|
90916 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
90917 |
|
90918 |
/***/ }),
|
90919 |
-
/*
|
90920 |
/*!********************************************!*\
|
90921 |
!*** ./src/blocks/icon-list-child/save.js ***!
|
90922 |
\********************************************/
|
@@ -91000,7 +91835,7 @@ function save(props) {
|
|
91000 |
}
|
91001 |
|
91002 |
/***/ }),
|
91003 |
-
/*
|
91004 |
/*!***********************************************!*\
|
91005 |
!*** ./src/blocks/icon-list-child/style.scss ***!
|
91006 |
\***********************************************/
|
@@ -91010,7 +91845,7 @@ function save(props) {
|
|
91010 |
// removed by extract-text-webpack-plugin
|
91011 |
|
91012 |
/***/ }),
|
91013 |
-
/*
|
91014 |
/*!************************************************!*\
|
91015 |
!*** ./src/blocks/icon-list-child/editor.scss ***!
|
91016 |
\************************************************/
|
@@ -91020,7 +91855,7 @@ function save(props) {
|
|
91020 |
// removed by extract-text-webpack-plugin
|
91021 |
|
91022 |
/***/ }),
|
91023 |
-
/*
|
91024 |
/*!**************************************************!*\
|
91025 |
!*** ./src/blocks/icon-list-child/deprecated.js ***!
|
91026 |
\**************************************************/
|
@@ -91032,7 +91867,7 @@ function save(props) {
|
|
91032 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
91033 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
91034 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
91035 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
91036 |
/**
|
91037 |
* BLOCK: Icon List - Child - Deprecated Block
|
91038 |
*/
|
@@ -91109,7 +91944,7 @@ var deprecated = [{
|
|
91109 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
91110 |
|
91111 |
/***/ }),
|
91112 |
-
/*
|
91113 |
/*!****************************************!*\
|
91114 |
!*** ./src/blocks/price-list/block.js ***!
|
91115 |
\****************************************/
|
@@ -91118,13 +91953,13 @@ var deprecated = [{
|
|
91118 |
|
91119 |
"use strict";
|
91120 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
91121 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
91122 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */
|
91123 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */
|
91124 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
91125 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
91126 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
91127 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
91128 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
91129 |
/**
|
91130 |
* BLOCK: Price List
|
@@ -91160,7 +91995,7 @@ registerBlockType("uagb/restaurant-menu", {
|
|
91160 |
});
|
91161 |
|
91162 |
/***/ }),
|
91163 |
-
/*
|
91164 |
/*!***************************************!*\
|
91165 |
!*** ./src/blocks/price-list/edit.js ***!
|
91166 |
\***************************************/
|
@@ -91171,12 +92006,12 @@ registerBlockType("uagb/restaurant-menu", {
|
|
91171 |
"use strict";
|
91172 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
91173 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
91174 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */
|
91175 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Price__ = __webpack_require__(/*! ./components/Price */
|
91176 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */
|
91177 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */
|
91178 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
91179 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */
|
91180 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
91181 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_times__);
|
91182 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
@@ -92059,7 +92894,7 @@ var UAGBRestaurantMenu = function (_Component) {
|
|
92059 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBRestaurantMenu);
|
92060 |
|
92061 |
/***/ }),
|
92062 |
-
/*
|
92063 |
/*!************************************************!*\
|
92064 |
!*** ./src/blocks/price-list/inline-styles.js ***!
|
92065 |
\************************************************/
|
@@ -92276,7 +93111,7 @@ function RestMenuStyle(props) {
|
|
92276 |
/* harmony default export */ __webpack_exports__["a"] = (RestMenuStyle);
|
92277 |
|
92278 |
/***/ }),
|
92279 |
-
/*
|
92280 |
/*!***************************************!*\
|
92281 |
!*** ./src/blocks/price-list/save.js ***!
|
92282 |
\***************************************/
|
@@ -92288,11 +93123,11 @@ function RestMenuStyle(props) {
|
|
92288 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
92289 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
92290 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
92291 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */
|
92292 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Price__ = __webpack_require__(/*! ./components/Price */
|
92293 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */
|
92294 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */
|
92295 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */
|
92296 |
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); } }
|
92297 |
|
92298 |
/**
|
@@ -92374,7 +93209,7 @@ function save(props) {
|
|
92374 |
}
|
92375 |
|
92376 |
/***/ }),
|
92377 |
-
/*
|
92378 |
/*!*********************************************!*\
|
92379 |
!*** ./src/blocks/price-list/deprecated.js ***!
|
92380 |
\*********************************************/
|
@@ -92385,12 +93220,12 @@ function save(props) {
|
|
92385 |
"use strict";
|
92386 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
92387 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
92388 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
92389 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */
|
92390 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Price__ = __webpack_require__(/*! ./components/Price */
|
92391 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Description__ = __webpack_require__(/*! ./components/Description */
|
92392 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */
|
92393 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */
|
92394 |
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); } }
|
92395 |
|
92396 |
/**
|
@@ -92479,7 +93314,7 @@ var deprecated = [{
|
|
92479 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
92480 |
|
92481 |
/***/ }),
|
92482 |
-
/*
|
92483 |
/*!******************************************!*\
|
92484 |
!*** ./src/blocks/price-list/style.scss ***!
|
92485 |
\******************************************/
|
@@ -92489,7 +93324,7 @@ var deprecated = [{
|
|
92489 |
// removed by extract-text-webpack-plugin
|
92490 |
|
92491 |
/***/ }),
|
92492 |
-
/*
|
92493 |
/*!*******************************************!*\
|
92494 |
!*** ./src/blocks/price-list/editor.scss ***!
|
92495 |
\*******************************************/
|
@@ -92499,7 +93334,7 @@ var deprecated = [{
|
|
92499 |
// removed by extract-text-webpack-plugin
|
92500 |
|
92501 |
/***/ }),
|
92502 |
-
/*
|
92503 |
/*!**************************************!*\
|
92504 |
!*** ./src/blocks/timeline/block.js ***!
|
92505 |
\**************************************/
|
@@ -92507,13 +93342,13 @@ var deprecated = [{
|
|
92507 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
92508 |
|
92509 |
"use strict";
|
92510 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__content_timeline_block_js__ = __webpack_require__(/*! ./content-timeline/block.js */
|
92511 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_timeline_block_js__ = __webpack_require__(/*! ./post-timeline/block.js */
|
92512 |
|
92513 |
|
92514 |
|
92515 |
/***/ }),
|
92516 |
-
/*
|
92517 |
/*!*******************************************************!*\
|
92518 |
!*** ./src/blocks/timeline/content-timeline/block.js ***!
|
92519 |
\*******************************************************/
|
@@ -92526,12 +93361,12 @@ var deprecated = [{
|
|
92526 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
92527 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
92528 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
92529 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! .././style.scss */
|
92530 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
92531 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
92532 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__save__ = __webpack_require__(/*! ./save */
|
92533 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */
|
92534 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__edit__ = __webpack_require__(/*! ./edit */
|
92535 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! .././inline-styles */ 30);
|
92536 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__classes__ = __webpack_require__(/*! .././classes */ 31);
|
92537 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__align_classes__ = __webpack_require__(/*! .././align-classes */ 32);
|
@@ -92595,7 +93430,7 @@ registerBlockType("uagb/content-timeline", {
|
|
92595 |
});
|
92596 |
|
92597 |
/***/ }),
|
92598 |
-
/*
|
92599 |
/*!************************************************************!*\
|
92600 |
!*** ./src/blocks/timeline/content-timeline/deprecated.js ***!
|
92601 |
\************************************************************/
|
@@ -92606,7 +93441,7 @@ registerBlockType("uagb/content-timeline", {
|
|
92606 |
"use strict";
|
92607 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
92608 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
92609 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
92610 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! .././inline-styles */ 30);
|
92611 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! .././classes */ 31);
|
92612 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__align_classes__ = __webpack_require__(/*! .././align-classes */ 32);
|
@@ -93036,7 +93871,7 @@ var deprecated = [{
|
|
93036 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
93037 |
|
93038 |
/***/ }),
|
93039 |
-
/*
|
93040 |
/*!******************************************************!*\
|
93041 |
!*** ./src/blocks/timeline/content-timeline/save.js ***!
|
93042 |
\******************************************************/
|
@@ -93215,7 +94050,7 @@ function save(props) {
|
|
93215 |
}
|
93216 |
|
93217 |
/***/ }),
|
93218 |
-
/*
|
93219 |
/*!******************************************************!*\
|
93220 |
!*** ./src/blocks/timeline/content-timeline/edit.js ***!
|
93221 |
\******************************************************/
|
@@ -94375,7 +95210,7 @@ var UAGBcontentTimeline = function (_Component) {
|
|
94375 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBcontentTimeline);
|
94376 |
|
94377 |
/***/ }),
|
94378 |
-
/*
|
94379 |
/*!****************************************************!*\
|
94380 |
!*** ./src/blocks/timeline/post-timeline/block.js ***!
|
94381 |
\****************************************************/
|
@@ -94385,11 +95220,11 @@ var UAGBcontentTimeline = function (_Component) {
|
|
94385 |
"use strict";
|
94386 |
/* unused harmony export name */
|
94387 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
94388 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! .././style.scss */
|
94389 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
94390 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! .././editor.scss */
|
94391 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
94392 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */
|
94393 |
/**
|
94394 |
* BLOCK: Post Timeline Js.
|
94395 |
*/
|
@@ -94430,7 +95265,7 @@ registerBlockType("uagb/post-timeline", {
|
|
94430 |
});
|
94431 |
|
94432 |
/***/ }),
|
94433 |
-
/*
|
94434 |
/*!*****************************************!*\
|
94435 |
!*** ./src/blocks/timeline/editor.scss ***!
|
94436 |
\*****************************************/
|
@@ -94440,7 +95275,7 @@ registerBlockType("uagb/post-timeline", {
|
|
94440 |
// removed by extract-text-webpack-plugin
|
94441 |
|
94442 |
/***/ }),
|
94443 |
-
/*
|
94444 |
/*!***************************************************!*\
|
94445 |
!*** ./src/blocks/timeline/post-timeline/edit.js ***!
|
94446 |
\***************************************************/
|
@@ -94449,9 +95284,9 @@ registerBlockType("uagb/post-timeline", {
|
|
94449 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
94450 |
|
94451 |
"use strict";
|
94452 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__ = __webpack_require__(/*! lodash/isUndefined */
|
94453 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__);
|
94454 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__ = __webpack_require__(/*! lodash/pickBy */
|
94455 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__);
|
94456 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
94457 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
|
@@ -94466,13 +95301,13 @@ registerBlockType("uagb/post-timeline", {
|
|
94466 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__classes__ = __webpack_require__(/*! .././classes */ 31);
|
94467 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__align_classes__ = __webpack_require__(/*! .././align-classes */ 32);
|
94468 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__day_align_classes__ = __webpack_require__(/*! .././day-align-classes */ 33);
|
94469 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_Title__ = __webpack_require__(/*! ./components/Title */
|
94470 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__components_FeaturedImage__ = __webpack_require__(/*! ./components/FeaturedImage */
|
94471 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__components_Excerpt__ = __webpack_require__(/*! ./components/Excerpt */
|
94472 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__components_CtaLink__ = __webpack_require__(/*! ./components/CtaLink */
|
94473 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__components_Author__ = __webpack_require__(/*! ./components/Author */
|
94474 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__components_PostDate__ = __webpack_require__(/*! ./components/PostDate */
|
94475 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__components_Icon__ = __webpack_require__(/*! ./components/Icon */
|
94476 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
94477 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
94478 |
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; };
|
@@ -94711,7 +95546,8 @@ var UAGBTimeline = function (_Component) {
|
|
94711 |
linkTarget = attributes.linkTarget,
|
94712 |
postType = attributes.postType,
|
94713 |
taxonomyType = attributes.taxonomyType,
|
94714 |
-
dateFormat = attributes.dateFormat
|
|
|
94715 |
|
94716 |
|
94717 |
var taxonomyListOptions = [{ value: "", label: __("Select Taxonomy") }];
|
@@ -95067,6 +95903,13 @@ var UAGBTimeline = function (_Component) {
|
|
95067 |
}),
|
95068 |
wp.element.createElement("hr", { className: "uagb-editor__separator" })
|
95069 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95070 |
wp.element.createElement(QueryControls, _extends({ order: order, orderBy: orderBy }, {
|
95071 |
numberOfItems: postsToShow,
|
95072 |
onNumberOfItemsChange: function onNumberOfItemsChange(value) {
|
@@ -95824,7 +96667,8 @@ var UAGBTimeline = function (_Component) {
|
|
95824 |
order = _props$attributes.order,
|
95825 |
orderBy = _props$attributes.orderBy,
|
95826 |
postType = _props$attributes.postType,
|
95827 |
-
taxonomyType = _props$attributes.taxonomyType
|
|
|
95828 |
|
95829 |
var _select = select("core"),
|
95830 |
getEntityRecords = _select.getEntityRecords;
|
@@ -95854,6 +96698,9 @@ var UAGBTimeline = function (_Component) {
|
|
95854 |
per_page: postsToShow
|
95855 |
};
|
95856 |
|
|
|
|
|
|
|
95857 |
latestPostsQuery[rest_base] = categories;
|
95858 |
|
95859 |
return {
|
@@ -95864,7 +96711,7 @@ var UAGBTimeline = function (_Component) {
|
|
95864 |
})(UAGBTimeline));
|
95865 |
|
95866 |
/***/ }),
|
95867 |
-
/*
|
95868 |
/*!********************************************!*\
|
95869 |
!*** ./node_modules/lodash/isUndefined.js ***!
|
95870 |
\********************************************/
|
@@ -95896,7 +96743,7 @@ module.exports = isUndefined;
|
|
95896 |
|
95897 |
|
95898 |
/***/ }),
|
95899 |
-
/*
|
95900 |
/*!***************************************!*\
|
95901 |
!*** ./node_modules/lodash/pickBy.js ***!
|
95902 |
\***************************************/
|
@@ -95904,8 +96751,8 @@ module.exports = isUndefined;
|
|
95904 |
/***/ (function(module, exports, __webpack_require__) {
|
95905 |
|
95906 |
var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
|
95907 |
-
baseIteratee = __webpack_require__(/*! ./_baseIteratee */
|
95908 |
-
basePickBy = __webpack_require__(/*! ./_basePickBy */
|
95909 |
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 79);
|
95910 |
|
95911 |
/**
|
@@ -95943,7 +96790,7 @@ module.exports = pickBy;
|
|
95943 |
|
95944 |
|
95945 |
/***/ }),
|
95946 |
-
/*
|
95947 |
/*!********************************************!*\
|
95948 |
!*** ./node_modules/lodash/_basePickBy.js ***!
|
95949 |
\********************************************/
|
@@ -95952,7 +96799,7 @@ module.exports = pickBy;
|
|
95952 |
/***/ (function(module, exports, __webpack_require__) {
|
95953 |
|
95954 |
var baseGet = __webpack_require__(/*! ./_baseGet */ 45),
|
95955 |
-
baseSet = __webpack_require__(/*! ./_baseSet */
|
95956 |
castPath = __webpack_require__(/*! ./_castPath */ 24);
|
95957 |
|
95958 |
/**
|
@@ -95984,7 +96831,7 @@ module.exports = basePickBy;
|
|
95984 |
|
95985 |
|
95986 |
/***/ }),
|
95987 |
-
/*
|
95988 |
/*!*****************************************!*\
|
95989 |
!*** ./node_modules/lodash/_baseSet.js ***!
|
95990 |
\*****************************************/
|
@@ -96042,7 +96889,7 @@ module.exports = baseSet;
|
|
96042 |
|
96043 |
|
96044 |
/***/ }),
|
96045 |
-
/*
|
96046 |
/*!***************************************************************!*\
|
96047 |
!*** ./src/blocks/timeline/post-timeline/components/Title.js ***!
|
96048 |
\***************************************************************/
|
@@ -96108,7 +96955,7 @@ var Title = function (_React$Component) {
|
|
96108 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
96109 |
|
96110 |
/***/ }),
|
96111 |
-
/*
|
96112 |
/*!***********************************************************************!*\
|
96113 |
!*** ./src/blocks/timeline/post-timeline/components/FeaturedImage.js ***!
|
96114 |
\***********************************************************************/
|
@@ -96177,7 +97024,7 @@ var FeaturedImage = function (_React$Component) {
|
|
96177 |
/* harmony default export */ __webpack_exports__["a"] = (FeaturedImage);
|
96178 |
|
96179 |
/***/ }),
|
96180 |
-
/*
|
96181 |
/*!*****************************************************************!*\
|
96182 |
!*** ./src/blocks/timeline/post-timeline/components/Excerpt.js ***!
|
96183 |
\*****************************************************************/
|
@@ -96236,7 +97083,7 @@ var Excerpt = function (_React$Component) {
|
|
96236 |
/* harmony default export */ __webpack_exports__["a"] = (Excerpt);
|
96237 |
|
96238 |
/***/ }),
|
96239 |
-
/*
|
96240 |
/*!*****************************************************************!*\
|
96241 |
!*** ./src/blocks/timeline/post-timeline/components/CtaLink.js ***!
|
96242 |
\*****************************************************************/
|
@@ -96296,7 +97143,7 @@ var CtaLink = function (_React$Component) {
|
|
96296 |
/* harmony default export */ __webpack_exports__["a"] = (CtaLink);
|
96297 |
|
96298 |
/***/ }),
|
96299 |
-
/*
|
96300 |
/*!****************************************************************!*\
|
96301 |
!*** ./src/blocks/timeline/post-timeline/components/Author.js ***!
|
96302 |
\****************************************************************/
|
@@ -96360,7 +97207,7 @@ var Author = function (_React$Component) {
|
|
96360 |
/* harmony default export */ __webpack_exports__["a"] = (Author);
|
96361 |
|
96362 |
/***/ }),
|
96363 |
-
/*
|
96364 |
/*!******************************************************************!*\
|
96365 |
!*** ./src/blocks/timeline/post-timeline/components/PostDate.js ***!
|
96366 |
\******************************************************************/
|
@@ -96420,7 +97267,7 @@ var PostDate = function (_React$Component) {
|
|
96420 |
/* harmony default export */ __webpack_exports__["a"] = (PostDate);
|
96421 |
|
96422 |
/***/ }),
|
96423 |
-
/*
|
96424 |
/*!**************************************************************!*\
|
96425 |
!*** ./src/blocks/timeline/post-timeline/components/Icon.js ***!
|
96426 |
\**************************************************************/
|
@@ -96474,7 +97321,7 @@ var Icon = function (_React$Component) {
|
|
96474 |
/* harmony default export */ __webpack_exports__["a"] = (Icon);
|
96475 |
|
96476 |
/***/ }),
|
96477 |
-
/*
|
96478 |
/*!********************************************!*\
|
96479 |
!*** ./src/blocks/call-to-action/block.js ***!
|
96480 |
\********************************************/
|
@@ -96483,13 +97330,13 @@ var Icon = function (_React$Component) {
|
|
96483 |
|
96484 |
"use strict";
|
96485 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
96486 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
96487 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */
|
96488 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */
|
96489 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
96490 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
96491 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
96492 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
96493 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
96494 |
/**
|
96495 |
* BLOCK: Call To Action.
|
@@ -96526,7 +97373,7 @@ registerBlockType("uagb/call-to-action", {
|
|
96526 |
});
|
96527 |
|
96528 |
/***/ }),
|
96529 |
-
/*
|
96530 |
/*!*******************************************!*\
|
96531 |
!*** ./src/blocks/call-to-action/edit.js ***!
|
96532 |
\*******************************************/
|
@@ -96541,12 +97388,12 @@ registerBlockType("uagb/call-to-action", {
|
|
96541 |
/* 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__);
|
96542 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
96543 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
96544 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! ./components/Title */
|
96545 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Description__ = __webpack_require__(/*! ./components/Description */
|
96546 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */
|
96547 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_CTA__ = __webpack_require__(/*! ./components/CTA */
|
96548 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
96549 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
96550 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
96551 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
96552 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
@@ -97450,7 +98297,7 @@ var UAGBCallToAction = function (_Component) {
|
|
97450 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBCallToAction);
|
97451 |
|
97452 |
/***/ }),
|
97453 |
-
/*
|
97454 |
/*!****************************************************!*\
|
97455 |
!*** ./src/blocks/call-to-action/inline-styles.js ***!
|
97456 |
\****************************************************/
|
@@ -97687,7 +98534,7 @@ function CtaStyle(props) {
|
|
97687 |
/* harmony default export */ __webpack_exports__["a"] = (CtaStyle);
|
97688 |
|
97689 |
/***/ }),
|
97690 |
-
/*
|
97691 |
/*!*******************************************!*\
|
97692 |
!*** ./src/blocks/call-to-action/save.js ***!
|
97693 |
\*******************************************/
|
@@ -97699,10 +98546,10 @@ function CtaStyle(props) {
|
|
97699 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
97700 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
97701 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
97702 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */
|
97703 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */
|
97704 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! ./classes */
|
97705 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_CTA__ = __webpack_require__(/*! ./components/CTA */
|
97706 |
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); } }
|
97707 |
|
97708 |
/**
|
@@ -97820,7 +98667,7 @@ function save(props) {
|
|
97820 |
}
|
97821 |
|
97822 |
/***/ }),
|
97823 |
-
/*
|
97824 |
/*!*************************************************!*\
|
97825 |
!*** ./src/blocks/call-to-action/deprecated.js ***!
|
97826 |
\*************************************************/
|
@@ -97831,12 +98678,12 @@ function save(props) {
|
|
97831 |
"use strict";
|
97832 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
97833 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
97834 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */
|
97835 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */
|
97836 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! ./classes */
|
97837 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */
|
97838 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_CTA__ = __webpack_require__(/*! ./components/CTA */
|
97839 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */
|
97840 |
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); } }
|
97841 |
|
97842 |
/**
|
@@ -98061,7 +98908,7 @@ var deprecated = [{
|
|
98061 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
98062 |
|
98063 |
/***/ }),
|
98064 |
-
/*
|
98065 |
/*!**************************************************************!*\
|
98066 |
!*** ./src/blocks/call-to-action/components/CallToAction.js ***!
|
98067 |
\**************************************************************/
|
@@ -98155,7 +99002,7 @@ var CallToAction = function (_React$Component) {
|
|
98155 |
/* harmony default export */ __webpack_exports__["a"] = (CallToAction);
|
98156 |
|
98157 |
/***/ }),
|
98158 |
-
/*
|
98159 |
/*!***********************************************!*\
|
98160 |
!*** ./src/blocks/call-to-action/editor.scss ***!
|
98161 |
\***********************************************/
|
@@ -98165,7 +99012,7 @@ var CallToAction = function (_React$Component) {
|
|
98165 |
// removed by extract-text-webpack-plugin
|
98166 |
|
98167 |
/***/ }),
|
98168 |
-
/*
|
98169 |
/*!**********************************************!*\
|
98170 |
!*** ./src/blocks/call-to-action/style.scss ***!
|
98171 |
\**********************************************/
|
@@ -98175,7 +99022,7 @@ var CallToAction = function (_React$Component) {
|
|
98175 |
// removed by extract-text-webpack-plugin
|
98176 |
|
98177 |
/***/ }),
|
98178 |
-
/*
|
98179 |
/*!************************************!*\
|
98180 |
!*** ./src/blocks/column/block.js ***!
|
98181 |
\************************************/
|
@@ -98184,13 +99031,13 @@ var CallToAction = function (_React$Component) {
|
|
98184 |
|
98185 |
"use strict";
|
98186 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
98187 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
98188 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */
|
98189 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */
|
98190 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
98191 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
98192 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
98193 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
98194 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
98195 |
/**
|
98196 |
* BLOCK: Column
|
@@ -98226,7 +99073,7 @@ registerBlockType("uagb/column", {
|
|
98226 |
});
|
98227 |
|
98228 |
/***/ }),
|
98229 |
-
/*
|
98230 |
/*!***********************************!*\
|
98231 |
!*** ./src/blocks/column/edit.js ***!
|
98232 |
\***********************************/
|
@@ -98238,7 +99085,8 @@ registerBlockType("uagb/column", {
|
|
98238 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
98239 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
98240 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
98241 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */
|
|
|
98242 |
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; }; }();
|
98243 |
|
98244 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
@@ -98255,6 +99103,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
|
|
98255 |
|
98256 |
|
98257 |
|
|
|
98258 |
var __ = wp.i18n.__;
|
98259 |
var _wp$blockEditor = wp.blockEditor,
|
98260 |
InnerBlocks = _wp$blockEditor.InnerBlocks,
|
@@ -98413,6 +99262,7 @@ var UAGBColumnEdit = function (_Component) {
|
|
98413 |
mobilePaddingType = _props$attributes.mobilePaddingType,
|
98414 |
tabletPaddingType = _props$attributes.tabletPaddingType,
|
98415 |
desktopPaddingType = _props$attributes.desktopPaddingType,
|
|
|
98416 |
setAttributes = _props.setAttributes,
|
98417 |
className = _props.className,
|
98418 |
isSelected = _props.isSelected;
|
@@ -99227,60 +100077,7 @@ var UAGBColumnEdit = function (_Component) {
|
|
99227 |
"gradient" == backgroundType && wp.element.createElement(
|
99228 |
Fragment,
|
99229 |
null,
|
99230 |
-
wp.element.createElement(
|
99231 |
-
title: __("Color Settings"),
|
99232 |
-
colorSettings: [{
|
99233 |
-
value: gradientColor2,
|
99234 |
-
onChange: function onChange(value) {
|
99235 |
-
return setAttributes({ gradientColor2: value });
|
99236 |
-
},
|
99237 |
-
label: __("Color 1")
|
99238 |
-
}, {
|
99239 |
-
value: gradientColor1,
|
99240 |
-
onChange: function onChange(value) {
|
99241 |
-
return setAttributes({ gradientColor1: value });
|
99242 |
-
},
|
99243 |
-
label: __("Color 2")
|
99244 |
-
}]
|
99245 |
-
}),
|
99246 |
-
wp.element.createElement(SelectControl, {
|
99247 |
-
label: __("Type"),
|
99248 |
-
value: gradientType,
|
99249 |
-
onChange: function onChange(value) {
|
99250 |
-
return setAttributes({ gradientType: value });
|
99251 |
-
},
|
99252 |
-
options: [{ value: "linear", label: __("Linear") }, { value: "radial", label: __("Radial") }]
|
99253 |
-
}),
|
99254 |
-
wp.element.createElement(RangeControl, {
|
99255 |
-
label: __("Location 1"),
|
99256 |
-
value: gradientLocation1,
|
99257 |
-
onChange: function onChange(value) {
|
99258 |
-
return setAttributes({ gradientLocation1: value });
|
99259 |
-
},
|
99260 |
-
min: 0,
|
99261 |
-
max: 100,
|
99262 |
-
allowReset: true
|
99263 |
-
}),
|
99264 |
-
wp.element.createElement(RangeControl, {
|
99265 |
-
label: __("Location 2"),
|
99266 |
-
value: gradientLocation2,
|
99267 |
-
onChange: function onChange(value) {
|
99268 |
-
return setAttributes({ gradientLocation2: value });
|
99269 |
-
},
|
99270 |
-
min: 0,
|
99271 |
-
max: 100,
|
99272 |
-
allowReset: true
|
99273 |
-
}),
|
99274 |
-
wp.element.createElement(RangeControl, {
|
99275 |
-
label: __("Angle"),
|
99276 |
-
value: gradientAngle,
|
99277 |
-
onChange: function onChange(value) {
|
99278 |
-
return setAttributes({ gradientAngle: value });
|
99279 |
-
},
|
99280 |
-
min: 0,
|
99281 |
-
max: 360,
|
99282 |
-
allowReset: true
|
99283 |
-
})
|
99284 |
),
|
99285 |
("color" == backgroundType || "image" == backgroundType && backgroundImage || "gradient" == backgroundType) && wp.element.createElement(RangeControl, {
|
99286 |
label: __("Opacity"),
|
@@ -99333,7 +100130,7 @@ var UAGBColumnEdit = function (_Component) {
|
|
99333 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBColumnEdit);
|
99334 |
|
99335 |
/***/ }),
|
99336 |
-
/*
|
99337 |
/*!**************************************!*\
|
99338 |
!*** ./src/blocks/column/styling.js ***!
|
99339 |
\**************************************/
|
@@ -99342,7 +100139,7 @@ var UAGBColumnEdit = function (_Component) {
|
|
99342 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
99343 |
|
99344 |
"use strict";
|
99345 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
99346 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
|
99347 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
|
99348 |
/**
|
@@ -99490,7 +100287,7 @@ function styling(props) {
|
|
99490 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
99491 |
|
99492 |
/***/ }),
|
99493 |
-
/*
|
99494 |
/*!********************************************!*\
|
99495 |
!*** ./src/blocks/column/inline-styles.js ***!
|
99496 |
\********************************************/
|
@@ -99525,7 +100322,8 @@ function inlineStyles(props, isEditor) {
|
|
99525 |
gradientOverlayType = _props$attributes.gradientOverlayType,
|
99526 |
gradientOverlayLocation1 = _props$attributes.gradientOverlayLocation1,
|
99527 |
gradientOverlayLocation2 = _props$attributes.gradientOverlayLocation2,
|
99528 |
-
gradientOverlayAngle = _props$attributes.gradientOverlayAngle
|
|
|
99529 |
|
99530 |
|
99531 |
var style = {};
|
@@ -99550,12 +100348,16 @@ function inlineStyles(props, isEditor) {
|
|
99550 |
style["background-color"] = "transparent";
|
99551 |
style["opacity"] = typeof backgroundOpacity != "undefined" ? backgroundOpacity / 100 : "";
|
99552 |
|
99553 |
-
if (
|
99554 |
-
|
99555 |
-
style["background-image"] = "linear-gradient(" + gradientAngle + "deg, " + gradientColor1 + " " + gradientLocation1 + "%, " + gradientColor2 + " " + gradientLocation2 + "%)";
|
99556 |
} else {
|
|
|
99557 |
|
99558 |
-
|
|
|
|
|
|
|
|
|
99559 |
}
|
99560 |
} else if ("color" == backgroundType) {
|
99561 |
|
@@ -99571,7 +100373,7 @@ function inlineStyles(props, isEditor) {
|
|
99571 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
99572 |
|
99573 |
/***/ }),
|
99574 |
-
/*
|
99575 |
/*!***********************************!*\
|
99576 |
!*** ./src/blocks/column/save.js ***!
|
99577 |
\***********************************/
|
@@ -99621,7 +100423,7 @@ function save(_ref) {
|
|
99621 |
}
|
99622 |
|
99623 |
/***/ }),
|
99624 |
-
/*
|
99625 |
/*!*****************************************!*\
|
99626 |
!*** ./src/blocks/column/deprecated.js ***!
|
99627 |
\*****************************************/
|
@@ -99632,7 +100434,7 @@ function save(_ref) {
|
|
99632 |
"use strict";
|
99633 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
99634 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
99635 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
99636 |
/**
|
99637 |
* BLOCK: Column - Deprecated Block
|
99638 |
*/
|
@@ -99682,7 +100484,7 @@ var deprecated = [{
|
|
99682 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
99683 |
|
99684 |
/***/ }),
|
99685 |
-
/*
|
99686 |
/*!**************************************!*\
|
99687 |
!*** ./src/blocks/column/style.scss ***!
|
99688 |
\**************************************/
|
@@ -99692,7 +100494,7 @@ var deprecated = [{
|
|
99692 |
// removed by extract-text-webpack-plugin
|
99693 |
|
99694 |
/***/ }),
|
99695 |
-
/*
|
99696 |
/*!***************************************!*\
|
99697 |
!*** ./src/blocks/column/editor.scss ***!
|
99698 |
\***************************************/
|
@@ -99702,7 +100504,7 @@ var deprecated = [{
|
|
99702 |
// removed by extract-text-webpack-plugin
|
99703 |
|
99704 |
/***/ }),
|
99705 |
-
/*
|
99706 |
/*!*************************************!*\
|
99707 |
!*** ./src/blocks/columns/block.js ***!
|
99708 |
\*************************************/
|
@@ -99713,14 +100515,14 @@ var deprecated = [{
|
|
99713 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
99714 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
99715 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
99716 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
99717 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */
|
99718 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
99719 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__shapes__ = __webpack_require__(/*! ./shapes */
|
99720 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__variations__ = __webpack_require__(/*! ./variations */
|
99721 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss__ = __webpack_require__(/*! ./style.scss */
|
99722 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__style_scss__);
|
99723 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
99724 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__editor_scss__);
|
99725 |
/**
|
99726 |
* BLOCK: Columns
|
@@ -99831,7 +100633,7 @@ registerBlockType("uagb/columns", {
|
|
99831 |
});
|
99832 |
|
99833 |
/***/ }),
|
99834 |
-
/*
|
99835 |
/*!************************************!*\
|
99836 |
!*** ./src/blocks/columns/edit.js ***!
|
99837 |
\************************************/
|
@@ -99840,22 +100642,23 @@ registerBlockType("uagb/columns", {
|
|
99840 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
99841 |
|
99842 |
"use strict";
|
99843 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__components_option_selector_control__ = __webpack_require__(/*! ../../components/option-selector-control */
|
99844 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
|
99845 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
|
99846 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */
|
99847 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
|
99848 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
99849 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
99850 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
|
99851 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
99852 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_lodash_map__);
|
99853 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__ = __webpack_require__(/*! lodash/dropRight */
|
99854 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__);
|
99855 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
99856 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__shapes__ = __webpack_require__(/*! ./shapes */
|
99857 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 81);
|
99858 |
-
/* harmony import */ var
|
|
|
99859 |
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"); } }; }();
|
99860 |
|
99861 |
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; }; }();
|
@@ -99882,6 +100685,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
|
|
99882 |
|
99883 |
|
99884 |
|
|
|
99885 |
var ALLOWED_BLOCKS = ["uagb/column"];
|
99886 |
|
99887 |
var __ = wp.i18n.__;
|
@@ -100159,7 +100963,8 @@ var UAGBColumns = function (_Component) {
|
|
100159 |
boxShadowVOffset = attributes.boxShadowVOffset,
|
100160 |
boxShadowBlur = attributes.boxShadowBlur,
|
100161 |
boxShadowSpread = attributes.boxShadowSpread,
|
100162 |
-
boxShadowPosition = attributes.boxShadowPosition
|
|
|
100163 |
|
100164 |
|
100165 |
var CustomTag = "" + tag;
|
@@ -101125,86 +101930,7 @@ var UAGBColumns = function (_Component) {
|
|
101125 |
"gradient" == backgroundType && wp.element.createElement(
|
101126 |
Fragment,
|
101127 |
null,
|
101128 |
-
wp.element.createElement(
|
101129 |
-
"p",
|
101130 |
-
{ className: "uagb-setting-label" },
|
101131 |
-
__("Color 1"),
|
101132 |
-
wp.element.createElement(
|
101133 |
-
"span",
|
101134 |
-
{ className: "components-base-control__label" },
|
101135 |
-
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: backgroundVideoColor } })
|
101136 |
-
)
|
101137 |
-
),
|
101138 |
-
wp.element.createElement(ColorPalette, {
|
101139 |
-
value: gradientColor1,
|
101140 |
-
onChange: function onChange(colorValue) {
|
101141 |
-
return setAttributes({ gradientColor1: colorValue });
|
101142 |
-
},
|
101143 |
-
allowReset: true
|
101144 |
-
}),
|
101145 |
-
wp.element.createElement(RangeControl, {
|
101146 |
-
label: __("Location 1"),
|
101147 |
-
value: gradientLocation1,
|
101148 |
-
onChange: function onChange(value) {
|
101149 |
-
return setAttributes({ gradientLocation1: value });
|
101150 |
-
},
|
101151 |
-
min: 0,
|
101152 |
-
max: 100,
|
101153 |
-
allowReset: true
|
101154 |
-
}),
|
101155 |
-
wp.element.createElement(
|
101156 |
-
"p",
|
101157 |
-
{ className: "uagb-setting-label" },
|
101158 |
-
__("Color 2"),
|
101159 |
-
wp.element.createElement(
|
101160 |
-
"span",
|
101161 |
-
{ className: "components-base-control__label" },
|
101162 |
-
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: backgroundVideoColor } })
|
101163 |
-
)
|
101164 |
-
),
|
101165 |
-
wp.element.createElement(ColorPalette, {
|
101166 |
-
value: gradientColor2,
|
101167 |
-
onChange: function onChange(colorValue) {
|
101168 |
-
return setAttributes({ gradientColor2: colorValue });
|
101169 |
-
},
|
101170 |
-
allowReset: true
|
101171 |
-
}),
|
101172 |
-
wp.element.createElement(RangeControl, {
|
101173 |
-
label: __("Location 2"),
|
101174 |
-
value: gradientLocation2,
|
101175 |
-
onChange: function onChange(value) {
|
101176 |
-
return setAttributes({ gradientLocation2: value });
|
101177 |
-
},
|
101178 |
-
min: 0,
|
101179 |
-
max: 100,
|
101180 |
-
allowReset: true
|
101181 |
-
}),
|
101182 |
-
wp.element.createElement(SelectControl, {
|
101183 |
-
label: __("Type"),
|
101184 |
-
value: gradientType,
|
101185 |
-
onChange: function onChange(value) {
|
101186 |
-
return setAttributes({ gradientType: value });
|
101187 |
-
},
|
101188 |
-
options: [{ value: "linear", label: __("Linear") }, { value: "radial", label: __("Radial") }]
|
101189 |
-
}),
|
101190 |
-
"linear" == gradientType && wp.element.createElement(RangeControl, {
|
101191 |
-
label: __("Angle"),
|
101192 |
-
value: gradientAngle,
|
101193 |
-
onChange: function onChange(value) {
|
101194 |
-
return setAttributes({ gradientAngle: value });
|
101195 |
-
},
|
101196 |
-
min: 0,
|
101197 |
-
max: 360,
|
101198 |
-
allowReset: true
|
101199 |
-
}),
|
101200 |
-
"radial" == gradientType && wp.element.createElement(SelectControl, {
|
101201 |
-
label: __("Type"),
|
101202 |
-
value: gradientPosition,
|
101203 |
-
onChange: function onChange(value) {
|
101204 |
-
return setAttributes({ gradientPosition: value });
|
101205 |
-
},
|
101206 |
-
options: [{ value: "center center", label: __("Center Center") }, { value: "center left", label: __("Center Left") }, { value: "center right", label: __("Center Right") }, { value: "top center", label: __("Top Center") }, { value: "top left", label: __("Top Left") }, { value: "top right", label: __("Top Right") }, { value: "bottom center", label: __("Bottom Center") }, { value: "bottom left", label: __("Bottom Left") }, { value: "bottom right", label: __("Bottom Right") }]
|
101207 |
-
})
|
101208 |
),
|
101209 |
"video" == backgroundType && wp.element.createElement(
|
101210 |
BaseControl,
|
@@ -101436,7 +102162,7 @@ var applyWithSelect = withSelect(function (select, props) {
|
|
101436 |
/* harmony default export */ __webpack_exports__["a"] = (compose(withNotices, applyWithSelect)(UAGBColumns));
|
101437 |
|
101438 |
/***/ }),
|
101439 |
-
/*
|
101440 |
/*!*********************************************************!*\
|
101441 |
!*** ./src/components/option-selector-control/index.js ***!
|
101442 |
\*********************************************************/
|
@@ -101582,7 +102308,7 @@ var OptionSelectorControl = function (_Component) {
|
|
101582 |
/* harmony default export */ __webpack_exports__["a"] = (OptionSelectorControl);
|
101583 |
|
101584 |
/***/ }),
|
101585 |
-
/*
|
101586 |
/*!***************************************!*\
|
101587 |
!*** ./src/blocks/columns/styling.js ***!
|
101588 |
\***************************************/
|
@@ -101591,9 +102317,9 @@ var OptionSelectorControl = function (_Component) {
|
|
101591 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
101592 |
|
101593 |
"use strict";
|
101594 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */
|
101595 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
|
101596 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */
|
101597 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
|
101598 |
/**
|
101599 |
* Returns Dynamic Generated CSS
|
@@ -101658,7 +102384,8 @@ function styling(props) {
|
|
101658 |
boxShadowVOffset = _props$attributes.boxShadowVOffset,
|
101659 |
boxShadowBlur = _props$attributes.boxShadowBlur,
|
101660 |
boxShadowSpread = _props$attributes.boxShadowSpread,
|
101661 |
-
boxShadowPosition = _props$attributes.boxShadowPosition
|
|
|
101662 |
|
101663 |
|
101664 |
var max_width = "100%";
|
@@ -101728,13 +102455,16 @@ function styling(props) {
|
|
101728 |
|
101729 |
selectors[" > .uagb-columns__overlay"]["background-color"] = "transparent";
|
101730 |
selectors[" > .uagb-columns__overlay"]["opacity"] = typeof backgroundOpacity != "undefined" ? backgroundOpacity / 100 : "";
|
101731 |
-
|
101732 |
-
|
101733 |
-
|
101734 |
-
selectors[" > .uagb-columns__overlay"]["background-image"] = "linear-gradient(" + gradientAngle + "deg, " + gradientColor1 + " " + gradientLocation1 + "%, " + gradientColor2 + " " + gradientLocation2 + "%)";
|
101735 |
} else {
|
|
|
101736 |
|
101737 |
-
|
|
|
|
|
|
|
|
|
101738 |
}
|
101739 |
}
|
101740 |
|
@@ -101789,7 +102519,7 @@ function styling(props) {
|
|
101789 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
101790 |
|
101791 |
/***/ }),
|
101792 |
-
/*
|
101793 |
/*!*********************************************!*\
|
101794 |
!*** ./src/blocks/columns/inline-styles.js ***!
|
101795 |
\*********************************************/
|
@@ -101859,7 +102589,7 @@ function inlineStyles(props, isEditor) {
|
|
101859 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
101860 |
|
101861 |
/***/ }),
|
101862 |
-
/*
|
101863 |
/*!******************************************!*\
|
101864 |
!*** ./node_modules/lodash/dropRight.js ***!
|
101865 |
\******************************************/
|
@@ -101908,7 +102638,7 @@ module.exports = dropRight;
|
|
101908 |
|
101909 |
|
101910 |
/***/ }),
|
101911 |
-
/*
|
101912 |
/*!******************************************!*\
|
101913 |
!*** ./src/blocks/columns/deprecated.js ***!
|
101914 |
\******************************************/
|
@@ -101919,8 +102649,8 @@ module.exports = dropRight;
|
|
101919 |
"use strict";
|
101920 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
101921 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
101922 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__shapes__ = __webpack_require__(/*! ./shapes */
|
101923 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
101924 |
/**
|
101925 |
* BLOCK: Columns - Deprecated Block
|
101926 |
*/
|
@@ -102080,7 +102810,7 @@ var deprecated = [{
|
|
102080 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
102081 |
|
102082 |
/***/ }),
|
102083 |
-
/*
|
102084 |
/*!******************************************!*\
|
102085 |
!*** ./src/blocks/columns/variations.js ***!
|
102086 |
\******************************************/
|
@@ -102089,8 +102819,8 @@ var deprecated = [{
|
|
102089 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
102090 |
|
102091 |
"use strict";
|
102092 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__icons__ = __webpack_require__(/*! ./icons */
|
102093 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__wordpress_i18n__ = __webpack_require__(/*! @wordpress/i18n */
|
102094 |
/**
|
102095 |
* Internal dependencies
|
102096 |
*/
|
@@ -102189,7 +102919,7 @@ var variations = [{
|
|
102189 |
/* harmony default export */ __webpack_exports__["a"] = (variations);
|
102190 |
|
102191 |
/***/ }),
|
102192 |
-
/*
|
102193 |
/*!************************************************************!*\
|
102194 |
!*** ./node_modules/@wordpress/i18n/build-module/index.js ***!
|
102195 |
\************************************************************/
|
@@ -102204,11 +102934,11 @@ var variations = [{
|
|
102204 |
/* unused harmony export _n */
|
102205 |
/* unused harmony export _nx */
|
102206 |
/* unused harmony export sprintf */
|
102207 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectSpread__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread */
|
102208 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_tannin__ = __webpack_require__(/*! tannin */
|
102209 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize__ = __webpack_require__(/*! memize */ 28);
|
102210 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_memize__);
|
102211 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js__ = __webpack_require__(/*! sprintf-js */
|
102212 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_sprintf_js__);
|
102213 |
|
102214 |
|
@@ -102386,7 +103116,7 @@ function sprintf(format) {
|
|
102386 |
//# sourceMappingURL=index.js.map
|
102387 |
|
102388 |
/***/ }),
|
102389 |
-
/*
|
102390 |
/*!*****************************************************************!*\
|
102391 |
!*** ./node_modules/@babel/runtime/helpers/esm/objectSpread.js ***!
|
102392 |
\*****************************************************************/
|
@@ -102396,7 +103126,7 @@ function sprintf(format) {
|
|
102396 |
|
102397 |
"use strict";
|
102398 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _objectSpread;
|
102399 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__defineProperty__ = __webpack_require__(/*! ./defineProperty */
|
102400 |
|
102401 |
function _objectSpread(target) {
|
102402 |
for (var i = 1; i < arguments.length; i++) {
|
@@ -102418,7 +103148,7 @@ function _objectSpread(target) {
|
|
102418 |
}
|
102419 |
|
102420 |
/***/ }),
|
102421 |
-
/*
|
102422 |
/*!*******************************************************************!*\
|
102423 |
!*** ./node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
102424 |
\*******************************************************************/
|
@@ -102444,7 +103174,7 @@ function _defineProperty(obj, key, value) {
|
|
102444 |
}
|
102445 |
|
102446 |
/***/ }),
|
102447 |
-
/*
|
102448 |
/*!**************************************!*\
|
102449 |
!*** ./node_modules/tannin/index.js ***!
|
102450 |
\**************************************/
|
@@ -102454,7 +103184,7 @@ function _defineProperty(obj, key, value) {
|
|
102454 |
|
102455 |
"use strict";
|
102456 |
/* harmony export (immutable) */ __webpack_exports__["a"] = Tannin;
|
102457 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_plural_forms__ = __webpack_require__(/*! @tannin/plural-forms */
|
102458 |
|
102459 |
|
102460 |
/**
|
@@ -102598,7 +103328,7 @@ Tannin.prototype.dcnpgettext = function( domain, context, singular, plural, n )
|
|
102598 |
|
102599 |
|
102600 |
/***/ }),
|
102601 |
-
/*
|
102602 |
/*!****************************************************!*\
|
102603 |
!*** ./node_modules/@tannin/plural-forms/index.js ***!
|
102604 |
\****************************************************/
|
@@ -102608,7 +103338,7 @@ Tannin.prototype.dcnpgettext = function( domain, context, singular, plural, n )
|
|
102608 |
|
102609 |
"use strict";
|
102610 |
/* harmony export (immutable) */ __webpack_exports__["a"] = pluralForms;
|
102611 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_compile__ = __webpack_require__(/*! @tannin/compile */
|
102612 |
|
102613 |
|
102614 |
/**
|
@@ -102630,7 +103360,7 @@ function pluralForms( expression ) {
|
|
102630 |
|
102631 |
|
102632 |
/***/ }),
|
102633 |
-
/*
|
102634 |
/*!***********************************************!*\
|
102635 |
!*** ./node_modules/@tannin/compile/index.js ***!
|
102636 |
\***********************************************/
|
@@ -102640,8 +103370,8 @@ function pluralForms( expression ) {
|
|
102640 |
|
102641 |
"use strict";
|
102642 |
/* harmony export (immutable) */ __webpack_exports__["a"] = compile;
|
102643 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_postfix__ = __webpack_require__(/*! @tannin/postfix */
|
102644 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__tannin_evaluate__ = __webpack_require__(/*! @tannin/evaluate */
|
102645 |
|
102646 |
|
102647 |
|
@@ -102674,7 +103404,7 @@ function compile( expression ) {
|
|
102674 |
|
102675 |
|
102676 |
/***/ }),
|
102677 |
-
/*
|
102678 |
/*!***********************************************!*\
|
102679 |
!*** ./node_modules/@tannin/postfix/index.js ***!
|
102680 |
\***********************************************/
|
@@ -102811,7 +103541,7 @@ function postfix( expression ) {
|
|
102811 |
|
102812 |
|
102813 |
/***/ }),
|
102814 |
-
/*
|
102815 |
/*!************************************************!*\
|
102816 |
!*** ./node_modules/@tannin/evaluate/index.js ***!
|
102817 |
\************************************************/
|
@@ -102934,7 +103664,7 @@ function evaluate( postfix, variables ) {
|
|
102934 |
|
102935 |
|
102936 |
/***/ }),
|
102937 |
-
/*
|
102938 |
/*!*****************************************************************************!*\
|
102939 |
!*** ./node_modules/@wordpress/i18n/node_modules/sprintf-js/src/sprintf.js ***!
|
102940 |
\*****************************************************************************/
|
@@ -103177,7 +103907,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
|
|
103177 |
|
103178 |
|
103179 |
/***/ }),
|
103180 |
-
/*
|
103181 |
/*!***************************************!*\
|
103182 |
!*** ./src/blocks/columns/style.scss ***!
|
103183 |
\***************************************/
|
@@ -103187,7 +103917,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
|
|
103187 |
// removed by extract-text-webpack-plugin
|
103188 |
|
103189 |
/***/ }),
|
103190 |
-
/*
|
103191 |
/*!****************************************!*\
|
103192 |
!*** ./src/blocks/columns/editor.scss ***!
|
103193 |
\****************************************/
|
@@ -103197,7 +103927,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
|
|
103197 |
// removed by extract-text-webpack-plugin
|
103198 |
|
103199 |
/***/ }),
|
103200 |
-
/*
|
103201 |
/*!****************************************!*\
|
103202 |
!*** ./src/blocks/cf7-styler/block.js ***!
|
103203 |
\****************************************/
|
@@ -103206,10 +103936,10 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/* global window, exports, define */
|
|
103206 |
|
103207 |
"use strict";
|
103208 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
103209 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
103210 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
103211 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
103212 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */
|
103213 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
103214 |
/**
|
103215 |
* BLOCK: Contact Form 7 Styler
|
@@ -103260,7 +103990,7 @@ if (uagb_blocks_info.blocks["uagb/cf7-styler"]["is_active"]) {
|
|
103260 |
}
|
103261 |
|
103262 |
/***/ }),
|
103263 |
-
/*
|
103264 |
/*!***************************************!*\
|
103265 |
!*** ./src/blocks/cf7-styler/edit.js ***!
|
103266 |
\***************************************/
|
@@ -103274,7 +104004,7 @@ if (uagb_blocks_info.blocks["uagb/cf7-styler"]["is_active"]) {
|
|
103274 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
103275 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
103276 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
103277 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */
|
103278 |
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; }; }();
|
103279 |
|
103280 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
@@ -104716,7 +105446,7 @@ var UAGBCF7 = function (_Component) {
|
|
104716 |
})(UAGBCF7));
|
104717 |
|
104718 |
/***/ }),
|
104719 |
-
/*
|
104720 |
/*!******************************************!*\
|
104721 |
!*** ./src/blocks/cf7-styler/styling.js ***!
|
104722 |
\******************************************/
|
@@ -105129,7 +105859,7 @@ function styling(props) {
|
|
105129 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
105130 |
|
105131 |
/***/ }),
|
105132 |
-
/*
|
105133 |
/*!*******************************************!*\
|
105134 |
!*** ./src/blocks/cf7-styler/editor.scss ***!
|
105135 |
\*******************************************/
|
@@ -105139,7 +105869,7 @@ function styling(props) {
|
|
105139 |
// removed by extract-text-webpack-plugin
|
105140 |
|
105141 |
/***/ }),
|
105142 |
-
/*
|
105143 |
/*!******************************************!*\
|
105144 |
!*** ./src/blocks/cf7-styler/style.scss ***!
|
105145 |
\******************************************/
|
@@ -105149,7 +105879,7 @@ function styling(props) {
|
|
105149 |
// removed by extract-text-webpack-plugin
|
105150 |
|
105151 |
/***/ }),
|
105152 |
-
/*
|
105153 |
/*!***************************************!*\
|
105154 |
!*** ./src/blocks/gf-styler/block.js ***!
|
105155 |
\***************************************/
|
@@ -105158,10 +105888,10 @@ function styling(props) {
|
|
105158 |
|
105159 |
"use strict";
|
105160 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
105161 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
105162 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
105163 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
105164 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */
|
105165 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
105166 |
/**
|
105167 |
* BLOCK: Gravity Form Styler
|
@@ -105212,7 +105942,7 @@ if (uagb_blocks_info.blocks["uagb/gf-styler"]["is_active"]) {
|
|
105212 |
}
|
105213 |
|
105214 |
/***/ }),
|
105215 |
-
/*
|
105216 |
/*!**************************************!*\
|
105217 |
!*** ./src/blocks/gf-styler/edit.js ***!
|
105218 |
\**************************************/
|
@@ -105228,7 +105958,7 @@ if (uagb_blocks_info.blocks["uagb/gf-styler"]["is_active"]) {
|
|
105228 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
105229 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
105230 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_map__);
|
105231 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */
|
105232 |
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; }; }();
|
105233 |
|
105234 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
@@ -106709,7 +107439,7 @@ var UAGBGF = function (_Component) {
|
|
106709 |
})(UAGBGF));
|
106710 |
|
106711 |
/***/ }),
|
106712 |
-
/*
|
106713 |
/*!*****************************************!*\
|
106714 |
!*** ./src/blocks/gf-styler/styling.js ***!
|
106715 |
\*****************************************/
|
@@ -107347,7 +108077,7 @@ function styling(props) {
|
|
107347 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
107348 |
|
107349 |
/***/ }),
|
107350 |
-
/*
|
107351 |
/*!******************************************!*\
|
107352 |
!*** ./src/blocks/gf-styler/editor.scss ***!
|
107353 |
\******************************************/
|
@@ -107357,7 +108087,7 @@ function styling(props) {
|
|
107357 |
// removed by extract-text-webpack-plugin
|
107358 |
|
107359 |
/***/ }),
|
107360 |
-
/*
|
107361 |
/*!*****************************************!*\
|
107362 |
!*** ./src/blocks/gf-styler/style.scss ***!
|
107363 |
\*****************************************/
|
@@ -107367,7 +108097,7 @@ function styling(props) {
|
|
107367 |
// removed by extract-text-webpack-plugin
|
107368 |
|
107369 |
/***/ }),
|
107370 |
-
/*
|
107371 |
/*!****************************************!*\
|
107372 |
!*** ./src/blocks/blockquote/block.js ***!
|
107373 |
\****************************************/
|
@@ -107376,13 +108106,13 @@ function styling(props) {
|
|
107376 |
|
107377 |
"use strict";
|
107378 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
107379 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */
|
107380 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */
|
107381 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
107382 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
107383 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
107384 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
107385 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
107386 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
107387 |
/**
|
107388 |
* BLOCK: Quote
|
@@ -107433,7 +108163,7 @@ registerBlockType("uagb/blockquote", {
|
|
107433 |
});
|
107434 |
|
107435 |
/***/ }),
|
107436 |
-
/*
|
107437 |
/*!***************************************!*\
|
107438 |
!*** ./src/blocks/blockquote/edit.js ***!
|
107439 |
\***************************************/
|
@@ -107444,11 +108174,11 @@ registerBlockType("uagb/blockquote", {
|
|
107444 |
"use strict";
|
107445 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
107446 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
107447 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */
|
107448 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */
|
107449 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */
|
107450 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */
|
107451 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */
|
107452 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
107453 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_map__);
|
107454 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
@@ -108882,7 +109612,7 @@ var UAGBBlockQuote = function (_Component) {
|
|
108882 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBBlockQuote);
|
108883 |
|
108884 |
/***/ }),
|
108885 |
-
/*
|
108886 |
/*!******************************************!*\
|
108887 |
!*** ./src/blocks/blockquote/styling.js ***!
|
108888 |
\******************************************/
|
@@ -109205,7 +109935,7 @@ function styling(props) {
|
|
109205 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
109206 |
|
109207 |
/***/ }),
|
109208 |
-
/*
|
109209 |
/*!*********************************************!*\
|
109210 |
!*** ./src/blocks/blockquote/deprecated.js ***!
|
109211 |
\*********************************************/
|
@@ -109214,15 +109944,15 @@ function styling(props) {
|
|
109214 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
109215 |
|
109216 |
"use strict";
|
109217 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__attributes__ = __webpack_require__(/*! ./attributes */
|
109218 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
|
109219 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
|
109220 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
109221 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_TweetButton__ = __webpack_require__(/*! ./components/TweetButton */
|
109222 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */
|
109223 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */
|
109224 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */
|
109225 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */
|
109226 |
/**
|
109227 |
* BLOCK: Advanced Heading - Deprecated Block
|
109228 |
*/
|
@@ -109360,7 +110090,7 @@ var deprecated = [{
|
|
109360 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
109361 |
|
109362 |
/***/ }),
|
109363 |
-
/*
|
109364 |
/*!*********************************************************!*\
|
109365 |
!*** ./src/blocks/blockquote/components/TweetButton.js ***!
|
109366 |
\*********************************************************/
|
@@ -109434,7 +110164,7 @@ var TweetButton = function (_React$Component) {
|
|
109434 |
/* harmony default export */ __webpack_exports__["a"] = (TweetButton);
|
109435 |
|
109436 |
/***/ }),
|
109437 |
-
/*
|
109438 |
/*!***************************************!*\
|
109439 |
!*** ./src/blocks/blockquote/save.js ***!
|
109440 |
\***************************************/
|
@@ -109447,10 +110177,10 @@ var TweetButton = function (_React$Component) {
|
|
109447 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
109448 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
109449 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
109450 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */
|
109451 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */
|
109452 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */
|
109453 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */
|
109454 |
/**
|
109455 |
* BLOCK: Blockquote - Save Block
|
109456 |
*/
|
@@ -109527,7 +110257,7 @@ function save(props) {
|
|
109527 |
}
|
109528 |
|
109529 |
/***/ }),
|
109530 |
-
/*
|
109531 |
/*!*******************************************!*\
|
109532 |
!*** ./src/blocks/blockquote/editor.scss ***!
|
109533 |
\*******************************************/
|
@@ -109537,7 +110267,7 @@ function save(props) {
|
|
109537 |
// removed by extract-text-webpack-plugin
|
109538 |
|
109539 |
/***/ }),
|
109540 |
-
/*
|
109541 |
/*!******************************************!*\
|
109542 |
!*** ./src/blocks/blockquote/style.scss ***!
|
109543 |
\******************************************/
|
@@ -109547,7 +110277,7 @@ function save(props) {
|
|
109547 |
// removed by extract-text-webpack-plugin
|
109548 |
|
109549 |
/***/ }),
|
109550 |
-
/*
|
109551 |
/*!**********************************************!*\
|
109552 |
!*** ./src/blocks/marketing-button/block.js ***!
|
109553 |
\**********************************************/
|
@@ -109556,13 +110286,13 @@ function save(props) {
|
|
109556 |
|
109557 |
"use strict";
|
109558 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
109559 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
109560 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
109561 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
109562 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
109563 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
109564 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
109565 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
109566 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
109567 |
/**
|
109568 |
* BLOCK: Marketing Button
|
@@ -109595,7 +110325,7 @@ registerBlockType("uagb/marketing-button", {
|
|
109595 |
});
|
109596 |
|
109597 |
/***/ }),
|
109598 |
-
/*
|
109599 |
/*!*********************************************!*\
|
109600 |
!*** ./src/blocks/marketing-button/edit.js ***!
|
109601 |
\*********************************************/
|
@@ -109606,7 +110336,7 @@ registerBlockType("uagb/marketing-button", {
|
|
109606 |
"use strict";
|
109607 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
109608 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
109609 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
109610 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
109611 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
109612 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
@@ -110620,7 +111350,7 @@ var UAGBMarketingButtonEdit = function (_Component) {
|
|
110620 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBMarketingButtonEdit);
|
110621 |
|
110622 |
/***/ }),
|
110623 |
-
/*
|
110624 |
/*!************************************************!*\
|
110625 |
!*** ./src/blocks/marketing-button/styling.js ***!
|
110626 |
\************************************************/
|
@@ -110630,7 +111360,7 @@ var UAGBMarketingButtonEdit = function (_Component) {
|
|
110630 |
|
110631 |
"use strict";
|
110632 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
|
110633 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */
|
110634 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
|
110635 |
/**
|
110636 |
* Returns Dynamic Generated CSS
|
@@ -110838,7 +111568,7 @@ function styling(props) {
|
|
110838 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
110839 |
|
110840 |
/***/ }),
|
110841 |
-
/*
|
110842 |
/*!*********************************************!*\
|
110843 |
!*** ./src/blocks/marketing-button/save.js ***!
|
110844 |
\*********************************************/
|
@@ -110918,7 +111648,7 @@ function save(props) {
|
|
110918 |
}
|
110919 |
|
110920 |
/***/ }),
|
110921 |
-
/*
|
110922 |
/*!***************************************************!*\
|
110923 |
!*** ./src/blocks/marketing-button/deprecated.js ***!
|
110924 |
\***************************************************/
|
@@ -110929,7 +111659,7 @@ function save(props) {
|
|
110929 |
"use strict";
|
110930 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
110931 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
110932 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
110933 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
110934 |
/**
|
110935 |
* BLOCK: Columns - Deprecated Block
|
@@ -111004,7 +111734,7 @@ var deprecated = [{
|
|
111004 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
111005 |
|
111006 |
/***/ }),
|
111007 |
-
/*
|
111008 |
/*!************************************************!*\
|
111009 |
!*** ./src/blocks/marketing-button/style.scss ***!
|
111010 |
\************************************************/
|
@@ -111014,7 +111744,7 @@ var deprecated = [{
|
|
111014 |
// removed by extract-text-webpack-plugin
|
111015 |
|
111016 |
/***/ }),
|
111017 |
-
/*
|
111018 |
/*!*************************************************!*\
|
111019 |
!*** ./src/blocks/marketing-button/editor.scss ***!
|
111020 |
\*************************************************/
|
@@ -111024,7 +111754,7 @@ var deprecated = [{
|
|
111024 |
// removed by extract-text-webpack-plugin
|
111025 |
|
111026 |
/***/ }),
|
111027 |
-
/*
|
111028 |
/*!***********************************************!*\
|
111029 |
!*** ./src/blocks/table-of-contents/block.js ***!
|
111030 |
\***********************************************/
|
@@ -111033,13 +111763,13 @@ var deprecated = [{
|
|
111033 |
|
111034 |
"use strict";
|
111035 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
111036 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
111037 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
111038 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
111039 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */
|
111040 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */
|
111041 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
111042 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
111043 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
111044 |
/**
|
111045 |
* BLOCK: Table of Contents
|
@@ -111073,7 +111803,7 @@ registerBlockType("uagb/table-of-contents", {
|
|
111073 |
});
|
111074 |
|
111075 |
/***/ }),
|
111076 |
-
/*
|
111077 |
/*!**********************************************!*\
|
111078 |
!*** ./src/blocks/table-of-contents/edit.js ***!
|
111079 |
\**********************************************/
|
@@ -111084,7 +111814,7 @@ registerBlockType("uagb/table-of-contents", {
|
|
111084 |
"use strict";
|
111085 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
111086 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
111087 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
111088 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
111089 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
111090 |
/* 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__);
|
@@ -111093,7 +111823,7 @@ registerBlockType("uagb/table-of-contents", {
|
|
111093 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
111094 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
111095 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
111096 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__toc__ = __webpack_require__(/*! ./toc */
|
111097 |
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; }; }();
|
111098 |
|
111099 |
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); } }
|
@@ -111123,7 +111853,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"
|
|
111123 |
|
111124 |
|
111125 |
|
111126 |
-
var striptags = __webpack_require__(/*! striptags */
|
111127 |
var __ = wp.i18n.__;
|
111128 |
var withSelect = wp.data.withSelect;
|
111129 |
var compose = wp.compose.compose;
|
@@ -112582,7 +113312,7 @@ var UAGBTableOfContentsEdit = function (_Component) {
|
|
112582 |
}))(UAGBTableOfContentsEdit));
|
112583 |
|
112584 |
/***/ }),
|
112585 |
-
/*
|
112586 |
/*!*************************************************!*\
|
112587 |
!*** ./src/blocks/table-of-contents/styling.js ***!
|
112588 |
\*************************************************/
|
@@ -112832,7 +113562,7 @@ function styling(props) {
|
|
112832 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
112833 |
|
112834 |
/***/ }),
|
112835 |
-
/*
|
112836 |
/*!**********************************************!*\
|
112837 |
!*** ./src/blocks/table-of-contents/save.js ***!
|
112838 |
\**********************************************/
|
@@ -112845,7 +113575,7 @@ function styling(props) {
|
|
112845 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
112846 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
112847 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
112848 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__toc__ = __webpack_require__(/*! ./toc */
|
112849 |
/**
|
112850 |
* BLOCK: Table of Contents - Save Block
|
112851 |
*/
|
@@ -112914,7 +113644,7 @@ function save(props) {
|
|
112914 |
}
|
112915 |
|
112916 |
/***/ }),
|
112917 |
-
/*
|
112918 |
/*!****************************************************!*\
|
112919 |
!*** ./src/blocks/table-of-contents/deprecated.js ***!
|
112920 |
\****************************************************/
|
@@ -112925,9 +113655,9 @@ function save(props) {
|
|
112925 |
"use strict";
|
112926 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
112927 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
112928 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__deprecated_components__ = __webpack_require__(/*! ./deprecated/components */
|
112929 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated_table_of_contents__ = __webpack_require__(/*! ./deprecated/table-of-contents */
|
112930 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */
|
112931 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
112932 |
/**
|
112933 |
* BLOCK: Table of Contents - Deprecated Block
|
@@ -113101,7 +113831,7 @@ var deprecated = [{
|
|
113101 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
113102 |
|
113103 |
/***/ }),
|
113104 |
-
/*
|
113105 |
/*!***************************************************************!*\
|
113106 |
!*** ./src/blocks/table-of-contents/deprecated/components.js ***!
|
113107 |
\***************************************************************/
|
@@ -113129,7 +113859,7 @@ var _wp$data = wp.data,
|
|
113129 |
|
113130 |
var __ = wp.i18n.__;
|
113131 |
|
113132 |
-
var striptags = __webpack_require__(/*! striptags */
|
113133 |
|
113134 |
var TableOfContents = function (_Component) {
|
113135 |
_inherits(TableOfContents, _Component);
|
@@ -113340,7 +114070,7 @@ var TableOfContents = function (_Component) {
|
|
113340 |
/* harmony default export */ __webpack_exports__["a"] = (TableOfContents);
|
113341 |
|
113342 |
/***/ }),
|
113343 |
-
/*
|
113344 |
/*!**********************************************************************!*\
|
113345 |
!*** ./src/blocks/table-of-contents/deprecated/table-of-contents.js ***!
|
113346 |
\**********************************************************************/
|
@@ -113473,7 +114203,7 @@ var TOC = function (_React$Component) {
|
|
113473 |
/* harmony default export */ __webpack_exports__["a"] = (TOC);
|
113474 |
|
113475 |
/***/ }),
|
113476 |
-
/*
|
113477 |
/*!*************************************************!*\
|
113478 |
!*** ./src/blocks/table-of-contents/style.scss ***!
|
113479 |
\*************************************************/
|
@@ -113483,7 +114213,7 @@ var TOC = function (_React$Component) {
|
|
113483 |
// removed by extract-text-webpack-plugin
|
113484 |
|
113485 |
/***/ }),
|
113486 |
-
/*
|
113487 |
/*!**************************************************!*\
|
113488 |
!*** ./src/blocks/table-of-contents/editor.scss ***!
|
113489 |
\**************************************************/
|
@@ -113493,7 +114223,7 @@ var TOC = function (_React$Component) {
|
|
113493 |
// removed by extract-text-webpack-plugin
|
113494 |
|
113495 |
/***/ }),
|
113496 |
-
/*
|
113497 |
/*!************************************!*\
|
113498 |
!*** ./src/blocks/how-to/block.js ***!
|
113499 |
\************************************/
|
@@ -113502,12 +114232,12 @@ var TOC = function (_React$Component) {
|
|
113502 |
|
113503 |
"use strict";
|
113504 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
113505 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
113506 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
113507 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
113508 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
113509 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
113510 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
113511 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
113512 |
/**
|
113513 |
* BLOCK: How-To Schema
|
@@ -113539,7 +114269,7 @@ registerBlockType("uagb/how-to", {
|
|
113539 |
});
|
113540 |
|
113541 |
/***/ }),
|
113542 |
-
/*
|
113543 |
/*!*****************************************!*\
|
113544 |
!*** ./src/blocks/how-to/attributes.js ***!
|
113545 |
\*****************************************/
|
@@ -113841,7 +114571,7 @@ var attributes = {
|
|
113841 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
113842 |
|
113843 |
/***/ }),
|
113844 |
-
/*
|
113845 |
/*!***********************************!*\
|
113846 |
!*** ./src/blocks/how-to/edit.js ***!
|
113847 |
\***********************************/
|
@@ -113852,13 +114582,13 @@ var attributes = {
|
|
113852 |
"use strict";
|
113853 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
113854 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
113855 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__schema_notices__ = __webpack_require__(/*! ./schema-notices */
|
113856 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
113857 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_times__);
|
113858 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */
|
113859 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
113860 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
113861 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */
|
113862 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
113863 |
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; };
|
113864 |
|
@@ -114953,7 +115683,7 @@ var UAGBHowTo = function (_Component) {
|
|
114953 |
}))(UAGBHowTo));
|
114954 |
|
114955 |
/***/ }),
|
114956 |
-
/*
|
114957 |
/*!*********************************************!*\
|
114958 |
!*** ./src/blocks/how-to/schema-notices.js ***!
|
114959 |
\*********************************************/
|
@@ -115117,7 +115847,7 @@ var SchemaNotices = function (_Component) {
|
|
115117 |
/* harmony default export */ __webpack_exports__["a"] = (SchemaNotices);
|
115118 |
|
115119 |
/***/ }),
|
115120 |
-
/*
|
115121 |
/*!**************************************!*\
|
115122 |
!*** ./src/blocks/how-to/styling.js ***!
|
115123 |
\**************************************/
|
@@ -115452,7 +116182,7 @@ function styling(props) {
|
|
115452 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
115453 |
|
115454 |
/***/ }),
|
115455 |
-
/*
|
115456 |
/*!***********************************!*\
|
115457 |
!*** ./src/blocks/how-to/save.js ***!
|
115458 |
\***********************************/
|
@@ -115678,7 +116408,7 @@ function save(props) {
|
|
115678 |
}
|
115679 |
|
115680 |
/***/ }),
|
115681 |
-
/*
|
115682 |
/*!***************************************!*\
|
115683 |
!*** ./src/blocks/how-to/editor.scss ***!
|
115684 |
\***************************************/
|
@@ -115688,7 +116418,7 @@ function save(props) {
|
|
115688 |
// removed by extract-text-webpack-plugin
|
115689 |
|
115690 |
/***/ }),
|
115691 |
-
/*
|
115692 |
/*!*********************************!*\
|
115693 |
!*** ./src/blocks/faq/block.js ***!
|
115694 |
\*********************************/
|
@@ -115697,12 +116427,12 @@ function save(props) {
|
|
115697 |
|
115698 |
"use strict";
|
115699 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
115700 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
115701 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
115702 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
115703 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
115704 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
115705 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
115706 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
115707 |
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; }
|
115708 |
|
@@ -115773,7 +116503,7 @@ registerBlockType("uagb/faq", {
|
|
115773 |
addFilter('editor.BlockEdit', 'uagb/faq', withFaq);
|
115774 |
|
115775 |
/***/ }),
|
115776 |
-
/*
|
115777 |
/*!**************************************!*\
|
115778 |
!*** ./src/blocks/faq/attributes.js ***!
|
115779 |
\**************************************/
|
@@ -115820,7 +116550,7 @@ var attributes = {
|
|
115820 |
},
|
115821 |
boxBgColor: {
|
115822 |
type: "string",
|
115823 |
-
default: "#
|
115824 |
},
|
115825 |
boxPaddingTypeMobile: {
|
115826 |
type: "string",
|
@@ -115868,11 +116598,11 @@ var attributes = {
|
|
115868 |
},
|
115869 |
borderRadius: {
|
115870 |
type: "number",
|
115871 |
-
default:
|
115872 |
},
|
115873 |
borderColor: {
|
115874 |
type: "string",
|
115875 |
-
default: "#
|
115876 |
},
|
115877 |
questionTextColor: {
|
115878 |
type: "string",
|
@@ -115880,7 +116610,7 @@ var attributes = {
|
|
115880 |
},
|
115881 |
questionTextActiveColor: {
|
115882 |
type: "string",
|
115883 |
-
default: "#
|
115884 |
},
|
115885 |
questionPaddingTypeDesktop: {
|
115886 |
type: "string",
|
@@ -116046,15 +116776,15 @@ var attributes = {
|
|
116046 |
},
|
116047 |
iconSize: {
|
116048 |
type: "number",
|
116049 |
-
default:
|
116050 |
},
|
116051 |
iconSizeTablet: {
|
116052 |
type: "number",
|
116053 |
-
default:
|
116054 |
},
|
116055 |
iconSizeMobile: {
|
116056 |
type: "number",
|
116057 |
-
default:
|
116058 |
},
|
116059 |
iconSizeType: {
|
116060 |
type: "string",
|
@@ -116099,12 +116829,17 @@ var attributes = {
|
|
116099 |
questionBottomPaddingMobile: {
|
116100 |
type: "number",
|
116101 |
default: 10
|
|
|
|
|
|
|
|
|
|
|
116102 |
}
|
116103 |
};
|
116104 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
116105 |
|
116106 |
/***/ }),
|
116107 |
-
/*
|
116108 |
/*!********************************!*\
|
116109 |
!*** ./src/blocks/faq/edit.js ***!
|
116110 |
\********************************/
|
@@ -116122,7 +116857,7 @@ var attributes = {
|
|
116122 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
|
116123 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
116124 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
|
116125 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */
|
116126 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize__ = __webpack_require__(/*! memize */ 28);
|
116127 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_memize__);
|
116128 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
@@ -116196,6 +116931,7 @@ var UAGBFaqEdit = function (_Component) {
|
|
116196 |
_this.onchangeIcon = _this.onchangeIcon.bind(_this);
|
116197 |
_this.onchangeActiveIcon = _this.onchangeActiveIcon.bind(_this);
|
116198 |
_this.onchangeLayout = _this.onchangeLayout.bind(_this);
|
|
|
116199 |
return _this;
|
116200 |
}
|
116201 |
|
@@ -116314,6 +117050,19 @@ var UAGBFaqEdit = function (_Component) {
|
|
116314 |
|
116315 |
setAttributes({ layout: value });
|
116316 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116317 |
}, {
|
116318 |
key: "render",
|
116319 |
value: function render() {
|
@@ -116394,7 +117143,8 @@ var UAGBFaqEdit = function (_Component) {
|
|
116394 |
questionLeftPaddingMobile = attributes.questionLeftPaddingMobile,
|
116395 |
hquestionPaddingMobile = attributes.hquestionPaddingMobile,
|
116396 |
vquestionPaddingMobile = attributes.vquestionPaddingMobile,
|
116397 |
-
questionBottomPaddingMobile = attributes.questionBottomPaddingMobile
|
|
|
116398 |
|
116399 |
|
116400 |
var getFaqChildTemplate = __WEBPACK_IMPORTED_MODULE_6_memize___default()(function (faq_count, faq) {
|
@@ -116919,6 +117669,14 @@ var UAGBFaqEdit = function (_Component) {
|
|
116919 |
initialOpen: false,
|
116920 |
className: "uagb__url-panel-body"
|
116921 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116922 |
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_8__components_typography__["a" /* default */], {
|
116923 |
label: __("Typography"),
|
116924 |
attributes: attributes,
|
@@ -117500,7 +118258,7 @@ var UAGBFaqEdit = function (_Component) {
|
|
117500 |
}))(UAGBFaqEdit));
|
117501 |
|
117502 |
/***/ }),
|
117503 |
-
/*
|
117504 |
/*!***********************************!*\
|
117505 |
!*** ./src/blocks/faq/styling.js ***!
|
117506 |
\***********************************/
|
@@ -117802,7 +118560,7 @@ function styling(props) {
|
|
117802 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
117803 |
|
117804 |
/***/ }),
|
117805 |
-
/*
|
117806 |
/*!********************************!*\
|
117807 |
!*** ./src/blocks/faq/save.js ***!
|
117808 |
\********************************/
|
@@ -117863,7 +118621,7 @@ function save(props) {
|
|
117863 |
}
|
117864 |
|
117865 |
/***/ }),
|
117866 |
-
/*
|
117867 |
/*!***********************************!*\
|
117868 |
!*** ./src/blocks/faq/style.scss ***!
|
117869 |
\***********************************/
|
@@ -117873,7 +118631,7 @@ function save(props) {
|
|
117873 |
// removed by extract-text-webpack-plugin
|
117874 |
|
117875 |
/***/ }),
|
117876 |
-
/*
|
117877 |
/*!************************************!*\
|
117878 |
!*** ./src/blocks/faq/editor.scss ***!
|
117879 |
\************************************/
|
@@ -117883,7 +118641,7 @@ function save(props) {
|
|
117883 |
// removed by extract-text-webpack-plugin
|
117884 |
|
117885 |
/***/ }),
|
117886 |
-
/*
|
117887 |
/*!***************************************!*\
|
117888 |
!*** ./src/blocks/faq-child/block.js ***!
|
117889 |
\***************************************/
|
@@ -117892,14 +118650,14 @@ function save(props) {
|
|
117892 |
|
117893 |
"use strict";
|
117894 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
117895 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
117896 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
117897 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
117898 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
117899 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
117900 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
117901 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
117902 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */
|
117903 |
/**
|
117904 |
* BLOCK: FAQ - Schema - Child
|
117905 |
*/
|
@@ -117932,7 +118690,7 @@ registerBlockType("uagb/faq-child", {
|
|
117932 |
});
|
117933 |
|
117934 |
/***/ }),
|
117935 |
-
/*
|
117936 |
/*!**************************************!*\
|
117937 |
!*** ./src/blocks/faq-child/edit.js ***!
|
117938 |
\**************************************/
|
@@ -118015,7 +118773,8 @@ var UAGBFaqChildEdit = function (_Component) {
|
|
118015 |
answer = attributes.answer,
|
118016 |
icon = attributes.icon,
|
118017 |
iconActive = attributes.iconActive,
|
118018 |
-
layout = attributes.layout
|
|
|
118019 |
|
118020 |
|
118021 |
var faqRenderIcon = function faqRenderIcon() {
|
@@ -118056,7 +118815,7 @@ var UAGBFaqChildEdit = function (_Component) {
|
|
118056 |
{ className: "uagb-faq-questions-button uagb-faq-questions" },
|
118057 |
'accordion' === layout && faqRenderIcon(),
|
118058 |
wp.element.createElement(RichText, {
|
118059 |
-
tagName:
|
118060 |
placeholder: __("Question"),
|
118061 |
value: question,
|
118062 |
onChange: function onChange(value) {
|
@@ -118112,7 +118871,7 @@ var UAGBFaqChildEdit = function (_Component) {
|
|
118112 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBFaqChildEdit);
|
118113 |
|
118114 |
/***/ }),
|
118115 |
-
/*
|
118116 |
/*!**************************************!*\
|
118117 |
!*** ./src/blocks/faq-child/save.js ***!
|
118118 |
\**************************************/
|
@@ -118144,7 +118903,8 @@ function save(props) {
|
|
118144 |
answer = _props$attributes.answer,
|
118145 |
icon = _props$attributes.icon,
|
118146 |
iconActive = _props$attributes.iconActive,
|
118147 |
-
layout = _props$attributes.layout
|
|
|
118148 |
|
118149 |
|
118150 |
var faqRenderIcon = function faqRenderIcon() {
|
@@ -118177,7 +118937,7 @@ function save(props) {
|
|
118177 |
{ className: "uagb-faq-questions-button uagb-faq-questions" },
|
118178 |
'accordion' === layout && faqRenderIcon(),
|
118179 |
wp.element.createElement(RichText.Content, {
|
118180 |
-
tagName:
|
118181 |
value: question,
|
118182 |
className: "uagb-question"
|
118183 |
})
|
@@ -118206,7 +118966,7 @@ function save(props) {
|
|
118206 |
}
|
118207 |
|
118208 |
/***/ }),
|
118209 |
-
/*
|
118210 |
/*!*****************************************!*\
|
118211 |
!*** ./src/blocks/faq-child/style.scss ***!
|
118212 |
\*****************************************/
|
@@ -118216,7 +118976,7 @@ function save(props) {
|
|
118216 |
// removed by extract-text-webpack-plugin
|
118217 |
|
118218 |
/***/ }),
|
118219 |
-
/*
|
118220 |
/*!******************************************!*\
|
118221 |
!*** ./src/blocks/faq-child/editor.scss ***!
|
118222 |
\******************************************/
|
@@ -118226,7 +118986,7 @@ function save(props) {
|
|
118226 |
// removed by extract-text-webpack-plugin
|
118227 |
|
118228 |
/***/ }),
|
118229 |
-
/*
|
118230 |
/*!********************************************!*\
|
118231 |
!*** ./src/blocks/faq-child/deprecated.js ***!
|
118232 |
\********************************************/
|
@@ -118238,7 +118998,7 @@ function save(props) {
|
|
118238 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
118239 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
118240 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
118241 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */
|
118242 |
/**
|
118243 |
* BLOCK: FAQ-Child - Deprecated Block
|
118244 |
*/
|
@@ -118326,7 +119086,7 @@ var deprecated = [{
|
|
118326 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
118327 |
|
118328 |
/***/ }),
|
118329 |
-
/*
|
118330 |
/*!*******************************************!*\
|
118331 |
!*** ./src/blocks/inline-notice/block.js ***!
|
118332 |
\*******************************************/
|
@@ -118335,12 +119095,12 @@ var deprecated = [{
|
|
118335 |
|
118336 |
"use strict";
|
118337 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
118338 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */
|
118339 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */
|
118340 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */
|
118341 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */
|
118342 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
118343 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
118344 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
118345 |
/**
|
118346 |
* BLOCK: Inline Notice Block.
|
@@ -118371,7 +119131,7 @@ registerBlockType("uagb/inline-notice", {
|
|
118371 |
});
|
118372 |
|
118373 |
/***/ }),
|
118374 |
-
/*
|
118375 |
/*!************************************************!*\
|
118376 |
!*** ./src/blocks/inline-notice/attributes.js ***!
|
118377 |
\************************************************/
|
@@ -118393,9 +119153,14 @@ var attributes = {
|
|
118393 |
default: null
|
118394 |
},
|
118395 |
noticeTitle: {
|
118396 |
-
|
|
|
118397 |
default: "Notice Title"
|
118398 |
},
|
|
|
|
|
|
|
|
|
118399 |
noticeContent: {
|
118400 |
type: "string",
|
118401 |
default: ""
|
@@ -118540,7 +119305,7 @@ var attributes = {
|
|
118540 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
118541 |
|
118542 |
/***/ }),
|
118543 |
-
/*
|
118544 |
/*!******************************************!*\
|
118545 |
!*** ./src/blocks/inline-notice/edit.js ***!
|
118546 |
\******************************************/
|
@@ -118551,7 +119316,7 @@ var attributes = {
|
|
118551 |
"use strict";
|
118552 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
118553 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
118554 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */
|
118555 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
118556 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
118557 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
|
@@ -118700,6 +119465,7 @@ var UAGBInlineNoticeEdit = function (_Component) {
|
|
118700 |
contentHrPadding = _props$attributes.contentHrPadding,
|
118701 |
titleVrPadding = _props$attributes.titleVrPadding,
|
118702 |
titleHrPadding = _props$attributes.titleHrPadding,
|
|
|
118703 |
setAttributes = _props.setAttributes,
|
118704 |
className = _props.className,
|
118705 |
attributes = _props.attributes;
|
@@ -118750,6 +119516,19 @@ var UAGBInlineNoticeEdit = function (_Component) {
|
|
118750 |
return wp.element.createElement(
|
118751 |
PanelBody,
|
118752 |
{ title: __("General"), initialOpen: true },
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118753 |
wp.element.createElement(SelectControl, {
|
118754 |
label: __('Notice Display'),
|
118755 |
options: noticeDismissOptions,
|
@@ -119014,7 +119793,7 @@ var UAGBInlineNoticeEdit = function (_Component) {
|
|
119014 |
},
|
119015 |
image_icon_html,
|
119016 |
wp.element.createElement(RichText, {
|
119017 |
-
tagName:
|
119018 |
placeholder: __('Notice Title', 'ultimate-addons-for-gutenberg'),
|
119019 |
keepPlaceholderOnFocus: true,
|
119020 |
value: noticeTitle,
|
@@ -119046,7 +119825,7 @@ var UAGBInlineNoticeEdit = function (_Component) {
|
|
119046 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBInlineNoticeEdit);
|
119047 |
|
119048 |
/***/ }),
|
119049 |
-
/*
|
119050 |
/*!*********************************************!*\
|
119051 |
!*** ./src/blocks/inline-notice/styling.js ***!
|
119052 |
\*********************************************/
|
@@ -119194,7 +119973,7 @@ function styling(props) {
|
|
119194 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
119195 |
|
119196 |
/***/ }),
|
119197 |
-
/*
|
119198 |
/*!******************************************!*\
|
119199 |
!*** ./src/blocks/inline-notice/save.js ***!
|
119200 |
\******************************************/
|
@@ -119226,6 +120005,7 @@ function save(props) {
|
|
119226 |
noticeTitle = attributes.noticeTitle,
|
119227 |
noticeContent = attributes.noticeContent,
|
119228 |
noticeAlignment = attributes.noticeAlignment,
|
|
|
119229 |
icon = attributes.icon,
|
119230 |
noticeDismiss = attributes.noticeDismiss,
|
119231 |
cookies = attributes.cookies,
|
@@ -119253,7 +120033,7 @@ function save(props) {
|
|
119253 |
image_icon_html,
|
119254 |
wp.element.createElement(RichText.Content, {
|
119255 |
value: noticeTitle,
|
119256 |
-
tagName:
|
119257 |
className: "uagb-notice-title"
|
119258 |
}),
|
119259 |
wp.element.createElement(RichText.Content, {
|
@@ -119265,7 +120045,7 @@ function save(props) {
|
|
119265 |
}
|
119266 |
|
119267 |
/***/ }),
|
119268 |
-
/*
|
119269 |
/*!*********************************************!*\
|
119270 |
!*** ./src/blocks/inline-notice/style.scss ***!
|
119271 |
\*********************************************/
|
@@ -119275,7 +120055,7 @@ function save(props) {
|
|
119275 |
// removed by extract-text-webpack-plugin
|
119276 |
|
119277 |
/***/ }),
|
119278 |
-
/*
|
119279 |
/*!**********************************************!*\
|
119280 |
!*** ./src/blocks/inline-notice/editor.scss ***!
|
119281 |
\**********************************************/
|
@@ -119285,7 +120065,7 @@ function save(props) {
|
|
119285 |
// removed by extract-text-webpack-plugin
|
119286 |
|
119287 |
/***/ }),
|
119288 |
-
/*
|
119289 |
/*!***************************************!*\
|
119290 |
!*** ./src/blocks/wp-search/block.js ***!
|
119291 |
\***************************************/
|
@@ -119293,13 +120073,13 @@ function save(props) {
|
|
119293 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
119294 |
|
119295 |
"use strict";
|
119296 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss__ = __webpack_require__(/*! ./style.scss */
|
119297 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__style_scss__);
|
119298 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss__ = __webpack_require__(/*! ./editor.scss */
|
119299 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__editor_scss__);
|
119300 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */
|
119301 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */
|
119302 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */
|
119303 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
119304 |
/**
|
119305 |
* BLOCK: WP-Search
|
@@ -119331,7 +120111,7 @@ registerBlockType("uagb/wp-search", {
|
|
119331 |
});
|
119332 |
|
119333 |
/***/ }),
|
119334 |
-
/*
|
119335 |
/*!*****************************************!*\
|
119336 |
!*** ./src/blocks/wp-search/style.scss ***!
|
119337 |
\*****************************************/
|
@@ -119341,7 +120121,7 @@ registerBlockType("uagb/wp-search", {
|
|
119341 |
// removed by extract-text-webpack-plugin
|
119342 |
|
119343 |
/***/ }),
|
119344 |
-
/*
|
119345 |
/*!******************************************!*\
|
119346 |
!*** ./src/blocks/wp-search/editor.scss ***!
|
119347 |
\******************************************/
|
@@ -119351,7 +120131,7 @@ registerBlockType("uagb/wp-search", {
|
|
119351 |
// removed by extract-text-webpack-plugin
|
119352 |
|
119353 |
/***/ }),
|
119354 |
-
/*
|
119355 |
/*!**************************************!*\
|
119356 |
!*** ./src/blocks/wp-search/save.js ***!
|
119357 |
\**************************************/
|
@@ -119449,7 +120229,7 @@ function save(props) {
|
|
119449 |
}
|
119450 |
|
119451 |
/***/ }),
|
119452 |
-
/*
|
119453 |
/*!**************************************!*\
|
119454 |
!*** ./src/blocks/wp-search/edit.js ***!
|
119455 |
\**************************************/
|
@@ -119458,7 +120238,7 @@ function save(props) {
|
|
119458 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
119459 |
|
119460 |
"use strict";
|
119461 |
-
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__styling__ = __webpack_require__(/*! ./styling */
|
119462 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 6);
|
119463 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
119464 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_classnames__ = __webpack_require__(/*! classnames */ 0);
|
@@ -120342,7 +121122,7 @@ var UAGBWpSearchEdit = function (_Component) {
|
|
120342 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBWpSearchEdit);
|
120343 |
|
120344 |
/***/ }),
|
120345 |
-
/*
|
120346 |
/*!*****************************************!*\
|
120347 |
!*** ./src/blocks/wp-search/styling.js ***!
|
120348 |
\*****************************************/
|
@@ -120593,7 +121373,7 @@ function styling(props) {
|
|
120593 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
120594 |
|
120595 |
/***/ }),
|
120596 |
-
/*
|
120597 |
/*!********************************************!*\
|
120598 |
!*** ./src/blocks/wp-search/attributes.js ***!
|
120599 |
\********************************************/
|
60 |
/******/ __webpack_require__.p = "";
|
61 |
/******/
|
62 |
/******/ // Load entry module and return exports
|
63 |
+
/******/ return __webpack_require__(__webpack_require__.s = 185);
|
64 |
/******/ })
|
65 |
/************************************************************************/
|
66 |
/******/ ([
|
207 |
"use strict";
|
208 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon__ = __webpack_require__(/*! ./UAGBIcon */ 9);
|
209 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__UAGBIcon___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__UAGBIcon__);
|
210 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__parseIcon__ = __webpack_require__(/*! ./parseIcon */ 415);
|
211 |
/**
|
212 |
* Set inline CSS class.
|
213 |
* @param {object} props - The block object.
|
545 |
/* WEBPACK VAR INJECTION */(function(process) {
|
546 |
|
547 |
if (process.env.NODE_ENV === 'production') {
|
548 |
+
module.exports = __webpack_require__(/*! ./cjs/react.production.min.js */ 258);
|
549 |
} else {
|
550 |
+
module.exports = __webpack_require__(/*! ./cjs/react.development.js */ 259);
|
551 |
}
|
552 |
|
553 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
562 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
563 |
|
564 |
"use strict";
|
565 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__font_typography__ = __webpack_require__(/*! ./font-typography */ 189);
|
566 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__range_typography__ = __webpack_require__(/*! ./range-typography */ 279);
|
567 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 280);
|
568 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 281);
|
569 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
570 |
/* unused harmony reexport TypographyStyles */
|
571 |
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; };
|
809 |
"use strict";
|
810 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
811 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_prop_types__);
|
812 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader__ = __webpack_require__(/*! webfontloader */ 282);
|
813 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_webfontloader___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_webfontloader__);
|
814 |
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; };
|
815 |
|
944 |
/*! exports used: default */
|
945 |
/***/ (function(module, exports, __webpack_require__) {
|
946 |
|
947 |
+
var baseTimes = __webpack_require__(/*! ./_baseTimes */ 124),
|
948 |
+
castFunction = __webpack_require__(/*! ./_castFunction */ 397),
|
949 |
toInteger = __webpack_require__(/*! ./toInteger */ 71);
|
950 |
|
951 |
/** Used as references for various `Number` constants. */
|
1023 |
* https://opensource.org/licenses/MIT
|
1024 |
*
|
1025 |
*/
|
1026 |
+
!function(e,t){ true?module.exports=t(__webpack_require__(/*! prop-types */ 15),__webpack_require__(/*! react */ 6),__webpack_require__(/*! classnames */ 0),__webpack_require__(/*! react-dom */ 18),__webpack_require__(/*! react-transition-group */ 407)):"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});
|
1027 |
//# sourceMappingURL=fonticonpicker.react.js.map
|
1028 |
|
1029 |
/***/ }),
|
1035 |
/*! all exports used */
|
1036 |
/***/ (function(module, exports, __webpack_require__) {
|
1037 |
|
1038 |
+
var freeGlobal = __webpack_require__(/*! ./_freeGlobal */ 115);
|
1039 |
|
1040 |
/** Detect free variable `self`. */
|
1041 |
var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
|
1142 |
*/
|
1143 |
|
1144 |
if (process.env.NODE_ENV !== 'production') {
|
1145 |
+
var ReactIs = __webpack_require__(/*! react-is */ 138);
|
1146 |
|
1147 |
// By explicitly using `prop-types` you are opting into new development behavior.
|
1148 |
// http://fb.me/prop-types-in-prod
|
1149 |
var throwOnDirectAccess = true;
|
1150 |
+
module.exports = __webpack_require__(/*! ./factoryWithTypeCheckers */ 276)(ReactIs.isElement, throwOnDirectAccess);
|
1151 |
} else {
|
1152 |
// By explicitly using `prop-types` you are opting into new production behavior.
|
1153 |
// http://fb.me/prop-types-in-prod
|
1154 |
+
module.exports = __webpack_require__(/*! ./factoryWithThrowingShims */ 277)();
|
1155 |
}
|
1156 |
|
1157 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
1166 |
/***/ (function(module, exports, __webpack_require__) {
|
1167 |
|
1168 |
var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
|
1169 |
+
baseIteratee = __webpack_require__(/*! ./_baseIteratee */ 113),
|
1170 |
+
baseMap = __webpack_require__(/*! ./_baseMap */ 250),
|
1171 |
isArray = __webpack_require__(/*! ./isArray */ 14);
|
1172 |
|
1173 |
/**
|
1304 |
// DCE check should happen before ReactDOM bundle executes so that
|
1305 |
// DevTools can report bad minification during injection.
|
1306 |
checkDCE();
|
1307 |
+
module.exports = __webpack_require__(/*! ./cjs/react-dom.production.min.js */ 267);
|
1308 |
} else {
|
1309 |
+
module.exports = __webpack_require__(/*! ./cjs/react-dom.development.js */ 270);
|
1310 |
}
|
1311 |
|
1312 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
1320 |
/*! all exports used */
|
1321 |
/***/ (function(module, exports, __webpack_require__) {
|
1322 |
|
1323 |
+
var baseIsNative = __webpack_require__(/*! ./_baseIsNative */ 202),
|
1324 |
+
getValue = __webpack_require__(/*! ./_getValue */ 207);
|
1325 |
|
1326 |
/**
|
1327 |
* Gets the native function at `key` of `object`.
|
1349 |
/***/ (function(module, exports, __webpack_require__) {
|
1350 |
|
1351 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 21),
|
1352 |
+
getRawTag = __webpack_require__(/*! ./_getRawTag */ 203),
|
1353 |
+
objectToString = __webpack_require__(/*! ./_objectToString */ 204);
|
1354 |
|
1355 |
/** `Object#toString` result references. */
|
1356 |
var nullTag = '[object Null]',
|
1404 |
/*! all exports used */
|
1405 |
/***/ (function(module, exports, __webpack_require__) {
|
1406 |
|
1407 |
+
var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */ 123),
|
1408 |
+
baseKeys = __webpack_require__(/*! ./_baseKeys */ 234),
|
1409 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
|
1410 |
|
1411 |
/**
|
1452 |
/*! all exports used */
|
1453 |
/***/ (function(module, exports, __webpack_require__) {
|
1454 |
|
1455 |
+
var isFunction = __webpack_require__(/*! ./isFunction */ 114),
|
1456 |
isLength = __webpack_require__(/*! ./isLength */ 59);
|
1457 |
|
1458 |
/**
|
1498 |
|
1499 |
var isArray = __webpack_require__(/*! ./isArray */ 14),
|
1500 |
isKey = __webpack_require__(/*! ./_isKey */ 60),
|
1501 |
+
stringToPath = __webpack_require__(/*! ./_stringToPath */ 242),
|
1502 |
+
toString = __webpack_require__(/*! ./toString */ 130);
|
1503 |
|
1504 |
/**
|
1505 |
* Casts `value` to a path array if it's not one.
|
1663 |
/***/ (function(module, exports, __webpack_require__) {
|
1664 |
|
1665 |
var assignValue = __webpack_require__(/*! ./_assignValue */ 48),
|
1666 |
+
baseAssignValue = __webpack_require__(/*! ./_baseAssignValue */ 144);
|
1667 |
|
1668 |
/**
|
1669 |
* Copies properties of `source` to `object`.
|
1843 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
1844 |
|
1845 |
"use strict";
|
1846 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */ 136);
|
1847 |
|
1848 |
|
1849 |
function css() {
|
2451 |
/*! all exports used */
|
2452 |
/***/ (function(module, exports, __webpack_require__) {
|
2453 |
|
2454 |
+
var listCacheClear = __webpack_require__(/*! ./_listCacheClear */ 192),
|
2455 |
+
listCacheDelete = __webpack_require__(/*! ./_listCacheDelete */ 193),
|
2456 |
+
listCacheGet = __webpack_require__(/*! ./_listCacheGet */ 194),
|
2457 |
+
listCacheHas = __webpack_require__(/*! ./_listCacheHas */ 195),
|
2458 |
+
listCacheSet = __webpack_require__(/*! ./_listCacheSet */ 196);
|
2459 |
|
2460 |
/**
|
2461 |
* Creates an list cache object.
|
2591 |
/*! all exports used */
|
2592 |
/***/ (function(module, exports, __webpack_require__) {
|
2593 |
|
2594 |
+
var isKeyable = __webpack_require__(/*! ./_isKeyable */ 216);
|
2595 |
|
2596 |
/**
|
2597 |
* Gets the data for `map`.
|
2681 |
/*! all exports used */
|
2682 |
/***/ (function(module, exports, __webpack_require__) {
|
2683 |
|
2684 |
+
/* WEBPACK VAR INJECTION */(function(module) {var freeGlobal = __webpack_require__(/*! ./_freeGlobal */ 115);
|
2685 |
|
2686 |
/** Detect free variable `exports`. */
|
2687 |
var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
|
2752 |
/*! all exports used */
|
2753 |
/***/ (function(module, exports, __webpack_require__) {
|
2754 |
|
2755 |
+
var DataView = __webpack_require__(/*! ./_DataView */ 236),
|
2756 |
Map = __webpack_require__(/*! ./_Map */ 51),
|
2757 |
+
Promise = __webpack_require__(/*! ./_Promise */ 237),
|
2758 |
+
Set = __webpack_require__(/*! ./_Set */ 238),
|
2759 |
+
WeakMap = __webpack_require__(/*! ./_WeakMap */ 239),
|
2760 |
baseGetTag = __webpack_require__(/*! ./_baseGetTag */ 20),
|
2761 |
+
toSource = __webpack_require__(/*! ./_toSource */ 116);
|
2762 |
|
2763 |
/** `Object#toString` result references. */
|
2764 |
var mapTag = '[object Map]',
|
2928 |
/*! all exports used */
|
2929 |
/***/ (function(module, exports, __webpack_require__) {
|
2930 |
|
2931 |
+
var baseAssignValue = __webpack_require__(/*! ./_baseAssignValue */ 144),
|
2932 |
eq = __webpack_require__(/*! ./eq */ 37);
|
2933 |
|
2934 |
/** Used for built-in method references. */
|
3721 |
/***/ (function(module, exports, __webpack_require__) {
|
3722 |
|
3723 |
var ListCache = __webpack_require__(/*! ./_ListCache */ 35),
|
3724 |
+
stackClear = __webpack_require__(/*! ./_stackClear */ 197),
|
3725 |
+
stackDelete = __webpack_require__(/*! ./_stackDelete */ 198),
|
3726 |
+
stackGet = __webpack_require__(/*! ./_stackGet */ 199),
|
3727 |
+
stackHas = __webpack_require__(/*! ./_stackHas */ 200),
|
3728 |
+
stackSet = __webpack_require__(/*! ./_stackSet */ 201);
|
3729 |
|
3730 |
/**
|
3731 |
* Creates a stack cache object to store key-value pairs.
|
3776 |
/*! all exports used */
|
3777 |
/***/ (function(module, exports) {
|
3778 |
|
3779 |
+
var g;
|
3780 |
+
|
3781 |
+
// This works in non-strict mode
|
3782 |
+
g = (function() {
|
3783 |
+
return this;
|
3784 |
+
})();
|
3785 |
+
|
3786 |
+
try {
|
3787 |
+
// This works if eval is allowed (see CSP)
|
3788 |
+
g = g || Function("return this")() || (1,eval)("this");
|
3789 |
+
} catch(e) {
|
3790 |
+
// This works if the window reference is available
|
3791 |
+
if(typeof window === "object")
|
3792 |
+
g = window;
|
3793 |
+
}
|
3794 |
+
|
3795 |
+
// g can still be undefined, but nothing to do about it...
|
3796 |
+
// We return undefined, instead of nothing here, so it's
|
3797 |
+
// easier to handle this case. if(!global) { ...}
|
3798 |
+
|
3799 |
+
module.exports = g;
|
3800 |
|
3801 |
|
3802 |
/***/ }),
|
3808 |
/*! all exports used */
|
3809 |
/***/ (function(module, exports, __webpack_require__) {
|
3810 |
|
3811 |
+
var mapCacheClear = __webpack_require__(/*! ./_mapCacheClear */ 208),
|
3812 |
+
mapCacheDelete = __webpack_require__(/*! ./_mapCacheDelete */ 215),
|
3813 |
+
mapCacheGet = __webpack_require__(/*! ./_mapCacheGet */ 217),
|
3814 |
+
mapCacheHas = __webpack_require__(/*! ./_mapCacheHas */ 218),
|
3815 |
+
mapCacheSet = __webpack_require__(/*! ./_mapCacheSet */ 219);
|
3816 |
|
3817 |
/**
|
3818 |
* Creates a map cache object to store key-value pairs.
|
3882 |
/*! all exports used */
|
3883 |
/***/ (function(module, exports, __webpack_require__) {
|
3884 |
|
3885 |
+
var arrayFilter = __webpack_require__(/*! ./_arrayFilter */ 230),
|
3886 |
+
stubArray = __webpack_require__(/*! ./stubArray */ 122);
|
3887 |
|
3888 |
/** Used for built-in method references. */
|
3889 |
var objectProto = Object.prototype;
|
3923 |
/*! all exports used */
|
3924 |
/***/ (function(module, exports, __webpack_require__) {
|
3925 |
|
3926 |
+
var baseIsArguments = __webpack_require__(/*! ./_baseIsArguments */ 231),
|
3927 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
|
3928 |
|
3929 |
/** Used for built-in method references. */
|
3971 |
/***/ (function(module, exports, __webpack_require__) {
|
3972 |
|
3973 |
/* WEBPACK VAR INJECTION */(function(module) {var root = __webpack_require__(/*! ./_root */ 12),
|
3974 |
+
stubFalse = __webpack_require__(/*! ./stubFalse */ 232);
|
3975 |
|
3976 |
/** Detect free variable `exports`. */
|
3977 |
var freeExports = typeof exports == 'object' && exports && !exports.nodeType && exports;
|
4020 |
/*! all exports used */
|
4021 |
/***/ (function(module, exports) {
|
4022 |
|
4023 |
+
module.exports = function(module) {
|
4024 |
+
if(!module.webpackPolyfill) {
|
4025 |
+
module.deprecate = function() {};
|
4026 |
+
module.paths = [];
|
4027 |
+
// module.parent = undefined by default
|
4028 |
+
if(!module.children) module.children = [];
|
4029 |
+
Object.defineProperty(module, "loaded", {
|
4030 |
+
enumerable: true,
|
4031 |
+
get: function() {
|
4032 |
+
return module.l;
|
4033 |
+
}
|
4034 |
+
});
|
4035 |
+
Object.defineProperty(module, "id", {
|
4036 |
+
enumerable: true,
|
4037 |
+
get: function() {
|
4038 |
+
return module.i;
|
4039 |
+
}
|
4040 |
+
});
|
4041 |
+
module.webpackPolyfill = 1;
|
4042 |
+
}
|
4043 |
+
return module;
|
4044 |
+
};
|
4045 |
|
4046 |
|
4047 |
/***/ }),
|
4286 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "c", function() { return jsx; });
|
4287 |
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "d", function() { return keyframes; });
|
4288 |
/* unused harmony export withEmotionCache */
|
4289 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__ = __webpack_require__(/*! @babel/runtime/helpers/inheritsLoose */ 260);
|
4290 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_inheritsLoose__);
|
4291 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 6);
|
4292 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
4293 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_cache__ = __webpack_require__(/*! @emotion/cache */ 134);
|
4294 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__emotion_utils__ = __webpack_require__(/*! @emotion/utils */ 263);
|
4295 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__emotion_serialize__ = __webpack_require__(/*! @emotion/serialize */ 136);
|
4296 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */ 135);
|
4297 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
|
4298 |
/* unused harmony reexport css */
|
4299 |
|
5140 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
5141 |
|
5142 |
"use strict";
|
5143 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate__ = __webpack_require__(/*! lodash/truncate */ 290);
|
5144 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_truncate___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_truncate__);
|
5145 |
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; }; }();
|
5146 |
|
5187 |
excerpt += " ...";
|
5188 |
}
|
5189 |
|
5190 |
+
if (attributes.displayPostExcerpt && attributes.displayPostContentRadio == "excerpt") {
|
5191 |
|
5192 |
return wp.element.createElement(
|
5193 |
"div",
|
5194 |
{ className: "uagb-post__excerpt" },
|
5195 |
wp.element.createElement("div", { dangerouslySetInnerHTML: { __html: excerpt } })
|
5196 |
);
|
5197 |
+
} else if (attributes.displayPostExcerpt && attributes.displayPostContentRadio == "full_post") {
|
5198 |
+
|
5199 |
+
return wp.element.createElement(
|
5200 |
+
"div",
|
5201 |
+
{ className: "uagb-post__excerpt uagb-full_post" },
|
5202 |
+
wp.element.createElement("div", { dangerouslySetInnerHTML: { __html: post.content.raw.trim() } })
|
5203 |
+
);
|
5204 |
} else {
|
5205 |
return null;
|
5206 |
}
|
5300 |
/*! all exports used */
|
5301 |
/***/ (function(module, exports, __webpack_require__) {
|
5302 |
|
5303 |
+
var toFinite = __webpack_require__(/*! ./toFinite */ 300);
|
5304 |
|
5305 |
/**
|
5306 |
* Converts `value` to an integer.
|
5379 |
attributes = _props.attributes;
|
5380 |
|
5381 |
|
5382 |
+
if (attributes.displayPostContentRadio == "full_post") {
|
5383 |
+
return null;
|
5384 |
+
}
|
5385 |
+
|
5386 |
var target = attributes.newTab ? "_blank" : "_self";
|
5387 |
|
5388 |
if (attributes.displayPostLink) {
|
5517 |
paginationAlignment = _props$attributes.paginationAlignment,
|
5518 |
inheritFromTheme = _props$attributes.inheritFromTheme,
|
5519 |
postPagination = _props$attributes.postPagination,
|
5520 |
+
paginationMarkup = _props$attributes.paginationMarkup,
|
5521 |
+
paginationType = _props$attributes.paginationType,
|
5522 |
+
paginationEventType = _props$attributes.paginationEventType,
|
5523 |
+
paginationAlign = _props$attributes.paginationAlign,
|
5524 |
+
paginationTextColor = _props$attributes.paginationTextColor,
|
5525 |
+
paginationMasonryBgColor = _props$attributes.paginationMasonryBgColor,
|
5526 |
+
paginationMasonryBorderStyle = _props$attributes.paginationMasonryBorderStyle,
|
5527 |
+
paginationMasonryBorderWidth = _props$attributes.paginationMasonryBorderWidth,
|
5528 |
+
paginationMasonryBorderRadius = _props$attributes.paginationMasonryBorderRadius,
|
5529 |
+
paginationMasonryBorderColor = _props$attributes.paginationMasonryBorderColor,
|
5530 |
+
paginationTextHoverColor = _props$attributes.paginationTextHoverColor,
|
5531 |
+
paginationBgHoverColor = _props$attributes.paginationBgHoverColor,
|
5532 |
+
paginationFontSize = _props$attributes.paginationFontSize,
|
5533 |
+
loaderColor = _props$attributes.loaderColor,
|
5534 |
+
loaderSize = _props$attributes.loaderSize,
|
5535 |
+
paginationButtonPaddingType = _props$attributes.paginationButtonPaddingType,
|
5536 |
+
vpaginationButtonPaddingMobile = _props$attributes.vpaginationButtonPaddingMobile,
|
5537 |
+
vpaginationButtonPaddingTablet = _props$attributes.vpaginationButtonPaddingTablet,
|
5538 |
+
vpaginationButtonPaddingDesktop = _props$attributes.vpaginationButtonPaddingDesktop,
|
5539 |
+
hpaginationButtonPaddingMobile = _props$attributes.hpaginationButtonPaddingMobile,
|
5540 |
+
hpaginationButtonPaddingTablet = _props$attributes.hpaginationButtonPaddingTablet,
|
5541 |
+
hpaginationButtonPaddingDesktop = _props$attributes.hpaginationButtonPaddingDesktop;
|
5542 |
|
5543 |
|
5544 |
var mobile_selectors = {};
|
5825 |
};
|
5826 |
}
|
5827 |
|
5828 |
+
if ('infinite' === paginationType) {
|
5829 |
+
|
5830 |
+
if ('button' === paginationEventType) {
|
5831 |
+
selectors[' .uagb-post__load-more-wrap'] = {
|
5832 |
+
'text-align': paginationAlign
|
5833 |
+
};
|
5834 |
+
selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button'] = {
|
5835 |
+
|
5836 |
+
'color': paginationTextColor,
|
5837 |
+
"background-color": paginationMasonryBgColor,
|
5838 |
+
"border-style": paginationMasonryBorderStyle,
|
5839 |
+
"border-width": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(paginationMasonryBorderWidth, 'px'),
|
5840 |
+
"border-radius": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(paginationMasonryBorderRadius, 'px'),
|
5841 |
+
"border-color": paginationMasonryBorderColor,
|
5842 |
+
"font-size": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(paginationFontSize, 'px'),
|
5843 |
+
"padding-top": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(vpaginationButtonPaddingDesktop, paginationButtonPaddingType),
|
5844 |
+
"padding-bottom": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(vpaginationButtonPaddingDesktop, paginationButtonPaddingType),
|
5845 |
+
"padding-right": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(hpaginationButtonPaddingDesktop, paginationButtonPaddingType),
|
5846 |
+
"padding-left": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(hpaginationButtonPaddingDesktop, paginationButtonPaddingType)
|
5847 |
+
|
5848 |
+
};
|
5849 |
+
selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button:hover'] = {
|
5850 |
+
'color': paginationTextHoverColor,
|
5851 |
+
"background-color": paginationBgHoverColor
|
5852 |
+
};
|
5853 |
+
mobile_selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button'] = {
|
5854 |
+
"padding-top": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(vpaginationButtonPaddingMobile, paginationButtonPaddingType),
|
5855 |
+
"padding-bottom": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(vpaginationButtonPaddingMobile, paginationButtonPaddingType),
|
5856 |
+
"padding-right": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(hpaginationButtonPaddingMobile, paginationButtonPaddingType),
|
5857 |
+
"padding-left": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(hpaginationButtonPaddingMobile, paginationButtonPaddingType)
|
5858 |
+
};
|
5859 |
+
tablet_selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button'] = {
|
5860 |
+
"padding-top": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(vpaginationButtonPaddingTablet, paginationButtonPaddingType),
|
5861 |
+
"padding-bottom": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(vpaginationButtonPaddingTablet, paginationButtonPaddingType),
|
5862 |
+
"padding-right": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(hpaginationButtonPaddingTablet, paginationButtonPaddingType),
|
5863 |
+
"padding-left": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(hpaginationButtonPaddingTablet, paginationButtonPaddingType)
|
5864 |
+
};
|
5865 |
+
}
|
5866 |
+
if ('scroll' === paginationEventType) {
|
5867 |
+
selectors['.uagb-post-grid .uagb-post-inf-loader div'] = {
|
5868 |
+
"width": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(loaderSize, "px"),
|
5869 |
+
"height": Object(__WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSSUnit__["a" /* default */])(loaderSize, "px"),
|
5870 |
+
"background-color": loaderColor
|
5871 |
+
};
|
5872 |
+
}
|
5873 |
+
}
|
5874 |
+
|
5875 |
mobile_selectors[" .uagb-post__text"] = {
|
5876 |
"padding": contentPaddingMobile + "px"
|
5877 |
};
|
6267 |
/*! all exports used */
|
6268 |
/***/ (function(module, exports, __webpack_require__) {
|
6269 |
|
6270 |
+
var overArg = __webpack_require__(/*! ./_overArg */ 126);
|
6271 |
|
6272 |
/** Built-in value references. */
|
6273 |
var getPrototype = overArg(Object.getPrototypeOf, Object);
|
6284 |
/*! all exports used */
|
6285 |
/***/ (function(module, exports, __webpack_require__) {
|
6286 |
|
6287 |
+
var baseGetAllKeys = __webpack_require__(/*! ./_baseGetAllKeys */ 121),
|
6288 |
+
getSymbolsIn = __webpack_require__(/*! ./_getSymbolsIn */ 151),
|
6289 |
+
keysIn = __webpack_require__(/*! ./keysIn */ 150);
|
6290 |
|
6291 |
/**
|
6292 |
* Creates an array of own and inherited enumerable property names and
|
6312 |
/*! all exports used */
|
6313 |
/***/ (function(module, exports, __webpack_require__) {
|
6314 |
|
6315 |
+
var Uint8Array = __webpack_require__(/*! ./_Uint8Array */ 119);
|
6316 |
|
6317 |
/**
|
6318 |
* Creates a clone of `arrayBuffer`.
|
6580 |
|
6581 |
/***/ }),
|
6582 |
/* 82 */
|
6583 |
+
/*!***************************************************!*\
|
6584 |
+
!*** ./src/components/gradient-settings/index.js ***!
|
6585 |
+
\***************************************************/
|
6586 |
+
/*! exports provided: default */
|
6587 |
+
/*! exports used: default */
|
6588 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
6589 |
+
|
6590 |
+
"use strict";
|
6591 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */ 83);
|
6592 |
+
|
6593 |
+
var __ = wp.i18n.__;
|
6594 |
+
var __experimentalPanelColorGradientSettings = wp.blockEditor.__experimentalPanelColorGradientSettings;
|
6595 |
+
|
6596 |
+
|
6597 |
+
function GradientSettings(_ref) {
|
6598 |
+
var attributes = _ref.attributes,
|
6599 |
+
setAttributes = _ref.setAttributes;
|
6600 |
+
var gradientValue = attributes.gradientValue,
|
6601 |
+
gradientAngle = attributes.gradientAngle,
|
6602 |
+
gradientColor1 = attributes.gradientColor1,
|
6603 |
+
gradientColor2 = attributes.gradientColor2,
|
6604 |
+
gradientLocation1 = attributes.gradientLocation1,
|
6605 |
+
gradientLocation2 = attributes.gradientLocation2,
|
6606 |
+
gradientPosition = attributes.gradientPosition,
|
6607 |
+
gradientType = attributes.gradientType;
|
6608 |
+
|
6609 |
+
//set the gradient value to settings if new gradientvalue is not set
|
6610 |
+
|
6611 |
+
if ("" === gradientValue) {
|
6612 |
+
var rgb_gradientColor1 = Object(__WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_hexToRgba__["a" /* default */])(gradientColor1);
|
6613 |
+
var rgb_gradientColor2 = Object(__WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_hexToRgba__["a" /* default */])(gradientColor2);
|
6614 |
+
|
6615 |
+
if ("linear" === gradientType) {
|
6616 |
+
var value = "linear-gradient(" + gradientAngle + "deg," + rgb_gradientColor1 + " " + gradientLocation1 + "%, " + rgb_gradientColor2 + " " + gradientLocation2 + "%)";
|
6617 |
+
setAttributes({ gradientValue: value });
|
6618 |
+
} else {
|
6619 |
+
var value = "radial-gradient(at " + gradientPosition + ", " + rgb_gradientColor1 + " " + gradientLocation1 + "%, " + rgb_gradientColor2 + " " + gradientLocation2 + "%)";
|
6620 |
+
setAttributes({ gradientValue: value });
|
6621 |
+
}
|
6622 |
+
}
|
6623 |
+
|
6624 |
+
var onGradientChange = function onGradientChange(value) {
|
6625 |
+
setAttributes({ gradientValue: value });
|
6626 |
+
setAttributes({ gradientAngle: "", gradientColor1: "", gradientColor2: "", gradientLocation1: "", gradientLocation2: "" });
|
6627 |
+
};
|
6628 |
+
|
6629 |
+
return wp.element.createElement(__experimentalPanelColorGradientSettings, {
|
6630 |
+
title: __("Color Settings"),
|
6631 |
+
initialOpen: true,
|
6632 |
+
settings: [{
|
6633 |
+
label: __("Overlay Color"),
|
6634 |
+
gradientValue: gradientValue,
|
6635 |
+
onGradientChange: onGradientChange
|
6636 |
+
}]
|
6637 |
+
});
|
6638 |
+
}
|
6639 |
+
|
6640 |
+
/* harmony default export */ __webpack_exports__["a"] = (GradientSettings);
|
6641 |
+
|
6642 |
+
/***/ }),
|
6643 |
+
/* 83 */
|
6644 |
+
/*!************************************************!*\
|
6645 |
+
!*** ./dist/blocks/uagb-controls/hexToRgba.js ***!
|
6646 |
+
\************************************************/
|
6647 |
+
/*! exports provided: default */
|
6648 |
+
/*! exports used: default */
|
6649 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
6650 |
+
|
6651 |
+
"use strict";
|
6652 |
+
/**
|
6653 |
+
* Get HEX color and return RGBA. Default return RGB color.
|
6654 |
+
* @param {string} color - The color string.
|
6655 |
+
* @return {boolean} opacity The inline CSS class.
|
6656 |
+
*/
|
6657 |
+
|
6658 |
+
function hexToRgba(color, opacity) {
|
6659 |
+
|
6660 |
+
if (undefined == color) {
|
6661 |
+
return "";
|
6662 |
+
}
|
6663 |
+
|
6664 |
+
if (undefined == opacity || "" == opacity) {
|
6665 |
+
opacity = 100;
|
6666 |
+
}
|
6667 |
+
|
6668 |
+
color = color.replace("#", "");
|
6669 |
+
|
6670 |
+
opacity = typeof opacity != "undefined" ? opacity / 100 : 1;
|
6671 |
+
|
6672 |
+
// Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF")
|
6673 |
+
var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
|
6674 |
+
color = color.replace(shorthandRegex, function (m, r, g, b) {
|
6675 |
+
return r + r + g + g + b + b;
|
6676 |
+
});
|
6677 |
+
|
6678 |
+
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(color);
|
6679 |
+
|
6680 |
+
var parsed_color = result ? {
|
6681 |
+
r: parseInt(result[1], 16),
|
6682 |
+
g: parseInt(result[2], 16),
|
6683 |
+
b: parseInt(result[3], 16)
|
6684 |
+
} : null;
|
6685 |
+
|
6686 |
+
return "rgba(" + parsed_color.r + "," + parsed_color.g + "," + parsed_color.b + "," + opacity + ")";
|
6687 |
+
}
|
6688 |
+
|
6689 |
+
/* harmony default export */ __webpack_exports__["a"] = (hexToRgba);
|
6690 |
+
|
6691 |
+
/***/ }),
|
6692 |
+
/* 84 */
|
6693 |
/*!**************************************************!*\
|
6694 |
!*** ./src/blocks/info-box/components/Prefix.js ***!
|
6695 |
\**************************************************/
|
6770 |
/* harmony default export */ __webpack_exports__["a"] = (Prefix);
|
6771 |
|
6772 |
/***/ }),
|
6773 |
+
/* 85 */
|
6774 |
/*!*************************************************!*\
|
6775 |
!*** ./src/blocks/info-box/components/Title.js ***!
|
6776 |
\*************************************************/
|
6850 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
6851 |
|
6852 |
/***/ }),
|
6853 |
+
/* 86 */
|
6854 |
/*!************************************************!*\
|
6855 |
!*** ./src/blocks/info-box/components/Icon.js ***!
|
6856 |
\************************************************/
|
6910 |
/* harmony default export */ __webpack_exports__["a"] = (Icon);
|
6911 |
|
6912 |
/***/ }),
|
6913 |
+
/* 87 */
|
6914 |
/*!*******************************************************!*\
|
6915 |
!*** ./src/blocks/info-box/components/InfoBoxDesc.js ***!
|
6916 |
\*******************************************************/
|
6989 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxDesc);
|
6990 |
|
6991 |
/***/ }),
|
6992 |
+
/* 88 */
|
6993 |
/*!****************************************!*\
|
6994 |
!*** ./src/blocks/info-box/classes.js ***!
|
6995 |
\****************************************/
|
7046 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxPositionClasses);
|
7047 |
|
7048 |
/***/ }),
|
7049 |
+
/* 89 */
|
7050 |
/*!************************************************************!*\
|
7051 |
!*** ./src/blocks/info-box/components/InfoBoxSeparator.js ***!
|
7052 |
\************************************************************/
|
7092 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxSeparator);
|
7093 |
|
7094 |
/***/ }),
|
7095 |
+
/* 90 */
|
7096 |
/*!********************************************************!*\
|
7097 |
!*** ./src/blocks/info-box/components/CallToAction.js ***!
|
7098 |
\********************************************************/
|
7236 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxCta);
|
7237 |
|
7238 |
/***/ }),
|
7239 |
+
/* 91 */
|
7240 |
/*!************************************************************!*\
|
7241 |
!*** ./src/blocks/info-box/components/InfoBoxIconImage.js ***!
|
7242 |
\************************************************************/
|
7316 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxIconImage);
|
7317 |
|
7318 |
/***/ }),
|
7319 |
+
/* 92 */
|
7320 |
/*!*********************************************************!*\
|
7321 |
!*** ./src/blocks/testimonial/components/AuthorName.js ***!
|
7322 |
\*********************************************************/
|
7406 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorName);
|
7407 |
|
7408 |
/***/ }),
|
7409 |
+
/* 93 */
|
7410 |
/*!******************************************************!*\
|
7411 |
!*** ./src/blocks/testimonial/components/Company.js ***!
|
7412 |
\******************************************************/
|
7497 |
/* harmony default export */ __webpack_exports__["a"] = (Company);
|
7498 |
|
7499 |
/***/ }),
|
7500 |
+
/* 94 */
|
7501 |
/*!**********************************************************!*\
|
7502 |
!*** ./src/blocks/testimonial/components/Description.js ***!
|
7503 |
\**********************************************************/
|
7588 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
7589 |
|
7590 |
/***/ }),
|
7591 |
+
/* 95 */
|
7592 |
/*!*******************************************!*\
|
7593 |
!*** ./src/blocks/testimonial/classes.js ***!
|
7594 |
\*******************************************/
|
7625 |
/* harmony default export */ __webpack_exports__["a"] = (PositionClasses);
|
7626 |
|
7627 |
/***/ }),
|
7628 |
+
/* 96 */
|
7629 |
/*!***************************************************************!*\
|
7630 |
!*** ./src/blocks/testimonial/components/TestimonialImage.js ***!
|
7631 |
\***************************************************************/
|
7710 |
/* harmony default export */ __webpack_exports__["a"] = (TestimonialImage);
|
7711 |
|
7712 |
/***/ }),
|
7713 |
+
/* 97 */
|
7714 |
/*!******************************************!*\
|
7715 |
!*** ./src/blocks/social-share/links.js ***!
|
7716 |
\******************************************/
|
7737 |
/* harmony default export */ __webpack_exports__["a"] = (links);
|
7738 |
|
7739 |
/***/ }),
|
7740 |
+
/* 98 */
|
7741 |
/*!***************************************************!*\
|
7742 |
!*** ./src/blocks/price-list/components/Title.js ***!
|
7743 |
\***************************************************/
|
7826 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
7827 |
|
7828 |
/***/ }),
|
7829 |
+
/* 99 */
|
7830 |
/*!***************************************************!*\
|
7831 |
!*** ./src/blocks/price-list/components/Price.js ***!
|
7832 |
\***************************************************/
|
7917 |
/* harmony default export */ __webpack_exports__["a"] = (Price);
|
7918 |
|
7919 |
/***/ }),
|
7920 |
+
/* 100 */
|
7921 |
/*!*********************************************************!*\
|
7922 |
!*** ./src/blocks/price-list/components/Description.js ***!
|
7923 |
\*********************************************************/
|
8006 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
8007 |
|
8008 |
/***/ }),
|
8009 |
+
/* 101 */
|
8010 |
/*!******************************************!*\
|
8011 |
!*** ./src/blocks/price-list/classes.js ***!
|
8012 |
\******************************************/
|
8060 |
/* harmony default export */ __webpack_exports__["a"] = (PositionClasses);
|
8061 |
|
8062 |
/***/ }),
|
8063 |
+
/* 102 */
|
8064 |
/*!***********************************************************!*\
|
8065 |
!*** ./src/blocks/price-list/components/RestMenuImage.js ***!
|
8066 |
\***********************************************************/
|
8145 |
/* harmony default export */ __webpack_exports__["a"] = (RestMenuImage);
|
8146 |
|
8147 |
/***/ }),
|
8148 |
+
/* 103 */
|
8149 |
/*!*******************************************************!*\
|
8150 |
!*** ./src/blocks/call-to-action/components/Title.js ***!
|
8151 |
\*******************************************************/
|
8223 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
8224 |
|
8225 |
/***/ }),
|
8226 |
+
/* 104 */
|
8227 |
/*!*************************************************************!*\
|
8228 |
!*** ./src/blocks/call-to-action/components/Description.js ***!
|
8229 |
\*************************************************************/
|
8300 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
8301 |
|
8302 |
/***/ }),
|
8303 |
+
/* 105 */
|
8304 |
/*!**********************************************!*\
|
8305 |
!*** ./src/blocks/call-to-action/classes.js ***!
|
8306 |
\**********************************************/
|
8342 |
/* harmony default export */ __webpack_exports__["a"] = (CtaPositionClasses);
|
8343 |
|
8344 |
/***/ }),
|
8345 |
+
/* 106 */
|
8346 |
/*!*****************************************************!*\
|
8347 |
!*** ./src/blocks/call-to-action/components/CTA.js ***!
|
8348 |
\*****************************************************/
|
8443 |
/* harmony default export */ __webpack_exports__["a"] = (CTA);
|
8444 |
|
8445 |
/***/ }),
|
8446 |
+
/* 107 */
|
8447 |
/*!**************************************!*\
|
8448 |
!*** ./src/blocks/columns/shapes.js ***!
|
8449 |
\**************************************/
|
8478 |
/* harmony default export */ __webpack_exports__["a"] = (shapes);
|
8479 |
|
8480 |
/***/ }),
|
8481 |
+
/* 108 */
|
8482 |
/*!************************************************************!*\
|
8483 |
!*** ./src/blocks/blockquote/components/TweetButtonCTA.js ***!
|
8484 |
\************************************************************/
|
8552 |
/* harmony default export */ __webpack_exports__["a"] = (TweetButtonCTA);
|
8553 |
|
8554 |
/***/ }),
|
8555 |
+
/* 109 */
|
8556 |
/*!*********************************************************!*\
|
8557 |
!*** ./src/blocks/blockquote/components/Description.js ***!
|
8558 |
\*********************************************************/
|
8629 |
/* harmony default export */ __webpack_exports__["a"] = (Description);
|
8630 |
|
8631 |
/***/ }),
|
8632 |
+
/* 110 */
|
8633 |
/*!********************************************************!*\
|
8634 |
!*** ./src/blocks/blockquote/components/AuthorText.js ***!
|
8635 |
\********************************************************/
|
8706 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorText);
|
8707 |
|
8708 |
/***/ }),
|
8709 |
+
/* 111 */
|
8710 |
/*!*********************************************************!*\
|
8711 |
!*** ./src/blocks/blockquote/components/AuthorImage.js ***!
|
8712 |
\*********************************************************/
|
8775 |
/* harmony default export */ __webpack_exports__["a"] = (AuthorImage);
|
8776 |
|
8777 |
/***/ }),
|
8778 |
+
/* 112 */
|
8779 |
/*!***************************************************!*\
|
8780 |
!*** ./src/blocks/advanced-heading/attributes.js ***!
|
8781 |
\***************************************************/
|
8932 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
8933 |
|
8934 |
/***/ }),
|
8935 |
+
/* 113 */
|
8936 |
/*!**********************************************!*\
|
8937 |
!*** ./node_modules/lodash/_baseIteratee.js ***!
|
8938 |
\**********************************************/
|
8940 |
/*! all exports used */
|
8941 |
/***/ (function(module, exports, __webpack_require__) {
|
8942 |
|
8943 |
+
var baseMatches = __webpack_require__(/*! ./_baseMatches */ 190),
|
8944 |
+
baseMatchesProperty = __webpack_require__(/*! ./_baseMatchesProperty */ 241),
|
8945 |
identity = __webpack_require__(/*! ./identity */ 47),
|
8946 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
8947 |
+
property = __webpack_require__(/*! ./property */ 248);
|
8948 |
|
8949 |
/**
|
8950 |
* The base implementation of `_.iteratee`.
|
8974 |
|
8975 |
|
8976 |
/***/ }),
|
8977 |
+
/* 114 */
|
8978 |
/*!*******************************************!*\
|
8979 |
!*** ./node_modules/lodash/isFunction.js ***!
|
8980 |
\*******************************************/
|
9022 |
|
9023 |
|
9024 |
/***/ }),
|
9025 |
+
/* 115 */
|
9026 |
/*!********************************************!*\
|
9027 |
!*** ./node_modules/lodash/_freeGlobal.js ***!
|
9028 |
\********************************************/
|
9038 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 52)))
|
9039 |
|
9040 |
/***/ }),
|
9041 |
+
/* 116 */
|
9042 |
/*!******************************************!*\
|
9043 |
!*** ./node_modules/lodash/_toSource.js ***!
|
9044 |
\******************************************/
|
9075 |
|
9076 |
|
9077 |
/***/ }),
|
9078 |
+
/* 117 */
|
9079 |
/*!*********************************************!*\
|
9080 |
!*** ./node_modules/lodash/_baseIsEqual.js ***!
|
9081 |
\*********************************************/
|
9083 |
/*! all exports used */
|
9084 |
/***/ (function(module, exports, __webpack_require__) {
|
9085 |
|
9086 |
+
var baseIsEqualDeep = __webpack_require__(/*! ./_baseIsEqualDeep */ 220),
|
9087 |
isObjectLike = __webpack_require__(/*! ./isObjectLike */ 17);
|
9088 |
|
9089 |
/**
|
9114 |
|
9115 |
|
9116 |
/***/ }),
|
9117 |
+
/* 118 */
|
9118 |
/*!*********************************************!*\
|
9119 |
!*** ./node_modules/lodash/_equalArrays.js ***!
|
9120 |
\*********************************************/
|
9122 |
/*! all exports used */
|
9123 |
/***/ (function(module, exports, __webpack_require__) {
|
9124 |
|
9125 |
+
var SetCache = __webpack_require__(/*! ./_SetCache */ 221),
|
9126 |
+
arraySome = __webpack_require__(/*! ./_arraySome */ 224),
|
9127 |
+
cacheHas = __webpack_require__(/*! ./_cacheHas */ 225);
|
9128 |
|
9129 |
/** Used to compose bitmasks for value comparisons. */
|
9130 |
var COMPARE_PARTIAL_FLAG = 1,
|
9208 |
|
9209 |
|
9210 |
/***/ }),
|
9211 |
+
/* 119 */
|
9212 |
/*!********************************************!*\
|
9213 |
!*** ./node_modules/lodash/_Uint8Array.js ***!
|
9214 |
\********************************************/
|
9225 |
|
9226 |
|
9227 |
/***/ }),
|
9228 |
+
/* 120 */
|
9229 |
/*!********************************************!*\
|
9230 |
!*** ./node_modules/lodash/_getAllKeys.js ***!
|
9231 |
\********************************************/
|
9233 |
/*! all exports used */
|
9234 |
/***/ (function(module, exports, __webpack_require__) {
|
9235 |
|
9236 |
+
var baseGetAllKeys = __webpack_require__(/*! ./_baseGetAllKeys */ 121),
|
9237 |
getSymbols = __webpack_require__(/*! ./_getSymbols */ 55),
|
9238 |
keys = __webpack_require__(/*! ./keys */ 22);
|
9239 |
|
9252 |
|
9253 |
|
9254 |
/***/ }),
|
9255 |
+
/* 121 */
|
9256 |
/*!************************************************!*\
|
9257 |
!*** ./node_modules/lodash/_baseGetAllKeys.js ***!
|
9258 |
\************************************************/
|
9283 |
|
9284 |
|
9285 |
/***/ }),
|
9286 |
+
/* 122 */
|
9287 |
/*!******************************************!*\
|
9288 |
!*** ./node_modules/lodash/stubArray.js ***!
|
9289 |
\******************************************/
|
9317 |
|
9318 |
|
9319 |
/***/ }),
|
9320 |
+
/* 123 */
|
9321 |
/*!***********************************************!*\
|
9322 |
!*** ./node_modules/lodash/_arrayLikeKeys.js ***!
|
9323 |
\***********************************************/
|
9325 |
/*! all exports used */
|
9326 |
/***/ (function(module, exports, __webpack_require__) {
|
9327 |
|
9328 |
+
var baseTimes = __webpack_require__(/*! ./_baseTimes */ 124),
|
9329 |
isArguments = __webpack_require__(/*! ./isArguments */ 56),
|
9330 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
9331 |
isBuffer = __webpack_require__(/*! ./isBuffer */ 57),
|
9332 |
isIndex = __webpack_require__(/*! ./_isIndex */ 40),
|
9333 |
+
isTypedArray = __webpack_require__(/*! ./isTypedArray */ 125);
|
9334 |
|
9335 |
/** Used for built-in method references. */
|
9336 |
var objectProto = Object.prototype;
|
9377 |
|
9378 |
|
9379 |
/***/ }),
|
9380 |
+
/* 124 */
|
9381 |
/*!*******************************************!*\
|
9382 |
!*** ./node_modules/lodash/_baseTimes.js ***!
|
9383 |
\*******************************************/
|
9408 |
|
9409 |
|
9410 |
/***/ }),
|
9411 |
+
/* 125 */
|
9412 |
/*!*********************************************!*\
|
9413 |
!*** ./node_modules/lodash/isTypedArray.js ***!
|
9414 |
\*********************************************/
|
9416 |
/*! all exports used */
|
9417 |
/***/ (function(module, exports, __webpack_require__) {
|
9418 |
|
9419 |
+
var baseIsTypedArray = __webpack_require__(/*! ./_baseIsTypedArray */ 233),
|
9420 |
baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
|
9421 |
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
|
9422 |
|
9446 |
|
9447 |
|
9448 |
/***/ }),
|
9449 |
+
/* 126 */
|
9450 |
/*!*****************************************!*\
|
9451 |
!*** ./node_modules/lodash/_overArg.js ***!
|
9452 |
\*****************************************/
|
9472 |
|
9473 |
|
9474 |
/***/ }),
|
9475 |
+
/* 127 */
|
9476 |
/*!****************************************************!*\
|
9477 |
!*** ./node_modules/lodash/_isStrictComparable.js ***!
|
9478 |
\****************************************************/
|
9498 |
|
9499 |
|
9500 |
/***/ }),
|
9501 |
+
/* 128 */
|
9502 |
/*!*********************************************************!*\
|
9503 |
!*** ./node_modules/lodash/_matchesStrictComparable.js ***!
|
9504 |
\*********************************************************/
|
9529 |
|
9530 |
|
9531 |
/***/ }),
|
9532 |
+
/* 129 */
|
9533 |
/*!************************************!*\
|
9534 |
!*** ./node_modules/lodash/get.js ***!
|
9535 |
\************************************/
|
9573 |
|
9574 |
|
9575 |
/***/ }),
|
9576 |
+
/* 130 */
|
9577 |
/*!*****************************************!*\
|
9578 |
!*** ./node_modules/lodash/toString.js ***!
|
9579 |
\*****************************************/
|
9581 |
/*! all exports used */
|
9582 |
/***/ (function(module, exports, __webpack_require__) {
|
9583 |
|
9584 |
+
var baseToString = __webpack_require__(/*! ./_baseToString */ 131);
|
9585 |
|
9586 |
/**
|
9587 |
* Converts `value` to a string. An empty string is returned for `null`
|
9612 |
|
9613 |
|
9614 |
/***/ }),
|
9615 |
+
/* 131 */
|
9616 |
/*!**********************************************!*\
|
9617 |
!*** ./node_modules/lodash/_baseToString.js ***!
|
9618 |
\**********************************************/
|
9660 |
|
9661 |
|
9662 |
/***/ }),
|
9663 |
+
/* 132 */
|
9664 |
/*!**********************************************!*\
|
9665 |
!*** ./node_modules/lodash/_baseProperty.js ***!
|
9666 |
\**********************************************/
|
9685 |
|
9686 |
|
9687 |
/***/ }),
|
9688 |
+
/* 133 */
|
9689 |
/*!************************************************************************************!*\
|
9690 |
!*** ./node_modules/react-select/node_modules/memoize-one/dist/memoize-one.esm.js ***!
|
9691 |
\************************************************************************************/
|
9733 |
|
9734 |
|
9735 |
/***/ }),
|
9736 |
+
/* 134 */
|
9737 |
/*!***************************************************************!*\
|
9738 |
!*** ./node_modules/@emotion/cache/dist/cache.browser.esm.js ***!
|
9739 |
\***************************************************************/
|
9742 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
9743 |
|
9744 |
"use strict";
|
9745 |
+
/* WEBPACK VAR INJECTION */(function(process) {/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_sheet__ = __webpack_require__(/*! @emotion/sheet */ 135);
|
9746 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_stylis__ = __webpack_require__(/*! @emotion/stylis */ 261);
|
9747 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_weak_memoize__ = __webpack_require__(/*! @emotion/weak-memoize */ 262);
|
9748 |
|
9749 |
|
9750 |
|
9959 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
|
9960 |
|
9961 |
/***/ }),
|
9962 |
+
/* 135 */
|
9963 |
/*!***************************************************************!*\
|
9964 |
!*** ./node_modules/@emotion/sheet/dist/sheet.browser.esm.js ***!
|
9965 |
\***************************************************************/
|
10108 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
|
10109 |
|
10110 |
/***/ }),
|
10111 |
+
/* 136 */
|
10112 |
/*!***********************************************************************!*\
|
10113 |
!*** ./node_modules/@emotion/serialize/dist/serialize.browser.esm.js ***!
|
10114 |
\***********************************************************************/
|
10118 |
|
10119 |
"use strict";
|
10120 |
/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return serializeStyles; });
|
10121 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__emotion_hash__ = __webpack_require__(/*! @emotion/hash */ 264);
|
10122 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__emotion_unitless__ = __webpack_require__(/*! @emotion/unitless */ 265);
|
10123 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_memoize__ = __webpack_require__(/*! @emotion/memoize */ 266);
|
10124 |
|
10125 |
|
10126 |
|
10447 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
|
10448 |
|
10449 |
/***/ }),
|
10450 |
+
/* 137 */
|
10451 |
/*!****************************************************************!*\
|
10452 |
!*** ./node_modules/react-dom/node_modules/scheduler/index.js ***!
|
10453 |
\****************************************************************/
|
10459 |
/* WEBPACK VAR INJECTION */(function(process) {
|
10460 |
|
10461 |
if (process.env.NODE_ENV === 'production') {
|
10462 |
+
module.exports = __webpack_require__(/*! ./cjs/scheduler.production.min.js */ 268);
|
10463 |
} else {
|
10464 |
+
module.exports = __webpack_require__(/*! ./cjs/scheduler.development.js */ 269);
|
10465 |
}
|
10466 |
|
10467 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
|
10468 |
|
10469 |
/***/ }),
|
10470 |
+
/* 138 */
|
10471 |
/*!****************************************!*\
|
10472 |
!*** ./node_modules/react-is/index.js ***!
|
10473 |
\****************************************/
|
10479 |
/* WEBPACK VAR INJECTION */(function(process) {
|
10480 |
|
10481 |
if (process.env.NODE_ENV === 'production') {
|
10482 |
+
module.exports = __webpack_require__(/*! ./cjs/react-is.production.min.js */ 274);
|
10483 |
} else {
|
10484 |
+
module.exports = __webpack_require__(/*! ./cjs/react-is.development.js */ 275);
|
10485 |
}
|
10486 |
|
10487 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
10488 |
|
10489 |
/***/ }),
|
10490 |
+
/* 139 */
|
10491 |
/*!**********************************************************************!*\
|
10492 |
!*** ./node_modules/react-select/dist/index-4322c0ed.browser.esm.js ***!
|
10493 |
\**********************************************************************/
|
10531 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_prop_types__);
|
10532 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 64);
|
10533 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
|
10534 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */ 140);
|
10535 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_react_input_autosize__);
|
10536 |
|
10537 |
|
11818 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
11819 |
|
11820 |
/***/ }),
|
11821 |
+
/* 140 */
|
11822 |
/*!****************************************************************!*\
|
11823 |
!*** ./node_modules/react-input-autosize/lib/AutosizeInput.js ***!
|
11824 |
\****************************************************************/
|
12097 |
exports.default = AutosizeInput;
|
12098 |
|
12099 |
/***/ }),
|
12100 |
+
/* 141 */
|
12101 |
/*!***********************************************************************!*\
|
12102 |
!*** ./node_modules/react-select/dist/Select-9fdb8cd0.browser.esm.js ***!
|
12103 |
\***********************************************************************/
|
12113 |
/* unused harmony export m */
|
12114 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 6);
|
12115 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
|
12116 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_memoize_one__ = __webpack_require__(/*! memoize-one */ 133);
|
12117 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_core__ = __webpack_require__(/*! @emotion/core */ 63);
|
12118 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom__ = __webpack_require__(/*! react-dom */ 18);
|
12119 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react_dom__);
|
12120 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 64);
|
12121 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__index_4322c0ed_browser_esm_js__ = __webpack_require__(/*! ./index-4322c0ed.browser.esm.js */ 139);
|
12122 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
|
12123 |
|
12124 |
|
14858 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
14859 |
|
14860 |
/***/ }),
|
14861 |
+
/* 142 */
|
14862 |
/*!************************************************!*\
|
14863 |
!*** ./src/blocks/advanced-heading/style.scss ***!
|
14864 |
\************************************************/
|
14868 |
// removed by extract-text-webpack-plugin
|
14869 |
|
14870 |
/***/ }),
|
14871 |
+
/* 143 */
|
14872 |
/*!*****************************************!*\
|
14873 |
!*** ./node_modules/lodash/toNumber.js ***!
|
14874 |
\*****************************************/
|
14945 |
|
14946 |
|
14947 |
/***/ }),
|
14948 |
+
/* 144 */
|
14949 |
/*!*************************************************!*\
|
14950 |
!*** ./node_modules/lodash/_baseAssignValue.js ***!
|
14951 |
\*************************************************/
|
14953 |
/*! all exports used */
|
14954 |
/***/ (function(module, exports, __webpack_require__) {
|
14955 |
|
14956 |
+
var defineProperty = __webpack_require__(/*! ./_defineProperty */ 145);
|
14957 |
|
14958 |
/**
|
14959 |
* The base implementation of `assignValue` and `assignMergeValue` without
|
14981 |
|
14982 |
|
14983 |
/***/ }),
|
14984 |
+
/* 145 */
|
14985 |
/*!************************************************!*\
|
14986 |
!*** ./node_modules/lodash/_defineProperty.js ***!
|
14987 |
\************************************************/
|
15003 |
|
15004 |
|
15005 |
/***/ }),
|
15006 |
+
/* 146 */
|
15007 |
/*!******************************************!*\
|
15008 |
!*** ./node_modules/lodash/_overRest.js ***!
|
15009 |
\******************************************/
|
15011 |
/*! all exports used */
|
15012 |
/***/ (function(module, exports, __webpack_require__) {
|
15013 |
|
15014 |
+
var apply = __webpack_require__(/*! ./_apply */ 314);
|
15015 |
|
15016 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
15017 |
var nativeMax = Math.max;
|
15050 |
|
15051 |
|
15052 |
/***/ }),
|
15053 |
+
/* 147 */
|
15054 |
/*!*********************************************!*\
|
15055 |
!*** ./node_modules/lodash/_setToString.js ***!
|
15056 |
\*********************************************/
|
15058 |
/*! all exports used */
|
15059 |
/***/ (function(module, exports, __webpack_require__) {
|
15060 |
|
15061 |
+
var baseSetToString = __webpack_require__(/*! ./_baseSetToString */ 315),
|
15062 |
+
shortOut = __webpack_require__(/*! ./_shortOut */ 317);
|
15063 |
|
15064 |
/**
|
15065 |
* Sets the `toString` method of `func` to return `string`.
|
15075 |
|
15076 |
|
15077 |
/***/ }),
|
15078 |
+
/* 148 */
|
15079 |
/*!**********************************************************************!*\
|
15080 |
!*** ./node_modules/element-resize-detector/src/collection-utils.js ***!
|
15081 |
\**********************************************************************/
|
15106 |
|
15107 |
|
15108 |
/***/ }),
|
15109 |
+
/* 149 */
|
15110 |
/*!**********************************************************************!*\
|
15111 |
!*** ./node_modules/element-resize-detector/src/browser-detector.js ***!
|
15112 |
\**********************************************************************/
|
15157 |
|
15158 |
|
15159 |
/***/ }),
|
15160 |
+
/* 150 */
|
15161 |
/*!***************************************!*\
|
15162 |
!*** ./node_modules/lodash/keysIn.js ***!
|
15163 |
\***************************************/
|
15165 |
/*! all exports used */
|
15166 |
/***/ (function(module, exports, __webpack_require__) {
|
15167 |
|
15168 |
+
var arrayLikeKeys = __webpack_require__(/*! ./_arrayLikeKeys */ 123),
|
15169 |
+
baseKeysIn = __webpack_require__(/*! ./_baseKeysIn */ 337),
|
15170 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
|
15171 |
|
15172 |
/**
|
15200 |
|
15201 |
|
15202 |
/***/ }),
|
15203 |
+
/* 151 */
|
15204 |
/*!**********************************************!*\
|
15205 |
!*** ./node_modules/lodash/_getSymbolsIn.js ***!
|
15206 |
\**********************************************/
|
15211 |
var arrayPush = __webpack_require__(/*! ./_arrayPush */ 54),
|
15212 |
getPrototype = __webpack_require__(/*! ./_getPrototype */ 78),
|
15213 |
getSymbols = __webpack_require__(/*! ./_getSymbols */ 55),
|
15214 |
+
stubArray = __webpack_require__(/*! ./stubArray */ 122);
|
15215 |
|
15216 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
15217 |
var nativeGetSymbols = Object.getOwnPropertySymbols;
|
15236 |
|
15237 |
|
15238 |
/***/ }),
|
15239 |
+
/* 152 */
|
15240 |
/*!***********************************************!*\
|
15241 |
!*** ./node_modules/react-slick/lib/index.js ***!
|
15242 |
\***********************************************/
|
15249 |
|
15250 |
exports.__esModule = true;
|
15251 |
|
15252 |
+
var _slider = __webpack_require__(/*! ./slider */ 373);
|
15253 |
|
15254 |
var _slider2 = _interopRequireDefault(_slider);
|
15255 |
|
15258 |
exports.default = _slider2.default;
|
15259 |
|
15260 |
/***/ }),
|
15261 |
+
/* 153 */
|
15262 |
/*!*********************************************!*\
|
15263 |
!*** ./node_modules/enquire.js/src/Util.js ***!
|
15264 |
\*********************************************/
|
15313 |
|
15314 |
|
15315 |
/***/ }),
|
15316 |
+
/* 154 */
|
15317 |
/*!******************************************!*\
|
15318 |
!*** ./src/blocks/section/attributes.js ***!
|
15319 |
\******************************************/
|
15614 |
boxShadowPosition: {
|
15615 |
type: "string",
|
15616 |
default: "outset"
|
15617 |
+
},
|
15618 |
+
gradientValue: {
|
15619 |
+
type: "string",
|
15620 |
+
default: ""
|
15621 |
}
|
15622 |
};
|
15623 |
|
15624 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
15625 |
|
15626 |
/***/ }),
|
15627 |
+
/* 155 */
|
15628 |
/*!*********************************************!*\
|
15629 |
!*** ./src/blocks/section/inline-styles.js ***!
|
15630 |
\*********************************************/
|
15735 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
15736 |
|
15737 |
/***/ }),
|
15738 |
+
/* 156 */
|
15739 |
/*!******************************************!*\
|
15740 |
!*** ./src/blocks/buttons/attributes.js ***!
|
15741 |
\******************************************/
|
15828 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
15829 |
|
15830 |
/***/ }),
|
15831 |
+
/* 157 */
|
15832 |
/*!************************************************!*\
|
15833 |
!*** ./src/blocks/buttons-child/attributes.js ***!
|
15834 |
\************************************************/
|
15982 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
15983 |
|
15984 |
/***/ }),
|
15985 |
+
/* 158 */
|
15986 |
/*!***********************************************************!*\
|
15987 |
!*** ./node_modules/react-transition-group/Transition.js ***!
|
15988 |
\***********************************************************/
|
16002 |
|
16003 |
var _reactDom = _interopRequireDefault(__webpack_require__(/*! react-dom */ 18));
|
16004 |
|
16005 |
+
var _reactLifecyclesCompat = __webpack_require__(/*! react-lifecycles-compat */ 159);
|
16006 |
|
16007 |
+
var _PropTypes = __webpack_require__(/*! ./utils/PropTypes */ 160);
|
16008 |
|
16009 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
16010 |
|
16603 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
16604 |
|
16605 |
/***/ }),
|
16606 |
+
/* 159 */
|
16607 |
/*!****************************************************************************!*\
|
16608 |
!*** ./node_modules/react-lifecycles-compat/react-lifecycles-compat.es.js ***!
|
16609 |
\****************************************************************************/
|
16775 |
|
16776 |
|
16777 |
/***/ }),
|
16778 |
+
/* 160 */
|
16779 |
/*!****************************************************************!*\
|
16780 |
!*** ./node_modules/react-transition-group/utils/PropTypes.js ***!
|
16781 |
\****************************************************************/
|
16815 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
16816 |
|
16817 |
/***/ }),
|
16818 |
+
/* 161 */
|
16819 |
/*!****************************************************************!*\
|
16820 |
!*** ./node_modules/react-transition-group/TransitionGroup.js ***!
|
16821 |
\****************************************************************/
|
16833 |
|
16834 |
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 6));
|
16835 |
|
16836 |
+
var _reactLifecyclesCompat = __webpack_require__(/*! react-lifecycles-compat */ 159);
|
16837 |
|
16838 |
+
var _ChildMapping = __webpack_require__(/*! ./utils/ChildMapping */ 414);
|
16839 |
|
16840 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
16841 |
|
17035 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
17036 |
|
17037 |
/***/ }),
|
17038 |
+
/* 162 */
|
17039 |
/*!**********************************************!*\
|
17040 |
!*** ./src/blocks/info-box/inline-styles.js ***!
|
17041 |
\**********************************************/
|
17352 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxStyle);
|
17353 |
|
17354 |
/***/ }),
|
17355 |
+
/* 163 */
|
17356 |
/*!*******************************************!*\
|
17357 |
!*** ./src/blocks/info-box/attributes.js ***!
|
17358 |
\*******************************************/
|
17769 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
17770 |
|
17771 |
/***/ }),
|
17772 |
+
/* 164 */
|
17773 |
/*!**********************************************!*\
|
17774 |
!*** ./src/blocks/testimonial/attributes.js ***!
|
17775 |
\**********************************************/
|
18131 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18132 |
|
18133 |
/***/ }),
|
18134 |
+
/* 165 */
|
18135 |
/*!***************************************!*\
|
18136 |
!*** ./src/blocks/team/attributes.js ***!
|
18137 |
\***************************************/
|
18426 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18427 |
|
18428 |
/***/ }),
|
18429 |
+
/* 166 */
|
18430 |
/*!***********************************************!*\
|
18431 |
!*** ./src/blocks/social-share/attributes.js ***!
|
18432 |
\***********************************************/
|
18532 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18533 |
|
18534 |
/***/ }),
|
18535 |
+
/* 167 */
|
18536 |
+
/*!*****************************************************!*\
|
18537 |
+
!*** ./src/blocks/social-share-child/attributes.js ***!
|
18538 |
+
\*****************************************************/
|
18539 |
+
/*! exports provided: default */
|
18540 |
+
/*! exports used: default */
|
18541 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
18542 |
+
|
18543 |
+
"use strict";
|
18544 |
+
/**
|
18545 |
+
* BLOCK: Social Share Child - Attributes
|
18546 |
+
*/
|
18547 |
+
|
18548 |
+
var attributes = {
|
18549 |
+
block_id: {
|
18550 |
+
type: "string"
|
18551 |
+
},
|
18552 |
+
type: {
|
18553 |
+
type: "string",
|
18554 |
+
default: "facebook"
|
18555 |
+
},
|
18556 |
+
image_icon: {
|
18557 |
+
type: "string",
|
18558 |
+
default: "icon"
|
18559 |
+
},
|
18560 |
+
current_url: {
|
18561 |
+
type: "string"
|
18562 |
+
},
|
18563 |
+
icon: {
|
18564 |
+
type: "string",
|
18565 |
+
default: "fab fa-facebook"
|
18566 |
+
},
|
18567 |
+
image: {
|
18568 |
+
type: "object"
|
18569 |
+
},
|
18570 |
+
icon_color: {
|
18571 |
+
type: "string",
|
18572 |
+
default: "#3a3a3a"
|
18573 |
+
},
|
18574 |
+
icon_hover_color: {
|
18575 |
+
type: "string"
|
18576 |
+
},
|
18577 |
+
icon_bg_color: {
|
18578 |
+
type: "string"
|
18579 |
+
},
|
18580 |
+
icon_bg_hover_color: {
|
18581 |
+
type: "string"
|
18582 |
+
}
|
18583 |
+
};
|
18584 |
+
|
18585 |
+
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18586 |
+
|
18587 |
+
/***/ }),
|
18588 |
+
/* 168 */
|
18589 |
+
/*!************************************************!*\
|
18590 |
+
!*** ./src/blocks/social-share-child/links.js ***!
|
18591 |
+
\************************************************/
|
18592 |
+
/*! exports provided: default */
|
18593 |
+
/*! exports used: default */
|
18594 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
18595 |
+
|
18596 |
+
"use strict";
|
18597 |
+
var links = {
|
18598 |
+
facebook: "https://www.facebook.com/sharer.php?u=",
|
18599 |
+
twitter: "https://twitter.com/share?url=",
|
18600 |
+
google: "https://plus.google.com/share?url=",
|
18601 |
+
pinterest: "https://pinterest.com/pin/create/link/?url=",
|
18602 |
+
linkedin: "https://www.linkedin.com/shareArticle?url=",
|
18603 |
+
digg: "http://digg.com/submit?url=",
|
18604 |
+
blogger: "https://www.blogger.com/blog_this.pyra?t&u=",
|
18605 |
+
reddit: "https://reddit.com/submit?url=",
|
18606 |
+
stumbleupon: "https://www.stumbleupon.com/submit?url=",
|
18607 |
+
tumblr: "https://www.tumblr.com/widgets/share/tool?canonicalUrl=",
|
18608 |
+
myspace: "https://myspace.com/post?u=",
|
18609 |
+
email: "mailto:?body="
|
18610 |
+
};
|
18611 |
+
|
18612 |
+
/* harmony default export */ __webpack_exports__["a"] = (links);
|
18613 |
+
|
18614 |
+
/***/ }),
|
18615 |
+
/* 169 */
|
18616 |
/*!********************************************!*\
|
18617 |
!*** ./src/blocks/icon-list/attributes.js ***!
|
18618 |
\********************************************/
|
18769 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18770 |
|
18771 |
/***/ }),
|
18772 |
+
/* 170 */
|
18773 |
/*!**************************************************!*\
|
18774 |
!*** ./src/blocks/icon-list-child/attributes.js ***!
|
18775 |
\**************************************************/
|
18847 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
18848 |
|
18849 |
/***/ }),
|
18850 |
+
/* 171 */
|
18851 |
/*!*********************************************!*\
|
18852 |
!*** ./src/blocks/price-list/attributes.js ***!
|
18853 |
\*********************************************/
|
19136 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19137 |
|
19138 |
/***/ }),
|
19139 |
+
/* 172 */
|
19140 |
/*!****************************************!*\
|
19141 |
!*** ./src/blocks/timeline/style.scss ***!
|
19142 |
\****************************************/
|
19146 |
// removed by extract-text-webpack-plugin
|
19147 |
|
19148 |
/***/ }),
|
19149 |
+
/* 173 */
|
19150 |
/*!************************************************************!*\
|
19151 |
!*** ./src/blocks/timeline/content-timeline/attributes.js ***!
|
19152 |
\************************************************************/
|
19416 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19417 |
|
19418 |
/***/ }),
|
19419 |
+
/* 174 */
|
19420 |
/*!*************************************************!*\
|
19421 |
!*** ./src/blocks/call-to-action/attributes.js ***!
|
19422 |
\*************************************************/
|
19682 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19683 |
|
19684 |
/***/ }),
|
19685 |
+
/* 175 */
|
19686 |
/*!*****************************************!*\
|
19687 |
!*** ./src/blocks/column/attributes.js ***!
|
19688 |
\*****************************************/
|
19936 |
desktopPaddingType: {
|
19937 |
type: "string",
|
19938 |
default: 'px'
|
19939 |
+
},
|
19940 |
+
gradientValue: {
|
19941 |
+
type: "string",
|
19942 |
+
default: ""
|
19943 |
}
|
19944 |
};
|
19945 |
|
19946 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
19947 |
|
19948 |
/***/ }),
|
19949 |
+
/* 176 */
|
19950 |
/*!******************************************!*\
|
19951 |
!*** ./src/blocks/columns/attributes.js ***!
|
19952 |
\******************************************/
|
20256 |
boxShadowPosition: {
|
20257 |
type: "string",
|
20258 |
default: "outset"
|
20259 |
+
},
|
20260 |
+
gradientValue: {
|
20261 |
+
type: "string",
|
20262 |
+
default: ""
|
20263 |
}
|
20264 |
+
|
20265 |
};
|
20266 |
|
20267 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
20268 |
|
20269 |
/***/ }),
|
20270 |
+
/* 177 */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20271 |
/*!*************************************!*\
|
20272 |
!*** ./src/blocks/columns/icons.js ***!
|
20273 |
\*************************************/
|
20388 |
/* harmony default export */ __webpack_exports__["a"] = (rowIcons);
|
20389 |
|
20390 |
/***/ }),
|
20391 |
+
/* 178 */
|
20392 |
/*!*********************************************!*\
|
20393 |
!*** ./src/blocks/blockquote/attributes.js ***!
|
20394 |
\*********************************************/
|
20736 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
20737 |
|
20738 |
/***/ }),
|
20739 |
+
/* 179 */
|
20740 |
/*!***************************************************!*\
|
20741 |
!*** ./src/blocks/marketing-button/attributes.js ***!
|
20742 |
\***************************************************/
|
21030 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
21031 |
|
21032 |
/***/ }),
|
21033 |
+
/* 180 */
|
21034 |
/*!****************************************************!*\
|
21035 |
!*** ./src/blocks/table-of-contents/attributes.js ***!
|
21036 |
\****************************************************/
|
21373 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
21374 |
|
21375 |
/***/ }),
|
21376 |
+
/* 181 */
|
21377 |
/*!*********************************************!*\
|
21378 |
!*** ./src/blocks/table-of-contents/toc.js ***!
|
21379 |
\*********************************************/
|
21506 |
/* harmony default export */ __webpack_exports__["a"] = (TableOfContents);
|
21507 |
|
21508 |
/***/ }),
|
21509 |
+
/* 182 */
|
21510 |
/*!*************************************************!*\
|
21511 |
!*** ./node_modules/striptags/src/striptags.js ***!
|
21512 |
\*************************************************/
|
21754 |
|
21755 |
|
21756 |
/***/ }),
|
21757 |
+
/* 183 */
|
21758 |
/*!**************************************!*\
|
21759 |
!*** ./src/blocks/how-to/style.scss ***!
|
21760 |
\**************************************/
|
21764 |
// removed by extract-text-webpack-plugin
|
21765 |
|
21766 |
/***/ }),
|
21767 |
+
/* 184 */
|
21768 |
/*!********************************************!*\
|
21769 |
!*** ./src/blocks/faq-child/attributes.js ***!
|
21770 |
\********************************************/
|
21799 |
layout: {
|
21800 |
type: "string",
|
21801 |
default: "accordion"
|
21802 |
+
},
|
21803 |
+
headingTag: {
|
21804 |
+
type: "html",
|
21805 |
+
selector: "span,p,h1,h2,h3,h4,h5,h6",
|
21806 |
+
default: "span"
|
21807 |
}
|
|
|
21808 |
};
|
21809 |
|
21810 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
21811 |
|
21812 |
/***/ }),
|
21813 |
+
/* 185 */
|
21814 |
/*!***********************!*\
|
21815 |
!*** ./src/blocks.js ***!
|
21816 |
\***********************/
|
21820 |
|
21821 |
"use strict";
|
21822 |
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
21823 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__blocks_advanced_heading_block_js__ = __webpack_require__(/*! ./blocks/advanced-heading/block.js */ 186);
|
21824 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__blocks_post_block_js__ = __webpack_require__(/*! ./blocks/post/block.js */ 286);
|
21825 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__blocks_section_block_js__ = __webpack_require__(/*! ./blocks/section/block.js */ 388);
|
21826 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blocks_buttons_block_js__ = __webpack_require__(/*! ./blocks/buttons/block.js */ 395);
|
21827 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__blocks_buttons_child_block_js__ = __webpack_require__(/*! ./blocks/buttons-child/block.js */ 403);
|
21828 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blocks_info_box_block_js__ = __webpack_require__(/*! ./blocks/info-box/block.js */ 418);
|
21829 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__blocks_testimonial_block_js__ = __webpack_require__(/*! ./blocks/testimonial/block.js */ 426);
|
21830 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__blocks_team_block_js__ = __webpack_require__(/*! ./blocks/team/block.js */ 433);
|
21831 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__blocks_social_share_block_js__ = __webpack_require__(/*! ./blocks/social-share/block.js */ 440);
|
21832 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__blocks_social_share_child_block_js__ = __webpack_require__(/*! ./blocks/social-share-child/block.js */ 448);
|
21833 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__blocks_google_map_block_js__ = __webpack_require__(/*! ./blocks/google-map/block.js */ 455);
|
21834 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__blocks_icon_list_block_js__ = __webpack_require__(/*! ./blocks/icon-list/block.js */ 457);
|
21835 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__blocks_icon_list_child_block_js__ = __webpack_require__(/*! ./blocks/icon-list-child/block.js */ 465);
|
21836 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__blocks_price_list_block_js__ = __webpack_require__(/*! ./blocks/price-list/block.js */ 472);
|
21837 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__blocks_timeline_block_js__ = __webpack_require__(/*! ./blocks/timeline/block.js */ 479);
|
21838 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__blocks_call_to_action_block_js__ = __webpack_require__(/*! ./blocks/call-to-action/block.js */ 498);
|
21839 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__blocks_column_block_js__ = __webpack_require__(/*! ./blocks/column/block.js */ 506);
|
21840 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__blocks_columns_block_js__ = __webpack_require__(/*! ./blocks/columns/block.js */ 514);
|
21841 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__blocks_cf7_styler_block_js__ = __webpack_require__(/*! ./blocks/cf7-styler/block.js */ 533);
|
21842 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__blocks_gf_styler_block_js__ = __webpack_require__(/*! ./blocks/gf-styler/block.js */ 538);
|
21843 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_20__blocks_blockquote_block_js__ = __webpack_require__(/*! ./blocks/blockquote/block.js */ 543);
|
21844 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_21__blocks_marketing_button_block_js__ = __webpack_require__(/*! ./blocks/marketing-button/block.js */ 551);
|
21845 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_22__blocks_table_of_contents_block_js__ = __webpack_require__(/*! ./blocks/table-of-contents/block.js */ 558);
|
21846 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_23__blocks_how_to_block_js__ = __webpack_require__(/*! ./blocks/how-to/block.js */ 567);
|
21847 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_24__blocks_faq_block_js__ = __webpack_require__(/*! ./blocks/faq/block.js */ 574);
|
21848 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_25__blocks_faq_child_block_js__ = __webpack_require__(/*! ./blocks/faq-child/block.js */ 581);
|
21849 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_26__blocks_inline_notice_block_js__ = __webpack_require__(/*! ./blocks/inline-notice/block.js */ 587);
|
21850 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_27__blocks_wp_search_block_js__ = __webpack_require__(/*! ./blocks/wp-search/block.js */ 594);
|
21851 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_28__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../dist/blocks/uagb-controls/block-icons */ 1);
|
21852 |
/**
|
21853 |
* Gutenberg Blocks
|
21898 |
});
|
21899 |
|
21900 |
/***/ }),
|
21901 |
+
/* 186 */
|
21902 |
/*!**********************************************!*\
|
21903 |
!*** ./src/blocks/advanced-heading/block.js ***!
|
21904 |
\**********************************************/
|
21907 |
|
21908 |
"use strict";
|
21909 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
21910 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 112);
|
21911 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 187);
|
21912 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 283);
|
21913 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 284);
|
21914 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__transform__ = __webpack_require__(/*! ./transform */ 285);
|
21915 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 142);
|
21916 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
21917 |
/**
|
21918 |
* BLOCK: Advanced Heading
|
21948 |
});
|
21949 |
|
21950 |
/***/ }),
|
21951 |
+
/* 187 */
|
21952 |
/*!*********************************************!*\
|
21953 |
!*** ./src/blocks/advanced-heading/edit.js ***!
|
21954 |
\*********************************************/
|
21959 |
"use strict";
|
21960 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
21961 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
21962 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 188);
|
21963 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
21964 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
21965 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 142);
|
21966 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
21967 |
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; }; }();
|
21968 |
|
22456 |
})(UAGBAdvancedHeading));
|
22457 |
|
22458 |
/***/ }),
|
22459 |
+
/* 188 */
|
22460 |
/*!************************************************!*\
|
22461 |
!*** ./src/blocks/advanced-heading/styling.js ***!
|
22462 |
\************************************************/
|
22579 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
22580 |
|
22581 |
/***/ }),
|
22582 |
+
/* 189 */
|
22583 |
/*!******************************************************!*\
|
22584 |
!*** ./src/components/typography/font-typography.js ***!
|
22585 |
\******************************************************/
|
22590 |
"use strict";
|
22591 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
22592 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_map__);
|
22593 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__fonts__ = __webpack_require__(/*! ./fonts */ 256);
|
22594 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_react_select__ = __webpack_require__(/*! react-select */ 257);
|
22595 |
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; };
|
22596 |
|
22597 |
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; }
|
22754 |
/* harmony default export */ __webpack_exports__["a"] = (FontFamilyControl);
|
22755 |
|
22756 |
/***/ }),
|
22757 |
+
/* 190 */
|
22758 |
/*!*********************************************!*\
|
22759 |
!*** ./node_modules/lodash/_baseMatches.js ***!
|
22760 |
\*********************************************/
|
22762 |
/*! all exports used */
|
22763 |
/***/ (function(module, exports, __webpack_require__) {
|
22764 |
|
22765 |
+
var baseIsMatch = __webpack_require__(/*! ./_baseIsMatch */ 191),
|
22766 |
+
getMatchData = __webpack_require__(/*! ./_getMatchData */ 240),
|
22767 |
+
matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */ 128);
|
22768 |
|
22769 |
/**
|
22770 |
* The base implementation of `_.matches` which doesn't clone `source`.
|
22787 |
|
22788 |
|
22789 |
/***/ }),
|
22790 |
+
/* 191 */
|
22791 |
/*!*********************************************!*\
|
22792 |
!*** ./node_modules/lodash/_baseIsMatch.js ***!
|
22793 |
\*********************************************/
|
22796 |
/***/ (function(module, exports, __webpack_require__) {
|
22797 |
|
22798 |
var Stack = __webpack_require__(/*! ./_Stack */ 50),
|
22799 |
+
baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */ 117);
|
22800 |
|
22801 |
/** Used to compose bitmasks for value comparisons. */
|
22802 |
var COMPARE_PARTIAL_FLAG = 1,
|
22860 |
|
22861 |
|
22862 |
/***/ }),
|
22863 |
+
/* 192 */
|
22864 |
/*!************************************************!*\
|
22865 |
!*** ./node_modules/lodash/_listCacheClear.js ***!
|
22866 |
\************************************************/
|
22884 |
|
22885 |
|
22886 |
/***/ }),
|
22887 |
+
/* 193 */
|
22888 |
/*!*************************************************!*\
|
22889 |
!*** ./node_modules/lodash/_listCacheDelete.js ***!
|
22890 |
\*************************************************/
|
22930 |
|
22931 |
|
22932 |
/***/ }),
|
22933 |
+
/* 194 */
|
22934 |
/*!**********************************************!*\
|
22935 |
!*** ./node_modules/lodash/_listCacheGet.js ***!
|
22936 |
\**********************************************/
|
22960 |
|
22961 |
|
22962 |
/***/ }),
|
22963 |
+
/* 195 */
|
22964 |
/*!**********************************************!*\
|
22965 |
!*** ./node_modules/lodash/_listCacheHas.js ***!
|
22966 |
\**********************************************/
|
22987 |
|
22988 |
|
22989 |
/***/ }),
|
22990 |
+
/* 196 */
|
22991 |
/*!**********************************************!*\
|
22992 |
!*** ./node_modules/lodash/_listCacheSet.js ***!
|
22993 |
\**********************************************/
|
23024 |
|
23025 |
|
23026 |
/***/ }),
|
23027 |
+
/* 197 */
|
23028 |
/*!********************************************!*\
|
23029 |
!*** ./node_modules/lodash/_stackClear.js ***!
|
23030 |
\********************************************/
|
23050 |
|
23051 |
|
23052 |
/***/ }),
|
23053 |
+
/* 198 */
|
23054 |
/*!*********************************************!*\
|
23055 |
!*** ./node_modules/lodash/_stackDelete.js ***!
|
23056 |
\*********************************************/
|
23079 |
|
23080 |
|
23081 |
/***/ }),
|
23082 |
+
/* 199 */
|
23083 |
/*!******************************************!*\
|
23084 |
!*** ./node_modules/lodash/_stackGet.js ***!
|
23085 |
\******************************************/
|
23104 |
|
23105 |
|
23106 |
/***/ }),
|
23107 |
+
/* 200 */
|
23108 |
/*!******************************************!*\
|
23109 |
!*** ./node_modules/lodash/_stackHas.js ***!
|
23110 |
\******************************************/
|
23129 |
|
23130 |
|
23131 |
/***/ }),
|
23132 |
+
/* 201 */
|
23133 |
/*!******************************************!*\
|
23134 |
!*** ./node_modules/lodash/_stackSet.js ***!
|
23135 |
\******************************************/
|
23174 |
|
23175 |
|
23176 |
/***/ }),
|
23177 |
+
/* 202 */
|
23178 |
/*!**********************************************!*\
|
23179 |
!*** ./node_modules/lodash/_baseIsNative.js ***!
|
23180 |
\**********************************************/
|
23182 |
/*! all exports used */
|
23183 |
/***/ (function(module, exports, __webpack_require__) {
|
23184 |
|
23185 |
+
var isFunction = __webpack_require__(/*! ./isFunction */ 114),
|
23186 |
+
isMasked = __webpack_require__(/*! ./_isMasked */ 205),
|
23187 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
23188 |
+
toSource = __webpack_require__(/*! ./_toSource */ 116);
|
23189 |
|
23190 |
/**
|
23191 |
* Used to match `RegExp`
|
23232 |
|
23233 |
|
23234 |
/***/ }),
|
23235 |
+
/* 203 */
|
23236 |
/*!*******************************************!*\
|
23237 |
!*** ./node_modules/lodash/_getRawTag.js ***!
|
23238 |
\*******************************************/
|
23289 |
|
23290 |
|
23291 |
/***/ }),
|
23292 |
+
/* 204 */
|
23293 |
/*!************************************************!*\
|
23294 |
!*** ./node_modules/lodash/_objectToString.js ***!
|
23295 |
\************************************************/
|
23322 |
|
23323 |
|
23324 |
/***/ }),
|
23325 |
+
/* 205 */
|
23326 |
/*!******************************************!*\
|
23327 |
!*** ./node_modules/lodash/_isMasked.js ***!
|
23328 |
\******************************************/
|
23330 |
/*! all exports used */
|
23331 |
/***/ (function(module, exports, __webpack_require__) {
|
23332 |
|
23333 |
+
var coreJsData = __webpack_require__(/*! ./_coreJsData */ 206);
|
23334 |
|
23335 |
/** Used to detect methods masquerading as native. */
|
23336 |
var maskSrcKey = (function() {
|
23353 |
|
23354 |
|
23355 |
/***/ }),
|
23356 |
+
/* 206 */
|
23357 |
/*!********************************************!*\
|
23358 |
!*** ./node_modules/lodash/_coreJsData.js ***!
|
23359 |
\********************************************/
|
23370 |
|
23371 |
|
23372 |
/***/ }),
|
23373 |
+
/* 207 */
|
23374 |
/*!******************************************!*\
|
23375 |
!*** ./node_modules/lodash/_getValue.js ***!
|
23376 |
\******************************************/
|
23394 |
|
23395 |
|
23396 |
/***/ }),
|
23397 |
+
/* 208 */
|
23398 |
/*!***********************************************!*\
|
23399 |
!*** ./node_modules/lodash/_mapCacheClear.js ***!
|
23400 |
\***********************************************/
|
23402 |
/*! all exports used */
|
23403 |
/***/ (function(module, exports, __webpack_require__) {
|
23404 |
|
23405 |
+
var Hash = __webpack_require__(/*! ./_Hash */ 209),
|
23406 |
ListCache = __webpack_require__(/*! ./_ListCache */ 35),
|
23407 |
Map = __webpack_require__(/*! ./_Map */ 51);
|
23408 |
|
23426 |
|
23427 |
|
23428 |
/***/ }),
|
23429 |
+
/* 209 */
|
23430 |
/*!**************************************!*\
|
23431 |
!*** ./node_modules/lodash/_Hash.js ***!
|
23432 |
\**************************************/
|
23434 |
/*! all exports used */
|
23435 |
/***/ (function(module, exports, __webpack_require__) {
|
23436 |
|
23437 |
+
var hashClear = __webpack_require__(/*! ./_hashClear */ 210),
|
23438 |
+
hashDelete = __webpack_require__(/*! ./_hashDelete */ 211),
|
23439 |
+
hashGet = __webpack_require__(/*! ./_hashGet */ 212),
|
23440 |
+
hashHas = __webpack_require__(/*! ./_hashHas */ 213),
|
23441 |
+
hashSet = __webpack_require__(/*! ./_hashSet */ 214);
|
23442 |
|
23443 |
/**
|
23444 |
* Creates a hash object.
|
23469 |
|
23470 |
|
23471 |
/***/ }),
|
23472 |
+
/* 210 */
|
23473 |
/*!*******************************************!*\
|
23474 |
!*** ./node_modules/lodash/_hashClear.js ***!
|
23475 |
\*******************************************/
|
23495 |
|
23496 |
|
23497 |
/***/ }),
|
23498 |
+
/* 211 */
|
23499 |
/*!********************************************!*\
|
23500 |
!*** ./node_modules/lodash/_hashDelete.js ***!
|
23501 |
\********************************************/
|
23523 |
|
23524 |
|
23525 |
/***/ }),
|
23526 |
+
/* 212 */
|
23527 |
/*!*****************************************!*\
|
23528 |
!*** ./node_modules/lodash/_hashGet.js ***!
|
23529 |
\*****************************************/
|
23564 |
|
23565 |
|
23566 |
/***/ }),
|
23567 |
+
/* 213 */
|
23568 |
/*!*****************************************!*\
|
23569 |
!*** ./node_modules/lodash/_hashHas.js ***!
|
23570 |
\*****************************************/
|
23598 |
|
23599 |
|
23600 |
/***/ }),
|
23601 |
+
/* 214 */
|
23602 |
/*!*****************************************!*\
|
23603 |
!*** ./node_modules/lodash/_hashSet.js ***!
|
23604 |
\*****************************************/
|
23632 |
|
23633 |
|
23634 |
/***/ }),
|
23635 |
+
/* 215 */
|
23636 |
/*!************************************************!*\
|
23637 |
!*** ./node_modules/lodash/_mapCacheDelete.js ***!
|
23638 |
\************************************************/
|
23661 |
|
23662 |
|
23663 |
/***/ }),
|
23664 |
+
/* 216 */
|
23665 |
/*!*******************************************!*\
|
23666 |
!*** ./node_modules/lodash/_isKeyable.js ***!
|
23667 |
\*******************************************/
|
23687 |
|
23688 |
|
23689 |
/***/ }),
|
23690 |
+
/* 217 */
|
23691 |
/*!*********************************************!*\
|
23692 |
!*** ./node_modules/lodash/_mapCacheGet.js ***!
|
23693 |
\*********************************************/
|
23714 |
|
23715 |
|
23716 |
/***/ }),
|
23717 |
+
/* 218 */
|
23718 |
/*!*********************************************!*\
|
23719 |
!*** ./node_modules/lodash/_mapCacheHas.js ***!
|
23720 |
\*********************************************/
|
23741 |
|
23742 |
|
23743 |
/***/ }),
|
23744 |
+
/* 219 */
|
23745 |
/*!*********************************************!*\
|
23746 |
!*** ./node_modules/lodash/_mapCacheSet.js ***!
|
23747 |
\*********************************************/
|
23774 |
|
23775 |
|
23776 |
/***/ }),
|
23777 |
+
/* 220 */
|
23778 |
/*!*************************************************!*\
|
23779 |
!*** ./node_modules/lodash/_baseIsEqualDeep.js ***!
|
23780 |
\*************************************************/
|
23783 |
/***/ (function(module, exports, __webpack_require__) {
|
23784 |
|
23785 |
var Stack = __webpack_require__(/*! ./_Stack */ 50),
|
23786 |
+
equalArrays = __webpack_require__(/*! ./_equalArrays */ 118),
|
23787 |
+
equalByTag = __webpack_require__(/*! ./_equalByTag */ 226),
|
23788 |
+
equalObjects = __webpack_require__(/*! ./_equalObjects */ 229),
|
23789 |
getTag = __webpack_require__(/*! ./_getTag */ 44),
|
23790 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
23791 |
isBuffer = __webpack_require__(/*! ./isBuffer */ 57),
|
23792 |
+
isTypedArray = __webpack_require__(/*! ./isTypedArray */ 125);
|
23793 |
|
23794 |
/** Used to compose bitmasks for value comparisons. */
|
23795 |
var COMPARE_PARTIAL_FLAG = 1;
|
23868 |
|
23869 |
|
23870 |
/***/ }),
|
23871 |
+
/* 221 */
|
23872 |
/*!******************************************!*\
|
23873 |
!*** ./node_modules/lodash/_SetCache.js ***!
|
23874 |
\******************************************/
|
23877 |
/***/ (function(module, exports, __webpack_require__) {
|
23878 |
|
23879 |
var MapCache = __webpack_require__(/*! ./_MapCache */ 53),
|
23880 |
+
setCacheAdd = __webpack_require__(/*! ./_setCacheAdd */ 222),
|
23881 |
+
setCacheHas = __webpack_require__(/*! ./_setCacheHas */ 223);
|
23882 |
|
23883 |
/**
|
23884 |
*
|
23906 |
|
23907 |
|
23908 |
/***/ }),
|
23909 |
+
/* 222 */
|
23910 |
/*!*********************************************!*\
|
23911 |
!*** ./node_modules/lodash/_setCacheAdd.js ***!
|
23912 |
\*********************************************/
|
23936 |
|
23937 |
|
23938 |
/***/ }),
|
23939 |
+
/* 223 */
|
23940 |
/*!*********************************************!*\
|
23941 |
!*** ./node_modules/lodash/_setCacheHas.js ***!
|
23942 |
\*********************************************/
|
23961 |
|
23962 |
|
23963 |
/***/ }),
|
23964 |
+
/* 224 */
|
23965 |
/*!*******************************************!*\
|
23966 |
!*** ./node_modules/lodash/_arraySome.js ***!
|
23967 |
\*******************************************/
|
23995 |
|
23996 |
|
23997 |
/***/ }),
|
23998 |
+
/* 225 */
|
23999 |
/*!******************************************!*\
|
24000 |
!*** ./node_modules/lodash/_cacheHas.js ***!
|
24001 |
\******************************************/
|
24019 |
|
24020 |
|
24021 |
/***/ }),
|
24022 |
+
/* 226 */
|
24023 |
/*!********************************************!*\
|
24024 |
!*** ./node_modules/lodash/_equalByTag.js ***!
|
24025 |
\********************************************/
|
24028 |
/***/ (function(module, exports, __webpack_require__) {
|
24029 |
|
24030 |
var Symbol = __webpack_require__(/*! ./_Symbol */ 21),
|
24031 |
+
Uint8Array = __webpack_require__(/*! ./_Uint8Array */ 119),
|
24032 |
eq = __webpack_require__(/*! ./eq */ 37),
|
24033 |
+
equalArrays = __webpack_require__(/*! ./_equalArrays */ 118),
|
24034 |
+
mapToArray = __webpack_require__(/*! ./_mapToArray */ 227),
|
24035 |
+
setToArray = __webpack_require__(/*! ./_setToArray */ 228);
|
24036 |
|
24037 |
/** Used to compose bitmasks for value comparisons. */
|
24038 |
var COMPARE_PARTIAL_FLAG = 1,
|
24142 |
|
24143 |
|
24144 |
/***/ }),
|
24145 |
+
/* 227 */
|
24146 |
/*!********************************************!*\
|
24147 |
!*** ./node_modules/lodash/_mapToArray.js ***!
|
24148 |
\********************************************/
|
24171 |
|
24172 |
|
24173 |
/***/ }),
|
24174 |
+
/* 228 */
|
24175 |
/*!********************************************!*\
|
24176 |
!*** ./node_modules/lodash/_setToArray.js ***!
|
24177 |
\********************************************/
|
24200 |
|
24201 |
|
24202 |
/***/ }),
|
24203 |
+
/* 229 */
|
24204 |
/*!**********************************************!*\
|
24205 |
!*** ./node_modules/lodash/_equalObjects.js ***!
|
24206 |
\**********************************************/
|
24208 |
/*! all exports used */
|
24209 |
/***/ (function(module, exports, __webpack_require__) {
|
24210 |
|
24211 |
+
var getAllKeys = __webpack_require__(/*! ./_getAllKeys */ 120);
|
24212 |
|
24213 |
/** Used to compose bitmasks for value comparisons. */
|
24214 |
var COMPARE_PARTIAL_FLAG = 1;
|
24300 |
|
24301 |
|
24302 |
/***/ }),
|
24303 |
+
/* 230 */
|
24304 |
/*!*********************************************!*\
|
24305 |
!*** ./node_modules/lodash/_arrayFilter.js ***!
|
24306 |
\*********************************************/
|
24336 |
|
24337 |
|
24338 |
/***/ }),
|
24339 |
+
/* 231 */
|
24340 |
/*!*************************************************!*\
|
24341 |
!*** ./node_modules/lodash/_baseIsArguments.js ***!
|
24342 |
\*************************************************/
|
24365 |
|
24366 |
|
24367 |
/***/ }),
|
24368 |
+
/* 232 */
|
24369 |
/*!******************************************!*\
|
24370 |
!*** ./node_modules/lodash/stubFalse.js ***!
|
24371 |
\******************************************/
|
24394 |
|
24395 |
|
24396 |
/***/ }),
|
24397 |
+
/* 233 */
|
24398 |
/*!**************************************************!*\
|
24399 |
!*** ./node_modules/lodash/_baseIsTypedArray.js ***!
|
24400 |
\**************************************************/
|
24465 |
|
24466 |
|
24467 |
/***/ }),
|
24468 |
+
/* 234 */
|
24469 |
/*!******************************************!*\
|
24470 |
!*** ./node_modules/lodash/_baseKeys.js ***!
|
24471 |
\******************************************/
|
24474 |
/***/ (function(module, exports, __webpack_require__) {
|
24475 |
|
24476 |
var isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
|
24477 |
+
nativeKeys = __webpack_require__(/*! ./_nativeKeys */ 235);
|
24478 |
|
24479 |
/** Used for built-in method references. */
|
24480 |
var objectProto = Object.prototype;
|
24506 |
|
24507 |
|
24508 |
/***/ }),
|
24509 |
+
/* 235 */
|
24510 |
/*!********************************************!*\
|
24511 |
!*** ./node_modules/lodash/_nativeKeys.js ***!
|
24512 |
\********************************************/
|
24514 |
/*! all exports used */
|
24515 |
/***/ (function(module, exports, __webpack_require__) {
|
24516 |
|
24517 |
+
var overArg = __webpack_require__(/*! ./_overArg */ 126);
|
24518 |
|
24519 |
/* Built-in method references for those with the same name as other `lodash` methods. */
|
24520 |
var nativeKeys = overArg(Object.keys, Object);
|
24523 |
|
24524 |
|
24525 |
/***/ }),
|
24526 |
+
/* 236 */
|
24527 |
/*!******************************************!*\
|
24528 |
!*** ./node_modules/lodash/_DataView.js ***!
|
24529 |
\******************************************/
|
24541 |
|
24542 |
|
24543 |
/***/ }),
|
24544 |
+
/* 237 */
|
24545 |
/*!*****************************************!*\
|
24546 |
!*** ./node_modules/lodash/_Promise.js ***!
|
24547 |
\*****************************************/
|
24559 |
|
24560 |
|
24561 |
/***/ }),
|
24562 |
+
/* 238 */
|
24563 |
/*!*************************************!*\
|
24564 |
!*** ./node_modules/lodash/_Set.js ***!
|
24565 |
\*************************************/
|
24577 |
|
24578 |
|
24579 |
/***/ }),
|
24580 |
+
/* 239 */
|
24581 |
/*!*****************************************!*\
|
24582 |
!*** ./node_modules/lodash/_WeakMap.js ***!
|
24583 |
\*****************************************/
|
24595 |
|
24596 |
|
24597 |
/***/ }),
|
24598 |
+
/* 240 */
|
24599 |
/*!**********************************************!*\
|
24600 |
!*** ./node_modules/lodash/_getMatchData.js ***!
|
24601 |
\**********************************************/
|
24603 |
/*! all exports used */
|
24604 |
/***/ (function(module, exports, __webpack_require__) {
|
24605 |
|
24606 |
+
var isStrictComparable = __webpack_require__(/*! ./_isStrictComparable */ 127),
|
24607 |
keys = __webpack_require__(/*! ./keys */ 22);
|
24608 |
|
24609 |
/**
|
24630 |
|
24631 |
|
24632 |
/***/ }),
|
24633 |
+
/* 241 */
|
24634 |
/*!*****************************************************!*\
|
24635 |
!*** ./node_modules/lodash/_baseMatchesProperty.js ***!
|
24636 |
\*****************************************************/
|
24638 |
/*! all exports used */
|
24639 |
/***/ (function(module, exports, __webpack_require__) {
|
24640 |
|
24641 |
+
var baseIsEqual = __webpack_require__(/*! ./_baseIsEqual */ 117),
|
24642 |
+
get = __webpack_require__(/*! ./get */ 129),
|
24643 |
+
hasIn = __webpack_require__(/*! ./hasIn */ 245),
|
24644 |
isKey = __webpack_require__(/*! ./_isKey */ 60),
|
24645 |
+
isStrictComparable = __webpack_require__(/*! ./_isStrictComparable */ 127),
|
24646 |
+
matchesStrictComparable = __webpack_require__(/*! ./_matchesStrictComparable */ 128),
|
24647 |
toKey = __webpack_require__(/*! ./_toKey */ 25);
|
24648 |
|
24649 |
/** Used to compose bitmasks for value comparisons. */
|
24674 |
|
24675 |
|
24676 |
/***/ }),
|
24677 |
+
/* 242 */
|
24678 |
/*!**********************************************!*\
|
24679 |
!*** ./node_modules/lodash/_stringToPath.js ***!
|
24680 |
\**********************************************/
|
24682 |
/*! all exports used */
|
24683 |
/***/ (function(module, exports, __webpack_require__) {
|
24684 |
|
24685 |
+
var memoizeCapped = __webpack_require__(/*! ./_memoizeCapped */ 243);
|
24686 |
|
24687 |
/** Used to match property names within property paths. */
|
24688 |
var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g;
|
24712 |
|
24713 |
|
24714 |
/***/ }),
|
24715 |
+
/* 243 */
|
24716 |
/*!***********************************************!*\
|
24717 |
!*** ./node_modules/lodash/_memoizeCapped.js ***!
|
24718 |
\***********************************************/
|
24720 |
/*! all exports used */
|
24721 |
/***/ (function(module, exports, __webpack_require__) {
|
24722 |
|
24723 |
+
var memoize = __webpack_require__(/*! ./memoize */ 244);
|
24724 |
|
24725 |
/** Used as the maximum memoize cache size. */
|
24726 |
var MAX_MEMOIZE_SIZE = 500;
|
24749 |
|
24750 |
|
24751 |
/***/ }),
|
24752 |
+
/* 244 */
|
24753 |
/*!****************************************!*\
|
24754 |
!*** ./node_modules/lodash/memoize.js ***!
|
24755 |
\****************************************/
|
24833 |
|
24834 |
|
24835 |
/***/ }),
|
24836 |
+
/* 245 */
|
24837 |
/*!**************************************!*\
|
24838 |
!*** ./node_modules/lodash/hasIn.js ***!
|
24839 |
\**************************************/
|
24841 |
/*! all exports used */
|
24842 |
/***/ (function(module, exports, __webpack_require__) {
|
24843 |
|
24844 |
+
var baseHasIn = __webpack_require__(/*! ./_baseHasIn */ 246),
|
24845 |
+
hasPath = __webpack_require__(/*! ./_hasPath */ 247);
|
24846 |
|
24847 |
/**
|
24848 |
* Checks if `path` is a direct or inherited property of `object`.
|
24878 |
|
24879 |
|
24880 |
/***/ }),
|
24881 |
+
/* 246 */
|
24882 |
/*!*******************************************!*\
|
24883 |
!*** ./node_modules/lodash/_baseHasIn.js ***!
|
24884 |
\*******************************************/
|
24902 |
|
24903 |
|
24904 |
/***/ }),
|
24905 |
+
/* 247 */
|
24906 |
/*!*****************************************!*\
|
24907 |
!*** ./node_modules/lodash/_hasPath.js ***!
|
24908 |
\*****************************************/
|
24952 |
|
24953 |
|
24954 |
/***/ }),
|
24955 |
+
/* 248 */
|
24956 |
/*!*****************************************!*\
|
24957 |
!*** ./node_modules/lodash/property.js ***!
|
24958 |
\*****************************************/
|
24960 |
/*! all exports used */
|
24961 |
/***/ (function(module, exports, __webpack_require__) {
|
24962 |
|
24963 |
+
var baseProperty = __webpack_require__(/*! ./_baseProperty */ 132),
|
24964 |
+
basePropertyDeep = __webpack_require__(/*! ./_basePropertyDeep */ 249),
|
24965 |
isKey = __webpack_require__(/*! ./_isKey */ 60),
|
24966 |
toKey = __webpack_require__(/*! ./_toKey */ 25);
|
24967 |
|
24995 |
|
24996 |
|
24997 |
/***/ }),
|
24998 |
+
/* 249 */
|
24999 |
/*!**************************************************!*\
|
25000 |
!*** ./node_modules/lodash/_basePropertyDeep.js ***!
|
25001 |
\**************************************************/
|
25022 |
|
25023 |
|
25024 |
/***/ }),
|
25025 |
+
/* 250 */
|
25026 |
/*!*****************************************!*\
|
25027 |
!*** ./node_modules/lodash/_baseMap.js ***!
|
25028 |
\*****************************************/
|
25030 |
/*! all exports used */
|
25031 |
/***/ (function(module, exports, __webpack_require__) {
|
25032 |
|
25033 |
+
var baseEach = __webpack_require__(/*! ./_baseEach */ 251),
|
25034 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23);
|
25035 |
|
25036 |
/**
|
25055 |
|
25056 |
|
25057 |
/***/ }),
|
25058 |
+
/* 251 */
|
25059 |
/*!******************************************!*\
|
25060 |
!*** ./node_modules/lodash/_baseEach.js ***!
|
25061 |
\******************************************/
|
25063 |
/*! all exports used */
|
25064 |
/***/ (function(module, exports, __webpack_require__) {
|
25065 |
|
25066 |
+
var baseForOwn = __webpack_require__(/*! ./_baseForOwn */ 252),
|
25067 |
+
createBaseEach = __webpack_require__(/*! ./_createBaseEach */ 255);
|
25068 |
|
25069 |
/**
|
25070 |
* The base implementation of `_.forEach` without support for iteratee shorthands.
|
25080 |
|
25081 |
|
25082 |
/***/ }),
|
25083 |
+
/* 252 */
|
25084 |
/*!********************************************!*\
|
25085 |
!*** ./node_modules/lodash/_baseForOwn.js ***!
|
25086 |
\********************************************/
|
25088 |
/*! all exports used */
|
25089 |
/***/ (function(module, exports, __webpack_require__) {
|
25090 |
|
25091 |
+
var baseFor = __webpack_require__(/*! ./_baseFor */ 253),
|
25092 |
keys = __webpack_require__(/*! ./keys */ 22);
|
25093 |
|
25094 |
/**
|
25107 |
|
25108 |
|
25109 |
/***/ }),
|
25110 |
+
/* 253 */
|
25111 |
/*!*****************************************!*\
|
25112 |
!*** ./node_modules/lodash/_baseFor.js ***!
|
25113 |
\*****************************************/
|
25115 |
/*! all exports used */
|
25116 |
/***/ (function(module, exports, __webpack_require__) {
|
25117 |
|
25118 |
+
var createBaseFor = __webpack_require__(/*! ./_createBaseFor */ 254);
|
25119 |
|
25120 |
/**
|
25121 |
* The base implementation of `baseForOwn` which iterates over `object`
|
25134 |
|
25135 |
|
25136 |
/***/ }),
|
25137 |
+
/* 254 */
|
25138 |
/*!***********************************************!*\
|
25139 |
!*** ./node_modules/lodash/_createBaseFor.js ***!
|
25140 |
\***********************************************/
|
25170 |
|
25171 |
|
25172 |
/***/ }),
|
25173 |
+
/* 255 */
|
25174 |
/*!************************************************!*\
|
25175 |
!*** ./node_modules/lodash/_createBaseEach.js ***!
|
25176 |
\************************************************/
|
25213 |
|
25214 |
|
25215 |
/***/ }),
|
25216 |
+
/* 256 */
|
25217 |
/*!********************************************!*\
|
25218 |
!*** ./src/components/typography/fonts.js ***!
|
25219 |
\********************************************/
|
26118 |
/* harmony default export */ __webpack_exports__["a"] = (fonts);
|
26119 |
|
26120 |
/***/ }),
|
26121 |
+
/* 257 */
|
26122 |
/*!********************************************************************!*\
|
26123 |
!*** ./node_modules/react-select/dist/react-select.browser.esm.js ***!
|
26124 |
\********************************************************************/
|
26130 |
/* unused harmony export NonceProvider */
|
26131 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react__ = __webpack_require__(/*! react */ 6);
|
26132 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_react__);
|
26133 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_memoize_one__ = __webpack_require__(/*! memoize-one */ 133);
|
26134 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__emotion_core__ = __webpack_require__(/*! @emotion/core */ 63);
|
26135 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom__ = __webpack_require__(/*! react-dom */ 18);
|
26136 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_react_dom___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_react_dom__);
|
26137 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_prop_types__ = __webpack_require__(/*! prop-types */ 15);
|
26138 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_prop_types___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_prop_types__);
|
26139 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__utils_06b0d5a4_browser_esm_js__ = __webpack_require__(/*! ./utils-06b0d5a4.browser.esm.js */ 64);
|
26140 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__index_4322c0ed_browser_esm_js__ = __webpack_require__(/*! ./index-4322c0ed.browser.esm.js */ 139);
|
26141 |
/* unused harmony reexport components */
|
26142 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__Select_9fdb8cd0_browser_esm_js__ = __webpack_require__(/*! ./Select-9fdb8cd0.browser.esm.js */ 141);
|
26143 |
/* unused harmony reexport createFilter */
|
26144 |
/* unused harmony reexport defaultTheme */
|
26145 |
/* unused harmony reexport mergeStyles */
|
26146 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__emotion_css__ = __webpack_require__(/*! @emotion/css */ 29);
|
26147 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9_react_input_autosize__ = __webpack_require__(/*! react-input-autosize */ 140);
|
26148 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9_react_input_autosize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_9_react_input_autosize__);
|
26149 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__stateManager_04f734a2_browser_esm_js__ = __webpack_require__(/*! ./stateManager-04f734a2.browser.esm.js */ 278);
|
26150 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__emotion_cache__ = __webpack_require__(/*! @emotion/cache */ 134);
|
26151 |
|
26152 |
|
26153 |
|
26203 |
|
26204 |
|
26205 |
/***/ }),
|
26206 |
+
/* 258 */
|
26207 |
/*!********************************************************!*\
|
26208 |
!*** ./node_modules/react/cjs/react.production.min.js ***!
|
26209 |
\********************************************************/
|
26240 |
|
26241 |
|
26242 |
/***/ }),
|
26243 |
+
/* 259 */
|
26244 |
/*!*****************************************************!*\
|
26245 |
!*** ./node_modules/react/cjs/react.development.js ***!
|
26246 |
\*****************************************************/
|
28573 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
28574 |
|
28575 |
/***/ }),
|
28576 |
+
/* 260 */
|
28577 |
/*!*****************************************************************************************!*\
|
28578 |
!*** ./node_modules/@emotion/core/node_modules/@babel/runtime/helpers/inheritsLoose.js ***!
|
28579 |
\*****************************************************************************************/
|
28590 |
module.exports = _inheritsLoose;
|
28591 |
|
28592 |
/***/ }),
|
28593 |
+
/* 261 */
|
28594 |
/*!*****************************************************************!*\
|
28595 |
!*** ./node_modules/@emotion/stylis/dist/stylis.browser.esm.js ***!
|
28596 |
\*****************************************************************/
|
29217 |
|
29218 |
|
29219 |
/***/ }),
|
29220 |
+
/* 262 */
|
29221 |
/*!*****************************************************************************!*\
|
29222 |
!*** ./node_modules/@emotion/weak-memoize/dist/weak-memoize.browser.esm.js ***!
|
29223 |
\*****************************************************************************/
|
29244 |
|
29245 |
|
29246 |
/***/ }),
|
29247 |
+
/* 263 */
|
29248 |
/*!***************************************************************!*\
|
29249 |
!*** ./node_modules/@emotion/utils/dist/utils.browser.esm.js ***!
|
29250 |
\***************************************************************/
|
29298 |
|
29299 |
|
29300 |
/***/ }),
|
29301 |
+
/* 264 */
|
29302 |
/*!*************************************************************!*\
|
29303 |
!*** ./node_modules/@emotion/hash/dist/hash.browser.esm.js ***!
|
29304 |
\*************************************************************/
|
29365 |
|
29366 |
|
29367 |
/***/ }),
|
29368 |
+
/* 265 */
|
29369 |
/*!*********************************************************************!*\
|
29370 |
!*** ./node_modules/@emotion/unitless/dist/unitless.browser.esm.js ***!
|
29371 |
\*********************************************************************/
|
29427 |
|
29428 |
|
29429 |
/***/ }),
|
29430 |
+
/* 266 */
|
29431 |
/*!*******************************************************************!*\
|
29432 |
!*** ./node_modules/@emotion/memoize/dist/memoize.browser.esm.js ***!
|
29433 |
\*******************************************************************/
|
29448 |
|
29449 |
|
29450 |
/***/ }),
|
29451 |
+
/* 267 */
|
29452 |
/*!****************************************************************!*\
|
29453 |
!*** ./node_modules/react-dom/cjs/react-dom.production.min.js ***!
|
29454 |
\****************************************************************/
|
29469 |
/*
|
29470 |
Modernizr 3.0.0pre (Custom Build) | MIT
|
29471 |
*/
|
29472 |
+
var aa=__webpack_require__(/*! react */ 6),n=__webpack_require__(/*! object-assign */ 26),q=__webpack_require__(/*! scheduler */ 137);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));var ba=null,ca={};
|
29473 |
function da(){if(ba)for(var a in ca){var b=ca[a],c=ba.indexOf(a);if(!(-1<c))throw Error(u(96,a));if(!ea[c]){if(!b.extractEvents)throw Error(u(97,a));ea[c]=b;c=b.eventTypes;for(var d in c){var e=void 0;var f=c[d],g=b,h=d;if(fa.hasOwnProperty(h))throw Error(u(99,h));fa[h]=f;var k=f.phasedRegistrationNames;if(k){for(e in k)k.hasOwnProperty(e)&&ha(k[e],g,h);e=!0}else f.registrationName?(ha(f.registrationName,g,h),e=!0):e=!1;if(!e)throw Error(u(98,d,a));}}}}
|
29474 |
function ha(a,b,c){if(ia[a])throw Error(u(100,a));ia[a]=b;ja[a]=b.eventTypes[c].dependencies}var ea=[],fa={},ia={},ja={};function ka(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 la=!1,ma=null,na=!1,oa=null,pa={onError:function(a){la=!0;ma=a}};function qa(a,b,c,d,e,f,g,h,k){la=!1;ma=null;ka.apply(pa,arguments)}
|
29475 |
function ra(a,b,c,d,e,f,g,h,k){qa.apply(this,arguments);if(la){if(la){var l=ma;la=!1;ma=null}else throw Error(u(198));na||(na=!0,oa=l)}}var sa=null,ua=null,va=null;function wa(a,b,c){var d=a.type||"unknown-event";a.currentTarget=va(c);ra(d,b,void 0,a);a.currentTarget=null}function xa(a,b){if(null==b)throw Error(u(30));if(null==a)return b;if(Array.isArray(a)){if(Array.isArray(b))return a.push.apply(a,b),a;a.push(b);return a}return Array.isArray(b)?[a].concat(b):[a,b]}
|
29750 |
|
29751 |
|
29752 |
/***/ }),
|
29753 |
+
/* 268 */
|
29754 |
/*!***************************************************************************************!*\
|
29755 |
!*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler.production.min.js ***!
|
29756 |
\***************************************************************************************/
|
29784 |
|
29785 |
|
29786 |
/***/ }),
|
29787 |
+
/* 269 */
|
29788 |
/*!************************************************************************************!*\
|
29789 |
!*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler.development.js ***!
|
29790 |
\************************************************************************************/
|
30701 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../../process/browser.js */ 3)))
|
30702 |
|
30703 |
/***/ }),
|
30704 |
+
/* 270 */
|
30705 |
/*!*************************************************************!*\
|
30706 |
!*** ./node_modules/react-dom/cjs/react-dom.development.js ***!
|
30707 |
\*************************************************************/
|
30729 |
|
30730 |
var React = __webpack_require__(/*! react */ 6);
|
30731 |
var _assign = __webpack_require__(/*! object-assign */ 26);
|
30732 |
+
var Scheduler = __webpack_require__(/*! scheduler */ 137);
|
30733 |
var checkPropTypes = __webpack_require__(/*! prop-types/checkPropTypes */ 61);
|
30734 |
+
var tracing = __webpack_require__(/*! scheduler/tracing */ 271);
|
30735 |
|
30736 |
// Do not require this module directly! Use normal `invariant` calls with
|
30737 |
// template literal strings. The messages will be replaced with error codes
|
58509 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
58510 |
|
58511 |
/***/ }),
|
58512 |
+
/* 271 */
|
58513 |
/*!******************************************************************!*\
|
58514 |
!*** ./node_modules/react-dom/node_modules/scheduler/tracing.js ***!
|
58515 |
\******************************************************************/
|
58521 |
/* WEBPACK VAR INJECTION */(function(process) {
|
58522 |
|
58523 |
if (process.env.NODE_ENV === 'production') {
|
58524 |
+
module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.production.min.js */ 272);
|
58525 |
} else {
|
58526 |
+
module.exports = __webpack_require__(/*! ./cjs/scheduler-tracing.development.js */ 273);
|
58527 |
}
|
58528 |
|
58529 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../process/browser.js */ 3)))
|
58530 |
|
58531 |
/***/ }),
|
58532 |
+
/* 272 */
|
58533 |
/*!***********************************************************************************************!*\
|
58534 |
!*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler-tracing.production.min.js ***!
|
58535 |
\***********************************************************************************************/
|
58551 |
|
58552 |
|
58553 |
/***/ }),
|
58554 |
+
/* 273 */
|
58555 |
/*!********************************************************************************************!*\
|
58556 |
!*** ./node_modules/react-dom/node_modules/scheduler/cjs/scheduler-tracing.development.js ***!
|
58557 |
\********************************************************************************************/
|
58987 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../../../process/browser.js */ 3)))
|
58988 |
|
58989 |
/***/ }),
|
58990 |
+
/* 274 */
|
58991 |
/*!**************************************************************!*\
|
58992 |
!*** ./node_modules/react-is/cjs/react-is.production.min.js ***!
|
58993 |
\**************************************************************/
|
59014 |
|
59015 |
|
59016 |
/***/ }),
|
59017 |
+
/* 275 */
|
59018 |
/*!***********************************************************!*\
|
59019 |
!*** ./node_modules/react-is/cjs/react-is.development.js ***!
|
59020 |
\***********************************************************/
|
59254 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
59255 |
|
59256 |
/***/ }),
|
59257 |
+
/* 276 */
|
59258 |
/*!************************************************************!*\
|
59259 |
!*** ./node_modules/prop-types/factoryWithTypeCheckers.js ***!
|
59260 |
\************************************************************/
|
59272 |
|
59273 |
|
59274 |
|
59275 |
+
var ReactIs = __webpack_require__(/*! react-is */ 138);
|
59276 |
var assign = __webpack_require__(/*! object-assign */ 26);
|
59277 |
|
59278 |
var ReactPropTypesSecret = __webpack_require__(/*! ./lib/ReactPropTypesSecret */ 62);
|
59858 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
59859 |
|
59860 |
/***/ }),
|
59861 |
+
/* 277 */
|
59862 |
/*!*************************************************************!*\
|
59863 |
!*** ./node_modules/prop-types/factoryWithThrowingShims.js ***!
|
59864 |
\*************************************************************/
|
59934 |
|
59935 |
|
59936 |
/***/ }),
|
59937 |
+
/* 278 */
|
59938 |
/*!*****************************************************************************!*\
|
59939 |
!*** ./node_modules/react-select/dist/stateManager-04f734a2.browser.esm.js ***!
|
59940 |
\*****************************************************************************/
|
60078 |
|
60079 |
|
60080 |
/***/ }),
|
60081 |
+
/* 279 */
|
60082 |
/*!*******************************************************!*\
|
60083 |
!*** ./src/components/typography/range-typography.js ***!
|
60084 |
\*******************************************************/
|
60241 |
/* harmony default export */ __webpack_exports__["a"] = (RangeTypographyControl);
|
60242 |
|
60243 |
/***/ }),
|
60244 |
+
/* 280 */
|
60245 |
/*!****************************************************!*\
|
60246 |
!*** ./src/components/typography/inline-styles.js ***!
|
60247 |
\****************************************************/
|
60261 |
/* unused harmony default export */ var _unused_webpack_default_export = (TypographyStyles);
|
60262 |
|
60263 |
/***/ }),
|
60264 |
+
/* 281 */
|
60265 |
/*!***********************************************!*\
|
60266 |
!*** ./src/components/typography/editor.scss ***!
|
60267 |
\***********************************************/
|
60271 |
// removed by extract-text-webpack-plugin
|
60272 |
|
60273 |
/***/ }),
|
60274 |
+
/* 282 */
|
60275 |
/*!*****************************************************!*\
|
60276 |
!*** ./node_modules/webfontloader/webfontloader.js ***!
|
60277 |
\*****************************************************/
|
60300 |
|
60301 |
|
60302 |
/***/ }),
|
60303 |
+
/* 283 */
|
60304 |
/*!*********************************************!*\
|
60305 |
!*** ./src/blocks/advanced-heading/save.js ***!
|
60306 |
\*********************************************/
|
60360 |
}
|
60361 |
|
60362 |
/***/ }),
|
60363 |
+
/* 284 */
|
60364 |
/*!***************************************************!*\
|
60365 |
!*** ./src/blocks/advanced-heading/deprecated.js ***!
|
60366 |
\***************************************************/
|
60369 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
60370 |
|
60371 |
"use strict";
|
60372 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__attributes__ = __webpack_require__(/*! ./attributes */ 112);
|
60373 |
/**
|
60374 |
* BLOCK: Advanced Heading - Deprecated Block
|
60375 |
*/
|
60456 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
60457 |
|
60458 |
/***/ }),
|
60459 |
+
/* 285 */
|
60460 |
/*!**************************************************!*\
|
60461 |
!*** ./src/blocks/advanced-heading/transform.js ***!
|
60462 |
\**************************************************/
|
60521 |
/* harmony default export */ __webpack_exports__["a"] = (transform);
|
60522 |
|
60523 |
/***/ }),
|
60524 |
+
/* 286 */
|
60525 |
/*!**********************************!*\
|
60526 |
!*** ./src/blocks/post/block.js ***!
|
60527 |
\**********************************/
|
60529 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
60530 |
|
60531 |
"use strict";
|
60532 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__post_grid_block_js__ = __webpack_require__(/*! ./post-grid/block.js */ 287);
|
60533 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_masonry_block_js__ = __webpack_require__(/*! ./post-masonry/block.js */ 301);
|
60534 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__post_carousel_block_js__ = __webpack_require__(/*! ./post-carousel/block.js */ 370);
|
60535 |
/**
|
60536 |
* Gutenberg Blocks
|
60537 |
*
|
60548 |
|
60549 |
|
60550 |
/***/ }),
|
60551 |
+
/* 287 */
|
60552 |
/*!********************************************!*\
|
60553 |
!*** ./src/blocks/post/post-grid/block.js ***!
|
60554 |
\********************************************/
|
60556 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
60557 |
|
60558 |
"use strict";
|
60559 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 288);
|
60560 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
60561 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 74);
|
60562 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
60597 |
});
|
60598 |
|
60599 |
/***/ }),
|
60600 |
+
/* 288 */
|
60601 |
/*!*******************************************!*\
|
60602 |
!*** ./src/blocks/post/post-grid/edit.js ***!
|
60603 |
\*******************************************/
|
60609 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
60610 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
60611 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
60612 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blog__ = __webpack_require__(/*! ./blog */ 289);
|
60613 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! .././styling */ 73);
|
60614 |
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; }; }();
|
60615 |
|
60650 |
ToggleControl = _wp$components.ToggleControl,
|
60651 |
TabPanel = _wp$components.TabPanel,
|
60652 |
Dashicon = _wp$components.Dashicon,
|
60653 |
+
TextControl = _wp$components.TextControl,
|
60654 |
+
RadioControl = _wp$components.RadioControl,
|
60655 |
+
IconButton = _wp$components.IconButton;
|
60656 |
var _wp$blockEditor = wp.blockEditor,
|
60657 |
InspectorControls = _wp$blockEditor.InspectorControls,
|
60658 |
BlockAlignmentToolbar = _wp$blockEditor.BlockAlignmentToolbar,
|
60890 |
paginationPrevText = attributes.paginationPrevText,
|
60891 |
paginationNextText = attributes.paginationNextText,
|
60892 |
inheritFromTheme = attributes.inheritFromTheme,
|
60893 |
+
postDisplaytext = attributes.postDisplaytext,
|
60894 |
+
displayPostContentRadio = attributes.displayPostContentRadio,
|
60895 |
+
excludeCurrentPost = attributes.excludeCurrentPost;
|
60896 |
|
60897 |
|
60898 |
var hoverSettings = wp.element.createElement(
|
61109 |
}),
|
61110 |
wp.element.createElement("hr", { className: "uagb-editor__separator" })
|
61111 |
),
|
61112 |
+
wp.element.createElement(ToggleControl, {
|
61113 |
+
label: __("Exclude Current Post"),
|
61114 |
+
checked: excludeCurrentPost,
|
61115 |
+
onChange: function onChange(value) {
|
61116 |
+
return setAttributes({ excludeCurrentPost: !excludeCurrentPost });
|
61117 |
+
}
|
61118 |
+
}),
|
61119 |
wp.element.createElement(RangeControl, {
|
61120 |
label: __("Posts Per Page"),
|
61121 |
value: postsToShow,
|
61254 |
},
|
61255 |
options: [{ value: "border", label: __("Border") }, { value: "filled", label: __("Filled") }]
|
61256 |
}),
|
61257 |
+
wp.element.createElement(
|
61258 |
+
"h2",
|
61259 |
+
null,
|
61260 |
+
" ",
|
61261 |
+
__("Pagination Alignment")
|
61262 |
+
),
|
61263 |
+
wp.element.createElement(IconButton, {
|
61264 |
+
key: "left",
|
61265 |
+
icon: "editor-alignleft",
|
61266 |
+
label: "Left",
|
61267 |
+
onClick: function onClick() {
|
61268 |
+
return setAttributes({ paginationAlignment: "left" });
|
61269 |
},
|
61270 |
+
"aria-pressed": "left" === paginationAlignment,
|
61271 |
+
isPrimary: "left" === paginationAlignment
|
61272 |
+
}),
|
61273 |
+
wp.element.createElement(IconButton, {
|
61274 |
+
key: "center",
|
61275 |
+
icon: "editor-aligncenter",
|
61276 |
+
label: "Right",
|
61277 |
+
onClick: function onClick() {
|
61278 |
+
return setAttributes({ paginationAlignment: "center" });
|
61279 |
+
},
|
61280 |
+
"aria-pressed": "center" === paginationAlignment,
|
61281 |
+
isPrimary: "center" === paginationAlignment
|
61282 |
+
}),
|
61283 |
+
wp.element.createElement(IconButton, {
|
61284 |
+
key: "right",
|
61285 |
+
icon: "editor-alignright",
|
61286 |
+
label: "Right",
|
61287 |
+
onClick: function onClick() {
|
61288 |
+
return setAttributes({ paginationAlignment: "right" });
|
61289 |
+
},
|
61290 |
+
"aria-pressed": "right" === paginationAlignment,
|
61291 |
+
isPrimary: "right" === paginationAlignment
|
61292 |
}),
|
61293 |
wp.element.createElement("hr", { className: "uagb-editor__separator" }),
|
61294 |
paginationLayout == "filled" && wp.element.createElement(
|
61547 |
return setAttributes({ displayPostExcerpt: !displayPostExcerpt });
|
61548 |
}
|
61549 |
}),
|
61550 |
+
displayPostExcerpt && wp.element.createElement(RadioControl, {
|
61551 |
+
label: __('Show:'),
|
61552 |
+
selected: displayPostContentRadio,
|
61553 |
+
options: [{ label: __('Excerpt'), value: "excerpt" }, { label: __('Full post'), value: "full_post" }],
|
61554 |
+
onChange: function onChange(value) {
|
61555 |
+
return setAttributes({
|
61556 |
+
displayPostContentRadio: value
|
61557 |
+
});
|
61558 |
+
}
|
61559 |
+
}),
|
61560 |
+
displayPostExcerpt && displayPostContentRadio === 'excerpt' && wp.element.createElement(RangeControl, {
|
61561 |
+
label: __('Max number of words in excerpt'),
|
61562 |
value: excerptLength,
|
61563 |
onChange: function onChange(value) {
|
61564 |
return setAttributes({ excerptLength: value });
|
61565 |
},
|
61566 |
min: 1,
|
61567 |
+
max: 100,
|
61568 |
allowReset: true
|
61569 |
})
|
61570 |
),
|
61571 |
+
displayPostExcerpt && displayPostContentRadio === 'excerpt' && wp.element.createElement(
|
61572 |
PanelBody,
|
61573 |
{ title: __("Read More Link"), initialOpen: false },
|
61574 |
wp.element.createElement(ToggleControl, {
|
62019 |
postType = _props$attributes.postType,
|
62020 |
taxonomyType = _props$attributes.taxonomyType,
|
62021 |
paginationMarkup = _props$attributes.paginationMarkup,
|
62022 |
+
postPagination = _props$attributes.postPagination,
|
62023 |
+
excludeCurrentPost = _props$attributes.excludeCurrentPost;
|
62024 |
var setAttributes = props.setAttributes;
|
62025 |
|
62026 |
var _select = select("core"),
|
62067 |
per_page: postsToShow
|
62068 |
};
|
62069 |
|
62070 |
+
if (excludeCurrentPost) {
|
62071 |
+
latestPostsQuery['exclude'] = select("core/editor").getCurrentPostId();
|
62072 |
+
}
|
62073 |
+
|
62074 |
latestPostsQuery[rest_base] = categories;
|
62075 |
return {
|
62076 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
62080 |
})(UAGBPostGrid));
|
62081 |
|
62082 |
/***/ }),
|
62083 |
+
/* 289 */
|
62084 |
/*!*******************************************!*\
|
62085 |
!*** ./src/blocks/post/post-grid/blog.js ***!
|
62086 |
\*******************************************/
|
62188 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
62189 |
|
62190 |
/***/ }),
|
62191 |
+
/* 290 */
|
62192 |
/*!*****************************************!*\
|
62193 |
!*** ./node_modules/lodash/truncate.js ***!
|
62194 |
\*****************************************/
|
62195 |
/*! dynamic exports provided */
|
62196 |
/***/ (function(module, exports, __webpack_require__) {
|
62197 |
|
62198 |
+
var baseToString = __webpack_require__(/*! ./_baseToString */ 131),
|
62199 |
+
castSlice = __webpack_require__(/*! ./_castSlice */ 291),
|
62200 |
hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 70),
|
62201 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
62202 |
+
isRegExp = __webpack_require__(/*! ./isRegExp */ 292),
|
62203 |
+
stringSize = __webpack_require__(/*! ./_stringSize */ 294),
|
62204 |
+
stringToArray = __webpack_require__(/*! ./_stringToArray */ 297),
|
62205 |
toInteger = __webpack_require__(/*! ./toInteger */ 71),
|
62206 |
+
toString = __webpack_require__(/*! ./toString */ 130);
|
62207 |
|
62208 |
/** Used as default options for `_.truncate`. */
|
62209 |
var DEFAULT_TRUNC_LENGTH = 30,
|
62309 |
|
62310 |
|
62311 |
/***/ }),
|
62312 |
+
/* 291 */
|
62313 |
/*!*******************************************!*\
|
62314 |
!*** ./node_modules/lodash/_castSlice.js ***!
|
62315 |
\*******************************************/
|
62338 |
|
62339 |
|
62340 |
/***/ }),
|
62341 |
+
/* 292 */
|
62342 |
/*!*****************************************!*\
|
62343 |
!*** ./node_modules/lodash/isRegExp.js ***!
|
62344 |
\*****************************************/
|
62346 |
/*! all exports used */
|
62347 |
/***/ (function(module, exports, __webpack_require__) {
|
62348 |
|
62349 |
+
var baseIsRegExp = __webpack_require__(/*! ./_baseIsRegExp */ 293),
|
62350 |
baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
|
62351 |
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
|
62352 |
|
62376 |
|
62377 |
|
62378 |
/***/ }),
|
62379 |
+
/* 293 */
|
62380 |
/*!**********************************************!*\
|
62381 |
!*** ./node_modules/lodash/_baseIsRegExp.js ***!
|
62382 |
\**********************************************/
|
62405 |
|
62406 |
|
62407 |
/***/ }),
|
62408 |
+
/* 294 */
|
62409 |
/*!********************************************!*\
|
62410 |
!*** ./node_modules/lodash/_stringSize.js ***!
|
62411 |
\********************************************/
|
62413 |
/*! all exports used */
|
62414 |
/***/ (function(module, exports, __webpack_require__) {
|
62415 |
|
62416 |
+
var asciiSize = __webpack_require__(/*! ./_asciiSize */ 295),
|
62417 |
hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 70),
|
62418 |
+
unicodeSize = __webpack_require__(/*! ./_unicodeSize */ 296);
|
62419 |
|
62420 |
/**
|
62421 |
* Gets the number of symbols in `string`.
|
62434 |
|
62435 |
|
62436 |
/***/ }),
|
62437 |
+
/* 295 */
|
62438 |
/*!*******************************************!*\
|
62439 |
!*** ./node_modules/lodash/_asciiSize.js ***!
|
62440 |
\*******************************************/
|
62442 |
/*! all exports used */
|
62443 |
/***/ (function(module, exports, __webpack_require__) {
|
62444 |
|
62445 |
+
var baseProperty = __webpack_require__(/*! ./_baseProperty */ 132);
|
62446 |
|
62447 |
/**
|
62448 |
* Gets the size of an ASCII `string`.
|
62457 |
|
62458 |
|
62459 |
/***/ }),
|
62460 |
+
/* 296 */
|
62461 |
/*!*********************************************!*\
|
62462 |
!*** ./node_modules/lodash/_unicodeSize.js ***!
|
62463 |
\*********************************************/
|
62512 |
|
62513 |
|
62514 |
/***/ }),
|
62515 |
+
/* 297 */
|
62516 |
/*!***********************************************!*\
|
62517 |
!*** ./node_modules/lodash/_stringToArray.js ***!
|
62518 |
\***********************************************/
|
62520 |
/*! all exports used */
|
62521 |
/***/ (function(module, exports, __webpack_require__) {
|
62522 |
|
62523 |
+
var asciiToArray = __webpack_require__(/*! ./_asciiToArray */ 298),
|
62524 |
hasUnicode = __webpack_require__(/*! ./_hasUnicode */ 70),
|
62525 |
+
unicodeToArray = __webpack_require__(/*! ./_unicodeToArray */ 299);
|
62526 |
|
62527 |
/**
|
62528 |
* Converts `string` to an array.
|
62541 |
|
62542 |
|
62543 |
/***/ }),
|
62544 |
+
/* 298 */
|
62545 |
/*!**********************************************!*\
|
62546 |
!*** ./node_modules/lodash/_asciiToArray.js ***!
|
62547 |
\**********************************************/
|
62564 |
|
62565 |
|
62566 |
/***/ }),
|
62567 |
+
/* 299 */
|
62568 |
/*!************************************************!*\
|
62569 |
!*** ./node_modules/lodash/_unicodeToArray.js ***!
|
62570 |
\************************************************/
|
62615 |
|
62616 |
|
62617 |
/***/ }),
|
62618 |
+
/* 300 */
|
62619 |
/*!*****************************************!*\
|
62620 |
!*** ./node_modules/lodash/toFinite.js ***!
|
62621 |
\*****************************************/
|
62623 |
/*! all exports used */
|
62624 |
/***/ (function(module, exports, __webpack_require__) {
|
62625 |
|
62626 |
+
var toNumber = __webpack_require__(/*! ./toNumber */ 143);
|
62627 |
|
62628 |
/** Used as references for various `Number` constants. */
|
62629 |
var INFINITY = 1 / 0,
|
62668 |
|
62669 |
|
62670 |
/***/ }),
|
62671 |
+
/* 301 */
|
62672 |
/*!***********************************************!*\
|
62673 |
!*** ./src/blocks/post/post-masonry/block.js ***!
|
62674 |
\***********************************************/
|
62676 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
62677 |
|
62678 |
"use strict";
|
62679 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 302);
|
62680 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
62681 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 74);
|
62682 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
62717 |
});
|
62718 |
|
62719 |
/***/ }),
|
62720 |
+
/* 302 */
|
62721 |
/*!**********************************************!*\
|
62722 |
!*** ./src/blocks/post/post-masonry/edit.js ***!
|
62723 |
\**********************************************/
|
62729 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
62730 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
62731 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
62732 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__blog__ = __webpack_require__(/*! ./blog */ 303);
|
62733 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! .././styling */ 73);
|
62734 |
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; };
|
62735 |
|
62769 |
Spinner = _wp$components.Spinner,
|
62770 |
ToggleControl = _wp$components.ToggleControl,
|
62771 |
TabPanel = _wp$components.TabPanel,
|
62772 |
+
ButtonGroup = _wp$components.ButtonGroup,
|
62773 |
+
Button = _wp$components.Button,
|
62774 |
Dashicon = _wp$components.Dashicon,
|
62775 |
+
TextControl = _wp$components.TextControl,
|
62776 |
+
IconButton = _wp$components.IconButton,
|
62777 |
+
RadioControl = _wp$components.RadioControl;
|
62778 |
var _wp$blockEditor = wp.blockEditor,
|
62779 |
InspectorControls = _wp$blockEditor.InspectorControls,
|
62780 |
BlockAlignmentToolbar = _wp$blockEditor.BlockAlignmentToolbar,
|
62941 |
postType = attributes.postType,
|
62942 |
taxonomyType = attributes.taxonomyType,
|
62943 |
inheritFromTheme = attributes.inheritFromTheme,
|
62944 |
+
postDisplaytext = attributes.postDisplaytext,
|
62945 |
+
paginationType = attributes.paginationType,
|
62946 |
+
paginationEventType = attributes.paginationEventType,
|
62947 |
+
buttonText = attributes.buttonText,
|
62948 |
+
paginationAlign = attributes.paginationAlign,
|
62949 |
+
paginationTextColor = attributes.paginationTextColor,
|
62950 |
+
paginationTextHoverColor = attributes.paginationTextHoverColor,
|
62951 |
+
paginationMasonryBgColor = attributes.paginationMasonryBgColor,
|
62952 |
+
paginationBgHoverColor = attributes.paginationBgHoverColor,
|
62953 |
+
paginationMasonryBorderStyle = attributes.paginationMasonryBorderStyle,
|
62954 |
+
paginationMasonryBorderWidth = attributes.paginationMasonryBorderWidth,
|
62955 |
+
paginationMasonryBorderRadius = attributes.paginationMasonryBorderRadius,
|
62956 |
+
paginationMasonryBorderColor = attributes.paginationMasonryBorderColor,
|
62957 |
+
paginationFontSize = attributes.paginationFontSize,
|
62958 |
+
loaderColor = attributes.loaderColor,
|
62959 |
+
loaderSize = attributes.loaderSize,
|
62960 |
+
paginationButtonPaddingType = attributes.paginationButtonPaddingType,
|
62961 |
+
vpaginationButtonPaddingMobile = attributes.vpaginationButtonPaddingMobile,
|
62962 |
+
vpaginationButtonPaddingTablet = attributes.vpaginationButtonPaddingTablet,
|
62963 |
+
vpaginationButtonPaddingDesktop = attributes.vpaginationButtonPaddingDesktop,
|
62964 |
+
hpaginationButtonPaddingMobile = attributes.hpaginationButtonPaddingMobile,
|
62965 |
+
hpaginationButtonPaddingTablet = attributes.hpaginationButtonPaddingTablet,
|
62966 |
+
hpaginationButtonPaddingDesktop = attributes.hpaginationButtonPaddingDesktop,
|
62967 |
+
displayPostContentRadio = attributes.displayPostContentRadio,
|
62968 |
+
excludeCurrentPost = attributes.excludeCurrentPost;
|
62969 |
|
62970 |
|
62971 |
var hoverSettings = wp.element.createElement(
|
63144 |
return categoryListOptions.push({ value: categoriesList[item]["id"], label: categoriesList[item]["name"] });
|
63145 |
});
|
63146 |
}
|
63147 |
+
var paginationSettings = function paginationSettings() {
|
63148 |
+
|
63149 |
+
if ('infinite' === paginationType) {
|
63150 |
+
return wp.element.createElement(
|
63151 |
+
PanelBody,
|
63152 |
+
{
|
63153 |
+
title: __("Pagination"),
|
63154 |
+
initialOpen: false,
|
63155 |
+
className: "uagb__url-panel-body"
|
63156 |
+
},
|
63157 |
+
'button' === paginationEventType && wp.element.createElement(
|
63158 |
+
Fragment,
|
63159 |
+
null,
|
63160 |
+
wp.element.createElement(
|
63161 |
+
"h2",
|
63162 |
+
null,
|
63163 |
+
" ",
|
63164 |
+
__("Alignment")
|
63165 |
+
),
|
63166 |
+
wp.element.createElement(IconButton, {
|
63167 |
+
key: "left",
|
63168 |
+
icon: "editor-alignleft",
|
63169 |
+
label: "Left",
|
63170 |
+
onClick: function onClick() {
|
63171 |
+
return setAttributes({ paginationAlign: "left" });
|
63172 |
+
},
|
63173 |
+
"aria-pressed": "left" === paginationAlign,
|
63174 |
+
isPrimary: "left" === paginationAlign
|
63175 |
+
}),
|
63176 |
+
wp.element.createElement(IconButton, {
|
63177 |
+
key: "center",
|
63178 |
+
icon: "editor-aligncenter",
|
63179 |
+
label: "Right",
|
63180 |
+
onClick: function onClick() {
|
63181 |
+
return setAttributes({ paginationAlign: "center" });
|
63182 |
+
},
|
63183 |
+
"aria-pressed": "center" === paginationAlign,
|
63184 |
+
isPrimary: "center" === paginationAlign
|
63185 |
+
}),
|
63186 |
+
wp.element.createElement(IconButton, {
|
63187 |
+
key: "right",
|
63188 |
+
icon: "editor-alignright",
|
63189 |
+
label: "Right",
|
63190 |
+
onClick: function onClick() {
|
63191 |
+
return setAttributes({ paginationAlign: "right" });
|
63192 |
+
},
|
63193 |
+
"aria-pressed": "right" === paginationAlign,
|
63194 |
+
isPrimary: "right" === paginationAlign
|
63195 |
+
}),
|
63196 |
+
wp.element.createElement(
|
63197 |
+
"h2",
|
63198 |
+
null,
|
63199 |
+
" ",
|
63200 |
+
__("Font Size (px) "),
|
63201 |
+
" "
|
63202 |
+
),
|
63203 |
+
wp.element.createElement(RangeControl, {
|
63204 |
+
value: paginationFontSize,
|
63205 |
+
onChange: function onChange(value) {
|
63206 |
+
return setAttributes({ paginationFontSize: value });
|
63207 |
+
},
|
63208 |
+
min: 0,
|
63209 |
+
max: 100,
|
63210 |
+
allowReset: true
|
63211 |
+
}),
|
63212 |
+
wp.element.createElement(
|
63213 |
+
TabPanel,
|
63214 |
+
{ className: "uagb-size-type-field-tabs uagb-size-type-field__common-tabs uagb-inline-margin", activeClass: "active-tab",
|
63215 |
+
tabs: [{
|
63216 |
+
name: "desktop",
|
63217 |
+
title: wp.element.createElement(Dashicon, { icon: "desktop" }),
|
63218 |
+
className: "uagb-desktop-tab uagb-responsive-tabs"
|
63219 |
+
}, {
|
63220 |
+
name: "tablet",
|
63221 |
+
title: wp.element.createElement(Dashicon, { icon: "tablet" }),
|
63222 |
+
className: "uagb-tablet-tab uagb-responsive-tabs"
|
63223 |
+
}, {
|
63224 |
+
name: "mobile",
|
63225 |
+
title: wp.element.createElement(Dashicon, { icon: "smartphone" }),
|
63226 |
+
className: "uagb-mobile-tab uagb-responsive-tabs"
|
63227 |
+
}] },
|
63228 |
+
function (tab) {
|
63229 |
+
var tabout = void 0;
|
63230 |
+
|
63231 |
+
if ("mobile" === tab.name) {
|
63232 |
+
tabout = wp.element.createElement(
|
63233 |
+
Fragment,
|
63234 |
+
null,
|
63235 |
+
wp.element.createElement(
|
63236 |
+
ButtonGroup,
|
63237 |
+
{ className: "uagb-size-type-field", "aria-label": __("Size Type") },
|
63238 |
+
wp.element.createElement(
|
63239 |
+
Button,
|
63240 |
+
{ key: "px", className: "uagb-size-btn", isSmall: true, isPrimary: paginationButtonPaddingType === "px", "aria-pressed": paginationButtonPaddingType === "px", onClick: function onClick() {
|
63241 |
+
return setAttributes({ paginationButtonPaddingType: "px" });
|
63242 |
+
} },
|
63243 |
+
"px"
|
63244 |
+
),
|
63245 |
+
wp.element.createElement(
|
63246 |
+
Button,
|
63247 |
+
{ key: "%", className: "uagb-size-btn", isSmall: true, isPrimary: paginationButtonPaddingType === "%", "aria-pressed": paginationButtonPaddingType === "%", onClick: function onClick() {
|
63248 |
+
return setAttributes({ paginationButtonPaddingType: "%" });
|
63249 |
+
} },
|
63250 |
+
"%"
|
63251 |
+
)
|
63252 |
+
),
|
63253 |
+
wp.element.createElement(
|
63254 |
+
"h2",
|
63255 |
+
null,
|
63256 |
+
__("Padding")
|
63257 |
+
),
|
63258 |
+
wp.element.createElement(RangeControl, {
|
63259 |
+
label: __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__["a" /* default */].vertical_spacing,
|
63260 |
+
className: "uagb-margin-control",
|
63261 |
+
value: vpaginationButtonPaddingMobile,
|
63262 |
+
onChange: function onChange(value) {
|
63263 |
+
return setAttributes({ vpaginationButtonPaddingMobile: value });
|
63264 |
+
},
|
63265 |
+
min: 0,
|
63266 |
+
max: 100,
|
63267 |
+
allowReset: true
|
63268 |
+
}),
|
63269 |
+
wp.element.createElement(RangeControl, {
|
63270 |
+
label: __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__["a" /* default */].horizontal_spacing,
|
63271 |
+
className: "uagb-margin-control",
|
63272 |
+
value: hpaginationButtonPaddingMobile,
|
63273 |
+
onChange: function onChange(value) {
|
63274 |
+
return setAttributes({ hpaginationButtonPaddingMobile: value });
|
63275 |
+
},
|
63276 |
+
min: 0,
|
63277 |
+
max: 100,
|
63278 |
+
allowReset: true
|
63279 |
+
})
|
63280 |
+
);
|
63281 |
+
} else if ("tablet" === tab.name) {
|
63282 |
+
tabout = wp.element.createElement(
|
63283 |
+
Fragment,
|
63284 |
+
null,
|
63285 |
+
wp.element.createElement(
|
63286 |
+
ButtonGroup,
|
63287 |
+
{ className: "uagb-size-type-field", "aria-label": __("Size Type") },
|
63288 |
+
wp.element.createElement(
|
63289 |
+
Button,
|
63290 |
+
{ key: "px", className: "uagb-size-btn", isSmall: true, isPrimary: paginationButtonPaddingType === "px", "aria-pressed": paginationButtonPaddingType === "px", onClick: function onClick() {
|
63291 |
+
return setAttributes({ paginationButtonPaddingType: "px" });
|
63292 |
+
} },
|
63293 |
+
"px"
|
63294 |
+
),
|
63295 |
+
wp.element.createElement(
|
63296 |
+
Button,
|
63297 |
+
{ key: "%", className: "uagb-size-btn", isSmall: true, isPrimary: paginationButtonPaddingType === "%", "aria-pressed": paginationButtonPaddingType === "%", onClick: function onClick() {
|
63298 |
+
return setAttributes({ paginationButtonPaddingType: "%" });
|
63299 |
+
} },
|
63300 |
+
"%"
|
63301 |
+
)
|
63302 |
+
),
|
63303 |
+
wp.element.createElement(
|
63304 |
+
"h2",
|
63305 |
+
null,
|
63306 |
+
__("Padding")
|
63307 |
+
),
|
63308 |
+
wp.element.createElement(RangeControl, {
|
63309 |
+
label: __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__["a" /* default */].vertical_spacing,
|
63310 |
+
className: "uagb-margin-control",
|
63311 |
+
value: vpaginationButtonPaddingTablet,
|
63312 |
+
onChange: function onChange(value) {
|
63313 |
+
return setAttributes({ vpaginationButtonPaddingTablet: value });
|
63314 |
+
},
|
63315 |
+
min: 0,
|
63316 |
+
max: 100,
|
63317 |
+
allowReset: true
|
63318 |
+
}),
|
63319 |
+
wp.element.createElement(RangeControl, {
|
63320 |
+
label: __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__["a" /* default */].horizontal_spacing,
|
63321 |
+
className: "uagb-margin-control",
|
63322 |
+
value: hpaginationButtonPaddingTablet,
|
63323 |
+
onChange: function onChange(value) {
|
63324 |
+
return setAttributes({ hpaginationButtonPaddingTablet: value });
|
63325 |
+
},
|
63326 |
+
min: 0,
|
63327 |
+
max: 100,
|
63328 |
+
allowReset: true
|
63329 |
+
})
|
63330 |
+
);
|
63331 |
+
} else {
|
63332 |
+
tabout = wp.element.createElement(
|
63333 |
+
Fragment,
|
63334 |
+
null,
|
63335 |
+
wp.element.createElement(
|
63336 |
+
ButtonGroup,
|
63337 |
+
{ className: "uagb-size-type-field", "aria-label": __("Size Type") },
|
63338 |
+
wp.element.createElement(
|
63339 |
+
Button,
|
63340 |
+
{ key: "px", className: "uagb-size-btn", isSmall: true, isPrimary: paginationButtonPaddingType === "px", "aria-pressed": paginationButtonPaddingType === "px", onClick: function onClick() {
|
63341 |
+
return setAttributes({ paginationButtonPaddingType: "px" });
|
63342 |
+
} },
|
63343 |
+
"px"
|
63344 |
+
),
|
63345 |
+
wp.element.createElement(
|
63346 |
+
Button,
|
63347 |
+
{ key: "%", className: "uagb-size-btn", isSmall: true, isPrimary: paginationButtonPaddingType === "%", "aria-pressed": paginationButtonPaddingType === "%", onClick: function onClick() {
|
63348 |
+
return setAttributes({ paginationButtonPaddingType: "%" });
|
63349 |
+
} },
|
63350 |
+
"%"
|
63351 |
+
)
|
63352 |
+
),
|
63353 |
+
wp.element.createElement(
|
63354 |
+
"h2",
|
63355 |
+
null,
|
63356 |
+
__("Padding")
|
63357 |
+
),
|
63358 |
+
wp.element.createElement(RangeControl, {
|
63359 |
+
label: __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__["a" /* default */].vertical_spacing,
|
63360 |
+
className: "uagb-margin-control",
|
63361 |
+
value: vpaginationButtonPaddingDesktop,
|
63362 |
+
onChange: function onChange(value) {
|
63363 |
+
return setAttributes({ vpaginationButtonPaddingDesktop: value });
|
63364 |
+
},
|
63365 |
+
min: 0,
|
63366 |
+
max: 100,
|
63367 |
+
allowReset: true
|
63368 |
+
}),
|
63369 |
+
wp.element.createElement(RangeControl, {
|
63370 |
+
label: __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__["a" /* default */].horizontal_spacing,
|
63371 |
+
className: "uagb-margin-control",
|
63372 |
+
value: hpaginationButtonPaddingDesktop,
|
63373 |
+
onChange: function onChange(value) {
|
63374 |
+
return setAttributes({ hpaginationButtonPaddingDesktop: value });
|
63375 |
+
},
|
63376 |
+
min: 0,
|
63377 |
+
max: 100,
|
63378 |
+
allowReset: true
|
63379 |
+
})
|
63380 |
+
);
|
63381 |
+
}
|
63382 |
|
63383 |
+
return wp.element.createElement(
|
63384 |
+
"div",
|
63385 |
+
null,
|
63386 |
+
tabout
|
63387 |
+
);
|
63388 |
+
}
|
63389 |
+
),
|
63390 |
+
wp.element.createElement(
|
63391 |
+
TabPanel,
|
63392 |
+
{ className: "uagb-inspect-tabs uagb-inspect-tabs-col-2",
|
63393 |
+
activeClass: "active-tab",
|
63394 |
+
tabs: [{
|
63395 |
+
name: "normal",
|
63396 |
+
title: __("Normal"),
|
63397 |
+
className: "uagb-normal-tab"
|
63398 |
+
}, {
|
63399 |
+
name: "hover",
|
63400 |
+
title: __("Hover"),
|
63401 |
+
className: "uagb-hover-tab"
|
63402 |
+
}] },
|
63403 |
+
function (tabName) {
|
63404 |
+
|
63405 |
+
if ("normal" === tabName.name) {
|
63406 |
+
|
63407 |
+
return wp.element.createElement(
|
63408 |
+
Fragment,
|
63409 |
+
null,
|
63410 |
+
wp.element.createElement(
|
63411 |
+
"p",
|
63412 |
+
{ className: "uagb-setting-label" },
|
63413 |
+
__("Text Color"),
|
63414 |
+
wp.element.createElement(
|
63415 |
+
"span",
|
63416 |
+
{ className: "components-base-control__label" },
|
63417 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: paginationTextColor } })
|
63418 |
+
)
|
63419 |
+
),
|
63420 |
+
wp.element.createElement(ColorPalette, {
|
63421 |
+
value: paginationTextColor,
|
63422 |
+
onChange: function onChange(colorValue) {
|
63423 |
+
return setAttributes({ paginationTextColor: colorValue });
|
63424 |
+
},
|
63425 |
+
allowReset: true
|
63426 |
+
}),
|
63427 |
+
wp.element.createElement(
|
63428 |
+
"p",
|
63429 |
+
{ className: "uagb-setting-label" },
|
63430 |
+
__("Background Color"),
|
63431 |
+
wp.element.createElement(
|
63432 |
+
"span",
|
63433 |
+
{ className: "components-base-control__label" },
|
63434 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: paginationMasonryBgColor } })
|
63435 |
+
)
|
63436 |
+
),
|
63437 |
+
wp.element.createElement(ColorPalette, {
|
63438 |
+
value: paginationMasonryBgColor,
|
63439 |
+
onChange: function onChange(colorValue) {
|
63440 |
+
return setAttributes({ paginationMasonryBgColor: colorValue });
|
63441 |
+
},
|
63442 |
+
allowReset: true
|
63443 |
+
})
|
63444 |
+
);
|
63445 |
+
} else {
|
63446 |
+
return wp.element.createElement(
|
63447 |
+
Fragment,
|
63448 |
+
null,
|
63449 |
+
wp.element.createElement(
|
63450 |
+
"p",
|
63451 |
+
{ className: "uagb-setting-label" },
|
63452 |
+
__("Text Color"),
|
63453 |
+
wp.element.createElement(
|
63454 |
+
"span",
|
63455 |
+
{ className: "components-base-control__label" },
|
63456 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: paginationTextHoverColor } })
|
63457 |
+
)
|
63458 |
+
),
|
63459 |
+
wp.element.createElement(ColorPalette, {
|
63460 |
+
value: paginationTextHoverColor,
|
63461 |
+
onChange: function onChange(colorValue) {
|
63462 |
+
return setAttributes({ paginationTextHoverColor: colorValue });
|
63463 |
+
},
|
63464 |
+
allowReset: true
|
63465 |
+
}),
|
63466 |
+
wp.element.createElement(
|
63467 |
+
"p",
|
63468 |
+
{ className: "uagb-setting-label" },
|
63469 |
+
__("Background Color"),
|
63470 |
+
wp.element.createElement(
|
63471 |
+
"span",
|
63472 |
+
{ className: "components-base-control__label" },
|
63473 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: paginationBgHoverColor } })
|
63474 |
+
)
|
63475 |
+
),
|
63476 |
+
wp.element.createElement(ColorPalette, {
|
63477 |
+
value: paginationBgHoverColor,
|
63478 |
+
onChange: function onChange(colorValue) {
|
63479 |
+
return setAttributes({ paginationBgHoverColor: colorValue });
|
63480 |
+
},
|
63481 |
+
allowReset: true
|
63482 |
+
})
|
63483 |
+
);
|
63484 |
+
}
|
63485 |
+
}
|
63486 |
+
),
|
63487 |
+
wp.element.createElement("hr", { className: "uagb-editor__separator" }),
|
63488 |
+
wp.element.createElement(
|
63489 |
+
"h2",
|
63490 |
+
null,
|
63491 |
+
" ",
|
63492 |
+
__("Border"),
|
63493 |
+
" "
|
63494 |
+
),
|
63495 |
+
wp.element.createElement(SelectControl, {
|
63496 |
+
label: __("Style"),
|
63497 |
+
value: paginationMasonryBorderStyle,
|
63498 |
+
options: [{ value: "none", label: __("None") }, { value: "solid", label: __("Solid") }, { value: "dotted", label: __("Dotted") }, { value: "dashed", label: __("Dashed") }, { value: "double", label: __("Double") }],
|
63499 |
+
onChange: function onChange(value) {
|
63500 |
+
setAttributes({ paginationMasonryBorderStyle: value });
|
63501 |
+
}
|
63502 |
+
}),
|
63503 |
+
"none" !== paginationMasonryBorderStyle && wp.element.createElement(
|
63504 |
+
Fragment,
|
63505 |
+
null,
|
63506 |
+
wp.element.createElement(RangeControl, {
|
63507 |
+
label: __("Thickness (px)"),
|
63508 |
+
value: paginationMasonryBorderWidth,
|
63509 |
+
onChange: function onChange(value) {
|
63510 |
+
setAttributes({ paginationMasonryBorderWidth: value });
|
63511 |
+
},
|
63512 |
+
min: 0,
|
63513 |
+
max: 20
|
63514 |
+
}),
|
63515 |
+
wp.element.createElement(RangeControl, {
|
63516 |
+
label: __("Rounded Corners (px)"),
|
63517 |
+
value: paginationMasonryBorderRadius,
|
63518 |
+
onChange: function onChange(value) {
|
63519 |
+
setAttributes({ paginationMasonryBorderRadius: value });
|
63520 |
+
},
|
63521 |
+
min: 0,
|
63522 |
+
max: 50
|
63523 |
+
}),
|
63524 |
+
wp.element.createElement(
|
63525 |
+
"p",
|
63526 |
+
{ className: "uagb-setting-label" },
|
63527 |
+
__("Color"),
|
63528 |
+
wp.element.createElement(
|
63529 |
+
"span",
|
63530 |
+
{ className: "components-base-control__label" },
|
63531 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: paginationMasonryBorderColor } })
|
63532 |
+
)
|
63533 |
+
),
|
63534 |
+
wp.element.createElement(ColorPalette, {
|
63535 |
+
value: paginationMasonryBorderColor,
|
63536 |
+
onChange: function onChange(value) {
|
63537 |
+
return setAttributes({ paginationMasonryBorderColor: value });
|
63538 |
+
},
|
63539 |
+
allowReset: true
|
63540 |
+
})
|
63541 |
+
)
|
63542 |
+
),
|
63543 |
+
'scroll' === paginationEventType && wp.element.createElement(
|
63544 |
+
Fragment,
|
63545 |
+
null,
|
63546 |
+
wp.element.createElement(
|
63547 |
+
"p",
|
63548 |
+
{ className: "uagb-setting-label" },
|
63549 |
+
__(" Loader Color"),
|
63550 |
+
wp.element.createElement(
|
63551 |
+
"span",
|
63552 |
+
{ className: "components-base-control__label" },
|
63553 |
+
wp.element.createElement("span", { className: "component-color-indicator", style: { backgroundColor: loaderColor } })
|
63554 |
+
)
|
63555 |
+
),
|
63556 |
+
wp.element.createElement(ColorPalette, {
|
63557 |
+
value: loaderColor,
|
63558 |
+
onChange: function onChange(value) {
|
63559 |
+
return setAttributes({ loaderColor: value });
|
63560 |
+
},
|
63561 |
+
allowReset: true
|
63562 |
+
}),
|
63563 |
+
wp.element.createElement(RangeControl, {
|
63564 |
+
label: __("Loader Size"),
|
63565 |
+
value: loaderSize,
|
63566 |
+
onChange: function onChange(value) {
|
63567 |
+
return setAttributes({ loaderSize: value });
|
63568 |
+
},
|
63569 |
+
min: 1,
|
63570 |
+
max: 50
|
63571 |
+
})
|
63572 |
+
)
|
63573 |
+
);
|
63574 |
+
}
|
63575 |
+
|
63576 |
+
return '';
|
63577 |
+
};
|
63578 |
var inspectorControls = wp.element.createElement(
|
63579 |
InspectorControls,
|
63580 |
null,
|
63611 |
}),
|
63612 |
wp.element.createElement("hr", { className: "uagb-editor__separator" })
|
63613 |
),
|
63614 |
+
wp.element.createElement(ToggleControl, {
|
63615 |
+
label: __("Exclude Current Post"),
|
63616 |
+
checked: excludeCurrentPost,
|
63617 |
+
onChange: function onChange(value) {
|
63618 |
+
return setAttributes({ excludeCurrentPost: !excludeCurrentPost });
|
63619 |
+
}
|
63620 |
+
}),
|
63621 |
wp.element.createElement(QueryControls, _extends({ order: order, orderBy: orderBy }, {
|
63622 |
numberOfItems: postsToShow,
|
63623 |
onNumberOfItemsChange: function onNumberOfItemsChange(value) {
|
63698 |
);
|
63699 |
}
|
63700 |
),
|
63701 |
+
wp.element.createElement(SelectControl, {
|
63702 |
+
label: __("Pagination"),
|
63703 |
+
value: paginationType,
|
63704 |
+
onChange: function onChange(value) {
|
63705 |
+
return setAttributes({ paginationType: value });
|
63706 |
+
},
|
63707 |
+
options: [{ value: "none", label: __("None") }, { value: "infinite", label: __("Infinite") }]
|
63708 |
+
}),
|
63709 |
+
'infinite' === paginationType && wp.element.createElement(SelectControl, {
|
63710 |
+
label: __("Infinite Load Event"),
|
63711 |
+
value: paginationEventType,
|
63712 |
+
onChange: function onChange(value) {
|
63713 |
+
return setAttributes({ paginationEventType: value });
|
63714 |
+
},
|
63715 |
+
options: [{ value: "button", label: __("Button") }, { value: "scroll", label: __("Scroll") }]
|
63716 |
+
}),
|
63717 |
+
'infinite' === paginationType && 'button' === paginationEventType && wp.element.createElement(TextControl, {
|
63718 |
+
autoComplete: "off",
|
63719 |
+
label: __('Button Text'),
|
63720 |
+
value: buttonText,
|
63721 |
+
onChange: function onChange(value) {
|
63722 |
+
return setAttributes({ buttonText: value });
|
63723 |
+
}
|
63724 |
+
}),
|
63725 |
wp.element.createElement("hr", { className: "uagb-editor__separator" }),
|
63726 |
wp.element.createElement(
|
63727 |
"h2",
|
63746 |
help: __("This will inherit all the Typography and colors for Title, Meta, Excerpt and Read More button from the theme.")
|
63747 |
})
|
63748 |
),
|
63749 |
+
paginationSettings(),
|
63750 |
wp.element.createElement(
|
63751 |
PanelBody,
|
63752 |
{ title: __("Image"), initialOpen: false },
|
63857 |
return setAttributes({ displayPostExcerpt: !displayPostExcerpt });
|
63858 |
}
|
63859 |
}),
|
63860 |
+
displayPostExcerpt && wp.element.createElement(RadioControl, {
|
63861 |
+
label: __('Show:'),
|
63862 |
+
selected: displayPostContentRadio,
|
63863 |
+
options: [{ label: __('Excerpt'), value: "excerpt" }, { label: __('Full post'), value: "full_post" }],
|
63864 |
+
onChange: function onChange(value) {
|
63865 |
+
return setAttributes({
|
63866 |
+
displayPostContentRadio: value
|
63867 |
+
});
|
63868 |
+
}
|
63869 |
+
}),
|
63870 |
+
displayPostExcerpt && displayPostContentRadio === 'excerpt' && wp.element.createElement(RangeControl, {
|
63871 |
+
label: __('Max number of words in excerpt'),
|
63872 |
value: excerptLength,
|
63873 |
onChange: function onChange(value) {
|
63874 |
return setAttributes({ excerptLength: value });
|
63875 |
},
|
63876 |
min: 1,
|
63877 |
+
max: 100,
|
63878 |
allowReset: true
|
63879 |
})
|
63880 |
),
|
63881 |
+
displayPostExcerpt && displayPostContentRadio === 'excerpt' && wp.element.createElement(
|
63882 |
PanelBody,
|
63883 |
{ title: __("Read More Link"), initialOpen: false },
|
63884 |
wp.element.createElement(ToggleControl, {
|
64325 |
order = _props$attributes.order,
|
64326 |
orderBy = _props$attributes.orderBy,
|
64327 |
postType = _props$attributes.postType,
|
64328 |
+
taxonomyType = _props$attributes.taxonomyType,
|
64329 |
+
excludeCurrentPost = _props$attributes.excludeCurrentPost;
|
64330 |
|
64331 |
var _select = select("core"),
|
64332 |
getEntityRecords = _select.getEntityRecords;
|
64356 |
per_page: postsToShow
|
64357 |
};
|
64358 |
|
64359 |
+
if (excludeCurrentPost) {
|
64360 |
+
latestPostsQuery['exclude'] = select("core/editor").getCurrentPostId();
|
64361 |
+
}
|
64362 |
latestPostsQuery[rest_base] = categories;
|
64363 |
|
64364 |
return {
|
64369 |
})(UAGBPostMasonry));
|
64370 |
|
64371 |
/***/ }),
|
64372 |
+
/* 303 */
|
64373 |
/*!**********************************************!*\
|
64374 |
!*** ./src/blocks/post/post-masonry/blog.js ***!
|
64375 |
\**********************************************/
|
64380 |
"use strict";
|
64381 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
64382 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
64383 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component__ = __webpack_require__(/*! react-masonry-component */ 304);
|
64384 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_masonry_component___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_masonry_component__);
|
64385 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_FeaturedImage__ = __webpack_require__(/*! .././components/FeaturedImage */ 65);
|
64386 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! .././components/Title */ 66);
|
64425 |
tcolumns = attributes.tcolumns,
|
64426 |
mcolumns = attributes.mcolumns,
|
64427 |
imgPosition = attributes.imgPosition,
|
64428 |
+
postsToShow = attributes.postsToShow,
|
64429 |
+
paginationEventType = attributes.paginationEventType,
|
64430 |
+
buttonText = attributes.buttonText,
|
64431 |
+
paginationType = attributes.paginationType;
|
64432 |
|
64433 |
// Removing posts from display should be instant.
|
64434 |
|
64435 |
var displayPosts = latestPosts.length > postsToShow ? latestPosts.slice(0, postsToShow) : latestPosts;
|
64436 |
|
64437 |
+
var paginationRender = function paginationRender() {
|
64438 |
+
if ('infinite' === paginationType) {
|
64439 |
+
|
64440 |
+
if ("scroll" === paginationEventType) {
|
64441 |
+
return wp.element.createElement(
|
64442 |
+
"div",
|
64443 |
+
{ className: "uagb-post-inf-loader" },
|
64444 |
+
wp.element.createElement("div", { className: "uagb-post-loader-1" }),
|
64445 |
+
wp.element.createElement("div", { className: "uagb-post-loader-2" }),
|
64446 |
+
wp.element.createElement("div", { className: "uagb-post-loader-3" })
|
64447 |
+
);
|
64448 |
+
}
|
64449 |
+
if ("button" === paginationEventType) {
|
64450 |
+
return wp.element.createElement(
|
64451 |
+
"div",
|
64452 |
+
{ className: "uagb-post__load-more-wrap" },
|
64453 |
+
wp.element.createElement(
|
64454 |
+
"span",
|
64455 |
+
{ className: "uagb-post-pagination-button" },
|
64456 |
+
wp.element.createElement(
|
64457 |
+
"a",
|
64458 |
+
{ className: "uagb-post__load-more" },
|
64459 |
+
buttonText
|
64460 |
+
)
|
64461 |
+
)
|
64462 |
+
);
|
64463 |
+
}
|
64464 |
+
}
|
64465 |
+
};
|
64466 |
return wp.element.createElement(
|
64467 |
"div",
|
64468 |
{
|
64493 |
)
|
64494 |
);
|
64495 |
})
|
64496 |
+
),
|
64497 |
+
paginationRender()
|
64498 |
);
|
64499 |
}
|
64500 |
}]);
|
64505 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
64506 |
|
64507 |
/***/ }),
|
64508 |
+
/* 304 */
|
64509 |
/*!***********************************************************!*\
|
64510 |
!*** ./node_modules/react-masonry-component/lib/index.js ***!
|
64511 |
\***********************************************************/
|
64514 |
/***/ (function(module, exports, __webpack_require__) {
|
64515 |
|
64516 |
var isBrowser = typeof window !== 'undefined';
|
64517 |
+
var Masonry = isBrowser ? window.Masonry || __webpack_require__(/*! masonry-layout */ 305) : null;
|
64518 |
+
var imagesloaded = isBrowser ? __webpack_require__(/*! imagesloaded */ 310) : null;
|
64519 |
+
var assign = __webpack_require__(/*! lodash/assign */ 311);
|
64520 |
+
var elementResizeDetectorMaker = __webpack_require__(/*! element-resize-detector */ 319);
|
64521 |
+
var debounce = __webpack_require__(/*! lodash/debounce */ 330);
|
64522 |
+
var omit = __webpack_require__(/*! lodash/omit */ 332);
|
64523 |
var PropTypes = __webpack_require__(/*! prop-types */ 15);
|
64524 |
var React = __webpack_require__(/*! react */ 6);
|
64525 |
+
var createReactClass = __webpack_require__(/*! create-react-class */ 364);
|
64526 |
|
64527 |
var propTypes = {
|
64528 |
enableResizableChildren: PropTypes.bool,
|
64831 |
|
64832 |
|
64833 |
/***/ }),
|
64834 |
+
/* 305 */
|
64835 |
/*!************************************************!*\
|
64836 |
!*** ./node_modules/masonry-layout/masonry.js ***!
|
64837 |
\************************************************/
|
64853 |
if ( true ) {
|
64854 |
// AMD
|
64855 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
64856 |
+
__webpack_require__(/*! outlayer/outlayer */ 306),
|
64857 |
__webpack_require__(/*! get-size/get-size */ 77)
|
64858 |
], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),
|
64859 |
__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === 'function' ?
|
65083 |
|
65084 |
|
65085 |
/***/ }),
|
65086 |
+
/* 306 */
|
65087 |
/*!*******************************************!*\
|
65088 |
!*** ./node_modules/outlayer/outlayer.js ***!
|
65089 |
\*******************************************/
|
65106 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
65107 |
__webpack_require__(/*! ev-emitter/ev-emitter */ 76),
|
65108 |
__webpack_require__(/*! get-size/get-size */ 77),
|
65109 |
+
__webpack_require__(/*! fizzy-ui-utils/utils */ 307),
|
65110 |
+
__webpack_require__(/*! ./item */ 309)
|
65111 |
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( EvEmitter, getSize, utils, Item ) {
|
65112 |
return factory( window, EvEmitter, getSize, utils, Item);
|
65113 |
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
66032 |
|
66033 |
|
66034 |
/***/ }),
|
66035 |
+
/* 307 */
|
66036 |
/*!**********************************************!*\
|
66037 |
!*** ./node_modules/fizzy-ui-utils/utils.js ***!
|
66038 |
\**********************************************/
|
66054 |
if ( true ) {
|
66055 |
// AMD
|
66056 |
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [
|
66057 |
+
__webpack_require__(/*! desandro-matches-selector/matches-selector */ 308)
|
66058 |
], __WEBPACK_AMD_DEFINE_RESULT__ = (function( matchesSelector ) {
|
66059 |
return factory( window, matchesSelector );
|
66060 |
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
66285 |
|
66286 |
|
66287 |
/***/ }),
|
66288 |
+
/* 308 */
|
66289 |
/*!********************************************************************!*\
|
66290 |
!*** ./node_modules/desandro-matches-selector/matches-selector.js ***!
|
66291 |
\********************************************************************/
|
66353 |
|
66354 |
|
66355 |
/***/ }),
|
66356 |
+
/* 309 */
|
66357 |
/*!***************************************!*\
|
66358 |
!*** ./node_modules/outlayer/item.js ***!
|
66359 |
\***************************************/
|
66919 |
|
66920 |
|
66921 |
/***/ }),
|
66922 |
+
/* 310 */
|
66923 |
/*!***************************************************!*\
|
66924 |
!*** ./node_modules/imagesloaded/imagesloaded.js ***!
|
66925 |
\***************************************************/
|
67308 |
|
67309 |
|
67310 |
/***/ }),
|
67311 |
+
/* 311 */
|
67312 |
/*!***************************************!*\
|
67313 |
!*** ./node_modules/lodash/assign.js ***!
|
67314 |
\***************************************/
|
67318 |
|
67319 |
var assignValue = __webpack_require__(/*! ./_assignValue */ 48),
|
67320 |
copyObject = __webpack_require__(/*! ./_copyObject */ 27),
|
67321 |
+
createAssigner = __webpack_require__(/*! ./_createAssigner */ 312),
|
67322 |
isArrayLike = __webpack_require__(/*! ./isArrayLike */ 23),
|
67323 |
isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
|
67324 |
keys = __webpack_require__(/*! ./keys */ 22);
|
67377 |
|
67378 |
|
67379 |
/***/ }),
|
67380 |
+
/* 312 */
|
67381 |
/*!************************************************!*\
|
67382 |
!*** ./node_modules/lodash/_createAssigner.js ***!
|
67383 |
\************************************************/
|
67385 |
/*! all exports used */
|
67386 |
/***/ (function(module, exports, __webpack_require__) {
|
67387 |
|
67388 |
+
var baseRest = __webpack_require__(/*! ./_baseRest */ 313),
|
67389 |
+
isIterateeCall = __webpack_require__(/*! ./_isIterateeCall */ 318);
|
67390 |
|
67391 |
/**
|
67392 |
* Creates a function like `_.assign`.
|
67425 |
|
67426 |
|
67427 |
/***/ }),
|
67428 |
+
/* 313 */
|
67429 |
/*!******************************************!*\
|
67430 |
!*** ./node_modules/lodash/_baseRest.js ***!
|
67431 |
\******************************************/
|
67434 |
/***/ (function(module, exports, __webpack_require__) {
|
67435 |
|
67436 |
var identity = __webpack_require__(/*! ./identity */ 47),
|
67437 |
+
overRest = __webpack_require__(/*! ./_overRest */ 146),
|
67438 |
+
setToString = __webpack_require__(/*! ./_setToString */ 147);
|
67439 |
|
67440 |
/**
|
67441 |
* The base implementation of `_.rest` which doesn't validate or coerce arguments.
|
67453 |
|
67454 |
|
67455 |
/***/ }),
|
67456 |
+
/* 314 */
|
67457 |
/*!***************************************!*\
|
67458 |
!*** ./node_modules/lodash/_apply.js ***!
|
67459 |
\***************************************/
|
67485 |
|
67486 |
|
67487 |
/***/ }),
|
67488 |
+
/* 315 */
|
67489 |
/*!*************************************************!*\
|
67490 |
!*** ./node_modules/lodash/_baseSetToString.js ***!
|
67491 |
\*************************************************/
|
67493 |
/*! all exports used */
|
67494 |
/***/ (function(module, exports, __webpack_require__) {
|
67495 |
|
67496 |
+
var constant = __webpack_require__(/*! ./constant */ 316),
|
67497 |
+
defineProperty = __webpack_require__(/*! ./_defineProperty */ 145),
|
67498 |
identity = __webpack_require__(/*! ./identity */ 47);
|
67499 |
|
67500 |
/**
|
67518 |
|
67519 |
|
67520 |
/***/ }),
|
67521 |
+
/* 316 */
|
67522 |
/*!*****************************************!*\
|
67523 |
!*** ./node_modules/lodash/constant.js ***!
|
67524 |
\*****************************************/
|
67555 |
|
67556 |
|
67557 |
/***/ }),
|
67558 |
+
/* 317 */
|
67559 |
/*!******************************************!*\
|
67560 |
!*** ./node_modules/lodash/_shortOut.js ***!
|
67561 |
\******************************************/
|
67603 |
|
67604 |
|
67605 |
/***/ }),
|
67606 |
+
/* 318 */
|
67607 |
/*!************************************************!*\
|
67608 |
!*** ./node_modules/lodash/_isIterateeCall.js ***!
|
67609 |
\************************************************/
|
67644 |
|
67645 |
|
67646 |
/***/ }),
|
67647 |
+
/* 319 */
|
67648 |
/*!*****************************************************************************!*\
|
67649 |
!*** ./node_modules/element-resize-detector/src/element-resize-detector.js ***!
|
67650 |
\*****************************************************************************/
|
67655 |
"use strict";
|
67656 |
|
67657 |
|
67658 |
+
var forEach = __webpack_require__(/*! ./collection-utils */ 148).forEach;
|
67659 |
+
var elementUtilsMaker = __webpack_require__(/*! ./element-utils */ 320);
|
67660 |
+
var listenerHandlerMaker = __webpack_require__(/*! ./listener-handler */ 321);
|
67661 |
+
var idGeneratorMaker = __webpack_require__(/*! ./id-generator */ 322);
|
67662 |
+
var idHandlerMaker = __webpack_require__(/*! ./id-handler */ 323);
|
67663 |
+
var reporterMaker = __webpack_require__(/*! ./reporter */ 324);
|
67664 |
+
var browserDetector = __webpack_require__(/*! ./browser-detector */ 149);
|
67665 |
+
var batchProcessorMaker = __webpack_require__(/*! batch-processor */ 325);
|
67666 |
+
var stateHandler = __webpack_require__(/*! ./state-handler */ 327);
|
67667 |
|
67668 |
//Detection strategies.
|
67669 |
+
var objectStrategyMaker = __webpack_require__(/*! ./detection-strategy/object.js */ 328);
|
67670 |
+
var scrollStrategyMaker = __webpack_require__(/*! ./detection-strategy/scroll.js */ 329);
|
67671 |
|
67672 |
function isCollection(obj) {
|
67673 |
return Array.isArray(obj) || obj.length !== undefined;
|
67762 |
//The detection strategy to be used.
|
67763 |
var detectionStrategy;
|
67764 |
var desiredStrategy = getOption(options, "strategy", "object");
|
67765 |
+
var importantCssRules = getOption(options, "important", false);
|
67766 |
var strategyOptions = {
|
67767 |
reporter: reporter,
|
67768 |
batchProcessor: batchProcessor,
|
67769 |
stateHandler: stateHandler,
|
67770 |
+
idHandler: idHandler,
|
67771 |
+
important: importantCssRules
|
67772 |
};
|
67773 |
|
67774 |
if(desiredStrategy === "scroll") {
|
67883 |
debug && reporter.log(id, "Making detectable...");
|
67884 |
//The element is not prepared to be detectable, so do prepare it and add a listener to it.
|
67885 |
elementUtils.markBusy(element, true);
|
67886 |
+
return detectionStrategy.makeDetectable({ debug: debug, important: importantCssRules }, element, function onElementDetectable(element) {
|
67887 |
debug && reporter.log(id, "onElementDetectable");
|
67888 |
|
67889 |
if (stateHandler.getState(element)) {
|
67959 |
});
|
67960 |
}
|
67961 |
|
67962 |
+
function initDocument(targetDocument) {
|
67963 |
+
detectionStrategy.initDocument && detectionStrategy.initDocument(targetDocument);
|
67964 |
+
}
|
67965 |
+
|
67966 |
return {
|
67967 |
listenTo: listenTo,
|
67968 |
removeListener: eventListenerHandler.removeListener,
|
67969 |
removeAllListeners: eventListenerHandler.removeAllListeners,
|
67970 |
+
uninstall: uninstall,
|
67971 |
+
initDocument: initDocument
|
67972 |
};
|
67973 |
};
|
67974 |
|
67984 |
|
67985 |
|
67986 |
/***/ }),
|
67987 |
+
/* 320 */
|
67988 |
/*!*******************************************************************!*\
|
67989 |
!*** ./node_modules/element-resize-detector/src/element-utils.js ***!
|
67990 |
\*******************************************************************/
|
68048 |
|
68049 |
|
68050 |
/***/ }),
|
68051 |
+
/* 321 */
|
68052 |
/*!**********************************************************************!*\
|
68053 |
!*** ./node_modules/element-resize-detector/src/listener-handler.js ***!
|
68054 |
\**********************************************************************/
|
68120 |
|
68121 |
|
68122 |
/***/ }),
|
68123 |
+
/* 322 */
|
68124 |
/*!******************************************************************!*\
|
68125 |
!*** ./node_modules/element-resize-detector/src/id-generator.js ***!
|
68126 |
\******************************************************************/
|
68150 |
|
68151 |
|
68152 |
/***/ }),
|
68153 |
+
/* 323 */
|
68154 |
/*!****************************************************************!*\
|
68155 |
!*** ./node_modules/element-resize-detector/src/id-handler.js ***!
|
68156 |
\****************************************************************/
|
68209 |
|
68210 |
|
68211 |
/***/ }),
|
68212 |
+
/* 324 */
|
68213 |
/*!**************************************************************!*\
|
68214 |
!*** ./node_modules/element-resize-detector/src/reporter.js ***!
|
68215 |
\**************************************************************/
|
68263 |
};
|
68264 |
|
68265 |
/***/ }),
|
68266 |
+
/* 325 */
|
68267 |
/*!*************************************************************!*\
|
68268 |
!*** ./node_modules/batch-processor/src/batch-processor.js ***!
|
68269 |
\*************************************************************/
|
68274 |
"use strict";
|
68275 |
|
68276 |
|
68277 |
+
var utils = __webpack_require__(/*! ./utils */ 326);
|
68278 |
|
68279 |
module.exports = function batchProcessorMaker(options) {
|
68280 |
options = options || {};
|
68413 |
|
68414 |
|
68415 |
/***/ }),
|
68416 |
+
/* 326 */
|
68417 |
/*!***************************************************!*\
|
68418 |
!*** ./node_modules/batch-processor/src/utils.js ***!
|
68419 |
\***************************************************/
|
68440 |
|
68441 |
|
68442 |
/***/ }),
|
68443 |
+
/* 327 */
|
68444 |
/*!*******************************************************************!*\
|
68445 |
!*** ./node_modules/element-resize-detector/src/state-handler.js ***!
|
68446 |
\*******************************************************************/
|
68474 |
|
68475 |
|
68476 |
/***/ }),
|
68477 |
+
/* 328 */
|
68478 |
/*!*******************************************************************************!*\
|
68479 |
!*** ./node_modules/element-resize-detector/src/detection-strategy/object.js ***!
|
68480 |
\*******************************************************************************/
|
68490 |
|
68491 |
|
68492 |
|
68493 |
+
var browserDetector = __webpack_require__(/*! ../browser-detector */ 149);
|
68494 |
|
68495 |
module.exports = function(options) {
|
68496 |
options = options || {};
|
68509 |
* @param {function} listener The listener callback to be called for each resize event of the element. The element will be given as a parameter to the listener callback.
|
68510 |
*/
|
68511 |
function addListener(element, listener) {
|
|
|
|
|
|
|
|
|
68512 |
function listenerProxy() {
|
68513 |
listener(element);
|
68514 |
}
|
68521 |
element.attachEvent("onresize", listenerProxy);
|
68522 |
} else {
|
68523 |
var object = getObject(element);
|
68524 |
+
|
68525 |
+
if(!object) {
|
68526 |
+
throw new Error("Element is not detectable by this strategy.");
|
68527 |
+
}
|
68528 |
+
|
68529 |
object.contentDocument.defaultView.addEventListener("resize", listenerProxy);
|
68530 |
}
|
68531 |
}
|
68532 |
|
68533 |
+
function buildCssTextString(rules) {
|
68534 |
+
var seperator = options.important ? " !important; " : "; ";
|
68535 |
+
|
68536 |
+
return (rules.join(seperator) + seperator).trim();
|
68537 |
+
}
|
68538 |
+
|
68539 |
/**
|
68540 |
* Makes an element detectable and ready to be listened for resize events. Will call the callback when the element is ready to be listened for resize changes.
|
68541 |
* @private
|
68554 |
var debug = options.debug;
|
68555 |
|
68556 |
function injectObject(element, callback) {
|
68557 |
+
var OBJECT_STYLE = buildCssTextString(["display: block", "position: absolute", "top: 0", "left: 0", "width: 100%", "height: 100%", "border: none", "padding: 0", "margin: 0", "opacity: 0", "z-index: -1000", "pointer-events: none"]);
|
68558 |
|
68559 |
//The target element needs to be positioned (everything except static) so the absolute positioned object will be positioned relative to the target element.
|
68560 |
|
68575 |
function mutateDom() {
|
68576 |
function alterPositionStyles() {
|
68577 |
if(style.position === "static") {
|
68578 |
+
element.style.setProperty("position", "relative", options.important ? "important" : "");
|
68579 |
|
68580 |
var removeRelativeStyles = function(reporter, element, style, property) {
|
68581 |
function getNumericalValue(value) {
|
68586 |
|
68587 |
if(value !== "auto" && getNumericalValue(value) !== "0") {
|
68588 |
reporter.warn("An element that is positioned static has style." + property + "=" + value + " which is ignored due to the static positioning. The element will need to be positioned relative, so the style." + property + " will be set to 0. Element: ", element);
|
68589 |
+
element.style.setProperty(property, "0", options.important ? "important" : "");
|
68590 |
}
|
68591 |
};
|
68592 |
|
68612 |
//So if it is not present, poll it with an timeout until it is present.
|
68613 |
//TODO: Could maybe be handled better with object.onreadystatechange or similar.
|
68614 |
if(!element.contentDocument) {
|
68615 |
+
var state = getState(element);
|
68616 |
+
if (state.checkForObjectDocumentTimeoutId) {
|
68617 |
+
window.clearTimeout(state.checkForObjectDocumentTimeoutId);
|
68618 |
+
}
|
68619 |
+
state.checkForObjectDocumentTimeoutId = setTimeout(function checkForObjectDocument() {
|
68620 |
+
state.checkForObjectDocumentTimeoutId = 0;
|
68621 |
getDocument(element, callback);
|
68622 |
}, 100);
|
68623 |
|
68650 |
object.style.cssText = OBJECT_STYLE;
|
68651 |
object.tabIndex = -1;
|
68652 |
object.type = "text/html";
|
68653 |
+
object.setAttribute("aria-hidden", "true");
|
68654 |
object.onload = onObjectLoad;
|
68655 |
|
68656 |
//Safari: This must occur before adding the object to the DOM.
|
68659 |
object.data = "about:blank";
|
68660 |
}
|
68661 |
|
68662 |
+
if (!getState(element)) {
|
68663 |
+
// The element has been uninstalled before the actual loading happened.
|
68664 |
+
return;
|
68665 |
+
}
|
68666 |
+
|
68667 |
element.appendChild(object);
|
68668 |
getState(element).object = object;
|
68669 |
|
68701 |
}
|
68702 |
|
68703 |
function uninstall(element) {
|
68704 |
+
if (!getState(element)) {
|
68705 |
+
return;
|
68706 |
+
}
|
68707 |
+
|
68708 |
+
var object = getObject(element);
|
68709 |
+
|
68710 |
+
if (!object) {
|
68711 |
+
return;
|
68712 |
+
}
|
68713 |
+
|
68714 |
+
if (browserDetector.isIE(8)) {
|
68715 |
+
element.detachEvent("onresize", object.proxy);
|
68716 |
} else {
|
68717 |
+
element.removeChild(object);
|
68718 |
+
}
|
68719 |
+
|
68720 |
+
if (getState(element).checkForObjectDocumentTimeoutId) {
|
68721 |
+
window.clearTimeout(getState(element).checkForObjectDocumentTimeoutId);
|
68722 |
}
|
68723 |
+
|
68724 |
delete getState(element).object;
|
68725 |
}
|
68726 |
|
68733 |
|
68734 |
|
68735 |
/***/ }),
|
68736 |
+
/* 329 */
|
68737 |
/*!*******************************************************************************!*\
|
68738 |
!*** ./node_modules/element-resize-detector/src/detection-strategy/scroll.js ***!
|
68739 |
\*******************************************************************************/
|
68749 |
|
68750 |
|
68751 |
|
68752 |
+
var forEach = __webpack_require__(/*! ../collection-utils */ 148).forEach;
|
68753 |
|
68754 |
module.exports = function(options) {
|
68755 |
options = options || {};
|
68770 |
//TODO: Could this perhaps be done at installation time?
|
68771 |
var scrollbarSizes = getScrollbarSizes();
|
68772 |
|
|
|
|
|
68773 |
var styleId = "erd_scroll_detection_scrollbar_style";
|
68774 |
var detectionContainerClass = "erd_scroll_detection_container";
|
68775 |
+
|
68776 |
+
function initDocument(targetDocument) {
|
68777 |
+
// Inject the scrollbar styling that prevents them from appearing sometimes in Chrome.
|
68778 |
+
// The injected container needs to have a class, so that it may be styled with CSS (pseudo elements).
|
68779 |
+
injectScrollStyle(targetDocument, styleId, detectionContainerClass);
|
68780 |
+
}
|
68781 |
+
|
68782 |
+
initDocument(window.document);
|
68783 |
+
|
68784 |
+
function buildCssTextString(rules) {
|
68785 |
+
var seperator = options.important ? " !important; " : "; ";
|
68786 |
+
|
68787 |
+
return (rules.join(seperator) + seperator).trim();
|
68788 |
+
}
|
68789 |
|
68790 |
function getScrollbarSizes() {
|
68791 |
var width = 500;
|
68792 |
var height = 500;
|
68793 |
|
68794 |
var child = document.createElement("div");
|
68795 |
+
child.style.cssText = buildCssTextString(["position: absolute", "width: " + width*2 + "px", "height: " + height*2 + "px", "visibility: hidden", "margin: 0", "padding: 0"]);
|
68796 |
|
68797 |
var container = document.createElement("div");
|
68798 |
+
container.style.cssText = buildCssTextString(["position: absolute", "width: " + width + "px", "height: " + height + "px", "overflow: scroll", "visibility: none", "top: " + -width*3 + "px", "left: " + -height*3 + "px", "visibility: hidden", "margin: 0", "padding: 0"]);
|
68799 |
|
68800 |
container.appendChild(child);
|
68801 |
|
68812 |
};
|
68813 |
}
|
68814 |
|
68815 |
+
function injectScrollStyle(targetDocument, styleId, containerClass) {
|
68816 |
function injectStyle(style, method) {
|
68817 |
method = method || function (element) {
|
68818 |
+
targetDocument.head.appendChild(element);
|
68819 |
};
|
68820 |
|
68821 |
+
var styleElement = targetDocument.createElement("style");
|
68822 |
styleElement.innerHTML = style;
|
68823 |
styleElement.id = styleId;
|
68824 |
method(styleElement);
|
68825 |
return styleElement;
|
68826 |
}
|
68827 |
|
68828 |
+
if (!targetDocument.getElementById(styleId)) {
|
68829 |
var containerAnimationClass = containerClass + "_animation";
|
68830 |
var containerAnimationActiveClass = containerClass + "_animation_active";
|
68831 |
var style = "/* Created by the element-resize-detector library. */\n";
|
68832 |
+
style += "." + containerClass + " > div::-webkit-scrollbar { " + buildCssTextString(["display: none"]) + " }\n\n";
|
68833 |
+
style += "." + containerAnimationActiveClass + " { " + buildCssTextString(["-webkit-animation-duration: 0.1s", "animation-duration: 0.1s", "-webkit-animation-name: " + containerAnimationClass, "animation-name: " + containerAnimationClass]) + " }\n";
|
68834 |
style += "@-webkit-keyframes " + containerAnimationClass + " { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }\n";
|
68835 |
style += "@keyframes " + containerAnimationClass + " { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }";
|
68836 |
injectStyle(style);
|
69032 |
if (!container) {
|
69033 |
container = document.createElement("div");
|
69034 |
container.className = detectionContainerClass;
|
69035 |
+
container.style.cssText = buildCssTextString(["visibility: hidden", "display: inline", "width: 0px", "height: 0px", "z-index: -1", "overflow: hidden", "margin: 0", "padding: 0"]);
|
69036 |
getState(element).container = container;
|
69037 |
addAnimationClass(container);
|
69038 |
element.appendChild(container);
|
69056 |
var style = getState(element).style;
|
69057 |
|
69058 |
if(style.position === "static") {
|
69059 |
+
element.style.setProperty("position", "relative",options.important ? "important" : "");
|
69060 |
|
69061 |
var removeRelativeStyles = function(reporter, element, style, property) {
|
69062 |
function getNumericalValue(value) {
|
69086 |
bottom = (!bottom ? "0" : (bottom + "px"));
|
69087 |
right = (!right ? "0" : (right + "px"));
|
69088 |
|
69089 |
+
return ["left: " + left, "top: " + top, "right: " + right, "bottom: " + bottom];
|
69090 |
}
|
69091 |
|
69092 |
debug("Injecting elements");
|
69114 |
|
69115 |
var scrollbarWidth = scrollbarSizes.width;
|
69116 |
var scrollbarHeight = scrollbarSizes.height;
|
69117 |
+
var containerContainerStyle = buildCssTextString(["position: absolute", "flex: none", "overflow: hidden", "z-index: -1", "visibility: hidden", "width: 100%", "height: 100%", "left: 0px", "top: 0px"]);
|
69118 |
+
var containerStyle = buildCssTextString(["position: absolute", "flex: none", "overflow: hidden", "z-index: -1", "visibility: hidden"].concat(getLeftTopBottomRightCssText(-(1 + scrollbarWidth), -(1 + scrollbarHeight), -scrollbarHeight, -scrollbarWidth)));
|
69119 |
+
var expandStyle = buildCssTextString(["position: absolute", "flex: none", "overflow: scroll", "z-index: -1", "visibility: hidden", "width: 100%", "height: 100%"]);
|
69120 |
+
var shrinkStyle = buildCssTextString(["position: absolute", "flex: none", "overflow: scroll", "z-index: -1", "visibility: hidden", "width: 100%", "height: 100%"]);
|
69121 |
+
var expandChildStyle = buildCssTextString(["position: absolute", "left: 0", "top: 0"]);
|
69122 |
+
var shrinkChildStyle = buildCssTextString(["position: absolute", "width: 200%", "height: 200%"]);
|
69123 |
|
69124 |
var containerContainer = document.createElement("div");
|
69125 |
var container = document.createElement("div");
|
69170 |
var expandChild = getExpandChildElement(element);
|
69171 |
var expandWidth = getExpandWidth(width);
|
69172 |
var expandHeight = getExpandHeight(height);
|
69173 |
+
expandChild.style.setProperty("width", expandWidth + "px", options.important ? "important" : "");
|
69174 |
+
expandChild.style.setProperty("height", expandHeight + "px", options.important ? "important" : "");
|
69175 |
}
|
69176 |
|
69177 |
function updateDetectorElements(done) {
|
69178 |
var width = element.offsetWidth;
|
69179 |
var height = element.offsetHeight;
|
69180 |
|
69181 |
+
// Check whether the size has actually changed since last time the algorithm ran. If not, some steps may be skipped.
|
69182 |
+
var sizeChanged = width !== getState(element).lastWidth || height !== getState(element).lastHeight;
|
69183 |
+
|
69184 |
debug("Storing current size", width, height);
|
69185 |
|
69186 |
// Store the size of the element sync here, so that multiple scroll events may be ignored in the event listeners.
|
69191 |
// Since there is no way to cancel the fn executions, we need to add an uninstall guard to all fns of the batch.
|
69192 |
|
69193 |
batchProcessor.add(0, function performUpdateChildSizes() {
|
69194 |
+
if (!sizeChanged) {
|
69195 |
+
return;
|
69196 |
+
}
|
69197 |
+
|
69198 |
if (!getState(element)) {
|
69199 |
debug("Aborting because element has been uninstalled");
|
69200 |
return;
|
69218 |
});
|
69219 |
|
69220 |
batchProcessor.add(1, function updateScrollbars() {
|
69221 |
+
// This function needs to be invoked event though the size is unchanged. The element could have been resized very quickly and then
|
69222 |
+
// been restored to the original size, which will have changed the scrollbar positions.
|
69223 |
+
|
69224 |
if (!getState(element)) {
|
69225 |
debug("Aborting because element has been uninstalled");
|
69226 |
return;
|
69234 |
positionScrollbars(element, width, height);
|
69235 |
});
|
69236 |
|
69237 |
+
if (sizeChanged && done) {
|
69238 |
batchProcessor.add(2, function () {
|
69239 |
if (!getState(element)) {
|
69240 |
debug("Aborting because element has been uninstalled");
|
69264 |
|
69265 |
var state = getState(element);
|
69266 |
|
69267 |
+
// Don't notify if the current size is the start size, and this is the first notification.
|
69268 |
if (isFirstNotify() && state.lastWidth === state.startSize.width && state.lastHeight === state.startSize.height) {
|
69269 |
return debug("Not notifying: Size is the same as the start size, and there has been no notification yet.");
|
69270 |
}
|
69309 |
return;
|
69310 |
}
|
69311 |
|
69312 |
+
updateDetectorElements(notifyListenersIfNeeded);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69313 |
}
|
69314 |
|
69315 |
debug("registerListenersAndPositionElements invoked.");
|
69399 |
return {
|
69400 |
makeDetectable: makeDetectable,
|
69401 |
addListener: addListener,
|
69402 |
+
uninstall: uninstall,
|
69403 |
+
initDocument: initDocument
|
69404 |
};
|
69405 |
};
|
69406 |
|
69407 |
|
69408 |
/***/ }),
|
69409 |
+
/* 330 */
|
69410 |
/*!*****************************************!*\
|
69411 |
!*** ./node_modules/lodash/debounce.js ***!
|
69412 |
\*****************************************/
|
69415 |
/***/ (function(module, exports, __webpack_require__) {
|
69416 |
|
69417 |
var isObject = __webpack_require__(/*! ./isObject */ 13),
|
69418 |
+
now = __webpack_require__(/*! ./now */ 331),
|
69419 |
+
toNumber = __webpack_require__(/*! ./toNumber */ 143);
|
69420 |
|
69421 |
/** Error message constants. */
|
69422 |
var FUNC_ERROR_TEXT = 'Expected a function';
|
69608 |
|
69609 |
|
69610 |
/***/ }),
|
69611 |
+
/* 331 */
|
69612 |
/*!************************************!*\
|
69613 |
!*** ./node_modules/lodash/now.js ***!
|
69614 |
\************************************/
|
69642 |
|
69643 |
|
69644 |
/***/ }),
|
69645 |
+
/* 332 */
|
69646 |
/*!*************************************!*\
|
69647 |
!*** ./node_modules/lodash/omit.js ***!
|
69648 |
\*************************************/
|
69651 |
/***/ (function(module, exports, __webpack_require__) {
|
69652 |
|
69653 |
var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
|
69654 |
+
baseClone = __webpack_require__(/*! ./_baseClone */ 333),
|
69655 |
+
baseUnset = __webpack_require__(/*! ./_baseUnset */ 355),
|
69656 |
castPath = __webpack_require__(/*! ./_castPath */ 24),
|
69657 |
copyObject = __webpack_require__(/*! ./_copyObject */ 27),
|
69658 |
+
customOmitClone = __webpack_require__(/*! ./_customOmitClone */ 358),
|
69659 |
+
flatRest = __webpack_require__(/*! ./_flatRest */ 360),
|
69660 |
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 79);
|
69661 |
|
69662 |
/** Used to compose bitmasks for cloning. */
|
69710 |
|
69711 |
|
69712 |
/***/ }),
|
69713 |
+
/* 333 */
|
69714 |
/*!*******************************************!*\
|
69715 |
!*** ./node_modules/lodash/_baseClone.js ***!
|
69716 |
\*******************************************/
|
69719 |
/***/ (function(module, exports, __webpack_require__) {
|
69720 |
|
69721 |
var Stack = __webpack_require__(/*! ./_Stack */ 50),
|
69722 |
+
arrayEach = __webpack_require__(/*! ./_arrayEach */ 334),
|
69723 |
assignValue = __webpack_require__(/*! ./_assignValue */ 48),
|
69724 |
+
baseAssign = __webpack_require__(/*! ./_baseAssign */ 335),
|
69725 |
+
baseAssignIn = __webpack_require__(/*! ./_baseAssignIn */ 336),
|
69726 |
+
cloneBuffer = __webpack_require__(/*! ./_cloneBuffer */ 339),
|
69727 |
+
copyArray = __webpack_require__(/*! ./_copyArray */ 340),
|
69728 |
+
copySymbols = __webpack_require__(/*! ./_copySymbols */ 341),
|
69729 |
+
copySymbolsIn = __webpack_require__(/*! ./_copySymbolsIn */ 342),
|
69730 |
+
getAllKeys = __webpack_require__(/*! ./_getAllKeys */ 120),
|
69731 |
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 79),
|
69732 |
getTag = __webpack_require__(/*! ./_getTag */ 44),
|
69733 |
+
initCloneArray = __webpack_require__(/*! ./_initCloneArray */ 343),
|
69734 |
+
initCloneByTag = __webpack_require__(/*! ./_initCloneByTag */ 344),
|
69735 |
+
initCloneObject = __webpack_require__(/*! ./_initCloneObject */ 349),
|
69736 |
isArray = __webpack_require__(/*! ./isArray */ 14),
|
69737 |
isBuffer = __webpack_require__(/*! ./isBuffer */ 57),
|
69738 |
+
isMap = __webpack_require__(/*! ./isMap */ 351),
|
69739 |
isObject = __webpack_require__(/*! ./isObject */ 13),
|
69740 |
+
isSet = __webpack_require__(/*! ./isSet */ 353),
|
69741 |
keys = __webpack_require__(/*! ./keys */ 22);
|
69742 |
|
69743 |
/** Used to compose bitmasks for cloning. */
|
69886 |
|
69887 |
|
69888 |
/***/ }),
|
69889 |
+
/* 334 */
|
69890 |
/*!*******************************************!*\
|
69891 |
!*** ./node_modules/lodash/_arrayEach.js ***!
|
69892 |
\*******************************************/
|
69919 |
|
69920 |
|
69921 |
/***/ }),
|
69922 |
+
/* 335 */
|
69923 |
/*!********************************************!*\
|
69924 |
!*** ./node_modules/lodash/_baseAssign.js ***!
|
69925 |
\********************************************/
|
69947 |
|
69948 |
|
69949 |
/***/ }),
|
69950 |
+
/* 336 */
|
69951 |
/*!**********************************************!*\
|
69952 |
!*** ./node_modules/lodash/_baseAssignIn.js ***!
|
69953 |
\**********************************************/
|
69956 |
/***/ (function(module, exports, __webpack_require__) {
|
69957 |
|
69958 |
var copyObject = __webpack_require__(/*! ./_copyObject */ 27),
|
69959 |
+
keysIn = __webpack_require__(/*! ./keysIn */ 150);
|
69960 |
|
69961 |
/**
|
69962 |
* The base implementation of `_.assignIn` without support for multiple sources
|
69975 |
|
69976 |
|
69977 |
/***/ }),
|
69978 |
+
/* 337 */
|
69979 |
/*!********************************************!*\
|
69980 |
!*** ./node_modules/lodash/_baseKeysIn.js ***!
|
69981 |
\********************************************/
|
69985 |
|
69986 |
var isObject = __webpack_require__(/*! ./isObject */ 13),
|
69987 |
isPrototype = __webpack_require__(/*! ./_isPrototype */ 43),
|
69988 |
+
nativeKeysIn = __webpack_require__(/*! ./_nativeKeysIn */ 338);
|
69989 |
|
69990 |
/** Used for built-in method references. */
|
69991 |
var objectProto = Object.prototype;
|
70019 |
|
70020 |
|
70021 |
/***/ }),
|
70022 |
+
/* 338 */
|
70023 |
/*!**********************************************!*\
|
70024 |
!*** ./node_modules/lodash/_nativeKeysIn.js ***!
|
70025 |
\**********************************************/
|
70050 |
|
70051 |
|
70052 |
/***/ }),
|
70053 |
+
/* 339 */
|
70054 |
/*!*********************************************!*\
|
70055 |
!*** ./node_modules/lodash/_cloneBuffer.js ***!
|
70056 |
\*********************************************/
|
70097 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/module.js */ 58)(module)))
|
70098 |
|
70099 |
/***/ }),
|
70100 |
+
/* 340 */
|
70101 |
/*!*******************************************!*\
|
70102 |
!*** ./node_modules/lodash/_copyArray.js ***!
|
70103 |
\*******************************************/
|
70128 |
|
70129 |
|
70130 |
/***/ }),
|
70131 |
+
/* 341 */
|
70132 |
/*!*********************************************!*\
|
70133 |
!*** ./node_modules/lodash/_copySymbols.js ***!
|
70134 |
\*********************************************/
|
70155 |
|
70156 |
|
70157 |
/***/ }),
|
70158 |
+
/* 342 */
|
70159 |
/*!***********************************************!*\
|
70160 |
!*** ./node_modules/lodash/_copySymbolsIn.js ***!
|
70161 |
\***********************************************/
|
70164 |
/***/ (function(module, exports, __webpack_require__) {
|
70165 |
|
70166 |
var copyObject = __webpack_require__(/*! ./_copyObject */ 27),
|
70167 |
+
getSymbolsIn = __webpack_require__(/*! ./_getSymbolsIn */ 151);
|
70168 |
|
70169 |
/**
|
70170 |
* Copies own and inherited symbols of `source` to `object`.
|
70182 |
|
70183 |
|
70184 |
/***/ }),
|
70185 |
+
/* 343 */
|
70186 |
/*!************************************************!*\
|
70187 |
!*** ./node_modules/lodash/_initCloneArray.js ***!
|
70188 |
\************************************************/
|
70219 |
|
70220 |
|
70221 |
/***/ }),
|
70222 |
+
/* 344 */
|
70223 |
/*!************************************************!*\
|
70224 |
!*** ./node_modules/lodash/_initCloneByTag.js ***!
|
70225 |
\************************************************/
|
70228 |
/***/ (function(module, exports, __webpack_require__) {
|
70229 |
|
70230 |
var cloneArrayBuffer = __webpack_require__(/*! ./_cloneArrayBuffer */ 80),
|
70231 |
+
cloneDataView = __webpack_require__(/*! ./_cloneDataView */ 345),
|
70232 |
+
cloneRegExp = __webpack_require__(/*! ./_cloneRegExp */ 346),
|
70233 |
+
cloneSymbol = __webpack_require__(/*! ./_cloneSymbol */ 347),
|
70234 |
+
cloneTypedArray = __webpack_require__(/*! ./_cloneTypedArray */ 348);
|
70235 |
|
70236 |
/** `Object#toString` result references. */
|
70237 |
var boolTag = '[object Boolean]',
|
70307 |
|
70308 |
|
70309 |
/***/ }),
|
70310 |
+
/* 345 */
|
70311 |
/*!***********************************************!*\
|
70312 |
!*** ./node_modules/lodash/_cloneDataView.js ***!
|
70313 |
\***********************************************/
|
70334 |
|
70335 |
|
70336 |
/***/ }),
|
70337 |
+
/* 346 */
|
70338 |
/*!*********************************************!*\
|
70339 |
!*** ./node_modules/lodash/_cloneRegExp.js ***!
|
70340 |
\*********************************************/
|
70362 |
|
70363 |
|
70364 |
/***/ }),
|
70365 |
+
/* 347 */
|
70366 |
/*!*********************************************!*\
|
70367 |
!*** ./node_modules/lodash/_cloneSymbol.js ***!
|
70368 |
\*********************************************/
|
70391 |
|
70392 |
|
70393 |
/***/ }),
|
70394 |
+
/* 348 */
|
70395 |
/*!*************************************************!*\
|
70396 |
!*** ./node_modules/lodash/_cloneTypedArray.js ***!
|
70397 |
\*************************************************/
|
70418 |
|
70419 |
|
70420 |
/***/ }),
|
70421 |
+
/* 349 */
|
70422 |
/*!*************************************************!*\
|
70423 |
!*** ./node_modules/lodash/_initCloneObject.js ***!
|
70424 |
\*************************************************/
|
70426 |
/*! all exports used */
|
70427 |
/***/ (function(module, exports, __webpack_require__) {
|
70428 |
|
70429 |
+
var baseCreate = __webpack_require__(/*! ./_baseCreate */ 350),
|
70430 |
getPrototype = __webpack_require__(/*! ./_getPrototype */ 78),
|
70431 |
isPrototype = __webpack_require__(/*! ./_isPrototype */ 43);
|
70432 |
|
70447 |
|
70448 |
|
70449 |
/***/ }),
|
70450 |
+
/* 350 */
|
70451 |
/*!********************************************!*\
|
70452 |
!*** ./node_modules/lodash/_baseCreate.js ***!
|
70453 |
\********************************************/
|
70488 |
|
70489 |
|
70490 |
/***/ }),
|
70491 |
+
/* 351 */
|
70492 |
/*!**************************************!*\
|
70493 |
!*** ./node_modules/lodash/isMap.js ***!
|
70494 |
\**************************************/
|
70496 |
/*! all exports used */
|
70497 |
/***/ (function(module, exports, __webpack_require__) {
|
70498 |
|
70499 |
+
var baseIsMap = __webpack_require__(/*! ./_baseIsMap */ 352),
|
70500 |
baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
|
70501 |
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
|
70502 |
|
70526 |
|
70527 |
|
70528 |
/***/ }),
|
70529 |
+
/* 352 */
|
70530 |
/*!*******************************************!*\
|
70531 |
!*** ./node_modules/lodash/_baseIsMap.js ***!
|
70532 |
\*******************************************/
|
70555 |
|
70556 |
|
70557 |
/***/ }),
|
70558 |
+
/* 353 */
|
70559 |
/*!**************************************!*\
|
70560 |
!*** ./node_modules/lodash/isSet.js ***!
|
70561 |
\**************************************/
|
70563 |
/*! all exports used */
|
70564 |
/***/ (function(module, exports, __webpack_require__) {
|
70565 |
|
70566 |
+
var baseIsSet = __webpack_require__(/*! ./_baseIsSet */ 354),
|
70567 |
baseUnary = __webpack_require__(/*! ./_baseUnary */ 41),
|
70568 |
nodeUtil = __webpack_require__(/*! ./_nodeUtil */ 42);
|
70569 |
|
70593 |
|
70594 |
|
70595 |
/***/ }),
|
70596 |
+
/* 354 */
|
70597 |
/*!*******************************************!*\
|
70598 |
!*** ./node_modules/lodash/_baseIsSet.js ***!
|
70599 |
\*******************************************/
|
70622 |
|
70623 |
|
70624 |
/***/ }),
|
70625 |
+
/* 355 */
|
70626 |
/*!*******************************************!*\
|
70627 |
!*** ./node_modules/lodash/_baseUnset.js ***!
|
70628 |
\*******************************************/
|
70631 |
/***/ (function(module, exports, __webpack_require__) {
|
70632 |
|
70633 |
var castPath = __webpack_require__(/*! ./_castPath */ 24),
|
70634 |
+
last = __webpack_require__(/*! ./last */ 356),
|
70635 |
+
parent = __webpack_require__(/*! ./_parent */ 357),
|
70636 |
toKey = __webpack_require__(/*! ./_toKey */ 25);
|
70637 |
|
70638 |
/**
|
70653 |
|
70654 |
|
70655 |
/***/ }),
|
70656 |
+
/* 356 */
|
70657 |
/*!*************************************!*\
|
70658 |
!*** ./node_modules/lodash/last.js ***!
|
70659 |
\*************************************/
|
70684 |
|
70685 |
|
70686 |
/***/ }),
|
70687 |
+
/* 357 */
|
70688 |
/*!****************************************!*\
|
70689 |
!*** ./node_modules/lodash/_parent.js ***!
|
70690 |
\****************************************/
|
70711 |
|
70712 |
|
70713 |
/***/ }),
|
70714 |
+
/* 358 */
|
70715 |
/*!*************************************************!*\
|
70716 |
!*** ./node_modules/lodash/_customOmitClone.js ***!
|
70717 |
\*************************************************/
|
70719 |
/*! all exports used */
|
70720 |
/***/ (function(module, exports, __webpack_require__) {
|
70721 |
|
70722 |
+
var isPlainObject = __webpack_require__(/*! ./isPlainObject */ 359);
|
70723 |
|
70724 |
/**
|
70725 |
* Used by `_.omit` to customize its `_.cloneDeep` use to only clone plain
|
70738 |
|
70739 |
|
70740 |
/***/ }),
|
70741 |
+
/* 359 */
|
70742 |
/*!**********************************************!*\
|
70743 |
!*** ./node_modules/lodash/isPlainObject.js ***!
|
70744 |
\**********************************************/
|
70811 |
|
70812 |
|
70813 |
/***/ }),
|
70814 |
+
/* 360 */
|
70815 |
/*!******************************************!*\
|
70816 |
!*** ./node_modules/lodash/_flatRest.js ***!
|
70817 |
\******************************************/
|
70819 |
/*! all exports used */
|
70820 |
/***/ (function(module, exports, __webpack_require__) {
|
70821 |
|
70822 |
+
var flatten = __webpack_require__(/*! ./flatten */ 361),
|
70823 |
+
overRest = __webpack_require__(/*! ./_overRest */ 146),
|
70824 |
+
setToString = __webpack_require__(/*! ./_setToString */ 147);
|
70825 |
|
70826 |
/**
|
70827 |
* A specialized version of `baseRest` which flattens the rest array.
|
70838 |
|
70839 |
|
70840 |
/***/ }),
|
70841 |
+
/* 361 */
|
70842 |
/*!****************************************!*\
|
70843 |
!*** ./node_modules/lodash/flatten.js ***!
|
70844 |
\****************************************/
|
70846 |
/*! all exports used */
|
70847 |
/***/ (function(module, exports, __webpack_require__) {
|
70848 |
|
70849 |
+
var baseFlatten = __webpack_require__(/*! ./_baseFlatten */ 362);
|
70850 |
|
70851 |
/**
|
70852 |
* Flattens `array` a single level deep.
|
70871 |
|
70872 |
|
70873 |
/***/ }),
|
70874 |
+
/* 362 */
|
70875 |
/*!*********************************************!*\
|
70876 |
!*** ./node_modules/lodash/_baseFlatten.js ***!
|
70877 |
\*********************************************/
|
70880 |
/***/ (function(module, exports, __webpack_require__) {
|
70881 |
|
70882 |
var arrayPush = __webpack_require__(/*! ./_arrayPush */ 54),
|
70883 |
+
isFlattenable = __webpack_require__(/*! ./_isFlattenable */ 363);
|
70884 |
|
70885 |
/**
|
70886 |
* The base implementation of `_.flatten` with support for restricting flattening.
|
70920 |
|
70921 |
|
70922 |
/***/ }),
|
70923 |
+
/* 363 */
|
70924 |
/*!***********************************************!*\
|
70925 |
!*** ./node_modules/lodash/_isFlattenable.js ***!
|
70926 |
\***********************************************/
|
70951 |
|
70952 |
|
70953 |
/***/ }),
|
70954 |
+
/* 364 */
|
70955 |
/*!**************************************************!*\
|
70956 |
!*** ./node_modules/create-react-class/index.js ***!
|
70957 |
\**************************************************/
|
70971 |
|
70972 |
|
70973 |
var React = __webpack_require__(/*! react */ 6);
|
70974 |
+
var factory = __webpack_require__(/*! ./factory */ 365);
|
70975 |
|
70976 |
if (typeof React === 'undefined') {
|
70977 |
throw Error(
|
70991 |
|
70992 |
|
70993 |
/***/ }),
|
70994 |
+
/* 365 */
|
70995 |
/*!****************************************************!*\
|
70996 |
!*** ./node_modules/create-react-class/factory.js ***!
|
70997 |
\****************************************************/
|
71012 |
|
71013 |
var _assign = __webpack_require__(/*! object-assign */ 26);
|
71014 |
|
71015 |
+
var emptyObject = __webpack_require__(/*! fbjs/lib/emptyObject */ 366);
|
71016 |
+
var _invariant = __webpack_require__(/*! fbjs/lib/invariant */ 367);
|
71017 |
|
71018 |
if (process.env.NODE_ENV !== 'production') {
|
71019 |
+
var warning = __webpack_require__(/*! fbjs/lib/warning */ 368);
|
71020 |
}
|
71021 |
|
71022 |
var MIXINS_KEY = 'mixins';
|
71930 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
71931 |
|
71932 |
/***/ }),
|
71933 |
+
/* 366 */
|
71934 |
/*!**********************************************!*\
|
71935 |
!*** ./node_modules/fbjs/lib/emptyObject.js ***!
|
71936 |
\**********************************************/
|
71959 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
71960 |
|
71961 |
/***/ }),
|
71962 |
+
/* 367 */
|
71963 |
/*!********************************************!*\
|
71964 |
!*** ./node_modules/fbjs/lib/invariant.js ***!
|
71965 |
\********************************************/
|
72024 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
72025 |
|
72026 |
/***/ }),
|
72027 |
+
/* 368 */
|
72028 |
/*!******************************************!*\
|
72029 |
!*** ./node_modules/fbjs/lib/warning.js ***!
|
72030 |
\******************************************/
|
72043 |
|
72044 |
|
72045 |
|
72046 |
+
var emptyFunction = __webpack_require__(/*! ./emptyFunction */ 369);
|
72047 |
|
72048 |
/**
|
72049 |
* Similar to invariant but only logs a warning if the condition is not met.
|
72098 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
72099 |
|
72100 |
/***/ }),
|
72101 |
+
/* 369 */
|
72102 |
/*!************************************************!*\
|
72103 |
!*** ./node_modules/fbjs/lib/emptyFunction.js ***!
|
72104 |
\************************************************/
|
72145 |
module.exports = emptyFunction;
|
72146 |
|
72147 |
/***/ }),
|
72148 |
+
/* 370 */
|
72149 |
/*!************************************************!*\
|
72150 |
!*** ./src/blocks/post/post-carousel/block.js ***!
|
72151 |
\************************************************/
|
72153 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
72154 |
|
72155 |
"use strict";
|
72156 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__edit__ = __webpack_require__(/*! ./edit */ 371);
|
72157 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
72158 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! .././style.scss */ 74);
|
72159 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
72194 |
});
|
72195 |
|
72196 |
/***/ }),
|
72197 |
+
/* 371 */
|
72198 |
/*!***********************************************!*\
|
72199 |
!*** ./src/blocks/post/post-carousel/edit.js ***!
|
72200 |
\***********************************************/
|
72203 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
72204 |
|
72205 |
"use strict";
|
72206 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_get__ = __webpack_require__(/*! lodash/get */ 129);
|
72207 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_get___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_get__);
|
72208 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
72209 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_map__);
|
72210 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
72211 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
72212 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
72213 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__blog__ = __webpack_require__(/*! ./blog */ 372);
|
72214 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__styling__ = __webpack_require__(/*! .././styling */ 73);
|
72215 |
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; };
|
72216 |
|
72260 |
Button = _wp$components.Button,
|
72261 |
TabPanel = _wp$components.TabPanel,
|
72262 |
Dashicon = _wp$components.Dashicon,
|
72263 |
+
TextControl = _wp$components.TextControl,
|
72264 |
+
RadioControl = _wp$components.RadioControl;
|
72265 |
var _wp$blockEditor = wp.blockEditor,
|
72266 |
InspectorControls = _wp$blockEditor.InspectorControls,
|
72267 |
BlockAlignmentToolbar = _wp$blockEditor.BlockAlignmentToolbar,
|
72451 |
taxonomyType = attributes.taxonomyType,
|
72452 |
equalHeight = attributes.equalHeight,
|
72453 |
inheritFromTheme = attributes.inheritFromTheme,
|
72454 |
+
postDisplaytext = attributes.postDisplaytext,
|
72455 |
+
displayPostContentRadio = attributes.displayPostContentRadio,
|
72456 |
+
excludeCurrentPost = attributes.excludeCurrentPost;
|
72457 |
|
72458 |
|
72459 |
var hoverSettings = wp.element.createElement(
|
72669 |
}),
|
72670 |
wp.element.createElement("hr", { className: "uagb-editor__separator" })
|
72671 |
),
|
72672 |
+
wp.element.createElement(ToggleControl, {
|
72673 |
+
label: __("Exclude Current Post"),
|
72674 |
+
checked: excludeCurrentPost,
|
72675 |
+
onChange: function onChange(value) {
|
72676 |
+
return setAttributes({ excludeCurrentPost: !excludeCurrentPost });
|
72677 |
+
}
|
72678 |
+
}),
|
72679 |
wp.element.createElement(QueryControls, _extends({ order: order, orderBy: orderBy }, {
|
72680 |
numberOfItems: postsToShow,
|
72681 |
onNumberOfItemsChange: function onNumberOfItemsChange(value) {
|
72985 |
return setAttributes({ displayPostExcerpt: !displayPostExcerpt });
|
72986 |
}
|
72987 |
}),
|
72988 |
+
displayPostExcerpt && wp.element.createElement(RadioControl, {
|
72989 |
+
label: __('Show:'),
|
72990 |
+
selected: displayPostContentRadio,
|
72991 |
+
options: [{ label: __('Excerpt'), value: "excerpt" }, { label: __('Full post'), value: "full_post" }],
|
72992 |
+
onChange: function onChange(value) {
|
72993 |
+
return setAttributes({
|
72994 |
+
displayPostContentRadio: value
|
72995 |
+
});
|
72996 |
+
}
|
72997 |
+
}),
|
72998 |
+
displayPostExcerpt && displayPostContentRadio === 'excerpt' && wp.element.createElement(RangeControl, {
|
72999 |
+
label: __('Max number of words in excerpt'),
|
73000 |
value: excerptLength,
|
73001 |
onChange: function onChange(value) {
|
73002 |
return setAttributes({ excerptLength: value });
|
73003 |
},
|
73004 |
min: 1,
|
73005 |
+
max: 100,
|
73006 |
allowReset: true
|
73007 |
})
|
73008 |
),
|
73009 |
+
displayPostExcerpt && displayPostContentRadio === 'excerpt' && wp.element.createElement(
|
73010 |
PanelBody,
|
73011 |
{ title: __("Read More Link"), initialOpen: false },
|
73012 |
wp.element.createElement(ToggleControl, {
|
73470 |
order = _props$attributes.order,
|
73471 |
orderBy = _props$attributes.orderBy,
|
73472 |
postType = _props$attributes.postType,
|
73473 |
+
taxonomyType = _props$attributes.taxonomyType,
|
73474 |
+
excludeCurrentPost = _props$attributes.excludeCurrentPost;
|
73475 |
|
73476 |
var _select = select("core"),
|
73477 |
getEntityRecords = _select.getEntityRecords;
|
73501 |
per_page: postsToShow
|
73502 |
};
|
73503 |
|
73504 |
+
if (excludeCurrentPost) {
|
73505 |
+
latestPostsQuery['exclude'] = select("core/editor").getCurrentPostId();
|
73506 |
+
}
|
73507 |
|
73508 |
+
latestPostsQuery[rest_base] = categories;
|
73509 |
return {
|
73510 |
latestPosts: getEntityRecords("postType", postType, latestPostsQuery),
|
73511 |
categoriesList: categoriesList,
|
73514 |
})(UAGBPostCarousel));
|
73515 |
|
73516 |
/***/ }),
|
73517 |
+
/* 372 */
|
73518 |
/*!***********************************************!*\
|
73519 |
!*** ./src/blocks/post/post-carousel/blog.js ***!
|
73520 |
\***********************************************/
|
73525 |
"use strict";
|
73526 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
73527 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
73528 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick__ = __webpack_require__(/*! react-slick */ 152);
|
73529 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react_slick___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react_slick__);
|
73530 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_FeaturedImage__ = __webpack_require__(/*! .././components/FeaturedImage */ 65);
|
73531 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! .././components/Title */ 66);
|
73715 |
/* harmony default export */ __webpack_exports__["a"] = (Blog);
|
73716 |
|
73717 |
/***/ }),
|
73718 |
+
/* 373 */
|
73719 |
/*!************************************************!*\
|
73720 |
!*** ./node_modules/react-slick/lib/slider.js ***!
|
73721 |
\************************************************/
|
73734 |
|
73735 |
var _react2 = _interopRequireDefault(_react);
|
73736 |
|
73737 |
+
var _innerSlider = __webpack_require__(/*! ./inner-slider */ 374);
|
73738 |
|
73739 |
+
var _json2mq = __webpack_require__(/*! json2mq */ 381);
|
73740 |
|
73741 |
var _json2mq2 = _interopRequireDefault(_json2mq);
|
73742 |
|
73743 |
+
var _defaultProps = __webpack_require__(/*! ./default-props */ 383);
|
73744 |
|
73745 |
var _defaultProps2 = _interopRequireDefault(_defaultProps);
|
73746 |
|
73754 |
|
73755 |
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; }
|
73756 |
|
73757 |
+
var enquire = (0, _innerSliderUtils.canUseDOM)() && __webpack_require__(/*! enquire.js */ 384);
|
73758 |
|
73759 |
var Slider = function (_React$Component) {
|
73760 |
_inherits(Slider, _React$Component);
|
73970 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../../process/browser.js */ 3)))
|
73971 |
|
73972 |
/***/ }),
|
73973 |
+
/* 374 */
|
73974 |
/*!******************************************************!*\
|
73975 |
!*** ./node_modules/react-slick/lib/inner-slider.js ***!
|
73976 |
\******************************************************/
|
73996 |
|
73997 |
var _reactDom2 = _interopRequireDefault(_reactDom);
|
73998 |
|
73999 |
+
var _initialState = __webpack_require__(/*! ./initial-state */ 375);
|
74000 |
|
74001 |
var _initialState2 = _interopRequireDefault(_initialState);
|
74002 |
|
74003 |
+
var _lodash = __webpack_require__(/*! lodash.debounce */ 376);
|
74004 |
|
74005 |
var _lodash2 = _interopRequireDefault(_lodash);
|
74006 |
|
74010 |
|
74011 |
var _innerSliderUtils = __webpack_require__(/*! ./utils/innerSliderUtils */ 49);
|
74012 |
|
74013 |
+
var _track = __webpack_require__(/*! ./track */ 377);
|
74014 |
|
74015 |
+
var _dots = __webpack_require__(/*! ./dots */ 378);
|
74016 |
|
74017 |
+
var _arrows = __webpack_require__(/*! ./arrows */ 379);
|
74018 |
|
74019 |
+
var _resizeObserverPolyfill = __webpack_require__(/*! resize-observer-polyfill */ 380);
|
74020 |
|
74021 |
var _resizeObserverPolyfill2 = _interopRequireDefault(_resizeObserverPolyfill);
|
74022 |
|
74722 |
}(_react2.default.Component);
|
74723 |
|
74724 |
/***/ }),
|
74725 |
+
/* 375 */
|
74726 |
/*!*******************************************************!*\
|
74727 |
!*** ./node_modules/react-slick/lib/initial-state.js ***!
|
74728 |
\*******************************************************/
|
74762 |
exports.default = initialState;
|
74763 |
|
74764 |
/***/ }),
|
74765 |
+
/* 376 */
|
74766 |
/*!***********************************************!*\
|
74767 |
!*** ./node_modules/lodash.debounce/index.js ***!
|
74768 |
\***********************************************/
|
75151 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../webpack/buildin/global.js */ 52)))
|
75152 |
|
75153 |
/***/ }),
|
75154 |
+
/* 377 */
|
75155 |
/*!***********************************************!*\
|
75156 |
!*** ./node_modules/react-slick/lib/track.js ***!
|
75157 |
\***********************************************/
|
75371 |
}(_react2.default.PureComponent);
|
75372 |
|
75373 |
/***/ }),
|
75374 |
+
/* 378 */
|
75375 |
/*!**********************************************!*\
|
75376 |
!*** ./node_modules/react-slick/lib/dots.js ***!
|
75377 |
\**********************************************/
|
75481 |
}(_react2.default.PureComponent);
|
75482 |
|
75483 |
/***/ }),
|
75484 |
+
/* 379 */
|
75485 |
/*!************************************************!*\
|
75486 |
!*** ./node_modules/react-slick/lib/arrows.js ***!
|
75487 |
\************************************************/
|
75626 |
}(_react2.default.PureComponent);
|
75627 |
|
75628 |
/***/ }),
|
75629 |
+
/* 380 */
|
75630 |
/*!*************************************************************************!*\
|
75631 |
!*** ./node_modules/resize-observer-polyfill/dist/ResizeObserver.es.js ***!
|
75632 |
\*************************************************************************/
|
75636 |
|
75637 |
"use strict";
|
75638 |
Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
|
75639 |
+
/* WEBPACK VAR INJECTION */(function(global) {/**
|
75640 |
+
* A collection of shims that provide minimal functionality of the ES6 collections.
|
75641 |
+
*
|
75642 |
+
* These implementations are not meant to be used outside of the ResizeObserver
|
75643 |
+
* modules as they cover only a limited range of use cases.
|
75644 |
+
*/
|
75645 |
+
/* eslint-disable require-jsdoc, valid-jsdoc */
|
75646 |
+
var MapShim = (function () {
|
75647 |
+
if (typeof Map !== 'undefined') {
|
75648 |
+
return Map;
|
75649 |
+
}
|
75650 |
+
/**
|
75651 |
+
* Returns index in provided array that matches the specified key.
|
75652 |
+
*
|
75653 |
+
* @param {Array<Array>} arr
|
75654 |
+
* @param {*} key
|
75655 |
+
* @returns {number}
|
75656 |
+
*/
|
75657 |
+
function getIndex(arr, key) {
|
75658 |
+
var result = -1;
|
75659 |
+
arr.some(function (entry, index) {
|
75660 |
+
if (entry[0] === key) {
|
75661 |
+
result = index;
|
75662 |
+
return true;
|
75663 |
+
}
|
75664 |
+
return false;
|
75665 |
+
});
|
75666 |
+
return result;
|
75667 |
+
}
|
75668 |
+
return /** @class */ (function () {
|
75669 |
+
function class_1() {
|
75670 |
+
this.__entries__ = [];
|
75671 |
+
}
|
75672 |
+
Object.defineProperty(class_1.prototype, "size", {
|
75673 |
+
/**
|
75674 |
+
* @returns {boolean}
|
75675 |
+
*/
|
75676 |
+
get: function () {
|
75677 |
+
return this.__entries__.length;
|
75678 |
+
},
|
75679 |
+
enumerable: true,
|
75680 |
+
configurable: true
|
75681 |
+
});
|
75682 |
+
/**
|
75683 |
+
* @param {*} key
|
75684 |
+
* @returns {*}
|
75685 |
+
*/
|
75686 |
+
class_1.prototype.get = function (key) {
|
75687 |
+
var index = getIndex(this.__entries__, key);
|
75688 |
+
var entry = this.__entries__[index];
|
75689 |
+
return entry && entry[1];
|
75690 |
+
};
|
75691 |
+
/**
|
75692 |
+
* @param {*} key
|
75693 |
+
* @param {*} value
|
75694 |
+
* @returns {void}
|
75695 |
+
*/
|
75696 |
+
class_1.prototype.set = function (key, value) {
|
75697 |
+
var index = getIndex(this.__entries__, key);
|
75698 |
+
if (~index) {
|
75699 |
+
this.__entries__[index][1] = value;
|
75700 |
+
}
|
75701 |
+
else {
|
75702 |
+
this.__entries__.push([key, value]);
|
75703 |
+
}
|
75704 |
+
};
|
75705 |
+
/**
|
75706 |
+
* @param {*} key
|
75707 |
+
* @returns {void}
|
75708 |
+
*/
|
75709 |
+
class_1.prototype.delete = function (key) {
|
75710 |
+
var entries = this.__entries__;
|
75711 |
+
var index = getIndex(entries, key);
|
75712 |
+
if (~index) {
|
75713 |
+
entries.splice(index, 1);
|
75714 |
+
}
|
75715 |
+
};
|
75716 |
+
/**
|
75717 |
+
* @param {*} key
|
75718 |
+
* @returns {void}
|
75719 |
+
*/
|
75720 |
+
class_1.prototype.has = function (key) {
|
75721 |
+
return !!~getIndex(this.__entries__, key);
|
75722 |
+
};
|
75723 |
+
/**
|
75724 |
+
* @returns {void}
|
75725 |
+
*/
|
75726 |
+
class_1.prototype.clear = function () {
|
75727 |
+
this.__entries__.splice(0);
|
75728 |
+
};
|
75729 |
+
/**
|
75730 |
+
* @param {Function} callback
|
75731 |
+
* @param {*} [ctx=null]
|
75732 |
+
* @returns {void}
|
75733 |
+
*/
|
75734 |
+
class_1.prototype.forEach = function (callback, ctx) {
|
75735 |
+
if (ctx === void 0) { ctx = null; }
|
75736 |
+
for (var _i = 0, _a = this.__entries__; _i < _a.length; _i++) {
|
75737 |
+
var entry = _a[_i];
|
75738 |
+
callback.call(ctx, entry[1], entry[0]);
|
75739 |
+
}
|
75740 |
+
};
|
75741 |
+
return class_1;
|
75742 |
+
}());
|
75743 |
})();
|
75744 |
|
75745 |
+
/**
|
75746 |
+
* Detects whether window and document objects are available in current environment.
|
75747 |
+
*/
|
75748 |
var isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined' && window.document === document;
|
75749 |
|
75750 |
+
// Returns global object of a current environment.
|
75751 |
+
var global$1 = (function () {
|
75752 |
+
if (typeof global !== 'undefined' && global.Math === Math) {
|
75753 |
+
return global;
|
75754 |
+
}
|
75755 |
+
if (typeof self !== 'undefined' && self.Math === Math) {
|
75756 |
+
return self;
|
75757 |
+
}
|
75758 |
+
if (typeof window !== 'undefined' && window.Math === Math) {
|
75759 |
+
return window;
|
75760 |
+
}
|
75761 |
+
// eslint-disable-next-line no-new-func
|
75762 |
+
return Function('return this')();
|
75763 |
})();
|
75764 |
|
75765 |
+
/**
|
75766 |
+
* A shim for the requestAnimationFrame which falls back to the setTimeout if
|
75767 |
+
* first one is not supported.
|
75768 |
+
*
|
75769 |
+
* @returns {number} Requests' identifier.
|
75770 |
+
*/
|
75771 |
+
var requestAnimationFrame$1 = (function () {
|
75772 |
+
if (typeof requestAnimationFrame === 'function') {
|
75773 |
+
// It's required to use a bounded function because IE sometimes throws
|
75774 |
+
// an "Invalid calling object" error if rAF is invoked without the global
|
75775 |
+
// object on the left hand side.
|
75776 |
+
return requestAnimationFrame.bind(global$1);
|
75777 |
+
}
|
75778 |
+
return function (callback) { return setTimeout(function () { return callback(Date.now()); }, 1000 / 60); };
|
75779 |
})();
|
75780 |
|
75781 |
+
// Defines minimum timeout before adding a trailing call.
|
75782 |
+
var trailingTimeout = 2;
|
75783 |
+
/**
|
75784 |
+
* Creates a wrapper function which ensures that provided callback will be
|
75785 |
+
* invoked only once during the specified delay period.
|
75786 |
+
*
|
75787 |
+
* @param {Function} callback - Function to be invoked after the delay period.
|
75788 |
+
* @param {number} delay - Delay after which to invoke callback.
|
75789 |
+
* @returns {Function}
|
75790 |
+
*/
|
75791 |
+
function throttle (callback, delay) {
|
75792 |
+
var leadingCall = false, trailingCall = false, lastCallTime = 0;
|
75793 |
+
/**
|
75794 |
+
* Invokes the original callback function and schedules new invocation if
|
75795 |
+
* the "proxy" was called during current request.
|
75796 |
+
*
|
75797 |
+
* @returns {void}
|
75798 |
+
*/
|
75799 |
+
function resolvePending() {
|
75800 |
+
if (leadingCall) {
|
75801 |
+
leadingCall = false;
|
75802 |
+
callback();
|
75803 |
+
}
|
75804 |
+
if (trailingCall) {
|
75805 |
+
proxy();
|
75806 |
+
}
|
75807 |
+
}
|
75808 |
+
/**
|
75809 |
+
* Callback invoked after the specified delay. It will further postpone
|
75810 |
+
* invocation of the original function delegating it to the
|
75811 |
+
* requestAnimationFrame.
|
75812 |
+
*
|
75813 |
+
* @returns {void}
|
75814 |
+
*/
|
75815 |
+
function timeoutCallback() {
|
75816 |
+
requestAnimationFrame$1(resolvePending);
|
75817 |
+
}
|
75818 |
+
/**
|
75819 |
+
* Schedules invocation of the original function.
|
75820 |
+
*
|
75821 |
+
* @returns {void}
|
75822 |
+
*/
|
75823 |
+
function proxy() {
|
75824 |
+
var timeStamp = Date.now();
|
75825 |
+
if (leadingCall) {
|
75826 |
+
// Reject immediately following calls.
|
75827 |
+
if (timeStamp - lastCallTime < trailingTimeout) {
|
75828 |
+
return;
|
75829 |
+
}
|
75830 |
+
// Schedule new call to be in invoked when the pending one is resolved.
|
75831 |
+
// This is important for "transitions" which never actually start
|
75832 |
+
// immediately so there is a chance that we might miss one if change
|
75833 |
+
// happens amids the pending invocation.
|
75834 |
+
trailingCall = true;
|
75835 |
+
}
|
75836 |
+
else {
|
75837 |
+
leadingCall = true;
|
75838 |
+
trailingCall = false;
|
75839 |
+
setTimeout(timeoutCallback, delay);
|
75840 |
+
}
|
75841 |
+
lastCallTime = timeStamp;
|
75842 |
+
}
|
75843 |
+
return proxy;
|
75844 |
+
}
|
75845 |
+
|
75846 |
+
// Minimum delay before invoking the update of observers.
|
75847 |
+
var REFRESH_DELAY = 20;
|
75848 |
+
// A list of substrings of CSS properties used to find transition events that
|
75849 |
+
// might affect dimensions of observed elements.
|
75850 |
+
var transitionKeys = ['top', 'right', 'bottom', 'left', 'width', 'height', 'size', 'weight'];
|
75851 |
+
// Check if MutationObserver is available.
|
75852 |
+
var mutationObserverSupported = typeof MutationObserver !== 'undefined';
|
75853 |
+
/**
|
75854 |
+
* Singleton controller class which handles updates of ResizeObserver instances.
|
75855 |
+
*/
|
75856 |
+
var ResizeObserverController = /** @class */ (function () {
|
75857 |
+
/**
|
75858 |
+
* Creates a new instance of ResizeObserverController.
|
75859 |
+
*
|
75860 |
+
* @private
|
75861 |
+
*/
|
75862 |
+
function ResizeObserverController() {
|
75863 |
+
/**
|
75864 |
+
* Indicates whether DOM listeners have been added.
|
75865 |
+
*
|
75866 |
+
* @private {boolean}
|
75867 |
+
*/
|
75868 |
+
this.connected_ = false;
|
75869 |
+
/**
|
75870 |
+
* Tells that controller has subscribed for Mutation Events.
|
75871 |
+
*
|
75872 |
+
* @private {boolean}
|
75873 |
+
*/
|
75874 |
+
this.mutationEventsAdded_ = false;
|
75875 |
+
/**
|
75876 |
+
* Keeps reference to the instance of MutationObserver.
|
75877 |
+
*
|
75878 |
+
* @private {MutationObserver}
|
75879 |
+
*/
|
75880 |
+
this.mutationsObserver_ = null;
|
75881 |
+
/**
|
75882 |
+
* A list of connected observers.
|
75883 |
+
*
|
75884 |
+
* @private {Array<ResizeObserverSPI>}
|
75885 |
+
*/
|
75886 |
+
this.observers_ = [];
|
75887 |
+
this.onTransitionEnd_ = this.onTransitionEnd_.bind(this);
|
75888 |
+
this.refresh = throttle(this.refresh.bind(this), REFRESH_DELAY);
|
75889 |
+
}
|
75890 |
+
/**
|
75891 |
+
* Adds observer to observers list.
|
75892 |
+
*
|
75893 |
+
* @param {ResizeObserverSPI} observer - Observer to be added.
|
75894 |
+
* @returns {void}
|
75895 |
+
*/
|
75896 |
+
ResizeObserverController.prototype.addObserver = function (observer) {
|
75897 |
+
if (!~this.observers_.indexOf(observer)) {
|
75898 |
+
this.observers_.push(observer);
|
75899 |
+
}
|
75900 |
+
// Add listeners if they haven't been added yet.
|
75901 |
+
if (!this.connected_) {
|
75902 |
+
this.connect_();
|
75903 |
+
}
|
75904 |
+
};
|
75905 |
+
/**
|
75906 |
+
* Removes observer from observers list.
|
75907 |
+
*
|
75908 |
+
* @param {ResizeObserverSPI} observer - Observer to be removed.
|
75909 |
+
* @returns {void}
|
75910 |
+
*/
|
75911 |
+
ResizeObserverController.prototype.removeObserver = function (observer) {
|
75912 |
+
var observers = this.observers_;
|
75913 |
+
var index = observers.indexOf(observer);
|
75914 |
+
// Remove observer if it's present in registry.
|
75915 |
+
if (~index) {
|
75916 |
+
observers.splice(index, 1);
|
75917 |
+
}
|
75918 |
+
// Remove listeners if controller has no connected observers.
|
75919 |
+
if (!observers.length && this.connected_) {
|
75920 |
+
this.disconnect_();
|
75921 |
+
}
|
75922 |
+
};
|
75923 |
+
/**
|
75924 |
+
* Invokes the update of observers. It will continue running updates insofar
|
75925 |
+
* it detects changes.
|
75926 |
+
*
|
75927 |
+
* @returns {void}
|
75928 |
+
*/
|
75929 |
+
ResizeObserverController.prototype.refresh = function () {
|
75930 |
+
var changesDetected = this.updateObservers_();
|
75931 |
+
// Continue running updates if changes have been detected as there might
|
75932 |
+
// be future ones caused by CSS transitions.
|
75933 |
+
if (changesDetected) {
|
75934 |
+
this.refresh();
|
75935 |
+
}
|
75936 |
+
};
|
75937 |
+
/**
|
75938 |
+
* Updates every observer from observers list and notifies them of queued
|
75939 |
+
* entries.
|
75940 |
+
*
|
75941 |
+
* @private
|
75942 |
+
* @returns {boolean} Returns "true" if any observer has detected changes in
|
75943 |
+
* dimensions of it's elements.
|
75944 |
+
*/
|
75945 |
+
ResizeObserverController.prototype.updateObservers_ = function () {
|
75946 |
+
// Collect observers that have active observations.
|
75947 |
+
var activeObservers = this.observers_.filter(function (observer) {
|
75948 |
+
return observer.gatherActive(), observer.hasActive();
|
75949 |
+
});
|
75950 |
+
// Deliver notifications in a separate cycle in order to avoid any
|
75951 |
+
// collisions between observers, e.g. when multiple instances of
|
75952 |
+
// ResizeObserver are tracking the same element and the callback of one
|
75953 |
+
// of them changes content dimensions of the observed target. Sometimes
|
75954 |
+
// this may result in notifications being blocked for the rest of observers.
|
75955 |
+
activeObservers.forEach(function (observer) { return observer.broadcastActive(); });
|
75956 |
+
return activeObservers.length > 0;
|
75957 |
+
};
|
75958 |
+
/**
|
75959 |
+
* Initializes DOM listeners.
|
75960 |
+
*
|
75961 |
+
* @private
|
75962 |
+
* @returns {void}
|
75963 |
+
*/
|
75964 |
+
ResizeObserverController.prototype.connect_ = function () {
|
75965 |
+
// Do nothing if running in a non-browser environment or if listeners
|
75966 |
+
// have been already added.
|
75967 |
+
if (!isBrowser || this.connected_) {
|
75968 |
+
return;
|
75969 |
+
}
|
75970 |
+
// Subscription to the "Transitionend" event is used as a workaround for
|
75971 |
+
// delayed transitions. This way it's possible to capture at least the
|
75972 |
+
// final state of an element.
|
75973 |
+
document.addEventListener('transitionend', this.onTransitionEnd_);
|
75974 |
+
window.addEventListener('resize', this.refresh);
|
75975 |
+
if (mutationObserverSupported) {
|
75976 |
+
this.mutationsObserver_ = new MutationObserver(this.refresh);
|
75977 |
+
this.mutationsObserver_.observe(document, {
|
75978 |
+
attributes: true,
|
75979 |
+
childList: true,
|
75980 |
+
characterData: true,
|
75981 |
+
subtree: true
|
75982 |
+
});
|
75983 |
+
}
|
75984 |
+
else {
|
75985 |
+
document.addEventListener('DOMSubtreeModified', this.refresh);
|
75986 |
+
this.mutationEventsAdded_ = true;
|
75987 |
+
}
|
75988 |
+
this.connected_ = true;
|
75989 |
+
};
|
75990 |
+
/**
|
75991 |
+
* Removes DOM listeners.
|
75992 |
+
*
|
75993 |
+
* @private
|
75994 |
+
* @returns {void}
|
75995 |
+
*/
|
75996 |
+
ResizeObserverController.prototype.disconnect_ = function () {
|
75997 |
+
// Do nothing if running in a non-browser environment or if listeners
|
75998 |
+
// have been already removed.
|
75999 |
+
if (!isBrowser || !this.connected_) {
|
76000 |
+
return;
|
76001 |
+
}
|
76002 |
+
document.removeEventListener('transitionend', this.onTransitionEnd_);
|
76003 |
+
window.removeEventListener('resize', this.refresh);
|
76004 |
+
if (this.mutationsObserver_) {
|
76005 |
+
this.mutationsObserver_.disconnect();
|
76006 |
+
}
|
76007 |
+
if (this.mutationEventsAdded_) {
|
76008 |
+
document.removeEventListener('DOMSubtreeModified', this.refresh);
|
76009 |
+
}
|
76010 |
+
this.mutationsObserver_ = null;
|
76011 |
+
this.mutationEventsAdded_ = false;
|
76012 |
+
this.connected_ = false;
|
76013 |
+
};
|
76014 |
+
/**
|
76015 |
+
* "Transitionend" event handler.
|
76016 |
+
*
|
76017 |
+
* @private
|
76018 |
+
* @param {TransitionEvent} event
|
76019 |
+
* @returns {void}
|
76020 |
+
*/
|
76021 |
+
ResizeObserverController.prototype.onTransitionEnd_ = function (_a) {
|
76022 |
+
var _b = _a.propertyName, propertyName = _b === void 0 ? '' : _b;
|
76023 |
+
// Detect whether transition may affect dimensions of an element.
|
76024 |
+
var isReflowProperty = transitionKeys.some(function (key) {
|
76025 |
+
return !!~propertyName.indexOf(key);
|
76026 |
+
});
|
76027 |
+
if (isReflowProperty) {
|
76028 |
+
this.refresh();
|
76029 |
+
}
|
76030 |
+
};
|
76031 |
+
/**
|
76032 |
+
* Returns instance of the ResizeObserverController.
|
76033 |
+
*
|
76034 |
+
* @returns {ResizeObserverController}
|
76035 |
+
*/
|
76036 |
+
ResizeObserverController.getInstance = function () {
|
76037 |
+
if (!this.instance_) {
|
76038 |
+
this.instance_ = new ResizeObserverController();
|
76039 |
+
}
|
76040 |
+
return this.instance_;
|
76041 |
+
};
|
76042 |
+
/**
|
76043 |
+
* Holds reference to the controller's instance.
|
76044 |
+
*
|
76045 |
+
* @private {ResizeObserverController}
|
76046 |
+
*/
|
76047 |
+
ResizeObserverController.instance_ = null;
|
76048 |
+
return ResizeObserverController;
|
76049 |
}());
|
76050 |
|
76051 |
+
/**
|
76052 |
+
* Defines non-writable/enumerable properties of the provided target object.
|
76053 |
+
*
|
76054 |
+
* @param {Object} target - Object for which to define properties.
|
76055 |
+
* @param {Object} props - Properties to be defined.
|
76056 |
+
* @returns {Object} Target object.
|
76057 |
+
*/
|
76058 |
+
var defineConfigurable = (function (target, props) {
|
76059 |
+
for (var _i = 0, _a = Object.keys(props); _i < _a.length; _i++) {
|
76060 |
+
var key = _a[_i];
|
76061 |
+
Object.defineProperty(target, key, {
|
76062 |
+
value: props[key],
|
76063 |
+
enumerable: false,
|
76064 |
+
writable: false,
|
76065 |
+
configurable: true
|
76066 |
+
});
|
76067 |
+
}
|
76068 |
+
return target;
|
76069 |
});
|
76070 |
|
76071 |
+
/**
|
76072 |
+
* Returns the global object associated with provided element.
|
76073 |
+
*
|
76074 |
+
* @param {Object} target
|
76075 |
+
* @returns {Object}
|
76076 |
+
*/
|
76077 |
+
var getWindowOf = (function (target) {
|
76078 |
+
// Assume that the element is an instance of Node, which means that it
|
76079 |
+
// has the "ownerDocument" property from which we can retrieve a
|
76080 |
+
// corresponding global object.
|
76081 |
+
var ownerGlobal = target && target.ownerDocument && target.ownerDocument.defaultView;
|
76082 |
+
// Return the local global object if it's not possible extract one from
|
76083 |
+
// provided element.
|
76084 |
+
return ownerGlobal || global$1;
|
76085 |
});
|
76086 |
|
76087 |
+
// Placeholder of an empty content rectangle.
|
76088 |
+
var emptyRect = createRectInit(0, 0, 0, 0);
|
76089 |
+
/**
|
76090 |
+
* Converts provided string to a number.
|
76091 |
+
*
|
76092 |
+
* @param {number|string} value
|
76093 |
+
* @returns {number}
|
76094 |
+
*/
|
76095 |
+
function toFloat(value) {
|
76096 |
+
return parseFloat(value) || 0;
|
76097 |
+
}
|
76098 |
+
/**
|
76099 |
+
* Extracts borders size from provided styles.
|
76100 |
+
*
|
76101 |
+
* @param {CSSStyleDeclaration} styles
|
76102 |
+
* @param {...string} positions - Borders positions (top, right, ...)
|
76103 |
+
* @returns {number}
|
76104 |
+
*/
|
76105 |
+
function getBordersSize(styles) {
|
76106 |
+
var positions = [];
|
76107 |
+
for (var _i = 1; _i < arguments.length; _i++) {
|
76108 |
+
positions[_i - 1] = arguments[_i];
|
76109 |
+
}
|
76110 |
+
return positions.reduce(function (size, position) {
|
76111 |
+
var value = styles['border-' + position + '-width'];
|
76112 |
+
return size + toFloat(value);
|
76113 |
+
}, 0);
|
76114 |
+
}
|
76115 |
+
/**
|
76116 |
+
* Extracts paddings sizes from provided styles.
|
76117 |
+
*
|
76118 |
+
* @param {CSSStyleDeclaration} styles
|
76119 |
+
* @returns {Object} Paddings box.
|
76120 |
+
*/
|
76121 |
+
function getPaddings(styles) {
|
76122 |
+
var positions = ['top', 'right', 'bottom', 'left'];
|
76123 |
+
var paddings = {};
|
76124 |
+
for (var _i = 0, positions_1 = positions; _i < positions_1.length; _i++) {
|
76125 |
+
var position = positions_1[_i];
|
76126 |
+
var value = styles['padding-' + position];
|
76127 |
+
paddings[position] = toFloat(value);
|
76128 |
+
}
|
76129 |
+
return paddings;
|
76130 |
+
}
|
76131 |
+
/**
|
76132 |
+
* Calculates content rectangle of provided SVG element.
|
76133 |
+
*
|
76134 |
+
* @param {SVGGraphicsElement} target - Element content rectangle of which needs
|
76135 |
+
* to be calculated.
|
76136 |
+
* @returns {DOMRectInit}
|
76137 |
+
*/
|
76138 |
+
function getSVGContentRect(target) {
|
76139 |
+
var bbox = target.getBBox();
|
76140 |
+
return createRectInit(0, 0, bbox.width, bbox.height);
|
76141 |
+
}
|
76142 |
+
/**
|
76143 |
+
* Calculates content rectangle of provided HTMLElement.
|
76144 |
+
*
|
76145 |
+
* @param {HTMLElement} target - Element for which to calculate the content rectangle.
|
76146 |
+
* @returns {DOMRectInit}
|
76147 |
+
*/
|
76148 |
+
function getHTMLElementContentRect(target) {
|
76149 |
+
// Client width & height properties can't be
|
76150 |
+
// used exclusively as they provide rounded values.
|
76151 |
+
var clientWidth = target.clientWidth, clientHeight = target.clientHeight;
|
76152 |
+
// By this condition we can catch all non-replaced inline, hidden and
|
76153 |
+
// detached elements. Though elements with width & height properties less
|
76154 |
+
// than 0.5 will be discarded as well.
|
76155 |
+
//
|
76156 |
+
// Without it we would need to implement separate methods for each of
|
76157 |
+
// those cases and it's not possible to perform a precise and performance
|
76158 |
+
// effective test for hidden elements. E.g. even jQuery's ':visible' filter
|
76159 |
+
// gives wrong results for elements with width & height less than 0.5.
|
76160 |
+
if (!clientWidth && !clientHeight) {
|
76161 |
+
return emptyRect;
|
76162 |
+
}
|
76163 |
+
var styles = getWindowOf(target).getComputedStyle(target);
|
76164 |
+
var paddings = getPaddings(styles);
|
76165 |
+
var horizPad = paddings.left + paddings.right;
|
76166 |
+
var vertPad = paddings.top + paddings.bottom;
|
76167 |
+
// Computed styles of width & height are being used because they are the
|
76168 |
+
// only dimensions available to JS that contain non-rounded values. It could
|
76169 |
+
// be possible to utilize the getBoundingClientRect if only it's data wasn't
|
76170 |
+
// affected by CSS transformations let alone paddings, borders and scroll bars.
|
76171 |
+
var width = toFloat(styles.width), height = toFloat(styles.height);
|
76172 |
+
// Width & height include paddings and borders when the 'border-box' box
|
76173 |
+
// model is applied (except for IE).
|
76174 |
+
if (styles.boxSizing === 'border-box') {
|
76175 |
+
// Following conditions are required to handle Internet Explorer which
|
76176 |
+
// doesn't include paddings and borders to computed CSS dimensions.
|
76177 |
+
//
|
76178 |
+
// We can say that if CSS dimensions + paddings are equal to the "client"
|
76179 |
+
// properties then it's either IE, and thus we don't need to subtract
|
76180 |
+
// anything, or an element merely doesn't have paddings/borders styles.
|
76181 |
+
if (Math.round(width + horizPad) !== clientWidth) {
|
76182 |
+
width -= getBordersSize(styles, 'left', 'right') + horizPad;
|
76183 |
+
}
|
76184 |
+
if (Math.round(height + vertPad) !== clientHeight) {
|
76185 |
+
height -= getBordersSize(styles, 'top', 'bottom') + vertPad;
|
76186 |
+
}
|
76187 |
+
}
|
76188 |
+
// Following steps can't be applied to the document's root element as its
|
76189 |
+
// client[Width/Height] properties represent viewport area of the window.
|
76190 |
+
// Besides, it's as well not necessary as the <html> itself neither has
|
76191 |
+
// rendered scroll bars nor it can be clipped.
|
76192 |
+
if (!isDocumentElement(target)) {
|
76193 |
+
// In some browsers (only in Firefox, actually) CSS width & height
|
76194 |
+
// include scroll bars size which can be removed at this step as scroll
|
76195 |
+
// bars are the only difference between rounded dimensions + paddings
|
76196 |
+
// and "client" properties, though that is not always true in Chrome.
|
76197 |
+
var vertScrollbar = Math.round(width + horizPad) - clientWidth;
|
76198 |
+
var horizScrollbar = Math.round(height + vertPad) - clientHeight;
|
76199 |
+
// Chrome has a rather weird rounding of "client" properties.
|
76200 |
+
// E.g. for an element with content width of 314.2px it sometimes gives
|
76201 |
+
// the client width of 315px and for the width of 314.7px it may give
|
76202 |
+
// 314px. And it doesn't happen all the time. So just ignore this delta
|
76203 |
+
// as a non-relevant.
|
76204 |
+
if (Math.abs(vertScrollbar) !== 1) {
|
76205 |
+
width -= vertScrollbar;
|
76206 |
+
}
|
76207 |
+
if (Math.abs(horizScrollbar) !== 1) {
|
76208 |
+
height -= horizScrollbar;
|
76209 |
+
}
|
76210 |
+
}
|
76211 |
+
return createRectInit(paddings.left, paddings.top, width, height);
|
76212 |
+
}
|
76213 |
+
/**
|
76214 |
+
* Checks whether provided element is an instance of the SVGGraphicsElement.
|
76215 |
+
*
|
76216 |
+
* @param {Element} target - Element to be checked.
|
76217 |
+
* @returns {boolean}
|
76218 |
+
*/
|
76219 |
+
var isSVGGraphicsElement = (function () {
|
76220 |
+
// Some browsers, namely IE and Edge, don't have the SVGGraphicsElement
|
76221 |
+
// interface.
|
76222 |
+
if (typeof SVGGraphicsElement !== 'undefined') {
|
76223 |
+
return function (target) { return target instanceof getWindowOf(target).SVGGraphicsElement; };
|
76224 |
+
}
|
76225 |
+
// If it's so, then check that element is at least an instance of the
|
76226 |
+
// SVGElement and that it has the "getBBox" method.
|
76227 |
+
// eslint-disable-next-line no-extra-parens
|
76228 |
+
return function (target) { return (target instanceof getWindowOf(target).SVGElement &&
|
76229 |
+
typeof target.getBBox === 'function'); };
|
76230 |
+
})();
|
76231 |
+
/**
|
76232 |
+
* Checks whether provided element is a document element (<html>).
|
76233 |
+
*
|
76234 |
+
* @param {Element} target - Element to be checked.
|
76235 |
+
* @returns {boolean}
|
76236 |
+
*/
|
76237 |
+
function isDocumentElement(target) {
|
76238 |
+
return target === getWindowOf(target).document.documentElement;
|
76239 |
+
}
|
76240 |
+
/**
|
76241 |
+
* Calculates an appropriate content rectangle for provided html or svg element.
|
76242 |
+
*
|
76243 |
+
* @param {Element} target - Element content rectangle of which needs to be calculated.
|
76244 |
+
* @returns {DOMRectInit}
|
76245 |
+
*/
|
76246 |
+
function getContentRect(target) {
|
76247 |
+
if (!isBrowser) {
|
76248 |
+
return emptyRect;
|
76249 |
+
}
|
76250 |
+
if (isSVGGraphicsElement(target)) {
|
76251 |
+
return getSVGContentRect(target);
|
76252 |
+
}
|
76253 |
+
return getHTMLElementContentRect(target);
|
76254 |
+
}
|
76255 |
+
/**
|
76256 |
+
* Creates rectangle with an interface of the DOMRectReadOnly.
|
76257 |
+
* Spec: https://drafts.fxtf.org/geometry/#domrectreadonly
|
76258 |
+
*
|
76259 |
+
* @param {DOMRectInit} rectInit - Object with rectangle's x/y coordinates and dimensions.
|
76260 |
+
* @returns {DOMRectReadOnly}
|
76261 |
+
*/
|
76262 |
+
function createReadOnlyRect(_a) {
|
76263 |
+
var x = _a.x, y = _a.y, width = _a.width, height = _a.height;
|
76264 |
+
// If DOMRectReadOnly is available use it as a prototype for the rectangle.
|
76265 |
+
var Constr = typeof DOMRectReadOnly !== 'undefined' ? DOMRectReadOnly : Object;
|
76266 |
+
var rect = Object.create(Constr.prototype);
|
76267 |
+
// Rectangle's properties are not writable and non-enumerable.
|
76268 |
+
defineConfigurable(rect, {
|
76269 |
+
x: x, y: y, width: width, height: height,
|
76270 |
+
top: y,
|
76271 |
+
right: x + width,
|
76272 |
+
bottom: height + y,
|
76273 |
+
left: x
|
76274 |
+
});
|
76275 |
+
return rect;
|
76276 |
+
}
|
76277 |
+
/**
|
76278 |
+
* Creates DOMRectInit object based on the provided dimensions and the x/y coordinates.
|
76279 |
+
* Spec: https://drafts.fxtf.org/geometry/#dictdef-domrectinit
|
76280 |
+
*
|
76281 |
+
* @param {number} x - X coordinate.
|
76282 |
+
* @param {number} y - Y coordinate.
|
76283 |
+
* @param {number} width - Rectangle's width.
|
76284 |
+
* @param {number} height - Rectangle's height.
|
76285 |
+
* @returns {DOMRectInit}
|
76286 |
+
*/
|
76287 |
+
function createRectInit(x, y, width, height) {
|
76288 |
+
return { x: x, y: y, width: width, height: height };
|
76289 |
+
}
|
76290 |
+
|
76291 |
+
/**
|
76292 |
+
* Class that is responsible for computations of the content rectangle of
|
76293 |
+
* provided DOM element and for keeping track of it's changes.
|
76294 |
+
*/
|
76295 |
+
var ResizeObservation = /** @class */ (function () {
|
76296 |
+
/**
|
76297 |
+
* Creates an instance of ResizeObservation.
|
76298 |
+
*
|
76299 |
+
* @param {Element} target - Element to be observed.
|
76300 |
+
*/
|
76301 |
+
function ResizeObservation(target) {
|
76302 |
+
/**
|
76303 |
+
* Broadcasted width of content rectangle.
|
76304 |
+
*
|
76305 |
+
* @type {number}
|
76306 |
+
*/
|
76307 |
+
this.broadcastWidth = 0;
|
76308 |
+
/**
|
76309 |
+
* Broadcasted height of content rectangle.
|
76310 |
+
*
|
76311 |
+
* @type {number}
|
76312 |
+
*/
|
76313 |
+
this.broadcastHeight = 0;
|
76314 |
+
/**
|
76315 |
+
* Reference to the last observed content rectangle.
|
76316 |
+
*
|
76317 |
+
* @private {DOMRectInit}
|
76318 |
+
*/
|
76319 |
+
this.contentRect_ = createRectInit(0, 0, 0, 0);
|
76320 |
+
this.target = target;
|
76321 |
+
}
|
76322 |
+
/**
|
76323 |
+
* Updates content rectangle and tells whether it's width or height properties
|
76324 |
+
* have changed since the last broadcast.
|
76325 |
+
*
|
76326 |
+
* @returns {boolean}
|
76327 |
+
*/
|
76328 |
+
ResizeObservation.prototype.isActive = function () {
|
76329 |
+
var rect = getContentRect(this.target);
|
76330 |
+
this.contentRect_ = rect;
|
76331 |
+
return (rect.width !== this.broadcastWidth ||
|
76332 |
+
rect.height !== this.broadcastHeight);
|
76333 |
+
};
|
76334 |
+
/**
|
76335 |
+
* Updates 'broadcastWidth' and 'broadcastHeight' properties with a data
|
76336 |
+
* from the corresponding properties of the last observed content rectangle.
|
76337 |
+
*
|
76338 |
+
* @returns {DOMRectInit} Last observed content rectangle.
|
76339 |
+
*/
|
76340 |
+
ResizeObservation.prototype.broadcastRect = function () {
|
76341 |
+
var rect = this.contentRect_;
|
76342 |
+
this.broadcastWidth = rect.width;
|
76343 |
+
this.broadcastHeight = rect.height;
|
76344 |
+
return rect;
|
76345 |
+
};
|
76346 |
+
return ResizeObservation;
|
76347 |
}());
|
76348 |
|
76349 |
+
var ResizeObserverEntry = /** @class */ (function () {
|
76350 |
+
/**
|
76351 |
+
* Creates an instance of ResizeObserverEntry.
|
76352 |
+
*
|
76353 |
+
* @param {Element} target - Element that is being observed.
|
76354 |
+
* @param {DOMRectInit} rectInit - Data of the element's content rectangle.
|
76355 |
+
*/
|
76356 |
+
function ResizeObserverEntry(target, rectInit) {
|
76357 |
+
var contentRect = createReadOnlyRect(rectInit);
|
76358 |
+
// According to the specification following properties are not writable
|
76359 |
+
// and are also not enumerable in the native implementation.
|
76360 |
+
//
|
76361 |
+
// Property accessors are not being used as they'd require to define a
|
76362 |
+
// private WeakMap storage which may cause memory leaks in browsers that
|
76363 |
+
// don't support this type of collections.
|
76364 |
+
defineConfigurable(this, { target: target, contentRect: contentRect });
|
76365 |
+
}
|
76366 |
+
return ResizeObserverEntry;
|
76367 |
}());
|
76368 |
|
76369 |
+
var ResizeObserverSPI = /** @class */ (function () {
|
76370 |
+
/**
|
76371 |
+
* Creates a new instance of ResizeObserver.
|
76372 |
+
*
|
76373 |
+
* @param {ResizeObserverCallback} callback - Callback function that is invoked
|
76374 |
+
* when one of the observed elements changes it's content dimensions.
|
76375 |
+
* @param {ResizeObserverController} controller - Controller instance which
|
76376 |
+
* is responsible for the updates of observer.
|
76377 |
+
* @param {ResizeObserver} callbackCtx - Reference to the public
|
76378 |
+
* ResizeObserver instance which will be passed to callback function.
|
76379 |
+
*/
|
76380 |
+
function ResizeObserverSPI(callback, controller, callbackCtx) {
|
76381 |
+
/**
|
76382 |
+
* Collection of resize observations that have detected changes in dimensions
|
76383 |
+
* of elements.
|
76384 |
+
*
|
76385 |
+
* @private {Array<ResizeObservation>}
|
76386 |
+
*/
|
76387 |
+
this.activeObservations_ = [];
|
76388 |
+
/**
|
76389 |
+
* Registry of the ResizeObservation instances.
|
76390 |
+
*
|
76391 |
+
* @private {Map<Element, ResizeObservation>}
|
76392 |
+
*/
|
76393 |
+
this.observations_ = new MapShim();
|
76394 |
+
if (typeof callback !== 'function') {
|
76395 |
+
throw new TypeError('The callback provided as parameter 1 is not a function.');
|
76396 |
+
}
|
76397 |
+
this.callback_ = callback;
|
76398 |
+
this.controller_ = controller;
|
76399 |
+
this.callbackCtx_ = callbackCtx;
|
76400 |
+
}
|
76401 |
+
/**
|
76402 |
+
* Starts observing provided element.
|
76403 |
+
*
|
76404 |
+
* @param {Element} target - Element to be observed.
|
76405 |
+
* @returns {void}
|
76406 |
+
*/
|
76407 |
+
ResizeObserverSPI.prototype.observe = function (target) {
|
76408 |
+
if (!arguments.length) {
|
76409 |
+
throw new TypeError('1 argument required, but only 0 present.');
|
76410 |
+
}
|
76411 |
+
// Do nothing if current environment doesn't have the Element interface.
|
76412 |
+
if (typeof Element === 'undefined' || !(Element instanceof Object)) {
|
76413 |
+
return;
|
76414 |
+
}
|
76415 |
+
if (!(target instanceof getWindowOf(target).Element)) {
|
76416 |
+
throw new TypeError('parameter 1 is not of type "Element".');
|
76417 |
+
}
|
76418 |
+
var observations = this.observations_;
|
76419 |
+
// Do nothing if element is already being observed.
|
76420 |
+
if (observations.has(target)) {
|
76421 |
+
return;
|
76422 |
+
}
|
76423 |
+
observations.set(target, new ResizeObservation(target));
|
76424 |
+
this.controller_.addObserver(this);
|
76425 |
+
// Force the update of observations.
|
76426 |
+
this.controller_.refresh();
|
76427 |
+
};
|
76428 |
+
/**
|
76429 |
+
* Stops observing provided element.
|
76430 |
+
*
|
76431 |
+
* @param {Element} target - Element to stop observing.
|
76432 |
+
* @returns {void}
|
76433 |
+
*/
|
76434 |
+
ResizeObserverSPI.prototype.unobserve = function (target) {
|
76435 |
+
if (!arguments.length) {
|
76436 |
+
throw new TypeError('1 argument required, but only 0 present.');
|
76437 |
+
}
|
76438 |
+
// Do nothing if current environment doesn't have the Element interface.
|
76439 |
+
if (typeof Element === 'undefined' || !(Element instanceof Object)) {
|
76440 |
+
return;
|
76441 |
+
}
|
76442 |
+
if (!(target instanceof getWindowOf(target).Element)) {
|
76443 |
+
throw new TypeError('parameter 1 is not of type "Element".');
|
76444 |
+
}
|
76445 |
+
var observations = this.observations_;
|
76446 |
+
// Do nothing if element is not being observed.
|
76447 |
+
if (!observations.has(target)) {
|
76448 |
+
return;
|
76449 |
+
}
|
76450 |
+
observations.delete(target);
|
76451 |
+
if (!observations.size) {
|
76452 |
+
this.controller_.removeObserver(this);
|
76453 |
+
}
|
76454 |
+
};
|
76455 |
+
/**
|
76456 |
+
* Stops observing all elements.
|
76457 |
+
*
|
76458 |
+
* @returns {void}
|
76459 |
+
*/
|
76460 |
+
ResizeObserverSPI.prototype.disconnect = function () {
|
76461 |
+
this.clearActive();
|
76462 |
+
this.observations_.clear();
|
76463 |
+
this.controller_.removeObserver(this);
|
76464 |
+
};
|
76465 |
+
/**
|
76466 |
+
* Collects observation instances the associated element of which has changed
|
76467 |
+
* it's content rectangle.
|
76468 |
+
*
|
76469 |
+
* @returns {void}
|
76470 |
+
*/
|
76471 |
+
ResizeObserverSPI.prototype.gatherActive = function () {
|
76472 |
+
var _this = this;
|
76473 |
+
this.clearActive();
|
76474 |
+
this.observations_.forEach(function (observation) {
|
76475 |
+
if (observation.isActive()) {
|
76476 |
+
_this.activeObservations_.push(observation);
|
76477 |
+
}
|
76478 |
+
});
|
76479 |
+
};
|
76480 |
+
/**
|
76481 |
+
* Invokes initial callback function with a list of ResizeObserverEntry
|
76482 |
+
* instances collected from active resize observations.
|
76483 |
+
*
|
76484 |
+
* @returns {void}
|
76485 |
+
*/
|
76486 |
+
ResizeObserverSPI.prototype.broadcastActive = function () {
|
76487 |
+
// Do nothing if observer doesn't have active observations.
|
76488 |
+
if (!this.hasActive()) {
|
76489 |
+
return;
|
76490 |
+
}
|
76491 |
+
var ctx = this.callbackCtx_;
|
76492 |
+
// Create ResizeObserverEntry instance for every active observation.
|
76493 |
+
var entries = this.activeObservations_.map(function (observation) {
|
76494 |
+
return new ResizeObserverEntry(observation.target, observation.broadcastRect());
|
76495 |
+
});
|
76496 |
+
this.callback_.call(ctx, entries, ctx);
|
76497 |
+
this.clearActive();
|
76498 |
+
};
|
76499 |
+
/**
|
76500 |
+
* Clears the collection of active observations.
|
76501 |
+
*
|
76502 |
+
* @returns {void}
|
76503 |
+
*/
|
76504 |
+
ResizeObserverSPI.prototype.clearActive = function () {
|
76505 |
+
this.activeObservations_.splice(0);
|
76506 |
+
};
|
76507 |
+
/**
|
76508 |
+
* Tells whether observer has active observations.
|
76509 |
+
*
|
76510 |
+
* @returns {boolean}
|
76511 |
+
*/
|
76512 |
+
ResizeObserverSPI.prototype.hasActive = function () {
|
76513 |
+
return this.activeObservations_.length > 0;
|
76514 |
+
};
|
76515 |
+
return ResizeObserverSPI;
|
76516 |
}());
|
76517 |
|
76518 |
+
// Registry of internal observers. If WeakMap is not available use current shim
|
76519 |
+
// for the Map collection as it has all required methods and because WeakMap
|
76520 |
+
// can't be fully polyfilled anyway.
|
76521 |
+
var observers = typeof WeakMap !== 'undefined' ? new WeakMap() : new MapShim();
|
76522 |
+
/**
|
76523 |
+
* ResizeObserver API. Encapsulates the ResizeObserver SPI implementation
|
76524 |
+
* exposing only those methods and properties that are defined in the spec.
|
76525 |
+
*/
|
76526 |
+
var ResizeObserver = /** @class */ (function () {
|
76527 |
+
/**
|
76528 |
+
* Creates a new instance of ResizeObserver.
|
76529 |
+
*
|
76530 |
+
* @param {ResizeObserverCallback} callback - Callback that is invoked when
|
76531 |
+
* dimensions of the observed elements change.
|
76532 |
+
*/
|
76533 |
+
function ResizeObserver(callback) {
|
76534 |
+
if (!(this instanceof ResizeObserver)) {
|
76535 |
+
throw new TypeError('Cannot call a class as a function.');
|
76536 |
+
}
|
76537 |
+
if (!arguments.length) {
|
76538 |
+
throw new TypeError('1 argument required, but only 0 present.');
|
76539 |
+
}
|
76540 |
+
var controller = ResizeObserverController.getInstance();
|
76541 |
+
var observer = new ResizeObserverSPI(callback, controller, this);
|
76542 |
+
observers.set(this, observer);
|
76543 |
+
}
|
76544 |
+
return ResizeObserver;
|
76545 |
+
}());
|
76546 |
+
// Expose public methods of ResizeObserver.
|
76547 |
+
[
|
76548 |
+
'observe',
|
76549 |
+
'unobserve',
|
76550 |
+
'disconnect'
|
76551 |
+
].forEach(function (method) {
|
76552 |
+
ResizeObserver.prototype[method] = function () {
|
76553 |
+
var _a;
|
76554 |
+
return (_a = observers.get(this))[method].apply(_a, arguments);
|
76555 |
+
};
|
76556 |
});
|
76557 |
|
76558 |
+
var index = (function () {
|
76559 |
+
// Export existing implementation if available.
|
76560 |
+
if (typeof global$1.ResizeObserver !== 'undefined') {
|
76561 |
+
return global$1.ResizeObserver;
|
76562 |
+
}
|
76563 |
+
return ResizeObserver;
|
76564 |
})();
|
76565 |
|
76566 |
/* harmony default export */ __webpack_exports__["default"] = (index);
|
76568 |
/* WEBPACK VAR INJECTION */}.call(__webpack_exports__, __webpack_require__(/*! ./../../webpack/buildin/global.js */ 52)))
|
76569 |
|
76570 |
/***/ }),
|
76571 |
+
/* 381 */
|
76572 |
/*!***************************************!*\
|
76573 |
!*** ./node_modules/json2mq/index.js ***!
|
76574 |
\***************************************/
|
76576 |
/*! all exports used */
|
76577 |
/***/ (function(module, exports, __webpack_require__) {
|
76578 |
|
76579 |
+
var camel2hyphen = __webpack_require__(/*! string-convert/camel2hyphen */ 382);
|
76580 |
|
76581 |
var isDimension = function (feature) {
|
76582 |
var re = /[height|width]$/;
|
76629 |
module.exports = json2mq;
|
76630 |
|
76631 |
/***/ }),
|
76632 |
+
/* 382 */
|
76633 |
/*!*****************************************************!*\
|
76634 |
!*** ./node_modules/string-convert/camel2hyphen.js ***!
|
76635 |
\*****************************************************/
|
76648 |
module.exports = camel2hyphen;
|
76649 |
|
76650 |
/***/ }),
|
76651 |
+
/* 383 */
|
76652 |
/*!*******************************************************!*\
|
76653 |
!*** ./node_modules/react-slick/lib/default-props.js ***!
|
76654 |
\*******************************************************/
|
76735 |
exports.default = defaultProps;
|
76736 |
|
76737 |
/***/ }),
|
76738 |
+
/* 384 */
|
76739 |
/*!**********************************************!*\
|
76740 |
!*** ./node_modules/enquire.js/src/index.js ***!
|
76741 |
\**********************************************/
|
76743 |
/*! all exports used */
|
76744 |
/***/ (function(module, exports, __webpack_require__) {
|
76745 |
|
76746 |
+
var MediaQueryDispatch = __webpack_require__(/*! ./MediaQueryDispatch */ 385);
|
76747 |
module.exports = new MediaQueryDispatch();
|
76748 |
|
76749 |
|
76750 |
/***/ }),
|
76751 |
+
/* 385 */
|
76752 |
/*!***********************************************************!*\
|
76753 |
!*** ./node_modules/enquire.js/src/MediaQueryDispatch.js ***!
|
76754 |
\***********************************************************/
|
76756 |
/*! all exports used */
|
76757 |
/***/ (function(module, exports, __webpack_require__) {
|
76758 |
|
76759 |
+
var MediaQuery = __webpack_require__(/*! ./MediaQuery */ 386);
|
76760 |
+
var Util = __webpack_require__(/*! ./Util */ 153);
|
76761 |
var each = Util.each;
|
76762 |
var isFunction = Util.isFunction;
|
76763 |
var isArray = Util.isArray;
|
76844 |
|
76845 |
|
76846 |
/***/ }),
|
76847 |
+
/* 386 */
|
76848 |
/*!***************************************************!*\
|
76849 |
!*** ./node_modules/enquire.js/src/MediaQuery.js ***!
|
76850 |
\***************************************************/
|
76852 |
/*! all exports used */
|
76853 |
/***/ (function(module, exports, __webpack_require__) {
|
76854 |
|
76855 |
+
var QueryHandler = __webpack_require__(/*! ./QueryHandler */ 387);
|
76856 |
+
var each = __webpack_require__(/*! ./Util */ 153).each;
|
76857 |
|
76858 |
/**
|
76859 |
* Represents a single media query, manages it's state and registered handlers for this query
|
76948 |
|
76949 |
|
76950 |
/***/ }),
|
76951 |
+
/* 387 */
|
76952 |
/*!*****************************************************!*\
|
76953 |
!*** ./node_modules/enquire.js/src/QueryHandler.js ***!
|
76954 |
\*****************************************************/
|
77033 |
|
77034 |
|
77035 |
/***/ }),
|
77036 |
+
/* 388 */
|
77037 |
/*!*************************************!*\
|
77038 |
!*** ./src/blocks/section/block.js ***!
|
77039 |
\*************************************/
|
77044 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
77045 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
77046 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
77047 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */ 389);
|
77048 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
77049 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 390);
|
77050 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__editor_scss__);
|
77051 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 154);
|
77052 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__edit__ = __webpack_require__(/*! ./edit */ 391);
|
77053 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__save__ = __webpack_require__(/*! ./save */ 393);
|
77054 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__deprecated__ = __webpack_require__(/*! ./deprecated */ 394);
|
77055 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 155);
|
77056 |
/**
|
77057 |
* BLOCK: Section
|
77058 |
*/
|
77098 |
});
|
77099 |
|
77100 |
/***/ }),
|
77101 |
+
/* 389 */
|
77102 |
/*!***************************************!*\
|
77103 |
!*** ./src/blocks/section/style.scss ***!
|
77104 |
\***************************************/
|
77108 |
// removed by extract-text-webpack-plugin
|
77109 |
|
77110 |
/***/ }),
|
77111 |
+
/* 390 */
|
77112 |
/*!****************************************!*\
|
77113 |
!*** ./src/blocks/section/editor.scss ***!
|
77114 |
\****************************************/
|
77118 |
// removed by extract-text-webpack-plugin
|
77119 |
|
77120 |
/***/ }),
|
77121 |
+
/* 391 */
|
77122 |
/*!************************************!*\
|
77123 |
!*** ./src/blocks/section/edit.js ***!
|
77124 |
\************************************/
|
77129 |
"use strict";
|
77130 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
77131 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
77132 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 392);
|
77133 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
77134 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 81);
|
77135 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 82);
|
77136 |
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; }; }();
|
77137 |
|
77138 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
77151 |
|
77152 |
|
77153 |
|
77154 |
+
|
77155 |
var __ = wp.i18n.__;
|
77156 |
var _wp$element = wp.element,
|
77157 |
Component = _wp$element.Component,
|
77362 |
boxShadowVOffset = attributes.boxShadowVOffset,
|
77363 |
boxShadowBlur = attributes.boxShadowBlur,
|
77364 |
boxShadowSpread = attributes.boxShadowSpread,
|
77365 |
+
boxShadowPosition = attributes.boxShadowPosition,
|
77366 |
+
gradientValue = attributes.gradientValue;
|
77367 |
|
77368 |
|
77369 |
var CustomTag = "" + tag;
|
78171 |
"gradient" == backgroundType && wp.element.createElement(
|
78172 |
Fragment,
|
78173 |
null,
|
78174 |
+
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_4__components_gradient_settings__["a" /* default */], { attributes: attributes, setAttributes: setAttributes })
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78175 |
),
|
78176 |
"video" == backgroundType && wp.element.createElement(
|
78177 |
BaseControl,
|
78339 |
/* harmony default export */ __webpack_exports__["a"] = (withNotices(UAGBSectionEdit));
|
78340 |
|
78341 |
/***/ }),
|
78342 |
+
/* 392 */
|
78343 |
/*!***************************************!*\
|
78344 |
!*** ./src/blocks/section/styling.js ***!
|
78345 |
\***************************************/
|
78348 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
78349 |
|
78350 |
"use strict";
|
78351 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 155);
|
78352 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
|
78353 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
|
78354 |
/**
|
78413 |
boxShadowVOffset = _props$attributes.boxShadowVOffset,
|
78414 |
boxShadowBlur = _props$attributes.boxShadowBlur,
|
78415 |
boxShadowSpread = _props$attributes.boxShadowSpread,
|
78416 |
+
boxShadowPosition = _props$attributes.boxShadowPosition,
|
78417 |
+
gradientValue = _props$attributes.gradientValue;
|
78418 |
|
78419 |
|
78420 |
var inner_width = "100%";
|
78481 |
selectors[" > .uagb-section__overlay"]["background-color"] = "transparent";
|
78482 |
selectors[" > .uagb-section__overlay"]["opacity"] = typeof backgroundOpacity != "undefined" ? backgroundOpacity / 100 : "";
|
78483 |
|
78484 |
+
if (gradientValue) {
|
78485 |
+
selectors[" > .uagb-section__overlay"]["background-image"] = gradientValue;
|
|
|
78486 |
} else {
|
78487 |
+
if ("linear" === gradientType) {
|
78488 |
|
78489 |
+
selectors[" > .uagb-section__overlay"]["background-image"] = "linear-gradient(" + gradientAngle + "deg, " + gradientColor1 + " " + gradientLocation1 + "%, " + gradientColor2 + " " + gradientLocation2 + "%)";
|
78490 |
+
} else {
|
78491 |
+
|
78492 |
+
selectors[" > .uagb-section__overlay"]["background-image"] = "radial-gradient( at " + gradientPosition + ", " + gradientColor1 + " " + gradientLocation1 + "%, " + gradientColor2 + " " + gradientLocation2 + "%)";
|
78493 |
+
}
|
78494 |
}
|
78495 |
}
|
78496 |
|
78553 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
78554 |
|
78555 |
/***/ }),
|
78556 |
+
/* 393 */
|
78557 |
/*!************************************!*\
|
78558 |
!*** ./src/blocks/section/save.js ***!
|
78559 |
\************************************/
|
78623 |
}
|
78624 |
|
78625 |
/***/ }),
|
78626 |
+
/* 394 */
|
78627 |
/*!******************************************!*\
|
78628 |
!*** ./src/blocks/section/deprecated.js ***!
|
78629 |
\******************************************/
|
78634 |
"use strict";
|
78635 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
78636 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
78637 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 154);
|
78638 |
/**
|
78639 |
* BLOCK: Price List - Deprecated Block
|
78640 |
*/
|
78743 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
78744 |
|
78745 |
/***/ }),
|
78746 |
+
/* 395 */
|
78747 |
/*!*************************************!*\
|
78748 |
!*** ./src/blocks/buttons/block.js ***!
|
78749 |
\*************************************/
|
78752 |
|
78753 |
"use strict";
|
78754 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
78755 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 156);
|
78756 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 396);
|
78757 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 399);
|
78758 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 400);
|
78759 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 401);
|
78760 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
78761 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 402);
|
78762 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
78763 |
/**
|
78764 |
* BLOCK: Multi Buttons
|
78797 |
});
|
78798 |
|
78799 |
/***/ }),
|
78800 |
+
/* 396 */
|
78801 |
/*!************************************!*\
|
78802 |
!*** ./src/blocks/buttons/edit.js ***!
|
78803 |
\************************************/
|
78810 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
78811 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
78812 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
78813 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 398);
|
78814 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
|
78815 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
78816 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
79033 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBMultiButtonEdit);
|
79034 |
|
79035 |
/***/ }),
|
79036 |
+
/* 397 */
|
79037 |
/*!**********************************************!*\
|
79038 |
!*** ./node_modules/lodash/_castFunction.js ***!
|
79039 |
\**********************************************/
|
79058 |
|
79059 |
|
79060 |
/***/ }),
|
79061 |
+
/* 398 */
|
79062 |
/*!***************************************!*\
|
79063 |
!*** ./src/blocks/buttons/styling.js ***!
|
79064 |
\***************************************/
|
79089 |
var tablet_selectors = {};
|
79090 |
var mobile_selectors = {};
|
79091 |
|
79092 |
+
selectors[" .uagb-buttons-repeater:not(.wp-block-button__link)"] = {
|
79093 |
"font-family": fontFamily,
|
79094 |
"font-weight": fontWeight
|
79095 |
};
|
79158 |
}
|
79159 |
} else {
|
79160 |
selectors[" .uagb-button__wrapper"]["justify-content"] = "center";
|
79161 |
+
selectors[" .uagb-buttons-repeater"]["width"] = "100%";
|
79162 |
selectors[" .wp-block[data-type='uagb/buttons-child']:first-child .uagb-button__wrapper"] = {
|
79163 |
"margin-left": 0
|
79164 |
};
|
79180 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
79181 |
|
79182 |
/***/ }),
|
79183 |
+
/* 399 */
|
79184 |
/*!******************************************!*\
|
79185 |
!*** ./src/blocks/buttons/deprecated.js ***!
|
79186 |
\******************************************/
|
79193 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
79194 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
79195 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
79196 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 156);
|
79197 |
/**
|
79198 |
* BLOCK: Buttons - Deprecated Block
|
79199 |
*/
|
79358 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
79359 |
|
79360 |
/***/ }),
|
79361 |
+
/* 400 */
|
79362 |
/*!************************************!*\
|
79363 |
!*** ./src/blocks/buttons/save.js ***!
|
79364 |
\************************************/
|
79404 |
}
|
79405 |
|
79406 |
/***/ }),
|
79407 |
+
/* 401 */
|
79408 |
/*!***************************************!*\
|
79409 |
!*** ./src/blocks/buttons/style.scss ***!
|
79410 |
\***************************************/
|
79414 |
// removed by extract-text-webpack-plugin
|
79415 |
|
79416 |
/***/ }),
|
79417 |
+
/* 402 */
|
79418 |
/*!****************************************!*\
|
79419 |
!*** ./src/blocks/buttons/editor.scss ***!
|
79420 |
\****************************************/
|
79424 |
// removed by extract-text-webpack-plugin
|
79425 |
|
79426 |
/***/ }),
|
79427 |
+
/* 403 */
|
79428 |
/*!*******************************************!*\
|
79429 |
!*** ./src/blocks/buttons-child/block.js ***!
|
79430 |
\*******************************************/
|
79433 |
|
79434 |
"use strict";
|
79435 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
79436 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 157);
|
79437 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */ 404);
|
79438 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 405);
|
79439 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 416);
|
79440 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 417);
|
79441 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
79442 |
/**
|
79443 |
* BLOCK: Buttons - Child
|
79466 |
});
|
79467 |
|
79468 |
/***/ }),
|
79469 |
+
/* 404 */
|
79470 |
/*!************************************************!*\
|
79471 |
!*** ./src/blocks/buttons-child/deprecated.js ***!
|
79472 |
\************************************************/
|
79477 |
"use strict";
|
79478 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
79479 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
79480 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 157);
|
79481 |
/**
|
79482 |
* BLOCK: Button Child - Deprecated Block
|
79483 |
*/
|
79529 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
79530 |
|
79531 |
/***/ }),
|
79532 |
+
/* 405 */
|
79533 |
/*!******************************************!*\
|
79534 |
!*** ./src/blocks/buttons-child/edit.js ***!
|
79535 |
\******************************************/
|
79540 |
"use strict";
|
79541 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
79542 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
79543 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 406);
|
79544 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
79545 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
79546 |
/* 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__);
|
80398 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBButtonsChild);
|
80399 |
|
80400 |
/***/ }),
|
80401 |
+
/* 406 */
|
80402 |
/*!*********************************************!*\
|
80403 |
!*** ./src/blocks/buttons-child/styling.js ***!
|
80404 |
\*********************************************/
|
80531 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
80532 |
|
80533 |
/***/ }),
|
80534 |
+
/* 407 */
|
80535 |
/*!******************************************************!*\
|
80536 |
!*** ./node_modules/react-transition-group/index.js ***!
|
80537 |
\******************************************************/
|
80542 |
"use strict";
|
80543 |
|
80544 |
|
80545 |
+
var _CSSTransition = _interopRequireDefault(__webpack_require__(/*! ./CSSTransition */ 408));
|
80546 |
|
80547 |
+
var _ReplaceTransition = _interopRequireDefault(__webpack_require__(/*! ./ReplaceTransition */ 413));
|
80548 |
|
80549 |
+
var _TransitionGroup = _interopRequireDefault(__webpack_require__(/*! ./TransitionGroup */ 161));
|
80550 |
|
80551 |
+
var _Transition = _interopRequireDefault(__webpack_require__(/*! ./Transition */ 158));
|
80552 |
|
80553 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
80554 |
|
80560 |
};
|
80561 |
|
80562 |
/***/ }),
|
80563 |
+
/* 408 */
|
80564 |
/*!**************************************************************!*\
|
80565 |
!*** ./node_modules/react-transition-group/CSSTransition.js ***!
|
80566 |
\**************************************************************/
|
80576 |
|
80577 |
var PropTypes = _interopRequireWildcard(__webpack_require__(/*! prop-types */ 15));
|
80578 |
|
80579 |
+
var _addClass = _interopRequireDefault(__webpack_require__(/*! dom-helpers/class/addClass */ 409));
|
80580 |
|
80581 |
+
var _removeClass = _interopRequireDefault(__webpack_require__(/*! dom-helpers/class/removeClass */ 412));
|
80582 |
|
80583 |
var _react = _interopRequireDefault(__webpack_require__(/*! react */ 6));
|
80584 |
|
80585 |
+
var _Transition = _interopRequireDefault(__webpack_require__(/*! ./Transition */ 158));
|
80586 |
|
80587 |
+
var _PropTypes = __webpack_require__(/*! ./utils/PropTypes */ 160);
|
80588 |
|
80589 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
80590 |
|
80936 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
80937 |
|
80938 |
/***/ }),
|
80939 |
+
/* 409 */
|
80940 |
/*!****************************************************!*\
|
80941 |
!*** ./node_modules/dom-helpers/class/addClass.js ***!
|
80942 |
\****************************************************/
|
80947 |
"use strict";
|
80948 |
|
80949 |
|
80950 |
+
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 410);
|
80951 |
|
80952 |
exports.__esModule = true;
|
80953 |
exports.default = addClass;
|
80954 |
|
80955 |
+
var _hasClass = _interopRequireDefault(__webpack_require__(/*! ./hasClass */ 411));
|
80956 |
|
80957 |
function addClass(element, className) {
|
80958 |
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);
|
80961 |
module.exports = exports["default"];
|
80962 |
|
80963 |
/***/ }),
|
80964 |
+
/* 410 */
|
80965 |
/*!**********************************************************************!*\
|
80966 |
!*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
|
80967 |
\**********************************************************************/
|
80978 |
module.exports = _interopRequireDefault;
|
80979 |
|
80980 |
/***/ }),
|
80981 |
+
/* 411 */
|
80982 |
/*!****************************************************!*\
|
80983 |
!*** ./node_modules/dom-helpers/class/hasClass.js ***!
|
80984 |
\****************************************************/
|
80999 |
module.exports = exports["default"];
|
81000 |
|
81001 |
/***/ }),
|
81002 |
+
/* 412 */
|
81003 |
/*!*******************************************************!*\
|
81004 |
!*** ./node_modules/dom-helpers/class/removeClass.js ***!
|
81005 |
\*******************************************************/
|
81019 |
};
|
81020 |
|
81021 |
/***/ }),
|
81022 |
+
/* 413 */
|
81023 |
/*!******************************************************************!*\
|
81024 |
!*** ./node_modules/react-transition-group/ReplaceTransition.js ***!
|
81025 |
\******************************************************************/
|
81039 |
|
81040 |
var _reactDom = __webpack_require__(/*! react-dom */ 18);
|
81041 |
|
81042 |
+
var _TransitionGroup = _interopRequireDefault(__webpack_require__(/*! ./TransitionGroup */ 161));
|
81043 |
|
81044 |
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
81045 |
|
81181 |
/* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(/*! ./../process/browser.js */ 3)))
|
81182 |
|
81183 |
/***/ }),
|
81184 |
+
/* 414 */
|
81185 |
/*!*******************************************************************!*\
|
81186 |
!*** ./node_modules/react-transition-group/utils/ChildMapping.js ***!
|
81187 |
\*******************************************************************/
|
81342 |
}
|
81343 |
|
81344 |
/***/ }),
|
81345 |
+
/* 415 */
|
81346 |
/*!************************************************!*\
|
81347 |
!*** ./dist/blocks/uagb-controls/parseIcon.js ***!
|
81348 |
\************************************************/
|
81365 |
/* harmony default export */ __webpack_exports__["a"] = (parseSVG);
|
81366 |
|
81367 |
/***/ }),
|
81368 |
+
/* 416 */
|
81369 |
/*!******************************************!*\
|
81370 |
!*** ./src/blocks/buttons-child/save.js ***!
|
81371 |
\******************************************/
|
81441 |
}
|
81442 |
|
81443 |
/***/ }),
|
81444 |
+
/* 417 */
|
81445 |
/*!*********************************************!*\
|
81446 |
!*** ./src/blocks/buttons-child/style.scss ***!
|
81447 |
\*********************************************/
|
81451 |
// removed by extract-text-webpack-plugin
|
81452 |
|
81453 |
/***/ }),
|
81454 |
+
/* 418 */
|
81455 |
/*!**************************************!*\
|
81456 |
!*** ./src/blocks/info-box/block.js ***!
|
81457 |
\**************************************/
|
81460 |
|
81461 |
"use strict";
|
81462 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
81463 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 419);
|
81464 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 420);
|
81465 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 163);
|
81466 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 421);
|
81467 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 424);
|
81468 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
81469 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 425);
|
81470 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
81471 |
/**
|
81472 |
* BLOCK: Info Box
|
81500 |
});
|
81501 |
|
81502 |
/***/ }),
|
81503 |
+
/* 419 */
|
81504 |
/*!*************************************!*\
|
81505 |
!*** ./src/blocks/info-box/edit.js ***!
|
81506 |
\*************************************/
|
81515 |
/* 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__);
|
81516 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
81517 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
81518 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */ 84);
|
81519 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Title__ = __webpack_require__(/*! ./components/Title */ 85);
|
81520 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 86);
|
81521 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */ 87);
|
81522 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__classes__ = __webpack_require__(/*! ./classes */ 88);
|
81523 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */ 89);
|
81524 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 90);
|
81525 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 162);
|
81526 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_InfoBoxIconImage__ = __webpack_require__(/*! ./components/InfoBoxIconImage */ 91);
|
81527 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
81528 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
81529 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
82990 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBinfoBox);
|
82991 |
|
82992 |
/***/ }),
|
82993 |
+
/* 420 */
|
82994 |
/*!*************************************!*\
|
82995 |
!*** ./src/blocks/info-box/save.js ***!
|
82996 |
\*************************************/
|
83002 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
83003 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
83004 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
83005 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */ 84);
|
83006 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */ 85);
|
83007 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */ 87);
|
83008 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 86);
|
83009 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */ 88);
|
83010 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */ 89);
|
83011 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 90);
|
83012 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxIconImage__ = __webpack_require__(/*! ./components/InfoBoxIconImage */ 91);
|
83013 |
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); } }
|
83014 |
|
83015 |
/**
|
83172 |
}
|
83173 |
|
83174 |
/***/ }),
|
83175 |
+
/* 421 */
|
83176 |
/*!*******************************************!*\
|
83177 |
!*** ./src/blocks/info-box/deprecated.js ***!
|
83178 |
\*******************************************/
|
83183 |
"use strict";
|
83184 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
83185 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
83186 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Prefix__ = __webpack_require__(/*! ./components/Prefix */ 84);
|
83187 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */ 85);
|
83188 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_InfoBoxDesc__ = __webpack_require__(/*! ./components/InfoBoxDesc */ 87);
|
83189 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_InfoBoxIcon__ = __webpack_require__(/*! ./components/InfoBoxIcon */ 422);
|
83190 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 86);
|
83191 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! ./classes */ 88);
|
83192 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_InfoBoxSeparator__ = __webpack_require__(/*! ./components/InfoBoxSeparator */ 89);
|
83193 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_InfoBoxCta__ = __webpack_require__(/*! ./components/InfoBoxCta */ 423);
|
83194 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 90);
|
83195 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 162);
|
83196 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_InfoBoxIconImage__ = __webpack_require__(/*! ./components/InfoBoxIconImage */ 91);
|
83197 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__attributes__ = __webpack_require__(/*! ./attributes */ 163);
|
83198 |
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); } }
|
83199 |
|
83200 |
/**
|
83939 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
83940 |
|
83941 |
/***/ }),
|
83942 |
+
/* 422 */
|
83943 |
/*!*******************************************************!*\
|
83944 |
!*** ./src/blocks/info-box/components/InfoBoxIcon.js ***!
|
83945 |
\*******************************************************/
|
83999 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxIcon);
|
84000 |
|
84001 |
/***/ }),
|
84002 |
+
/* 423 */
|
84003 |
/*!******************************************************!*\
|
84004 |
!*** ./src/blocks/info-box/components/InfoBoxCta.js ***!
|
84005 |
\******************************************************/
|
84097 |
/* harmony default export */ __webpack_exports__["a"] = (InfoBoxCta);
|
84098 |
|
84099 |
/***/ }),
|
84100 |
+
/* 424 */
|
84101 |
/*!*****************************************!*\
|
84102 |
!*** ./src/blocks/info-box/editor.scss ***!
|
84103 |
\*****************************************/
|
84107 |
// removed by extract-text-webpack-plugin
|
84108 |
|
84109 |
/***/ }),
|
84110 |
+
/* 425 */
|
84111 |
/*!****************************************!*\
|
84112 |
!*** ./src/blocks/info-box/style.scss ***!
|
84113 |
\****************************************/
|
84117 |
// removed by extract-text-webpack-plugin
|
84118 |
|
84119 |
/***/ }),
|
84120 |
+
/* 426 */
|
84121 |
/*!*****************************************!*\
|
84122 |
!*** ./src/blocks/testimonial/block.js ***!
|
84123 |
\*****************************************/
|
84128 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
84129 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
84130 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
84131 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 427);
|
84132 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 429);
|
84133 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 164);
|
84134 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */ 430);
|
84135 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 431);
|
84136 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
84137 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 432);
|
84138 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
|
84139 |
/**
|
84140 |
* BLOCK: Testimonial
|
84168 |
});
|
84169 |
|
84170 |
/***/ }),
|
84171 |
+
/* 427 */
|
84172 |
/*!****************************************!*\
|
84173 |
!*** ./src/blocks/testimonial/edit.js ***!
|
84174 |
\****************************************/
|
84179 |
"use strict";
|
84180 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
84181 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
84182 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */ 92);
|
84183 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Company__ = __webpack_require__(/*! ./components/Company */ 93);
|
84184 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 94);
|
84185 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */ 95);
|
84186 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 428);
|
84187 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_TestimonialImage__ = __webpack_require__(/*! ./components/TestimonialImage */ 96);
|
84188 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
84189 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_times__);
|
84190 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react_slick__ = __webpack_require__(/*! react-slick */ 152);
|
84191 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8_react_slick___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8_react_slick__);
|
84192 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
84193 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
85374 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBtestimonial);
|
85375 |
|
85376 |
/***/ }),
|
85377 |
+
/* 428 */
|
85378 |
/*!*************************************************!*\
|
85379 |
!*** ./src/blocks/testimonial/inline-styles.js ***!
|
85380 |
\*************************************************/
|
85619 |
/* harmony default export */ __webpack_exports__["a"] = (TestimonialStyle);
|
85620 |
|
85621 |
/***/ }),
|
85622 |
+
/* 429 */
|
85623 |
/*!****************************************!*\
|
85624 |
!*** ./src/blocks/testimonial/save.js ***!
|
85625 |
\****************************************/
|
85631 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
85632 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
85633 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
85634 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */ 92);
|
85635 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Company__ = __webpack_require__(/*! ./components/Company */ 93);
|
85636 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 94);
|
85637 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */ 95);
|
85638 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_TestimonialImage__ = __webpack_require__(/*! ./components/TestimonialImage */ 96);
|
85639 |
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); } }
|
85640 |
|
85641 |
/**
|
85735 |
}
|
85736 |
|
85737 |
/***/ }),
|
85738 |
+
/* 430 */
|
85739 |
/*!**********************************************!*\
|
85740 |
!*** ./src/blocks/testimonial/deprecated.js ***!
|
85741 |
\**********************************************/
|
85746 |
"use strict";
|
85747 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
85748 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
85749 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 164);
|
85750 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
85751 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_AuthorName__ = __webpack_require__(/*! ./components/AuthorName */ 92);
|
85752 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Company__ = __webpack_require__(/*! ./components/Company */ 93);
|
85753 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */ 94);
|
85754 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__classes__ = __webpack_require__(/*! ./classes */ 95);
|
85755 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_TestimonialImage__ = __webpack_require__(/*! ./components/TestimonialImage */ 96);
|
85756 |
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); } }
|
85757 |
|
85758 |
/**
|
85961 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
85962 |
|
85963 |
/***/ }),
|
85964 |
+
/* 431 */
|
85965 |
/*!*******************************************!*\
|
85966 |
!*** ./src/blocks/testimonial/style.scss ***!
|
85967 |
\*******************************************/
|
85971 |
// removed by extract-text-webpack-plugin
|
85972 |
|
85973 |
/***/ }),
|
85974 |
+
/* 432 */
|
85975 |
/*!********************************************!*\
|
85976 |
!*** ./src/blocks/testimonial/editor.scss ***!
|
85977 |
\********************************************/
|
85981 |
// removed by extract-text-webpack-plugin
|
85982 |
|
85983 |
/***/ }),
|
85984 |
+
/* 433 */
|
85985 |
/*!**********************************!*\
|
85986 |
!*** ./src/blocks/team/block.js ***!
|
85987 |
\**********************************/
|
85993 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
85994 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
85995 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
85996 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 434);
|
85997 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__save__ = __webpack_require__(/*! ./save */ 436);
|
85998 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */ 437);
|
85999 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 165);
|
86000 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 438);
|
86001 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
|
86002 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss__ = __webpack_require__(/*! ./style.scss */ 439);
|
86003 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__style_scss__);
|
86004 |
/**
|
86005 |
* BLOCK: Team
|
86035 |
});
|
86036 |
|
86037 |
/***/ }),
|
86038 |
+
/* 434 */
|
86039 |
/*!*********************************!*\
|
86040 |
!*** ./src/blocks/team/edit.js ***!
|
86041 |
\*********************************/
|
86050 |
/* 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__);
|
86051 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
86052 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
86053 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 435);
|
86054 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
86055 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
86056 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
86965 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBTeam);
|
86966 |
|
86967 |
/***/ }),
|
86968 |
+
/* 435 */
|
86969 |
/*!************************************!*\
|
86970 |
!*** ./src/blocks/team/styling.js ***!
|
86971 |
\************************************/
|
87190 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
87191 |
|
87192 |
/***/ }),
|
87193 |
+
/* 436 */
|
87194 |
/*!*********************************!*\
|
87195 |
!*** ./src/blocks/team/save.js ***!
|
87196 |
\*********************************/
|
87335 |
}
|
87336 |
|
87337 |
/***/ }),
|
87338 |
+
/* 437 */
|
87339 |
/*!***************************************!*\
|
87340 |
!*** ./src/blocks/team/deprecated.js ***!
|
87341 |
\***************************************/
|
87346 |
"use strict";
|
87347 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
87348 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
87349 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 165);
|
87350 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
87351 |
/**
|
87352 |
* BLOCK: Table of Contents - Deprecated Block
|
87711 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
87712 |
|
87713 |
/***/ }),
|
87714 |
+
/* 438 */
|
87715 |
/*!*************************************!*\
|
87716 |
!*** ./src/blocks/team/editor.scss ***!
|
87717 |
\*************************************/
|
87721 |
// removed by extract-text-webpack-plugin
|
87722 |
|
87723 |
/***/ }),
|
87724 |
+
/* 439 */
|
87725 |
/*!************************************!*\
|
87726 |
!*** ./src/blocks/team/style.scss ***!
|
87727 |
\************************************/
|
87731 |
// removed by extract-text-webpack-plugin
|
87732 |
|
87733 |
/***/ }),
|
87734 |
+
/* 440 */
|
87735 |
/*!******************************************!*\
|
87736 |
!*** ./src/blocks/social-share/block.js ***!
|
87737 |
\******************************************/
|
87743 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
87744 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
87745 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
87746 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 441);
|
87747 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
87748 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 442);
|
87749 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__editor_scss__);
|
87750 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__transform__ = __webpack_require__(/*! ./transform */ 443);
|
87751 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 166);
|
87752 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__edit__ = __webpack_require__(/*! ./edit */ 444);
|
87753 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__links__ = __webpack_require__(/*! ./links */ 97);
|
87754 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__save__ = __webpack_require__(/*! ./save */ 446);
|
87755 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__deprecated__ = __webpack_require__(/*! ./deprecated */ 447);
|
87756 |
/**
|
87757 |
* BLOCK: Social Share
|
87758 |
*/
|
87790 |
});
|
87791 |
|
87792 |
/***/ }),
|
87793 |
+
/* 441 */
|
87794 |
/*!********************************************!*\
|
87795 |
!*** ./src/blocks/social-share/style.scss ***!
|
87796 |
\********************************************/
|
87800 |
// removed by extract-text-webpack-plugin
|
87801 |
|
87802 |
/***/ }),
|
87803 |
+
/* 442 */
|
87804 |
/*!*********************************************!*\
|
87805 |
!*** ./src/blocks/social-share/editor.scss ***!
|
87806 |
\*********************************************/
|
87810 |
// removed by extract-text-webpack-plugin
|
87811 |
|
87812 |
/***/ }),
|
87813 |
+
/* 443 */
|
87814 |
/*!**********************************************!*\
|
87815 |
!*** ./src/blocks/social-share/transform.js ***!
|
87816 |
\**********************************************/
|
87864 |
/* harmony default export */ __webpack_exports__["a"] = (transform);
|
87865 |
|
87866 |
/***/ }),
|
87867 |
+
/* 444 */
|
87868 |
/*!*****************************************!*\
|
87869 |
!*** ./src/blocks/social-share/edit.js ***!
|
87870 |
\*****************************************/
|
87883 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
87884 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
87885 |
/* 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__);
|
87886 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 445);
|
87887 |
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; }; }();
|
87888 |
|
87889 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
88213 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShare);
|
88214 |
|
88215 |
/***/ }),
|
88216 |
+
/* 445 */
|
88217 |
/*!********************************************!*\
|
88218 |
!*** ./src/blocks/social-share/styling.js ***!
|
88219 |
\********************************************/
|
88423 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
88424 |
|
88425 |
/***/ }),
|
88426 |
+
/* 446 */
|
88427 |
/*!*****************************************!*\
|
88428 |
!*** ./src/blocks/social-share/save.js ***!
|
88429 |
\*****************************************/
|
88436 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
88437 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
88438 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
88439 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__links__ = __webpack_require__(/*! ./links */ 97);
|
88440 |
/**
|
88441 |
* BLOCK: Column - Save Block
|
88442 |
*/
|
88473 |
}
|
88474 |
|
88475 |
/***/ }),
|
88476 |
+
/* 447 */
|
88477 |
/*!***********************************************!*\
|
88478 |
!*** ./src/blocks/social-share/deprecated.js ***!
|
88479 |
\***********************************************/
|
88484 |
"use strict";
|
88485 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
88486 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
88487 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 166);
|
88488 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
88489 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__links__ = __webpack_require__(/*! ./links */ 97);
|
88490 |
/**
|
88491 |
* BLOCK: Social Share - Deprecated Block
|
88492 |
*/
|
88708 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
88709 |
|
88710 |
/***/ }),
|
88711 |
+
/* 448 */
|
88712 |
/*!************************************************!*\
|
88713 |
!*** ./src/blocks/social-share-child/block.js ***!
|
88714 |
\************************************************/
|
88717 |
|
88718 |
"use strict";
|
88719 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
88720 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 167);
|
88721 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 449);
|
88722 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 451);
|
88723 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 452);
|
88724 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
88725 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 453);
|
88726 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
88727 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 454);
|
88728 |
/**
|
88729 |
* BLOCK: Social Share Child
|
88730 |
*/
|
88736 |
|
88737 |
|
88738 |
|
88739 |
+
|
88740 |
var __ = wp.i18n.__;
|
88741 |
var registerBlockType = wp.blocks.registerBlockType;
|
88742 |
|
88750 |
keywords: [__("social share"), __("icon"), __("uag")],
|
88751 |
attributes: __WEBPACK_IMPORTED_MODULE_1__attributes__["a" /* default */],
|
88752 |
edit: __WEBPACK_IMPORTED_MODULE_2__edit__["a" /* default */],
|
88753 |
+
save: __WEBPACK_IMPORTED_MODULE_3__save__["a" /* default */],
|
88754 |
+
deprecated: __WEBPACK_IMPORTED_MODULE_6__deprecated__["a" /* default */]
|
88755 |
});
|
88756 |
|
88757 |
/***/ }),
|
88758 |
+
/* 449 */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88759 |
/*!***********************************************!*\
|
88760 |
!*** ./src/blocks/social-share-child/edit.js ***!
|
88761 |
\***********************************************/
|
88770 |
/* 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__);
|
88771 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
88772 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
88773 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 450);
|
88774 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
88775 |
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; }; }();
|
88776 |
|
89209 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBSocialShareChild);
|
89210 |
|
89211 |
/***/ }),
|
89212 |
+
/* 450 */
|
89213 |
/*!**************************************************!*\
|
89214 |
!*** ./src/blocks/social-share-child/styling.js ***!
|
89215 |
\**************************************************/
|
89265 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
89266 |
|
89267 |
/***/ }),
|
89268 |
+
/* 451 */
|
89269 |
/*!***********************************************!*\
|
89270 |
!*** ./src/blocks/social-share-child/save.js ***!
|
89271 |
\***********************************************/
|
89278 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
89279 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
89280 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
89281 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__links__ = __webpack_require__(/*! ./links */ 168);
|
89282 |
/**
|
89283 |
* BLOCK: Social Share - Save Block
|
89284 |
*/
|
89295 |
var attributes = props.attributes,
|
89296 |
className = props.className;
|
89297 |
var _props$attributes = props.attributes,
|
|
|
89298 |
type = _props$attributes.type,
|
89299 |
image_icon = _props$attributes.image_icon,
|
89300 |
icon = _props$attributes.icon,
|
89303 |
link = _props$attributes.link;
|
89304 |
|
89305 |
|
89306 |
+
var url = __WEBPACK_IMPORTED_MODULE_2__links__["a" /* default */][type];
|
|
|
|
|
|
|
|
|
89307 |
|
89308 |
var image_icon_html = "";
|
89309 |
|
89339 |
}
|
89340 |
|
89341 |
/***/ }),
|
89342 |
+
/* 452 */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89343 |
/*!**************************************************!*\
|
89344 |
!*** ./src/blocks/social-share-child/style.scss ***!
|
89345 |
\**************************************************/
|
89349 |
// removed by extract-text-webpack-plugin
|
89350 |
|
89351 |
/***/ }),
|
89352 |
+
/* 453 */
|
89353 |
/*!***************************************************!*\
|
89354 |
!*** ./src/blocks/social-share-child/editor.scss ***!
|
89355 |
\***************************************************/
|
89359 |
// removed by extract-text-webpack-plugin
|
89360 |
|
89361 |
/***/ }),
|
89362 |
+
/* 454 */
|
89363 |
+
/*!*****************************************************!*\
|
89364 |
+
!*** ./src/blocks/social-share-child/deprecated.js ***!
|
89365 |
+
\*****************************************************/
|
89366 |
+
/*! exports provided: default */
|
89367 |
+
/*! exports used: default */
|
89368 |
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
89369 |
+
|
89370 |
+
"use strict";
|
89371 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
89372 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
89373 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 167);
|
89374 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
89375 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__links__ = __webpack_require__(/*! ./links */ 168);
|
89376 |
+
/**
|
89377 |
+
* BLOCK: Social Share child - Deprecated Block
|
89378 |
+
*/
|
89379 |
+
|
89380 |
+
// Import block dependencies and components.
|
89381 |
+
|
89382 |
+
|
89383 |
+
|
89384 |
+
|
89385 |
+
|
89386 |
+
var deprecated = [{
|
89387 |
+
attributes: __WEBPACK_IMPORTED_MODULE_1__attributes__["a" /* default */],
|
89388 |
+
save: function save(props) {
|
89389 |
+
var attributes = props.attributes,
|
89390 |
+
className = props.className;
|
89391 |
+
var _props$attributes = props.attributes,
|
89392 |
+
current_url = _props$attributes.current_url,
|
89393 |
+
type = _props$attributes.type,
|
89394 |
+
image_icon = _props$attributes.image_icon,
|
89395 |
+
icon = _props$attributes.icon,
|
89396 |
+
image = _props$attributes.image,
|
89397 |
+
block_id = _props$attributes.block_id,
|
89398 |
+
link = _props$attributes.link;
|
89399 |
+
|
89400 |
+
|
89401 |
+
var url = "";
|
89402 |
+
|
89403 |
+
if (null != current_url) {
|
89404 |
+
url = __WEBPACK_IMPORTED_MODULE_3__links__["a" /* default */][type];
|
89405 |
+
}
|
89406 |
+
|
89407 |
+
var image_icon_html = "";
|
89408 |
+
|
89409 |
+
if (image_icon == "icon") {
|
89410 |
+
if (icon) {
|
89411 |
+
image_icon_html = wp.element.createElement(
|
89412 |
+
"span",
|
89413 |
+
{ className: "uagb-ss__source-icon" },
|
89414 |
+
Object(__WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__["a" /* default */])(icon)
|
89415 |
+
);
|
89416 |
+
}
|
89417 |
+
} else {
|
89418 |
+
if (image && image.url) {
|
89419 |
+
image_icon_html = wp.element.createElement("img", { className: "uagb-ss__source-image", src: image.url });
|
89420 |
+
}
|
89421 |
+
}
|
89422 |
+
|
89423 |
+
return wp.element.createElement(
|
89424 |
+
"div",
|
89425 |
+
{
|
89426 |
+
className: __WEBPACK_IMPORTED_MODULE_0_classnames___default()("uagb-ss-repeater", "uagb-ss__wrapper", className, "uagb-block-" + block_id)
|
89427 |
+
},
|
89428 |
+
wp.element.createElement(
|
89429 |
+
"a",
|
89430 |
+
{ className: "uagb-ss__link", "data-href": url, rel: "noopener noreferrer" },
|
89431 |
+
wp.element.createElement(
|
89432 |
+
"span",
|
89433 |
+
{ className: "uagb-ss__source-wrap" },
|
89434 |
+
image_icon_html
|
89435 |
+
)
|
89436 |
+
)
|
89437 |
+
);
|
89438 |
+
}
|
89439 |
+
}];
|
89440 |
+
|
89441 |
+
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
89442 |
+
|
89443 |
+
/***/ }),
|
89444 |
+
/* 455 */
|
89445 |
/*!****************************************!*\
|
89446 |
!*** ./src/blocks/google-map/block.js ***!
|
89447 |
\****************************************/
|
89452 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
89453 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
89454 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
89455 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss__ = __webpack_require__(/*! ./style.scss */ 456);
|
89456 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__style_scss__);
|
89457 |
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; }; }();
|
89458 |
|
89714 |
});
|
89715 |
|
89716 |
/***/ }),
|
89717 |
+
/* 456 */
|
89718 |
/*!******************************************!*\
|
89719 |
!*** ./src/blocks/google-map/style.scss ***!
|
89720 |
\******************************************/
|
89724 |
// removed by extract-text-webpack-plugin
|
89725 |
|
89726 |
/***/ }),
|
89727 |
+
/* 457 */
|
89728 |
/*!***************************************!*\
|
89729 |
!*** ./src/blocks/icon-list/block.js ***!
|
89730 |
\***************************************/
|
89733 |
|
89734 |
"use strict";
|
89735 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
89736 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 169);
|
89737 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 458);
|
89738 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 460);
|
89739 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__transform__ = __webpack_require__(/*! ./transform */ 461);
|
89740 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__deprecated__ = __webpack_require__(/*! ./deprecated */ 462);
|
89741 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 463);
|
89742 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
89743 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 464);
|
89744 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__editor_scss__);
|
89745 |
/**
|
89746 |
* BLOCK: Icon List
|
89776 |
});
|
89777 |
|
89778 |
/***/ }),
|
89779 |
+
/* 458 */
|
89780 |
/*!**************************************!*\
|
89781 |
!*** ./src/blocks/icon-list/edit.js ***!
|
89782 |
\**************************************/
|
89793 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
|
89794 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
|
89795 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
89796 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */ 459);
|
89797 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
89798 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
89799 |
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; }; }();
|
90212 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBIconList);
|
90213 |
|
90214 |
/***/ }),
|
90215 |
+
/* 459 */
|
90216 |
/*!*****************************************!*\
|
90217 |
!*** ./src/blocks/icon-list/styling.js ***!
|
90218 |
\*****************************************/
|
90444 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
90445 |
|
90446 |
/***/ }),
|
90447 |
+
/* 460 */
|
90448 |
/*!**************************************!*\
|
90449 |
!*** ./src/blocks/icon-list/save.js ***!
|
90450 |
\**************************************/
|
90491 |
}
|
90492 |
|
90493 |
/***/ }),
|
90494 |
+
/* 461 */
|
90495 |
/*!*******************************************!*\
|
90496 |
!*** ./src/blocks/icon-list/transform.js ***!
|
90497 |
\*******************************************/
|
90545 |
/* harmony default export */ __webpack_exports__["a"] = (transform);
|
90546 |
|
90547 |
/***/ }),
|
90548 |
+
/* 462 */
|
90549 |
/*!********************************************!*\
|
90550 |
!*** ./src/blocks/icon-list/deprecated.js ***!
|
90551 |
\********************************************/
|
90557 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
90558 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
90559 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
90560 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 169);
|
90561 |
/**
|
90562 |
* BLOCK: Columns - Deprecated Block
|
90563 |
*/
|
91001 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
91002 |
|
91003 |
/***/ }),
|
91004 |
+
/* 463 */
|
91005 |
/*!*****************************************!*\
|
91006 |
!*** ./src/blocks/icon-list/style.scss ***!
|
91007 |
\*****************************************/
|
91011 |
// removed by extract-text-webpack-plugin
|
91012 |
|
91013 |
/***/ }),
|
91014 |
+
/* 464 */
|
91015 |
/*!******************************************!*\
|
91016 |
!*** ./src/blocks/icon-list/editor.scss ***!
|
91017 |
\******************************************/
|
91021 |
// removed by extract-text-webpack-plugin
|
91022 |
|
91023 |
/***/ }),
|
91024 |
+
/* 465 */
|
91025 |
/*!*********************************************!*\
|
91026 |
!*** ./src/blocks/icon-list-child/block.js ***!
|
91027 |
\*********************************************/
|
91030 |
|
91031 |
"use strict";
|
91032 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
91033 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 170);
|
91034 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 466);
|
91035 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 468);
|
91036 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 469);
|
91037 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
91038 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 470);
|
91039 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
91040 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 471);
|
91041 |
/**
|
91042 |
* BLOCK: Icon List - Child
|
91043 |
*/
|
91067 |
});
|
91068 |
|
91069 |
/***/ }),
|
91070 |
+
/* 466 */
|
91071 |
/*!********************************************!*\
|
91072 |
!*** ./src/blocks/icon-list-child/edit.js ***!
|
91073 |
\********************************************/
|
91082 |
/* 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__);
|
91083 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
91084 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
91085 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 467);
|
91086 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
91087 |
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; }; }();
|
91088 |
|
91683 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBIconListChild);
|
91684 |
|
91685 |
/***/ }),
|
91686 |
+
/* 467 */
|
91687 |
/*!***********************************************!*\
|
91688 |
!*** ./src/blocks/icon-list-child/styling.js ***!
|
91689 |
\***********************************************/
|
91751 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
91752 |
|
91753 |
/***/ }),
|
91754 |
+
/* 468 */
|
91755 |
/*!********************************************!*\
|
91756 |
!*** ./src/blocks/icon-list-child/save.js ***!
|
91757 |
\********************************************/
|
91835 |
}
|
91836 |
|
91837 |
/***/ }),
|
91838 |
+
/* 469 */
|
91839 |
/*!***********************************************!*\
|
91840 |
!*** ./src/blocks/icon-list-child/style.scss ***!
|
91841 |
\***********************************************/
|
91845 |
// removed by extract-text-webpack-plugin
|
91846 |
|
91847 |
/***/ }),
|
91848 |
+
/* 470 */
|
91849 |
/*!************************************************!*\
|
91850 |
!*** ./src/blocks/icon-list-child/editor.scss ***!
|
91851 |
\************************************************/
|
91855 |
// removed by extract-text-webpack-plugin
|
91856 |
|
91857 |
/***/ }),
|
91858 |
+
/* 471 */
|
91859 |
/*!**************************************************!*\
|
91860 |
!*** ./src/blocks/icon-list-child/deprecated.js ***!
|
91861 |
\**************************************************/
|
91867 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
91868 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
91869 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
91870 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 170);
|
91871 |
/**
|
91872 |
* BLOCK: Icon List - Child - Deprecated Block
|
91873 |
*/
|
91944 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
91945 |
|
91946 |
/***/ }),
|
91947 |
+
/* 472 */
|
91948 |
/*!****************************************!*\
|
91949 |
!*** ./src/blocks/price-list/block.js ***!
|
91950 |
\****************************************/
|
91953 |
|
91954 |
"use strict";
|
91955 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
91956 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 473);
|
91957 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 475);
|
91958 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 476);
|
91959 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 171);
|
91960 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 477);
|
91961 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
91962 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 478);
|
91963 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
91964 |
/**
|
91965 |
* BLOCK: Price List
|
91995 |
});
|
91996 |
|
91997 |
/***/ }),
|
91998 |
+
/* 473 */
|
91999 |
/*!***************************************!*\
|
92000 |
!*** ./src/blocks/price-list/edit.js ***!
|
92001 |
\***************************************/
|
92006 |
"use strict";
|
92007 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
92008 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
92009 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */ 98);
|
92010 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Price__ = __webpack_require__(/*! ./components/Price */ 99);
|
92011 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 100);
|
92012 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */ 101);
|
92013 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 474);
|
92014 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */ 102);
|
92015 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
92016 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7_lodash_times__);
|
92017 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
92894 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBRestaurantMenu);
|
92895 |
|
92896 |
/***/ }),
|
92897 |
+
/* 474 */
|
92898 |
/*!************************************************!*\
|
92899 |
!*** ./src/blocks/price-list/inline-styles.js ***!
|
92900 |
\************************************************/
|
93111 |
/* harmony default export */ __webpack_exports__["a"] = (RestMenuStyle);
|
93112 |
|
93113 |
/***/ }),
|
93114 |
+
/* 475 */
|
93115 |
/*!***************************************!*\
|
93116 |
!*** ./src/blocks/price-list/save.js ***!
|
93117 |
\***************************************/
|
93123 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
93124 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
93125 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
93126 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */ 98);
|
93127 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Price__ = __webpack_require__(/*! ./components/Price */ 99);
|
93128 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 100);
|
93129 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__classes__ = __webpack_require__(/*! ./classes */ 101);
|
93130 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */ 102);
|
93131 |
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); } }
|
93132 |
|
93133 |
/**
|
93209 |
}
|
93210 |
|
93211 |
/***/ }),
|
93212 |
+
/* 476 */
|
93213 |
/*!*********************************************!*\
|
93214 |
!*** ./src/blocks/price-list/deprecated.js ***!
|
93215 |
\*********************************************/
|
93220 |
"use strict";
|
93221 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
93222 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
93223 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 171);
|
93224 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Title__ = __webpack_require__(/*! ./components/Title */ 98);
|
93225 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Price__ = __webpack_require__(/*! ./components/Price */ 99);
|
93226 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Description__ = __webpack_require__(/*! ./components/Description */ 100);
|
93227 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */ 101);
|
93228 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_RestMenuImage__ = __webpack_require__(/*! ./components/RestMenuImage */ 102);
|
93229 |
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); } }
|
93230 |
|
93231 |
/**
|
93314 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
93315 |
|
93316 |
/***/ }),
|
93317 |
+
/* 477 */
|
93318 |
/*!******************************************!*\
|
93319 |
!*** ./src/blocks/price-list/style.scss ***!
|
93320 |
\******************************************/
|
93324 |
// removed by extract-text-webpack-plugin
|
93325 |
|
93326 |
/***/ }),
|
93327 |
+
/* 478 */
|
93328 |
/*!*******************************************!*\
|
93329 |
!*** ./src/blocks/price-list/editor.scss ***!
|
93330 |
\*******************************************/
|
93334 |
// removed by extract-text-webpack-plugin
|
93335 |
|
93336 |
/***/ }),
|
93337 |
+
/* 479 */
|
93338 |
/*!**************************************!*\
|
93339 |
!*** ./src/blocks/timeline/block.js ***!
|
93340 |
\**************************************/
|
93342 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
93343 |
|
93344 |
"use strict";
|
93345 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__content_timeline_block_js__ = __webpack_require__(/*! ./content-timeline/block.js */ 480);
|
93346 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__post_timeline_block_js__ = __webpack_require__(/*! ./post-timeline/block.js */ 484);
|
93347 |
|
93348 |
|
93349 |
|
93350 |
/***/ }),
|
93351 |
+
/* 480 */
|
93352 |
/*!*******************************************************!*\
|
93353 |
!*** ./src/blocks/timeline/content-timeline/block.js ***!
|
93354 |
\*******************************************************/
|
93361 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
93362 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_times__);
|
93363 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
93364 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! .././style.scss */ 172);
|
93365 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
93366 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 481);
|
93367 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__save__ = __webpack_require__(/*! ./save */ 482);
|
93368 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 173);
|
93369 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__edit__ = __webpack_require__(/*! ./edit */ 483);
|
93370 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! .././inline-styles */ 30);
|
93371 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__classes__ = __webpack_require__(/*! .././classes */ 31);
|
93372 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__align_classes__ = __webpack_require__(/*! .././align-classes */ 32);
|
93430 |
});
|
93431 |
|
93432 |
/***/ }),
|
93433 |
+
/* 481 */
|
93434 |
/*!************************************************************!*\
|
93435 |
!*** ./src/blocks/timeline/content-timeline/deprecated.js ***!
|
93436 |
\************************************************************/
|
93441 |
"use strict";
|
93442 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
93443 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
93444 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 173);
|
93445 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__inline_styles__ = __webpack_require__(/*! .././inline-styles */ 30);
|
93446 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! .././classes */ 31);
|
93447 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__align_classes__ = __webpack_require__(/*! .././align-classes */ 32);
|
93871 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
93872 |
|
93873 |
/***/ }),
|
93874 |
+
/* 482 */
|
93875 |
/*!******************************************************!*\
|
93876 |
!*** ./src/blocks/timeline/content-timeline/save.js ***!
|
93877 |
\******************************************************/
|
94050 |
}
|
94051 |
|
94052 |
/***/ }),
|
94053 |
+
/* 483 */
|
94054 |
/*!******************************************************!*\
|
94055 |
!*** ./src/blocks/timeline/content-timeline/edit.js ***!
|
94056 |
\******************************************************/
|
95210 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBcontentTimeline);
|
95211 |
|
95212 |
/***/ }),
|
95213 |
+
/* 484 */
|
95214 |
/*!****************************************************!*\
|
95215 |
!*** ./src/blocks/timeline/post-timeline/block.js ***!
|
95216 |
\****************************************************/
|
95220 |
"use strict";
|
95221 |
/* unused harmony export name */
|
95222 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../../dist/blocks/uagb-controls/block-icons */ 1);
|
95223 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss__ = __webpack_require__(/*! .././style.scss */ 172);
|
95224 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__style_scss__);
|
95225 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! .././editor.scss */ 485);
|
95226 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
95227 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 486);
|
95228 |
/**
|
95229 |
* BLOCK: Post Timeline Js.
|
95230 |
*/
|
95265 |
});
|
95266 |
|
95267 |
/***/ }),
|
95268 |
+
/* 485 */
|
95269 |
/*!*****************************************!*\
|
95270 |
!*** ./src/blocks/timeline/editor.scss ***!
|
95271 |
\*****************************************/
|
95275 |
// removed by extract-text-webpack-plugin
|
95276 |
|
95277 |
/***/ }),
|
95278 |
+
/* 486 */
|
95279 |
/*!***************************************************!*\
|
95280 |
!*** ./src/blocks/timeline/post-timeline/edit.js ***!
|
95281 |
\***************************************************/
|
95284 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
95285 |
|
95286 |
"use strict";
|
95287 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__ = __webpack_require__(/*! lodash/isUndefined */ 487);
|
95288 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_lodash_isUndefined__);
|
95289 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__ = __webpack_require__(/*! lodash/pickBy */ 488);
|
95290 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_lodash_pickBy___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_lodash_pickBy__);
|
95291 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
95292 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_map__);
|
95301 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__classes__ = __webpack_require__(/*! .././classes */ 31);
|
95302 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__align_classes__ = __webpack_require__(/*! .././align-classes */ 32);
|
95303 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__day_align_classes__ = __webpack_require__(/*! .././day-align-classes */ 33);
|
95304 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_Title__ = __webpack_require__(/*! ./components/Title */ 491);
|
95305 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__components_FeaturedImage__ = __webpack_require__(/*! ./components/FeaturedImage */ 492);
|
95306 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__components_Excerpt__ = __webpack_require__(/*! ./components/Excerpt */ 493);
|
95307 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__components_CtaLink__ = __webpack_require__(/*! ./components/CtaLink */ 494);
|
95308 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_15__components_Author__ = __webpack_require__(/*! ./components/Author */ 495);
|
95309 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_16__components_PostDate__ = __webpack_require__(/*! ./components/PostDate */ 496);
|
95310 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_17__components_Icon__ = __webpack_require__(/*! ./components/Icon */ 497);
|
95311 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_18__components_typography__ = __webpack_require__(/*! ../../../components/typography */ 7);
|
95312 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_19__components_typography_fontloader__ = __webpack_require__(/*! ../../../components/typography/fontloader */ 8);
|
95313 |
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; };
|
95546 |
linkTarget = attributes.linkTarget,
|
95547 |
postType = attributes.postType,
|
95548 |
taxonomyType = attributes.taxonomyType,
|
95549 |
+
dateFormat = attributes.dateFormat,
|
95550 |
+
excludeCurrentPost = attributes.excludeCurrentPost;
|
95551 |
|
95552 |
|
95553 |
var taxonomyListOptions = [{ value: "", label: __("Select Taxonomy") }];
|
95903 |
}),
|
95904 |
wp.element.createElement("hr", { className: "uagb-editor__separator" })
|
95905 |
),
|
95906 |
+
wp.element.createElement(ToggleControl, {
|
95907 |
+
label: __("Exclude Current Post"),
|
95908 |
+
checked: excludeCurrentPost,
|
95909 |
+
onChange: function onChange(value) {
|
95910 |
+
return setAttributes({ excludeCurrentPost: !excludeCurrentPost });
|
95911 |
+
}
|
95912 |
+
}),
|
95913 |
wp.element.createElement(QueryControls, _extends({ order: order, orderBy: orderBy }, {
|
95914 |
numberOfItems: postsToShow,
|
95915 |
onNumberOfItemsChange: function onNumberOfItemsChange(value) {
|
96667 |
order = _props$attributes.order,
|
96668 |
orderBy = _props$attributes.orderBy,
|
96669 |
postType = _props$attributes.postType,
|
96670 |
+
taxonomyType = _props$attributes.taxonomyType,
|
96671 |
+
excludeCurrentPost = _props$attributes.excludeCurrentPost;
|
96672 |
|
96673 |
var _select = select("core"),
|
96674 |
getEntityRecords = _select.getEntityRecords;
|
96698 |
per_page: postsToShow
|
96699 |
};
|
96700 |
|
96701 |
+
if (excludeCurrentPost) {
|
96702 |
+
latestPostsQuery['exclude'] = select("core/editor").getCurrentPostId();
|
96703 |
+
}
|
96704 |
latestPostsQuery[rest_base] = categories;
|
96705 |
|
96706 |
return {
|
96711 |
})(UAGBTimeline));
|
96712 |
|
96713 |
/***/ }),
|
96714 |
+
/* 487 */
|
96715 |
/*!********************************************!*\
|
96716 |
!*** ./node_modules/lodash/isUndefined.js ***!
|
96717 |
\********************************************/
|
96743 |
|
96744 |
|
96745 |
/***/ }),
|
96746 |
+
/* 488 */
|
96747 |
/*!***************************************!*\
|
96748 |
!*** ./node_modules/lodash/pickBy.js ***!
|
96749 |
\***************************************/
|
96751 |
/***/ (function(module, exports, __webpack_require__) {
|
96752 |
|
96753 |
var arrayMap = __webpack_require__(/*! ./_arrayMap */ 34),
|
96754 |
+
baseIteratee = __webpack_require__(/*! ./_baseIteratee */ 113),
|
96755 |
+
basePickBy = __webpack_require__(/*! ./_basePickBy */ 489),
|
96756 |
getAllKeysIn = __webpack_require__(/*! ./_getAllKeysIn */ 79);
|
96757 |
|
96758 |
/**
|
96790 |
|
96791 |
|
96792 |
/***/ }),
|
96793 |
+
/* 489 */
|
96794 |
/*!********************************************!*\
|
96795 |
!*** ./node_modules/lodash/_basePickBy.js ***!
|
96796 |
\********************************************/
|
96799 |
/***/ (function(module, exports, __webpack_require__) {
|
96800 |
|
96801 |
var baseGet = __webpack_require__(/*! ./_baseGet */ 45),
|
96802 |
+
baseSet = __webpack_require__(/*! ./_baseSet */ 490),
|
96803 |
castPath = __webpack_require__(/*! ./_castPath */ 24);
|
96804 |
|
96805 |
/**
|
96831 |
|
96832 |
|
96833 |
/***/ }),
|
96834 |
+
/* 490 */
|
96835 |
/*!*****************************************!*\
|
96836 |
!*** ./node_modules/lodash/_baseSet.js ***!
|
96837 |
\*****************************************/
|
96889 |
|
96890 |
|
96891 |
/***/ }),
|
96892 |
+
/* 491 */
|
96893 |
/*!***************************************************************!*\
|
96894 |
!*** ./src/blocks/timeline/post-timeline/components/Title.js ***!
|
96895 |
\***************************************************************/
|
96955 |
/* harmony default export */ __webpack_exports__["a"] = (Title);
|
96956 |
|
96957 |
/***/ }),
|
96958 |
+
/* 492 */
|
96959 |
/*!***********************************************************************!*\
|
96960 |
!*** ./src/blocks/timeline/post-timeline/components/FeaturedImage.js ***!
|
96961 |
\***********************************************************************/
|
97024 |
/* harmony default export */ __webpack_exports__["a"] = (FeaturedImage);
|
97025 |
|
97026 |
/***/ }),
|
97027 |
+
/* 493 */
|
97028 |
/*!*****************************************************************!*\
|
97029 |
!*** ./src/blocks/timeline/post-timeline/components/Excerpt.js ***!
|
97030 |
\*****************************************************************/
|
97083 |
/* harmony default export */ __webpack_exports__["a"] = (Excerpt);
|
97084 |
|
97085 |
/***/ }),
|
97086 |
+
/* 494 */
|
97087 |
/*!*****************************************************************!*\
|
97088 |
!*** ./src/blocks/timeline/post-timeline/components/CtaLink.js ***!
|
97089 |
\*****************************************************************/
|
97143 |
/* harmony default export */ __webpack_exports__["a"] = (CtaLink);
|
97144 |
|
97145 |
/***/ }),
|
97146 |
+
/* 495 */
|
97147 |
/*!****************************************************************!*\
|
97148 |
!*** ./src/blocks/timeline/post-timeline/components/Author.js ***!
|
97149 |
\****************************************************************/
|
97207 |
/* harmony default export */ __webpack_exports__["a"] = (Author);
|
97208 |
|
97209 |
/***/ }),
|
97210 |
+
/* 496 */
|
97211 |
/*!******************************************************************!*\
|
97212 |
!*** ./src/blocks/timeline/post-timeline/components/PostDate.js ***!
|
97213 |
\******************************************************************/
|
97267 |
/* harmony default export */ __webpack_exports__["a"] = (PostDate);
|
97268 |
|
97269 |
/***/ }),
|
97270 |
+
/* 497 */
|
97271 |
/*!**************************************************************!*\
|
97272 |
!*** ./src/blocks/timeline/post-timeline/components/Icon.js ***!
|
97273 |
\**************************************************************/
|
97321 |
/* harmony default export */ __webpack_exports__["a"] = (Icon);
|
97322 |
|
97323 |
/***/ }),
|
97324 |
+
/* 498 */
|
97325 |
/*!********************************************!*\
|
97326 |
!*** ./src/blocks/call-to-action/block.js ***!
|
97327 |
\********************************************/
|
97330 |
|
97331 |
"use strict";
|
97332 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
97333 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 499);
|
97334 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 501);
|
97335 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 174);
|
97336 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 502);
|
97337 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 504);
|
97338 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
97339 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 505);
|
97340 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
97341 |
/**
|
97342 |
* BLOCK: Call To Action.
|
97373 |
});
|
97374 |
|
97375 |
/***/ }),
|
97376 |
+
/* 499 */
|
97377 |
/*!*******************************************!*\
|
97378 |
!*** ./src/blocks/call-to-action/edit.js ***!
|
97379 |
\*******************************************/
|
97388 |
/* 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__);
|
97389 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
97390 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
97391 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Title__ = __webpack_require__(/*! ./components/Title */ 103);
|
97392 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_Description__ = __webpack_require__(/*! ./components/Description */ 104);
|
97393 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__classes__ = __webpack_require__(/*! ./classes */ 105);
|
97394 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_CTA__ = __webpack_require__(/*! ./components/CTA */ 106);
|
97395 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
97396 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 500);
|
97397 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
97398 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
97399 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
98297 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBCallToAction);
|
98298 |
|
98299 |
/***/ }),
|
98300 |
+
/* 500 */
|
98301 |
/*!****************************************************!*\
|
98302 |
!*** ./src/blocks/call-to-action/inline-styles.js ***!
|
98303 |
\****************************************************/
|
98534 |
/* harmony default export */ __webpack_exports__["a"] = (CtaStyle);
|
98535 |
|
98536 |
/***/ }),
|
98537 |
+
/* 501 */
|
98538 |
/*!*******************************************!*\
|
98539 |
!*** ./src/blocks/call-to-action/save.js ***!
|
98540 |
\*******************************************/
|
98546 |
/* harmony export (immutable) */ __webpack_exports__["a"] = save;
|
98547 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
98548 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
98549 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */ 103);
|
98550 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */ 104);
|
98551 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! ./classes */ 105);
|
98552 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_CTA__ = __webpack_require__(/*! ./components/CTA */ 106);
|
98553 |
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); } }
|
98554 |
|
98555 |
/**
|
98667 |
}
|
98668 |
|
98669 |
/***/ }),
|
98670 |
+
/* 502 */
|
98671 |
/*!*************************************************!*\
|
98672 |
!*** ./src/blocks/call-to-action/deprecated.js ***!
|
98673 |
\*************************************************/
|
98678 |
"use strict";
|
98679 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
98680 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
98681 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_Title__ = __webpack_require__(/*! ./components/Title */ 103);
|
98682 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */ 104);
|
98683 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__classes__ = __webpack_require__(/*! ./classes */ 105);
|
98684 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_CallToAction__ = __webpack_require__(/*! ./components/CallToAction */ 503);
|
98685 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_CTA__ = __webpack_require__(/*! ./components/CTA */ 106);
|
98686 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__attributes__ = __webpack_require__(/*! ./attributes */ 174);
|
98687 |
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); } }
|
98688 |
|
98689 |
/**
|
98908 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
98909 |
|
98910 |
/***/ }),
|
98911 |
+
/* 503 */
|
98912 |
/*!**************************************************************!*\
|
98913 |
!*** ./src/blocks/call-to-action/components/CallToAction.js ***!
|
98914 |
\**************************************************************/
|
99002 |
/* harmony default export */ __webpack_exports__["a"] = (CallToAction);
|
99003 |
|
99004 |
/***/ }),
|
99005 |
+
/* 504 */
|
99006 |
/*!***********************************************!*\
|
99007 |
!*** ./src/blocks/call-to-action/editor.scss ***!
|
99008 |
\***********************************************/
|
99012 |
// removed by extract-text-webpack-plugin
|
99013 |
|
99014 |
/***/ }),
|
99015 |
+
/* 505 */
|
99016 |
/*!**********************************************!*\
|
99017 |
!*** ./src/blocks/call-to-action/style.scss ***!
|
99018 |
\**********************************************/
|
99022 |
// removed by extract-text-webpack-plugin
|
99023 |
|
99024 |
/***/ }),
|
99025 |
+
/* 506 */
|
99026 |
/*!************************************!*\
|
99027 |
!*** ./src/blocks/column/block.js ***!
|
99028 |
\************************************/
|
99031 |
|
99032 |
"use strict";
|
99033 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
99034 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 507);
|
99035 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 510);
|
99036 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__deprecated__ = __webpack_require__(/*! ./deprecated */ 511);
|
99037 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 175);
|
99038 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 512);
|
99039 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
99040 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 513);
|
99041 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
99042 |
/**
|
99043 |
* BLOCK: Column
|
99073 |
});
|
99074 |
|
99075 |
/***/ }),
|
99076 |
+
/* 507 */
|
99077 |
/*!***********************************!*\
|
99078 |
!*** ./src/blocks/column/edit.js ***!
|
99079 |
\***********************************/
|
99085 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
99086 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
99087 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
99088 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 508);
|
99089 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 82);
|
99090 |
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; }; }();
|
99091 |
|
99092 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
99103 |
|
99104 |
|
99105 |
|
99106 |
+
|
99107 |
var __ = wp.i18n.__;
|
99108 |
var _wp$blockEditor = wp.blockEditor,
|
99109 |
InnerBlocks = _wp$blockEditor.InnerBlocks,
|
99262 |
mobilePaddingType = _props$attributes.mobilePaddingType,
|
99263 |
tabletPaddingType = _props$attributes.tabletPaddingType,
|
99264 |
desktopPaddingType = _props$attributes.desktopPaddingType,
|
99265 |
+
gradientValue = _props$attributes.gradientValue,
|
99266 |
setAttributes = _props.setAttributes,
|
99267 |
className = _props.className,
|
99268 |
isSelected = _props.isSelected;
|
100077 |
"gradient" == backgroundType && wp.element.createElement(
|
100078 |
Fragment,
|
100079 |
null,
|
100080 |
+
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_3__components_gradient_settings__["a" /* default */], { attributes: this.props.attributes, setAttributes: setAttributes })
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100081 |
),
|
100082 |
("color" == backgroundType || "image" == backgroundType && backgroundImage || "gradient" == backgroundType) && wp.element.createElement(RangeControl, {
|
100083 |
label: __("Opacity"),
|
100130 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBColumnEdit);
|
100131 |
|
100132 |
/***/ }),
|
100133 |
+
/* 508 */
|
100134 |
/*!**************************************!*\
|
100135 |
!*** ./src/blocks/column/styling.js ***!
|
100136 |
\**************************************/
|
100139 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
100140 |
|
100141 |
"use strict";
|
100142 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 509);
|
100143 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
|
100144 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
|
100145 |
/**
|
100287 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
100288 |
|
100289 |
/***/ }),
|
100290 |
+
/* 509 */
|
100291 |
/*!********************************************!*\
|
100292 |
!*** ./src/blocks/column/inline-styles.js ***!
|
100293 |
\********************************************/
|
100322 |
gradientOverlayType = _props$attributes.gradientOverlayType,
|
100323 |
gradientOverlayLocation1 = _props$attributes.gradientOverlayLocation1,
|
100324 |
gradientOverlayLocation2 = _props$attributes.gradientOverlayLocation2,
|
100325 |
+
gradientOverlayAngle = _props$attributes.gradientOverlayAngle,
|
100326 |
+
gradientValue = _props$attributes.gradientValue;
|
100327 |
|
100328 |
|
100329 |
var style = {};
|
100348 |
style["background-color"] = "transparent";
|
100349 |
style["opacity"] = typeof backgroundOpacity != "undefined" ? backgroundOpacity / 100 : "";
|
100350 |
|
100351 |
+
if (gradientValue) {
|
100352 |
+
style["background-image"] = gradientValue;
|
|
|
100353 |
} else {
|
100354 |
+
if ("linear" === gradientType) {
|
100355 |
|
100356 |
+
style["background-image"] = "linear-gradient(" + gradientAngle + "deg, " + gradientColor1 + " " + gradientLocation1 + "%, " + gradientColor2 + " " + gradientLocation2 + "%)";
|
100357 |
+
} else {
|
100358 |
+
|
100359 |
+
style["background-image"] = "radial-gradient( at center center, " + gradientColor1 + " " + gradientLocation1 + "%, " + gradientColor2 + " " + gradientLocation2 + "%)";
|
100360 |
+
}
|
100361 |
}
|
100362 |
} else if ("color" == backgroundType) {
|
100363 |
|
100373 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
100374 |
|
100375 |
/***/ }),
|
100376 |
+
/* 510 */
|
100377 |
/*!***********************************!*\
|
100378 |
!*** ./src/blocks/column/save.js ***!
|
100379 |
\***********************************/
|
100423 |
}
|
100424 |
|
100425 |
/***/ }),
|
100426 |
+
/* 511 */
|
100427 |
/*!*****************************************!*\
|
100428 |
!*** ./src/blocks/column/deprecated.js ***!
|
100429 |
\*****************************************/
|
100434 |
"use strict";
|
100435 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
100436 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
100437 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 175);
|
100438 |
/**
|
100439 |
* BLOCK: Column - Deprecated Block
|
100440 |
*/
|
100484 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
100485 |
|
100486 |
/***/ }),
|
100487 |
+
/* 512 */
|
100488 |
/*!**************************************!*\
|
100489 |
!*** ./src/blocks/column/style.scss ***!
|
100490 |
\**************************************/
|
100494 |
// removed by extract-text-webpack-plugin
|
100495 |
|
100496 |
/***/ }),
|
100497 |
+
/* 513 */
|
100498 |
/*!***************************************!*\
|
100499 |
!*** ./src/blocks/column/editor.scss ***!
|
100500 |
\***************************************/
|
100504 |
// removed by extract-text-webpack-plugin
|
100505 |
|
100506 |
/***/ }),
|
100507 |
+
/* 514 */
|
100508 |
/*!*************************************!*\
|
100509 |
!*** ./src/blocks/columns/block.js ***!
|
100510 |
\*************************************/
|
100515 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
100516 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
100517 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
100518 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 176);
|
100519 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 515);
|
100520 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 520);
|
100521 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__shapes__ = __webpack_require__(/*! ./shapes */ 107);
|
100522 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__variations__ = __webpack_require__(/*! ./variations */ 521);
|
100523 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss__ = __webpack_require__(/*! ./style.scss */ 531);
|
100524 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_7__style_scss__);
|
100525 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 532);
|
100526 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_8__editor_scss__);
|
100527 |
/**
|
100528 |
* BLOCK: Columns
|
100633 |
});
|
100634 |
|
100635 |
/***/ }),
|
100636 |
+
/* 515 */
|
100637 |
/*!************************************!*\
|
100638 |
!*** ./src/blocks/columns/edit.js ***!
|
100639 |
\************************************/
|
100642 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
100643 |
|
100644 |
"use strict";
|
100645 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__components_option_selector_control__ = __webpack_require__(/*! ../../components/option-selector-control */ 516);
|
100646 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
|
100647 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
|
100648 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__styling__ = __webpack_require__(/*! ./styling */ 517);
|
100649 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize__ = __webpack_require__(/*! memize */ 28);
|
100650 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_memize__);
|
100651 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
100652 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
|
100653 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
100654 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5_lodash_map__);
|
100655 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__ = __webpack_require__(/*! lodash/dropRight */ 519);
|
100656 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_dropRight___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_dropRight__);
|
100657 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
100658 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__shapes__ = __webpack_require__(/*! ./shapes */ 107);
|
100659 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_box_shadow__ = __webpack_require__(/*! ../../components/box-shadow */ 81);
|
100660 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_gradient_settings__ = __webpack_require__(/*! ../../components/gradient-settings */ 82);
|
100661 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__icons__ = __webpack_require__(/*! ./icons */ 177);
|
100662 |
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"); } }; }();
|
100663 |
|
100664 |
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; }; }();
|
100685 |
|
100686 |
|
100687 |
|
100688 |
+
|
100689 |
var ALLOWED_BLOCKS = ["uagb/column"];
|
100690 |
|
100691 |
var __ = wp.i18n.__;
|
100963 |
boxShadowVOffset = attributes.boxShadowVOffset,
|
100964 |
boxShadowBlur = attributes.boxShadowBlur,
|
100965 |
boxShadowSpread = attributes.boxShadowSpread,
|
100966 |
+
boxShadowPosition = attributes.boxShadowPosition,
|
100967 |
+
gradientValue = attributes.gradientValue;
|
100968 |
|
100969 |
|
100970 |
var CustomTag = "" + tag;
|
101930 |
"gradient" == backgroundType && wp.element.createElement(
|
101931 |
Fragment,
|
101932 |
null,
|
101933 |
+
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_10__components_gradient_settings__["a" /* default */], { attributes: attributes, setAttributes: setAttributes })
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101934 |
),
|
101935 |
"video" == backgroundType && wp.element.createElement(
|
101936 |
BaseControl,
|
102162 |
/* harmony default export */ __webpack_exports__["a"] = (compose(withNotices, applyWithSelect)(UAGBColumns));
|
102163 |
|
102164 |
/***/ }),
|
102165 |
+
/* 516 */
|
102166 |
/*!*********************************************************!*\
|
102167 |
!*** ./src/components/option-selector-control/index.js ***!
|
102168 |
\*********************************************************/
|
102308 |
/* harmony default export */ __webpack_exports__["a"] = (OptionSelectorControl);
|
102309 |
|
102310 |
/***/ }),
|
102311 |
+
/* 517 */
|
102312 |
/*!***************************************!*\
|
102313 |
!*** ./src/blocks/columns/styling.js ***!
|
102314 |
\***************************************/
|
102317 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
102318 |
|
102319 |
"use strict";
|
102320 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__inline_styles__ = __webpack_require__(/*! ./inline-styles */ 518);
|
102321 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
|
102322 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */ 83);
|
102323 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
|
102324 |
/**
|
102325 |
* Returns Dynamic Generated CSS
|
102384 |
boxShadowVOffset = _props$attributes.boxShadowVOffset,
|
102385 |
boxShadowBlur = _props$attributes.boxShadowBlur,
|
102386 |
boxShadowSpread = _props$attributes.boxShadowSpread,
|
102387 |
+
boxShadowPosition = _props$attributes.boxShadowPosition,
|
102388 |
+
gradientValue = _props$attributes.gradientValue;
|
102389 |
|
102390 |
|
102391 |
var max_width = "100%";
|
102455 |
|
102456 |
selectors[" > .uagb-columns__overlay"]["background-color"] = "transparent";
|
102457 |
selectors[" > .uagb-columns__overlay"]["opacity"] = typeof backgroundOpacity != "undefined" ? backgroundOpacity / 100 : "";
|
102458 |
+
if (gradientValue) {
|
102459 |
+
selectors[" > .uagb-columns__overlay"]["background-image"] = gradientValue;
|
|
|
|
|
102460 |
} else {
|
102461 |
+
if ("linear" === gradientType) {
|
102462 |
|
102463 |
+
selectors[" > .uagb-columns__overlay"]["background-image"] = "linear-gradient(" + gradientAngle + "deg, " + gradientColor1 + " " + gradientLocation1 + "%, " + gradientColor2 + " " + gradientLocation2 + "%)";
|
102464 |
+
} else {
|
102465 |
+
|
102466 |
+
selectors[" > .uagb-columns__overlay"]["background-image"] = "radial-gradient( at " + gradientPosition + ", " + gradientColor1 + " " + gradientLocation1 + "%, " + gradientColor2 + " " + gradientLocation2 + "%)";
|
102467 |
+
}
|
102468 |
}
|
102469 |
}
|
102470 |
|
102519 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
102520 |
|
102521 |
/***/ }),
|
102522 |
+
/* 518 */
|
102523 |
/*!*********************************************!*\
|
102524 |
!*** ./src/blocks/columns/inline-styles.js ***!
|
102525 |
\*********************************************/
|
102589 |
/* harmony default export */ __webpack_exports__["a"] = (inlineStyles);
|
102590 |
|
102591 |
/***/ }),
|
102592 |
+
/* 519 */
|
102593 |
/*!******************************************!*\
|
102594 |
!*** ./node_modules/lodash/dropRight.js ***!
|
102595 |
\******************************************/
|
102638 |
|
102639 |
|
102640 |
/***/ }),
|
102641 |
+
/* 520 */
|
102642 |
/*!******************************************!*\
|
102643 |
!*** ./src/blocks/columns/deprecated.js ***!
|
102644 |
\******************************************/
|
102649 |
"use strict";
|
102650 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
102651 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
102652 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__shapes__ = __webpack_require__(/*! ./shapes */ 107);
|
102653 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 176);
|
102654 |
/**
|
102655 |
* BLOCK: Columns - Deprecated Block
|
102656 |
*/
|
102810 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
102811 |
|
102812 |
/***/ }),
|
102813 |
+
/* 521 */
|
102814 |
/*!******************************************!*\
|
102815 |
!*** ./src/blocks/columns/variations.js ***!
|
102816 |
\******************************************/
|
102819 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
102820 |
|
102821 |
"use strict";
|
102822 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__icons__ = __webpack_require__(/*! ./icons */ 177);
|
102823 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__wordpress_i18n__ = __webpack_require__(/*! @wordpress/i18n */ 522);
|
102824 |
/**
|
102825 |
* Internal dependencies
|
102826 |
*/
|
102919 |
/* harmony default export */ __webpack_exports__["a"] = (variations);
|
102920 |
|
102921 |
/***/ }),
|
102922 |
+
/* 522 */
|
102923 |
/*!************************************************************!*\
|
102924 |
!*** ./node_modules/@wordpress/i18n/build-module/index.js ***!
|
102925 |
\************************************************************/
|
102934 |
/* unused harmony export _n */
|
102935 |
/* unused harmony export _nx */
|
102936 |
/* unused harmony export sprintf */
|
102937 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_runtime_helpers_esm_objectSpread__ = __webpack_require__(/*! @babel/runtime/helpers/esm/objectSpread */ 523);
|
102938 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_tannin__ = __webpack_require__(/*! tannin */ 525);
|
102939 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize__ = __webpack_require__(/*! memize */ 28);
|
102940 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_memize__);
|
102941 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js__ = __webpack_require__(/*! sprintf-js */ 530);
|
102942 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3_sprintf_js___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3_sprintf_js__);
|
102943 |
|
102944 |
|
103116 |
//# sourceMappingURL=index.js.map
|
103117 |
|
103118 |
/***/ }),
|
103119 |
+
/* 523 */
|
103120 |
/*!*****************************************************************!*\
|
103121 |
!*** ./node_modules/@babel/runtime/helpers/esm/objectSpread.js ***!
|
103122 |
\*****************************************************************/
|
103126 |
|
103127 |
"use strict";
|
103128 |
/* harmony export (immutable) */ __webpack_exports__["a"] = _objectSpread;
|
103129 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__defineProperty__ = __webpack_require__(/*! ./defineProperty */ 524);
|
103130 |
|
103131 |
function _objectSpread(target) {
|
103132 |
for (var i = 1; i < arguments.length; i++) {
|
103148 |
}
|
103149 |
|
103150 |
/***/ }),
|
103151 |
+
/* 524 */
|
103152 |
/*!*******************************************************************!*\
|
103153 |
!*** ./node_modules/@babel/runtime/helpers/esm/defineProperty.js ***!
|
103154 |
\*******************************************************************/
|
103174 |
}
|
103175 |
|
103176 |
/***/ }),
|
103177 |
+
/* 525 */
|
103178 |
/*!**************************************!*\
|
103179 |
!*** ./node_modules/tannin/index.js ***!
|
103180 |
\**************************************/
|
103184 |
|
103185 |
"use strict";
|
103186 |
/* harmony export (immutable) */ __webpack_exports__["a"] = Tannin;
|
103187 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_plural_forms__ = __webpack_require__(/*! @tannin/plural-forms */ 526);
|
103188 |
|
103189 |
|
103190 |
/**
|
103328 |
|
103329 |
|
103330 |
/***/ }),
|
103331 |
+
/* 526 */
|
103332 |
/*!****************************************************!*\
|
103333 |
!*** ./node_modules/@tannin/plural-forms/index.js ***!
|
103334 |
\****************************************************/
|
103338 |
|
103339 |
"use strict";
|
103340 |
/* harmony export (immutable) */ __webpack_exports__["a"] = pluralForms;
|
103341 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_compile__ = __webpack_require__(/*! @tannin/compile */ 527);
|
103342 |
|
103343 |
|
103344 |
/**
|
103360 |
|
103361 |
|
103362 |
/***/ }),
|
103363 |
+
/* 527 */
|
103364 |
/*!***********************************************!*\
|
103365 |
!*** ./node_modules/@tannin/compile/index.js ***!
|
103366 |
\***********************************************/
|
103370 |
|
103371 |
"use strict";
|
103372 |
/* harmony export (immutable) */ __webpack_exports__["a"] = compile;
|
103373 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__tannin_postfix__ = __webpack_require__(/*! @tannin/postfix */ 528);
|
103374 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__tannin_evaluate__ = __webpack_require__(/*! @tannin/evaluate */ 529);
|
103375 |
|
103376 |
|
103377 |
|
103404 |
|
103405 |
|
103406 |
/***/ }),
|
103407 |
+
/* 528 */
|
103408 |
/*!***********************************************!*\
|
103409 |
!*** ./node_modules/@tannin/postfix/index.js ***!
|
103410 |
\***********************************************/
|
103541 |
|
103542 |
|
103543 |
/***/ }),
|
103544 |
+
/* 529 */
|
103545 |
/*!************************************************!*\
|
103546 |
!*** ./node_modules/@tannin/evaluate/index.js ***!
|
103547 |
\************************************************/
|
103664 |
|
103665 |
|
103666 |
/***/ }),
|
103667 |
+
/* 530 */
|
103668 |
/*!*****************************************************************************!*\
|
103669 |
!*** ./node_modules/@wordpress/i18n/node_modules/sprintf-js/src/sprintf.js ***!
|
103670 |
\*****************************************************************************/
|
103907 |
|
103908 |
|
103909 |
/***/ }),
|
103910 |
+
/* 531 */
|
103911 |
/*!***************************************!*\
|
103912 |
!*** ./src/blocks/columns/style.scss ***!
|
103913 |
\***************************************/
|
103917 |
// removed by extract-text-webpack-plugin
|
103918 |
|
103919 |
/***/ }),
|
103920 |
+
/* 532 */
|
103921 |
/*!****************************************!*\
|
103922 |
!*** ./src/blocks/columns/editor.scss ***!
|
103923 |
\****************************************/
|
103927 |
// removed by extract-text-webpack-plugin
|
103928 |
|
103929 |
/***/ }),
|
103930 |
+
/* 533 */
|
103931 |
/*!****************************************!*\
|
103932 |
!*** ./src/blocks/cf7-styler/block.js ***!
|
103933 |
\****************************************/
|
103936 |
|
103937 |
"use strict";
|
103938 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
103939 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 534);
|
103940 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 536);
|
103941 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
103942 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 537);
|
103943 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
103944 |
/**
|
103945 |
* BLOCK: Contact Form 7 Styler
|
103990 |
}
|
103991 |
|
103992 |
/***/ }),
|
103993 |
+
/* 534 */
|
103994 |
/*!***************************************!*\
|
103995 |
!*** ./src/blocks/cf7-styler/edit.js ***!
|
103996 |
\***************************************/
|
104004 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
104005 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
104006 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
104007 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__styling__ = __webpack_require__(/*! ./styling */ 535);
|
104008 |
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; }; }();
|
104009 |
|
104010 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
105446 |
})(UAGBCF7));
|
105447 |
|
105448 |
/***/ }),
|
105449 |
+
/* 535 */
|
105450 |
/*!******************************************!*\
|
105451 |
!*** ./src/blocks/cf7-styler/styling.js ***!
|
105452 |
\******************************************/
|
105859 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
105860 |
|
105861 |
/***/ }),
|
105862 |
+
/* 536 */
|
105863 |
/*!*******************************************!*\
|
105864 |
!*** ./src/blocks/cf7-styler/editor.scss ***!
|
105865 |
\*******************************************/
|
105869 |
// removed by extract-text-webpack-plugin
|
105870 |
|
105871 |
/***/ }),
|
105872 |
+
/* 537 */
|
105873 |
/*!******************************************!*\
|
105874 |
!*** ./src/blocks/cf7-styler/style.scss ***!
|
105875 |
\******************************************/
|
105879 |
// removed by extract-text-webpack-plugin
|
105880 |
|
105881 |
/***/ }),
|
105882 |
+
/* 538 */
|
105883 |
/*!***************************************!*\
|
105884 |
!*** ./src/blocks/gf-styler/block.js ***!
|
105885 |
\***************************************/
|
105888 |
|
105889 |
"use strict";
|
105890 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
105891 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 539);
|
105892 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 541);
|
105893 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__editor_scss__);
|
105894 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss__ = __webpack_require__(/*! ./style.scss */ 542);
|
105895 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__style_scss__);
|
105896 |
/**
|
105897 |
* BLOCK: Gravity Form Styler
|
105942 |
}
|
105943 |
|
105944 |
/***/ }),
|
105945 |
+
/* 539 */
|
105946 |
/*!**************************************!*\
|
105947 |
!*** ./src/blocks/gf-styler/edit.js ***!
|
105948 |
\**************************************/
|
105958 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
105959 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
105960 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_map__);
|
105961 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 540);
|
105962 |
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; }; }();
|
105963 |
|
105964 |
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
107439 |
})(UAGBGF));
|
107440 |
|
107441 |
/***/ }),
|
107442 |
+
/* 540 */
|
107443 |
/*!*****************************************!*\
|
107444 |
!*** ./src/blocks/gf-styler/styling.js ***!
|
107445 |
\*****************************************/
|
108077 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
108078 |
|
108079 |
/***/ }),
|
108080 |
+
/* 541 */
|
108081 |
/*!******************************************!*\
|
108082 |
!*** ./src/blocks/gf-styler/editor.scss ***!
|
108083 |
\******************************************/
|
108087 |
// removed by extract-text-webpack-plugin
|
108088 |
|
108089 |
/***/ }),
|
108090 |
+
/* 542 */
|
108091 |
/*!*****************************************!*\
|
108092 |
!*** ./src/blocks/gf-styler/style.scss ***!
|
108093 |
\*****************************************/
|
108097 |
// removed by extract-text-webpack-plugin
|
108098 |
|
108099 |
/***/ }),
|
108100 |
+
/* 543 */
|
108101 |
/*!****************************************!*\
|
108102 |
!*** ./src/blocks/blockquote/block.js ***!
|
108103 |
\****************************************/
|
108106 |
|
108107 |
"use strict";
|
108108 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
108109 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__edit__ = __webpack_require__(/*! ./edit */ 544);
|
108110 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated__ = __webpack_require__(/*! ./deprecated */ 546);
|
108111 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 548);
|
108112 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 178);
|
108113 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 549);
|
108114 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
108115 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 550);
|
108116 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
108117 |
/**
|
108118 |
* BLOCK: Quote
|
108163 |
});
|
108164 |
|
108165 |
/***/ }),
|
108166 |
+
/* 544 */
|
108167 |
/*!***************************************!*\
|
108168 |
!*** ./src/blocks/blockquote/edit.js ***!
|
108169 |
\***************************************/
|
108174 |
"use strict";
|
108175 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
108176 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
108177 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */ 108);
|
108178 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_Description__ = __webpack_require__(/*! ./components/Description */ 109);
|
108179 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */ 110);
|
108180 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */ 111);
|
108181 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 545);
|
108182 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map__ = __webpack_require__(/*! lodash/map */ 16);
|
108183 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_lodash_map___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_lodash_map__);
|
108184 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
109612 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBBlockQuote);
|
109613 |
|
109614 |
/***/ }),
|
109615 |
+
/* 545 */
|
109616 |
/*!******************************************!*\
|
109617 |
!*** ./src/blocks/blockquote/styling.js ***!
|
109618 |
\******************************************/
|
109935 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
109936 |
|
109937 |
/***/ }),
|
109938 |
+
/* 546 */
|
109939 |
/*!*********************************************!*\
|
109940 |
!*** ./src/blocks/blockquote/deprecated.js ***!
|
109941 |
\*********************************************/
|
109944 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
109945 |
|
109946 |
"use strict";
|
109947 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__attributes__ = __webpack_require__(/*! ./attributes */ 178);
|
109948 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames__ = __webpack_require__(/*! classnames */ 0);
|
109949 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_classnames__);
|
109950 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
109951 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_TweetButton__ = __webpack_require__(/*! ./components/TweetButton */ 547);
|
109952 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */ 108);
|
109953 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_Description__ = __webpack_require__(/*! ./components/Description */ 109);
|
109954 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */ 110);
|
109955 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */ 111);
|
109956 |
/**
|
109957 |
* BLOCK: Advanced Heading - Deprecated Block
|
109958 |
*/
|
110090 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
110091 |
|
110092 |
/***/ }),
|
110093 |
+
/* 547 */
|
110094 |
/*!*********************************************************!*\
|
110095 |
!*** ./src/blocks/blockquote/components/TweetButton.js ***!
|
110096 |
\*********************************************************/
|
110164 |
/* harmony default export */ __webpack_exports__["a"] = (TweetButton);
|
110165 |
|
110166 |
/***/ }),
|
110167 |
+
/* 548 */
|
110168 |
/*!***************************************!*\
|
110169 |
!*** ./src/blocks/blockquote/save.js ***!
|
110170 |
\***************************************/
|
110177 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
110178 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
110179 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
110180 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__components_TweetButtonCTA__ = __webpack_require__(/*! ./components/TweetButtonCTA */ 108);
|
110181 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__components_Description__ = __webpack_require__(/*! ./components/Description */ 109);
|
110182 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_AuthorText__ = __webpack_require__(/*! ./components/AuthorText */ 110);
|
110183 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_AuthorImage__ = __webpack_require__(/*! ./components/AuthorImage */ 111);
|
110184 |
/**
|
110185 |
* BLOCK: Blockquote - Save Block
|
110186 |
*/
|
110257 |
}
|
110258 |
|
110259 |
/***/ }),
|
110260 |
+
/* 549 */
|
110261 |
/*!*******************************************!*\
|
110262 |
!*** ./src/blocks/blockquote/editor.scss ***!
|
110263 |
\*******************************************/
|
110267 |
// removed by extract-text-webpack-plugin
|
110268 |
|
110269 |
/***/ }),
|
110270 |
+
/* 550 */
|
110271 |
/*!******************************************!*\
|
110272 |
!*** ./src/blocks/blockquote/style.scss ***!
|
110273 |
\******************************************/
|
110277 |
// removed by extract-text-webpack-plugin
|
110278 |
|
110279 |
/***/ }),
|
110280 |
+
/* 551 */
|
110281 |
/*!**********************************************!*\
|
110282 |
!*** ./src/blocks/marketing-button/block.js ***!
|
110283 |
\**********************************************/
|
110286 |
|
110287 |
"use strict";
|
110288 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
110289 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 179);
|
110290 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 552);
|
110291 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 554);
|
110292 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 555);
|
110293 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 556);
|
110294 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
110295 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 557);
|
110296 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
110297 |
/**
|
110298 |
* BLOCK: Marketing Button
|
110325 |
});
|
110326 |
|
110327 |
/***/ }),
|
110328 |
+
/* 552 */
|
110329 |
/*!*********************************************!*\
|
110330 |
!*** ./src/blocks/marketing-button/edit.js ***!
|
110331 |
\*********************************************/
|
110336 |
"use strict";
|
110337 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
110338 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
110339 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 553);
|
110340 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
110341 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2__fonticonpicker_react_fonticonpicker__);
|
110342 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
111350 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBMarketingButtonEdit);
|
111351 |
|
111352 |
/***/ }),
|
111353 |
+
/* 553 */
|
111354 |
/*!************************************************!*\
|
111355 |
!*** ./src/blocks/marketing-button/styling.js ***!
|
111356 |
\************************************************/
|
111360 |
|
111361 |
"use strict";
|
111362 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_generateCSS__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSS */ 5);
|
111363 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_hexToRgba__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/hexToRgba */ 83);
|
111364 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_generateCSSUnit__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/generateCSSUnit */ 4);
|
111365 |
/**
|
111366 |
* Returns Dynamic Generated CSS
|
111568 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
111569 |
|
111570 |
/***/ }),
|
111571 |
+
/* 554 */
|
111572 |
/*!*********************************************!*\
|
111573 |
!*** ./src/blocks/marketing-button/save.js ***!
|
111574 |
\*********************************************/
|
111648 |
}
|
111649 |
|
111650 |
/***/ }),
|
111651 |
+
/* 555 */
|
111652 |
/*!***************************************************!*\
|
111653 |
!*** ./src/blocks/marketing-button/deprecated.js ***!
|
111654 |
\***************************************************/
|
111659 |
"use strict";
|
111660 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
111661 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
111662 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 179);
|
111663 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
111664 |
/**
|
111665 |
* BLOCK: Columns - Deprecated Block
|
111734 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
111735 |
|
111736 |
/***/ }),
|
111737 |
+
/* 556 */
|
111738 |
/*!************************************************!*\
|
111739 |
!*** ./src/blocks/marketing-button/style.scss ***!
|
111740 |
\************************************************/
|
111744 |
// removed by extract-text-webpack-plugin
|
111745 |
|
111746 |
/***/ }),
|
111747 |
+
/* 557 */
|
111748 |
/*!*************************************************!*\
|
111749 |
!*** ./src/blocks/marketing-button/editor.scss ***!
|
111750 |
\*************************************************/
|
111754 |
// removed by extract-text-webpack-plugin
|
111755 |
|
111756 |
/***/ }),
|
111757 |
+
/* 558 */
|
111758 |
/*!***********************************************!*\
|
111759 |
!*** ./src/blocks/table-of-contents/block.js ***!
|
111760 |
\***********************************************/
|
111763 |
|
111764 |
"use strict";
|
111765 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
111766 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 180);
|
111767 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 559);
|
111768 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 561);
|
111769 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__deprecated__ = __webpack_require__(/*! ./deprecated */ 562);
|
111770 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss__ = __webpack_require__(/*! ./style.scss */ 565);
|
111771 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__style_scss__);
|
111772 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 566);
|
111773 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__editor_scss__);
|
111774 |
/**
|
111775 |
* BLOCK: Table of Contents
|
111803 |
});
|
111804 |
|
111805 |
/***/ }),
|
111806 |
+
/* 559 */
|
111807 |
/*!**********************************************!*\
|
111808 |
!*** ./src/blocks/table-of-contents/edit.js ***!
|
111809 |
\**********************************************/
|
111814 |
"use strict";
|
111815 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
111816 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
111817 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 560);
|
111818 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
111819 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__dist_blocks_uagb_controls_UAGBIcon_json__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/UAGBIcon.json */ 9);
|
111820 |
/* 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__);
|
111823 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
111824 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
111825 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
111826 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__toc__ = __webpack_require__(/*! ./toc */ 181);
|
111827 |
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; }; }();
|
111828 |
|
111829 |
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); } }
|
111853 |
|
111854 |
|
111855 |
|
111856 |
+
var striptags = __webpack_require__(/*! striptags */ 182);
|
111857 |
var __ = wp.i18n.__;
|
111858 |
var withSelect = wp.data.withSelect;
|
111859 |
var compose = wp.compose.compose;
|
113312 |
}))(UAGBTableOfContentsEdit));
|
113313 |
|
113314 |
/***/ }),
|
113315 |
+
/* 560 */
|
113316 |
/*!*************************************************!*\
|
113317 |
!*** ./src/blocks/table-of-contents/styling.js ***!
|
113318 |
\*************************************************/
|
113562 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
113563 |
|
113564 |
/***/ }),
|
113565 |
+
/* 561 */
|
113566 |
/*!**********************************************!*\
|
113567 |
!*** ./src/blocks/table-of-contents/save.js ***!
|
113568 |
\**********************************************/
|
113575 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
113576 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
113577 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
113578 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__toc__ = __webpack_require__(/*! ./toc */ 181);
|
113579 |
/**
|
113580 |
* BLOCK: Table of Contents - Save Block
|
113581 |
*/
|
113644 |
}
|
113645 |
|
113646 |
/***/ }),
|
113647 |
+
/* 562 */
|
113648 |
/*!****************************************************!*\
|
113649 |
!*** ./src/blocks/table-of-contents/deprecated.js ***!
|
113650 |
\****************************************************/
|
113655 |
"use strict";
|
113656 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
113657 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
113658 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__deprecated_components__ = __webpack_require__(/*! ./deprecated/components */ 563);
|
113659 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__deprecated_table_of_contents__ = __webpack_require__(/*! ./deprecated/table-of-contents */ 564);
|
113660 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__attributes__ = __webpack_require__(/*! ./attributes */ 180);
|
113661 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
113662 |
/**
|
113663 |
* BLOCK: Table of Contents - Deprecated Block
|
113831 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
113832 |
|
113833 |
/***/ }),
|
113834 |
+
/* 563 */
|
113835 |
/*!***************************************************************!*\
|
113836 |
!*** ./src/blocks/table-of-contents/deprecated/components.js ***!
|
113837 |
\***************************************************************/
|
113859 |
|
113860 |
var __ = wp.i18n.__;
|
113861 |
|
113862 |
+
var striptags = __webpack_require__(/*! striptags */ 182);
|
113863 |
|
113864 |
var TableOfContents = function (_Component) {
|
113865 |
_inherits(TableOfContents, _Component);
|
114070 |
/* harmony default export */ __webpack_exports__["a"] = (TableOfContents);
|
114071 |
|
114072 |
/***/ }),
|
114073 |
+
/* 564 */
|
114074 |
/*!**********************************************************************!*\
|
114075 |
!*** ./src/blocks/table-of-contents/deprecated/table-of-contents.js ***!
|
114076 |
\**********************************************************************/
|
114203 |
/* harmony default export */ __webpack_exports__["a"] = (TOC);
|
114204 |
|
114205 |
/***/ }),
|
114206 |
+
/* 565 */
|
114207 |
/*!*************************************************!*\
|
114208 |
!*** ./src/blocks/table-of-contents/style.scss ***!
|
114209 |
\*************************************************/
|
114213 |
// removed by extract-text-webpack-plugin
|
114214 |
|
114215 |
/***/ }),
|
114216 |
+
/* 566 */
|
114217 |
/*!**************************************************!*\
|
114218 |
!*** ./src/blocks/table-of-contents/editor.scss ***!
|
114219 |
\**************************************************/
|
114223 |
// removed by extract-text-webpack-plugin
|
114224 |
|
114225 |
/***/ }),
|
114226 |
+
/* 567 */
|
114227 |
/*!************************************!*\
|
114228 |
!*** ./src/blocks/how-to/block.js ***!
|
114229 |
\************************************/
|
114232 |
|
114233 |
"use strict";
|
114234 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
114235 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 568);
|
114236 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 569);
|
114237 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 572);
|
114238 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 183);
|
114239 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
114240 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 573);
|
114241 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
114242 |
/**
|
114243 |
* BLOCK: How-To Schema
|
114269 |
});
|
114270 |
|
114271 |
/***/ }),
|
114272 |
+
/* 568 */
|
114273 |
/*!*****************************************!*\
|
114274 |
!*** ./src/blocks/how-to/attributes.js ***!
|
114275 |
\*****************************************/
|
114571 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
114572 |
|
114573 |
/***/ }),
|
114574 |
+
/* 569 */
|
114575 |
/*!***********************************!*\
|
114576 |
!*** ./src/blocks/how-to/edit.js ***!
|
114577 |
\***********************************/
|
114582 |
"use strict";
|
114583 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
114584 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
114585 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__schema_notices__ = __webpack_require__(/*! ./schema-notices */ 570);
|
114586 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
114587 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_2_lodash_times__);
|
114588 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__styling__ = __webpack_require__(/*! ./styling */ 571);
|
114589 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_typography__ = __webpack_require__(/*! ../../components/typography */ 7);
|
114590 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_typography_fontloader__ = __webpack_require__(/*! ../../components/typography/fontloader */ 8);
|
114591 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss__ = __webpack_require__(/*! ./style.scss */ 183);
|
114592 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6__style_scss__);
|
114593 |
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; };
|
114594 |
|
115683 |
}))(UAGBHowTo));
|
115684 |
|
115685 |
/***/ }),
|
115686 |
+
/* 570 */
|
115687 |
/*!*********************************************!*\
|
115688 |
!*** ./src/blocks/how-to/schema-notices.js ***!
|
115689 |
\*********************************************/
|
115847 |
/* harmony default export */ __webpack_exports__["a"] = (SchemaNotices);
|
115848 |
|
115849 |
/***/ }),
|
115850 |
+
/* 571 */
|
115851 |
/*!**************************************!*\
|
115852 |
!*** ./src/blocks/how-to/styling.js ***!
|
115853 |
\**************************************/
|
116182 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
116183 |
|
116184 |
/***/ }),
|
116185 |
+
/* 572 */
|
116186 |
/*!***********************************!*\
|
116187 |
!*** ./src/blocks/how-to/save.js ***!
|
116188 |
\***********************************/
|
116408 |
}
|
116409 |
|
116410 |
/***/ }),
|
116411 |
+
/* 573 */
|
116412 |
/*!***************************************!*\
|
116413 |
!*** ./src/blocks/how-to/editor.scss ***!
|
116414 |
\***************************************/
|
116418 |
// removed by extract-text-webpack-plugin
|
116419 |
|
116420 |
/***/ }),
|
116421 |
+
/* 574 */
|
116422 |
/*!*********************************!*\
|
116423 |
!*** ./src/blocks/faq/block.js ***!
|
116424 |
\*********************************/
|
116427 |
|
116428 |
"use strict";
|
116429 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
116430 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 575);
|
116431 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 576);
|
116432 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 578);
|
116433 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 579);
|
116434 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
116435 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 580);
|
116436 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
116437 |
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; }
|
116438 |
|
116503 |
addFilter('editor.BlockEdit', 'uagb/faq', withFaq);
|
116504 |
|
116505 |
/***/ }),
|
116506 |
+
/* 575 */
|
116507 |
/*!**************************************!*\
|
116508 |
!*** ./src/blocks/faq/attributes.js ***!
|
116509 |
\**************************************/
|
116550 |
},
|
116551 |
boxBgColor: {
|
116552 |
type: "string",
|
116553 |
+
default: "#FFFFFF"
|
116554 |
},
|
116555 |
boxPaddingTypeMobile: {
|
116556 |
type: "string",
|
116598 |
},
|
116599 |
borderRadius: {
|
116600 |
type: "number",
|
116601 |
+
default: 2
|
116602 |
},
|
116603 |
borderColor: {
|
116604 |
type: "string",
|
116605 |
+
default: "#D2D2D2"
|
116606 |
},
|
116607 |
questionTextColor: {
|
116608 |
type: "string",
|
116610 |
},
|
116611 |
questionTextActiveColor: {
|
116612 |
type: "string",
|
116613 |
+
default: "#656565"
|
116614 |
},
|
116615 |
questionPaddingTypeDesktop: {
|
116616 |
type: "string",
|
116776 |
},
|
116777 |
iconSize: {
|
116778 |
type: "number",
|
116779 |
+
default: 12
|
116780 |
},
|
116781 |
iconSizeTablet: {
|
116782 |
type: "number",
|
116783 |
+
default: 12
|
116784 |
},
|
116785 |
iconSizeMobile: {
|
116786 |
type: "number",
|
116787 |
+
default: 12
|
116788 |
},
|
116789 |
iconSizeType: {
|
116790 |
type: "string",
|
116829 |
questionBottomPaddingMobile: {
|
116830 |
type: "number",
|
116831 |
default: 10
|
116832 |
+
},
|
116833 |
+
headingTag: {
|
116834 |
+
type: "html",
|
116835 |
+
selector: "span,p,h1,h2,h3,h4,h5,h6",
|
116836 |
+
default: "span"
|
116837 |
}
|
116838 |
};
|
116839 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
116840 |
|
116841 |
/***/ }),
|
116842 |
+
/* 576 */
|
116843 |
/*!********************************!*\
|
116844 |
!*** ./src/blocks/faq/edit.js ***!
|
116845 |
\********************************/
|
116857 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
|
116858 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times__ = __webpack_require__(/*! lodash/times */ 10);
|
116859 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4_lodash_times___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4_lodash_times__);
|
116860 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__styling__ = __webpack_require__(/*! ./styling */ 577);
|
116861 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize__ = __webpack_require__(/*! memize */ 28);
|
116862 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6_memize___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_6_memize__);
|
116863 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
116931 |
_this.onchangeIcon = _this.onchangeIcon.bind(_this);
|
116932 |
_this.onchangeActiveIcon = _this.onchangeActiveIcon.bind(_this);
|
116933 |
_this.onchangeLayout = _this.onchangeLayout.bind(_this);
|
116934 |
+
_this.onchangeTag = _this.onchangeTag.bind(_this);
|
116935 |
return _this;
|
116936 |
}
|
116937 |
|
117050 |
|
117051 |
setAttributes({ layout: value });
|
117052 |
}
|
117053 |
+
}, {
|
117054 |
+
key: "onchangeTag",
|
117055 |
+
value: function onchangeTag(value) {
|
117056 |
+
var setAttributes = this.props.setAttributes;
|
117057 |
+
|
117058 |
+
var getChildBlocks = select('core/block-editor').getBlocks(this.props.clientId);
|
117059 |
+
|
117060 |
+
getChildBlocks.forEach(function (faqChild, key) {
|
117061 |
+
faqChild.attributes.headingTag = value;
|
117062 |
+
});
|
117063 |
+
|
117064 |
+
setAttributes({ headingTag: value });
|
117065 |
+
}
|
117066 |
}, {
|
117067 |
key: "render",
|
117068 |
value: function render() {
|
117143 |
questionLeftPaddingMobile = attributes.questionLeftPaddingMobile,
|
117144 |
hquestionPaddingMobile = attributes.hquestionPaddingMobile,
|
117145 |
vquestionPaddingMobile = attributes.vquestionPaddingMobile,
|
117146 |
+
questionBottomPaddingMobile = attributes.questionBottomPaddingMobile,
|
117147 |
+
headingTag = attributes.headingTag;
|
117148 |
|
117149 |
|
117150 |
var getFaqChildTemplate = __WEBPACK_IMPORTED_MODULE_6_memize___default()(function (faq_count, faq) {
|
117669 |
initialOpen: false,
|
117670 |
className: "uagb__url-panel-body"
|
117671 |
},
|
117672 |
+
wp.element.createElement(SelectControl, {
|
117673 |
+
label: __("Question Tag"),
|
117674 |
+
value: headingTag,
|
117675 |
+
onChange: function onChange(value) {
|
117676 |
+
return _this2.onchangeTag(value);
|
117677 |
+
},
|
117678 |
+
options: [{ value: "span", label: __("Span") }, { value: "p", label: __("P") }, { value: "h1", label: __("H1") }, { value: "h2", label: __("H2") }, { value: "h3", label: __("H3") }, { value: "h4", label: __("H4") }, { value: "h5", label: __("H5") }, { value: "h6", label: __("H6") }]
|
117679 |
+
}),
|
117680 |
wp.element.createElement(__WEBPACK_IMPORTED_MODULE_8__components_typography__["a" /* default */], {
|
117681 |
label: __("Typography"),
|
117682 |
attributes: attributes,
|
118258 |
}))(UAGBFaqEdit));
|
118259 |
|
118260 |
/***/ }),
|
118261 |
+
/* 577 */
|
118262 |
/*!***********************************!*\
|
118263 |
!*** ./src/blocks/faq/styling.js ***!
|
118264 |
\***********************************/
|
118560 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
118561 |
|
118562 |
/***/ }),
|
118563 |
+
/* 578 */
|
118564 |
/*!********************************!*\
|
118565 |
!*** ./src/blocks/faq/save.js ***!
|
118566 |
\********************************/
|
118621 |
}
|
118622 |
|
118623 |
/***/ }),
|
118624 |
+
/* 579 */
|
118625 |
/*!***********************************!*\
|
118626 |
!*** ./src/blocks/faq/style.scss ***!
|
118627 |
\***********************************/
|
118631 |
// removed by extract-text-webpack-plugin
|
118632 |
|
118633 |
/***/ }),
|
118634 |
+
/* 580 */
|
118635 |
/*!************************************!*\
|
118636 |
!*** ./src/blocks/faq/editor.scss ***!
|
118637 |
\************************************/
|
118641 |
// removed by extract-text-webpack-plugin
|
118642 |
|
118643 |
/***/ }),
|
118644 |
+
/* 581 */
|
118645 |
/*!***************************************!*\
|
118646 |
!*** ./src/blocks/faq-child/block.js ***!
|
118647 |
\***************************************/
|
118650 |
|
118651 |
"use strict";
|
118652 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
118653 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 184);
|
118654 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 582);
|
118655 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 583);
|
118656 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 584);
|
118657 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
118658 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 585);
|
118659 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
118660 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__deprecated__ = __webpack_require__(/*! ./deprecated */ 586);
|
118661 |
/**
|
118662 |
* BLOCK: FAQ - Schema - Child
|
118663 |
*/
|
118690 |
});
|
118691 |
|
118692 |
/***/ }),
|
118693 |
+
/* 582 */
|
118694 |
/*!**************************************!*\
|
118695 |
!*** ./src/blocks/faq-child/edit.js ***!
|
118696 |
\**************************************/
|
118773 |
answer = attributes.answer,
|
118774 |
icon = attributes.icon,
|
118775 |
iconActive = attributes.iconActive,
|
118776 |
+
layout = attributes.layout,
|
118777 |
+
headingTag = attributes.headingTag;
|
118778 |
|
118779 |
|
118780 |
var faqRenderIcon = function faqRenderIcon() {
|
118815 |
{ className: "uagb-faq-questions-button uagb-faq-questions" },
|
118816 |
'accordion' === layout && faqRenderIcon(),
|
118817 |
wp.element.createElement(RichText, {
|
118818 |
+
tagName: 'span' != headingTag ? headingTag : 'div',
|
118819 |
placeholder: __("Question"),
|
118820 |
value: question,
|
118821 |
onChange: function onChange(value) {
|
118871 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBFaqChildEdit);
|
118872 |
|
118873 |
/***/ }),
|
118874 |
+
/* 583 */
|
118875 |
/*!**************************************!*\
|
118876 |
!*** ./src/blocks/faq-child/save.js ***!
|
118877 |
\**************************************/
|
118903 |
answer = _props$attributes.answer,
|
118904 |
icon = _props$attributes.icon,
|
118905 |
iconActive = _props$attributes.iconActive,
|
118906 |
+
layout = _props$attributes.layout,
|
118907 |
+
headingTag = _props$attributes.headingTag;
|
118908 |
|
118909 |
|
118910 |
var faqRenderIcon = function faqRenderIcon() {
|
118937 |
{ className: "uagb-faq-questions-button uagb-faq-questions" },
|
118938 |
'accordion' === layout && faqRenderIcon(),
|
118939 |
wp.element.createElement(RichText.Content, {
|
118940 |
+
tagName: headingTag,
|
118941 |
value: question,
|
118942 |
className: "uagb-question"
|
118943 |
})
|
118966 |
}
|
118967 |
|
118968 |
/***/ }),
|
118969 |
+
/* 584 */
|
118970 |
/*!*****************************************!*\
|
118971 |
!*** ./src/blocks/faq-child/style.scss ***!
|
118972 |
\*****************************************/
|
118976 |
// removed by extract-text-webpack-plugin
|
118977 |
|
118978 |
/***/ }),
|
118979 |
+
/* 585 */
|
118980 |
/*!******************************************!*\
|
118981 |
!*** ./src/blocks/faq-child/editor.scss ***!
|
118982 |
\******************************************/
|
118986 |
// removed by extract-text-webpack-plugin
|
118987 |
|
118988 |
/***/ }),
|
118989 |
+
/* 586 */
|
118990 |
/*!********************************************!*\
|
118991 |
!*** ./src/blocks/faq-child/deprecated.js ***!
|
118992 |
\********************************************/
|
118998 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
118999 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
119000 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
119001 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__attributes__ = __webpack_require__(/*! ./attributes */ 184);
|
119002 |
/**
|
119003 |
* BLOCK: FAQ-Child - Deprecated Block
|
119004 |
*/
|
119086 |
/* harmony default export */ __webpack_exports__["a"] = (deprecated);
|
119087 |
|
119088 |
/***/ }),
|
119089 |
+
/* 587 */
|
119090 |
/*!*******************************************!*\
|
119091 |
!*** ./src/blocks/inline-notice/block.js ***!
|
119092 |
\*******************************************/
|
119095 |
|
119096 |
"use strict";
|
119097 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
119098 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__attributes__ = __webpack_require__(/*! ./attributes */ 588);
|
119099 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__edit__ = __webpack_require__(/*! ./edit */ 589);
|
119100 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__save__ = __webpack_require__(/*! ./save */ 591);
|
119101 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss__ = __webpack_require__(/*! ./style.scss */ 592);
|
119102 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_4__style_scss__);
|
119103 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 593);
|
119104 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_5__editor_scss__);
|
119105 |
/**
|
119106 |
* BLOCK: Inline Notice Block.
|
119131 |
});
|
119132 |
|
119133 |
/***/ }),
|
119134 |
+
/* 588 */
|
119135 |
/*!************************************************!*\
|
119136 |
!*** ./src/blocks/inline-notice/attributes.js ***!
|
119137 |
\************************************************/
|
119153 |
default: null
|
119154 |
},
|
119155 |
noticeTitle: {
|
119156 |
+
source: "html",
|
119157 |
+
selector: "h1,h2,h3,h4,h5,h6,span,p",
|
119158 |
default: "Notice Title"
|
119159 |
},
|
119160 |
+
headingTag: {
|
119161 |
+
type: "string",
|
119162 |
+
default: "h4"
|
119163 |
+
},
|
119164 |
noticeContent: {
|
119165 |
type: "string",
|
119166 |
default: ""
|
119305 |
/* harmony default export */ __webpack_exports__["a"] = (attributes);
|
119306 |
|
119307 |
/***/ }),
|
119308 |
+
/* 589 */
|
119309 |
/*!******************************************!*\
|
119310 |
!*** ./src/blocks/inline-notice/edit.js ***!
|
119311 |
\******************************************/
|
119316 |
"use strict";
|
119317 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames__ = __webpack_require__(/*! classnames */ 0);
|
119318 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_classnames___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_classnames__);
|
119319 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__styling__ = __webpack_require__(/*! ./styling */ 590);
|
119320 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__dist_blocks_uagb_controls_renderIcon__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/renderIcon */ 2);
|
119321 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__ = __webpack_require__(/*! @fonticonpicker/react-fonticonpicker */ 11);
|
119322 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_3__fonticonpicker_react_fonticonpicker__);
|
119465 |
contentHrPadding = _props$attributes.contentHrPadding,
|
119466 |
titleVrPadding = _props$attributes.titleVrPadding,
|
119467 |
titleHrPadding = _props$attributes.titleHrPadding,
|
119468 |
+
headingTag = _props$attributes.headingTag,
|
119469 |
setAttributes = _props.setAttributes,
|
119470 |
className = _props.className,
|
119471 |
attributes = _props.attributes;
|
119516 |
return wp.element.createElement(
|
119517 |
PanelBody,
|
119518 |
{ title: __("General"), initialOpen: true },
|
119519 |
+
wp.element.createElement(
|
119520 |
+
"h2",
|
119521 |
+
null,
|
119522 |
+
__("Primary Heading")
|
119523 |
+
),
|
119524 |
+
wp.element.createElement(SelectControl, {
|
119525 |
+
label: __("Tag"),
|
119526 |
+
value: headingTag,
|
119527 |
+
onChange: function onChange(value) {
|
119528 |
+
return setAttributes({ headingTag: value });
|
119529 |
+
},
|
119530 |
+
options: [{ value: "h1", label: __("H1") }, { value: "h2", label: __("H2") }, { value: "h3", label: __("H3") }, { value: "h4", label: __("H4") }, { value: "h5", label: __("H5") }, { value: "h6", label: __("H6") }, { value: "span", label: __("span") }, { value: "p", label: __("p") }]
|
119531 |
+
}),
|
119532 |
wp.element.createElement(SelectControl, {
|
119533 |
label: __('Notice Display'),
|
119534 |
options: noticeDismissOptions,
|
119793 |
},
|
119794 |
image_icon_html,
|
119795 |
wp.element.createElement(RichText, {
|
119796 |
+
tagName: headingTag,
|
119797 |
placeholder: __('Notice Title', 'ultimate-addons-for-gutenberg'),
|
119798 |
keepPlaceholderOnFocus: true,
|
119799 |
value: noticeTitle,
|
119825 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBInlineNoticeEdit);
|
119826 |
|
119827 |
/***/ }),
|
119828 |
+
/* 590 */
|
119829 |
/*!*********************************************!*\
|
119830 |
!*** ./src/blocks/inline-notice/styling.js ***!
|
119831 |
\*********************************************/
|
119973 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
119974 |
|
119975 |
/***/ }),
|
119976 |
+
/* 591 */
|
119977 |
/*!******************************************!*\
|
119978 |
!*** ./src/blocks/inline-notice/save.js ***!
|
119979 |
\******************************************/
|
120005 |
noticeTitle = attributes.noticeTitle,
|
120006 |
noticeContent = attributes.noticeContent,
|
120007 |
noticeAlignment = attributes.noticeAlignment,
|
120008 |
+
headingTag = attributes.headingTag,
|
120009 |
icon = attributes.icon,
|
120010 |
noticeDismiss = attributes.noticeDismiss,
|
120011 |
cookies = attributes.cookies,
|
120033 |
image_icon_html,
|
120034 |
wp.element.createElement(RichText.Content, {
|
120035 |
value: noticeTitle,
|
120036 |
+
tagName: headingTag,
|
120037 |
className: "uagb-notice-title"
|
120038 |
}),
|
120039 |
wp.element.createElement(RichText.Content, {
|
120045 |
}
|
120046 |
|
120047 |
/***/ }),
|
120048 |
+
/* 592 */
|
120049 |
/*!*********************************************!*\
|
120050 |
!*** ./src/blocks/inline-notice/style.scss ***!
|
120051 |
\*********************************************/
|
120055 |
// removed by extract-text-webpack-plugin
|
120056 |
|
120057 |
/***/ }),
|
120058 |
+
/* 593 */
|
120059 |
/*!**********************************************!*\
|
120060 |
!*** ./src/blocks/inline-notice/editor.scss ***!
|
120061 |
\**********************************************/
|
120065 |
// removed by extract-text-webpack-plugin
|
120066 |
|
120067 |
/***/ }),
|
120068 |
+
/* 594 */
|
120069 |
/*!***************************************!*\
|
120070 |
!*** ./src/blocks/wp-search/block.js ***!
|
120071 |
\***************************************/
|
120073 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
120074 |
|
120075 |
"use strict";
|
120076 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss__ = __webpack_require__(/*! ./style.scss */ 595);
|
120077 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__style_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__style_scss__);
|
120078 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss__ = __webpack_require__(/*! ./editor.scss */ 596);
|
120079 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__editor_scss___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1__editor_scss__);
|
120080 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__save__ = __webpack_require__(/*! ./save */ 597);
|
120081 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__edit__ = __webpack_require__(/*! ./edit */ 598);
|
120082 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__attributes__ = __webpack_require__(/*! ./attributes */ 600);
|
120083 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__dist_blocks_uagb_controls_block_icons__ = __webpack_require__(/*! ../../../dist/blocks/uagb-controls/block-icons */ 1);
|
120084 |
/**
|
120085 |
* BLOCK: WP-Search
|
120111 |
});
|
120112 |
|
120113 |
/***/ }),
|
120114 |
+
/* 595 */
|
120115 |
/*!*****************************************!*\
|
120116 |
!*** ./src/blocks/wp-search/style.scss ***!
|
120117 |
\*****************************************/
|
120121 |
// removed by extract-text-webpack-plugin
|
120122 |
|
120123 |
/***/ }),
|
120124 |
+
/* 596 */
|
120125 |
/*!******************************************!*\
|
120126 |
!*** ./src/blocks/wp-search/editor.scss ***!
|
120127 |
\******************************************/
|
120131 |
// removed by extract-text-webpack-plugin
|
120132 |
|
120133 |
/***/ }),
|
120134 |
+
/* 597 */
|
120135 |
/*!**************************************!*\
|
120136 |
!*** ./src/blocks/wp-search/save.js ***!
|
120137 |
\**************************************/
|
120229 |
}
|
120230 |
|
120231 |
/***/ }),
|
120232 |
+
/* 598 */
|
120233 |
/*!**************************************!*\
|
120234 |
!*** ./src/blocks/wp-search/edit.js ***!
|
120235 |
\**************************************/
|
120238 |
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
120239 |
|
120240 |
"use strict";
|
120241 |
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__styling__ = __webpack_require__(/*! ./styling */ 599);
|
120242 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react__ = __webpack_require__(/*! react */ 6);
|
120243 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1_react___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_1_react__);
|
120244 |
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2_classnames__ = __webpack_require__(/*! classnames */ 0);
|
121122 |
/* harmony default export */ __webpack_exports__["a"] = (UAGBWpSearchEdit);
|
121123 |
|
121124 |
/***/ }),
|
121125 |
+
/* 599 */
|
121126 |
/*!*****************************************!*\
|
121127 |
!*** ./src/blocks/wp-search/styling.js ***!
|
121128 |
\*****************************************/
|
121373 |
/* harmony default export */ __webpack_exports__["a"] = (styling);
|
121374 |
|
121375 |
/***/ }),
|
121376 |
+
/* 600 */
|
121377 |
/*!********************************************!*\
|
121378 |
!*** ./src/blocks/wp-search/attributes.js ***!
|
121379 |
\********************************************/
|
dist/blocks.editor.build.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
.uag-typography-range-options .components-base-control__label{width:auto;display:block;margin-bottom:8px}
|
2 |
-
.uagb-post-grid h2 a{text-decoration:none}.uagb-post-grid a{pointer-events:none;cursor:default}.block-editor-page #wpwrap .edit-post-visual-editor .slick-dots button{color:transparent}.block-editor-page #wpwrap .edit-post-visual-editor .uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}
|
3 |
.uagb-section__wrap:before{content:'';position:absolute;border:1px dashed #03ddff;top:-1px;right:-1px;bottom:-1px;left:-1px;z-index:0}.uagb-section__edit-active.uagb-section__wrap:before{border-color:#035cff}.editor-bg-image-control .components-button,.editor-bg-video-control .components-button{vertical-align:middle}.editor-bg-image-control .components-button:last-child,.editor-bg-video-control .components-button:last-child{margin-left:10px}.editor-block-list__layout .editor-block-list__block[data-align="full"][data-type="uagb/section"]{margin-left:0;margin-right:0}
|
4 |
.uagb-buttons__outer-wrap .uagb-button__wrapper{display:flex}.uagb-buttons__outer-wrap .uagb-button__wrapper div{display:inline-flex}[data-type="uagb/buttons"] .block-editor-inner-blocks>.block-editor-block-list__layout{display:flex}.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .block-editor-inner-blocks,.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .wp-block[data-type="uagb/buttons-child"]{width:100%}.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .block-editor-block-list__layout{flex-grow:1;justify-content:space-between}.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .uagb-buttons-repeater{justify-content:center}.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .uagb-buttons-repeater .block-editor-rich-text__editable{text-align:center;justify-content:center}[data-type="uagb/buttons"] .block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block{width:auto;padding-left:0;padding-right:0;margin-left:10px;margin-right:10px}.uagb-buttons__outer-wrap .uagb-buttons__wrap.uagb-buttons-stack-desktop .block-list-appender{width:60px}.uagb-buttons__outer-wrap .block-list-appender{margin-top:24px;margin-bottom:24px;margin-left:10px}
|
5 |
.uagb-ifb-separator{display:inline-block;width:30%;margin:0}.uagb-infobox__content-wrap.uagb-infobox-icon-above-title{text-align:center}.block-editor-page #wpwrap .edit-post-visual-editor a.uagb-infobox-link-wrap{color:inherit}.block-editor-page #wpwrap .block-editor-rich-text__editable.uagb-ifb-title-prefix{margin-bottom:5px}.block-editor-page #wpwrap .block-editor-rich-text__editable.uagb-ifb-title{margin-bottom:10px}.block-editor-page #wpwrap .uagb-ifb-separator-parent{margin-bottom:10px}.block-editor-page #wpwrap .block-editor-rich-text__editable.uagb-ifb-desc{margin:0;margin-bottom:10px}.block-editor-page #wpwrap a.uagb-infbox__link-to-all{z-index:-1}
|
@@ -21,6 +21,6 @@ p.uagb-marketing-btn__prefix.block-editor-rich-text__editable{margin:0 !importan
|
|
21 |
.uagb-toc__list>p{font-size:13px;font-style:italic;color:#666}.block-editor-page .uagb-toc__scroll-top.dashicons{right:300px}.block-editor-page .uagb-toc__scroll-top.uagb-toc__show-scroll{display:block}.uagb-light-font-weight{font-weight:400}
|
22 |
.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices{background-color:#FFF8E5;border-left:5px solid #FFB901;padding:8px 10px;font-size:13px;line-height:20px;color:#32373c}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices ul{margin:0;padding-bottom:0}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices h6{margin:0;font-size:inherit;line-height:inherit}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices p{margin:0;margin-top:15px;font-size:inherit;color:#555d66}.wp-block-uagb-how-to .block-editor-button-block-appender{margin-top:0px;margin-left:20px;width:10%}.editor-styles-wrapper .uagb-howto__time-wrap h3,.editor-styles-wrapper .uagb-howto__cost-wrap h3,.editor-styles-wrapper .uagb-how-to-tools__wrap h3,.editor-styles-wrapper .uagb-how-to-steps__wrap h3{margin-bottom:20px;margin-top:20px}.editor-styles-wrapper .uagb-howto__time-wrap p,.editor-styles-wrapper .uagb-howto__cost-wrap p,.editor-styles-wrapper .uagb-how-to-tools__wrap p,.editor-styles-wrapper .uagb-how-to-steps__wrap p{margin-top:25px}
|
23 |
[data-type="uagb/faq"] .block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block{width:auto;padding-left:0;padding-right:0;margin-top:0px;margin-bottom:0px}[data-type="uagb/faq"] .block-editor-inner-blocks>.block-editor-block-list__layout{display:block}[data-type="uagb/faq"] .uagb-faq-layout-grid .block-editor-inner-blocks>.block-editor-block-list__layout{display:grid}[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .block-editor-block-list__block,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-child__outer-wrap,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-child__wrapper,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-item{height:100%}
|
24 |
-
.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button{display:flex;align-items:center;width:100%}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-question{width:100
|
25 |
-
.editor-styles-wrapper [data-type="uagb/inline-notice"]
|
26 |
[data-type="uagb/wp-search"] .uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}[data-type="uagb/wp-search"] .uagb-layout-input-button svg{fill:currentColor}[data-type="uagb/wp-search"] .uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}[data-type="uagb/wp-search"] .uagb-layout-input svg{fill:currentColor;opacity:0.6}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap{min-height:20px;width:100%}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
|
1 |
.uag-typography-range-options .components-base-control__label{width:auto;display:block;margin-bottom:8px}
|
2 |
+
.uagb-post-grid h2 a{text-decoration:none}.uagb-post-grid a{pointer-events:none;cursor:default}.uagb-post-grid .uagb-post__load-more-wrap{width:100%}.uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button{cursor:pointer}.uagb-post-grid .uagb-post__load-more-wrap a{color:inherit}.block-editor-page #wpwrap .edit-post-visual-editor .slick-dots button{color:transparent}.block-editor-page #wpwrap .edit-post-visual-editor .uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}
|
3 |
.uagb-section__wrap:before{content:'';position:absolute;border:1px dashed #03ddff;top:-1px;right:-1px;bottom:-1px;left:-1px;z-index:0}.uagb-section__edit-active.uagb-section__wrap:before{border-color:#035cff}.editor-bg-image-control .components-button,.editor-bg-video-control .components-button{vertical-align:middle}.editor-bg-image-control .components-button:last-child,.editor-bg-video-control .components-button:last-child{margin-left:10px}.editor-block-list__layout .editor-block-list__block[data-align="full"][data-type="uagb/section"]{margin-left:0;margin-right:0}
|
4 |
.uagb-buttons__outer-wrap .uagb-button__wrapper{display:flex}.uagb-buttons__outer-wrap .uagb-button__wrapper div{display:inline-flex}[data-type="uagb/buttons"] .block-editor-inner-blocks>.block-editor-block-list__layout{display:flex}.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .block-editor-inner-blocks,.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .wp-block[data-type="uagb/buttons-child"]{width:100%}.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .block-editor-block-list__layout{flex-grow:1;justify-content:space-between}.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .uagb-buttons-repeater{justify-content:center}.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .uagb-buttons-repeater .block-editor-rich-text__editable{text-align:center;justify-content:center}[data-type="uagb/buttons"] .block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block{width:auto;padding-left:0;padding-right:0;margin-left:10px;margin-right:10px}.uagb-buttons__outer-wrap .uagb-buttons__wrap.uagb-buttons-stack-desktop .block-list-appender{width:60px}.uagb-buttons__outer-wrap .block-list-appender{margin-top:24px;margin-bottom:24px;margin-left:10px}
|
5 |
.uagb-ifb-separator{display:inline-block;width:30%;margin:0}.uagb-infobox__content-wrap.uagb-infobox-icon-above-title{text-align:center}.block-editor-page #wpwrap .edit-post-visual-editor a.uagb-infobox-link-wrap{color:inherit}.block-editor-page #wpwrap .block-editor-rich-text__editable.uagb-ifb-title-prefix{margin-bottom:5px}.block-editor-page #wpwrap .block-editor-rich-text__editable.uagb-ifb-title{margin-bottom:10px}.block-editor-page #wpwrap .uagb-ifb-separator-parent{margin-bottom:10px}.block-editor-page #wpwrap .block-editor-rich-text__editable.uagb-ifb-desc{margin:0;margin-bottom:10px}.block-editor-page #wpwrap a.uagb-infbox__link-to-all{z-index:-1}
|
21 |
.uagb-toc__list>p{font-size:13px;font-style:italic;color:#666}.block-editor-page .uagb-toc__scroll-top.dashicons{right:300px}.block-editor-page .uagb-toc__scroll-top.uagb-toc__show-scroll{display:block}.uagb-light-font-weight{font-weight:400}
|
22 |
.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices{background-color:#FFF8E5;border-left:5px solid #FFB901;padding:8px 10px;font-size:13px;line-height:20px;color:#32373c}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices ul{margin:0;padding-bottom:0}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices h6{margin:0;font-size:inherit;line-height:inherit}.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices p{margin:0;margin-top:15px;font-size:inherit;color:#555d66}.wp-block-uagb-how-to .block-editor-button-block-appender{margin-top:0px;margin-left:20px;width:10%}.editor-styles-wrapper .uagb-howto__time-wrap h3,.editor-styles-wrapper .uagb-howto__cost-wrap h3,.editor-styles-wrapper .uagb-how-to-tools__wrap h3,.editor-styles-wrapper .uagb-how-to-steps__wrap h3{margin-bottom:20px;margin-top:20px}.editor-styles-wrapper .uagb-howto__time-wrap p,.editor-styles-wrapper .uagb-howto__cost-wrap p,.editor-styles-wrapper .uagb-how-to-tools__wrap p,.editor-styles-wrapper .uagb-how-to-steps__wrap p{margin-top:25px}
|
23 |
[data-type="uagb/faq"] .block-editor-inner-blocks>.block-editor-block-list__layout>.wp-block{width:auto;padding-left:0;padding-right:0;margin-top:0px;margin-bottom:0px}[data-type="uagb/faq"] .block-editor-inner-blocks>.block-editor-block-list__layout{display:block}[data-type="uagb/faq"] .uagb-faq-layout-grid .block-editor-inner-blocks>.block-editor-block-list__layout{display:grid}[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .block-editor-block-list__block,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-child__outer-wrap,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-child__wrapper,[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks>.block-editor-block-list__layout .uagb-faq-item{height:100%}
|
24 |
+
.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button{display:flex;align-items:center;width:100%}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content p{margin:0}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content{border-width:0px}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content span{display:inline-block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-faq-content{display:block}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon{display:none}[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon-active{display:inline-block}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon-active{display:none}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active .uagb-faq-child__wrapper .uagb-faq-item .uagb-icon{display:none}.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
|
25 |
+
.editor-styles-wrapper [data-type="uagb/inline-notice"] .uagb-notice-title{margin:0}
|
26 |
[data-type="uagb/wp-search"] .uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}[data-type="uagb/wp-search"] .uagb-layout-input-button svg{fill:currentColor}[data-type="uagb/wp-search"] .uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}[data-type="uagb/wp-search"] .uagb-layout-input svg{fill:currentColor;opacity:0.6}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap{min-height:20px;width:100%}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
|
dist/blocks.style.build.css
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
.wp-block-uagb-advanced-heading{padding:0;margin:0 auto}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator-wrap{font-size:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator{border-top-style:solid;display:inline-block;border-top-width:2px;width:5%;margin:0px 0px 10px 0px}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0;text-align:center}
|
2 |
-
.uagb-post-grid{margin:0;position:relative}.uagb-post-grid .is-grid article{float:left;display:inline-block}.uagb-post-grid .uagb-post__items{display:flex;flex-wrap:wrap}.uagb-post-grid .is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:100%}.uagb-post-grid .is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__inner-wrap>p{display:none}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px}.uagb-post-grid .uagb-post__columns-8 article{width:12.5%}.uagb-post-grid .uagb-post__columns-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-5 article{width:20%}.uagb-post-grid .uagb-post__columns-4 article{width:25%}.uagb-post-grid .uagb-post__columns-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-2 article{width:50%}.uagb-post-grid .uagb-post__columns-1 article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%}.uagb-post-grid .uagb-post__text{text-align:left;box-sizing:border-box}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:15px;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline{text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-bottom:15px}.uagb-post-grid .uagb-post__text .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child):after,.uagb-post-grid .uagb-post__date:not(:last-child):after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{margin-bottom:25px;word-break:break-word}.uagb-post-grid .uagb-post__text p{margin:0 0 15px 0}.uagb-post-grid .uagb-post__text p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block}.uagb-post-grid .uagb-post__link{display:inline-block;box-shadow:none;transition:.3s ease;font-weight:bold;color:inherit;text-decoration:none;padding:5px 10px}.uagb-post-grid .uagb-post__excerpt div+p{margin-top:15px}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.uagb-post-grid .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:relative}.uagb-post__image-position-background .uagb-post__image{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:-45px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:-45px;right:auto}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid .is-grid article,.uagb-post-grid .is-masonry article,.uagb-post-grid .is-carousel article{box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}.uagb-post-grid .uagb-post__columns-tablet-1 article{width:100%}.uagb-post-grid .uagb-post__columns-tablet-2 article{width:50%}.uagb-post-grid .uagb-post__columns-tablet-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-tablet-4 article{width:25%}.uagb-post-grid .uagb-post__columns-tablet-5 article{width:20%}.uagb-post-grid .uagb-post__columns-tablet-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){.uagb-post-grid .uagb-post__columns-mobile-1 article{width:100%}.uagb-post-grid .uagb-post__columns-mobile-2 article{width:50%}.uagb-post-grid .uagb-post__columns-mobile-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-mobile-4 article{width:25%}.uagb-post-grid .uagb-post__columns-mobile-5 article{width:20%}.uagb-post-grid .uagb-post__columns-mobile-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:inline-block}
|
3 |
.uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-section__wrap .uagb-section__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-section__wrap .uagb-section__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;transition:opacity 1s}.uagb-section__wrap .uagb-section__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}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-section.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll}}
|
4 |
-
.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:flex;align-items:center;justify-content:center}.uagb-buttons__outer-wrap a{color:inherit}
|
5 |
.uagb-buttons-repeater{display:flex;justify-content:center;align-items:center}.uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center;width:15px}.uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}
|
6 |
-
.uagb-ifb-icon-wrap,.uagb-ifb-icon-wrap *{transition:all 0.2s}.uagb-ifb-icon-wrap .uagb-ifb-icon,.uagb-ifb-content{display:inline-block}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.infobox-icon-above-title .uagb-ifb-left-right-wrap{text-align:center}a.uagb-infobox-cta-link span{font-size:inherit}.uagb-ifb-cta.uagb-infobox-cta-link-style:empty{display:none}a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none}a.uagb-infobox-cta-link:hover,.entry .entry-content a.uagb-infobox-cta-link:hover,a.uagb-infobox-link-wrap:hover,.entry .entry-content a.uagb-infobox-link-wrap:hover .entry .entry-content a.uagb-infobox-cta-link:hover{color:inherit}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{align-self:center}.uagb-infobox-left{text-align:left;justify-content:flex-start}.uagb-infobox-center{text-align:center;justify-content:center}.uagb-infobox-right{text-align:right;justify-content:flex-end}.uagb-ifb-left-right-wrap{width:100%;word-break:break-word}.uagb-infobox-icon-above-title .uagb-ifb-left-right-wrap,.uagb-infobox-icon-below-title .uagb-ifb-left-right-wrap{display:block;min-width:100%;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-js-display:flex;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{justify-content:flex-end}.uagb-ifb-icon-wrap .uagb-ifb-icon span{font-style:initial;height:auto;width:auto}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content{display:inline-block;line-height:0;position:relative;max-width:100%}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content img{display:inline;height:auto !important;max-width:100%;width:auto;box-sizing:content-box;border-radius:inherit}.uagb-ifb-imgicon-wrap .uagb-image-crop-circle img{border-radius:100%}.uagb-ifb-imgicon-wrap .uagb-image-crop-square img{border-radius:0}.uagb-infobox-module-link{position:absolute;width:100%;height:100%;left:0;top:0;bottom:0;right:0;z-index:4}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-left:5px;margin-right:0}.uagb-infobox-link-icon-before{margin-left:0;margin-right:5px}.uagb-infobox-link-icon{transition:all 200ms linear}.uagb-infobox{position:relative}.uagb-ifb-separator{width:30%;border-top-width:2px;border-top-color:#333;border-top-style:solid;display:inline-block;margin:0}.uagb-ifb-separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px}.uagb-ifb-cta-button{display:inline-block;line-height:1;background-color:#818a91;color:#fff;text-align:center}.uagb-ifb-button-wrapper .wp-block-button__link svg{fill:currentColor}.uagb-ifb-cta a{box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title-wrap .uagb-ifb-title,.uagb-ifb-title-wrap .uagb-ifb-title-prefix{padding:0;margin:0;display:block}.uagb-infobox__content-wrap.uagb-infobox{position:relative}.uagb-ifb-icon span{font-size:40px;height:40px;color:#333;width:40px}.uagb-ifb-icon svg{fill:#333}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}.uagb-ifb-left-right-wrap
|
7 |
.uagb-testimonial__wrap{position:relative;box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{transition:all 0.2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__author-name,.uagb-tm__company{display:inline-block}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;padding:15px;border-radius:inherit;position:relative}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:flex}.uagb-tm__meta-inner{display:inline-block}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__meta{width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{align-self:center}.uagb-tm__desc{margin-bottom:15px}.uagb-tm__author-name{margin-bottom:5px;font-size:30px;line-height:1em}.uagb-tm__company{font-size:15px;font-style:italic;line-height:1em;color:#888888}.is-carousel .uagb-testomonial__outer-wrap{padding-left:10px;padding-right:10px}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__text-wrap{position:relative}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:flex;justify-content:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-45px}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-prev{left:25px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-next{right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:-45px;right:auto}@media (max-width: 976px){.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-tablet.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-tablet.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-tablet.uagb-tm__image-position-right.uagb-tm-reverse-order-tablet .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-tablet.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:15px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:auto;right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{left:15px;right:auto}}@media (max-width: 768px){.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-mobile.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-mobile.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-mobile.uagb-tm__image-position-right.uagb-tm-reverse-order-mobile .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-mobile.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}}
|
8 |
.uagb-team__outer-wrap .uagb-team__prefix{font-size:15px;font-style:italic;color:#888}.uagb-team__outer-wrap .uagb-team__image-wrap img{display:inline;height:auto !important;max-width:100%;width:inherit;box-sizing:content-box;border-radius:inherit}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-circle img{border-radius:100%}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-square img{border-radius:0}.uagb-team__outer-wrap .uagb-team__social-icon-wrap ul{list-style:none;display:flex}.uagb-team__outer-wrap .uagb-team__social-icon a span,.uagb-team__outer-wrap .uagb-team__social-icon a span:before{color:inherit;font-size:inherit;height:inherit;width:inherit}.uagb-team__outer-wrap .uagb-team__social-icon a{font-size:20px;width:20px;height:20px;color:#333;display:block}.uagb-team__outer-wrap .uagb-team__social-icon{margin-right:20px;margin-left:0}.uagb-team__outer-wrap .uagb-team__social-list{margin:0;padding:0}.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.uagb-team__image-position-left .uagb-team__wrap,.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:flex}.uagb-team__image-position-left .uagb-team__content{text-align:left}.uagb-team__image-position-right .uagb-team__content{text-align:right}.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;margin:0;padding:0}.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;margin:0;padding:0}.uagb-team__image-position-left li{margin-right:5px}.uagb-team__image-position-right li{margin-left:5px}.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}@media only screen and (max-width: 976px){.uagb-team__stack-tablet,.uagb-team__stack-tablet .uagb-team__content{text-align:center}.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.uagb-team__stack-tablet .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.uagb-team__stack-mobile,.uagb-team__stack-mobile .uagb-team__content{text-align:center}.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.uagb-team__stack-mobile .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}
|
9 |
.uagb-social-share__outer-wrap .uagb-social-share__wrap{display:flex;align-items:center;justify-content:center}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}.uagb-social-share__outer-wrap .uagb-ss__wrapper:first-child{margin-left:0}.uagb-social-share__outer-wrap .uagb-ss__wrapper:last-child{margin-right:0}.uagb-social-share__layout-vertical .uagb-social-share__wrap{flex-direction:column}@media (max-width: 976px){.uagb-social-share__layout-horizontal .uagb-ss__wrapper{margin-left:0;margin-right:0}}
|
10 |
.wp-block-uagb-social-share .uagb-social-share__wrap .uagb-social-share__wrapper{text-decoration:none}.uagb-social-share__wrap .uagb-social-share__wrapper{box-shadow:none}.uagb-social-share__outer-wrap:not(.uagb-social-share__no-label) .uagb-social-share__source-wrap{margin-right:15px}.uagb-social-share__outer-wrap.uagb-social-share__icon-at-top .uagb-social-share__source-wrap{align-self:flex-start;margin-top:5px}
|
11 |
.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
|
12 |
-
.uagb-icon-list__outer-wrap .uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:focus,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:active,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:visited{text-decoration:none}.uagb-icon-list__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap,.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{width:inherit;display:inline-block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{display:inherit;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon,.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon:before{font-size:40px;width:40px;height:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__source-
|
13 |
.wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}
|
14 |
.uagb-rest_menu__wrap{position:relative;padding-left:5px;padding-right:5px;box-sizing:border-box}.uagb-rest_menu__wrap,.uagb-rest_menu__wrap *{transition:all 0.2s}.uagb-rm__image img,.slick-slide .uagb-rm__image img{display:inline-block;box-sizing:content-box}.uagb-rm__title,.uagb-rm__price{display:inline-block}.uagb-rm__desc{margin-bottom:15px;font-style:italic}.uagb-rm__content{overflow:hidden;text-align:left;word-break:break-word;padding:15px;border-radius:inherit;position:relative;padding:5px}.uagb-rm__image-position-left .uagb-rm__content,.uagb-rm__image-position-right .uagb-rm__content{-js-display:flex;display:flex}.uagb-rm-details{display:table;width:100%}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:85%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__title,.uagb-rm__price{display:block}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:center}.uagb-rm__image{overflow:hidden}.uagb-rm__title{margin-bottom:5px;font-size:20px}.uagb-rm__price{font-style:italic;text-align:right}.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%;text-align:center}.uagb-rm__align-center .uagb-rm__price{text-align:center}.uagb-rm__align-right .uagb-rm-details{display:flex;width:100%;flex-direction:row-reverse}.uagb-rm__align-right .uagb-rm__price{text-align:left}.uagb-rm__align-left .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:unset;text-align:left}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__image-content{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:row-reverse;text-align:right}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__image-content{text-align:right}.uagb-rest_menu__outer-wrap{position:relative}.uagb-rm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm-parent{padding:30px}.uagb-rm__text-wrap{position:relative;display:block;width:100%}.uagb-rest_menu__wrap{position:relative}.uagb-rest_menu__outer-wrap:after{content:"";display:block;clear:both}.uagb-rest_menu__wrap.uagb-rm__desk-column-3{display:block;width:33%;float:left;width:calc(100% / 3);padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-2{display:block;width:49%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-1{display:block;width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-moz-flexbox;display:flex}.uagb-rm__separator{width:100%;border-top-width:1px;border-top-color:#b2b4b5;border-top-style:inherit}.uagb-rm__image-position-left .uagb-rm__image{margin-right:10px}.uagb-rm__image-position-right .uagb-rm__image{margin-left:10px}@media (max-width: 976px){.uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{-js-display:flex;display:-moz-flexbox;display:flex;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__tablet-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}@media (max-width: 767px){.uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{-js-display:flex;display:-moz-flexbox;display:flex;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__mobile-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}
|
15 |
.uagb-timeline__widget{position:relative;display:flex;align-items:flex-start;font-size:inherit;color:inherit;margin-bottom:inherit}.uagb-timeline__widget a{text-decoration:none;color:inherit;font-size:inherit;margin-bottom:inherit}.uagb-timeline__image a{display:block;position:relative;max-width:100%}.uagb-timeline__image img{display:inline-block;box-sizing:content-box}.uagb-timeline__author{text-transform:uppercase}.uagb-timeline__main{position:relative}.uagb-content{word-break:break-word}a.uagb-timeline__link{padding:5px 10px;display:inline-block}.uagb-timeline__headingh1,.uagb-timeline__headingh2,.uagb-timeline__headingh3,.uagb-timeline__headingh4,.uagb-timeline__headingh5,.uagb-timeline__headingh6{margin-bottom:0px}.uagb-timeline__inner-date-new p,.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0px}.uagb-timeline__line{background-color:#eeeeee}.uagb-timeline__line__inner{background-color:#5cb85c;width:100%}.uagb-timeline__main .uagb-timeline__icon-new{line-height:1em;display:inline-block;vertical-align:middle;font-style:normal}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right,.uagb-timeline__right-block .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__right-block .uagb-timeline__center-block .uagb-timeline__date-new{display:block}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__right-block .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{top:0;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__right-block .uagb-timeline__day-new{margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__right-block .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__left-block .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__left-block .uagb-timeline__day-new{margin-left:14px;flex-grow:1;order:1}.uagb-timeline__left-block .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{top:0;width:10px;height:40px;position:absolute}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__marker{background-color:#eeeeee;border-radius:999px;position:relative;display:flex;align-items:center;justify-content:center;z-index:1;transition:all .2s ease-in-out}.uagb-timeline__main .uagb-timeline__days .uagb-timeline__field-wrap:hover .uagb-timeline__marker{transition:all .2s ease-in-out}.uagb-timeline__center-block .uagb-timeline__marker{order:1;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{flex-grow:1;flex-basis:50%;max-width:100%;position:relative}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2;padding-left:0;padding-right:12px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2;padding-right:0;padding-left:12px}.uagb-timeline__events-inner-new{padding:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{display:flex;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{display:flex;justify-content:flex-start}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__right-block .uagb-timeline__date-new{margin-left:10px}.uagb-timeline__right-block .uagb-timeline__date-new{display:flex;align-items:center}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__arrow-center .uagb-timeline__widget{align-items:center}.uagb-timeline__arrow-bottom .uagb-timeline__widget{align-items:flex-end}.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;transform:translateY(-50%)}.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;transform:translateY(-100%)}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new,.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{transition:background .2s ease-in-out}.uagb-timeline__arrow:after{transition:border-color .2s ease-in-out}.uagb-timeline__date-new{transition:color .2s ease-in-out}.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__main .uagb-timeline__year{display:flex;position:relative}.uagb-timeline__main .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__day-left .uagb-timeline__arrow:after{content:'';left:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow:after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__icon{width:100px;height:100px;border-radius:50%;text-align:center;line-height:100px;vertical-align:middle;position:relative;z-index:1}.uagb-timeline__main .uagb-timeline__date .uagb-timeline__inner-date-new{white-space:nowrap;margin:0px}.uagb-timeline__main .uagb-timeline__line{position:absolute;transform:translateX(-50%)}.uagb-timeline__right-block .uagb-timeline__main .uagb-timeline__line{position:absolute;transform:translateX(50%)}.uagb-timeline__center-block .uagb-timeline__line{left:50%;right:auto}.uagb-timeline__main .in-view i.uagb-timeline__in-view-icon{transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out}.uagb-timeline__left-block .uagb-timeline__days{text-align:left}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block .uagb-timeline__days{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;top:50%;transform:translateY(-50%);position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__days{text-align:right}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{flex-grow:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{flex-grow:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__widget.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}.uagb-timeline__line__inner{background-color:#61ce70;width:100%}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__line{width:3px}.uagb-timeline__main .uagb-timeline__icon-new{font-size:16px}.uagb-timeline__marker{min-height:3em;min-width:3em;line-height:3em}.uagb-timeline__arrow{height:3em}.uagb-timeline__left-block .uagb-timeline__line{left:calc(3em / 2)}.uagb-timeline__right-block .uagb-timeline__line{right:calc(3em / 2)}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:calc(3em / 2);left:auto}.rtl .uagb-timeline__right-block .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline-desc-content p{font-size:inherit}.uagb-timeline__main p:empty{display:none}@media (max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{flex-grow:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}@media (max-width: 767px){.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:calc(3em / 2);left:auto}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}
|
@@ -23,6 +23,6 @@
|
|
23 |
.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.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__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.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;justify-content:space-between}.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 .uagb-toc__list{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}
|
24 |
.uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}
|
25 |
.wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__wrapper,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-item{height:100%}
|
26 |
-
.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100
|
27 |
-
.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice
|
28 |
.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{min-height:20px;width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:0.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
|
1 |
.wp-block-uagb-advanced-heading{padding:0;margin:0 auto}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator-wrap{font-size:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator{border-top-style:solid;display:inline-block;border-top-width:2px;width:5%;margin:0px 0px 10px 0px}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0;text-align:center}
|
2 |
+
.uagb-post-grid{margin:0;position:relative}.uagb-post-grid .uagb-post__load-more-wrap{width:100%}.uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button{cursor:pointer}.uagb-post-grid .uagb-post__load-more-wrap a{color:inherit}.uagb-post-grid .is-grid article{float:left;display:inline-block}.uagb-post-grid .uagb-post__items{display:flex;flex-wrap:wrap}.uagb-post-grid .is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:100%}.uagb-post-grid .is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__inner-wrap>p{display:none}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px}.uagb-post-grid .uagb-post__columns-8 article{width:12.5%}.uagb-post-grid .uagb-post__columns-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-5 article{width:20%}.uagb-post-grid .uagb-post__columns-4 article{width:25%}.uagb-post-grid .uagb-post__columns-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-2 article{width:50%}.uagb-post-grid .uagb-post__columns-1 article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%}.uagb-post-grid .uagb-post__text{text-align:left;box-sizing:border-box}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:15px;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline{text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-bottom:15px}.uagb-post-grid .uagb-post__text .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child):after,.uagb-post-grid .uagb-post__date:not(:last-child):after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{margin-bottom:25px;word-break:break-word}.uagb-post-grid .uagb-post__text p{margin:0 0 15px 0}.uagb-post-grid .uagb-post__text p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block}.uagb-post-grid .uagb-post__link{display:inline-block;box-shadow:none;transition:.3s ease;font-weight:bold;color:inherit;text-decoration:none;padding:5px 10px}.uagb-post-grid .uagb-post__excerpt div+p{margin-top:15px}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.uagb-post-grid .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:relative}.uagb-post__image-position-background .uagb-post__image{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:-45px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:-45px;right:auto}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid .is-grid article,.uagb-post-grid .is-masonry article,.uagb-post-grid .is-carousel article{box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}.uagb-post-grid .uagb-post__columns-tablet-1 article{width:100%}.uagb-post-grid .uagb-post__columns-tablet-2 article{width:50%}.uagb-post-grid .uagb-post__columns-tablet-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-tablet-4 article{width:25%}.uagb-post-grid .uagb-post__columns-tablet-5 article{width:20%}.uagb-post-grid .uagb-post__columns-tablet-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){.uagb-post-grid .uagb-post__columns-mobile-1 article{width:100%}.uagb-post-grid .uagb-post__columns-mobile-2 article{width:50%}.uagb-post-grid .uagb-post__columns-mobile-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-mobile-4 article{width:25%}.uagb-post-grid .uagb-post__columns-mobile-5 article{width:20%}.uagb-post-grid .uagb-post__columns-mobile-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:inline-block}.uagb-post-grid .uagb-post-inf-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.uagb-post-grid .uagb-post-inf-loader div{width:18px;height:18px;background-color:#0085ba;border-radius:100%;display:inline-block;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-1{animation-delay:-0.32s}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-2{animation-delay:-0.16s}@keyframes sk-bouncedelay{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}
|
3 |
.uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-section__wrap .uagb-section__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-section__wrap .uagb-section__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;transition:opacity 1s}.uagb-section__wrap .uagb-section__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}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-section.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll}}
|
4 |
+
.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:flex;align-items:center;justify-content:center}.uagb-buttons__outer-wrap a{color:inherit}
|
5 |
.uagb-buttons-repeater{display:flex;justify-content:center;align-items:center}.uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center;width:15px}.uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}
|
6 |
+
.uagb-ifb-icon-wrap,.uagb-ifb-icon-wrap *{transition:all 0.2s}.uagb-ifb-icon-wrap .uagb-ifb-icon,.uagb-ifb-content{display:inline-block}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.infobox-icon-above-title .uagb-ifb-left-right-wrap{text-align:center}a.uagb-infobox-cta-link span{font-size:inherit}.uagb-ifb-cta.uagb-infobox-cta-link-style:empty{display:none}a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none}a.uagb-infobox-cta-link:hover,.entry .entry-content a.uagb-infobox-cta-link:hover,a.uagb-infobox-link-wrap:hover,.entry .entry-content a.uagb-infobox-link-wrap:hover .entry .entry-content a.uagb-infobox-cta-link:hover{color:inherit}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{align-self:center}.uagb-infobox-left{text-align:left;justify-content:flex-start}.uagb-infobox-center{text-align:center;justify-content:center}.uagb-infobox-right{text-align:right;justify-content:flex-end}.uagb-ifb-left-right-wrap{width:100%;word-break:break-word}.uagb-infobox-icon-above-title .uagb-ifb-left-right-wrap,.uagb-infobox-icon-below-title .uagb-ifb-left-right-wrap{display:block;min-width:100%;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-js-display:flex;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{justify-content:flex-end}.uagb-ifb-icon-wrap .uagb-ifb-icon span{font-style:initial;height:auto;width:auto}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content{display:inline-block;line-height:0;position:relative;max-width:100%}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content img{display:inline;height:auto !important;max-width:100%;width:auto;box-sizing:content-box;border-radius:inherit}.uagb-ifb-imgicon-wrap .uagb-image-crop-circle img{border-radius:100%}.uagb-ifb-imgicon-wrap .uagb-image-crop-square img{border-radius:0}.uagb-infobox-module-link{position:absolute;width:100%;height:100%;left:0;top:0;bottom:0;right:0;z-index:4}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-left:5px;margin-right:0}.uagb-infobox-link-icon-before{margin-left:0;margin-right:5px}.uagb-infobox-link-icon{transition:all 200ms linear}.uagb-infobox{position:relative}.uagb-ifb-separator{width:30%;border-top-width:2px;border-top-color:#333;border-top-style:solid;display:inline-block;margin:0}.uagb-ifb-separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px}.uagb-ifb-cta-button{display:inline-block;line-height:1;background-color:#818a91;color:#fff;text-align:center}.uagb-ifb-button-wrapper .wp-block-button__link svg{fill:currentColor}.uagb-ifb-cta a{box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title-wrap .uagb-ifb-title,.uagb-ifb-title-wrap .uagb-ifb-title-prefix{padding:0;margin:0;display:block}.uagb-infobox__content-wrap.uagb-infobox{position:relative}.uagb-ifb-icon span{font-size:40px;height:40px;color:#333;width:40px}.uagb-ifb-icon svg{fill:#333}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}.uagb-ifb-left-right-wrap{z-index:1}.uagb-infobox-cta-link{cursor:pointer}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox .uagb-ifb-icon,.uagb-infobox .uagb-ifb-image-content img{display:inline-block;box-sizing:content-box}.uagb-ifb-align-icon-after{margin-left:5px}.uagb-ifb-align-icon-before{margin-right:5px}span.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-text-icon{height:15px;width:15px;font-size:15px;line-height:15px;vertical-align:middle;display:inline-block}.uagb-ifb-button-icon svg,.uagb-ifb-text-icon svg{height:inherit;width:inherit;display:inline-block}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox__outer-wrap{position:relative}a.uagb-infbox__link-to-all{height:100%;width:100%;top:0;left:0;position:absolute;z-index:3;box-shadow:none;text-decoration:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet .uagb-ifb-left-right-wrap{-js-display:inline-flex;display:inline-flex;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-mobile.uagb-reverse-order-mobile .uagb-ifb-left-right-wrap{-js-display:inline-flex;display:inline-flex;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}
|
7 |
.uagb-testimonial__wrap{position:relative;box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{transition:all 0.2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__author-name,.uagb-tm__company{display:inline-block}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;padding:15px;border-radius:inherit;position:relative}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:flex}.uagb-tm__meta-inner{display:inline-block}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__meta{width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{align-self:center}.uagb-tm__desc{margin-bottom:15px}.uagb-tm__author-name{margin-bottom:5px;font-size:30px;line-height:1em}.uagb-tm__company{font-size:15px;font-style:italic;line-height:1em;color:#888888}.is-carousel .uagb-testomonial__outer-wrap{padding-left:10px;padding-right:10px}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__text-wrap{position:relative}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:flex;justify-content:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-45px}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-prev{left:25px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-next{right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:-45px;right:auto}@media (max-width: 976px){.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-tablet.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-tablet.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-tablet.uagb-tm__image-position-right.uagb-tm-reverse-order-tablet .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-tablet.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:15px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:auto;right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{left:15px;right:auto}}@media (max-width: 768px){.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-mobile.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-mobile.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-mobile.uagb-tm__image-position-right.uagb-tm-reverse-order-mobile .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-mobile.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}}
|
8 |
.uagb-team__outer-wrap .uagb-team__prefix{font-size:15px;font-style:italic;color:#888}.uagb-team__outer-wrap .uagb-team__image-wrap img{display:inline;height:auto !important;max-width:100%;width:inherit;box-sizing:content-box;border-radius:inherit}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-circle img{border-radius:100%}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-square img{border-radius:0}.uagb-team__outer-wrap .uagb-team__social-icon-wrap ul{list-style:none;display:flex}.uagb-team__outer-wrap .uagb-team__social-icon a span,.uagb-team__outer-wrap .uagb-team__social-icon a span:before{color:inherit;font-size:inherit;height:inherit;width:inherit}.uagb-team__outer-wrap .uagb-team__social-icon a{font-size:20px;width:20px;height:20px;color:#333;display:block}.uagb-team__outer-wrap .uagb-team__social-icon{margin-right:20px;margin-left:0}.uagb-team__outer-wrap .uagb-team__social-list{margin:0;padding:0}.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.uagb-team__image-position-left .uagb-team__wrap,.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:flex}.uagb-team__image-position-left .uagb-team__content{text-align:left}.uagb-team__image-position-right .uagb-team__content{text-align:right}.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;margin:0;padding:0}.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;margin:0;padding:0}.uagb-team__image-position-left li{margin-right:5px}.uagb-team__image-position-right li{margin-left:5px}.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}@media only screen and (max-width: 976px){.uagb-team__stack-tablet,.uagb-team__stack-tablet .uagb-team__content{text-align:center}.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.uagb-team__stack-tablet .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.uagb-team__stack-mobile,.uagb-team__stack-mobile .uagb-team__content{text-align:center}.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.uagb-team__stack-mobile .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}
|
9 |
.uagb-social-share__outer-wrap .uagb-social-share__wrap{display:flex;align-items:center;justify-content:center}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}.uagb-social-share__outer-wrap .uagb-ss__wrapper:first-child{margin-left:0}.uagb-social-share__outer-wrap .uagb-ss__wrapper:last-child{margin-right:0}.uagb-social-share__layout-vertical .uagb-social-share__wrap{flex-direction:column}@media (max-width: 976px){.uagb-social-share__layout-horizontal .uagb-ss__wrapper{margin-left:0;margin-right:0}}
|
10 |
.wp-block-uagb-social-share .uagb-social-share__wrap .uagb-social-share__wrapper{text-decoration:none}.uagb-social-share__wrap .uagb-social-share__wrapper{box-shadow:none}.uagb-social-share__outer-wrap:not(.uagb-social-share__no-label) .uagb-social-share__source-wrap{margin-right:15px}.uagb-social-share__outer-wrap.uagb-social-share__icon-at-top .uagb-social-share__source-wrap{align-self:flex-start;margin-top:5px}
|
11 |
.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
|
12 |
+
.uagb-icon-list__outer-wrap .uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:focus,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:active,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:visited{text-decoration:none}.uagb-icon-list__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap,.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{width:inherit;display:inline-block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{display:inherit;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon,.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon:before{font-size:40px;width:40px;height:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap span.uagb-icon-list__source-wrap{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:first-child{margin-left:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:last-child{margin-right:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper[href="/"]{pointer-events:none;cursor:text}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap .uagb-icon-list__wrapper{text-decoration:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap .uagb-icon-list__wrapper{box-shadow:none}.uagb-icon-list__outer-wrap.uagb-icon-list__icon-at-top .uagb-icon-list__source-wrap{align-self:flex-start}.uagb-icon-list__outer-wrap:not(.uagb-icon-list__no-label) .uagb-icon-list__source-wrap{margin-right:15px}.uagb-icon-list__no-label .uagb-icon-list__label-wrap{display:none}
|
13 |
.wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}
|
14 |
.uagb-rest_menu__wrap{position:relative;padding-left:5px;padding-right:5px;box-sizing:border-box}.uagb-rest_menu__wrap,.uagb-rest_menu__wrap *{transition:all 0.2s}.uagb-rm__image img,.slick-slide .uagb-rm__image img{display:inline-block;box-sizing:content-box}.uagb-rm__title,.uagb-rm__price{display:inline-block}.uagb-rm__desc{margin-bottom:15px;font-style:italic}.uagb-rm__content{overflow:hidden;text-align:left;word-break:break-word;padding:15px;border-radius:inherit;position:relative;padding:5px}.uagb-rm__image-position-left .uagb-rm__content,.uagb-rm__image-position-right .uagb-rm__content{-js-display:flex;display:flex}.uagb-rm-details{display:table;width:100%}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:85%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__title,.uagb-rm__price{display:block}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:center}.uagb-rm__image{overflow:hidden}.uagb-rm__title{margin-bottom:5px;font-size:20px}.uagb-rm__price{font-style:italic;text-align:right}.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%;text-align:center}.uagb-rm__align-center .uagb-rm__price{text-align:center}.uagb-rm__align-right .uagb-rm-details{display:flex;width:100%;flex-direction:row-reverse}.uagb-rm__align-right .uagb-rm__price{text-align:left}.uagb-rm__align-left .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:unset;text-align:left}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__image-content{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:row-reverse;text-align:right}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__image-content{text-align:right}.uagb-rest_menu__outer-wrap{position:relative}.uagb-rm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm-parent{padding:30px}.uagb-rm__text-wrap{position:relative;display:block;width:100%}.uagb-rest_menu__wrap{position:relative}.uagb-rest_menu__outer-wrap:after{content:"";display:block;clear:both}.uagb-rest_menu__wrap.uagb-rm__desk-column-3{display:block;width:33%;float:left;width:calc(100% / 3);padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-2{display:block;width:49%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-1{display:block;width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-moz-flexbox;display:flex}.uagb-rm__separator{width:100%;border-top-width:1px;border-top-color:#b2b4b5;border-top-style:inherit}.uagb-rm__image-position-left .uagb-rm__image{margin-right:10px}.uagb-rm__image-position-right .uagb-rm__image{margin-left:10px}@media (max-width: 976px){.uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{-js-display:flex;display:-moz-flexbox;display:flex;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__tablet-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}@media (max-width: 767px){.uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{-js-display:flex;display:-moz-flexbox;display:flex;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__mobile-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}
|
15 |
.uagb-timeline__widget{position:relative;display:flex;align-items:flex-start;font-size:inherit;color:inherit;margin-bottom:inherit}.uagb-timeline__widget a{text-decoration:none;color:inherit;font-size:inherit;margin-bottom:inherit}.uagb-timeline__image a{display:block;position:relative;max-width:100%}.uagb-timeline__image img{display:inline-block;box-sizing:content-box}.uagb-timeline__author{text-transform:uppercase}.uagb-timeline__main{position:relative}.uagb-content{word-break:break-word}a.uagb-timeline__link{padding:5px 10px;display:inline-block}.uagb-timeline__headingh1,.uagb-timeline__headingh2,.uagb-timeline__headingh3,.uagb-timeline__headingh4,.uagb-timeline__headingh5,.uagb-timeline__headingh6{margin-bottom:0px}.uagb-timeline__inner-date-new p,.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0px}.uagb-timeline__line{background-color:#eeeeee}.uagb-timeline__line__inner{background-color:#5cb85c;width:100%}.uagb-timeline__main .uagb-timeline__icon-new{line-height:1em;display:inline-block;vertical-align:middle;font-style:normal}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right,.uagb-timeline__right-block .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__right-block .uagb-timeline__center-block .uagb-timeline__date-new{display:block}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__right-block .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{top:0;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__right-block .uagb-timeline__day-new{margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__right-block .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__left-block .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__left-block .uagb-timeline__day-new{margin-left:14px;flex-grow:1;order:1}.uagb-timeline__left-block .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{top:0;width:10px;height:40px;position:absolute}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__marker{background-color:#eeeeee;border-radius:999px;position:relative;display:flex;align-items:center;justify-content:center;z-index:1;transition:all .2s ease-in-out}.uagb-timeline__main .uagb-timeline__days .uagb-timeline__field-wrap:hover .uagb-timeline__marker{transition:all .2s ease-in-out}.uagb-timeline__center-block .uagb-timeline__marker{order:1;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{flex-grow:1;flex-basis:50%;max-width:100%;position:relative}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2;padding-left:0;padding-right:12px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2;padding-right:0;padding-left:12px}.uagb-timeline__events-inner-new{padding:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{display:flex;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{display:flex;justify-content:flex-start}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__right-block .uagb-timeline__date-new{margin-left:10px}.uagb-timeline__right-block .uagb-timeline__date-new{display:flex;align-items:center}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__arrow-center .uagb-timeline__widget{align-items:center}.uagb-timeline__arrow-bottom .uagb-timeline__widget{align-items:flex-end}.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;transform:translateY(-50%)}.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;transform:translateY(-100%)}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new,.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{transition:background .2s ease-in-out}.uagb-timeline__arrow:after{transition:border-color .2s ease-in-out}.uagb-timeline__date-new{transition:color .2s ease-in-out}.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__main .uagb-timeline__year{display:flex;position:relative}.uagb-timeline__main .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__day-left .uagb-timeline__arrow:after{content:'';left:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow:after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__icon{width:100px;height:100px;border-radius:50%;text-align:center;line-height:100px;vertical-align:middle;position:relative;z-index:1}.uagb-timeline__main .uagb-timeline__date .uagb-timeline__inner-date-new{white-space:nowrap;margin:0px}.uagb-timeline__main .uagb-timeline__line{position:absolute;transform:translateX(-50%)}.uagb-timeline__right-block .uagb-timeline__main .uagb-timeline__line{position:absolute;transform:translateX(50%)}.uagb-timeline__center-block .uagb-timeline__line{left:50%;right:auto}.uagb-timeline__main .in-view i.uagb-timeline__in-view-icon{transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out}.uagb-timeline__left-block .uagb-timeline__days{text-align:left}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block .uagb-timeline__days{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;top:50%;transform:translateY(-50%);position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__days{text-align:right}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{flex-grow:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{flex-grow:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__widget.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}.uagb-timeline__line__inner{background-color:#61ce70;width:100%}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__line{width:3px}.uagb-timeline__main .uagb-timeline__icon-new{font-size:16px}.uagb-timeline__marker{min-height:3em;min-width:3em;line-height:3em}.uagb-timeline__arrow{height:3em}.uagb-timeline__left-block .uagb-timeline__line{left:calc(3em / 2)}.uagb-timeline__right-block .uagb-timeline__line{right:calc(3em / 2)}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:calc(3em / 2);left:auto}.rtl .uagb-timeline__right-block .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline-desc-content p{font-size:inherit}.uagb-timeline__main p:empty{display:none}@media (max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{flex-grow:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{flex-grow:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}@media (max-width: 767px){.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:calc(3em / 2);left:auto}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}
|
23 |
.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.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__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.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;justify-content:space-between}.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 .uagb-toc__list{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}
|
24 |
.uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}
|
25 |
.wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__wrapper,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-item{height:100%}
|
26 |
+
.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child .uagb-faq-content span{display:inline-block}.wp-block-uagb-faq-child .uagb-faq-content p{margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
|
27 |
+
.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;display:inline-block}.wp-block-uagb-inline-notice .uagb-notice-text{border:solid 2px #000;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:.8;padding:0;background:none;transition:.3s ease}
|
28 |
.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{min-height:20px;width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:0.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
|
dist/blocks.style.css
CHANGED
@@ -1,28 +1,28 @@
|
|
1 |
-
.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:flex;align-items:center;justify-content:center}.uagb-buttons__outer-wrap a{color:inherit}
|
2 |
-
.wp-block-uagb-advanced-heading{padding:0;margin:0 auto}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator-wrap{font-size:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator{border-top-style:solid;display:inline-block;border-top-width:2px;width:5%;margin:0px 0px 10px 0px}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0;text-align:center}
|
3 |
.uagb-buttons-repeater{display:flex;justify-content:center;align-items:center}.uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center;width:15px}.uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}
|
4 |
-
.wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);transform:translateY(-50%) scale(1, 0.65);-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;-webkit-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-ms-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
|
5 |
-
.wp-block-uagb-cf7-styler .wpcf7 *,.wp-block-uagb-cf7-styler .wpcf7 :after,.wp-block-uagb-cf7-styler .wpcf7 :before{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center;height:15px;width:15px;border-style:solid;border-color:#eaeaea;border-width:1px 1px 1px 1px}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before{content:"\2714";line-height:1.2}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.wp-block-uagb-cf7-styler input[type=checkbox]:checked+span:before{font-size:-webkit-calc(12px / 1.2);font-size:calc(12px / 1.2)}.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-border-radius:100%;border-radius:100%}.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-box .wpcf7-radio input[type="radio"]:checked+span:before,.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-underline .wpcf7-radio input[type="radio"]:checked+span:before{background-color:#545454;box-shadow:inset 0px 0px 0px 4px #fafafa}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto;line-height:1em;background:transparent;border-color:#333;border-width:1px;padding:10px 25px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit{margin-left:auto;margin-right:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{display:none}.wp-block-uagb-cf7-styler .wpcf7 select{height:auto;padding:10px;-webkit-appearance:menulist-button;-moz-appearance:menulist-button;-webkit-appearance:menulist-button}.wp-block-uagb-cf7-styler select.wpcf7-form-control.wpcf7-select[multiple="multiple"]{padding:0}.wp-block-uagb-cf7-styler .wpcf7 select option{padding:10px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__highlight-style-bottom_right span.wpcf7-not-valid-tip{display:inline-block;right:0;top:100%;padding:.1em .8em;-webkit-border-radius:2px;border-radius:2px;color:#ffffff;background-color:rgba(255,0,0,0.6);padding:5px 10px;font-size:15px;float:right;margin-top:5px}.wp-block-uagb-cf7-styler .wpcf7 input[type="number"]{height:auto}.wp-block-uagb-cf7-styler .wpcf7 input.wpcf7-date{-webkit-appearance:none}@media (min-width: 769px){.wp-block-uagb-cf7-styler .uagb-cf7_styler-col{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col label,.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;flex-basis:100%}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col br{display:none}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-1{padding-left:0;padding-right:15px}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-3{padding-left:15px;padding-right:0}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col span.wpcf7-form-control-wrap{height:100%}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col select{height:100%}}
|
6 |
.uagb-column__wrap{position:relative;overflow:hidden}.uagb-column__wrap .uagb-column__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2;width:100%}.uagb-column__wrap.uagb-column__align-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__wrap.uagb-column__align-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}.uagb-column__wrap .uagb-column__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-column__wrap .uagb-column__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-column__wrap .uagb-column__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}.wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;flex:1;padding-left:0;padding-right:0;margin-left:-14px;margin-right:-14px;min-width:0;word-break:break-word;overflow-wrap:break-word;flex-basis:100%}@media (max-width: 976px){.uagb-column__align-tablet-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-tablet-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 767px){.uagb-column__align-mobile-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-mobile-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 449px){.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll !important}}
|
7 |
.uagb-cta__outer-wrap{position:relative}.uagb-cta__outer-wrap .wp-block-button__link svg{fill:currentColor}.uagb-cta__outer-wrap .uagb-cta__content{display:inline-block}.uagb-cta__outer-wrap a.uagb-cta__block-link span{font-size:inherit;vertical-align:middle;display:inline-block;float:left}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__link-wrapper{width:30%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__content{width:70%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:right}.uagb-cta__outer-wrap .uagb-cta__link-wrapper.uagb-cta__block-link-style:empty{display:none}.uagb-cta__outer-wrap a.uagb-cta__block-link,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap{text-decoration:none}.uagb-cta__outer-wrap a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap:hover .entry .entry-content a.uagb-cta__block-link:hover{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content-right{text-align:right;justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{width:100%;word-break:break-word}.uagb-cta__outer-wrap .uagb-cta__icon-position-below-title .uagb-cta__left-right-wrap{display:block;min-width:100%;width:100%}.uagb-cta__outer-wrap .uagb-cta__icon-position-left .uagb-cta__left-right-wrap,.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{display:flex}.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-after{margin-left:5px;margin-right:0}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-before{margin-left:0;margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link-icon,.uagb-cta__outer-wrap .uagb-cta__block svg{transition:all 200ms linear}.uagb-cta__outer-wrap .uagb-cta__block{position:relative}.uagb-cta__outer-wrap .uagb-cta-typeof-button{display:inline-block;line-height:1;background-color:transparent;color:#333;text-align:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__outer-wrap .uagb-cta__content-right.uagb-cta__button-valign-middle .uagb-cta__left-right-wrap{display:flex;align-items:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{justify-content:center}.uagb-cta__outer-wrap .uagb-cta__link-wrapper a{box-shadow:none;text-decoration:none}.uagb-cta__outer-wrap .uagb-cta__title{padding:0;margin:0;display:block}.uagb-cta__outer-wrap .uagb-cta__block,.uagb-cta__outer-wrap .uagb-cta__content{z-index:1}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{z-index:1}.uagb-cta__outer-wrap .uagb-cta__block-link{cursor:pointer}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{display:inline-block;float:right;padding:10px 14px}.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content p:empty{display:none}.uagb-cta__outer-wrap .uagb-cta__button-type-none .uagb-cta__content{width:100%}.uagb-cta__outer-wrap .uagb-cta-with-svg{height:14px;width:14px;line-height:14px;display:inline-block;vertical-align:middle}.uagb-cta__outer-wrap .uagb-cta__block svg{display:block;height:inherit;width:inherit}.uagb-cta__outer-wrap .uagb-cta__align-button-after{margin-left:5px}.uagb-cta__outer-wrap .uagb-cta__align-button-before{margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link i{font-style:normal}.uagb-cta__outer-wrap a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}@media only screen and (max-width: 976px){.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}@media screen and (max-width: 767px){.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}
|
8 |
.wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__wrapper,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-item{height:100%}
|
|
|
|
|
9 |
.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
|
10 |
-
.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child .uagb-faq-content span{display:inline-block}.wp-block-uagb-faq-child .uagb-faq-content p{margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block;width:auto;height:auto}
|
11 |
-
.uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}
|
12 |
.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: 976px){.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__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-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__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-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}}
|
13 |
-
.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0;height:auto;border:1px solid #AAA;-webkit-border-radius:0;border-radius:0;background:#FFF;-webkit-box-shadow:none;box-shadow:none;color:#444;text-decoration:none;white-space:nowrap}.uagb-gf-styler__gform-heading-none .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading.custom_gform_heading{display:none}.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading.custom_gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading{display:block}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#FFF}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom:after{content:"\f078";font-family:'FontAwesome' !important;font-size:0.7em;line-height:1;position:absolute;top:45%;-webkit-transform:translateY(-45%);-ms-transform:translateY(-45%);transform:translateY(-45%);right:0.5em;pointer-events:none;z-index:5}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked+label:before{box-shadow:inset 0px 0px 0px 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]+label:before{-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{font-size:13px;padding:10px 20px;-webkit-border-radius:2px;border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:13px;padding:8px 10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:13px;padding:6px 10px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:10px;width:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 10px / 1.2);font-size:calc( 10px / 1.2)}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{font-size:15px;padding:12px 24px;-webkit-border-radius:3px;border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:15px;padding:12px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:15px;padding:10px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:12px;width:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 12px / 1.2);font-size:calc( 12px / 1.2)}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{font-size:16px;padding:15px 30px;-webkit-border-radius:4px;border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:16px;padding:15px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:16px;padding:13px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:15px;width:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 15px / 1.2);font-size:calc( 15px / 1.2)}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{font-size:18px;padding:20px 40px;-webkit-border-radius:5px;border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:18px;padding:20px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:18px;padding:18px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:20px;width:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 20px / 1.2);font-size:calc( 20px / 1.2)}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{font-size:20px;padding:25px 50px;-webkit-border-radius:6px;border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:20px;padding:25px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:20px;padding:23px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:25px;width:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-size:-webkit-calc( 25px / 1.2);font-size:calc( 25px / 1.2)}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){padding:0 0 0 0;margin-right:0;margin-left:0;width:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before{-webkit-border-radius:100%;border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0}.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']+label:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']:checked+label:before{content:"\2714";line-height:1.2}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;text-align:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"]{padding:0px 0px 0px 0px}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{margin-bottom:0;width:100%}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}
|
14 |
-
.uagb-icon-list__outer-wrap .uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:focus,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:active,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:visited{text-decoration:none}.uagb-icon-list__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap,.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{width:inherit;display:inline-block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{display:inherit;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon,.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon:before{font-size:40px;width:40px;height:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon svg{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:first-child{margin-left:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:last-child{margin-right:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper[href="/"]{pointer-events:none;cursor:text}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap .uagb-icon-list__wrapper{text-decoration:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap .uagb-icon-list__wrapper{box-shadow:none}.uagb-icon-list__outer-wrap.uagb-icon-list__icon-at-top .uagb-icon-list__source-wrap{align-self:flex-start}.uagb-icon-list__outer-wrap:not(.uagb-icon-list__no-label) .uagb-icon-list__source-wrap{margin-right:15px}.uagb-icon-list__no-label .uagb-icon-list__label-wrap{display:none}
|
15 |
.wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}
|
16 |
-
.uagb-
|
17 |
-
.uagb-
|
18 |
-
.uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-section__wrap .uagb-section__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-section__wrap .uagb-section__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-section__wrap .uagb-section__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}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-section.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll}}
|
19 |
-
.uagb-post-grid{margin:0;position:relative}.uagb-post-grid .is-grid article{float:left;display:inline-block}.uagb-post-grid .uagb-post__items{display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uagb-post-grid .is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:100%}.uagb-post-grid .is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__inner-wrap>p{display:none}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px}.uagb-post-grid .uagb-post__columns-8 article{width:12.5%}.uagb-post-grid .uagb-post__columns-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-5 article{width:20%}.uagb-post-grid .uagb-post__columns-4 article{width:25%}.uagb-post-grid .uagb-post__columns-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-2 article{width:50%}.uagb-post-grid .uagb-post__columns-1 article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%}.uagb-post-grid .uagb-post__text{text-align:left;box-sizing:border-box}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:15px;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline{text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-bottom:15px}.uagb-post-grid .uagb-post__text .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child):after,.uagb-post-grid .uagb-post__date:not(:last-child):after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{margin-bottom:25px;word-break:break-word}.uagb-post-grid .uagb-post__text p{margin:0 0 15px 0}.uagb-post-grid .uagb-post__text p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block}.uagb-post-grid .uagb-post__link{display:inline-block;box-shadow:none;transition:.3s ease;font-weight:bold;color:inherit;text-decoration:none;padding:5px 10px}.uagb-post-grid .uagb-post__excerpt div+p{margin-top:15px}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.uagb-post-grid .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:relative}.uagb-post__image-position-background .uagb-post__image{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:-45px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:-45px;right:auto}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid .is-grid article,.uagb-post-grid .is-masonry article,.uagb-post-grid .is-carousel article{box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}.uagb-post-grid .uagb-post__columns-tablet-1 article{width:100%}.uagb-post-grid .uagb-post__columns-tablet-2 article{width:50%}.uagb-post-grid .uagb-post__columns-tablet-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-tablet-4 article{width:25%}.uagb-post-grid .uagb-post__columns-tablet-5 article{width:20%}.uagb-post-grid .uagb-post__columns-tablet-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){.uagb-post-grid .uagb-post__columns-mobile-1 article{width:100%}.uagb-post-grid .uagb-post__columns-mobile-2 article{width:50%}.uagb-post-grid .uagb-post__columns-mobile-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-mobile-4 article{width:25%}.uagb-post-grid .uagb-post__columns-mobile-5 article{width:20%}.uagb-post-grid .uagb-post__columns-mobile-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:inline-block}
|
20 |
.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap>p,.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{display:inline-block;position:relative;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap{width:20px;height:20px;display:flex;z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap svg{width:inherit;height:inherit}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix-wrap{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix-wrap{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix-wrap{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__title-wrap{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none}
|
|
|
21 |
.uagb-rest_menu__wrap{position:relative;padding-left:5px;padding-right:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.uagb-rest_menu__wrap,.uagb-rest_menu__wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-rm__image img,.slick-slide .uagb-rm__image img{display:inline-block;box-sizing:content-box}.uagb-rm__title,.uagb-rm__price{display:inline-block}.uagb-rm__desc{margin-bottom:15px;font-style:italic}.uagb-rm__content{overflow:hidden;text-align:left;word-break:break-word;padding:15px;border-radius:inherit;position:relative;padding:5px}.uagb-rm__image-position-left .uagb-rm__content,.uagb-rm__image-position-right .uagb-rm__content{display:-ms-flexbox;-js-display:flex;display:flex}.uagb-rm-details{display:table;width:100%}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:85%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__title,.uagb-rm__price{display:block}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__image-aligned-middle .uagb-rm__image-content{-ms-flex-item-align:center;align-self:center}.uagb-rm__image{overflow:hidden}.uagb-rm__title{margin-bottom:5px;font-size:20px}.uagb-rm__price{font-style:italic;text-align:right}.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%;text-align:center}.uagb-rm__align-center .uagb-rm__price{text-align:center}.uagb-rm__align-right .uagb-rm-details{display:flex;width:100%;flex-direction:row-reverse}.uagb-rm__align-right .uagb-rm__price{text-align:left}.uagb-rm__align-left .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:unset;text-align:left}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__image-content{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:row-reverse;text-align:right}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__image-content{text-align:right}.uagb-rest_menu__outer-wrap{position:relative}.uagb-rm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm-parent{padding:30px}.uagb-rm__text-wrap{position:relative;display:block;width:100%}.uagb-rest_menu__wrap{position:relative}.uagb-rest_menu__outer-wrap:after{content:"";display:block;clear:both}.uagb-rest_menu__wrap.uagb-rm__desk-column-3{display:block;width:33%;float:left;width:calc(100% / 3);padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-2{display:block;width:49%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-1{display:block;width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex}.uagb-rm__separator{width:100%;border-top-width:1px;border-top-color:#b2b4b5;border-top-style:inherit}.uagb-rm__image-position-left .uagb-rm__image{margin-right:10px}.uagb-rm__image-position-right .uagb-rm__image{margin-left:10px}@media (max-width: 976px){.uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__tablet-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}@media (max-width: 767px){.uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__mobile-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}
|
|
|
22 |
.uagb-social-share__outer-wrap .uagb-social-share__wrap{display:flex;align-items:center;justify-content:center}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}.uagb-social-share__outer-wrap .uagb-ss__wrapper:first-child{margin-left:0}.uagb-social-share__outer-wrap .uagb-ss__wrapper:last-child{margin-right:0}.uagb-social-share__layout-vertical .uagb-social-share__wrap{flex-direction:column}@media (max-width: 976px){.uagb-social-share__layout-horizontal .uagb-ss__wrapper{margin-left:0;margin-right:0}}
|
|
|
23 |
.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.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__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.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;justify-content:space-between}.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 .uagb-toc__list{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}
|
|
|
|
|
24 |
.uagb-team__outer-wrap .uagb-team__prefix{font-size:15px;font-style:italic;color:#888}.uagb-team__outer-wrap .uagb-team__image-wrap img{display:inline;height:auto !important;max-width:100%;width:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-team__outer-wrap .uagb-team__social-icon-wrap ul{list-style:none;display:flex}.uagb-team__outer-wrap .uagb-team__social-icon a span,.uagb-team__outer-wrap .uagb-team__social-icon a span:before{color:inherit;font-size:inherit;height:inherit;width:inherit}.uagb-team__outer-wrap .uagb-team__social-icon a{font-size:20px;width:20px;height:20px;color:#333;display:block}.uagb-team__outer-wrap .uagb-team__social-icon{margin-right:20px;margin-left:0}.uagb-team__outer-wrap .uagb-team__social-list{margin:0;padding:0}.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.uagb-team__image-position-left .uagb-team__wrap,.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.uagb-team__image-position-left .uagb-team__content{text-align:left}.uagb-team__image-position-right .uagb-team__content{text-align:right}.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;margin:0;padding:0}.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;margin:0;padding:0}.uagb-team__image-position-left li{margin-right:5px}.uagb-team__image-position-right li{margin-left:5px}.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}@media only screen and (max-width: 976px){.uagb-team__stack-tablet,.uagb-team__stack-tablet .uagb-team__content{text-align:center}.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.uagb-team__stack-tablet .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.uagb-team__stack-mobile,.uagb-team__stack-mobile .uagb-team__content{text-align:center}.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.uagb-team__stack-mobile .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}
|
25 |
-
.uagb-testimonial__wrap{position:relative;box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{transition:all 0.2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__author-name,.uagb-tm__company{display:inline-block}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;padding:15px;border-radius:inherit;position:relative}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:flex}.uagb-tm__meta-inner{display:inline-block}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__meta{width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{align-self:center}.uagb-tm__desc{margin-bottom:15px}.uagb-tm__author-name{margin-bottom:5px;font-size:30px;line-height:1em}.uagb-tm__company{font-size:15px;font-style:italic;line-height:1em;color:#888888}.is-carousel .uagb-testomonial__outer-wrap{padding-left:10px;padding-right:10px}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__text-wrap{position:relative}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:flex;justify-content:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-45px}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-prev{left:25px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-next{right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:-45px;right:auto}@media (max-width: 976px){.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-tablet.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-tablet.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-tablet.uagb-tm__image-position-right.uagb-tm-reverse-order-tablet .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-tablet.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:15px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:auto;right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{left:15px;right:auto}}@media (max-width: 768px){.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-mobile.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-mobile.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-mobile.uagb-tm__image-position-right.uagb-tm-reverse-order-mobile .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-mobile.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}}
|
26 |
.wp-block-uagb-social-share .uagb-social-share__wrap .uagb-social-share__wrapper{text-decoration:none}.uagb-social-share__wrap .uagb-social-share__wrapper{box-shadow:none}.uagb-social-share__outer-wrap:not(.uagb-social-share__no-label) .uagb-social-share__source-wrap{margin-right:15px}.uagb-social-share__outer-wrap.uagb-social-share__icon-at-top .uagb-social-share__source-wrap{-ms-flex-item-align:flex-start;align-self:flex-start;margin-top:5px}
|
27 |
-
.
|
28 |
.uagb-timeline__widget{position:relative;display:flex;align-items:flex-start;font-size:inherit;color:inherit;margin-bottom:inherit}.uagb-timeline__widget a{text-decoration:none;color:inherit;font-size:inherit;margin-bottom:inherit}.uagb-timeline__image a{display:block;position:relative;max-width:100%}.uagb-timeline__image img{display:inline-block;box-sizing:content-box}.uagb-timeline__author{text-transform:uppercase}.uagb-timeline__main{position:relative}.uagb-content{word-break:break-word}a.uagb-timeline__link{padding:5px 10px;display:inline-block}.uagb-timeline__headingh1,.uagb-timeline__headingh2,.uagb-timeline__headingh3,.uagb-timeline__headingh4,.uagb-timeline__headingh5,.uagb-timeline__headingh6{margin-bottom:0px}.uagb-timeline__inner-date-new p,.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0px}.uagb-timeline__line{background-color:#eeeeee}.uagb-timeline__line__inner{background-color:#5cb85c;width:100%}.uagb-timeline__main .uagb-timeline__icon-new{line-height:1em;display:inline-block;vertical-align:middle;font-style:normal}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right,.uagb-timeline__right-block .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__right-block .uagb-timeline__center-block .uagb-timeline__date-new{display:block}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__right-block .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{top:0;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__right-block .uagb-timeline__day-new{margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__right-block .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__left-block .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__left-block .uagb-timeline__day-new{margin-left:14px;flex-grow:1;order:1}.uagb-timeline__left-block .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{top:0;width:10px;height:40px;position:absolute}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__marker{background-color:#eeeeee;border-radius:999px;position:relative;display:flex;align-items:center;justify-content:center;z-index:1;transition:all .2s ease-in-out}.uagb-timeline__main .uagb-timeline__days .uagb-timeline__field-wrap:hover .uagb-timeline__marker{transition:all .2s ease-in-out}.uagb-timeline__center-block .uagb-timeline__marker{order:1;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{flex-grow:1;flex-basis:50%;max-width:100%;position:relative}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2;padding-left:0;padding-right:12px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2;padding-right:0;padding-left:12px}.uagb-timeline__events-inner-new{padding:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{display:flex;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{display:flex;justify-content:flex-start}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__right-block .uagb-timeline__date-new{margin-left:10px}.uagb-timeline__right-block .uagb-timeline__date-new{display:flex;align-items:center}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__arrow-center .uagb-timeline__widget{align-items:center}.uagb-timeline__arrow-bottom .uagb-timeline__widget{align-items:flex-end}.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;transform:translateY(-100%)}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new,.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{transition:background .2s ease-in-out}.uagb-timeline__arrow:after{transition:border-color .2s ease-in-out}.uagb-timeline__date-new{transition:color .2s ease-in-out}.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__main .uagb-timeline__year{display:flex;position:relative}.uagb-timeline__main .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__day-left .uagb-timeline__arrow:after{content:'';left:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow:after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__icon{width:100px;height:100px;-webkit-border-radius:50%;border-radius:50%;text-align:center;line-height:100px;vertical-align:middle;position:relative;z-index:1}.uagb-timeline__main .uagb-timeline__date .uagb-timeline__inner-date-new{white-space:nowrap;margin:0px}.uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-timeline__right-block .uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block .uagb-timeline__line{left:50%;right:auto}.uagb-timeline__main .in-view i.uagb-timeline__in-view-icon{-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-in-out;-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out;transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out}.uagb-timeline__left-block .uagb-timeline__days{text-align:left}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block .uagb-timeline__days{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__days{text-align:right}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}.uagb-timeline__line__inner{background-color:#61ce70;width:100%}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__line{width:3px}.uagb-timeline__main .uagb-timeline__icon-new{font-size:16px}.uagb-timeline__marker{min-height:3em;min-width:3em;line-height:3em}.uagb-timeline__arrow{height:3em}.uagb-timeline__left-block .uagb-timeline__line{left:calc(3em / 2)}.uagb-timeline__right-block .uagb-timeline__line{right:calc(3em / 2)}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:calc(3em / 2);left:auto}.rtl .uagb-timeline__right-block .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline-desc-content p{font-size:inherit}.uagb-timeline__main p:empty{display:none}@media (max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-ms-flex-order:0;order:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}@media (max-width: 767px){.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:calc(3em / 2);left:auto}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}
|
1 |
+
.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:flex;align-items:center;justify-content:center}.uagb-buttons__outer-wrap a{color:inherit}
|
|
|
2 |
.uagb-buttons-repeater{display:flex;justify-content:center;align-items:center}.uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center;width:15px}.uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}
|
3 |
+
.wp-block-uagb-advanced-heading{padding:0;margin:0 auto}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator-wrap{font-size:0;text-align:center}.wp-block-uagb-advanced-heading .uagb-separator{border-top-style:solid;display:inline-block;border-top-width:2px;width:5%;margin:0px 0px 10px 0px}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0;text-align:center}
|
|
|
4 |
.uagb-column__wrap{position:relative;overflow:hidden}.uagb-column__wrap .uagb-column__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2;width:100%}.uagb-column__wrap.uagb-column__align-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__wrap.uagb-column__align-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}.uagb-column__wrap .uagb-column__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-column__wrap .uagb-column__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-column__wrap .uagb-column__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}.wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;flex:1;padding-left:0;padding-right:0;margin-left:-14px;margin-right:-14px;min-width:0;word-break:break-word;overflow-wrap:break-word;flex-basis:100%}@media (max-width: 976px){.uagb-column__align-tablet-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-tablet-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 767px){.uagb-column__align-mobile-left .uagb-column__inner-wrap{margin-left:0;margin-right:auto}.uagb-column__align-mobile-right .uagb-column__inner-wrap{margin-left:auto;margin-right:0}}@media (max-width: 449px){.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll !important}}
|
5 |
.uagb-cta__outer-wrap{position:relative}.uagb-cta__outer-wrap .wp-block-button__link svg{fill:currentColor}.uagb-cta__outer-wrap .uagb-cta__content{display:inline-block}.uagb-cta__outer-wrap a.uagb-cta__block-link span{font-size:inherit;vertical-align:middle;display:inline-block;float:left}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__link-wrapper{width:30%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__content{width:70%}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:right}.uagb-cta__outer-wrap .uagb-cta__link-wrapper.uagb-cta__block-link-style:empty{display:none}.uagb-cta__outer-wrap a.uagb-cta__block-link,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap{text-decoration:none}.uagb-cta__outer-wrap a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link:hover,.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap:hover,.uagb-cta__outer-wrap .entry .entry-content a.uagb-cta__block-link-wrap:hover .entry .entry-content a.uagb-cta__block-link:hover{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content-right{text-align:right;justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{width:100%;word-break:break-word}.uagb-cta__outer-wrap .uagb-cta__icon-position-below-title .uagb-cta__left-right-wrap{display:block;min-width:100%;width:100%}.uagb-cta__outer-wrap .uagb-cta__icon-position-left .uagb-cta__left-right-wrap,.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{display:flex}.uagb-cta__outer-wrap .uagb-cta__icon-position-right .uagb-cta__left-right-wrap{justify-content:flex-end}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-after{margin-left:5px;margin-right:0}.uagb-cta__outer-wrap .uagb-cta__block-link-icon-before{margin-left:0;margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link-icon,.uagb-cta__outer-wrap .uagb-cta__block svg{transition:all 200ms linear}.uagb-cta__outer-wrap .uagb-cta__block{position:relative}.uagb-cta__outer-wrap .uagb-cta-typeof-button{display:inline-block;line-height:1;background-color:transparent;color:#333;text-align:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__outer-wrap .uagb-cta__content-right.uagb-cta__button-valign-middle .uagb-cta__left-right-wrap{display:flex;align-items:center}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{justify-content:center}.uagb-cta__outer-wrap .uagb-cta__link-wrapper a{box-shadow:none;text-decoration:none}.uagb-cta__outer-wrap .uagb-cta__title{padding:0;margin:0;display:block}.uagb-cta__outer-wrap .uagb-cta__block,.uagb-cta__outer-wrap .uagb-cta__content{z-index:1}.uagb-cta__outer-wrap .uagb-cta__left-right-wrap{z-index:1}.uagb-cta__outer-wrap .uagb-cta__block-link{cursor:pointer}.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link{display:inline-block;float:right;padding:10px 14px}.uagb-cta__outer-wrap a.uagb-cta__block-link-wrap{color:inherit}.uagb-cta__outer-wrap .uagb-cta__content p:empty{display:none}.uagb-cta__outer-wrap .uagb-cta__button-type-none .uagb-cta__content{width:100%}.uagb-cta__outer-wrap .uagb-cta-with-svg{height:14px;width:14px;line-height:14px;display:inline-block;vertical-align:middle}.uagb-cta__outer-wrap .uagb-cta__block svg{display:block;height:inherit;width:inherit}.uagb-cta__outer-wrap .uagb-cta__align-button-after{margin-left:5px}.uagb-cta__outer-wrap .uagb-cta__align-button-before{margin-right:5px}.uagb-cta__outer-wrap .uagb-cta__block-link i{font-style:normal}.uagb-cta__outer-wrap a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}@media only screen and (max-width: 976px){.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}@media screen and (max-width: 767px){.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__button-wrapper{display:inline-block;float:none;margin:0 auto}.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}
|
6 |
.wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-child__wrapper,.uagb-faq-layout-grid.uagb-faq-equal-height .uagb-faq__wrap .uagb-faq-item{height:100%}
|
7 |
+
.wp-block-uagb-cf7-styler .wpcf7 *,.wp-block-uagb-cf7-styler .wpcf7 :after,.wp-block-uagb-cf7-styler .wpcf7 :before{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center;height:15px;width:15px;border-style:solid;border-color:#eaeaea;border-width:1px 1px 1px 1px}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before{content:"\2714";line-height:1.2}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span:before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span:before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.wp-block-uagb-cf7-styler input[type=checkbox]:checked+span:before{font-size:-webkit-calc(12px / 1.2);font-size:calc(12px / 1.2)}.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span:before{-webkit-border-radius:100%;border-radius:100%}.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-box .wpcf7-radio input[type="radio"]:checked+span:before,.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-underline .wpcf7-radio input[type="radio"]:checked+span:before{background-color:#545454;box-shadow:inset 0px 0px 0px 4px #fafafa}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto;line-height:1em;background:transparent;border-color:#333;border-width:1px;padding:10px 25px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit{margin-left:auto;margin-right:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{display:none}.wp-block-uagb-cf7-styler .wpcf7 select{height:auto;padding:10px;-webkit-appearance:menulist-button;-moz-appearance:menulist-button;-webkit-appearance:menulist-button}.wp-block-uagb-cf7-styler select.wpcf7-form-control.wpcf7-select[multiple="multiple"]{padding:0}.wp-block-uagb-cf7-styler .wpcf7 select option{padding:10px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__highlight-style-bottom_right span.wpcf7-not-valid-tip{display:inline-block;right:0;top:100%;padding:.1em .8em;-webkit-border-radius:2px;border-radius:2px;color:#ffffff;background-color:rgba(255,0,0,0.6);padding:5px 10px;font-size:15px;float:right;margin-top:5px}.wp-block-uagb-cf7-styler .wpcf7 input[type="number"]{height:auto}.wp-block-uagb-cf7-styler .wpcf7 input.wpcf7-date{-webkit-appearance:none}@media (min-width: 769px){.wp-block-uagb-cf7-styler .uagb-cf7_styler-col{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col label,.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;flex-basis:100%}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col br{display:none}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-1{padding-left:0;padding-right:15px}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>span.uagb-cf7_styler-col-3{padding-left:15px;padding-right:0}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col span.wpcf7-form-control-wrap{height:100%}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col select{height:100%}}
|
8 |
+
.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:focus,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item:active{outline:thin dotted}.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center;width:100%}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:inline-block;vertical-align:middle}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0px;margin-bottom:0px}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child .uagb-faq-content span{display:inline-block}.wp-block-uagb-faq-child .uagb-faq-content p{margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:inline-block;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
|
9 |
.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
|
|
|
|
|
10 |
.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: 976px){.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__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-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__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-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}}
|
11 |
+
.uagb-howto__cost-wrap{display:block}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:block}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}
|
12 |
+
.wp-block-uagb-blockquote{padding:0;margin:0 auto}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{font-style:normal;display:block}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{position:relative;display:inline-block;padding:0px;z-index:1;background:#333;padding:10px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon{height:25px;width:25px;display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{height:inherit;width:inherit;display:inherit}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote blockquote.uagb-blockquote{margin:0;padding:0}.wp-block-uagb-blockquote .uagb-blockquote__wrap,.wp-block-uagb-blockquote .uagb-blockquote__wrap *{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s;-webkit-align-self:flex-end;-ms-flex-item-align:end;align-self:flex-end;line-height:1;position:relative;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;color:#1DA1F2;background-color:transparent;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{height:15px;width:15px;margin-right:5px;fill:#fff;vertical-align:middle;align-self:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text svg{margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1DA1F2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{content:'';border:solid 0.5em transparent;border-right-color:#1DA1F2;position:absolute;left:-0.8em;top:50%;-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);transform:translateY(-50%) scale(1, 0.65);-webkit-transition:0.2s;-o-transition:0.2s;transition:0.2s}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:auto;right:-0.8em;-webkit-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-ms-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-image{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__author-image img{width:50px;height:50px;border-radius:100%;margin-right:10px}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;flex-direction:row}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img{margin-left:10px;margin-right:0}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right .uagb-blockquote__author-image img,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left .uagb-blockquote__author-image img{margin-left:0;margin-right:0;margin-bottom:10px}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{margin-top:10px}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-image,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before,.wp-block-uagb-blockquote .uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before{left:50%;top:-0.8em;right:auto;-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg)}}
|
13 |
.wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}
|
14 |
+
.uagb-icon-list__outer-wrap .uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:focus,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:active,.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap a.uagb-icon-list__wrapper:visited{text-decoration:none}.uagb-icon-list__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap,.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{width:inherit;display:inline-block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-wrap{display:inherit;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon,.uagb-icon-list__outer-wrap .uagb-icon-list__source-icon:before{font-size:40px;width:40px;height:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap span.uagb-icon-list__source-wrap{display:block}.uagb-icon-list__outer-wrap .uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:first-child{margin-left:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper:last-child{margin-right:0}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap>p{display:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrapper[href="/"]{pointer-events:none;cursor:text}.uagb-icon-list__outer-wrap.wp-block-uagb-icon-list .uagb-icon-list__wrap .uagb-icon-list__wrapper{text-decoration:none}.uagb-icon-list__outer-wrap .uagb-icon-list__wrap .uagb-icon-list__wrapper{box-shadow:none}.uagb-icon-list__outer-wrap.uagb-icon-list__icon-at-top .uagb-icon-list__source-wrap{align-self:flex-start}.uagb-icon-list__outer-wrap:not(.uagb-icon-list__no-label) .uagb-icon-list__source-wrap{margin-right:15px}.uagb-icon-list__no-label .uagb-icon-list__label-wrap{display:none}
|
15 |
+
.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__outer-wrap.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;border-top-right-radius:3px;border-top-left-radius:3px;width:100%;display:inline-block}.wp-block-uagb-inline-notice .uagb-notice-text{border:solid 2px #000;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:.8;padding:0;background:none;transition:.3s ease}
|
|
|
|
|
16 |
.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap>p,.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__wrap{display:-webkit-box;display:-ms-flexbox;display:flex}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{display:inline-block;position:relative;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap{width:20px;height:20px;display:flex;z-index:1}.wp-block-uagb-marketing-button .uagb-marketing-btn__icon-wrap svg{width:inherit;height:inherit}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix-wrap{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix-wrap{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix-wrap{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__title-wrap{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none}
|
17 |
+
.uagb-ifb-icon-wrap,.uagb-ifb-icon-wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-icon-wrap .uagb-ifb-icon,.uagb-ifb-content{display:inline-block}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.infobox-icon-above-title .uagb-ifb-left-right-wrap{text-align:center}a.uagb-infobox-cta-link span{font-size:inherit}.uagb-ifb-cta.uagb-infobox-cta-link-style:empty{display:none}a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none}a.uagb-infobox-cta-link:hover,.entry .entry-content a.uagb-infobox-cta-link:hover,a.uagb-infobox-link-wrap:hover,.entry .entry-content a.uagb-infobox-link-wrap:hover .entry .entry-content a.uagb-infobox-cta-link:hover{color:inherit}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-left{text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start;justify-content:flex-start}.uagb-infobox-center{text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center}.uagb-infobox-right{text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-left-right-wrap{width:100%;word-break:break-word}.uagb-infobox-icon-above-title .uagb-ifb-left-right-wrap,.uagb-infobox-icon-below-title .uagb-ifb-left-right-wrap{display:block;min-width:100%;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-icon-wrap .uagb-ifb-icon span{font-style:initial;height:auto;width:auto}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content{display:inline-block;line-height:0;position:relative;max-width:100%}.uagb-ifb-imgicon-wrap .uagb-ifb-image-content img{display:inline;height:auto !important;max-width:100%;width:auto;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-ifb-imgicon-wrap .uagb-image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-ifb-imgicon-wrap .uagb-image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-infobox-module-link{position:absolute;width:100%;height:100%;left:0;top:0;bottom:0;right:0;z-index:4}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-left:5px;margin-right:0}.uagb-infobox-link-icon-before{margin-left:0;margin-right:5px}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox{position:relative}.uagb-ifb-separator{width:30%;border-top-width:2px;border-top-color:#333;border-top-style:solid;display:inline-block;margin:0}.uagb-ifb-separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px}.uagb-ifb-cta-button{display:inline-block;line-height:1;background-color:#818a91;color:#fff;text-align:center}.uagb-ifb-button-wrapper .wp-block-button__link svg{fill:currentColor}.uagb-ifb-cta a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title-wrap .uagb-ifb-title,.uagb-ifb-title-wrap .uagb-ifb-title-prefix{padding:0;margin:0;display:block}.uagb-infobox__content-wrap.uagb-infobox{position:relative}.uagb-ifb-icon span{font-size:40px;height:40px;color:#333;width:40px}.uagb-ifb-icon svg{fill:#333}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}.uagb-ifb-left-right-wrap{z-index:1}.uagb-infobox-cta-link{cursor:pointer}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox .uagb-ifb-icon,.uagb-infobox .uagb-ifb-image-content img{display:inline-block;box-sizing:content-box}.uagb-ifb-align-icon-after{margin-left:5px}.uagb-ifb-align-icon-before{margin-right:5px}span.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-text-icon{height:15px;width:15px;font-size:15px;line-height:15px;vertical-align:middle;display:inline-block}.uagb-ifb-button-icon svg,.uagb-ifb-text-icon svg{height:inherit;width:inherit;display:inline-block}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox__outer-wrap{position:relative}a.uagb-infbox__link-to-all{height:100%;width:100%;top:0;left:0;position:absolute;z-index:3;-webkit-box-shadow:none;box-shadow:none;text-decoration:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-tablet .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{padding:0;margin-bottom:20px}.uagb-infobox-stacked-mobile.uagb-reverse-order-mobile .uagb-ifb-left-right-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;-js-display:inline-flex;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-content,.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{display:block;width:100%;text-align:center}.uagb-infobox.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap .uagb-ifb-imgicon-wrap{margin-left:0px;margin-right:0px}.uagb-infobox-stacked-mobile .uagb-ifb-left-right-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-right:0px}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-imgicon-wrap{margin-left:0px}.uagb-infobox-icon-left-title .uagb-ifb-separator-parent{margin:10px 0}}
|
18 |
.uagb-rest_menu__wrap{position:relative;padding-left:5px;padding-right:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.uagb-rest_menu__wrap,.uagb-rest_menu__wrap *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-rm__image img,.slick-slide .uagb-rm__image img{display:inline-block;box-sizing:content-box}.uagb-rm__title,.uagb-rm__price{display:inline-block}.uagb-rm__desc{margin-bottom:15px;font-style:italic}.uagb-rm__content{overflow:hidden;text-align:left;word-break:break-word;padding:15px;border-radius:inherit;position:relative;padding:5px}.uagb-rm__image-position-left .uagb-rm__content,.uagb-rm__image-position-right .uagb-rm__content{display:-ms-flexbox;-js-display:flex;display:flex}.uagb-rm-details{display:table;width:100%}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:85%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__title,.uagb-rm__price{display:block}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__image-aligned-middle .uagb-rm__image-content{-ms-flex-item-align:center;align-self:center}.uagb-rm__image{overflow:hidden}.uagb-rm__title{margin-bottom:5px;font-size:20px}.uagb-rm__price{font-style:italic;text-align:right}.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%;text-align:center}.uagb-rm__align-center .uagb-rm__price{text-align:center}.uagb-rm__align-right .uagb-rm-details{display:flex;width:100%;flex-direction:row-reverse}.uagb-rm__align-right .uagb-rm__price{text-align:left}.uagb-rm__align-left .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:unset;text-align:left}.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__image-content{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{display:flex;flex-direction:row-reverse;text-align:right}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left}.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__image-content,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__image-content{text-align:right}.uagb-rest_menu__outer-wrap{position:relative}.uagb-rm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm-parent{padding:30px}.uagb-rm__text-wrap{position:relative;display:block;width:100%}.uagb-rest_menu__wrap{position:relative}.uagb-rest_menu__outer-wrap:after{content:"";display:block;clear:both}.uagb-rest_menu__wrap.uagb-rm__desk-column-3{display:block;width:33%;float:left;width:calc(100% / 3);padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-2{display:block;width:49%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__desk-column-1{display:block;width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex}.uagb-rm__separator{width:100%;border-top-width:1px;border-top-color:#b2b4b5;border-top-style:inherit}.uagb-rm__image-position-left .uagb-rm__image{margin-right:10px}.uagb-rm__image-position-right .uagb-rm__image{margin-left:10px}@media (max-width: 976px){.uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__tablet-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__tablet-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}@media (max-width: 767px){.uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content,.uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block;display:block}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse;flex-direction:column-reverse}.uagb-rest_menu__wrap.uagb-rm__mobile-column-3{width:33%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-2{width:50%;float:left;padding-left:10px;padding-right:10px}.uagb-rest_menu__wrap.uagb-rm__mobile-column-1{width:100%;float:left;padding-left:10px;padding-right:10px}.uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-end}.uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:flex-start}}
|
19 |
+
.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0;height:auto;border:1px solid #AAA;-webkit-border-radius:0;border-radius:0;background:#FFF;-webkit-box-shadow:none;box-shadow:none;color:#444;text-decoration:none;white-space:nowrap}.uagb-gf-styler__gform-heading-none .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading.custom_gform_heading{display:none}.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading.custom_gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading{display:block}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#FFF}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom:after{content:"\f078";font-family:'FontAwesome' !important;font-size:0.7em;line-height:1;position:absolute;top:45%;-webkit-transform:translateY(-45%);-ms-transform:translateY(-45%);transform:translateY(-45%);right:0.5em;pointer-events:none;z-index:5}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked+label:before{box-shadow:inset 0px 0px 0px 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]+label:before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]+label:before{-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{font-size:13px;padding:10px 20px;-webkit-border-radius:2px;border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:13px;padding:8px 10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:13px;padding:6px 10px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:10px;width:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 10px / 1.2);font-size:calc( 10px / 1.2)}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{font-size:15px;padding:12px 24px;-webkit-border-radius:3px;border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:15px;padding:12px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:15px;padding:10px 10px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:12px;width:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 12px / 1.2);font-size:calc( 12px / 1.2)}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{font-size:16px;padding:15px 30px;-webkit-border-radius:4px;border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:16px;padding:15px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:16px;padding:13px 10px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:15px;width:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 15px / 1.2);font-size:calc( 15px / 1.2)}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{font-size:18px;padding:20px 40px;-webkit-border-radius:5px;border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:18px;padding:20px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:18px;padding:18px 10px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:20px;width:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{font-size:-webkit-calc( 20px / 1.2);font-size:calc( 20px / 1.2)}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{font-size:20px;padding:25px 50px;-webkit-border-radius:6px;border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{font-size:20px;padding:25px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{font-size:20px;padding:23px 10px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label:before{height:25px;width:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label:before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label:before{font-size:-webkit-calc( 25px / 1.2);font-size:calc( 25px / 1.2)}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){padding:0 0 0 0;margin-right:0;margin-left:0;width:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label:before{-webkit-border-radius:100%;border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{display:-webkit-box;display:-ms-flexbox;-js-display:flex;display:-webkit-flex;display:-moz-box;display:flex;width:auto}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0}.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio'],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type='radio']+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']+label:before{content:'';display:inline-block;vertical-align:middle;margin-right:10px;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type='checkbox']:checked+label:before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type='checkbox']:checked+label:before{content:"\2714";line-height:1.2}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;text-align:center;width:100%}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"]{padding:0px 0px 0px 0px}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{margin-bottom:0;width:100%}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:auto;width:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{margin-left:0;margin-right:auto;width:auto}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{margin-left:auto;margin-right:0;width:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}
|
20 |
.uagb-social-share__outer-wrap .uagb-social-share__wrap{display:flex;align-items:center;justify-content:center}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}.uagb-social-share__outer-wrap .uagb-ss__wrapper:first-child{margin-left:0}.uagb-social-share__outer-wrap .uagb-ss__wrapper:last-child{margin-right:0}.uagb-social-share__layout-vertical .uagb-social-share__wrap{flex-direction:column}@media (max-width: 976px){.uagb-social-share__layout-horizontal .uagb-ss__wrapper{margin-left:0;margin-right:0}}
|
21 |
+
.uagb-post-grid{margin:0;position:relative}.uagb-post-grid .uagb-post__load-more-wrap{width:100%}.uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button{cursor:pointer}.uagb-post-grid .uagb-post__load-more-wrap a{color:inherit}.uagb-post-grid .is-grid article{float:left;display:inline-block}.uagb-post-grid .uagb-post__items{display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uagb-post-grid .is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:100%}.uagb-post-grid .is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__inner-wrap>p{display:none}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px}.uagb-post-grid .uagb-post__columns-8 article{width:12.5%}.uagb-post-grid .uagb-post__columns-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-5 article{width:20%}.uagb-post-grid .uagb-post__columns-4 article{width:25%}.uagb-post-grid .uagb-post__columns-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-2 article{width:50%}.uagb-post-grid .uagb-post__columns-1 article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%}.uagb-post-grid .uagb-post__text{text-align:left;box-sizing:border-box}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:15px;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline{text-transform:uppercase;font-size:11px;letter-spacing:1px;margin-bottom:15px}.uagb-post-grid .uagb-post__text .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child):after,.uagb-post-grid .uagb-post__date:not(:last-child):after{content:"\B7";vertical-align:middle;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{margin-bottom:25px;word-break:break-word}.uagb-post-grid .uagb-post__text p{margin:0 0 15px 0}.uagb-post-grid .uagb-post__text p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block}.uagb-post-grid .uagb-post__link{display:inline-block;box-shadow:none;transition:.3s ease;font-weight:bold;color:inherit;text-decoration:none;padding:5px 10px}.uagb-post-grid .uagb-post__excerpt div+p{margin-top:15px}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.uagb-post-grid .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:relative}.uagb-post__image-position-background .uagb-post__image{position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:-45px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:-45px;right:auto}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid .is-grid article,.uagb-post-grid .is-masonry article,.uagb-post-grid .is-carousel article{box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}.uagb-post-grid .uagb-post__columns-tablet-1 article{width:100%}.uagb-post-grid .uagb-post__columns-tablet-2 article{width:50%}.uagb-post-grid .uagb-post__columns-tablet-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-tablet-4 article{width:25%}.uagb-post-grid .uagb-post__columns-tablet-5 article{width:20%}.uagb-post-grid .uagb-post__columns-tablet-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){.uagb-post-grid .uagb-post__columns-mobile-1 article{width:100%}.uagb-post-grid .uagb-post__columns-mobile-2 article{width:50%}.uagb-post-grid .uagb-post__columns-mobile-3 article{width:33.2%}.uagb-post-grid .uagb-post__columns-mobile-4 article{width:25%}.uagb-post-grid .uagb-post__columns-mobile-5 article{width:20%}.uagb-post-grid .uagb-post__columns-mobile-6 article{width:16.66%}.uagb-post-grid .uagb-post__columns-tablet-7 article{width:14.28%}.uagb-post-grid .uagb-post__columns-tablet-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:inline-block}.uagb-post-grid .uagb-post-inf-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.uagb-post-grid .uagb-post-inf-loader div{width:18px;height:18px;background-color:#0085ba;-webkit-border-radius:100%;border-radius:100%;display:inline-block;-webkit-animation:sk-bouncedelay 1.4s infinite ease-in-out both;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}@-webkit-keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}
|
22 |
.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.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__list-wrap ul li a{color:inherit;line-height:inherit;font-size:inherit}.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;justify-content:space-between}.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 .uagb-toc__list{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}
|
23 |
+
.uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{margin-left:auto;margin-right:auto;position:relative;z-index:2}.uagb-section__wrap .uagb-section__overlay{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-section__wrap .uagb-section__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-section__wrap .uagb-section__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}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-section.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll}}
|
24 |
+
.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{min-height:20px;width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{color:#fff;border:none;border-radius:0}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:0.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}
|
25 |
.uagb-team__outer-wrap .uagb-team__prefix{font-size:15px;font-style:italic;color:#888}.uagb-team__outer-wrap .uagb-team__image-wrap img{display:inline;height:auto !important;max-width:100%;width:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.uagb-team__outer-wrap .uagb-team__image-wrap.uagb-team__image-crop-square img{-webkit-border-radius:0;border-radius:0}.uagb-team__outer-wrap .uagb-team__social-icon-wrap ul{list-style:none;display:flex}.uagb-team__outer-wrap .uagb-team__social-icon a span,.uagb-team__outer-wrap .uagb-team__social-icon a span:before{color:inherit;font-size:inherit;height:inherit;width:inherit}.uagb-team__outer-wrap .uagb-team__social-icon a{font-size:20px;width:20px;height:20px;color:#333;display:block}.uagb-team__outer-wrap .uagb-team__social-icon{margin-right:20px;margin-left:0}.uagb-team__outer-wrap .uagb-team__social-list{margin:0;padding:0}.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.uagb-team__image-position-left .uagb-team__wrap,.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.uagb-team__image-position-left .uagb-team__content{text-align:left}.uagb-team__image-position-right .uagb-team__content{text-align:right}.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;margin:0;padding:0}.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;margin:0;padding:0}.uagb-team__image-position-left li{margin-right:5px}.uagb-team__image-position-right li{margin-left:5px}.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}@media only screen and (max-width: 976px){.uagb-team__stack-tablet,.uagb-team__stack-tablet .uagb-team__content{text-align:center}.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.uagb-team__stack-tablet .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.uagb-team__stack-mobile,.uagb-team__stack-mobile .uagb-team__content{text-align:center}.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.uagb-team__stack-mobile .uagb-team__image-wrap{margin-left:auto !important;margin-right:auto !important}.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}
|
|
|
26 |
.wp-block-uagb-social-share .uagb-social-share__wrap .uagb-social-share__wrapper{text-decoration:none}.uagb-social-share__wrap .uagb-social-share__wrapper{box-shadow:none}.uagb-social-share__outer-wrap:not(.uagb-social-share__no-label) .uagb-social-share__source-wrap{margin-right:15px}.uagb-social-share__outer-wrap.uagb-social-share__icon-at-top .uagb-social-share__source-wrap{-ms-flex-item-align:flex-start;align-self:flex-start;margin-top:5px}
|
27 |
+
.uagb-testimonial__wrap{position:relative;box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{transition:all 0.2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__author-name,.uagb-tm__company{display:inline-block}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;padding:15px;border-radius:inherit;position:relative}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:flex}.uagb-tm__meta-inner{display:inline-block}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__meta{width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{align-self:center}.uagb-tm__desc{margin-bottom:15px}.uagb-tm__author-name{margin-bottom:5px;font-size:30px;line-height:1em}.uagb-tm__company{font-size:15px;font-style:italic;line-height:1em;color:#888888}.is-carousel .uagb-testomonial__outer-wrap{padding-left:10px;padding-right:10px}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__text-wrap{position:relative}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:flex;justify-content:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-45px}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-prev{left:25px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-next{right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:-45px;right:auto}@media (max-width: 976px){.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-tablet.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-tablet.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-tablet.uagb-tm__image-position-right.uagb-tm-reverse-order-tablet .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-tablet.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:15px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:auto;right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{left:15px;right:auto}}@media (max-width: 768px){.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-mobile.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-mobile.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-mobile.uagb-tm__image-position-right.uagb-tm-reverse-order-mobile .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-mobile.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}}
|
28 |
.uagb-timeline__widget{position:relative;display:flex;align-items:flex-start;font-size:inherit;color:inherit;margin-bottom:inherit}.uagb-timeline__widget a{text-decoration:none;color:inherit;font-size:inherit;margin-bottom:inherit}.uagb-timeline__image a{display:block;position:relative;max-width:100%}.uagb-timeline__image img{display:inline-block;box-sizing:content-box}.uagb-timeline__author{text-transform:uppercase}.uagb-timeline__main{position:relative}.uagb-content{word-break:break-word}a.uagb-timeline__link{padding:5px 10px;display:inline-block}.uagb-timeline__headingh1,.uagb-timeline__headingh2,.uagb-timeline__headingh3,.uagb-timeline__headingh4,.uagb-timeline__headingh5,.uagb-timeline__headingh6{margin-bottom:0px}.uagb-timeline__inner-date-new p,.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0px}.uagb-timeline__line{background-color:#eeeeee}.uagb-timeline__line__inner{background-color:#5cb85c;width:100%}.uagb-timeline__main .uagb-timeline__icon-new{line-height:1em;display:inline-block;vertical-align:middle;font-style:normal}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right,.uagb-timeline__right-block .uagb-timeline__widget{flex-direction:row-reverse}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__right-block .uagb-timeline__center-block .uagb-timeline__date-new{display:block}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__right-block .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{top:0;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__right-block .uagb-timeline__day-new{margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{flex-shrink:0;flex-grow:0}.uagb-timeline__right-block .uagb-timeline__day-new{flex-grow:1}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__left-block .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__left-block .uagb-timeline__day-new{margin-left:14px;flex-grow:1;order:1}.uagb-timeline__left-block .uagb-timeline__marker{order:0;flex-shrink:0;flex-grow:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{top:0;width:10px;height:40px;position:absolute}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;transform:translateY(-50%)}.uagb-timeline__marker{background-color:#eeeeee;border-radius:999px;position:relative;display:flex;align-items:center;justify-content:center;z-index:1;transition:all .2s ease-in-out}.uagb-timeline__main .uagb-timeline__days .uagb-timeline__field-wrap:hover .uagb-timeline__marker{transition:all .2s ease-in-out}.uagb-timeline__center-block .uagb-timeline__marker{order:1;flex-shrink:0;flex-grow:0}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{flex-grow:1;flex-basis:50%;max-width:100%;position:relative}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2;padding-left:0;padding-right:12px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2;padding-right:0;padding-left:12px}.uagb-timeline__events-inner-new{padding:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{display:flex;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{display:flex;justify-content:flex-start}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__right-block .uagb-timeline__date-new{margin-left:10px}.uagb-timeline__right-block .uagb-timeline__date-new{display:flex;align-items:center}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0px;top:0;width:10px;height:40px;position:absolute}.uagb-timeline__arrow-center .uagb-timeline__widget{align-items:center}.uagb-timeline__arrow-bottom .uagb-timeline__widget{align-items:flex-end}.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;transform:translateY(-100%)}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new,.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{transition:background .2s ease-in-out}.uagb-timeline__arrow:after{transition:border-color .2s ease-in-out}.uagb-timeline__date-new{transition:color .2s ease-in-out}.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__widget.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__main .uagb-timeline__year{display:flex;position:relative}.uagb-timeline__main .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__day-left .uagb-timeline__arrow:after{content:'';left:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow:after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__icon{width:100px;height:100px;-webkit-border-radius:50%;border-radius:50%;text-align:center;line-height:100px;vertical-align:middle;position:relative;z-index:1}.uagb-timeline__main .uagb-timeline__date .uagb-timeline__inner-date-new{white-space:nowrap;margin:0px}.uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-timeline__right-block .uagb-timeline__main .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block .uagb-timeline__line{left:50%;right:auto}.uagb-timeline__main .in-view i.uagb-timeline__in-view-icon{-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-in-out;-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out;transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out}.uagb-timeline__left-block .uagb-timeline__days{text-align:left}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block .uagb-timeline__days{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';right:0px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__right .uagb-timeline__days{text-align:right}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__widget.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__widget{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;flex-grow:unset;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}.uagb-timeline__line__inner{background-color:#61ce70;width:100%}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__line{width:3px}.uagb-timeline__main .uagb-timeline__icon-new{font-size:16px}.uagb-timeline__marker{min-height:3em;min-width:3em;line-height:3em}.uagb-timeline__arrow{height:3em}.uagb-timeline__left-block .uagb-timeline__line{left:calc(3em / 2)}.uagb-timeline__right-block .uagb-timeline__line{right:calc(3em / 2)}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:calc(3em / 2);left:auto}.rtl .uagb-timeline__right-block .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline-desc-content p{font-size:inherit}.uagb-timeline__main p:empty{display:none}@media (max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:20px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{left:20px;right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{margin-left:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-ms-flex-order:0;order:0;-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1;-ms-flex-order:1;order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__days{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after{content:'';position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__widget.uagb-timeline__right{-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__widget{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{right:16px;left:auto}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{left:auto;right:0;width:10px;height:40px;position:absolute}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{margin-right:16px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-ms-flex-negative:0;flex-shrink:0;-ms-flex-positive:0;flex-grow:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{-ms-flex-positive:1;flex-grow:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow:after{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__days{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-ms-flex-positive:unset;flex-grow:unset;-ms-flex-preferred-size:unset;flex-basis:unset;max-width:100%;position:relative}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-left:0;padding-right:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset;padding-right:0;padding-left:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}@media (max-width: 767px){.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-right:13px solid #eeeeee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow:after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow:after{border-left:13px solid #eeeeee;border-right:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{left:calc(3em / 2);right:auto}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:calc(3em / 2);left:auto}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__author,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-inner{text-align:left}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}
|
dist/blocks/post-timeline/class-uagb-post-timeline.php
CHANGED
@@ -486,6 +486,11 @@ if ( ! class_exists( 'UAGB_Post_Timeline' ) ) {
|
|
486 |
'type' => 'boolean',
|
487 |
'default' => false,
|
488 |
),
|
|
|
|
|
|
|
|
|
|
|
489 |
),
|
490 |
'render_callback' => array( $this, 'post_timeline_callback' ),
|
491 |
)
|
486 |
'type' => 'boolean',
|
487 |
'default' => false,
|
488 |
),
|
489 |
+
// Exclude Current Post.
|
490 |
+
'excludeCurrentPost' => array(
|
491 |
+
'type' => 'boolean',
|
492 |
+
'default' => false,
|
493 |
+
),
|
494 |
),
|
495 |
'render_callback' => array( $this, 'post_timeline_callback' ),
|
496 |
)
|
dist/blocks/post/class-uagb-post.php
CHANGED
@@ -52,6 +52,7 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
|
|
52 |
|
53 |
add_action( 'init', array( $this, 'register_blocks' ) );
|
54 |
add_action( 'wp_ajax_uagb_post_pagination', array( $this, 'post_pagination' ) );
|
|
|
55 |
add_action( 'wp_footer', array( $this, 'add_post_dynamic_script' ), 1000 );
|
56 |
}
|
57 |
|
@@ -207,7 +208,94 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
|
|
207 |
array(
|
208 |
'attributes' => array_merge(
|
209 |
$common_attributes,
|
210 |
-
array(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
211 |
),
|
212 |
'render_callback' => array( $this, 'post_masonry_callback' ),
|
213 |
)
|
@@ -524,6 +612,10 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
|
|
524 |
'type' => 'boolean',
|
525 |
'default' => false,
|
526 |
),
|
|
|
|
|
|
|
|
|
527 |
|
528 |
// CTA attributes.
|
529 |
'ctaColor' => array(
|
@@ -602,6 +694,11 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
|
|
602 |
'type' => 'number',
|
603 |
'default' => 25,
|
604 |
),
|
|
|
|
|
|
|
|
|
|
|
605 |
);
|
606 |
}
|
607 |
|
@@ -722,44 +819,17 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
|
|
722 |
// Nothing to do here.
|
723 |
break;
|
724 |
}
|
|
|
|
|
725 |
?>
|
726 |
-
|
|
|
727 |
|
728 |
<div class="<?php echo esc_html( implode( ' ', $wrap ) ); ?>">
|
729 |
|
730 |
<?php
|
731 |
|
732 |
-
|
733 |
-
$query->the_post();
|
734 |
-
// Filter to modify the attributes based on content requirement.
|
735 |
-
$attributes = apply_filters( 'uagb_post_alter_attributes', $attributes, get_the_ID() );
|
736 |
-
$post_class_enabled = apply_filters( 'uagb_enable_post_class', false, $attributes );
|
737 |
-
|
738 |
-
do_action( "uagb_post_before_article_{$attributes['post_type']}", get_the_ID(), $attributes );
|
739 |
-
|
740 |
-
?>
|
741 |
-
<article <?php ( $post_class_enabled ) ? post_class() : ''; ?>>
|
742 |
-
<?php do_action( "uagb_post_before_inner_wrap_{$attributes['post_type']}", get_the_ID(), $attributes ); ?>
|
743 |
-
<div class="uagb-post__inner-wrap">
|
744 |
-
<?php $this->render_complete_box_link( $attributes ); ?>
|
745 |
-
<?php $this->render_image( $attributes ); ?>
|
746 |
-
<div class="uagb-post__text">
|
747 |
-
<?php $this->render_title( $attributes ); ?>
|
748 |
-
<?php $this->render_meta( $attributes ); ?>
|
749 |
-
<?php $this->render_excerpt( $attributes ); ?>
|
750 |
-
<?php $this->render_button( $attributes ); ?>
|
751 |
-
</div>
|
752 |
-
</div>
|
753 |
-
<?php do_action( "uagb_post_after_inner_wrap_{$attributes['post_type']}", get_the_ID(), $attributes ); ?>
|
754 |
-
</article>
|
755 |
-
|
756 |
-
<?php
|
757 |
-
|
758 |
-
do_action( "uagb_post_after_article_{$attributes['post_type']}", get_the_ID(), $attributes );
|
759 |
-
|
760 |
-
}
|
761 |
-
|
762 |
-
wp_reset_postdata();
|
763 |
?>
|
764 |
</div>
|
765 |
<?php
|
@@ -773,13 +843,38 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
|
|
773 |
<?php
|
774 |
}
|
775 |
|
776 |
-
if ( isset( $attributes['postPagination'] ) && true === $attributes['postPagination'] ) {
|
|
|
777 |
?>
|
778 |
<div class="uagb-post-pagination-wrap">
|
779 |
<?php echo $this->render_pagination( $query, $attributes ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
|
780 |
</div>
|
781 |
<?php
|
782 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
783 |
?>
|
784 |
</div>
|
785 |
<?php
|
@@ -799,7 +894,9 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
|
|
799 |
$base = UAGB_Helper::build_base_url( $permalink_structure, $base );
|
800 |
$format = UAGB_Helper::paged_format( $permalink_structure, $base );
|
801 |
$paged = UAGB_Helper::get_paged( $query );
|
802 |
-
$page_limit =
|
|
|
|
|
803 |
|
804 |
$links = paginate_links(
|
805 |
array(
|
@@ -843,7 +940,73 @@ if ( ! class_exists( 'UAGB_Post' ) ) {
|
|
843 |
|
844 |
wp_send_json_error( ' No attributes recieved' );
|
845 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
846 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
53 |
add_action( 'init', array( $this, 'register_blocks' ) );
|
54 |
add_action( 'wp_ajax_uagb_post_pagination', array( $this, 'post_pagination' ) );
|
55 |
+
add_action( 'wp_ajax_uagb_get_posts', array( $this, 'masonry_pagination' ) );
|
56 |
add_action( 'wp_footer', array( $this, 'add_post_dynamic_script' ), 1000 );
|
57 |
}
|
58 |
|
208 |
array(
|
209 |
'attributes' => array_merge(
|
210 |
$common_attributes,
|
211 |
+
array(
|
212 |
+
'paginationType' => array(
|
213 |
+
'type' => 'string',
|
214 |
+
'default' => 'none',
|
215 |
+
),
|
216 |
+
'paginationEventType' => array(
|
217 |
+
'type' => 'string',
|
218 |
+
'default' => 'button',
|
219 |
+
),
|
220 |
+
'buttonText' => array(
|
221 |
+
'type' => 'string',
|
222 |
+
'default' => 'Load More',
|
223 |
+
),
|
224 |
+
'paginationAlign' => array(
|
225 |
+
'type' => 'string',
|
226 |
+
'default' => 'center',
|
227 |
+
),
|
228 |
+
'paginationTextColor' => array(
|
229 |
+
'type' => 'string',
|
230 |
+
'default' => '',
|
231 |
+
),
|
232 |
+
'paginationMasonryBgColor' => array(
|
233 |
+
'type' => 'string',
|
234 |
+
'default' => '',
|
235 |
+
),
|
236 |
+
'paginationBgHoverColor' => array(
|
237 |
+
'type' => 'string',
|
238 |
+
),
|
239 |
+
'paginationTextHoverColor' => array(
|
240 |
+
'type' => 'string',
|
241 |
+
),
|
242 |
+
'paginationMasonryBorderStyle' => array(
|
243 |
+
'type' => 'string',
|
244 |
+
'default' => 'solid',
|
245 |
+
),
|
246 |
+
'paginationMasonryBorderWidth' => array(
|
247 |
+
'type' => 'number',
|
248 |
+
'default' => 1,
|
249 |
+
),
|
250 |
+
'paginationMasonryBorderRadius' => array(
|
251 |
+
'type' => 'number',
|
252 |
+
'default' => 2,
|
253 |
+
),
|
254 |
+
'paginationMasonryBorderColor' => array(
|
255 |
+
'type' => 'string',
|
256 |
+
'default' => '',
|
257 |
+
),
|
258 |
+
'paginationFontSize' => array(
|
259 |
+
'type' => 'number',
|
260 |
+
'default' => 13,
|
261 |
+
),
|
262 |
+
'loaderColor' => array(
|
263 |
+
'type' => 'string',
|
264 |
+
'default' => '#0085ba',
|
265 |
+
),
|
266 |
+
'loaderSize' => array(
|
267 |
+
'type' => 'number',
|
268 |
+
'default' => 18,
|
269 |
+
),
|
270 |
+
'paginationButtonPaddingType' => array(
|
271 |
+
'type' => 'string',
|
272 |
+
'default' => 'px',
|
273 |
+
),
|
274 |
+
'vpaginationButtonPaddingMobile' => array(
|
275 |
+
'type' => 'number',
|
276 |
+
'default' => 8,
|
277 |
+
),
|
278 |
+
'vpaginationButtonPaddingTablet' => array(
|
279 |
+
'type' => 'number',
|
280 |
+
'default' => 8,
|
281 |
+
),
|
282 |
+
'vpaginationButtonPaddingDesktop' => array(
|
283 |
+
'type' => 'number',
|
284 |
+
'default' => 8,
|
285 |
+
),
|
286 |
+
'hpaginationButtonPaddingMobile' => array(
|
287 |
+
'type' => 'number',
|
288 |
+
'default' => 12,
|
289 |
+
),
|
290 |
+
'hpaginationButtonPaddingTablet' => array(
|
291 |
+
'type' => 'number',
|
292 |
+
'default' => 12,
|
293 |
+
),
|
294 |
+
'hpaginationButtonPaddingDesktop' => array(
|
295 |
+
'type' => 'number',
|
296 |
+
'default' => 12,
|
297 |
+
),
|
298 |
+
)
|
299 |
),
|
300 |
'render_callback' => array( $this, 'post_masonry_callback' ),
|
301 |
)
|
612 |
'type' => 'boolean',
|
613 |
'default' => false,
|
614 |
),
|
615 |
+
'displayPostContentRadio' => array(
|
616 |
+
'type' => 'string',
|
617 |
+
'default' => 'excerpt',
|
618 |
+
),
|
619 |
|
620 |
// CTA attributes.
|
621 |
'ctaColor' => array(
|
694 |
'type' => 'number',
|
695 |
'default' => 25,
|
696 |
),
|
697 |
+
// Exclude Current Post.
|
698 |
+
'excludeCurrentPost' => array(
|
699 |
+
'type' => 'boolean',
|
700 |
+
'default' => false,
|
701 |
+
),
|
702 |
);
|
703 |
}
|
704 |
|
819 |
// Nothing to do here.
|
820 |
break;
|
821 |
}
|
822 |
+
|
823 |
+
$total = $query->max_num_pages;
|
824 |
?>
|
825 |
+
|
826 |
+
<div class="<?php echo esc_html( implode( ' ', $outerwrap ) ); ?>" data-total="<?php echo esc_attr( $total ); ?>">
|
827 |
|
828 |
<div class="<?php echo esc_html( implode( ' ', $wrap ) ); ?>">
|
829 |
|
830 |
<?php
|
831 |
|
832 |
+
$this->posts_articles_markup( $query, $attributes );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
833 |
?>
|
834 |
</div>
|
835 |
<?php
|
843 |
<?php
|
844 |
}
|
845 |
|
846 |
+
if ( ( isset( $attributes['postPagination'] ) && true === $attributes['postPagination'] ) ) {
|
847 |
+
|
848 |
?>
|
849 |
<div class="uagb-post-pagination-wrap">
|
850 |
<?php echo $this->render_pagination( $query, $attributes ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
|
851 |
</div>
|
852 |
<?php
|
853 |
}
|
854 |
+
if ( 'masonry' === $layout && 'infinite' === $attributes['paginationType'] ) {
|
855 |
+
|
856 |
+
if ( 'scroll' === $attributes['paginationEventType'] ) {
|
857 |
+
?>
|
858 |
+
<div class="uagb-post-inf-loader" style="display: none;">
|
859 |
+
<div class="uagb-post-loader-1"></div>
|
860 |
+
<div class="uagb-post-loader-2"></div>
|
861 |
+
<div class="uagb-post-loader-3"></div>
|
862 |
+
</div>
|
863 |
+
<?php
|
864 |
+
|
865 |
+
}
|
866 |
+
if ( 'button' === $attributes['paginationEventType'] ) {
|
867 |
+
?>
|
868 |
+
<div class="uagb-post__load-more-wrap">
|
869 |
+
<span class="uagb-post-pagination-button">
|
870 |
+
<a class="uagb-post__load-more" href="javascript:void(0);">
|
871 |
+
<?php echo esc_html( $attributes['buttonText'] ); ?>
|
872 |
+
</a>
|
873 |
+
</span>
|
874 |
+
</div>
|
875 |
+
<?php
|
876 |
+
}
|
877 |
+
}
|
878 |
?>
|
879 |
</div>
|
880 |
<?php
|
894 |
$base = UAGB_Helper::build_base_url( $permalink_structure, $base );
|
895 |
$format = UAGB_Helper::paged_format( $permalink_structure, $base );
|
896 |
$paged = UAGB_Helper::get_paged( $query );
|
897 |
+
$page_limit = min( $attributes['pageLimit'], $query->max_num_pages );
|
898 |
+
$page_limit = isset( $page_limit ) ? $page_limit : $attributes['postsToShow'];
|
899 |
+
$attributes['postsToShow'];
|
900 |
|
901 |
$links = paginate_links(
|
902 |
array(
|
940 |
|
941 |
wp_send_json_error( ' No attributes recieved' );
|
942 |
}
|
943 |
+
/**
|
944 |
+
* Sends the Posts to Masonry AJAX.
|
945 |
+
*
|
946 |
+
* @since x.x.x
|
947 |
+
*/
|
948 |
+
public function masonry_pagination() {
|
949 |
+
|
950 |
+
check_ajax_referer( 'uagb_masonry_ajax_nonce', 'nonce' );
|
951 |
+
|
952 |
+
$attr = $_POST['attr'];
|
953 |
+
|
954 |
+
$attr['paged'] = $_POST['page_number'];
|
955 |
+
|
956 |
+
$query = UAGB_Helper::get_query( $attr, 'masonry' );
|
957 |
+
|
958 |
+
foreach ( $attr as $key => $attribute ) {
|
959 |
+
$attr[ $key ] = ( 'false' === $attribute ) ? false : ( ( 'true' === $attribute ) ? true : $attribute );
|
960 |
+
}
|
961 |
+
|
962 |
+
ob_start();
|
963 |
+
$this->posts_articles_markup( $query, $attr );
|
964 |
+
$html = ob_get_clean();
|
965 |
|
966 |
+
wp_send_json_success( $html );
|
967 |
+
}
|
968 |
+
|
969 |
+
/**
|
970 |
+
* Render Posts HTML for Masonry Pagination.
|
971 |
+
*
|
972 |
+
* @param object $query WP_Query object.
|
973 |
+
* @param array $attributes Array of block attributes.
|
974 |
+
* @since x.x.x
|
975 |
+
*/
|
976 |
+
public function posts_articles_markup(
|