Version Description
10.04.2020 = * Enhanced: Divi Shapes Module Padding rendering issue. * Enhanced: Overall improvements in Divi Shapes Module. * Enhanced: Modules PHP files has been formatted.
Download this release
Release Info
Developer | divisupreme |
Plugin | Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder |
Version | 2.0.3 |
Comparing to | |
See all releases |
Code changes from version 2.0.1 to 2.0.3
- includes/modules/Badges/Badges.php +115 -110
- includes/modules/BusinessHours/BusinessHours.php +259 -221
- includes/modules/BusinessHoursChild/BusinessHoursChild.php +60 -60
- includes/modules/Buttons/Buttons.php +217 -215
- includes/modules/CalderaForms/CalderaForms.php +654 -587
- includes/modules/ContactForm7/ContactForm7.php +280 -259
- includes/modules/EmbedGoogleMap/EmbedGoogleMap.php +28 -28
- includes/modules/EmbedTwitterTimeline/EmbedTwitterTimeline.php +69 -69
- includes/modules/FacebookSimpleComments/FacebookSimpleComments.php +2 -2
- includes/modules/FacebookSimpleFeed/FacebookSimpleFeed.php +2 -2
- includes/modules/FlipBoxPerk/FlipBoxPerk.php +54 -51
- includes/modules/FlipBoxPerkChild/FlipBoxPerkChild.php +216 -209
- includes/modules/GradientText/GradientText.php +39 -38
- includes/modules/Menu/Menu.php +150 -132
- includes/modules/PerspectiveImage/PerspectiveImage.php +290 -257
- includes/modules/PriceList/PriceList.php +187 -172
- includes/modules/PriceListChild/PriceListChild.php +89 -89
- includes/modules/Shapes/Shapes.php +609 -457
- includes/modules/TextDivider/TextDivider.php +167 -143
- includes/modules/TypingEffect/TypingEffect.php +106 -100
- readme.txt +11 -2
- scripts/builder-bundle.min.js +1 -1
includes/modules/Badges/Badges.php
CHANGED
@@ -6,79 +6,78 @@ class DSM_Text_Badges extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
-
'author' => 'Supreme
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Text Badges', 'dsm-supreme-modules-for-divi' );
|
16 |
-
$this->icon
|
17 |
// Toggle settings
|
18 |
-
$this->settings_modal_toggles
|
19 |
'general' => array(
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
22 |
),
|
23 |
),
|
24 |
'advanced' => array(
|
25 |
-
'toggles' => array(
|
26 |
-
),
|
27 |
),
|
28 |
);
|
29 |
}
|
30 |
|
31 |
public function get_advanced_fields_config() {
|
32 |
return array(
|
33 |
-
'fonts'
|
34 |
'header' => array(
|
35 |
-
'label'
|
36 |
-
'css'
|
37 |
'main' => '%%order_class%% h1.et_pb_module_header, %%order_class%% h2.et_pb_module_header, %%order_class%% h3.et_pb_module_header, %%order_class%% h4.et_pb_module_header, %%order_class%% h5.et_pb_module_header, %%order_class%% h6.et_pb_module_header',
|
38 |
),
|
39 |
-
'font_size'
|
40 |
-
'default'
|
41 |
),
|
42 |
-
'line_height'
|
43 |
'default' => '1em',
|
44 |
),
|
45 |
-
'letter_spacing'
|
46 |
'default' => '0px',
|
47 |
),
|
48 |
-
'header_level'
|
49 |
'default' => 'h4',
|
50 |
),
|
51 |
'hide_text_align' => true,
|
52 |
),
|
53 |
'badges' => array(
|
54 |
-
'label'
|
55 |
-
'css'
|
56 |
'main' => '%%order_class%% .dsm-badges',
|
57 |
),
|
58 |
-
'text_color'
|
59 |
'default' => '#fff',
|
60 |
),
|
61 |
-
'hide_font_size'
|
62 |
'hide_line_height' => true,
|
63 |
-
'hide_text_align'
|
64 |
-
'letter_spacing'
|
65 |
'default' => '0px',
|
66 |
),
|
67 |
),
|
68 |
),
|
69 |
-
'text'
|
70 |
-
'use_text_orientation'
|
71 |
'use_background_layout' => true,
|
72 |
-
'css'
|
73 |
'text_shadow' => '%%order_class%% .dsm-text-badge',
|
74 |
),
|
75 |
-
'options'
|
76 |
'background_layout' => array(
|
77 |
'default' => 'light',
|
78 |
),
|
79 |
),
|
80 |
),
|
81 |
-
'background'
|
82 |
'css' => array(
|
83 |
'main' => '%%order_class%% .dsm-text-badges',
|
84 |
),
|
@@ -88,35 +87,35 @@ class DSM_Text_Badges extends ET_Builder_Module {
|
|
88 |
),
|
89 |
),
|
90 |
),
|
91 |
-
'margin_padding'
|
92 |
-
'css'
|
93 |
'main' => '%%order_class%% .dsm-text-badges',
|
94 |
),
|
95 |
),
|
96 |
-
'borders'
|
97 |
'default' => array(
|
98 |
'css' => array(
|
99 |
'main' => array(
|
100 |
-
'border_radii' =>
|
101 |
-
'border_styles' =>
|
102 |
),
|
103 |
),
|
104 |
),
|
105 |
'image' => array(
|
106 |
-
'css'
|
107 |
'main' => array(
|
108 |
-
'border_radii'
|
109 |
-
'border_styles' =>
|
110 |
-
)
|
111 |
),
|
112 |
-
'label_prefix'
|
113 |
-
'tab_slug'
|
114 |
-
'toggle_slug'
|
115 |
),
|
116 |
),
|
117 |
-
'box_shadow'
|
118 |
-
'default'
|
119 |
-
'css'
|
120 |
'main' => '%%order_class%% .dsm-text-badges',
|
121 |
),
|
122 |
),
|
@@ -127,80 +126,82 @@ class DSM_Text_Badges extends ET_Builder_Module {
|
|
127 |
public function get_fields() {
|
128 |
$et_accent_color = et_builder_accent_color();
|
129 |
return array(
|
130 |
-
'main_text'
|
131 |
-
'label'
|
132 |
-
'type'
|
133 |
-
'option_category'
|
134 |
-
'toggle_slug'
|
135 |
'default_on_front' => 'Badges',
|
136 |
),
|
137 |
-
'badges_text'
|
138 |
-
'label'
|
139 |
-
'type'
|
140 |
-
'option_category'
|
141 |
-
'toggle_slug'
|
142 |
'default_on_front' => 'New',
|
143 |
),
|
144 |
-
'badges_placement'
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
'label'
|
167 |
-
'type'
|
168 |
-
'option_category'
|
169 |
-
'tab_slug'
|
170 |
-
'toggle_slug'
|
171 |
-
'mobile_options'
|
172 |
-
'validate_unit'
|
173 |
-
'default'
|
174 |
-
'default_unit'
|
175 |
-
'default_on_front'=> '',
|
176 |
-
'allow_empty'
|
177 |
-
'responsive'
|
178 |
-
'description'
|
179 |
),
|
180 |
);
|
181 |
}
|
182 |
|
183 |
public function render( $attrs, $content = null, $render_slug ) {
|
184 |
-
$main_text
|
185 |
-
$badges_text
|
186 |
-
$badges_placement
|
187 |
$badges_background_color = $this->props['badges_background_color'];
|
188 |
-
$badges_gap
|
189 |
-
$badges_gap_tablet
|
190 |
-
$badges_gap_phone
|
191 |
-
$badges_gap_last_edited
|
192 |
-
$background_layout
|
193 |
-
$header_level
|
194 |
|
195 |
if ( '' !== $badges_text ) {
|
196 |
-
$badges_text = sprintf(
|
|
|
197 |
$badges_text,
|
198 |
esc_attr( $badges_placement )
|
199 |
);
|
200 |
}
|
201 |
|
202 |
if ( '' !== $main_text ) {
|
203 |
-
$main_text = sprintf(
|
|
|
204 |
et_pb_process_header_level( $header_level, 'h4' ),
|
205 |
$main_text,
|
206 |
( 'before' == $badges_placement ? $badges_text : '' ),
|
@@ -209,13 +210,16 @@ class DSM_Text_Badges extends ET_Builder_Module {
|
|
209 |
}
|
210 |
|
211 |
if ( '' !== $badges_background_color ) {
|
212 |
-
ET_Builder_Element::set_style(
|
213 |
-
|
214 |
-
|
215 |
-
'
|
216 |
-
|
217 |
-
|
218 |
-
|
|
|
|
|
|
|
219 |
}
|
220 |
|
221 |
if ( '' !== $badges_gap_tablet || '' !== $badges_gap_phone || '7px' !== $badges_gap ) {
|
@@ -232,12 +236,13 @@ class DSM_Text_Badges extends ET_Builder_Module {
|
|
232 |
et_pb_generate_responsive_css( $badges_gap_values, '%%order_class%% .dsm-badges-before', 'margin-right', $render_slug );
|
233 |
}
|
234 |
}
|
235 |
-
|
236 |
|
237 |
-
$this->add_classname(
|
238 |
-
|
239 |
-
|
240 |
-
|
|
|
|
|
241 |
|
242 |
// Render module content
|
243 |
$output = sprintf(
|
@@ -249,4 +254,4 @@ class DSM_Text_Badges extends ET_Builder_Module {
|
|
249 |
}
|
250 |
}
|
251 |
|
252 |
-
new DSM_Text_Badges;
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
+
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Text Badges', 'dsm-supreme-modules-for-divi' );
|
16 |
+
$this->icon = '';
|
17 |
// Toggle settings
|
18 |
+
$this->settings_modal_toggles = array(
|
19 |
'general' => array(
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
22 |
),
|
23 |
),
|
24 |
'advanced' => array(
|
25 |
+
'toggles' => array(),
|
|
|
26 |
),
|
27 |
);
|
28 |
}
|
29 |
|
30 |
public function get_advanced_fields_config() {
|
31 |
return array(
|
32 |
+
'fonts' => array(
|
33 |
'header' => array(
|
34 |
+
'label' => esc_html__( 'Main', 'dsm-supreme-modules-for-divi' ),
|
35 |
+
'css' => array(
|
36 |
'main' => '%%order_class%% h1.et_pb_module_header, %%order_class%% h2.et_pb_module_header, %%order_class%% h3.et_pb_module_header, %%order_class%% h4.et_pb_module_header, %%order_class%% h5.et_pb_module_header, %%order_class%% h6.et_pb_module_header',
|
37 |
),
|
38 |
+
'font_size' => array(
|
39 |
+
'default' => '18px',
|
40 |
),
|
41 |
+
'line_height' => array(
|
42 |
'default' => '1em',
|
43 |
),
|
44 |
+
'letter_spacing' => array(
|
45 |
'default' => '0px',
|
46 |
),
|
47 |
+
'header_level' => array(
|
48 |
'default' => 'h4',
|
49 |
),
|
50 |
'hide_text_align' => true,
|
51 |
),
|
52 |
'badges' => array(
|
53 |
+
'label' => esc_html__( 'Badges', 'dsm-supreme-modules-for-divi' ),
|
54 |
+
'css' => array(
|
55 |
'main' => '%%order_class%% .dsm-badges',
|
56 |
),
|
57 |
+
'text_color' => array(
|
58 |
'default' => '#fff',
|
59 |
),
|
60 |
+
'hide_font_size' => true,
|
61 |
'hide_line_height' => true,
|
62 |
+
'hide_text_align' => true,
|
63 |
+
'letter_spacing' => array(
|
64 |
'default' => '0px',
|
65 |
),
|
66 |
),
|
67 |
),
|
68 |
+
'text' => array(
|
69 |
+
'use_text_orientation' => true,
|
70 |
'use_background_layout' => true,
|
71 |
+
'css' => array(
|
72 |
'text_shadow' => '%%order_class%% .dsm-text-badge',
|
73 |
),
|
74 |
+
'options' => array(
|
75 |
'background_layout' => array(
|
76 |
'default' => 'light',
|
77 |
),
|
78 |
),
|
79 |
),
|
80 |
+
'background' => array(
|
81 |
'css' => array(
|
82 |
'main' => '%%order_class%% .dsm-text-badges',
|
83 |
),
|
87 |
),
|
88 |
),
|
89 |
),
|
90 |
+
'margin_padding' => array(
|
91 |
+
'css' => array(
|
92 |
'main' => '%%order_class%% .dsm-text-badges',
|
93 |
),
|
94 |
),
|
95 |
+
'borders' => array(
|
96 |
'default' => array(
|
97 |
'css' => array(
|
98 |
'main' => array(
|
99 |
+
'border_radii' => '%%order_class%% .dsm-text-badges',
|
100 |
+
'border_styles' => '%%order_class%% .dsm-text-badges',
|
101 |
),
|
102 |
),
|
103 |
),
|
104 |
'image' => array(
|
105 |
+
'css' => array(
|
106 |
'main' => array(
|
107 |
+
'border_radii' => '%%order_class%% .dsm-badges',
|
108 |
+
'border_styles' => '%%order_class%% .dsm-badges',
|
109 |
+
),
|
110 |
),
|
111 |
+
'label_prefix' => esc_html__( 'Badge', 'dsm-supreme-modules-for-divi' ),
|
112 |
+
'tab_slug' => 'advanced',
|
113 |
+
'toggle_slug' => 'badges',
|
114 |
),
|
115 |
),
|
116 |
+
'box_shadow' => array(
|
117 |
+
'default' => array(
|
118 |
+
'css' => array(
|
119 |
'main' => '%%order_class%% .dsm-text-badges',
|
120 |
),
|
121 |
),
|
126 |
public function get_fields() {
|
127 |
$et_accent_color = et_builder_accent_color();
|
128 |
return array(
|
129 |
+
'main_text' => array(
|
130 |
+
'label' => esc_html__( 'Main Text', 'dsm-supreme-modules-for-divi' ),
|
131 |
+
'type' => 'text',
|
132 |
+
'option_category' => 'basic_option',
|
133 |
+
'toggle_slug' => 'main_content',
|
134 |
'default_on_front' => 'Badges',
|
135 |
),
|
136 |
+
'badges_text' => array(
|
137 |
+
'label' => esc_html__( 'Badges Text', 'dsm-supreme-modules-for-divi' ),
|
138 |
+
'type' => 'text',
|
139 |
+
'option_category' => 'basic_option',
|
140 |
+
'toggle_slug' => 'main_content',
|
141 |
'default_on_front' => 'New',
|
142 |
),
|
143 |
+
'badges_placement' => array(
|
144 |
+
'label' => esc_html__( 'Badges Placement', 'dsm-supreme-modules-for-divi' ),
|
145 |
+
'type' => 'select',
|
146 |
+
'option_category' => 'configuration',
|
147 |
+
'options' => array(
|
148 |
+
'before' => esc_html__( 'Before', 'dsm-supreme-modules-for-divi' ),
|
149 |
+
'after' => esc_html__( 'After', 'dsm-supreme-modules-for-divi' ),
|
150 |
+
),
|
151 |
+
'default' => 'after',
|
152 |
+
'description' => esc_html__( 'Here you can choose the placement of the badges to be before or after the Main Text.', 'dsm-supreme-modules-for-divi' ),
|
153 |
+
'toggle_slug' => 'main_content',
|
154 |
+
),
|
155 |
+
'badges_background_color' => array(
|
156 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
157 |
+
'type' => 'color-alpha',
|
158 |
+
'custom_color' => true,
|
159 |
+
'default' => $et_accent_color,
|
160 |
+
'tab_slug' => 'advanced',
|
161 |
+
'toggle_slug' => 'badges',
|
162 |
+
'description' => esc_html__( 'Here you can define a custom background color for the badge', 'dsm-supreme-modules-for-divi' ),
|
163 |
+
),
|
164 |
+
'badges_gap' => array(
|
165 |
+
'label' => esc_html__( 'Gap', 'dsm-supreme-modules-for-divi' ),
|
166 |
+
'type' => 'range',
|
167 |
+
'option_category' => 'layout',
|
168 |
+
'tab_slug' => 'advanced',
|
169 |
+
'toggle_slug' => 'badges',
|
170 |
+
'mobile_options' => true,
|
171 |
+
'validate_unit' => true,
|
172 |
+
'default' => '7px',
|
173 |
+
'default_unit' => 'px',
|
174 |
+
'default_on_front' => '',
|
175 |
+
'allow_empty' => true,
|
176 |
+
'responsive' => true,
|
177 |
+
'description' => esc_html__( 'Here you can define a gap between the text and the badge', 'dsm-supreme-modules-for-divi' ),
|
178 |
),
|
179 |
);
|
180 |
}
|
181 |
|
182 |
public function render( $attrs, $content = null, $render_slug ) {
|
183 |
+
$main_text = $this->props['main_text'];
|
184 |
+
$badges_text = $this->props['badges_text'];
|
185 |
+
$badges_placement = $this->props['badges_placement'];
|
186 |
$badges_background_color = $this->props['badges_background_color'];
|
187 |
+
$badges_gap = $this->props['badges_gap'];
|
188 |
+
$badges_gap_tablet = $this->props['badges_gap_tablet'];
|
189 |
+
$badges_gap_phone = $this->props['badges_gap_phone'];
|
190 |
+
$badges_gap_last_edited = $this->props['badges_gap_last_edited'];
|
191 |
+
$background_layout = $this->props['background_layout'];
|
192 |
+
$header_level = $this->props['header_level'];
|
193 |
|
194 |
if ( '' !== $badges_text ) {
|
195 |
+
$badges_text = sprintf(
|
196 |
+
'<span class="dsm-badges dsm-badges-%2$s">%1$s</span>',
|
197 |
$badges_text,
|
198 |
esc_attr( $badges_placement )
|
199 |
);
|
200 |
}
|
201 |
|
202 |
if ( '' !== $main_text ) {
|
203 |
+
$main_text = sprintf(
|
204 |
+
'<%1$s class="dsm-text-badges et_pb_module_header">%3$s%2$s%4$s</%1$s>',
|
205 |
et_pb_process_header_level( $header_level, 'h4' ),
|
206 |
$main_text,
|
207 |
( 'before' == $badges_placement ? $badges_text : '' ),
|
210 |
}
|
211 |
|
212 |
if ( '' !== $badges_background_color ) {
|
213 |
+
ET_Builder_Element::set_style(
|
214 |
+
$render_slug,
|
215 |
+
array(
|
216 |
+
'selector' => '%%order_class%% .dsm-badges',
|
217 |
+
'declaration' => sprintf(
|
218 |
+
'background-color: %1$s;',
|
219 |
+
esc_html( $badges_background_color )
|
220 |
+
),
|
221 |
+
)
|
222 |
+
);
|
223 |
}
|
224 |
|
225 |
if ( '' !== $badges_gap_tablet || '' !== $badges_gap_phone || '7px' !== $badges_gap ) {
|
236 |
et_pb_generate_responsive_css( $badges_gap_values, '%%order_class%% .dsm-badges-before', 'margin-right', $render_slug );
|
237 |
}
|
238 |
}
|
|
|
239 |
|
240 |
+
$this->add_classname(
|
241 |
+
array(
|
242 |
+
$this->get_text_orientation_classname(),
|
243 |
+
"et_pb_bg_layout_{$background_layout}",
|
244 |
+
)
|
245 |
+
);
|
246 |
|
247 |
// Render module content
|
248 |
$output = sprintf(
|
254 |
}
|
255 |
}
|
256 |
|
257 |
+
new DSM_Text_Badges;
|
includes/modules/BusinessHours/BusinessHours.php
CHANGED
@@ -14,9 +14,9 @@ class DSM_Business_Hours extends ET_Builder_Module {
|
|
14 |
|
15 |
public function init() {
|
16 |
$this->name = esc_html__( 'Supreme Business Hours', 'dsm-supreme-modules-for-divi' );
|
17 |
-
$this->icon
|
18 |
// Toggle settings
|
19 |
-
$this->settings_modal_toggles
|
20 |
'general' => array(
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Business Days & Timings', 'dsm-supreme-modules-for-divi' ),
|
@@ -24,11 +24,11 @@ class DSM_Business_Hours extends ET_Builder_Module {
|
|
24 |
),
|
25 |
'advanced' => array(
|
26 |
'toggles' => array(
|
27 |
-
'separator'
|
28 |
'title' => esc_html__( 'Separator', 'dsm-supreme-modules-for-divi' ),
|
29 |
'priority' => 70,
|
30 |
),
|
31 |
-
'divider'
|
32 |
'title' => esc_html__( 'Divider', 'dsm-supreme-modules-for-divi' ),
|
33 |
'priority' => 70,
|
34 |
),
|
@@ -44,74 +44,79 @@ class DSM_Business_Hours extends ET_Builder_Module {
|
|
44 |
|
45 |
public function get_advanced_fields_config() {
|
46 |
return array(
|
47 |
-
'fonts'
|
48 |
-
'text'
|
49 |
-
'label'
|
50 |
-
'css'
|
51 |
'main' => '%%order_class%% .dsm_business_hours_child',
|
52 |
),
|
53 |
-
'font_size'
|
54 |
-
'default'
|
55 |
),
|
56 |
-
'line_height'
|
57 |
'default' => '1.7em',
|
58 |
),
|
59 |
-
'letter_spacing'
|
60 |
'default' => '0px',
|
61 |
),
|
62 |
'hide_header_level' => true,
|
63 |
-
'hide_text_align'
|
64 |
-
'hide_text_shadow'
|
65 |
-
'tab_slug'
|
66 |
-
'toggle_slug'
|
67 |
),
|
68 |
'header' => array(
|
69 |
-
'label'
|
70 |
-
'css'
|
71 |
'main' => '%%order_class%% .dsm-business-hours-day',
|
72 |
),
|
73 |
-
'font_size'
|
74 |
-
'default'
|
75 |
),
|
76 |
-
'line_height'
|
77 |
'default' => '1.7em',
|
78 |
),
|
79 |
-
'letter_spacing'
|
80 |
'default' => '0px',
|
81 |
),
|
82 |
'hide_header_level' => true,
|
83 |
-
'hide_text_align'
|
84 |
),
|
85 |
-
'time'
|
86 |
-
'label'
|
87 |
-
'css'
|
88 |
'main' => '%%order_class%% .dsm-business-hours-time',
|
89 |
),
|
90 |
-
'font_size'
|
91 |
-
'default'
|
92 |
),
|
93 |
-
'line_height'
|
94 |
'default' => '1.7em',
|
95 |
),
|
96 |
-
'letter_spacing'
|
97 |
'default' => '0px',
|
98 |
),
|
99 |
'hide_text_align' => true,
|
100 |
),
|
101 |
),
|
102 |
-
'text'
|
103 |
-
'use_text_orientation'
|
104 |
'use_background_layout' => false,
|
105 |
-
'css'
|
106 |
'text_shadow' => '%%order_class%% .dsm_business_hours_child',
|
107 |
),
|
108 |
),
|
109 |
-
'
|
|
|
|
|
|
|
|
|
|
|
110 |
'default' => array(
|
111 |
'css' => array(
|
112 |
'main' => array(
|
113 |
-
'border_radii' =>
|
114 |
-
'border_styles' =>
|
115 |
),
|
116 |
),
|
117 |
),
|
@@ -128,9 +133,9 @@ class DSM_Business_Hours extends ET_Builder_Module {
|
|
128 |
'toggle_slug' => 'image',
|
129 |
),*/
|
130 |
),
|
131 |
-
'box_shadow'
|
132 |
-
'default'
|
133 |
-
'css'
|
134 |
'main' => '%%order_class%%',
|
135 |
),
|
136 |
),
|
@@ -159,127 +164,127 @@ class DSM_Business_Hours extends ET_Builder_Module {
|
|
159 |
'type' => 'select',
|
160 |
'option_category' => 'layout',
|
161 |
'options' => array(
|
162 |
-
'flex-start'
|
163 |
-
'center'
|
164 |
-
'flex-end'
|
165 |
),
|
166 |
-
'default'
|
167 |
'tab_slug' => 'advanced',
|
168 |
'toggle_slug' => 'text',
|
169 |
'description' => esc_html__( 'This setting determines the vertical alignment of your content. Your content can either be align to the top, vertically centered, or aligned to the bottom.', 'dsm-supreme-modules-for-divi' ),
|
170 |
),
|
171 |
-
'separator_style'
|
172 |
'label' => esc_html__( 'Style', 'dsm-supreme-modules-for-divi' ),
|
173 |
'type' => 'select',
|
174 |
'option_category' => 'configuration',
|
175 |
-
|
176 |
-
'none'
|
177 |
-
'solid'
|
178 |
-
'dotted'
|
179 |
-
'dashed'
|
180 |
-
'double'
|
181 |
-
'groove'
|
182 |
-
'ridge'
|
183 |
-
'inset'
|
184 |
-
'outset'
|
185 |
),
|
186 |
-
'default'
|
187 |
-
'tab_slug'
|
188 |
'toggle_slug' => 'separator',
|
189 |
),
|
190 |
-
'separator_weight'
|
191 |
-
'label'
|
192 |
-
'type'
|
193 |
-
'option_category'
|
194 |
-
'default'
|
195 |
'default_on_front' => '2px',
|
196 |
-
'default_unit'
|
197 |
-
'range_settings'
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
),
|
202 |
-
'tab_slug'
|
203 |
-
'toggle_slug'
|
204 |
-
'show_if_not'
|
205 |
'separator_style' => 'none',
|
206 |
),
|
207 |
),
|
208 |
-
'separator_color'
|
209 |
-
'default'
|
210 |
-
'label'
|
211 |
-
'type'
|
212 |
-
'description'
|
213 |
-
'tab_slug'
|
214 |
-
'toggle_slug'
|
215 |
'show_if_not' => array(
|
216 |
'separator_style' => 'none',
|
217 |
),
|
218 |
),
|
219 |
-
'separator_gap'
|
220 |
-
'label'
|
221 |
-
'type'
|
222 |
-
'option_category'
|
223 |
-
'default'
|
224 |
'default_on_front' => '10px',
|
225 |
-
'default_unit'
|
226 |
-
'range_settings'
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
),
|
231 |
-
'tab_slug'
|
232 |
-
'toggle_slug'
|
233 |
),
|
234 |
-
'divider_style'
|
235 |
'label' => esc_html__( 'Style', 'dsm-supreme-modules-for-divi' ),
|
236 |
'type' => 'select',
|
237 |
'option_category' => 'configuration',
|
238 |
-
|
239 |
-
'none'
|
240 |
-
'solid'
|
241 |
-
'dotted'
|
242 |
-
'dashed'
|
243 |
-
'double'
|
244 |
-
'groove'
|
245 |
-
'ridge'
|
246 |
-
'inset'
|
247 |
-
'outset'
|
248 |
),
|
249 |
-
'default'
|
250 |
-
'tab_slug'
|
251 |
'toggle_slug' => 'divider',
|
252 |
),
|
253 |
-
'divider_weight'
|
254 |
-
'label'
|
255 |
-
'type'
|
256 |
-
'option_category'
|
257 |
-
'default'
|
258 |
'default_on_front' => '1px',
|
259 |
-
'default_unit'
|
260 |
-
'range_settings'
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
),
|
265 |
-
'tab_slug'
|
266 |
-
'toggle_slug'
|
267 |
-
'show_if_not'
|
268 |
'divider_style' => 'none',
|
269 |
),
|
270 |
),
|
271 |
-
'divider_color'
|
272 |
-
'default'
|
273 |
-
'label'
|
274 |
-
'type'
|
275 |
-
'description'
|
276 |
-
'tab_slug'
|
277 |
-
'toggle_slug'
|
278 |
'show_if_not' => array(
|
279 |
'divider_style' => 'none',
|
280 |
),
|
281 |
),
|
282 |
-
'item_padding'
|
283 |
'label' => esc_html__( 'Item Padding', 'et_builder' ),
|
284 |
'type' => 'custom_padding',
|
285 |
'mobile_options' => true,
|
@@ -333,13 +338,13 @@ class DSM_Business_Hours extends ET_Builder_Module {
|
|
333 |
}
|
334 |
|
335 |
public function render( $attrs, $content = null, $render_slug ) {
|
336 |
-
$separator_style
|
337 |
-
$separator_weight
|
338 |
-
$separator_color
|
339 |
-
$separator_gap
|
340 |
-
$divider_style
|
341 |
-
$divider_weight
|
342 |
-
$divider_color
|
343 |
$content_orientation = $this->props['content_orientation'];
|
344 |
/*
|
345 |
$image_max_width = $this->props['image_max_width'];
|
@@ -351,11 +356,11 @@ class DSM_Business_Hours extends ET_Builder_Module {
|
|
351 |
$image_spacing_phone = $this->props['image_spacing_phone'];
|
352 |
$image_spacing_last_edited = $this->props['image_spacing_last_edited'];
|
353 |
*/
|
354 |
-
$item_padding_hover
|
355 |
-
$item_padding
|
356 |
-
$item_padding_tablet
|
357 |
-
$item_padding_phone
|
358 |
-
$item_padding_last_edited
|
359 |
|
360 |
/*
|
361 |
if ( '' !== $image_max_width_tablet || '' !== $image_max_width_phone || '' !== $image_max_width ) {
|
@@ -383,87 +388,111 @@ class DSM_Business_Hours extends ET_Builder_Module {
|
|
383 |
}*/
|
384 |
|
385 |
$this->apply_custom_margin_padding(
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
);
|
391 |
|
392 |
if ( 'none' !== $separator_style ) {
|
393 |
-
ET_Builder_Element::set_style(
|
394 |
-
|
395 |
-
|
396 |
-
'
|
397 |
-
|
398 |
-
|
399 |
-
|
|
|
|
|
|
|
400 |
}
|
401 |
|
402 |
if ( '2px' !== $separator_weight ) {
|
403 |
-
ET_Builder_Element::set_style(
|
404 |
-
|
405 |
-
|
406 |
-
'
|
407 |
-
|
408 |
-
|
409 |
-
|
|
|
|
|
|
|
410 |
}
|
411 |
|
412 |
if ( '' !== $separator_color ) {
|
413 |
-
ET_Builder_Element::set_style(
|
414 |
-
|
415 |
-
|
416 |
-
'
|
417 |
-
|
418 |
-
|
419 |
-
|
|
|
|
|
|
|
420 |
}
|
421 |
|
422 |
if ( '10px' !== $separator_gap ) {
|
423 |
-
ET_Builder_Element::set_style(
|
424 |
-
|
425 |
-
|
426 |
-
'
|
427 |
-
|
428 |
-
|
429 |
-
|
|
|
|
|
|
|
430 |
}
|
431 |
|
432 |
if ( 'none' !== $divider_style ) {
|
433 |
-
ET_Builder_Element::set_style(
|
434 |
-
|
435 |
-
|
436 |
-
'
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
}
|
448 |
|
449 |
if ( '' !== $divider_color ) {
|
450 |
-
ET_Builder_Element::set_style(
|
451 |
-
|
452 |
-
|
453 |
-
'
|
454 |
-
|
455 |
-
|
456 |
-
|
|
|
|
|
|
|
457 |
}
|
458 |
|
459 |
if ( 'center' !== $content_orientation ) {
|
460 |
-
ET_Builder_Element::set_style(
|
461 |
-
|
462 |
-
|
463 |
-
'
|
464 |
-
|
465 |
-
|
466 |
-
|
|
|
|
|
|
|
467 |
}
|
468 |
|
469 |
// Render module content
|
@@ -475,36 +504,45 @@ class DSM_Business_Hours extends ET_Builder_Module {
|
|
475 |
return $output;
|
476 |
}
|
477 |
/*credits https://github.com/elegantthemes/create-divi-extension/issues/125#issuecomment-445442095*/
|
478 |
-
public function apply_custom_margin_padding($function_name, $slug, $type, $class, $important = false) {
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
|
|
|
|
|
|
491 |
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
|
|
|
|
|
|
499 |
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
|
|
|
|
|
|
508 |
}
|
509 |
|
510 |
new DSM_Business_Hours;
|
14 |
|
15 |
public function init() {
|
16 |
$this->name = esc_html__( 'Supreme Business Hours', 'dsm-supreme-modules-for-divi' );
|
17 |
+
$this->icon = '}';
|
18 |
// Toggle settings
|
19 |
+
$this->settings_modal_toggles = array(
|
20 |
'general' => array(
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Business Days & Timings', 'dsm-supreme-modules-for-divi' ),
|
24 |
),
|
25 |
'advanced' => array(
|
26 |
'toggles' => array(
|
27 |
+
'separator' => array(
|
28 |
'title' => esc_html__( 'Separator', 'dsm-supreme-modules-for-divi' ),
|
29 |
'priority' => 70,
|
30 |
),
|
31 |
+
'divider' => array(
|
32 |
'title' => esc_html__( 'Divider', 'dsm-supreme-modules-for-divi' ),
|
33 |
'priority' => 70,
|
34 |
),
|
44 |
|
45 |
public function get_advanced_fields_config() {
|
46 |
return array(
|
47 |
+
'fonts' => array(
|
48 |
+
'text' => array(
|
49 |
+
'label' => esc_html__( '', 'dsm-supreme-modules-for-divi' ),
|
50 |
+
'css' => array(
|
51 |
'main' => '%%order_class%% .dsm_business_hours_child',
|
52 |
),
|
53 |
+
'font_size' => array(
|
54 |
+
'default' => '14px',
|
55 |
),
|
56 |
+
'line_height' => array(
|
57 |
'default' => '1.7em',
|
58 |
),
|
59 |
+
'letter_spacing' => array(
|
60 |
'default' => '0px',
|
61 |
),
|
62 |
'hide_header_level' => true,
|
63 |
+
'hide_text_align' => true,
|
64 |
+
'hide_text_shadow' => true,
|
65 |
+
'tab_slug' => 'advanced',
|
66 |
+
'toggle_slug' => 'text',
|
67 |
),
|
68 |
'header' => array(
|
69 |
+
'label' => esc_html__( 'Day', 'dsm-supreme-modules-for-divi' ),
|
70 |
+
'css' => array(
|
71 |
'main' => '%%order_class%% .dsm-business-hours-day',
|
72 |
),
|
73 |
+
'font_size' => array(
|
74 |
+
'default' => '14px',
|
75 |
),
|
76 |
+
'line_height' => array(
|
77 |
'default' => '1.7em',
|
78 |
),
|
79 |
+
'letter_spacing' => array(
|
80 |
'default' => '0px',
|
81 |
),
|
82 |
'hide_header_level' => true,
|
83 |
+
'hide_text_align' => true,
|
84 |
),
|
85 |
+
'time' => array(
|
86 |
+
'label' => esc_html__( 'Time', 'dsm-supreme-modules-for-divi' ),
|
87 |
+
'css' => array(
|
88 |
'main' => '%%order_class%% .dsm-business-hours-time',
|
89 |
),
|
90 |
+
'font_size' => array(
|
91 |
+
'default' => '14px',
|
92 |
),
|
93 |
+
'line_height' => array(
|
94 |
'default' => '1.7em',
|
95 |
),
|
96 |
+
'letter_spacing' => array(
|
97 |
'default' => '0px',
|
98 |
),
|
99 |
'hide_text_align' => true,
|
100 |
),
|
101 |
),
|
102 |
+
'text' => array(
|
103 |
+
'use_text_orientation' => false,
|
104 |
'use_background_layout' => false,
|
105 |
+
'css' => array(
|
106 |
'text_shadow' => '%%order_class%% .dsm_business_hours_child',
|
107 |
),
|
108 |
),
|
109 |
+
'margin_padding' => array(
|
110 |
+
'css' => array(
|
111 |
+
'important' => 'all',
|
112 |
+
),
|
113 |
+
),
|
114 |
+
'borders' => array(
|
115 |
'default' => array(
|
116 |
'css' => array(
|
117 |
'main' => array(
|
118 |
+
'border_radii' => '%%order_class%%',
|
119 |
+
'border_styles' => '%%order_class%%',
|
120 |
),
|
121 |
),
|
122 |
),
|
133 |
'toggle_slug' => 'image',
|
134 |
),*/
|
135 |
),
|
136 |
+
'box_shadow' => array(
|
137 |
+
'default' => array(
|
138 |
+
'css' => array(
|
139 |
'main' => '%%order_class%%',
|
140 |
),
|
141 |
),
|
164 |
'type' => 'select',
|
165 |
'option_category' => 'layout',
|
166 |
'options' => array(
|
167 |
+
'flex-start' => esc_html__( 'Top', 'dsm-supreme-modules-for-divi' ),
|
168 |
+
'center' => esc_html__( 'Center', 'dsm-supreme-modules-for-divi' ),
|
169 |
+
'flex-end' => esc_html__( 'Bottom', 'dsm-supreme-modules-for-divi' ),
|
170 |
),
|
171 |
+
'default' => 'center',
|
172 |
'tab_slug' => 'advanced',
|
173 |
'toggle_slug' => 'text',
|
174 |
'description' => esc_html__( 'This setting determines the vertical alignment of your content. Your content can either be align to the top, vertically centered, or aligned to the bottom.', 'dsm-supreme-modules-for-divi' ),
|
175 |
),
|
176 |
+
'separator_style' => array(
|
177 |
'label' => esc_html__( 'Style', 'dsm-supreme-modules-for-divi' ),
|
178 |
'type' => 'select',
|
179 |
'option_category' => 'configuration',
|
180 |
+
'options' => array(
|
181 |
+
'none' => esc_html__( 'None', 'dsm-supreme-modules-for-divi' ),
|
182 |
+
'solid' => esc_html__( 'Solid', 'dsm-supreme-modules-for-divi' ),
|
183 |
+
'dotted' => esc_html__( 'Dotted', 'dsm-supreme-modules-for-divi' ),
|
184 |
+
'dashed' => esc_html__( 'Dashed', 'dsm-supreme-modules-for-divi' ),
|
185 |
+
'double' => esc_html__( 'Double', 'dsm-supreme-modules-for-divi' ),
|
186 |
+
'groove' => esc_html__( 'Groove', 'dsm-supreme-modules-for-divi' ),
|
187 |
+
'ridge' => esc_html__( 'Ridge', 'dsm-supreme-modules-for-divi' ),
|
188 |
+
'inset' => esc_html__( 'Inset', 'dsm-supreme-modules-for-divi' ),
|
189 |
+
'outset' => esc_html__( 'Outset', 'dsm-supreme-modules-for-divi' ),
|
190 |
),
|
191 |
+
'default' => 'none',
|
192 |
+
'tab_slug' => 'advanced',
|
193 |
'toggle_slug' => 'separator',
|
194 |
),
|
195 |
+
'separator_weight' => array(
|
196 |
+
'label' => esc_html__( 'Weight', 'dsm-supreme-modules-for-divi' ),
|
197 |
+
'type' => 'range',
|
198 |
+
'option_category' => 'configuration',
|
199 |
+
'default' => '2px',
|
200 |
'default_on_front' => '2px',
|
201 |
+
'default_unit' => 'px',
|
202 |
+
'range_settings' => array(
|
203 |
+
'min' => '0',
|
204 |
+
'max' => '10',
|
205 |
+
'step' => '1',
|
206 |
),
|
207 |
+
'tab_slug' => 'advanced',
|
208 |
+
'toggle_slug' => 'separator',
|
209 |
+
'show_if_not' => array(
|
210 |
'separator_style' => 'none',
|
211 |
),
|
212 |
),
|
213 |
+
'separator_color' => array(
|
214 |
+
'default' => '#333',
|
215 |
+
'label' => esc_html__( 'Color', 'dsm-supreme-modules-for-divi' ),
|
216 |
+
'type' => 'color-alpha',
|
217 |
+
'description' => esc_html__( 'Here you can define a custom color for your separator.', 'dsm-supreme-modules-for-divi' ),
|
218 |
+
'tab_slug' => 'advanced',
|
219 |
+
'toggle_slug' => 'separator',
|
220 |
'show_if_not' => array(
|
221 |
'separator_style' => 'none',
|
222 |
),
|
223 |
),
|
224 |
+
'separator_gap' => array(
|
225 |
+
'label' => esc_html__( 'Gap Spacing', 'dsm-supreme-modules-for-divi' ),
|
226 |
+
'type' => 'range',
|
227 |
+
'option_category' => 'configuration',
|
228 |
+
'default' => '10px',
|
229 |
'default_on_front' => '10px',
|
230 |
+
'default_unit' => 'px',
|
231 |
+
'range_settings' => array(
|
232 |
+
'min' => '0',
|
233 |
+
'max' => '40',
|
234 |
+
'step' => '1',
|
235 |
),
|
236 |
+
'tab_slug' => 'advanced',
|
237 |
+
'toggle_slug' => 'separator',
|
238 |
),
|
239 |
+
'divider_style' => array(
|
240 |
'label' => esc_html__( 'Style', 'dsm-supreme-modules-for-divi' ),
|
241 |
'type' => 'select',
|
242 |
'option_category' => 'configuration',
|
243 |
+
'options' => array(
|
244 |
+
'none' => esc_html__( 'None', 'dsm-supreme-modules-for-divi' ),
|
245 |
+
'solid' => esc_html__( 'Solid', 'dsm-supreme-modules-for-divi' ),
|
246 |
+
'dotted' => esc_html__( 'Dotted', 'dsm-supreme-modules-for-divi' ),
|
247 |
+
'dashed' => esc_html__( 'Dashed', 'dsm-supreme-modules-for-divi' ),
|
248 |
+
'double' => esc_html__( 'Double', 'dsm-supreme-modules-for-divi' ),
|
249 |
+
'groove' => esc_html__( 'Groove', 'dsm-supreme-modules-for-divi' ),
|
250 |
+
'ridge' => esc_html__( 'Ridge', 'dsm-supreme-modules-for-divi' ),
|
251 |
+
'inset' => esc_html__( 'Inset', 'dsm-supreme-modules-for-divi' ),
|
252 |
+
'outset' => esc_html__( 'Outset', 'dsm-supreme-modules-for-divi' ),
|
253 |
),
|
254 |
+
'default' => 'none',
|
255 |
+
'tab_slug' => 'advanced',
|
256 |
'toggle_slug' => 'divider',
|
257 |
),
|
258 |
+
'divider_weight' => array(
|
259 |
+
'label' => esc_html__( 'Weight', 'dsm-supreme-modules-for-divi' ),
|
260 |
+
'type' => 'range',
|
261 |
+
'option_category' => 'configuration',
|
262 |
+
'default' => '1px',
|
263 |
'default_on_front' => '1px',
|
264 |
+
'default_unit' => 'px',
|
265 |
+
'range_settings' => array(
|
266 |
+
'min' => '0',
|
267 |
+
'max' => '20',
|
268 |
+
'step' => '1',
|
269 |
),
|
270 |
+
'tab_slug' => 'advanced',
|
271 |
+
'toggle_slug' => 'divider',
|
272 |
+
'show_if_not' => array(
|
273 |
'divider_style' => 'none',
|
274 |
),
|
275 |
),
|
276 |
+
'divider_color' => array(
|
277 |
+
'default' => 'rgba(0,0,0,0.12)',
|
278 |
+
'label' => esc_html__( 'Color', 'dsm-supreme-modules-for-divi' ),
|
279 |
+
'type' => 'color-alpha',
|
280 |
+
'description' => esc_html__( 'Here you can define a custom color for your divider.', 'dsm-supreme-modules-for-divi' ),
|
281 |
+
'tab_slug' => 'advanced',
|
282 |
+
'toggle_slug' => 'divider',
|
283 |
'show_if_not' => array(
|
284 |
'divider_style' => 'none',
|
285 |
),
|
286 |
),
|
287 |
+
'item_padding' => array(
|
288 |
'label' => esc_html__( 'Item Padding', 'et_builder' ),
|
289 |
'type' => 'custom_padding',
|
290 |
'mobile_options' => true,
|
338 |
}
|
339 |
|
340 |
public function render( $attrs, $content = null, $render_slug ) {
|
341 |
+
$separator_style = $this->props['separator_style'];
|
342 |
+
$separator_weight = $this->props['separator_weight'];
|
343 |
+
$separator_color = $this->props['separator_color'];
|
344 |
+
$separator_gap = $this->props['separator_gap'];
|
345 |
+
$divider_style = $this->props['divider_style'];
|
346 |
+
$divider_weight = $this->props['divider_weight'];
|
347 |
+
$divider_color = $this->props['divider_color'];
|
348 |
$content_orientation = $this->props['content_orientation'];
|
349 |
/*
|
350 |
$image_max_width = $this->props['image_max_width'];
|
356 |
$image_spacing_phone = $this->props['image_spacing_phone'];
|
357 |
$image_spacing_last_edited = $this->props['image_spacing_last_edited'];
|
358 |
*/
|
359 |
+
$item_padding_hover = $this->get_hover_value( 'item_padding' );
|
360 |
+
$item_padding = $this->props['item_padding'];
|
361 |
+
$item_padding_tablet = $this->props['item_padding_tablet'];
|
362 |
+
$item_padding_phone = $this->props['item_padding_phone'];
|
363 |
+
$item_padding_last_edited = $this->props['item_padding_last_edited'];
|
364 |
|
365 |
/*
|
366 |
if ( '' !== $image_max_width_tablet || '' !== $image_max_width_phone || '' !== $image_max_width ) {
|
388 |
}*/
|
389 |
|
390 |
$this->apply_custom_margin_padding(
|
391 |
+
$render_slug,
|
392 |
+
'item_padding',
|
393 |
+
'padding',
|
394 |
+
'%%order_class%% .dsm_business_hours_item_wrapper'
|
395 |
);
|
396 |
|
397 |
if ( 'none' !== $separator_style ) {
|
398 |
+
ET_Builder_Element::set_style(
|
399 |
+
$render_slug,
|
400 |
+
array(
|
401 |
+
'selector' => '%%order_class%% .dsm-business-hours-separator',
|
402 |
+
'declaration' => sprintf(
|
403 |
+
'border-bottom-style: %1$s;',
|
404 |
+
esc_attr( $separator_style )
|
405 |
+
),
|
406 |
+
)
|
407 |
+
);
|
408 |
}
|
409 |
|
410 |
if ( '2px' !== $separator_weight ) {
|
411 |
+
ET_Builder_Element::set_style(
|
412 |
+
$render_slug,
|
413 |
+
array(
|
414 |
+
'selector' => '%%order_class%% .dsm-business-hours-separator',
|
415 |
+
'declaration' => sprintf(
|
416 |
+
'border-bottom-width: %1$s;',
|
417 |
+
esc_attr( $separator_weight )
|
418 |
+
),
|
419 |
+
)
|
420 |
+
);
|
421 |
}
|
422 |
|
423 |
if ( '' !== $separator_color ) {
|
424 |
+
ET_Builder_Element::set_style(
|
425 |
+
$render_slug,
|
426 |
+
array(
|
427 |
+
'selector' => '%%order_class%% .dsm-business-hours-separator',
|
428 |
+
'declaration' => sprintf(
|
429 |
+
'border-bottom-color: %1$s;',
|
430 |
+
esc_html( $separator_color )
|
431 |
+
),
|
432 |
+
)
|
433 |
+
);
|
434 |
}
|
435 |
|
436 |
if ( '10px' !== $separator_gap ) {
|
437 |
+
ET_Builder_Element::set_style(
|
438 |
+
$render_slug,
|
439 |
+
array(
|
440 |
+
'selector' => '%%order_class%% .dsm-business-hours-separator',
|
441 |
+
'declaration' => sprintf(
|
442 |
+
'margin-left: %1$s; margin-right: %1$s;',
|
443 |
+
esc_attr( $separator_gap )
|
444 |
+
),
|
445 |
+
)
|
446 |
+
);
|
447 |
}
|
448 |
|
449 |
if ( 'none' !== $divider_style ) {
|
450 |
+
ET_Builder_Element::set_style(
|
451 |
+
$render_slug,
|
452 |
+
array(
|
453 |
+
'selector' => '%%order_class%% .dsm_business_hours_child:not(:last-child)',
|
454 |
+
'declaration' => sprintf(
|
455 |
+
'border-bottom-style: %1$s;',
|
456 |
+
esc_attr( $divider_style )
|
457 |
+
),
|
458 |
+
)
|
459 |
+
);
|
460 |
+
ET_Builder_Element::set_style(
|
461 |
+
$render_slug,
|
462 |
+
array(
|
463 |
+
'selector' => '%%order_class%% .dsm_business_hours_child:not(:last-child)',
|
464 |
+
'declaration' => sprintf(
|
465 |
+
'border-bottom-width: %1$s;',
|
466 |
+
esc_attr( $divider_weight )
|
467 |
+
),
|
468 |
+
)
|
469 |
+
);
|
470 |
}
|
471 |
|
472 |
if ( '' !== $divider_color ) {
|
473 |
+
ET_Builder_Element::set_style(
|
474 |
+
$render_slug,
|
475 |
+
array(
|
476 |
+
'selector' => '%%order_class%% .dsm_business_hours_child:not(:last-child)',
|
477 |
+
'declaration' => sprintf(
|
478 |
+
'border-bottom-color: %1$s;',
|
479 |
+
esc_html( $divider_color )
|
480 |
+
),
|
481 |
+
)
|
482 |
+
);
|
483 |
}
|
484 |
|
485 |
if ( 'center' !== $content_orientation ) {
|
486 |
+
ET_Builder_Element::set_style(
|
487 |
+
$render_slug,
|
488 |
+
array(
|
489 |
+
'selector' => '%%order_class%% .dsm_business_hours_child>div',
|
490 |
+
'declaration' => sprintf(
|
491 |
+
'align-items: %1$s;',
|
492 |
+
esc_attr( $content_orientation )
|
493 |
+
),
|
494 |
+
)
|
495 |
+
);
|
496 |
}
|
497 |
|
498 |
// Render module content
|
504 |
return $output;
|
505 |
}
|
506 |
/*credits https://github.com/elegantthemes/create-divi-extension/issues/125#issuecomment-445442095*/
|
507 |
+
public function apply_custom_margin_padding( $function_name, $slug, $type, $class, $important = false ) {
|
508 |
+
$slug_value = $this->props[ $slug ];
|
509 |
+
$slug_value_tablet = $this->props[ $slug . '_tablet' ];
|
510 |
+
$slug_value_phone = $this->props[ $slug . '_phone' ];
|
511 |
+
$slug_value_last_edited = $this->props[ $slug . '_last_edited' ];
|
512 |
+
$slug_value_responsive_active = et_pb_get_responsive_status( $slug_value_last_edited );
|
513 |
|
514 |
+
if ( isset( $slug_value ) && ! empty( $slug_value ) ) {
|
515 |
+
ET_Builder_Element::set_style(
|
516 |
+
$function_name,
|
517 |
+
array(
|
518 |
+
'selector' => $class,
|
519 |
+
'declaration' => et_builder_get_element_style_css( $slug_value, $type, $important ),
|
520 |
+
)
|
521 |
+
);
|
522 |
+
}
|
523 |
|
524 |
+
if ( isset( $slug_value_tablet ) && ! empty( $slug_value_tablet ) && $slug_value_responsive_active ) {
|
525 |
+
ET_Builder_Element::set_style(
|
526 |
+
$function_name,
|
527 |
+
array(
|
528 |
+
'selector' => $class,
|
529 |
+
'declaration' => et_builder_get_element_style_css( $slug_value_tablet, $type, $important ),
|
530 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
531 |
+
)
|
532 |
+
);
|
533 |
+
}
|
534 |
|
535 |
+
if ( isset( $slug_value_phone ) && ! empty( $slug_value_phone ) && $slug_value_responsive_active ) {
|
536 |
+
ET_Builder_Element::set_style(
|
537 |
+
$function_name,
|
538 |
+
array(
|
539 |
+
'selector' => $class,
|
540 |
+
'declaration' => et_builder_get_element_style_css( $slug_value_phone, $type, $important ),
|
541 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
542 |
+
)
|
543 |
+
);
|
544 |
+
}
|
545 |
+
}
|
546 |
}
|
547 |
|
548 |
new DSM_Business_Hours;
|
includes/modules/BusinessHoursChild/BusinessHoursChild.php
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
|
3 |
class DSM_Business_Hours_Child extends ET_Builder_Module {
|
4 |
|
5 |
-
public $slug
|
6 |
-
public $vb_support
|
7 |
-
public $type
|
8 |
-
public $child_title_var
|
9 |
// If the attribute defined on $this->child_title_var is empty, this attribute will be used instead
|
10 |
public $child_title_fallback_var = 'subtitle';
|
11 |
|
@@ -16,19 +16,19 @@ class DSM_Business_Hours_Child extends ET_Builder_Module {
|
|
16 |
);
|
17 |
|
18 |
public function init() {
|
19 |
-
$this->name
|
20 |
$this->advanced_setting_title_text = esc_html__( 'Business Hours Item', 'dsm-supreme-modules-for-divi' );
|
21 |
-
$this->settings_text
|
22 |
|
23 |
$this->settings_modal_toggles = array(
|
24 |
-
'general'
|
25 |
'toggles' => array(
|
26 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
27 |
'link' => esc_html__( 'Link', 'dsm-supreme-modules-for-divi' ),
|
28 |
'image' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
29 |
),
|
30 |
),
|
31 |
-
'advanced'
|
32 |
'toggles' => array(
|
33 |
'icon_settings' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
34 |
'text' => array(
|
@@ -54,69 +54,69 @@ class DSM_Business_Hours_Child extends ET_Builder_Module {
|
|
54 |
|
55 |
public function get_advanced_fields_config() {
|
56 |
return array(
|
57 |
-
'fonts'
|
58 |
-
'text'
|
59 |
-
'label'
|
60 |
-
'css'
|
61 |
'main' => '%%order_class%% .dsm-business-hours-header',
|
62 |
),
|
63 |
-
'font_size'
|
64 |
-
'default'
|
65 |
),
|
66 |
-
'line_height'
|
67 |
'default' => '1.7em',
|
68 |
),
|
69 |
-
'letter_spacing'
|
70 |
'default' => '0px',
|
71 |
),
|
72 |
'hide_header_level' => true,
|
73 |
-
'hide_text_align'
|
74 |
-
'hide_text_shadow'
|
75 |
-
'tab_slug'
|
76 |
-
'toggle_slug'
|
77 |
),
|
78 |
'header' => array(
|
79 |
-
'label'
|
80 |
-
'css'
|
81 |
'main' => '%%order_class%% .dsm-business-hours-day',
|
82 |
),
|
83 |
-
'font_size'
|
84 |
-
'default'
|
85 |
),
|
86 |
-
'line_height'
|
87 |
'default' => '1.7em',
|
88 |
),
|
89 |
-
'letter_spacing'
|
90 |
'default' => '0px',
|
91 |
),
|
92 |
'hide_header_level' => true,
|
93 |
-
'hide_text_align'
|
94 |
),
|
95 |
-
'time'
|
96 |
-
'label'
|
97 |
-
'css'
|
98 |
'main' => '%%order_class%% .dsm-business-hours-time',
|
99 |
),
|
100 |
-
'font_size'
|
101 |
-
'default'
|
102 |
),
|
103 |
-
'line_height'
|
104 |
'default' => '1.7em',
|
105 |
),
|
106 |
-
'letter_spacing'
|
107 |
'default' => '0px',
|
108 |
),
|
109 |
'hide_text_align' => true,
|
110 |
),
|
111 |
),
|
112 |
-
'text'
|
113 |
-
'use_text_orientation'
|
114 |
'use_background_layout' => false,
|
115 |
-
'css'
|
116 |
'text_shadow' => '%%order_class%% .dsm_business_hours_item_wrapper',
|
117 |
),
|
118 |
),
|
119 |
-
'borders'
|
120 |
'default' => array(),
|
121 |
/*
|
122 |
'image' => array(
|
@@ -131,7 +131,7 @@ class DSM_Business_Hours_Child extends ET_Builder_Module {
|
|
131 |
'toggle_slug' => 'icon_settings',
|
132 |
),*/
|
133 |
),
|
134 |
-
'box_shadow'
|
135 |
'default' => array(),
|
136 |
/*
|
137 |
'image' => array(
|
@@ -148,7 +148,7 @@ class DSM_Business_Hours_Child extends ET_Builder_Module {
|
|
148 |
),
|
149 |
),*/
|
150 |
),
|
151 |
-
'button'
|
152 |
/*
|
153 |
'filters' => array(
|
154 |
'child_filters_target' => array(
|
@@ -161,7 +161,7 @@ class DSM_Business_Hours_Child extends ET_Builder_Module {
|
|
161 |
'main' => '%%order_class%% .dsm-business-hours-image img',
|
162 |
),
|
163 |
),*/
|
164 |
-
'position_fields'
|
165 |
);
|
166 |
}
|
167 |
|
@@ -169,23 +169,23 @@ class DSM_Business_Hours_Child extends ET_Builder_Module {
|
|
169 |
$et_accent_color = et_builder_accent_color();
|
170 |
|
171 |
return array(
|
172 |
-
'time'
|
173 |
-
'label'
|
174 |
-
'type'
|
175 |
-
'option_category'
|
176 |
-
'description'
|
177 |
-
'toggle_slug'
|
178 |
-
'default'
|
179 |
'default_on_front' => '9:00 AM - 6:00 PM',
|
180 |
),
|
181 |
'title' => array(
|
182 |
-
'label'
|
183 |
-
'type'
|
184 |
-
'option_category'
|
185 |
-
'description'
|
186 |
-
'toggle_slug'
|
187 |
-
'default'=> 'Monday',
|
188 |
-
'default_on_front'=> 'Monday',
|
189 |
),
|
190 |
/*
|
191 |
'image' => array(
|
@@ -252,8 +252,8 @@ class DSM_Business_Hours_Child extends ET_Builder_Module {
|
|
252 |
}
|
253 |
|
254 |
public function render( $attrs, $content = null, $render_slug ) {
|
255 |
-
$title
|
256 |
-
$time
|
257 |
/*
|
258 |
$image = $this->props['image'];
|
259 |
$alt = $this->props['alt'];
|
@@ -265,7 +265,7 @@ class DSM_Business_Hours_Child extends ET_Builder_Module {
|
|
265 |
$image_max_width_tablet = $this->props['image_max_width_tablet'];
|
266 |
$image_max_width_phone = $this->props['image_max_width_phone'];
|
267 |
$image_max_width_last_edited = $this->props['image_max_width_last_edited'];*/
|
268 |
-
|
269 |
/*
|
270 |
if ( '' !== $image_max_width_tablet || '' !== $image_max_width_phone || '' !== $image_max_width ) {
|
271 |
$image_max_width_responsive_active = et_pb_get_responsive_status( $image_max_width_last_edited );
|
@@ -311,7 +311,7 @@ class DSM_Business_Hours_Child extends ET_Builder_Module {
|
|
311 |
esc_attr( $generate_css_image_filters )
|
312 |
) : '';*/
|
313 |
|
314 |
-
$video_background
|
315 |
$parallax_image_background = $this->get_parallax_image_background();
|
316 |
|
317 |
// Render module content
|
@@ -334,4 +334,4 @@ class DSM_Business_Hours_Child extends ET_Builder_Module {
|
|
334 |
}
|
335 |
}
|
336 |
|
337 |
-
new DSM_Business_Hours_Child;
|
2 |
|
3 |
class DSM_Business_Hours_Child extends ET_Builder_Module {
|
4 |
|
5 |
+
public $slug = 'dsm_business_hours_child';
|
6 |
+
public $vb_support = 'on';
|
7 |
+
public $type = 'child';
|
8 |
+
public $child_title_var = 'title';
|
9 |
// If the attribute defined on $this->child_title_var is empty, this attribute will be used instead
|
10 |
public $child_title_fallback_var = 'subtitle';
|
11 |
|
16 |
);
|
17 |
|
18 |
public function init() {
|
19 |
+
$this->name = esc_html__( 'Business Hours Item', 'dsm-supreme-modules-for-divi' );
|
20 |
$this->advanced_setting_title_text = esc_html__( 'Business Hours Item', 'dsm-supreme-modules-for-divi' );
|
21 |
+
$this->settings_text = esc_html__( 'Business Hours Item Settings', 'dsm-supreme-modules-for-divi' );
|
22 |
|
23 |
$this->settings_modal_toggles = array(
|
24 |
+
'general' => array(
|
25 |
'toggles' => array(
|
26 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
27 |
'link' => esc_html__( 'Link', 'dsm-supreme-modules-for-divi' ),
|
28 |
'image' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
29 |
),
|
30 |
),
|
31 |
+
'advanced' => array(
|
32 |
'toggles' => array(
|
33 |
'icon_settings' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
34 |
'text' => array(
|
54 |
|
55 |
public function get_advanced_fields_config() {
|
56 |
return array(
|
57 |
+
'fonts' => array(
|
58 |
+
'text' => array(
|
59 |
+
'label' => esc_html__( '', 'dsm-supreme-modules-for-divi' ),
|
60 |
+
'css' => array(
|
61 |
'main' => '%%order_class%% .dsm-business-hours-header',
|
62 |
),
|
63 |
+
'font_size' => array(
|
64 |
+
'default' => '14px',
|
65 |
),
|
66 |
+
'line_height' => array(
|
67 |
'default' => '1.7em',
|
68 |
),
|
69 |
+
'letter_spacing' => array(
|
70 |
'default' => '0px',
|
71 |
),
|
72 |
'hide_header_level' => true,
|
73 |
+
'hide_text_align' => true,
|
74 |
+
'hide_text_shadow' => true,
|
75 |
+
'tab_slug' => 'advanced',
|
76 |
+
'toggle_slug' => 'text',
|
77 |
),
|
78 |
'header' => array(
|
79 |
+
'label' => esc_html__( 'Day', 'dsm-supreme-modules-for-divi' ),
|
80 |
+
'css' => array(
|
81 |
'main' => '%%order_class%% .dsm-business-hours-day',
|
82 |
),
|
83 |
+
'font_size' => array(
|
84 |
+
'default' => '14px',
|
85 |
),
|
86 |
+
'line_height' => array(
|
87 |
'default' => '1.7em',
|
88 |
),
|
89 |
+
'letter_spacing' => array(
|
90 |
'default' => '0px',
|
91 |
),
|
92 |
'hide_header_level' => true,
|
93 |
+
'hide_text_align' => true,
|
94 |
),
|
95 |
+
'time' => array(
|
96 |
+
'label' => esc_html__( 'Time', 'dsm-supreme-modules-for-divi' ),
|
97 |
+
'css' => array(
|
98 |
'main' => '%%order_class%% .dsm-business-hours-time',
|
99 |
),
|
100 |
+
'font_size' => array(
|
101 |
+
'default' => '14px',
|
102 |
),
|
103 |
+
'line_height' => array(
|
104 |
'default' => '1.7em',
|
105 |
),
|
106 |
+
'letter_spacing' => array(
|
107 |
'default' => '0px',
|
108 |
),
|
109 |
'hide_text_align' => true,
|
110 |
),
|
111 |
),
|
112 |
+
'text' => array(
|
113 |
+
'use_text_orientation' => false,
|
114 |
'use_background_layout' => false,
|
115 |
+
'css' => array(
|
116 |
'text_shadow' => '%%order_class%% .dsm_business_hours_item_wrapper',
|
117 |
),
|
118 |
),
|
119 |
+
'borders' => array(
|
120 |
'default' => array(),
|
121 |
/*
|
122 |
'image' => array(
|
131 |
'toggle_slug' => 'icon_settings',
|
132 |
),*/
|
133 |
),
|
134 |
+
'box_shadow' => array(
|
135 |
'default' => array(),
|
136 |
/*
|
137 |
'image' => array(
|
148 |
),
|
149 |
),*/
|
150 |
),
|
151 |
+
'button' => false,
|
152 |
/*
|
153 |
'filters' => array(
|
154 |
'child_filters_target' => array(
|
161 |
'main' => '%%order_class%% .dsm-business-hours-image img',
|
162 |
),
|
163 |
),*/
|
164 |
+
'position_fields' => false,
|
165 |
);
|
166 |
}
|
167 |
|
169 |
$et_accent_color = et_builder_accent_color();
|
170 |
|
171 |
return array(
|
172 |
+
'time' => array(
|
173 |
+
'label' => esc_html__( 'Time', 'dsm-supreme-modules-for-divi' ),
|
174 |
+
'type' => 'text',
|
175 |
+
'option_category' => 'basic_option',
|
176 |
+
'description' => esc_html__( 'The time of the day', 'dsm-supreme-modules-for-divi' ),
|
177 |
+
'toggle_slug' => 'main_content',
|
178 |
+
'default' => '9:00 AM - 6:00 PM',
|
179 |
'default_on_front' => '9:00 AM - 6:00 PM',
|
180 |
),
|
181 |
'title' => array(
|
182 |
+
'label' => esc_html__( 'Day', 'dsm-supreme-modules-for-divi' ),
|
183 |
+
'type' => 'text',
|
184 |
+
'option_category' => 'basic_option',
|
185 |
+
'description' => esc_html__( 'The day', 'dsm-supreme-modules-for-divi' ),
|
186 |
+
'toggle_slug' => 'main_content',
|
187 |
+
'default' => 'Monday',
|
188 |
+
'default_on_front' => 'Monday',
|
189 |
),
|
190 |
/*
|
191 |
'image' => array(
|
252 |
}
|
253 |
|
254 |
public function render( $attrs, $content = null, $render_slug ) {
|
255 |
+
$title = $this->props['title'];
|
256 |
+
$time = $this->props['time'];
|
257 |
/*
|
258 |
$image = $this->props['image'];
|
259 |
$alt = $this->props['alt'];
|
265 |
$image_max_width_tablet = $this->props['image_max_width_tablet'];
|
266 |
$image_max_width_phone = $this->props['image_max_width_phone'];
|
267 |
$image_max_width_last_edited = $this->props['image_max_width_last_edited'];*/
|
268 |
+
|
269 |
/*
|
270 |
if ( '' !== $image_max_width_tablet || '' !== $image_max_width_phone || '' !== $image_max_width ) {
|
271 |
$image_max_width_responsive_active = et_pb_get_responsive_status( $image_max_width_last_edited );
|
311 |
esc_attr( $generate_css_image_filters )
|
312 |
) : '';*/
|
313 |
|
314 |
+
$video_background = $this->video_background();
|
315 |
$parallax_image_background = $this->get_parallax_image_background();
|
316 |
|
317 |
// Render module content
|
334 |
}
|
335 |
}
|
336 |
|
337 |
+
new DSM_Business_Hours_Child;
|
includes/modules/Buttons/Buttons.php
CHANGED
@@ -6,19 +6,19 @@ class DSM_Button extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
'author' => 'Divi Supreme',
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
-
$this->name
|
16 |
-
$this->plural
|
17 |
-
$this->icon
|
18 |
|
19 |
$this->custom_css_fields = array(
|
20 |
'main_element' => array(
|
21 |
-
'label'
|
22 |
'no_space_before_selector' => true,
|
23 |
),
|
24 |
);
|
@@ -27,14 +27,14 @@ class DSM_Button extends ET_Builder_Module {
|
|
27 |
'general' => array(
|
28 |
'toggles' => array(
|
29 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
30 |
-
'links'
|
31 |
-
'separator'
|
32 |
),
|
33 |
),
|
34 |
'advanced' => array(
|
35 |
'toggles' => array(
|
36 |
-
'alignment'
|
37 |
-
'text'
|
38 |
'title' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
39 |
'priority' => 49,
|
40 |
),
|
@@ -46,14 +46,14 @@ class DSM_Button extends ET_Builder_Module {
|
|
46 |
|
47 |
public function get_advanced_fields_config() {
|
48 |
return array(
|
49 |
-
'fonts'
|
50 |
'separator_text' => array(
|
51 |
-
'label'
|
52 |
-
'css'
|
53 |
'main' => '%%order_class%% .dsm-button-separator-text',
|
54 |
),
|
55 |
-
'font_size'
|
56 |
-
'default'
|
57 |
),
|
58 |
'line_height' => array(
|
59 |
'default' => '1em',
|
@@ -63,13 +63,13 @@ class DSM_Button extends ET_Builder_Module {
|
|
63 |
),
|
64 |
),
|
65 |
),
|
66 |
-
'borders'
|
67 |
'default' => false,
|
68 |
),
|
69 |
-
'button'
|
70 |
'button_one' => array(
|
71 |
-
'label'
|
72 |
-
'css'
|
73 |
'main' => '%%order_class%% .et_pb_button_one.et_pb_button',
|
74 |
),
|
75 |
'box_shadow' => array(
|
@@ -79,8 +79,8 @@ class DSM_Button extends ET_Builder_Module {
|
|
79 |
),
|
80 |
),
|
81 |
'button_two' => array(
|
82 |
-
'label'
|
83 |
-
'css'
|
84 |
'main' => '%%order_class%% .et_pb_button_two.et_pb_button',
|
85 |
),
|
86 |
'box_shadow' => array(
|
@@ -92,48 +92,48 @@ class DSM_Button extends ET_Builder_Module {
|
|
92 |
),
|
93 |
'margin_padding' => array(
|
94 |
'css' => array(
|
95 |
-
'padding'
|
96 |
-
'margin'
|
97 |
'important' => 'all',
|
98 |
),
|
99 |
),
|
100 |
-
'text'
|
101 |
-
'use_text_orientation'
|
102 |
'use_background_layout' => true,
|
103 |
-
'options'
|
104 |
'background_layout' => array(
|
105 |
'default_on_front' => 'light',
|
106 |
-
'hover'
|
107 |
),
|
108 |
),
|
109 |
),
|
110 |
-
'text_shadow'
|
111 |
// Text Shadow settings are already included on button's advanced style
|
112 |
'default' => false,
|
113 |
),
|
114 |
-
'background'
|
115 |
-
'max_width'
|
116 |
-
'link_options'
|
117 |
);
|
118 |
}
|
119 |
|
120 |
public function get_fields() {
|
121 |
return array(
|
122 |
-
'button_one_text'
|
123 |
'label' => sprintf( esc_html__( 'Button %1$s Text', 'dsm-supreme-modules-for-divi' ), '#1' ),
|
124 |
'type' => 'text',
|
125 |
'option_category' => 'basic_option',
|
126 |
'description' => esc_html__( 'Enter the text for the Button.', 'dsm-supreme-modules-for-divi' ),
|
127 |
'toggle_slug' => 'main_content',
|
128 |
),
|
129 |
-
'button_one_url'
|
130 |
'label' => sprintf( esc_html__( 'Button %1$s URL', 'dsm-supreme-modules-for-divi' ), '#1' ),
|
131 |
'type' => 'text',
|
132 |
'option_category' => 'basic_option',
|
133 |
'description' => esc_html__( 'Enter the URL for the Button.', 'dsm-supreme-modules-for-divi' ),
|
134 |
'toggle_slug' => 'links',
|
135 |
),
|
136 |
-
'button_one_url_new_window'
|
137 |
'label' => esc_html__( 'Url Opens', 'dsm-supreme-modules-for-divi' ),
|
138 |
'type' => 'select',
|
139 |
'option_category' => 'configuration',
|
@@ -144,27 +144,27 @@ class DSM_Button extends ET_Builder_Module {
|
|
144 |
'toggle_slug' => 'links',
|
145 |
'description' => esc_html__( 'Here you can choose whether or not your link opens in a new window', 'dsm-supreme-modules-for-divi' ),
|
146 |
'default_on_front' => 'off',
|
147 |
-
'show_if_not'
|
148 |
'button_one_image_popup' => 'on',
|
149 |
'button_one_video_popup' => 'on',
|
150 |
),
|
151 |
),
|
152 |
-
'button_one_image_popup'
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
'button_one_video_popup' => 'on',
|
165 |
),
|
166 |
-
|
167 |
-
|
168 |
'type' => 'upload',
|
169 |
'option_category' => 'basic_option',
|
170 |
'upload_button_text' => esc_attr__( 'Upload an image', 'dsm-supreme-modules-for-divi' ),
|
@@ -172,41 +172,41 @@ class DSM_Button extends ET_Builder_Module {
|
|
172 |
'update_text' => esc_attr__( 'Set As Image', 'dsm-supreme-modules-for-divi' ),
|
173 |
'hide_metadata' => true,
|
174 |
'description' => esc_html__( 'Upload your desired image for Button One Image Lightbox, or type in the URL to the image you would like to display.', 'dsm-supreme-modules-for-divi' ),
|
175 |
-
'toggle_slug'
|
176 |
-
'show_if'
|
177 |
'button_one_image_popup' => 'on',
|
178 |
),
|
179 |
),
|
180 |
-
'button_one_video_popup'
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
'button_one_image_popup' => 'on',
|
193 |
),
|
194 |
-
|
195 |
-
'button_two_text'
|
196 |
'label' => sprintf( esc_html__( 'Button %1$s Text', 'dsm-supreme-modules-for-divi' ), '#2' ),
|
197 |
'type' => 'text',
|
198 |
'option_category' => 'basic_option',
|
199 |
'description' => esc_html__( 'Enter the text for the Button.', 'dsm-supreme-modules-for-divi' ),
|
200 |
'toggle_slug' => 'main_content',
|
201 |
),
|
202 |
-
'button_two_url'
|
203 |
'label' => sprintf( esc_html__( 'Button %1$s URL', 'dsm-supreme-modules-for-divi' ), '#2' ),
|
204 |
'type' => 'text',
|
205 |
'option_category' => 'basic_option',
|
206 |
'description' => esc_html__( 'Enter the URL for the Button.', 'dsm-supreme-modules-for-divi' ),
|
207 |
'toggle_slug' => 'links',
|
208 |
),
|
209 |
-
'button_two_url_new_window'
|
210 |
'label' => esc_html__( 'Url Opens', 'dsm-supreme-modules-for-divi' ),
|
211 |
'type' => 'select',
|
212 |
'option_category' => 'configuration',
|
@@ -217,27 +217,27 @@ class DSM_Button extends ET_Builder_Module {
|
|
217 |
'toggle_slug' => 'links',
|
218 |
'description' => esc_html__( 'Here you can choose whether or not your link opens in a new window', 'dsm-supreme-modules-for-divi' ),
|
219 |
'default_on_front' => 'off',
|
220 |
-
'show_if_not'
|
221 |
'button_two_image_popup' => 'on',
|
222 |
'button_two_video_popup' => 'on',
|
223 |
),
|
224 |
),
|
225 |
-
'button_two_image_popup'
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
'button_two_video_popup' => 'on',
|
238 |
),
|
239 |
-
|
240 |
-
|
241 |
'type' => 'upload',
|
242 |
'option_category' => 'basic_option',
|
243 |
'upload_button_text' => esc_attr__( 'Upload an image', 'dsm-supreme-modules-for-divi' ),
|
@@ -245,37 +245,37 @@ class DSM_Button extends ET_Builder_Module {
|
|
245 |
'update_text' => esc_attr__( 'Set As Image', 'dsm-supreme-modules-for-divi' ),
|
246 |
'hide_metadata' => true,
|
247 |
'description' => esc_html__( 'Upload your desired image for Button One Image Lightbox, or type in the URL to the image you would like to display.', 'dsm-supreme-modules-for-divi' ),
|
248 |
-
'toggle_slug'
|
249 |
-
'show_if'
|
250 |
'button_two_image_popup' => 'on',
|
251 |
),
|
252 |
),
|
253 |
-
'button_two_video_popup'
|
254 |
-
|
255 |
-
|
256 |
-
'option_category' => 'configuration',
|
257 |
-
'options' => array(
|
258 |
-
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
259 |
-
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
260 |
-
),
|
261 |
-
'toggle_slug' => 'links',
|
262 |
-
'description' => esc_html__( 'Put the Video link on the Button #2 URL. Copy the video URL link and paste it here. Support: YouTube, Vimeo and Dailymotion.', 'dsm-supreme-modules-for-divi' ),
|
263 |
-
'default_on_front' => 'off',
|
264 |
-
'show_if_not' => array(
|
265 |
-
'button_two_image_popup' => 'on',
|
266 |
-
),
|
267 |
-
),
|
268 |
-
'button_alignment' => array(
|
269 |
-
'label' => esc_html__( 'Button Alignment', 'dsm-supreme-modules-for-divi' ),
|
270 |
-
'type' => 'text_align',
|
271 |
'option_category' => 'configuration',
|
272 |
-
'options' =>
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
'
|
|
|
|
|
|
|
|
|
|
|
277 |
),
|
278 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
'label' => esc_html__( 'Separator Text', 'dsm-supreme-modules-for-divi' ),
|
280 |
'type' => 'text',
|
281 |
'option_category' => 'basic_option',
|
@@ -283,82 +283,82 @@ class DSM_Button extends ET_Builder_Module {
|
|
283 |
'toggle_slug' => 'separator',
|
284 |
),
|
285 |
'fullwidth_separator_text_on_mobile' => array(
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
'remove_separator_text_on_mobile'
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
'separator_gap'
|
313 |
-
'label'
|
314 |
-
'type'
|
315 |
-
'option_category'
|
316 |
-
'tab_slug'
|
317 |
'mobile_options' => true,
|
318 |
-
'toggle_slug'
|
319 |
-
'default_unit'
|
320 |
-
'default'
|
321 |
'responsive' => true,
|
322 |
),
|
323 |
-
'button_one_hover_animation'
|
324 |
'label' => sprintf( esc_html__( 'Button Hover %1$s Animation', 'dsm-supreme-modules-for-divi' ), '#1' ),
|
325 |
'type' => 'select',
|
326 |
'option_category' => 'configuration',
|
327 |
'options' => array(
|
328 |
-
'dsm-none'
|
329 |
-
'dsm-grow'
|
330 |
-
'dsm-shrink'
|
331 |
-
'dsm-pulse'
|
332 |
-
'dsm-pulse-grow'
|
333 |
-
'dsm-pulse-shrink'
|
334 |
-
'dsm-push'
|
335 |
-
'dsm-pop'
|
336 |
-
'dsm-bounce-in'
|
337 |
-
'dsm-bounce-out'
|
338 |
-
'dsm-rotate'
|
339 |
),
|
340 |
-
'tab_slug'
|
341 |
'toggle_slug' => 'animation',
|
342 |
'default_on_front' => 'dsm-none',
|
343 |
),
|
344 |
-
'button_two_hover_animation'
|
345 |
'label' => sprintf( esc_html__( 'Button Hover %1$s Animation', 'dsm-supreme-modules-for-divi' ), '#2' ),
|
346 |
'type' => 'select',
|
347 |
'option_category' => 'configuration',
|
348 |
'options' => array(
|
349 |
-
'dsm-none'
|
350 |
-
'dsm-grow'
|
351 |
-
'dsm-shrink'
|
352 |
-
'dsm-pulse'
|
353 |
-
'dsm-pulse-grow'
|
354 |
-
'dsm-pulse-shrink'
|
355 |
-
'dsm-push'
|
356 |
-
'dsm-pop'
|
357 |
-
'dsm-bounce-in'
|
358 |
-
'dsm-bounce-out'
|
359 |
-
'dsm-rotate'
|
360 |
),
|
361 |
-
'tab_slug'
|
362 |
'toggle_slug' => 'animation',
|
363 |
'default_on_front' => 'dsm-none',
|
364 |
),
|
@@ -369,7 +369,7 @@ class DSM_Button extends ET_Builder_Module {
|
|
369 |
|
370 |
/**
|
371 |
* Get button alignment.
|
372 |
-
*
|
373 |
* @since 3.23 Add responsive support by adding device parameter.
|
374 |
*
|
375 |
* @param string $device Current device name.
|
@@ -377,49 +377,49 @@ class DSM_Button extends ET_Builder_Module {
|
|
377 |
*/
|
378 |
public function get_button_alignment( $device = 'desktop' ) {
|
379 |
$suffix = 'desktop' !== $device ? "_{$device}" : '';
|
380 |
-
$text_orientation = isset( $this->props["button_alignment{$suffix}"] ) ? $this->props["button_alignment{$suffix}"] : '';
|
381 |
|
382 |
return et_pb_get_alignment( $text_orientation );
|
383 |
}
|
384 |
|
385 |
function render( $attrs, $content = null, $render_slug ) {
|
386 |
-
$button_one_text
|
387 |
-
$button_one_url
|
388 |
-
$button_one_video_popup
|
389 |
-
$button_one_image_popup
|
390 |
-
$button_one_image_src
|
391 |
-
$button_one_rel
|
392 |
-
$button_two_text
|
393 |
-
$button_two_url
|
394 |
-
$button_two_video_popup
|
395 |
-
$button_two_image_popup
|
396 |
-
$button_two_image_src
|
397 |
-
$button_two_rel
|
398 |
-
$background_layout
|
399 |
-
$background_layout_hover
|
400 |
-
$background_layout_hover_enabled
|
401 |
-
$background_layout_values
|
402 |
-
$background_layout_tablet
|
403 |
-
$background_layout_phone
|
404 |
-
$button_one_url_new_window
|
405 |
-
$button_two_url_new_window
|
406 |
-
$custom_icon_1
|
407 |
-
$button_custom_1
|
408 |
-
$custom_icon_2
|
409 |
-
$button_custom_2
|
410 |
-
$button_alignment
|
411 |
-
$is_button_aligment_responsive
|
412 |
-
$button_alignment_tablet
|
413 |
-
$button_alignment_phone
|
414 |
-
$separator_text
|
415 |
-
$separator_gap
|
416 |
-
$separator_gap_tablet
|
417 |
-
$separator_gap_phone
|
418 |
-
$separator_gap_last_edited
|
419 |
-
$button_one_hover_animation
|
420 |
-
$button_two_hover_animation
|
421 |
$fullwidth_separator_text_on_mobile = $this->props['fullwidth_separator_text_on_mobile'];
|
422 |
-
$remove_separator_text_on_mobile
|
423 |
|
424 |
// Button Alignment.
|
425 |
$button_alignments = array();
|
@@ -448,7 +448,7 @@ class DSM_Button extends ET_Builder_Module {
|
|
448 |
et_pb_generate_responsive_css( $separator_gap_values, '%%order_class%% .dsm-button-separator-text', 'margin-left', $render_slug );
|
449 |
et_pb_generate_responsive_css( $separator_gap_values, '%%order_class%% .dsm-button-separator-text', 'margin-right', $render_slug );
|
450 |
|
451 |
-
$addClass
|
452 |
$addClass .= " et_pb_bg_layout_{$background_layout}";
|
453 |
if ( ! empty( $background_layout_tablet ) ) {
|
454 |
$addClass .= " et_pb_bg_layout_{$background_layout_tablet}_tablet";
|
@@ -460,7 +460,8 @@ class DSM_Button extends ET_Builder_Module {
|
|
460 |
$button_output = '';
|
461 |
|
462 |
if ( '' !== $button_one_text ) {
|
463 |
-
$button_output .= sprintf(
|
|
|
464 |
'off' !== $button_one_image_popup ? esc_url( $button_one_image_src ) : esc_url( $button_one_url ),
|
465 |
esc_html( $button_one_text ),
|
466 |
( 'on' === $button_one_url_new_window ? ' target="_blank"' : '' ),
|
@@ -469,7 +470,7 @@ class DSM_Button extends ET_Builder_Module {
|
|
469 |
esc_attr( et_pb_process_font_icon( $custom_icon_1 ) )
|
470 |
) : '',
|
471 |
'' !== $custom_icon_1 && 'on' === $button_custom_1 ? ' et_pb_custom_button_icon' : '',
|
472 |
-
$this->get_rel_attributes($button_one_rel),
|
473 |
esc_attr( $button_one_hover_animation ),
|
474 |
'off' !== $button_one_video_popup ? ' dsm-video-lightbox' : '',
|
475 |
'off' !== $button_one_image_popup ? ' dsm-image-lightbox' : '',
|
@@ -482,7 +483,8 @@ class DSM_Button extends ET_Builder_Module {
|
|
482 |
}
|
483 |
|
484 |
if ( '' !== $button_two_text ) {
|
485 |
-
$button_output .= sprintf(
|
|
|
486 |
'off' !== $button_two_image_popup ? esc_url( $button_two_image_src ) : esc_url( $button_two_url ),
|
487 |
esc_html( $button_two_text ),
|
488 |
( 'on' === $button_two_url_new_window ? ' target="_blank"' : '' ),
|
@@ -491,7 +493,7 @@ class DSM_Button extends ET_Builder_Module {
|
|
491 |
esc_attr( et_pb_process_font_icon( $custom_icon_2 ) )
|
492 |
) : '',
|
493 |
'' !== $custom_icon_2 && 'on' === $button_custom_2 ? ' et_pb_custom_button_icon' : '',
|
494 |
-
$this->get_rel_attributes($button_two_rel),
|
495 |
esc_attr( $button_two_hover_animation ),
|
496 |
'off' !== $button_two_video_popup ? ' dsm-video-lightbox' : '',
|
497 |
'off' !== $button_two_image_popup ? ' dsm-image-lightbox' : '',
|
@@ -502,7 +504,7 @@ class DSM_Button extends ET_Builder_Module {
|
|
502 |
$data_background_layout = '';
|
503 |
$data_background_layout_hover = '';
|
504 |
if ( $background_layout_hover_enabled ) {
|
505 |
-
$data_background_layout
|
506 |
' data-background-layout="%1$s"',
|
507 |
esc_attr( $background_layout )
|
508 |
);
|
@@ -529,8 +531,8 @@ class DSM_Button extends ET_Builder_Module {
|
|
529 |
$button_output,
|
530 |
esc_attr( $button_alignment_classes ),
|
531 |
$this->render_count(),
|
532 |
-
('off' !== $remove_separator_text_on_mobile ? ' dsm-button-separator-remove' : ''),
|
533 |
-
('off' !== $fullwidth_separator_text_on_mobile ? ' dsm-button-separator-fullwidth' : ''),
|
534 |
et_core_esc_previously( $data_background_layout ),
|
535 |
et_core_esc_previously( $data_background_layout_hover ),
|
536 |
( '' !== $separator_text ? ' dsm-button-seperator' : '' )
|
@@ -540,4 +542,4 @@ class DSM_Button extends ET_Builder_Module {
|
|
540 |
}
|
541 |
}
|
542 |
|
543 |
-
new DSM_Button;
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
+
$this->name = esc_html__( 'Supreme Button', 'dsm-supreme-modules-for-divi' );
|
16 |
+
$this->plural = esc_html__( 'Supreme Buttons', 'dsm-supreme-modules-for-divi' );
|
17 |
+
$this->icon = '|';
|
18 |
|
19 |
$this->custom_css_fields = array(
|
20 |
'main_element' => array(
|
21 |
+
'label' => esc_html__( 'Main Element', 'dsm-supreme-modules-for-divi' ),
|
22 |
'no_space_before_selector' => true,
|
23 |
),
|
24 |
);
|
27 |
'general' => array(
|
28 |
'toggles' => array(
|
29 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
30 |
+
'links' => esc_html__( 'Links', 'dsm-supreme-modules-for-divi' ),
|
31 |
+
'separator' => esc_html__( 'Separator', 'dsm-supreme-modules-for-divi' ),
|
32 |
),
|
33 |
),
|
34 |
'advanced' => array(
|
35 |
'toggles' => array(
|
36 |
+
'alignment' => esc_html__( 'Alignment', 'dsm-supreme-modules-for-divi' ),
|
37 |
+
'text' => array(
|
38 |
'title' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
39 |
'priority' => 49,
|
40 |
),
|
46 |
|
47 |
public function get_advanced_fields_config() {
|
48 |
return array(
|
49 |
+
'fonts' => array(
|
50 |
'separator_text' => array(
|
51 |
+
'label' => esc_html__( 'Separator', 'dsm-supreme-modules-for-divi' ),
|
52 |
+
'css' => array(
|
53 |
'main' => '%%order_class%% .dsm-button-separator-text',
|
54 |
),
|
55 |
+
'font_size' => array(
|
56 |
+
'default' => '14px',
|
57 |
),
|
58 |
'line_height' => array(
|
59 |
'default' => '1em',
|
63 |
),
|
64 |
),
|
65 |
),
|
66 |
+
'borders' => array(
|
67 |
'default' => false,
|
68 |
),
|
69 |
+
'button' => array(
|
70 |
'button_one' => array(
|
71 |
+
'label' => esc_html__( 'Button One', 'dsm-supreme-modules-for-divi' ),
|
72 |
+
'css' => array(
|
73 |
'main' => '%%order_class%% .et_pb_button_one.et_pb_button',
|
74 |
),
|
75 |
'box_shadow' => array(
|
79 |
),
|
80 |
),
|
81 |
'button_two' => array(
|
82 |
+
'label' => esc_html__( 'Button Two', 'dsm-supreme-modules-for-divi' ),
|
83 |
+
'css' => array(
|
84 |
'main' => '%%order_class%% .et_pb_button_two.et_pb_button',
|
85 |
),
|
86 |
'box_shadow' => array(
|
92 |
),
|
93 |
'margin_padding' => array(
|
94 |
'css' => array(
|
95 |
+
'padding' => '%%order_class%%, %%order_class%%:hover',
|
96 |
+
'margin' => '%%order_class%%.dsm_button',
|
97 |
'important' => 'all',
|
98 |
),
|
99 |
),
|
100 |
+
'text' => array(
|
101 |
+
'use_text_orientation' => false,
|
102 |
'use_background_layout' => true,
|
103 |
+
'options' => array(
|
104 |
'background_layout' => array(
|
105 |
'default_on_front' => 'light',
|
106 |
+
'hover' => 'tabs',
|
107 |
),
|
108 |
),
|
109 |
),
|
110 |
+
'text_shadow' => array(
|
111 |
// Text Shadow settings are already included on button's advanced style
|
112 |
'default' => false,
|
113 |
),
|
114 |
+
'background' => false,
|
115 |
+
'max_width' => false,
|
116 |
+
'link_options' => false,
|
117 |
);
|
118 |
}
|
119 |
|
120 |
public function get_fields() {
|
121 |
return array(
|
122 |
+
'button_one_text' => array(
|
123 |
'label' => sprintf( esc_html__( 'Button %1$s Text', 'dsm-supreme-modules-for-divi' ), '#1' ),
|
124 |
'type' => 'text',
|
125 |
'option_category' => 'basic_option',
|
126 |
'description' => esc_html__( 'Enter the text for the Button.', 'dsm-supreme-modules-for-divi' ),
|
127 |
'toggle_slug' => 'main_content',
|
128 |
),
|
129 |
+
'button_one_url' => array(
|
130 |
'label' => sprintf( esc_html__( 'Button %1$s URL', 'dsm-supreme-modules-for-divi' ), '#1' ),
|
131 |
'type' => 'text',
|
132 |
'option_category' => 'basic_option',
|
133 |
'description' => esc_html__( 'Enter the URL for the Button.', 'dsm-supreme-modules-for-divi' ),
|
134 |
'toggle_slug' => 'links',
|
135 |
),
|
136 |
+
'button_one_url_new_window' => array(
|
137 |
'label' => esc_html__( 'Url Opens', 'dsm-supreme-modules-for-divi' ),
|
138 |
'type' => 'select',
|
139 |
'option_category' => 'configuration',
|
144 |
'toggle_slug' => 'links',
|
145 |
'description' => esc_html__( 'Here you can choose whether or not your link opens in a new window', 'dsm-supreme-modules-for-divi' ),
|
146 |
'default_on_front' => 'off',
|
147 |
+
'show_if_not' => array(
|
148 |
'button_one_image_popup' => 'on',
|
149 |
'button_one_video_popup' => 'on',
|
150 |
),
|
151 |
),
|
152 |
+
'button_one_image_popup' => array(
|
153 |
+
'label' => esc_html__( 'Open as Image Lightbox', 'dsm-supreme-modules-for-divi' ),
|
154 |
+
'type' => 'yes_no_button',
|
155 |
+
'option_category' => 'configuration',
|
156 |
+
'options' => array(
|
157 |
+
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
158 |
+
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
159 |
+
),
|
160 |
+
'toggle_slug' => 'links',
|
161 |
+
'description' => esc_html__( 'Here you can choose whether or not the button should open in Lightbox. Note: if you select to open the button in Lightbox, url options below will be ignored.', 'dsm-supreme-modules-for-divi' ),
|
162 |
+
'default_on_front' => 'off',
|
163 |
+
'show_if_not' => array(
|
164 |
'button_one_video_popup' => 'on',
|
165 |
),
|
166 |
+
),
|
167 |
+
'button_one_image_src' => array(
|
168 |
'type' => 'upload',
|
169 |
'option_category' => 'basic_option',
|
170 |
'upload_button_text' => esc_attr__( 'Upload an image', 'dsm-supreme-modules-for-divi' ),
|
172 |
'update_text' => esc_attr__( 'Set As Image', 'dsm-supreme-modules-for-divi' ),
|
173 |
'hide_metadata' => true,
|
174 |
'description' => esc_html__( 'Upload your desired image for Button One Image Lightbox, or type in the URL to the image you would like to display.', 'dsm-supreme-modules-for-divi' ),
|
175 |
+
'toggle_slug' => 'links',
|
176 |
+
'show_if' => array(
|
177 |
'button_one_image_popup' => 'on',
|
178 |
),
|
179 |
),
|
180 |
+
'button_one_video_popup' => array(
|
181 |
+
'label' => esc_html__( 'Open as Video Lightbox', 'dsm-supreme-modules-for-divi' ),
|
182 |
+
'type' => 'yes_no_button',
|
183 |
+
'option_category' => 'configuration',
|
184 |
+
'options' => array(
|
185 |
+
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
186 |
+
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
187 |
+
),
|
188 |
+
'toggle_slug' => 'links',
|
189 |
+
'description' => esc_html__( 'Put the Video link on the Button #1 URL. Copy the video URL link and paste it here. Support: YouTube, Vimeo and Dailymotion.', 'dsm-supreme-modules-for-divi' ),
|
190 |
+
'default_on_front' => 'off',
|
191 |
+
'show_if_not' => array(
|
192 |
'button_one_image_popup' => 'on',
|
193 |
),
|
194 |
+
),
|
195 |
+
'button_two_text' => array(
|
196 |
'label' => sprintf( esc_html__( 'Button %1$s Text', 'dsm-supreme-modules-for-divi' ), '#2' ),
|
197 |
'type' => 'text',
|
198 |
'option_category' => 'basic_option',
|
199 |
'description' => esc_html__( 'Enter the text for the Button.', 'dsm-supreme-modules-for-divi' ),
|
200 |
'toggle_slug' => 'main_content',
|
201 |
),
|
202 |
+
'button_two_url' => array(
|
203 |
'label' => sprintf( esc_html__( 'Button %1$s URL', 'dsm-supreme-modules-for-divi' ), '#2' ),
|
204 |
'type' => 'text',
|
205 |
'option_category' => 'basic_option',
|
206 |
'description' => esc_html__( 'Enter the URL for the Button.', 'dsm-supreme-modules-for-divi' ),
|
207 |
'toggle_slug' => 'links',
|
208 |
),
|
209 |
+
'button_two_url_new_window' => array(
|
210 |
'label' => esc_html__( 'Url Opens', 'dsm-supreme-modules-for-divi' ),
|
211 |
'type' => 'select',
|
212 |
'option_category' => 'configuration',
|
217 |
'toggle_slug' => 'links',
|
218 |
'description' => esc_html__( 'Here you can choose whether or not your link opens in a new window', 'dsm-supreme-modules-for-divi' ),
|
219 |
'default_on_front' => 'off',
|
220 |
+
'show_if_not' => array(
|
221 |
'button_two_image_popup' => 'on',
|
222 |
'button_two_video_popup' => 'on',
|
223 |
),
|
224 |
),
|
225 |
+
'button_two_image_popup' => array(
|
226 |
+
'label' => esc_html__( 'Open as Image Lightbox', 'dsm-supreme-modules-for-divi' ),
|
227 |
+
'type' => 'yes_no_button',
|
228 |
+
'option_category' => 'configuration',
|
229 |
+
'options' => array(
|
230 |
+
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
231 |
+
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
232 |
+
),
|
233 |
+
'toggle_slug' => 'links',
|
234 |
+
'description' => esc_html__( 'Here you can choose whether or not the button should open in Lightbox. Note: if you select to open the button in Lightbox, url options below will be ignored.', 'dsm-supreme-modules-for-divi' ),
|
235 |
+
'default_on_front' => 'off',
|
236 |
+
'show_if_not' => array(
|
237 |
'button_two_video_popup' => 'on',
|
238 |
),
|
239 |
+
),
|
240 |
+
'button_two_image_src' => array(
|
241 |
'type' => 'upload',
|
242 |
'option_category' => 'basic_option',
|
243 |
'upload_button_text' => esc_attr__( 'Upload an image', 'dsm-supreme-modules-for-divi' ),
|
245 |
'update_text' => esc_attr__( 'Set As Image', 'dsm-supreme-modules-for-divi' ),
|
246 |
'hide_metadata' => true,
|
247 |
'description' => esc_html__( 'Upload your desired image for Button One Image Lightbox, or type in the URL to the image you would like to display.', 'dsm-supreme-modules-for-divi' ),
|
248 |
+
'toggle_slug' => 'links',
|
249 |
+
'show_if' => array(
|
250 |
'button_two_image_popup' => 'on',
|
251 |
),
|
252 |
),
|
253 |
+
'button_two_video_popup' => array(
|
254 |
+
'label' => esc_html__( 'Open as Video Lightbox', 'dsm-supreme-modules-for-divi' ),
|
255 |
+
'type' => 'yes_no_button',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
'option_category' => 'configuration',
|
257 |
+
'options' => array(
|
258 |
+
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
259 |
+
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
260 |
+
),
|
261 |
+
'toggle_slug' => 'links',
|
262 |
+
'description' => esc_html__( 'Put the Video link on the Button #2 URL. Copy the video URL link and paste it here. Support: YouTube, Vimeo and Dailymotion.', 'dsm-supreme-modules-for-divi' ),
|
263 |
+
'default_on_front' => 'off',
|
264 |
+
'show_if_not' => array(
|
265 |
+
'button_two_image_popup' => 'on',
|
266 |
+
),
|
267 |
),
|
268 |
+
'button_alignment' => array(
|
269 |
+
'label' => esc_html__( 'Button Alignment', 'dsm-supreme-modules-for-divi' ),
|
270 |
+
'type' => 'text_align',
|
271 |
+
'option_category' => 'configuration',
|
272 |
+
'options' => et_builder_get_text_orientation_options( array( 'justified' ) ),
|
273 |
+
'tab_slug' => 'advanced',
|
274 |
+
'toggle_slug' => 'alignment',
|
275 |
+
'description' => esc_html__( 'Here you can define the alignment of Button', 'dsm-supreme-modules-for-divi' ),
|
276 |
+
'mobile_options' => true,
|
277 |
+
),
|
278 |
+
'separator_text' => array(
|
279 |
'label' => esc_html__( 'Separator Text', 'dsm-supreme-modules-for-divi' ),
|
280 |
'type' => 'text',
|
281 |
'option_category' => 'basic_option',
|
283 |
'toggle_slug' => 'separator',
|
284 |
),
|
285 |
'fullwidth_separator_text_on_mobile' => array(
|
286 |
+
'label' => esc_html__( 'Make Separator Text Fullwidth On Mobile', 'dsm-supreme-modules-for-divi' ),
|
287 |
+
'type' => 'yes_no_button',
|
288 |
+
'option_category' => 'configuration',
|
289 |
+
'options' => array(
|
290 |
+
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
291 |
+
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
292 |
+
),
|
293 |
+
'toggle_slug' => 'separator',
|
294 |
+
'description' => esc_html__( 'This will make the Separator Text as fullwidth instead of inline-block.', 'dsm-supreme-modules-for-divi' ),
|
295 |
+
'default_on_front' => 'off',
|
296 |
+
'show_if' => array(
|
297 |
+
'remove_separator_text_on_mobile' => 'off',
|
298 |
+
),
|
299 |
+
),
|
300 |
+
'remove_separator_text_on_mobile' => array(
|
301 |
+
'label' => esc_html__( 'Remove Separator Text On Mobile', 'dsm-supreme-modules-for-divi' ),
|
302 |
+
'type' => 'yes_no_button',
|
303 |
+
'option_category' => 'configuration',
|
304 |
+
'options' => array(
|
305 |
+
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
306 |
+
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
307 |
+
),
|
308 |
+
'toggle_slug' => 'separator',
|
309 |
+
'description' => esc_html__( 'This will remove Separator Text on mobile devices.', 'dsm-supreme-modules-for-divi' ),
|
310 |
+
'default_on_front' => 'off',
|
311 |
+
),
|
312 |
+
'separator_gap' => array(
|
313 |
+
'label' => esc_html__( 'Separator Gap', 'dsm-supreme-modules-for-divi' ),
|
314 |
+
'type' => 'range',
|
315 |
+
'option_category' => 'layout',
|
316 |
+
'tab_slug' => 'advanced',
|
317 |
'mobile_options' => true,
|
318 |
+
'toggle_slug' => 'width',
|
319 |
+
'default_unit' => 'px',
|
320 |
+
'default' => '10px',
|
321 |
'responsive' => true,
|
322 |
),
|
323 |
+
'button_one_hover_animation' => array(
|
324 |
'label' => sprintf( esc_html__( 'Button Hover %1$s Animation', 'dsm-supreme-modules-for-divi' ), '#1' ),
|
325 |
'type' => 'select',
|
326 |
'option_category' => 'configuration',
|
327 |
'options' => array(
|
328 |
+
'dsm-none' => esc_html__( 'None', 'dsm-supreme-modules-for-divi' ),
|
329 |
+
'dsm-grow' => esc_html__( 'Grow', 'dsm-supreme-modules-for-divi' ),
|
330 |
+
'dsm-shrink' => esc_html__( 'Shrink', 'dsm-supreme-modules-for-divi' ),
|
331 |
+
'dsm-pulse' => esc_html__( 'Pulse', 'dsm-supreme-modules-for-divi' ),
|
332 |
+
'dsm-pulse-grow' => esc_html__( 'Pulse Grow', 'dsm-supreme-modules-for-divi' ),
|
333 |
+
'dsm-pulse-shrink' => esc_html__( 'Pulse Grow', 'dsm-supreme-modules-for-divi' ),
|
334 |
+
'dsm-push' => esc_html__( 'Push', 'dsm-supreme-modules-for-divi' ),
|
335 |
+
'dsm-pop' => esc_html__( 'Pop', 'dsm-supreme-modules-for-divi' ),
|
336 |
+
'dsm-bounce-in' => esc_html__( 'Bounce In', 'dsm-supreme-modules-for-divi' ),
|
337 |
+
'dsm-bounce-out' => esc_html__( 'Bounce Out', 'dsm-supreme-modules-for-divi' ),
|
338 |
+
'dsm-rotate' => esc_html__( 'Rotate', 'dsm-supreme-modules-for-divi' ),
|
339 |
),
|
340 |
+
'tab_slug' => 'advanced',
|
341 |
'toggle_slug' => 'animation',
|
342 |
'default_on_front' => 'dsm-none',
|
343 |
),
|
344 |
+
'button_two_hover_animation' => array(
|
345 |
'label' => sprintf( esc_html__( 'Button Hover %1$s Animation', 'dsm-supreme-modules-for-divi' ), '#2' ),
|
346 |
'type' => 'select',
|
347 |
'option_category' => 'configuration',
|
348 |
'options' => array(
|
349 |
+
'dsm-none' => esc_html__( 'None', 'dsm-supreme-modules-for-divi' ),
|
350 |
+
'dsm-grow' => esc_html__( 'Grow', 'dsm-supreme-modules-for-divi' ),
|
351 |
+
'dsm-shrink' => esc_html__( 'Shrink', 'dsm-supreme-modules-for-divi' ),
|
352 |
+
'dsm-pulse' => esc_html__( 'Pulse', 'dsm-supreme-modules-for-divi' ),
|
353 |
+
'dsm-pulse-grow' => esc_html__( 'Pulse Grow', 'dsm-supreme-modules-for-divi' ),
|
354 |
+
'dsm-pulse-shrink' => esc_html__( 'Pulse Grow', 'dsm-supreme-modules-for-divi' ),
|
355 |
+
'dsm-push' => esc_html__( 'Push', 'dsm-supreme-modules-for-divi' ),
|
356 |
+
'dsm-pop' => esc_html__( 'Pop', 'dsm-supreme-modules-for-divi' ),
|
357 |
+
'dsm-bounce-in' => esc_html__( 'Bounce In', 'dsm-supreme-modules-for-divi' ),
|
358 |
+
'dsm-bounce-out' => esc_html__( 'Bounce Out', 'dsm-supreme-modules-for-divi' ),
|
359 |
+
'dsm-rotate' => esc_html__( 'Rotate', 'dsm-supreme-modules-for-divi' ),
|
360 |
),
|
361 |
+
'tab_slug' => 'advanced',
|
362 |
'toggle_slug' => 'animation',
|
363 |
'default_on_front' => 'dsm-none',
|
364 |
),
|
369 |
|
370 |
/**
|
371 |
* Get button alignment.
|
372 |
+
*
|
373 |
* @since 3.23 Add responsive support by adding device parameter.
|
374 |
*
|
375 |
* @param string $device Current device name.
|
377 |
*/
|
378 |
public function get_button_alignment( $device = 'desktop' ) {
|
379 |
$suffix = 'desktop' !== $device ? "_{$device}" : '';
|
380 |
+
$text_orientation = isset( $this->props[ "button_alignment{$suffix}" ] ) ? $this->props[ "button_alignment{$suffix}" ] : '';
|
381 |
|
382 |
return et_pb_get_alignment( $text_orientation );
|
383 |
}
|
384 |
|
385 |
function render( $attrs, $content = null, $render_slug ) {
|
386 |
+
$button_one_text = $this->props['button_one_text'];
|
387 |
+
$button_one_url = $this->props['button_one_url'];
|
388 |
+
$button_one_video_popup = $this->props['button_one_video_popup'];
|
389 |
+
$button_one_image_popup = $this->props['button_one_image_popup'];
|
390 |
+
$button_one_image_src = $this->props['button_one_image_src'];
|
391 |
+
$button_one_rel = $this->props['button_one_rel'];
|
392 |
+
$button_two_text = $this->props['button_two_text'];
|
393 |
+
$button_two_url = $this->props['button_two_url'];
|
394 |
+
$button_two_video_popup = $this->props['button_two_video_popup'];
|
395 |
+
$button_two_image_popup = $this->props['button_two_image_popup'];
|
396 |
+
$button_two_image_src = $this->props['button_two_image_src'];
|
397 |
+
$button_two_rel = $this->props['button_two_rel'];
|
398 |
+
$background_layout = $this->props['background_layout'];
|
399 |
+
$background_layout_hover = et_pb_hover_options()->get_value( 'background_layout', $this->props, 'light' );
|
400 |
+
$background_layout_hover_enabled = et_pb_hover_options()->is_enabled( 'background_layout', $this->props );
|
401 |
+
$background_layout_values = et_pb_responsive_options()->get_property_values( $this->props, 'background_layout' );
|
402 |
+
$background_layout_tablet = isset( $background_layout_values['tablet'] ) ? $background_layout_values['tablet'] : '';
|
403 |
+
$background_layout_phone = isset( $background_layout_values['phone'] ) ? $background_layout_values['phone'] : '';
|
404 |
+
$button_one_url_new_window = $this->props['button_one_url_new_window'];
|
405 |
+
$button_two_url_new_window = $this->props['button_two_url_new_window'];
|
406 |
+
$custom_icon_1 = $this->props['button_one_icon'];
|
407 |
+
$button_custom_1 = $this->props['custom_button_one'];
|
408 |
+
$custom_icon_2 = $this->props['button_two_icon'];
|
409 |
+
$button_custom_2 = $this->props['custom_button_two'];
|
410 |
+
$button_alignment = $this->get_button_alignment();
|
411 |
+
$is_button_aligment_responsive = et_pb_responsive_options()->is_responsive_enabled( $this->props, 'button_alignment' );
|
412 |
+
$button_alignment_tablet = $is_button_aligment_responsive ? $this->get_button_alignment( 'tablet' ) : '';
|
413 |
+
$button_alignment_phone = $is_button_aligment_responsive ? $this->get_button_alignment( 'phone' ) : '';
|
414 |
+
$separator_text = $this->props['separator_text'];
|
415 |
+
$separator_gap = $this->props['separator_gap'];
|
416 |
+
$separator_gap_tablet = $this->props['separator_gap_tablet'];
|
417 |
+
$separator_gap_phone = $this->props['separator_gap_phone'];
|
418 |
+
$separator_gap_last_edited = $this->props['separator_gap_last_edited'];
|
419 |
+
$button_one_hover_animation = $this->props['button_one_hover_animation'];
|
420 |
+
$button_two_hover_animation = $this->props['button_two_hover_animation'];
|
421 |
$fullwidth_separator_text_on_mobile = $this->props['fullwidth_separator_text_on_mobile'];
|
422 |
+
$remove_separator_text_on_mobile = $this->props['remove_separator_text_on_mobile'];
|
423 |
|
424 |
// Button Alignment.
|
425 |
$button_alignments = array();
|
448 |
et_pb_generate_responsive_css( $separator_gap_values, '%%order_class%% .dsm-button-separator-text', 'margin-left', $render_slug );
|
449 |
et_pb_generate_responsive_css( $separator_gap_values, '%%order_class%% .dsm-button-separator-text', 'margin-right', $render_slug );
|
450 |
|
451 |
+
$addClass = '';
|
452 |
$addClass .= " et_pb_bg_layout_{$background_layout}";
|
453 |
if ( ! empty( $background_layout_tablet ) ) {
|
454 |
$addClass .= " et_pb_bg_layout_{$background_layout_tablet}_tablet";
|
460 |
$button_output = '';
|
461 |
|
462 |
if ( '' !== $button_one_text ) {
|
463 |
+
$button_output .= sprintf(
|
464 |
+
'<a class="et_pb_button et_pb_button_one%5$s%8$s%9$s%10$s %7$s" %6$s href="%1$s"%3$s%4$s>%2$s</a>',
|
465 |
'off' !== $button_one_image_popup ? esc_url( $button_one_image_src ) : esc_url( $button_one_url ),
|
466 |
esc_html( $button_one_text ),
|
467 |
( 'on' === $button_one_url_new_window ? ' target="_blank"' : '' ),
|
470 |
esc_attr( et_pb_process_font_icon( $custom_icon_1 ) )
|
471 |
) : '',
|
472 |
'' !== $custom_icon_1 && 'on' === $button_custom_1 ? ' et_pb_custom_button_icon' : '',
|
473 |
+
$this->get_rel_attributes( $button_one_rel ),
|
474 |
esc_attr( $button_one_hover_animation ),
|
475 |
'off' !== $button_one_video_popup ? ' dsm-video-lightbox' : '',
|
476 |
'off' !== $button_one_image_popup ? ' dsm-image-lightbox' : '',
|
483 |
}
|
484 |
|
485 |
if ( '' !== $button_two_text ) {
|
486 |
+
$button_output .= sprintf(
|
487 |
+
'<a class="et_pb_button et_pb_button_two%5$s%8$s%9$s%10$s %7$s" %6$s href="%1$s"%3$s%4$s>%2$s</a>',
|
488 |
'off' !== $button_two_image_popup ? esc_url( $button_two_image_src ) : esc_url( $button_two_url ),
|
489 |
esc_html( $button_two_text ),
|
490 |
( 'on' === $button_two_url_new_window ? ' target="_blank"' : '' ),
|
493 |
esc_attr( et_pb_process_font_icon( $custom_icon_2 ) )
|
494 |
) : '',
|
495 |
'' !== $custom_icon_2 && 'on' === $button_custom_2 ? ' et_pb_custom_button_icon' : '',
|
496 |
+
$this->get_rel_attributes( $button_two_rel ),
|
497 |
esc_attr( $button_two_hover_animation ),
|
498 |
'off' !== $button_two_video_popup ? ' dsm-video-lightbox' : '',
|
499 |
'off' !== $button_two_image_popup ? ' dsm-image-lightbox' : '',
|
504 |
$data_background_layout = '';
|
505 |
$data_background_layout_hover = '';
|
506 |
if ( $background_layout_hover_enabled ) {
|
507 |
+
$data_background_layout = sprintf(
|
508 |
' data-background-layout="%1$s"',
|
509 |
esc_attr( $background_layout )
|
510 |
);
|
531 |
$button_output,
|
532 |
esc_attr( $button_alignment_classes ),
|
533 |
$this->render_count(),
|
534 |
+
( 'off' !== $remove_separator_text_on_mobile ? ' dsm-button-separator-remove' : '' ),
|
535 |
+
( 'off' !== $fullwidth_separator_text_on_mobile ? ' dsm-button-separator-fullwidth' : '' ),
|
536 |
et_core_esc_previously( $data_background_layout ),
|
537 |
et_core_esc_previously( $data_background_layout_hover ),
|
538 |
( '' !== $separator_text ? ' dsm-button-seperator' : '' )
|
542 |
}
|
543 |
}
|
544 |
|
545 |
+
new DSM_Button;
|
includes/modules/CalderaForms/CalderaForms.php
CHANGED
@@ -6,17 +6,17 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
'author' => 'Divi Supreme',
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
-
$this->name
|
16 |
$this->icon = '1';
|
17 |
$this->main_css_element = '%%order_class%%';
|
18 |
// Toggle settings
|
19 |
-
$this->settings_modal_toggles
|
20 |
'general' => array(
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Caldera Forms', 'dsm-supreme-modules-for-divi' ),
|
@@ -24,11 +24,11 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
24 |
),
|
25 |
'advanced' => array(
|
26 |
'toggles' => array(
|
27 |
-
'header'
|
28 |
-
'title'
|
29 |
-
'priority'
|
30 |
'tabbed_subtoggles' => true,
|
31 |
-
'sub_toggles'
|
32 |
'h1' => array(
|
33 |
'name' => 'H1',
|
34 |
'icon' => 'text-h1',
|
@@ -55,34 +55,34 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
55 |
),
|
56 |
),
|
57 |
),
|
58 |
-
'body'
|
59 |
'title' => esc_html__( 'Body', 'dsm-supreme-modules-for-divi' ),
|
60 |
'priority' => 5,
|
61 |
),
|
62 |
-
'cf_hr'
|
63 |
-
'cf_labels'
|
64 |
-
'cf_description'
|
65 |
-
'cf_field'
|
66 |
'title' => esc_html__( 'Input, Textarea & Select', 'dsm-supreme-modules-for-divi' ),
|
67 |
),
|
68 |
-
'cf_field_focus'
|
69 |
'title' => esc_html__( 'Input, Textarea & Select Focus', 'dsm-supreme-modules-for-divi' ),
|
70 |
),
|
71 |
-
'cf_placeholder'
|
72 |
-
'cf_radio_checkbox'
|
73 |
-
'title'
|
74 |
'tabbed_subtoggles' => true,
|
75 |
-
'sub_toggles'
|
76 |
-
'radio'
|
77 |
'name' => 'Radio',
|
78 |
),
|
79 |
-
'checkbox'
|
80 |
'name' => 'Checkbox',
|
81 |
),
|
82 |
),
|
83 |
),
|
84 |
-
'cf_basic_file'
|
85 |
-
'cf_error'
|
86 |
'cf_validation_success' => esc_html__( 'Success Message', 'dsm-supreme-modules-for-divi' ),
|
87 |
),
|
88 |
),
|
@@ -90,25 +90,25 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
90 |
}
|
91 |
public function get_advanced_fields_config() {
|
92 |
return array(
|
93 |
-
'text'
|
94 |
'fonts' => array(
|
95 |
-
'header'
|
96 |
-
'label'
|
97 |
-
'css'
|
98 |
'main' => "{$this->main_css_element} .dsm-cf-html h1",
|
99 |
),
|
100 |
-
'font_size'
|
101 |
'default' => absint( et_get_option( 'body_header_size', '30' ) ) . 'px',
|
102 |
),
|
103 |
'toggle_slug' => 'header',
|
104 |
'sub_toggle' => 'h1',
|
105 |
),
|
106 |
-
'header_2'
|
107 |
-
'label'
|
108 |
-
'css'
|
109 |
'main' => "{$this->main_css_element} .dsm-cf-html h2",
|
110 |
),
|
111 |
-
'font_size'
|
112 |
'default' => '26px',
|
113 |
),
|
114 |
'line_height' => array(
|
@@ -117,12 +117,12 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
117 |
'toggle_slug' => 'header',
|
118 |
'sub_toggle' => 'h2',
|
119 |
),
|
120 |
-
'header_3'
|
121 |
-
'label'
|
122 |
-
'css'
|
123 |
'main' => "{$this->main_css_element} .dsm-cf-html h3",
|
124 |
),
|
125 |
-
'font_size'
|
126 |
'default' => '22px',
|
127 |
),
|
128 |
'line_height' => array(
|
@@ -131,12 +131,12 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
131 |
'toggle_slug' => 'header',
|
132 |
'sub_toggle' => 'h3',
|
133 |
),
|
134 |
-
'header_4'
|
135 |
-
'label'
|
136 |
-
'css'
|
137 |
'main' => "{$this->main_css_element} .dsm-cf-html h4",
|
138 |
),
|
139 |
-
'font_size'
|
140 |
'default' => '18px',
|
141 |
),
|
142 |
'line_height' => array(
|
@@ -145,12 +145,12 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
145 |
'toggle_slug' => 'header',
|
146 |
'sub_toggle' => 'h4',
|
147 |
),
|
148 |
-
'header_5'
|
149 |
-
'label'
|
150 |
-
'css'
|
151 |
'main' => "{$this->main_css_element} .dsm-cf-html h5",
|
152 |
),
|
153 |
-
'font_size'
|
154 |
'default' => '16px',
|
155 |
),
|
156 |
'line_height' => array(
|
@@ -159,12 +159,12 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
159 |
'toggle_slug' => 'header',
|
160 |
'sub_toggle' => 'h5',
|
161 |
),
|
162 |
-
'header_6'
|
163 |
-
'label'
|
164 |
-
'css'
|
165 |
'main' => "{$this->main_css_element} .dsm-cf-html h6",
|
166 |
),
|
167 |
-
'font_size'
|
168 |
'default' => '14px',
|
169 |
),
|
170 |
'line_height' => array(
|
@@ -173,28 +173,28 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
173 |
'toggle_slug' => 'header',
|
174 |
'sub_toggle' => 'h6',
|
175 |
),
|
176 |
-
'body'
|
177 |
-
'label'
|
178 |
-
'font_size'
|
179 |
-
'default'
|
180 |
),
|
181 |
-
'line_height'
|
182 |
'default' => '1.7em ',
|
183 |
),
|
184 |
-
'css'
|
185 |
-
'main'
|
186 |
-
'line_height'
|
187 |
'limited_main' => "{$this->main_css_element} .dsm-cf-html p",
|
188 |
-
'text_shadow'
|
189 |
),
|
190 |
),
|
191 |
-
'labels'
|
192 |
-
'label'
|
193 |
-
'css'
|
194 |
'main' => '%%order_class%% .form-group label.control-label',
|
195 |
),
|
196 |
-
'font_size'
|
197 |
-
'default'
|
198 |
),
|
199 |
'line_height' => array(
|
200 |
'default' => '1.7em',
|
@@ -202,16 +202,16 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
202 |
'letter_spacing' => array(
|
203 |
'default' => '0px',
|
204 |
),
|
205 |
-
'tab_slug'
|
206 |
-
'toggle_slug'
|
207 |
),
|
208 |
-
'description'
|
209 |
-
'label'
|
210 |
-
'css'
|
211 |
'main' => '%%order_class%% .form-group>div span.help-block',
|
212 |
),
|
213 |
-
'font_size'
|
214 |
-
'default'
|
215 |
),
|
216 |
'line_height' => array(
|
217 |
'default' => '1.7em',
|
@@ -219,16 +219,16 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
219 |
'letter_spacing' => array(
|
220 |
'default' => '0px',
|
221 |
),
|
222 |
-
'tab_slug'
|
223 |
-
'toggle_slug'
|
224 |
),
|
225 |
-
'input_textarea_select'
|
226 |
-
'label'
|
227 |
-
'css'
|
228 |
'main' => '%%order_class%% input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), %%order_class%% .form-group textarea, %%order_class%% .form-group select',
|
229 |
),
|
230 |
-
'font_size'
|
231 |
-
'default'
|
232 |
),
|
233 |
'line_height' => array(
|
234 |
'default' => '1.7em',
|
@@ -236,16 +236,16 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
236 |
'letter_spacing' => array(
|
237 |
'default' => '0px',
|
238 |
),
|
239 |
-
'tab_slug'
|
240 |
-
'toggle_slug'
|
241 |
),
|
242 |
'input_textarea_select_focus' => array(
|
243 |
-
'label'
|
244 |
-
'css'
|
245 |
'main' => '%%order_class%% input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus, %%order_class%% .form-group textarea:focus',
|
246 |
),
|
247 |
-
'font_size'
|
248 |
-
'default'
|
249 |
),
|
250 |
'line_height' => array(
|
251 |
'default' => '1.7em',
|
@@ -253,16 +253,16 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
253 |
'letter_spacing' => array(
|
254 |
'default' => '0px',
|
255 |
),
|
256 |
-
'tab_slug'
|
257 |
-
'toggle_slug'
|
258 |
),
|
259 |
-
'placeholder'
|
260 |
-
'label'
|
261 |
-
'css'
|
262 |
'main' => '%%order_class%% .form-group input::placeholder, %%order_class%% .form-group textarea::placeholder, %%order_class%% .form-group input::-webkit-input-placeholder, %%order_class%% .form-group textarea::-webkit-input-placeholder',
|
263 |
),
|
264 |
-
'font_size'
|
265 |
-
'default'
|
266 |
),
|
267 |
'line_height' => array(
|
268 |
'default' => '1.7em',
|
@@ -270,69 +270,69 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
270 |
'letter_spacing' => array(
|
271 |
'default' => '0px',
|
272 |
),
|
273 |
-
'tab_slug'
|
274 |
-
'toggle_slug'
|
275 |
),
|
276 |
-
'radio'
|
277 |
-
'label'
|
278 |
-
'css'
|
279 |
'main' => '%%order_class%% .radio [data-label]',
|
280 |
),
|
281 |
-
'font_size'
|
282 |
-
'default'
|
283 |
),
|
284 |
-
'line_height'
|
285 |
'default' => '1em',
|
286 |
),
|
287 |
-
'letter_spacing'
|
288 |
'default' => '0px',
|
289 |
),
|
290 |
-
'tab_slug'
|
291 |
-
'toggle_slug'
|
292 |
-
'sub_toggle'
|
293 |
-
'use_text_alignment'
|
294 |
),
|
295 |
-
'checkbox'
|
296 |
-
'label'
|
297 |
-
'css'
|
298 |
'main' => '%%order_class%% .checkbox [data-label]',
|
299 |
),
|
300 |
-
'font_size'
|
301 |
-
'default'
|
302 |
),
|
303 |
-
'line_height'
|
304 |
'default' => '1em',
|
305 |
),
|
306 |
-
'letter_spacing'
|
307 |
'default' => '0px',
|
308 |
),
|
309 |
-
'tab_slug'
|
310 |
-
'toggle_slug'
|
311 |
-
'sub_toggle'
|
312 |
-
'use_text_alignment'
|
313 |
),
|
314 |
-
'file'
|
315 |
-
'label'
|
316 |
-
'css'
|
317 |
'main' => '%%order_class%% .file-prevent-overflow',
|
318 |
),
|
319 |
-
'font_size'
|
320 |
-
'default'
|
321 |
),
|
322 |
-
'letter_spacing'
|
323 |
'default' => '0px',
|
324 |
),
|
325 |
-
'hide_line_height'
|
326 |
-
'tab_slug'
|
327 |
-
'toggle_slug'
|
328 |
),
|
329 |
-
'error_msg'
|
330 |
-
'label'
|
331 |
-
'css'
|
332 |
'main' => '%%order_class%% .has-error .help-block.caldera_ajax_error_block',
|
333 |
),
|
334 |
-
'font_size'
|
335 |
-
'default'
|
336 |
),
|
337 |
'line_height' => array(
|
338 |
'default' => '1.7em',
|
@@ -340,16 +340,16 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
340 |
'letter_spacing' => array(
|
341 |
'default' => '0px',
|
342 |
),
|
343 |
-
'tab_slug'
|
344 |
-
'toggle_slug'
|
345 |
),
|
346 |
-
'success_validation'
|
347 |
-
'label'
|
348 |
-
'css'
|
349 |
'main' => '%%order_class%% .alert.alert-success',
|
350 |
),
|
351 |
-
'font_size'
|
352 |
-
'default'
|
353 |
),
|
354 |
'line_height' => array(
|
355 |
'default' => '1.7em',
|
@@ -357,8 +357,8 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
357 |
'letter_spacing' => array(
|
358 |
'default' => '0px',
|
359 |
),
|
360 |
-
'tab_slug'
|
361 |
-
'toggle_slug'
|
362 |
),
|
363 |
),
|
364 |
'background' => array(
|
@@ -372,71 +372,71 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
372 |
),
|
373 |
),
|
374 |
'max_width' => array(
|
375 |
-
'css'
|
376 |
'main' => '%%order_class%%',
|
377 |
),
|
378 |
),
|
379 |
-
'borders'
|
380 |
-
'default'
|
381 |
-
'image'
|
382 |
'css' => array(
|
383 |
'main' => array(
|
384 |
-
'border_radii'
|
385 |
-
'border_styles' =>
|
386 |
-
)
|
387 |
),
|
388 |
'label_prefix' => esc_html__( 'Field', 'dsm-supreme-modules-for-divi' ),
|
389 |
-
'tab_slug'
|
390 |
-
'toggle_slug'
|
391 |
'depends_show_if' => 'off',
|
392 |
),
|
393 |
-
'error_msg'
|
394 |
'css' => array(
|
395 |
'main' => array(
|
396 |
-
'border_radii'
|
397 |
-
'border_styles' =>
|
398 |
-
)
|
399 |
),
|
400 |
'label_prefix' => esc_html__( 'Error Messages', 'dsm-supreme-modules-for-divi' ),
|
401 |
-
'tab_slug'
|
402 |
-
'toggle_slug'
|
403 |
'depends_show_if' => 'off',
|
404 |
),
|
405 |
-
'validation_success'
|
406 |
'css' => array(
|
407 |
'main' => array(
|
408 |
-
'border_radii'
|
409 |
-
'border_styles' =>
|
410 |
-
)
|
411 |
),
|
412 |
'label_prefix' => esc_html__( 'Validation Success', 'dsm-supreme-modules-for-divi' ),
|
413 |
-
'tab_slug'
|
414 |
-
'toggle_slug'
|
415 |
'depends_show_if' => 'off',
|
416 |
),
|
417 |
),
|
418 |
-
'box_shadow'
|
419 |
-
'default'
|
420 |
-
'input_field'
|
421 |
-
'label'
|
422 |
-
'option_category'
|
423 |
-
'tab_slug'
|
424 |
-
'toggle_slug'
|
425 |
-
'depends_show_if'
|
426 |
-
'css'
|
427 |
'main' => '%%order_class%% input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), %%order_class%% .form-group textarea, %%order_class%% .form-group select',
|
428 |
),
|
429 |
-
'default_on_fronts'
|
430 |
'color' => '',
|
431 |
'position' => '',
|
432 |
),
|
433 |
),
|
434 |
),
|
435 |
-
'filters'
|
436 |
'button' => array(
|
437 |
-
'button_one'
|
438 |
-
'label'
|
439 |
-
'css'
|
440 |
'main' => '%%order_class%% .et_pb_button_module_wrapper .et_pb_button',
|
441 |
),
|
442 |
'box_shadow' => array(
|
@@ -446,8 +446,8 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
446 |
),
|
447 |
),
|
448 |
'button_advanced_file' => array(
|
449 |
-
'label'
|
450 |
-
'css'
|
451 |
'main' => '%%order_class%% .cf-uploader-trigger',
|
452 |
),
|
453 |
'box_shadow' => array(
|
@@ -462,11 +462,11 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
462 |
|
463 |
public function get_fields() {
|
464 |
return array(
|
465 |
-
'cf_notice'
|
466 |
-
'type'
|
467 |
-
'value'
|
468 |
'display_if' => true,
|
469 |
-
'message'
|
470 |
sprintf(
|
471 |
'Note: This module will automatically disable Alert Style, Form Styles and Grid Structure on the frontend even your <a href="%s" target="_blank">Caldera Forms General Settings</a> is enabled. This module will not function and render properly without disabling the above.',
|
472 |
admin_url( 'admin.php?page=caldera-forms' )
|
@@ -474,13 +474,13 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
474 |
'dsm-supreme-modules-for-divi'
|
475 |
),
|
476 |
),
|
477 |
-
'cf_library'
|
478 |
'label' => esc_html__( 'Caldera Form', 'dsm-supreme-modules-for-divi' ),
|
479 |
'type' => 'select',
|
480 |
'option_category' => 'layout',
|
481 |
'options' => dsm_get_caldera_forms(),
|
482 |
),
|
483 |
-
'show_validation'
|
484 |
'label' => esc_html__( 'Show Error & Validation Messages', 'dsm-supreme-modules-for-divi' ),
|
485 |
'type' => 'yes_no_button',
|
486 |
'option_category' => 'basic_option',
|
@@ -488,25 +488,25 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
488 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
489 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
490 |
),
|
491 |
-
'default'
|
492 |
-
'description'
|
493 |
),
|
494 |
-
'hr_color'
|
495 |
-
'label'
|
496 |
-
'type'
|
497 |
-
'custom_color'
|
498 |
-
'default'
|
499 |
-
'tab_slug'
|
500 |
-
'toggle_slug'
|
501 |
),
|
502 |
-
'hr_gap'
|
503 |
-
'label'
|
504 |
-
'type'
|
505 |
-
'option_category'
|
506 |
-
'tab_slug'
|
507 |
-
'toggle_slug'
|
508 |
-
'default_unit'
|
509 |
-
'default'
|
510 |
'mobile_options' => true,
|
511 |
'validate_unit' => true,
|
512 |
'responsive' => true,
|
@@ -516,204 +516,204 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
516 |
'step' => '0.1',
|
517 |
),
|
518 |
),
|
519 |
-
'label_bottom_spacing'
|
520 |
-
'label'
|
521 |
-
'type'
|
522 |
-
'option_category'
|
523 |
-
'tab_slug'
|
524 |
-
'toggle_slug'
|
525 |
-
'default_unit'
|
526 |
-
'default'
|
527 |
),
|
528 |
-
'label_required_asterisk_color'
|
529 |
-
'label'
|
530 |
-
'type'
|
531 |
-
'custom_color'
|
532 |
-
'tab_slug'
|
533 |
-
'toggle_slug'
|
534 |
-
'default'
|
535 |
),
|
536 |
-
'description_background_color'
|
537 |
-
'label'
|
538 |
-
'type'
|
539 |
-
'custom_color'
|
540 |
-
'tab_slug'
|
541 |
-
'toggle_slug'
|
542 |
),
|
543 |
'input_textarea_select_margin_bottom' => array(
|
544 |
-
'label'
|
545 |
-
'type'
|
546 |
-
'option_category'
|
547 |
-
'tab_slug'
|
548 |
-
'toggle_slug'
|
549 |
-
'default_unit'
|
550 |
'mobile_options' => true,
|
551 |
'validate_unit' => true,
|
552 |
'responsive' => true,
|
553 |
-
'default'
|
554 |
),
|
555 |
-
'button_alignment'
|
556 |
-
'label'
|
557 |
-
'type'
|
558 |
-
'option_category'
|
559 |
-
'options'
|
560 |
-
'default'
|
561 |
-
'tab_slug'
|
562 |
-
'toggle_slug'
|
563 |
-
'description'
|
564 |
),
|
565 |
-
'button_margin_top'
|
566 |
-
'label'
|
567 |
-
'type'
|
568 |
-
'option_category'
|
569 |
-
'tab_slug'
|
570 |
-
'toggle_slug'
|
571 |
-
'default_unit'
|
572 |
'mobile_options' => true,
|
573 |
'validate_unit' => true,
|
574 |
'responsive' => true,
|
575 |
-
'default'
|
576 |
),
|
577 |
-
'input_background_color'
|
578 |
-
'label'
|
579 |
-
'type'
|
580 |
-
'custom_color'
|
581 |
-
'tab_slug'
|
582 |
-
'toggle_slug'
|
583 |
),
|
584 |
-
'file_padding'
|
585 |
-
'label'
|
586 |
-
'type'
|
587 |
-
|
588 |
'tab_slug' => 'advanced',
|
589 |
'toggle_slug' => 'cf_basic_file',
|
590 |
-
'validate_unit'
|
591 |
-
'default'
|
592 |
-
'default_unit'
|
593 |
-
'default_on_front'=> '',
|
594 |
-
'mobile_options'
|
595 |
-
'hover'
|
596 |
),
|
597 |
-
'file_background_color'
|
598 |
-
'label'
|
599 |
-
'type'
|
600 |
-
'custom_color'
|
601 |
-
'tab_slug'
|
602 |
-
'toggle_slug'
|
603 |
),
|
604 |
-
'error_msg_background_color'
|
605 |
-
'label'
|
606 |
-
'type'
|
607 |
-
'custom_color'
|
608 |
-
'tab_slug'
|
609 |
-
'toggle_slug'
|
610 |
),
|
611 |
'validation_success_background_color' => array(
|
612 |
-
'label'
|
613 |
-
'type'
|
614 |
-
'custom_color'
|
615 |
-
'tab_slug'
|
616 |
-
'toggle_slug'
|
617 |
),
|
618 |
-
'radio_style'
|
619 |
-
'label'
|
620 |
-
'type'
|
621 |
-
'option_category'
|
622 |
-
'options'
|
623 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
624 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
625 |
),
|
626 |
-
'default_'=> 'on',
|
627 |
-
'default_on_front'=> 'on',
|
628 |
'tab_slug' => 'advanced',
|
629 |
'toggle_slug' => 'cf_radio_checkbox',
|
630 |
-
'sub_toggle'
|
631 |
-
'description'
|
632 |
),
|
633 |
-
'radio_checked_color'
|
634 |
-
'label'
|
635 |
-
'type'
|
636 |
-
'custom_color'
|
637 |
-
'default'
|
638 |
-
'tab_slug'
|
639 |
-
'toggle_slug'
|
640 |
-
'sub_toggle'
|
641 |
-
'show_if'
|
642 |
'radio_style' => 'on',
|
643 |
),
|
644 |
),
|
645 |
-
'radio_checked_background_color'
|
646 |
-
'label'
|
647 |
-
'type'
|
648 |
-
'custom_color'
|
649 |
-
'default'
|
650 |
-
'tab_slug'
|
651 |
-
'toggle_slug'
|
652 |
-
'sub_toggle'
|
653 |
-
'show_if'
|
654 |
'radio_style' => 'on',
|
655 |
),
|
656 |
),
|
657 |
-
'radio_background_color'
|
658 |
-
'label'
|
659 |
-
'type'
|
660 |
-
'custom_color'
|
661 |
-
'default'
|
662 |
-
'tab_slug'
|
663 |
-
'toggle_slug'
|
664 |
-
'sub_toggle'
|
665 |
-
'show_if'
|
666 |
'radio_style' => 'on',
|
667 |
),
|
668 |
),
|
669 |
-
'checkbox_style'
|
670 |
-
'label'
|
671 |
-
'type'
|
672 |
-
'option_category'
|
673 |
-
'options'
|
674 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
675 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
676 |
),
|
677 |
-
'default_'=> 'on',
|
678 |
-
'default_on_front'=> 'on',
|
679 |
'tab_slug' => 'advanced',
|
680 |
'toggle_slug' => 'cf_radio_checkbox',
|
681 |
-
'sub_toggle'
|
682 |
-
'description'
|
683 |
),
|
684 |
-
'checkbox_checked_color'
|
685 |
-
'label'
|
686 |
-
'type'
|
687 |
-
'custom_color'
|
688 |
-
'default'
|
689 |
-
'tab_slug'
|
690 |
-
'toggle_slug'
|
691 |
-
'sub_toggle'
|
692 |
-
'show_if'
|
693 |
'checkbox_style' => 'on',
|
694 |
),
|
695 |
),
|
696 |
-
'checkbox_checked_background_color'
|
697 |
-
'label'
|
698 |
-
'type'
|
699 |
-
'custom_color'
|
700 |
-
'default'
|
701 |
-
'tab_slug'
|
702 |
-
'toggle_slug'
|
703 |
-
'sub_toggle'
|
704 |
-
'show_if'
|
705 |
'checkbox_style' => 'on',
|
706 |
),
|
707 |
),
|
708 |
-
'checkbox_background_color'
|
709 |
-
'label'
|
710 |
-
'type'
|
711 |
-
'custom_color'
|
712 |
-
'default'
|
713 |
-
'tab_slug'
|
714 |
-
'toggle_slug'
|
715 |
-
'sub_toggle'
|
716 |
-
'show_if'
|
717 |
'checkbox_style' => 'on',
|
718 |
),
|
719 |
),
|
@@ -737,86 +737,98 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
737 |
}
|
738 |
|
739 |
public function render( $attrs, $content = null, $render_slug ) {
|
740 |
-
$cf_library
|
741 |
-
$show_validation
|
742 |
-
$hr_color
|
743 |
-
$hr_gap
|
744 |
-
$hr_gap_tablet
|
745 |
-
$hr_gap_phone
|
746 |
-
$hr_gap_last_edited
|
747 |
-
$label_bottom_spacing
|
748 |
-
$label_required_asterisk_color
|
749 |
-
$description_background_color
|
750 |
-
$input_background_color
|
751 |
-
$file_background_color
|
752 |
-
$error_msg_background_color
|
753 |
-
$validation_success_background_color
|
754 |
-
$file_padding_hover
|
755 |
-
$file_padding
|
756 |
-
$file_padding_values
|
757 |
-
$file_padding_tablet
|
758 |
-
$file_padding_phone
|
759 |
-
$input_textarea_select_margin_bottom
|
760 |
-
$input_textarea_select_margin_bottom_tablet
|
761 |
-
$input_textarea_select_margin_bottom_phone
|
762 |
$input_textarea_select_margin_bottom_last_edited = $this->props['input_textarea_select_margin_bottom_last_edited'];
|
763 |
-
$custom_icon_1
|
764 |
-
$button_custom_1
|
765 |
-
$button_alignment
|
766 |
-
$button_margin_top
|
767 |
-
$button_margin_top_tablet
|
768 |
-
$button_margin_top_phone
|
769 |
-
$button_margin_top_last_edited
|
770 |
-
$custom_icon_advanced
|
771 |
-
$button_custom_advanced
|
772 |
-
$radio_style
|
773 |
-
$radio_checked_color
|
774 |
-
$radio_checked_background_color
|
775 |
-
$radio_background_color
|
776 |
-
$checkbox_style
|
777 |
-
$checkbox_checked_color
|
778 |
-
$checkbox_checked_background_color
|
779 |
-
$checkbox_background_color
|
780 |
-
$input_textarea_select_text_color
|
781 |
-
|
782 |
if ( '' !== $input_textarea_select_text_color ) {
|
783 |
-
ET_Builder_Element::set_style(
|
784 |
-
|
785 |
-
|
786 |
-
'
|
787 |
-
|
788 |
-
|
789 |
-
|
|
|
|
|
|
|
790 |
}
|
791 |
|
792 |
if ( '#ee0000' !== $label_required_asterisk_color ) {
|
793 |
-
ET_Builder_Element::set_style(
|
794 |
-
|
795 |
-
|
796 |
-
'
|
797 |
-
|
798 |
-
|
799 |
-
|
|
|
|
|
|
|
800 |
}
|
801 |
|
802 |
if ( '' !== $description_background_color ) {
|
803 |
-
ET_Builder_Element::set_style(
|
804 |
-
|
805 |
-
|
806 |
-
'
|
807 |
-
|
808 |
-
|
809 |
-
|
|
|
|
|
|
|
810 |
}
|
811 |
|
812 |
if ( '#666666' !== $hr_color ) {
|
813 |
-
ET_Builder_Element::set_style(
|
814 |
-
|
815 |
-
|
816 |
-
'
|
817 |
-
|
818 |
-
|
819 |
-
|
|
|
|
|
|
|
820 |
}
|
821 |
|
822 |
if ( '' !== $hr_gap_tablet || '' !== $hr_gap_phone || '0.5em' !== $hr_gap ) {
|
@@ -832,10 +844,11 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
832 |
et_pb_generate_responsive_css( $hr_gap_values, '%%order_class%% .dsm-cf-html hr', 'margin-block-end', $render_slug );
|
833 |
}
|
834 |
|
835 |
-
|
836 |
if ( '' !== $input_background_color ) {
|
837 |
-
ET_Builder_Element::set_style(
|
838 |
-
|
|
|
|
|
839 |
%%order_class%% input.title,
|
840 |
%%order_class%% input[type=email],
|
841 |
%%order_class%% input[type=url],
|
@@ -847,124 +860,158 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
847 |
%%order_class%% input[type=date],
|
848 |
%%order_class%% select.form-control,
|
849 |
%%order_class%% textarea',
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
|
|
855 |
}
|
856 |
|
857 |
if ( '' !== $file_background_color ) {
|
858 |
-
ET_Builder_Element::set_style(
|
859 |
-
|
860 |
-
|
861 |
-
'
|
862 |
-
|
863 |
-
|
864 |
-
|
|
|
|
|
|
|
865 |
}
|
866 |
|
867 |
if ( '' !== $error_msg_background_color ) {
|
868 |
-
ET_Builder_Element::set_style(
|
869 |
-
|
870 |
-
|
871 |
-
'
|
872 |
-
|
873 |
-
|
874 |
-
|
|
|
|
|
|
|
875 |
}
|
876 |
|
877 |
if ( '' !== $validation_success_background_color ) {
|
878 |
-
ET_Builder_Element::set_style(
|
879 |
-
|
880 |
-
|
881 |
-
'
|
882 |
-
|
883 |
-
|
884 |
-
|
|
|
|
|
|
|
885 |
}
|
886 |
|
887 |
if ( '5px' !== $label_bottom_spacing ) {
|
888 |
-
ET_Builder_Element::set_style(
|
889 |
-
|
890 |
-
|
891 |
-
'
|
892 |
-
|
893 |
-
|
894 |
-
|
|
|
|
|
|
|
895 |
}
|
896 |
|
897 |
if ( 'left' !== $button_alignment ) {
|
898 |
-
ET_Builder_Element::set_style(
|
899 |
-
|
900 |
-
|
901 |
-
'
|
902 |
-
|
903 |
-
|
904 |
-
|
|
|
|
|
|
|
905 |
}
|
906 |
|
907 |
if ( 'off' !== $radio_style ) {
|
908 |
if ( '#2ea3f2' !== $radio_checked_color ) {
|
909 |
-
ET_Builder_Element::set_style(
|
910 |
-
|
911 |
-
|
912 |
-
'
|
913 |
-
|
914 |
-
|
915 |
-
|
|
|
|
|
|
|
916 |
}
|
917 |
|
918 |
if ( '#eeeeee' !== $radio_checked_background_color ) {
|
919 |
-
ET_Builder_Element::set_style(
|
920 |
-
|
921 |
-
|
922 |
-
'
|
923 |
-
|
924 |
-
|
925 |
-
|
|
|
|
|
|
|
926 |
}
|
927 |
|
928 |
if ( '#eeeeee' !== $radio_background_color ) {
|
929 |
-
ET_Builder_Element::set_style(
|
930 |
-
|
931 |
-
|
932 |
-
'
|
933 |
-
|
934 |
-
|
935 |
-
|
|
|
|
|
|
|
936 |
}
|
937 |
}
|
938 |
|
939 |
if ( 'off' !== $checkbox_style ) {
|
940 |
if ( '#2ea3f2' !== $checkbox_checked_color ) {
|
941 |
-
ET_Builder_Element::set_style(
|
942 |
-
|
943 |
-
|
944 |
-
'
|
945 |
-
|
946 |
-
|
947 |
-
|
|
|
|
|
|
|
948 |
}
|
949 |
|
950 |
if ( '#eeeeee' !== $checkbox_checked_background_color ) {
|
951 |
-
ET_Builder_Element::set_style(
|
952 |
-
|
953 |
-
|
954 |
-
'
|
955 |
-
|
956 |
-
|
957 |
-
|
|
|
|
|
|
|
958 |
}
|
959 |
|
960 |
if ( '#eeeeee' !== $checkbox_background_color ) {
|
961 |
-
ET_Builder_Element::set_style(
|
962 |
-
|
963 |
-
|
964 |
-
'
|
965 |
-
|
966 |
-
|
967 |
-
|
|
|
|
|
|
|
968 |
}
|
969 |
}
|
970 |
|
@@ -993,53 +1040,60 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
993 |
}
|
994 |
|
995 |
$this->apply_custom_margin_padding(
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
);
|
1001 |
|
1002 |
if ( class_exists( 'Caldera_Forms' ) ) {
|
1003 |
-
add_filter(
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
|
|
|
|
|
|
|
|
|
|
1025 |
//disable CF styles
|
1026 |
add_filter( 'caldera_forms_get_style_includes', 'dsm_filter_caldera_forms_get_style_includes', 10, 1 );
|
1027 |
}
|
1028 |
|
1029 |
// Module classnames
|
1030 |
-
$this->add_classname(
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
|
|
|
|
1037 |
|
1038 |
$output = sprintf(
|
1039 |
'<div class="%2$s%4$s"%3$s%5$s>
|
1040 |
%1$s
|
1041 |
</div>',
|
1042 |
-
'' !== $cf_library ? do_shortcode('[caldera_form id="'.esc_attr( $cf_library ).'"]') : '',
|
1043 |
'' !== $custom_icon_1 ? ' dsm_caldera_forms_btn_icon' : '',
|
1044 |
'' !== $custom_icon_1 ? sprintf(
|
1045 |
' data-dsm-btn-icon="%1$s"',
|
@@ -1050,81 +1104,94 @@ class DSM_CalderaForms extends ET_Builder_Module {
|
|
1050 |
' data-dsm-advanced-btn-icon="%1$s"',
|
1051 |
esc_attr( et_pb_process_font_icon( $custom_icon_advanced ) )
|
1052 |
) : ''
|
1053 |
-
|
1054 |
);
|
1055 |
|
1056 |
return $output;
|
1057 |
}
|
1058 |
|
1059 |
-
public function apply_custom_margin_padding($function_name, $slug, $type, $class, $important = false) {
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
|
|
|
|
|
|
1072 |
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
|
|
|
|
|
|
1080 |
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
|
|
|
|
|
|
1087 |
}
|
1088 |
if ( et_builder_is_hover_enabled( $slug, $this->props ) ) {
|
1089 |
-
if (isset($this->props[$slug.'__hover']) ) {
|
1090 |
-
$hover = $this->props[$slug.'__hover'];
|
1091 |
-
ET_Builder_Element::set_style(
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
|
|
|
|
|
|
1095 |
}
|
1096 |
}
|
1097 |
-
|
1098 |
}
|
1099 |
|
1100 |
new DSM_CalderaForms;
|
1101 |
|
1102 |
function dsm_get_caldera_forms() {
|
1103 |
$options = array();
|
1104 |
-
|
1105 |
-
|
1106 |
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
|
1117 |
-
|
1118 |
}
|
1119 |
|
1120 |
if ( ! function_exists( 'dsm_filter_caldera_forms_get_style_includes' ) ) :
|
1121 |
-
function dsm_filter_caldera_forms_get_style_includes( $style_includes ) {
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
|
|
|
|
1127 |
|
1128 |
-
|
1129 |
-
}
|
1130 |
-
endif;
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
+
$this->name = esc_html__( 'Supreme Caldera Forms', 'dsm-supreme-modules-for-divi' );
|
16 |
$this->icon = '1';
|
17 |
$this->main_css_element = '%%order_class%%';
|
18 |
// Toggle settings
|
19 |
+
$this->settings_modal_toggles = array(
|
20 |
'general' => array(
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Caldera Forms', 'dsm-supreme-modules-for-divi' ),
|
24 |
),
|
25 |
'advanced' => array(
|
26 |
'toggles' => array(
|
27 |
+
'header' => array(
|
28 |
+
'title' => esc_html__( 'Header Text', 'dsm-supreme-modules-pro-for-divi' ),
|
29 |
+
'priority' => 5,
|
30 |
'tabbed_subtoggles' => true,
|
31 |
+
'sub_toggles' => array(
|
32 |
'h1' => array(
|
33 |
'name' => 'H1',
|
34 |
'icon' => 'text-h1',
|
55 |
),
|
56 |
),
|
57 |
),
|
58 |
+
'body' => array(
|
59 |
'title' => esc_html__( 'Body', 'dsm-supreme-modules-for-divi' ),
|
60 |
'priority' => 5,
|
61 |
),
|
62 |
+
'cf_hr' => esc_html__( 'Horizontal Ruler (HR Tag)', 'dsm-supreme-modules-for-divi' ),
|
63 |
+
'cf_labels' => esc_html__( 'Labels', 'dsm-supreme-modules-for-divi' ),
|
64 |
+
'cf_description' => esc_html__( 'Field Description', 'dsm-supreme-modules-for-divi' ),
|
65 |
+
'cf_field' => array(
|
66 |
'title' => esc_html__( 'Input, Textarea & Select', 'dsm-supreme-modules-for-divi' ),
|
67 |
),
|
68 |
+
'cf_field_focus' => array(
|
69 |
'title' => esc_html__( 'Input, Textarea & Select Focus', 'dsm-supreme-modules-for-divi' ),
|
70 |
),
|
71 |
+
'cf_placeholder' => esc_html__( 'Placeholder', 'dsm-supreme-modules-for-divi' ),
|
72 |
+
'cf_radio_checkbox' => array(
|
73 |
+
'title' => esc_html__( 'Radio & Checkbox', 'dsm-supreme-modules-for-divi' ),
|
74 |
'tabbed_subtoggles' => true,
|
75 |
+
'sub_toggles' => array(
|
76 |
+
'radio' => array(
|
77 |
'name' => 'Radio',
|
78 |
),
|
79 |
+
'checkbox' => array(
|
80 |
'name' => 'Checkbox',
|
81 |
),
|
82 |
),
|
83 |
),
|
84 |
+
'cf_basic_file' => esc_html__( 'Basic File', 'dsm-supreme-modules-for-divi' ),
|
85 |
+
'cf_error' => esc_html__( 'Error Messages', 'dsm-supreme-modules-for-divi' ),
|
86 |
'cf_validation_success' => esc_html__( 'Success Message', 'dsm-supreme-modules-for-divi' ),
|
87 |
),
|
88 |
),
|
90 |
}
|
91 |
public function get_advanced_fields_config() {
|
92 |
return array(
|
93 |
+
'text' => false,
|
94 |
'fonts' => array(
|
95 |
+
'header' => array(
|
96 |
+
'label' => esc_html__( 'Heading', 'dsm-supreme-modules-pro-for-divi' ),
|
97 |
+
'css' => array(
|
98 |
'main' => "{$this->main_css_element} .dsm-cf-html h1",
|
99 |
),
|
100 |
+
'font_size' => array(
|
101 |
'default' => absint( et_get_option( 'body_header_size', '30' ) ) . 'px',
|
102 |
),
|
103 |
'toggle_slug' => 'header',
|
104 |
'sub_toggle' => 'h1',
|
105 |
),
|
106 |
+
'header_2' => array(
|
107 |
+
'label' => esc_html__( 'Heading 2', 'dsm-supreme-modules-pro-for-divi' ),
|
108 |
+
'css' => array(
|
109 |
'main' => "{$this->main_css_element} .dsm-cf-html h2",
|
110 |
),
|
111 |
+
'font_size' => array(
|
112 |
'default' => '26px',
|
113 |
),
|
114 |
'line_height' => array(
|
117 |
'toggle_slug' => 'header',
|
118 |
'sub_toggle' => 'h2',
|
119 |
),
|
120 |
+
'header_3' => array(
|
121 |
+
'label' => esc_html__( 'Heading 3', 'dsm-supreme-modules-pro-for-divi' ),
|
122 |
+
'css' => array(
|
123 |
'main' => "{$this->main_css_element} .dsm-cf-html h3",
|
124 |
),
|
125 |
+
'font_size' => array(
|
126 |
'default' => '22px',
|
127 |
),
|
128 |
'line_height' => array(
|
131 |
'toggle_slug' => 'header',
|
132 |
'sub_toggle' => 'h3',
|
133 |
),
|
134 |
+
'header_4' => array(
|
135 |
+
'label' => esc_html__( 'Heading 4', 'dsm-supreme-modules-pro-for-divi' ),
|
136 |
+
'css' => array(
|
137 |
'main' => "{$this->main_css_element} .dsm-cf-html h4",
|
138 |
),
|
139 |
+
'font_size' => array(
|
140 |
'default' => '18px',
|
141 |
),
|
142 |
'line_height' => array(
|
145 |
'toggle_slug' => 'header',
|
146 |
'sub_toggle' => 'h4',
|
147 |
),
|
148 |
+
'header_5' => array(
|
149 |
+
'label' => esc_html__( 'Heading 5', 'dsm-supreme-modules-pro-for-divi' ),
|
150 |
+
'css' => array(
|
151 |
'main' => "{$this->main_css_element} .dsm-cf-html h5",
|
152 |
),
|
153 |
+
'font_size' => array(
|
154 |
'default' => '16px',
|
155 |
),
|
156 |
'line_height' => array(
|
159 |
'toggle_slug' => 'header',
|
160 |
'sub_toggle' => 'h5',
|
161 |
),
|
162 |
+
'header_6' => array(
|
163 |
+
'label' => esc_html__( 'Heading 6', 'dsm-supreme-modules-pro-for-divi' ),
|
164 |
+
'css' => array(
|
165 |
'main' => "{$this->main_css_element} .dsm-cf-html h6",
|
166 |
),
|
167 |
+
'font_size' => array(
|
168 |
'default' => '14px',
|
169 |
),
|
170 |
'line_height' => array(
|
173 |
'toggle_slug' => 'header',
|
174 |
'sub_toggle' => 'h6',
|
175 |
),
|
176 |
+
'body' => array(
|
177 |
+
'label' => esc_html__( 'Body', 'dsm-supreme-modules-for-divi' ),
|
178 |
+
'font_size' => array(
|
179 |
+
'default' => '14px',
|
180 |
),
|
181 |
+
'line_height' => array(
|
182 |
'default' => '1.7em ',
|
183 |
),
|
184 |
+
'css' => array(
|
185 |
+
'main' => "{$this->main_css_element} .dsm-cf-html p",
|
186 |
+
'line_height' => "{$this->main_css_element} .dsm-cf-html p",
|
187 |
'limited_main' => "{$this->main_css_element} .dsm-cf-html p",
|
188 |
+
'text_shadow' => "{$this->main_css_element} .dsm-cf-html p",
|
189 |
),
|
190 |
),
|
191 |
+
'labels' => array(
|
192 |
+
'label' => esc_html__( 'Labels', 'dsm-supreme-modules-for-divi' ),
|
193 |
+
'css' => array(
|
194 |
'main' => '%%order_class%% .form-group label.control-label',
|
195 |
),
|
196 |
+
'font_size' => array(
|
197 |
+
'default' => '14px',
|
198 |
),
|
199 |
'line_height' => array(
|
200 |
'default' => '1.7em',
|
202 |
'letter_spacing' => array(
|
203 |
'default' => '0px',
|
204 |
),
|
205 |
+
'tab_slug' => 'advanced',
|
206 |
+
'toggle_slug' => 'cf_labels',
|
207 |
),
|
208 |
+
'description' => array(
|
209 |
+
'label' => esc_html__( 'Description', 'dsm-supreme-modules-for-divi' ),
|
210 |
+
'css' => array(
|
211 |
'main' => '%%order_class%% .form-group>div span.help-block',
|
212 |
),
|
213 |
+
'font_size' => array(
|
214 |
+
'default' => '14px',
|
215 |
),
|
216 |
'line_height' => array(
|
217 |
'default' => '1.7em',
|
219 |
'letter_spacing' => array(
|
220 |
'default' => '0px',
|
221 |
),
|
222 |
+
'tab_slug' => 'advanced',
|
223 |
+
'toggle_slug' => 'cf_description',
|
224 |
),
|
225 |
+
'input_textarea_select' => array(
|
226 |
+
'label' => esc_html__( 'Input, Textarea & Select', 'dsm-supreme-modules-for-divi' ),
|
227 |
+
'css' => array(
|
228 |
'main' => '%%order_class%% input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), %%order_class%% .form-group textarea, %%order_class%% .form-group select',
|
229 |
),
|
230 |
+
'font_size' => array(
|
231 |
+
'default' => '14px',
|
232 |
),
|
233 |
'line_height' => array(
|
234 |
'default' => '1.7em',
|
236 |
'letter_spacing' => array(
|
237 |
'default' => '0px',
|
238 |
),
|
239 |
+
'tab_slug' => 'advanced',
|
240 |
+
'toggle_slug' => 'cf_field',
|
241 |
),
|
242 |
'input_textarea_select_focus' => array(
|
243 |
+
'label' => esc_html__( 'Input, Textarea & Select Focus', 'dsm-supreme-modules-for-divi' ),
|
244 |
+
'css' => array(
|
245 |
'main' => '%%order_class%% input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus, %%order_class%% .form-group textarea:focus',
|
246 |
),
|
247 |
+
'font_size' => array(
|
248 |
+
'default' => '14px',
|
249 |
),
|
250 |
'line_height' => array(
|
251 |
'default' => '1.7em',
|
253 |
'letter_spacing' => array(
|
254 |
'default' => '0px',
|
255 |
),
|
256 |
+
'tab_slug' => 'advanced',
|
257 |
+
'toggle_slug' => 'cf_field_focus',
|
258 |
),
|
259 |
+
'placeholder' => array(
|
260 |
+
'label' => esc_html__( 'Placeholder', 'dsm-supreme-modules-for-divi' ),
|
261 |
+
'css' => array(
|
262 |
'main' => '%%order_class%% .form-group input::placeholder, %%order_class%% .form-group textarea::placeholder, %%order_class%% .form-group input::-webkit-input-placeholder, %%order_class%% .form-group textarea::-webkit-input-placeholder',
|
263 |
),
|
264 |
+
'font_size' => array(
|
265 |
+
'default' => '14px',
|
266 |
),
|
267 |
'line_height' => array(
|
268 |
'default' => '1.7em',
|
270 |
'letter_spacing' => array(
|
271 |
'default' => '0px',
|
272 |
),
|
273 |
+
'tab_slug' => 'advanced',
|
274 |
+
'toggle_slug' => 'cf_placeholder',
|
275 |
),
|
276 |
+
'radio' => array(
|
277 |
+
'label' => esc_html__( 'Radio', 'dsm-supreme-modules-for-divi' ),
|
278 |
+
'css' => array(
|
279 |
'main' => '%%order_class%% .radio [data-label]',
|
280 |
),
|
281 |
+
'font_size' => array(
|
282 |
+
'default' => '14px',
|
283 |
),
|
284 |
+
'line_height' => array(
|
285 |
'default' => '1em',
|
286 |
),
|
287 |
+
'letter_spacing' => array(
|
288 |
'default' => '0px',
|
289 |
),
|
290 |
+
'tab_slug' => 'advanced',
|
291 |
+
'toggle_slug' => 'cf_radio_checkbox',
|
292 |
+
'sub_toggle' => 'radio',
|
293 |
+
'use_text_alignment' => false,
|
294 |
),
|
295 |
+
'checkbox' => array(
|
296 |
+
'label' => esc_html__( 'Checkbox', 'dsm-supreme-modules-for-divi' ),
|
297 |
+
'css' => array(
|
298 |
'main' => '%%order_class%% .checkbox [data-label]',
|
299 |
),
|
300 |
+
'font_size' => array(
|
301 |
+
'default' => '14px',
|
302 |
),
|
303 |
+
'line_height' => array(
|
304 |
'default' => '1em',
|
305 |
),
|
306 |
+
'letter_spacing' => array(
|
307 |
'default' => '0px',
|
308 |
),
|
309 |
+
'tab_slug' => 'advanced',
|
310 |
+
'toggle_slug' => 'cf_radio_checkbox',
|
311 |
+
'sub_toggle' => 'checkbox',
|
312 |
+
'use_text_alignment' => false,
|
313 |
),
|
314 |
+
'file' => array(
|
315 |
+
'label' => esc_html__( 'File', 'dsm-supreme-modules-for-divi' ),
|
316 |
+
'css' => array(
|
317 |
'main' => '%%order_class%% .file-prevent-overflow',
|
318 |
),
|
319 |
+
'font_size' => array(
|
320 |
+
'default' => '11px',
|
321 |
),
|
322 |
+
'letter_spacing' => array(
|
323 |
'default' => '0px',
|
324 |
),
|
325 |
+
'hide_line_height' => true,
|
326 |
+
'tab_slug' => 'advanced',
|
327 |
+
'toggle_slug' => 'cf_basic_file',
|
328 |
),
|
329 |
+
'error_msg' => array(
|
330 |
+
'label' => esc_html__( 'Error Messages', 'dsm-supreme-modules-for-divi' ),
|
331 |
+
'css' => array(
|
332 |
'main' => '%%order_class%% .has-error .help-block.caldera_ajax_error_block',
|
333 |
),
|
334 |
+
'font_size' => array(
|
335 |
+
'default' => '14px',
|
336 |
),
|
337 |
'line_height' => array(
|
338 |
'default' => '1.7em',
|
340 |
'letter_spacing' => array(
|
341 |
'default' => '0px',
|
342 |
),
|
343 |
+
'tab_slug' => 'advanced',
|
344 |
+
'toggle_slug' => 'cf_error',
|
345 |
),
|
346 |
+
'success_validation' => array(
|
347 |
+
'label' => esc_html__( 'Success Message', 'dsm-supreme-modules-for-divi' ),
|
348 |
+
'css' => array(
|
349 |
'main' => '%%order_class%% .alert.alert-success',
|
350 |
),
|
351 |
+
'font_size' => array(
|
352 |
+
'default' => '14px',
|
353 |
),
|
354 |
'line_height' => array(
|
355 |
'default' => '1.7em',
|
357 |
'letter_spacing' => array(
|
358 |
'default' => '0px',
|
359 |
),
|
360 |
+
'tab_slug' => 'advanced',
|
361 |
+
'toggle_slug' => 'cf_validation_success',
|
362 |
),
|
363 |
),
|
364 |
'background' => array(
|
372 |
),
|
373 |
),
|
374 |
'max_width' => array(
|
375 |
+
'css' => array(
|
376 |
'main' => '%%order_class%%',
|
377 |
),
|
378 |
),
|
379 |
+
'borders' => array(
|
380 |
+
'default' => array(),
|
381 |
+
'image' => array(
|
382 |
'css' => array(
|
383 |
'main' => array(
|
384 |
+
'border_radii' => '%%order_class%% input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), %%order_class%% .form-group textarea, %%order_class%% .form-group select',
|
385 |
+
'border_styles' => '%%order_class%% input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), %%order_class%% .form-group textarea, %%order_class%% .form-group select',
|
386 |
+
),
|
387 |
),
|
388 |
'label_prefix' => esc_html__( 'Field', 'dsm-supreme-modules-for-divi' ),
|
389 |
+
'tab_slug' => 'advanced',
|
390 |
+
'toggle_slug' => 'cf_field',
|
391 |
'depends_show_if' => 'off',
|
392 |
),
|
393 |
+
'error_msg' => array(
|
394 |
'css' => array(
|
395 |
'main' => array(
|
396 |
+
'border_radii' => '%%order_class%% .has-error .help-block.caldera_ajax_error_block',
|
397 |
+
'border_styles' => '%%order_class%% .has-error .help-block.caldera_ajax_error_block',
|
398 |
+
),
|
399 |
),
|
400 |
'label_prefix' => esc_html__( 'Error Messages', 'dsm-supreme-modules-for-divi' ),
|
401 |
+
'tab_slug' => 'advanced',
|
402 |
+
'toggle_slug' => 'cf_error',
|
403 |
'depends_show_if' => 'off',
|
404 |
),
|
405 |
+
'validation_success' => array(
|
406 |
'css' => array(
|
407 |
'main' => array(
|
408 |
+
'border_radii' => '%%order_class%% .alert.alert-success',
|
409 |
+
'border_styles' => '%%order_class%% .alert.alert-success',
|
410 |
+
),
|
411 |
),
|
412 |
'label_prefix' => esc_html__( 'Validation Success', 'dsm-supreme-modules-for-divi' ),
|
413 |
+
'tab_slug' => 'advanced',
|
414 |
+
'toggle_slug' => 'cf_validation_success',
|
415 |
'depends_show_if' => 'off',
|
416 |
),
|
417 |
),
|
418 |
+
'box_shadow' => array(
|
419 |
+
'default' => array(),
|
420 |
+
'input_field' => array(
|
421 |
+
'label' => esc_html__( 'Box Shadow', 'dsm-supreme-modules-for-divi' ),
|
422 |
+
'option_category' => 'layout',
|
423 |
+
'tab_slug' => 'advanced',
|
424 |
+
'toggle_slug' => 'cf_field',
|
425 |
+
'depends_show_if' => 'off',
|
426 |
+
'css' => array(
|
427 |
'main' => '%%order_class%% input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), %%order_class%% .form-group textarea, %%order_class%% .form-group select',
|
428 |
),
|
429 |
+
'default_on_fronts' => array(
|
430 |
'color' => '',
|
431 |
'position' => '',
|
432 |
),
|
433 |
),
|
434 |
),
|
435 |
+
'filters' => false,
|
436 |
'button' => array(
|
437 |
+
'button_one' => array(
|
438 |
+
'label' => esc_html__( 'Submit Button', 'dsm-supreme-modules-for-divi' ),
|
439 |
+
'css' => array(
|
440 |
'main' => '%%order_class%% .et_pb_button_module_wrapper .et_pb_button',
|
441 |
),
|
442 |
'box_shadow' => array(
|
446 |
),
|
447 |
),
|
448 |
'button_advanced_file' => array(
|
449 |
+
'label' => esc_html__( 'Advanced File Button (1.0)', 'dsm-supreme-modules-for-divi' ),
|
450 |
+
'css' => array(
|
451 |
'main' => '%%order_class%% .cf-uploader-trigger',
|
452 |
),
|
453 |
'box_shadow' => array(
|
462 |
|
463 |
public function get_fields() {
|
464 |
return array(
|
465 |
+
'cf_notice' => array(
|
466 |
+
'type' => 'warning',
|
467 |
+
'value' => true,
|
468 |
'display_if' => true,
|
469 |
+
'message' => esc_html__(
|
470 |
sprintf(
|
471 |
'Note: This module will automatically disable Alert Style, Form Styles and Grid Structure on the frontend even your <a href="%s" target="_blank">Caldera Forms General Settings</a> is enabled. This module will not function and render properly without disabling the above.',
|
472 |
admin_url( 'admin.php?page=caldera-forms' )
|
474 |
'dsm-supreme-modules-for-divi'
|
475 |
),
|
476 |
),
|
477 |
+
'cf_library' => array(
|
478 |
'label' => esc_html__( 'Caldera Form', 'dsm-supreme-modules-for-divi' ),
|
479 |
'type' => 'select',
|
480 |
'option_category' => 'layout',
|
481 |
'options' => dsm_get_caldera_forms(),
|
482 |
),
|
483 |
+
'show_validation' => array(
|
484 |
'label' => esc_html__( 'Show Error & Validation Messages', 'dsm-supreme-modules-for-divi' ),
|
485 |
'type' => 'yes_no_button',
|
486 |
'option_category' => 'basic_option',
|
488 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
489 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
490 |
),
|
491 |
+
'default' => 'off',
|
492 |
+
'description' => esc_html__( 'This will show the error and validation messages on the Visual Builder for styling purposes.', 'dsm-supreme-modules-for-divi' ),
|
493 |
),
|
494 |
+
'hr_color' => array(
|
495 |
+
'label' => esc_html__( 'Color', 'dsm-supreme-modules-for-divi' ),
|
496 |
+
'type' => 'color-alpha',
|
497 |
+
'custom_color' => true,
|
498 |
+
'default' => '#666666',
|
499 |
+
'tab_slug' => 'advanced',
|
500 |
+
'toggle_slug' => 'cf_hr',
|
501 |
),
|
502 |
+
'hr_gap' => array(
|
503 |
+
'label' => esc_html__( 'Gap', 'dsm-supreme-modules-for-divi' ),
|
504 |
+
'type' => 'range',
|
505 |
+
'option_category' => 'layout',
|
506 |
+
'tab_slug' => 'advanced',
|
507 |
+
'toggle_slug' => 'cf_hr',
|
508 |
+
'default_unit' => 'em',
|
509 |
+
'default' => '0.5em',
|
510 |
'mobile_options' => true,
|
511 |
'validate_unit' => true,
|
512 |
'responsive' => true,
|
516 |
'step' => '0.1',
|
517 |
),
|
518 |
),
|
519 |
+
'label_bottom_spacing' => array(
|
520 |
+
'label' => esc_html__( 'Bottom Spacing', 'dsm-supreme-modules-for-divi' ),
|
521 |
+
'type' => 'range',
|
522 |
+
'option_category' => 'layout',
|
523 |
+
'tab_slug' => 'advanced',
|
524 |
+
'toggle_slug' => 'cf_labels',
|
525 |
+
'default_unit' => 'px',
|
526 |
+
'default' => '5px',
|
527 |
),
|
528 |
+
'label_required_asterisk_color' => array(
|
529 |
+
'label' => esc_html__( 'Required Asterisk Color', 'dsm-supreme-modules-for-divi' ),
|
530 |
+
'type' => 'color-alpha',
|
531 |
+
'custom_color' => true,
|
532 |
+
'tab_slug' => 'advanced',
|
533 |
+
'toggle_slug' => 'cf_labels',
|
534 |
+
'default' => '#ee0000',
|
535 |
),
|
536 |
+
'description_background_color' => array(
|
537 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
538 |
+
'type' => 'color-alpha',
|
539 |
+
'custom_color' => true,
|
540 |
+
'tab_slug' => 'advanced',
|
541 |
+
'toggle_slug' => 'cf_description',
|
542 |
),
|
543 |
'input_textarea_select_margin_bottom' => array(
|
544 |
+
'label' => esc_html__( 'Margin Bottom', 'dsm-supreme-modules-for-divi' ),
|
545 |
+
'type' => 'range',
|
546 |
+
'option_category' => 'layout',
|
547 |
+
'tab_slug' => 'advanced',
|
548 |
+
'toggle_slug' => 'cf_field',
|
549 |
+
'default_unit' => 'px',
|
550 |
'mobile_options' => true,
|
551 |
'validate_unit' => true,
|
552 |
'responsive' => true,
|
553 |
+
'default' => '15px',
|
554 |
),
|
555 |
+
'button_alignment' => array(
|
556 |
+
'label' => esc_html__( 'Button Alignment', 'dsm-supreme-modules-for-divi' ),
|
557 |
+
'type' => 'text_align',
|
558 |
+
'option_category' => 'configuration',
|
559 |
+
'options' => et_builder_get_text_orientation_options( array( 'justified' ) ),
|
560 |
+
'default' => 'left',
|
561 |
+
'tab_slug' => 'advanced',
|
562 |
+
'toggle_slug' => 'button_one',
|
563 |
+
'description' => esc_html__( 'Here you can define the alignment of Button', 'dsm-supreme-modules-for-divi' ),
|
564 |
),
|
565 |
+
'button_margin_top' => array(
|
566 |
+
'label' => esc_html__( 'Margin Top', 'dsm-supreme-modules-for-divi' ),
|
567 |
+
'type' => 'range',
|
568 |
+
'option_category' => 'layout',
|
569 |
+
'tab_slug' => 'advanced',
|
570 |
+
'toggle_slug' => 'button_one',
|
571 |
+
'default_unit' => 'px',
|
572 |
'mobile_options' => true,
|
573 |
'validate_unit' => true,
|
574 |
'responsive' => true,
|
575 |
+
'default' => '20px',
|
576 |
),
|
577 |
+
'input_background_color' => array(
|
578 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
579 |
+
'type' => 'color-alpha',
|
580 |
+
'custom_color' => true,
|
581 |
+
'tab_slug' => 'advanced',
|
582 |
+
'toggle_slug' => 'cf_field',
|
583 |
),
|
584 |
+
'file_padding' => array(
|
585 |
+
'label' => esc_html__( 'Padding', 'dsm-supreme-modules-for-divi' ),
|
586 |
+
'type' => 'custom_padding',
|
587 |
+
'option_category' => 'layout',
|
588 |
'tab_slug' => 'advanced',
|
589 |
'toggle_slug' => 'cf_basic_file',
|
590 |
+
'validate_unit' => true,
|
591 |
+
'default' => '',
|
592 |
+
'default_unit' => 'px',
|
593 |
+
'default_on_front' => '',
|
594 |
+
'mobile_options' => true,
|
595 |
+
'hover' => 'tabs',
|
596 |
),
|
597 |
+
'file_background_color' => array(
|
598 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
599 |
+
'type' => 'color-alpha',
|
600 |
+
'custom_color' => true,
|
601 |
+
'tab_slug' => 'advanced',
|
602 |
+
'toggle_slug' => 'cf_basic_file',
|
603 |
),
|
604 |
+
'error_msg_background_color' => array(
|
605 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
606 |
+
'type' => 'color-alpha',
|
607 |
+
'custom_color' => true,
|
608 |
+
'tab_slug' => 'advanced',
|
609 |
+
'toggle_slug' => 'cf_error',
|
610 |
),
|
611 |
'validation_success_background_color' => array(
|
612 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
613 |
+
'type' => 'color-alpha',
|
614 |
+
'custom_color' => true,
|
615 |
+
'tab_slug' => 'advanced',
|
616 |
+
'toggle_slug' => 'cf_validation_success',
|
617 |
),
|
618 |
+
'radio_style' => array(
|
619 |
+
'label' => esc_html__( 'Custom Radio Styles', 'dsm-supreme-modules-for-divi' ),
|
620 |
+
'type' => 'yes_no_button',
|
621 |
+
'option_category' => 'basic_option',
|
622 |
+
'options' => array(
|
623 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
624 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
625 |
),
|
626 |
+
'default_' => 'on',
|
627 |
+
'default_on_front' => 'on',
|
628 |
'tab_slug' => 'advanced',
|
629 |
'toggle_slug' => 'cf_radio_checkbox',
|
630 |
+
'sub_toggle' => 'radio',
|
631 |
+
'description' => esc_html__( 'Here you can choose to have custom Radio Style.', 'dsm-supreme-modules-for-divi' ),
|
632 |
),
|
633 |
+
'radio_checked_color' => array(
|
634 |
+
'label' => esc_html__( 'Checked Color', 'dsm-supreme-modules-for-divi' ),
|
635 |
+
'type' => 'color-alpha',
|
636 |
+
'custom_color' => true,
|
637 |
+
'default' => '#2ea3f2',
|
638 |
+
'tab_slug' => 'advanced',
|
639 |
+
'toggle_slug' => 'cf_radio_checkbox',
|
640 |
+
'sub_toggle' => 'radio',
|
641 |
+
'show_if' => array(
|
642 |
'radio_style' => 'on',
|
643 |
),
|
644 |
),
|
645 |
+
'radio_checked_background_color' => array(
|
646 |
+
'label' => esc_html__( 'Checked Background Color', 'dsm-supreme-modules-for-divi' ),
|
647 |
+
'type' => 'color-alpha',
|
648 |
+
'custom_color' => true,
|
649 |
+
'default' => '#eeeeee',
|
650 |
+
'tab_slug' => 'advanced',
|
651 |
+
'toggle_slug' => 'cf_radio_checkbox',
|
652 |
+
'sub_toggle' => 'radio',
|
653 |
+
'show_if' => array(
|
654 |
'radio_style' => 'on',
|
655 |
),
|
656 |
),
|
657 |
+
'radio_background_color' => array(
|
658 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
659 |
+
'type' => 'color-alpha',
|
660 |
+
'custom_color' => true,
|
661 |
+
'default' => '#eeeeee',
|
662 |
+
'tab_slug' => 'advanced',
|
663 |
+
'toggle_slug' => 'cf_radio_checkbox',
|
664 |
+
'sub_toggle' => 'radio',
|
665 |
+
'show_if' => array(
|
666 |
'radio_style' => 'on',
|
667 |
),
|
668 |
),
|
669 |
+
'checkbox_style' => array(
|
670 |
+
'label' => esc_html__( 'Custom Checbox Styles', 'dsm-supreme-modules-for-divi' ),
|
671 |
+
'type' => 'yes_no_button',
|
672 |
+
'option_category' => 'basic_option',
|
673 |
+
'options' => array(
|
674 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
675 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
676 |
),
|
677 |
+
'default_' => 'on',
|
678 |
+
'default_on_front' => 'on',
|
679 |
'tab_slug' => 'advanced',
|
680 |
'toggle_slug' => 'cf_radio_checkbox',
|
681 |
+
'sub_toggle' => 'checkbox',
|
682 |
+
'description' => esc_html__( 'Here you can choose to have custom Checkbox Style.', 'dsm-supreme-modules-for-divi' ),
|
683 |
),
|
684 |
+
'checkbox_checked_color' => array(
|
685 |
+
'label' => esc_html__( 'Checked Color', 'dsm-supreme-modules-for-divi' ),
|
686 |
+
'type' => 'color-alpha',
|
687 |
+
'custom_color' => true,
|
688 |
+
'default' => '#2ea3f2',
|
689 |
+
'tab_slug' => 'advanced',
|
690 |
+
'toggle_slug' => 'cf_radio_checkbox',
|
691 |
+
'sub_toggle' => 'checkbox',
|
692 |
+
'show_if' => array(
|
693 |
'checkbox_style' => 'on',
|
694 |
),
|
695 |
),
|
696 |
+
'checkbox_checked_background_color' => array(
|
697 |
+
'label' => esc_html__( 'Checked Background Color', 'dsm-supreme-modules-for-divi' ),
|
698 |
+
'type' => 'color-alpha',
|
699 |
+
'custom_color' => true,
|
700 |
+
'default' => '#eeeeee',
|
701 |
+
'tab_slug' => 'advanced',
|
702 |
+
'toggle_slug' => 'cf_radio_checkbox',
|
703 |
+
'sub_toggle' => 'checkbox',
|
704 |
+
'show_if' => array(
|
705 |
'checkbox_style' => 'on',
|
706 |
),
|
707 |
),
|
708 |
+
'checkbox_background_color' => array(
|
709 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
710 |
+
'type' => 'color-alpha',
|
711 |
+
'custom_color' => true,
|
712 |
+
'default' => '#eeeeee',
|
713 |
+
'tab_slug' => 'advanced',
|
714 |
+
'toggle_slug' => 'cf_radio_checkbox',
|
715 |
+
'sub_toggle' => 'checkbox',
|
716 |
+
'show_if' => array(
|
717 |
'checkbox_style' => 'on',
|
718 |
),
|
719 |
),
|
737 |
}
|
738 |
|
739 |
public function render( $attrs, $content = null, $render_slug ) {
|
740 |
+
$cf_library = $this->props['cf_library'];
|
741 |
+
$show_validation = $this->props['show_validation'];
|
742 |
+
$hr_color = $this->props['hr_color'];
|
743 |
+
$hr_gap = $this->props['hr_gap'];
|
744 |
+
$hr_gap_tablet = $this->props['hr_gap_tablet'];
|
745 |
+
$hr_gap_phone = $this->props['hr_gap_phone'];
|
746 |
+
$hr_gap_last_edited = $this->props['hr_gap_last_edited'];
|
747 |
+
$label_bottom_spacing = $this->props['label_bottom_spacing'];
|
748 |
+
$label_required_asterisk_color = $this->props['label_required_asterisk_color'];
|
749 |
+
$description_background_color = $this->props['description_background_color'];
|
750 |
+
$input_background_color = $this->props['input_background_color'];
|
751 |
+
$file_background_color = $this->props['file_background_color'];
|
752 |
+
$error_msg_background_color = $this->props['error_msg_background_color'];
|
753 |
+
$validation_success_background_color = $this->props['validation_success_background_color'];
|
754 |
+
$file_padding_hover = $this->get_hover_value( 'file_padding' );
|
755 |
+
$file_padding = $this->props['file_padding'];
|
756 |
+
$file_padding_values = et_pb_responsive_options()->get_property_values( $this->props, 'file_padding' );
|
757 |
+
$file_padding_tablet = isset( $file_padding_values['tablet'] ) ? $file_padding_values['tablet'] : '';
|
758 |
+
$file_padding_phone = isset( $file_padding_values['phone'] ) ? $file_padding_values['phone'] : '';
|
759 |
+
$input_textarea_select_margin_bottom = $this->props['input_textarea_select_margin_bottom'];
|
760 |
+
$input_textarea_select_margin_bottom_tablet = $this->props['input_textarea_select_margin_bottom_tablet'];
|
761 |
+
$input_textarea_select_margin_bottom_phone = $this->props['input_textarea_select_margin_bottom_phone'];
|
762 |
$input_textarea_select_margin_bottom_last_edited = $this->props['input_textarea_select_margin_bottom_last_edited'];
|
763 |
+
$custom_icon_1 = $this->props['button_one_icon'];
|
764 |
+
$button_custom_1 = $this->props['custom_button_one'];
|
765 |
+
$button_alignment = $this->get_button_alignment();
|
766 |
+
$button_margin_top = $this->props['button_margin_top'];
|
767 |
+
$button_margin_top_tablet = $this->props['button_margin_top_tablet'];
|
768 |
+
$button_margin_top_phone = $this->props['button_margin_top_phone'];
|
769 |
+
$button_margin_top_last_edited = $this->props['button_margin_top_last_edited'];
|
770 |
+
$custom_icon_advanced = $this->props['button_advanced_file_icon'];
|
771 |
+
$button_custom_advanced = $this->props['custom_button_advanced_file'];
|
772 |
+
$radio_style = $this->props['radio_style'];
|
773 |
+
$radio_checked_color = $this->props['radio_checked_color'];
|
774 |
+
$radio_checked_background_color = $this->props['radio_checked_background_color'];
|
775 |
+
$radio_background_color = $this->props['radio_background_color'];
|
776 |
+
$checkbox_style = $this->props['checkbox_style'];
|
777 |
+
$checkbox_checked_color = $this->props['checkbox_checked_color'];
|
778 |
+
$checkbox_checked_background_color = $this->props['checkbox_checked_background_color'];
|
779 |
+
$checkbox_background_color = $this->props['checkbox_background_color'];
|
780 |
+
$input_textarea_select_text_color = $this->props['input_textarea_select_text_color'];
|
781 |
+
|
782 |
if ( '' !== $input_textarea_select_text_color ) {
|
783 |
+
ET_Builder_Element::set_style(
|
784 |
+
$render_slug,
|
785 |
+
array(
|
786 |
+
'selector' => '%%order_class%% .dsm-caldera-forms-select:after',
|
787 |
+
'declaration' => sprintf(
|
788 |
+
'border-color: %1$s transparent transparent;',
|
789 |
+
esc_html( $input_textarea_select_text_color )
|
790 |
+
),
|
791 |
+
)
|
792 |
+
);
|
793 |
}
|
794 |
|
795 |
if ( '#ee0000' !== $label_required_asterisk_color ) {
|
796 |
+
ET_Builder_Element::set_style(
|
797 |
+
$render_slug,
|
798 |
+
array(
|
799 |
+
'selector' => '%%order_class%% label.control-label>span.field_required',
|
800 |
+
'declaration' => sprintf(
|
801 |
+
'color: %1$s !important;',
|
802 |
+
esc_html( $label_required_asterisk_color )
|
803 |
+
),
|
804 |
+
)
|
805 |
+
);
|
806 |
}
|
807 |
|
808 |
if ( '' !== $description_background_color ) {
|
809 |
+
ET_Builder_Element::set_style(
|
810 |
+
$render_slug,
|
811 |
+
array(
|
812 |
+
'selector' => '%%order_class%% .form-group>div span.help-block',
|
813 |
+
'declaration' => sprintf(
|
814 |
+
'background-color: %1$s;',
|
815 |
+
esc_html( $description_background_color )
|
816 |
+
),
|
817 |
+
)
|
818 |
+
);
|
819 |
}
|
820 |
|
821 |
if ( '#666666' !== $hr_color ) {
|
822 |
+
ET_Builder_Element::set_style(
|
823 |
+
$render_slug,
|
824 |
+
array(
|
825 |
+
'selector' => '%%order_class%% .dsm-cf-html hr',
|
826 |
+
'declaration' => sprintf(
|
827 |
+
'border-color: %1$s;',
|
828 |
+
esc_html( $hr_color )
|
829 |
+
),
|
830 |
+
)
|
831 |
+
);
|
832 |
}
|
833 |
|
834 |
if ( '' !== $hr_gap_tablet || '' !== $hr_gap_phone || '0.5em' !== $hr_gap ) {
|
844 |
et_pb_generate_responsive_css( $hr_gap_values, '%%order_class%% .dsm-cf-html hr', 'margin-block-end', $render_slug );
|
845 |
}
|
846 |
|
|
|
847 |
if ( '' !== $input_background_color ) {
|
848 |
+
ET_Builder_Element::set_style(
|
849 |
+
$render_slug,
|
850 |
+
array(
|
851 |
+
'selector' => '%%order_class%% input.text,
|
852 |
%%order_class%% input.title,
|
853 |
%%order_class%% input[type=email],
|
854 |
%%order_class%% input[type=url],
|
860 |
%%order_class%% input[type=date],
|
861 |
%%order_class%% select.form-control,
|
862 |
%%order_class%% textarea',
|
863 |
+
'declaration' => sprintf(
|
864 |
+
'background-color: %1$s;',
|
865 |
+
esc_html( $input_background_color )
|
866 |
+
),
|
867 |
+
)
|
868 |
+
);
|
869 |
}
|
870 |
|
871 |
if ( '' !== $file_background_color ) {
|
872 |
+
ET_Builder_Element::set_style(
|
873 |
+
$render_slug,
|
874 |
+
array(
|
875 |
+
'selector' => '%%order_class%% .file-prevent-overflow',
|
876 |
+
'declaration' => sprintf(
|
877 |
+
'background-color: %1$s;',
|
878 |
+
esc_html( $file_background_color )
|
879 |
+
),
|
880 |
+
)
|
881 |
+
);
|
882 |
}
|
883 |
|
884 |
if ( '' !== $error_msg_background_color ) {
|
885 |
+
ET_Builder_Element::set_style(
|
886 |
+
$render_slug,
|
887 |
+
array(
|
888 |
+
'selector' => '%%order_class%% .has-error .help-block.caldera_ajax_error_block',
|
889 |
+
'declaration' => sprintf(
|
890 |
+
'background-color: %1$s;',
|
891 |
+
esc_html( $error_msg_background_color )
|
892 |
+
),
|
893 |
+
)
|
894 |
+
);
|
895 |
}
|
896 |
|
897 |
if ( '' !== $validation_success_background_color ) {
|
898 |
+
ET_Builder_Element::set_style(
|
899 |
+
$render_slug,
|
900 |
+
array(
|
901 |
+
'selector' => '%%order_class%% .alert.alert-success',
|
902 |
+
'declaration' => sprintf(
|
903 |
+
'background-color: %1$s;',
|
904 |
+
esc_html( $validation_success_background_color )
|
905 |
+
),
|
906 |
+
)
|
907 |
+
);
|
908 |
}
|
909 |
|
910 |
if ( '5px' !== $label_bottom_spacing ) {
|
911 |
+
ET_Builder_Element::set_style(
|
912 |
+
$render_slug,
|
913 |
+
array(
|
914 |
+
'selector' => '%%order_class%% label.control-label',
|
915 |
+
'declaration' => sprintf(
|
916 |
+
'margin-bottom: %1$s;',
|
917 |
+
esc_attr( $label_bottom_spacing )
|
918 |
+
),
|
919 |
+
)
|
920 |
+
);
|
921 |
}
|
922 |
|
923 |
if ( 'left' !== $button_alignment ) {
|
924 |
+
ET_Builder_Element::set_style(
|
925 |
+
$render_slug,
|
926 |
+
array(
|
927 |
+
'selector' => '%%order_class%% .et_pb_button_module_wrapper',
|
928 |
+
'declaration' => sprintf(
|
929 |
+
'text-align: %1$s;',
|
930 |
+
esc_attr( $button_alignment )
|
931 |
+
),
|
932 |
+
)
|
933 |
+
);
|
934 |
}
|
935 |
|
936 |
if ( 'off' !== $radio_style ) {
|
937 |
if ( '#2ea3f2' !== $radio_checked_color ) {
|
938 |
+
ET_Builder_Element::set_style(
|
939 |
+
$render_slug,
|
940 |
+
array(
|
941 |
+
'selector' => '%%order_class%%.dsm_cf_custom_radio .dsm-cf-radio:after',
|
942 |
+
'declaration' => sprintf(
|
943 |
+
'background-color: %1$s;',
|
944 |
+
esc_html( $radio_checked_color )
|
945 |
+
),
|
946 |
+
)
|
947 |
+
);
|
948 |
}
|
949 |
|
950 |
if ( '#eeeeee' !== $radio_checked_background_color ) {
|
951 |
+
ET_Builder_Element::set_style(
|
952 |
+
$render_slug,
|
953 |
+
array(
|
954 |
+
'selector' => '%%order_class%%.dsm_cf_custom_radio .dsm-radio input[type=radio]:checked ~ .dsm-cf-radio',
|
955 |
+
'declaration' => sprintf(
|
956 |
+
'background-color: %1$s;',
|
957 |
+
esc_html( $radio_checked_background_color )
|
958 |
+
),
|
959 |
+
)
|
960 |
+
);
|
961 |
}
|
962 |
|
963 |
if ( '#eeeeee' !== $radio_background_color ) {
|
964 |
+
ET_Builder_Element::set_style(
|
965 |
+
$render_slug,
|
966 |
+
array(
|
967 |
+
'selector' => '%%order_class%%.dsm_cf_custom_radio .dsm-radio .dsm-cf-radio',
|
968 |
+
'declaration' => sprintf(
|
969 |
+
'background-color: %1$s;',
|
970 |
+
esc_html( $radio_background_color )
|
971 |
+
),
|
972 |
+
)
|
973 |
+
);
|
974 |
}
|
975 |
}
|
976 |
|
977 |
if ( 'off' !== $checkbox_style ) {
|
978 |
if ( '#2ea3f2' !== $checkbox_checked_color ) {
|
979 |
+
ET_Builder_Element::set_style(
|
980 |
+
$render_slug,
|
981 |
+
array(
|
982 |
+
'selector' => '%%order_class%%.dsm_cf_custom_checkbox .dsm-checkbox input[type=checkbox]:checked ~ .dsm-cf-checkbox:after',
|
983 |
+
'declaration' => sprintf(
|
984 |
+
'color: %1$s;',
|
985 |
+
esc_html( $checkbox_checked_color )
|
986 |
+
),
|
987 |
+
)
|
988 |
+
);
|
989 |
}
|
990 |
|
991 |
if ( '#eeeeee' !== $checkbox_checked_background_color ) {
|
992 |
+
ET_Builder_Element::set_style(
|
993 |
+
$render_slug,
|
994 |
+
array(
|
995 |
+
'selector' => '%%order_class%%.dsm_cf_custom_checkbox .dsm-checkbox input[type=checkbox]:checked ~ .dsm-cf-checkbox',
|
996 |
+
'declaration' => sprintf(
|
997 |
+
'background-color: %1$s;',
|
998 |
+
esc_html( $checkbox_checked_background_color )
|
999 |
+
),
|
1000 |
+
)
|
1001 |
+
);
|
1002 |
}
|
1003 |
|
1004 |
if ( '#eeeeee' !== $checkbox_background_color ) {
|
1005 |
+
ET_Builder_Element::set_style(
|
1006 |
+
$render_slug,
|
1007 |
+
array(
|
1008 |
+
'selector' => '%%order_class%%.dsm_cf_custom_checkbox .dsm-checkbox .dsm-cf-checkbox',
|
1009 |
+
'declaration' => sprintf(
|
1010 |
+
'background-color: %1$s;',
|
1011 |
+
esc_html( $checkbox_background_color )
|
1012 |
+
),
|
1013 |
+
)
|
1014 |
+
);
|
1015 |
}
|
1016 |
}
|
1017 |
|
1040 |
}
|
1041 |
|
1042 |
$this->apply_custom_margin_padding(
|
1043 |
+
$render_slug,
|
1044 |
+
'file_padding',
|
1045 |
+
'padding',
|
1046 |
+
'%%order_class%% .file-prevent-overflow'
|
1047 |
);
|
1048 |
|
1049 |
if ( class_exists( 'Caldera_Forms' ) ) {
|
1050 |
+
add_filter(
|
1051 |
+
'caldera_forms_render_field_file',
|
1052 |
+
function( $field_file, $field_type ) {
|
1053 |
+
if ( 'dropdown' == $field_type ) {
|
1054 |
+
return dirname( __FILE__ ) . '/includes/dropdown/field.php';
|
1055 |
+
}
|
1056 |
+
if ( 'button' == $field_type ) {
|
1057 |
+
return dirname( __FILE__ ) . '/includes/button/field.php';
|
1058 |
+
}
|
1059 |
+
if ( 'radio' == $field_type ) {
|
1060 |
+
return dirname( __FILE__ ) . '/includes/radio/field.php';
|
1061 |
+
}
|
1062 |
+
if ( 'checkbox' == $field_type ) {
|
1063 |
+
return dirname( __FILE__ ) . '/includes/checkbox/field.php';
|
1064 |
+
}
|
1065 |
+
if ( 'html' == $field_type ) {
|
1066 |
+
return dirname( __FILE__ ) . '/includes/html/field.php';
|
1067 |
+
}
|
1068 |
+
if ( 'advanced_file' == $field_type ) {
|
1069 |
+
return dirname( __FILE__ ) . '/includes/advanced_file/field.php';
|
1070 |
+
}
|
1071 |
+
|
1072 |
+
return $field_file;
|
1073 |
+
},
|
1074 |
+
10,
|
1075 |
+
2
|
1076 |
+
);
|
1077 |
//disable CF styles
|
1078 |
add_filter( 'caldera_forms_get_style_includes', 'dsm_filter_caldera_forms_get_style_includes', 10, 1 );
|
1079 |
}
|
1080 |
|
1081 |
// Module classnames
|
1082 |
+
$this->add_classname(
|
1083 |
+
array(
|
1084 |
+
'' !== $description_background_color ? 'dsm_cf_description_label' : '',
|
1085 |
+
'' !== $error_msg_background_color ? 'dsm_cf_error_label' : '',
|
1086 |
+
'' !== $validation_success_background_color ? 'dsm_cf_success_label' : '',
|
1087 |
+
'off' !== $radio_style ? 'dsm_cf_custom_radio' : '',
|
1088 |
+
'off' !== $checkbox_style ? 'dsm_cf_custom_checkbox' : '',
|
1089 |
+
)
|
1090 |
+
);
|
1091 |
|
1092 |
$output = sprintf(
|
1093 |
'<div class="%2$s%4$s"%3$s%5$s>
|
1094 |
%1$s
|
1095 |
</div>',
|
1096 |
+
'' !== $cf_library ? do_shortcode( '[caldera_form id="' . esc_attr( $cf_library ) . '"]' ) : '',
|
1097 |
'' !== $custom_icon_1 ? ' dsm_caldera_forms_btn_icon' : '',
|
1098 |
'' !== $custom_icon_1 ? sprintf(
|
1099 |
' data-dsm-btn-icon="%1$s"',
|
1104 |
' data-dsm-advanced-btn-icon="%1$s"',
|
1105 |
esc_attr( et_pb_process_font_icon( $custom_icon_advanced ) )
|
1106 |
) : ''
|
|
|
1107 |
);
|
1108 |
|
1109 |
return $output;
|
1110 |
}
|
1111 |
|
1112 |
+
public function apply_custom_margin_padding( $function_name, $slug, $type, $class, $important = false ) {
|
1113 |
+
$slug_value = $this->props[ $slug ];
|
1114 |
+
$slug_value_tablet = $this->props[ $slug . '_tablet' ];
|
1115 |
+
$slug_value_phone = $this->props[ $slug . '_phone' ];
|
1116 |
+
$slug_value_last_edited = $this->props[ $slug . '_last_edited' ];
|
1117 |
+
$slug_value_responsive_active = et_pb_get_responsive_status( $slug_value_last_edited );
|
1118 |
|
1119 |
+
if ( isset( $slug_value ) && ! empty( $slug_value ) ) {
|
1120 |
+
ET_Builder_Element::set_style(
|
1121 |
+
$function_name,
|
1122 |
+
array(
|
1123 |
+
'selector' => $class,
|
1124 |
+
'declaration' => et_builder_get_element_style_css( $slug_value, $type, $important ),
|
1125 |
+
)
|
1126 |
+
);
|
1127 |
+
}
|
1128 |
|
1129 |
+
if ( isset( $slug_value_tablet ) && ! empty( $slug_value_tablet ) && $slug_value_responsive_active ) {
|
1130 |
+
ET_Builder_Element::set_style(
|
1131 |
+
$function_name,
|
1132 |
+
array(
|
1133 |
+
'selector' => $class,
|
1134 |
+
'declaration' => et_builder_get_element_style_css( $slug_value_tablet, $type, $important ),
|
1135 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
1136 |
+
)
|
1137 |
+
);
|
1138 |
+
}
|
1139 |
|
1140 |
+
if ( isset( $slug_value_phone ) && ! empty( $slug_value_phone ) && $slug_value_responsive_active ) {
|
1141 |
+
ET_Builder_Element::set_style(
|
1142 |
+
$function_name,
|
1143 |
+
array(
|
1144 |
+
'selector' => $class,
|
1145 |
+
'declaration' => et_builder_get_element_style_css( $slug_value_phone, $type, $important ),
|
1146 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
1147 |
+
)
|
1148 |
+
);
|
1149 |
}
|
1150 |
if ( et_builder_is_hover_enabled( $slug, $this->props ) ) {
|
1151 |
+
if ( isset( $this->props[ $slug . '__hover' ] ) ) {
|
1152 |
+
$hover = $this->props[ $slug . '__hover' ];
|
1153 |
+
ET_Builder_Element::set_style(
|
1154 |
+
$function_name,
|
1155 |
+
array(
|
1156 |
+
'selector' => $this->add_hover_to_order_class( $class ),
|
1157 |
+
'declaration' => et_builder_get_element_style_css( $hover, $type, $important ),
|
1158 |
+
)
|
1159 |
+
);
|
1160 |
}
|
1161 |
}
|
1162 |
+
}
|
1163 |
}
|
1164 |
|
1165 |
new DSM_CalderaForms;
|
1166 |
|
1167 |
function dsm_get_caldera_forms() {
|
1168 |
$options = array();
|
1169 |
+
if ( class_exists( 'Caldera_Forms' ) ) {
|
1170 |
+
$dsm_caldera_library_list = Caldera_Forms_Forms::get_forms( true, true );
|
1171 |
|
1172 |
+
if ( ! empty( $dsm_caldera_library_list ) && ! is_wp_error( $dsm_caldera_library_list ) ) {
|
1173 |
+
$options[0] = esc_html__( 'Select Caldera Form', 'dsm-supreme-modules-for-divi' );
|
1174 |
+
foreach ( $dsm_caldera_library_list as $form ) {
|
1175 |
+
$options[ $form['ID'] ] = $form['name'];
|
1176 |
+
}
|
1177 |
+
}
|
1178 |
+
} else {
|
1179 |
+
$options[0] = esc_html__( 'Please create a Caldera Form', 'dsm-supreme-modules-for-divi' );
|
1180 |
+
}
|
1181 |
|
1182 |
+
return $options;
|
1183 |
}
|
1184 |
|
1185 |
if ( ! function_exists( 'dsm_filter_caldera_forms_get_style_includes' ) ) :
|
1186 |
+
function dsm_filter_caldera_forms_get_style_includes( $style_includes ) {
|
1187 |
+
$style_includes = wp_parse_args(
|
1188 |
+
array(
|
1189 |
+
'grid' => false,
|
1190 |
+
'alert' => false,
|
1191 |
+
'form' => false,
|
1192 |
+
)
|
1193 |
+
);
|
1194 |
|
1195 |
+
return $style_includes;
|
1196 |
+
}
|
1197 |
+
endif;
|
includes/modules/ContactForm7/ContactForm7.php
CHANGED
@@ -13,9 +13,9 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Contact Form 7', 'dsm-supreme-modules-for-divi' );
|
16 |
-
$this->icon
|
17 |
// Toggle settings
|
18 |
-
$this->settings_modal_toggles
|
19 |
'general' => array(
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Contact Form 7', 'dsm-supreme-modules-for-divi' ),
|
@@ -23,13 +23,13 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
23 |
),
|
24 |
'advanced' => array(
|
25 |
'toggles' => array(
|
26 |
-
'cf7_labels'
|
27 |
-
'cf7_field'
|
28 |
-
'cf7_placeholder'
|
29 |
-
'cf7_radio_checkbox'
|
30 |
-
'cf7_file'
|
31 |
-
'cf7_error'
|
32 |
-
'cf7_validation_errors'
|
33 |
'cf7_validation_success' => esc_html__( 'Validation Success', 'dsm-supreme-modules-for-divi' ),
|
34 |
),
|
35 |
),
|
@@ -37,15 +37,15 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
37 |
}
|
38 |
public function get_advanced_fields_config() {
|
39 |
return array(
|
40 |
-
'text'
|
41 |
'fonts' => array(
|
42 |
-
'labels'
|
43 |
-
'label'
|
44 |
-
'css'
|
45 |
'main' => '%%order_class%% .wpcf7-form label',
|
46 |
),
|
47 |
-
'font_size'
|
48 |
-
'default'
|
49 |
),
|
50 |
'line_height' => array(
|
51 |
'default' => '1.7em',
|
@@ -53,16 +53,16 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
53 |
'letter_spacing' => array(
|
54 |
'default' => '0px',
|
55 |
),
|
56 |
-
'tab_slug'
|
57 |
-
'toggle_slug'
|
58 |
),
|
59 |
'input_textarea_select' => array(
|
60 |
-
'label'
|
61 |
-
'css'
|
62 |
'main' => '%%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-text, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-tel, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-url, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-quiz, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-number, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-textarea, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-select, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-date',
|
63 |
),
|
64 |
-
'font_size'
|
65 |
-
'default'
|
66 |
),
|
67 |
'line_height' => array(
|
68 |
'default' => '1.7em',
|
@@ -70,16 +70,16 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
70 |
'letter_spacing' => array(
|
71 |
'default' => '0px',
|
72 |
),
|
73 |
-
'tab_slug'
|
74 |
-
'toggle_slug'
|
75 |
),
|
76 |
-
'placeholder'
|
77 |
-
'label'
|
78 |
-
'css'
|
79 |
'main' => '%%order_class%% .wpcf7-form-control.wpcf7-text::placeholder, %%order_class%% .wpcf7-form-control.wpcf7-textarea::placeholder',
|
80 |
),
|
81 |
-
'font_size'
|
82 |
-
'default'
|
83 |
),
|
84 |
'line_height' => array(
|
85 |
'default' => '1.7em',
|
@@ -87,16 +87,16 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
87 |
'letter_spacing' => array(
|
88 |
'default' => '0px',
|
89 |
),
|
90 |
-
'tab_slug'
|
91 |
-
'toggle_slug'
|
92 |
),
|
93 |
-
'radio_checkbox'
|
94 |
-
'label'
|
95 |
-
'css'
|
96 |
'main' => '%%order_class%% .wpcf7-list-item-label',
|
97 |
),
|
98 |
-
'font_size'
|
99 |
-
'default'
|
100 |
),
|
101 |
'line_height' => array(
|
102 |
'default' => '1.7em',
|
@@ -104,31 +104,31 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
104 |
'letter_spacing' => array(
|
105 |
'default' => '0px',
|
106 |
),
|
107 |
-
'tab_slug'
|
108 |
-
'toggle_slug'
|
109 |
),
|
110 |
-
'file'
|
111 |
-
'label'
|
112 |
-
'css'
|
113 |
'main' => '%%order_class%% .wpcf7-form-control.wpcf7-file',
|
114 |
),
|
115 |
-
'font_size'
|
116 |
-
'default'
|
117 |
),
|
118 |
-
'letter_spacing'
|
119 |
'default' => '0px',
|
120 |
),
|
121 |
-
'hide_line_height'
|
122 |
-
'tab_slug'
|
123 |
-
'toggle_slug'
|
124 |
),
|
125 |
-
'error_msg'
|
126 |
-
'label'
|
127 |
-
'css'
|
128 |
'main' => '%%order_class%% .wpcf7-not-valid-tip',
|
129 |
),
|
130 |
-
'font_size'
|
131 |
-
'default'
|
132 |
),
|
133 |
'line_height' => array(
|
134 |
'default' => '1.7em',
|
@@ -136,16 +136,16 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
136 |
'letter_spacing' => array(
|
137 |
'default' => '0px',
|
138 |
),
|
139 |
-
'tab_slug'
|
140 |
-
'toggle_slug'
|
141 |
),
|
142 |
-
'error_validation'
|
143 |
-
'label'
|
144 |
-
'css'
|
145 |
'main' => '%%order_class%% .wpcf7-validation-errors',
|
146 |
),
|
147 |
-
'font_size'
|
148 |
-
'default'
|
149 |
),
|
150 |
'line_height' => array(
|
151 |
'default' => '1.7em',
|
@@ -153,16 +153,16 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
153 |
'letter_spacing' => array(
|
154 |
'default' => '0px',
|
155 |
),
|
156 |
-
'tab_slug'
|
157 |
-
'toggle_slug'
|
158 |
),
|
159 |
-
'success_validation'
|
160 |
-
'label'
|
161 |
-
'css'
|
162 |
'main' => '%%order_class%% .wpcf7-mail-sent-ok',
|
163 |
),
|
164 |
-
'font_size'
|
165 |
-
'default'
|
166 |
),
|
167 |
'line_height' => array(
|
168 |
'default' => '1.7em',
|
@@ -170,8 +170,8 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
170 |
'letter_spacing' => array(
|
171 |
'default' => '0px',
|
172 |
),
|
173 |
-
'tab_slug'
|
174 |
-
'toggle_slug'
|
175 |
),
|
176 |
),
|
177 |
'background' => array(
|
@@ -185,83 +185,83 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
185 |
),
|
186 |
),
|
187 |
'max_width' => array(
|
188 |
-
'css'
|
189 |
'main' => '%%order_class%%',
|
190 |
),
|
191 |
),
|
192 |
-
'borders'
|
193 |
-
'default'
|
194 |
-
'image'
|
195 |
'css' => array(
|
196 |
'main' => array(
|
197 |
-
'border_radii'
|
198 |
-
'border_styles' =>
|
199 |
-
)
|
200 |
),
|
201 |
'label_prefix' => esc_html__( 'Field', 'dsm-supreme-modules-for-divi' ),
|
202 |
'tab_slug' => 'advanced',
|
203 |
'toggle_slug' => 'cf7_field',
|
204 |
'depends_show_if' => 'off',
|
205 |
),
|
206 |
-
'error_msg'
|
207 |
'css' => array(
|
208 |
'main' => array(
|
209 |
-
'border_radii'
|
210 |
-
'border_styles' =>
|
211 |
-
)
|
212 |
),
|
213 |
'label_prefix' => esc_html__( 'Validation Errors', 'dsm-supreme-modules-for-divi' ),
|
214 |
-
'tab_slug'
|
215 |
-
'toggle_slug'
|
216 |
'depends_show_if' => 'off',
|
217 |
),
|
218 |
'error_validation' => array(
|
219 |
'css' => array(
|
220 |
'main' => array(
|
221 |
-
'border_radii'
|
222 |
-
'border_styles' =>
|
223 |
-
)
|
224 |
),
|
225 |
'label_prefix' => esc_html__( 'Validation Errors', 'dsm-supreme-modules-for-divi' ),
|
226 |
-
'tab_slug'
|
227 |
-
'toggle_slug'
|
228 |
'depends_show_if' => 'off',
|
229 |
),
|
230 |
-
'validation_success'
|
231 |
'css' => array(
|
232 |
'main' => array(
|
233 |
-
'border_radii'
|
234 |
-
'border_styles' =>
|
235 |
-
)
|
236 |
),
|
237 |
'label_prefix' => esc_html__( 'Validation Success', 'dsm-supreme-modules-for-divi' ),
|
238 |
-
'tab_slug'
|
239 |
-
'toggle_slug'
|
240 |
'depends_show_if' => 'off',
|
241 |
),
|
242 |
),
|
243 |
-
'box_shadow'
|
244 |
-
'default'
|
245 |
-
'input_field'
|
246 |
-
'label'
|
247 |
-
'option_category'
|
248 |
-
'tab_slug'
|
249 |
-
'toggle_slug'
|
250 |
-
'depends_show_if'
|
251 |
-
'css'
|
252 |
'main' => '%%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-text, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-quiz, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-number, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-textarea, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-select, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-date',
|
253 |
),
|
254 |
-
'default_on_fronts'
|
255 |
'color' => '',
|
256 |
'position' => '',
|
257 |
),
|
258 |
),
|
259 |
),
|
260 |
-
'filters'
|
261 |
'button' => array(
|
262 |
'button_one' => array(
|
263 |
-
'label'
|
264 |
-
'css'
|
265 |
'main' => '%%order_class%% .wpcf7-form-control.wpcf7-submit',
|
266 |
),
|
267 |
'box_shadow' => array(
|
@@ -284,13 +284,13 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
284 |
'message' => esc_html__( 'Note: Contact Form 7 will not function in the Divi Visual Builder at all, just like the Divi Contact Form module. It will only work on the frontend as usual. The purpose is to style and design your Contact Form 7 with the Divi Visual Builder without having to code. So go ahead and load your Contact Form 7 Library from the select list below to get started.', 'dsm-supreme-modules-for-divi' ),
|
285 |
),
|
286 |
*/
|
287 |
-
'cf7_library'
|
288 |
'label' => esc_html__( 'Contact Form 7', 'dsm-supreme-modules-for-divi' ),
|
289 |
'type' => 'select',
|
290 |
'option_category' => 'layout',
|
291 |
'options' => dsm_get_contact_form_7(),
|
292 |
),
|
293 |
-
'show_validation'
|
294 |
'label' => esc_html__( 'Show Error & Validation Messages', 'dsm-supreme-modules-for-divi' ),
|
295 |
'type' => 'yes_no_button',
|
296 |
'option_category' => 'basic_option',
|
@@ -298,78 +298,78 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
298 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
299 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
300 |
),
|
301 |
-
'default'
|
302 |
-
'description'
|
303 |
),
|
304 |
-
'label_bottom_spacing'
|
305 |
-
'label'
|
306 |
-
'type'
|
307 |
-
'option_category'
|
308 |
-
'tab_slug'
|
309 |
-
'toggle_slug'
|
310 |
-
'default_unit'
|
311 |
),
|
312 |
-
'button_alignment'
|
313 |
-
'label'
|
314 |
-
'type'
|
315 |
-
'option_category'
|
316 |
-
'options'
|
317 |
-
'tab_slug'
|
318 |
-
'toggle_slug'
|
319 |
-
'description'
|
320 |
),
|
321 |
-
'input_background_color'
|
322 |
-
'label'
|
323 |
-
'type'
|
324 |
-
'option_category'
|
325 |
-
'custom_color'
|
326 |
-
'tab_slug'
|
327 |
-
'toggle_slug'
|
328 |
),
|
329 |
-
'file_padding'
|
330 |
-
'label'
|
331 |
-
'type'
|
332 |
-
|
333 |
'tab_slug' => 'advanced',
|
334 |
'toggle_slug' => 'cf7_file',
|
335 |
-
'mobile_options'
|
336 |
-
'validate_unit'
|
337 |
-
'default'
|
338 |
-
'default_unit'
|
339 |
-
'default_on_front'=> '',
|
340 |
-
'responsive'
|
341 |
),
|
342 |
-
'file_background_color'
|
343 |
-
'label'
|
344 |
-
'type'
|
345 |
-
'option_category'
|
346 |
-
'custom_color'
|
347 |
-
'tab_slug'
|
348 |
-
'toggle_slug'
|
349 |
),
|
350 |
-
'error_msg_background_color'
|
351 |
-
'label'
|
352 |
-
'type'
|
353 |
-
'option_category'
|
354 |
-
'custom_color'
|
355 |
-
'tab_slug'
|
356 |
-
'toggle_slug'
|
357 |
),
|
358 |
-
'validation_error_background_color'
|
359 |
-
'label'
|
360 |
-
'type'
|
361 |
-
'option_category'
|
362 |
-
'custom_color'
|
363 |
-
'tab_slug'
|
364 |
-
'toggle_slug'
|
365 |
),
|
366 |
'validation_success_background_color' => array(
|
367 |
-
'label'
|
368 |
-
'type'
|
369 |
-
'option_category'
|
370 |
-
'custom_color'
|
371 |
-
'tab_slug'
|
372 |
-
'toggle_slug'
|
373 |
),
|
374 |
);
|
375 |
}
|
@@ -381,105 +381,126 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
381 |
}
|
382 |
|
383 |
public function render( $attrs, $content = null, $render_slug ) {
|
384 |
-
$cf7_library
|
385 |
-
$show_validation
|
386 |
-
$label_bottom_spacing
|
387 |
-
$input_background_color
|
388 |
-
$file_background_color
|
389 |
-
$error_msg_background_color
|
390 |
-
$validation_error_background_color
|
391 |
$validation_success_background_color = $this->props['validation_success_background_color'];
|
392 |
-
$file_padding
|
393 |
-
$file_padding_tablet
|
394 |
-
$file_padding_phone
|
395 |
-
$file_padding_last_edited
|
396 |
-
$custom_icon_1
|
397 |
-
$button_custom_1
|
398 |
-
$button_alignment
|
399 |
|
400 |
if ( '' !== $input_background_color ) {
|
401 |
-
ET_Builder_Element::set_style(
|
402 |
-
|
403 |
-
|
404 |
-
'
|
405 |
-
|
406 |
-
|
407 |
-
|
|
|
|
|
|
|
408 |
}
|
409 |
|
410 |
if ( '' !== $file_background_color ) {
|
411 |
-
ET_Builder_Element::set_style(
|
412 |
-
|
413 |
-
|
414 |
-
'
|
415 |
-
|
416 |
-
|
417 |
-
|
|
|
|
|
|
|
418 |
}
|
419 |
|
420 |
if ( '' !== $error_msg_background_color ) {
|
421 |
-
ET_Builder_Element::set_style(
|
422 |
-
|
423 |
-
|
424 |
-
'
|
425 |
-
|
426 |
-
|
427 |
-
|
|
|
|
|
|
|
428 |
}
|
429 |
|
430 |
if ( '' !== $validation_error_background_color ) {
|
431 |
-
ET_Builder_Element::set_style(
|
432 |
-
|
433 |
-
|
434 |
-
'
|
435 |
-
|
436 |
-
|
437 |
-
|
|
|
|
|
|
|
438 |
}
|
439 |
|
440 |
if ( '' !== $validation_success_background_color ) {
|
441 |
-
ET_Builder_Element::set_style(
|
442 |
-
|
443 |
-
|
444 |
-
'
|
445 |
-
|
446 |
-
|
447 |
-
|
|
|
|
|
|
|
448 |
}
|
449 |
|
450 |
if ( '' !== $label_bottom_spacing ) {
|
451 |
-
ET_Builder_Element::set_style(
|
452 |
-
|
453 |
-
|
454 |
-
'
|
455 |
-
|
456 |
-
|
457 |
-
|
|
|
|
|
|
|
458 |
}
|
459 |
|
460 |
if ( 'left' !== $button_alignment ) {
|
461 |
-
ET_Builder_Element::set_style(
|
462 |
-
|
463 |
-
|
464 |
-
'
|
465 |
-
|
466 |
-
|
467 |
-
|
|
|
|
|
|
|
468 |
}
|
469 |
|
470 |
if ( '' !== $file_padding_tablet || '' !== $file_padding_phone || '' !== $file_padding ) {
|
471 |
-
|
472 |
-
foreach(explode(
|
473 |
-
if ($key === 0 && '' !== $val) {
|
474 |
$dwd_file_padding['padding-top'] = $val;
|
475 |
}
|
476 |
-
if ($key === 1 && '' !== $val) {
|
477 |
$dwd_file_padding['padding-right'] = $val;
|
478 |
}
|
479 |
-
if ($key === 2 && '' !== $val) {
|
480 |
$dwd_file_padding['padding-bottom'] = $val;
|
481 |
}
|
482 |
-
if ($key === 3 && '' !== $val) {
|
483 |
$dwd_file_padding['padding-left'] = $val;
|
484 |
}
|
485 |
}
|
@@ -487,43 +508,43 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
487 |
$file_padding = $dwd_file_padding;
|
488 |
|
489 |
$dwd_file_padding_tablet = array( '', '', '', '' );
|
490 |
-
foreach(explode(
|
491 |
-
if ($key === 0 && '' !== $val) {
|
492 |
$dwd_file_padding_tablet['padding-top'] = $val;
|
493 |
}
|
494 |
-
if ($key === 1 && '' !== $val) {
|
495 |
$dwd_file_padding_tablet['padding-right'] = $val;
|
496 |
}
|
497 |
-
if ($key === 2 && '' !== $val) {
|
498 |
$dwd_file_padding_tablet['padding-bottom'] = $val;
|
499 |
}
|
500 |
-
if ($key === 3 && '' !== $val) {
|
501 |
$dwd_file_padding_tablet['padding-left'] = $val;
|
502 |
}
|
503 |
}
|
504 |
-
|
505 |
$file_padding_tablet = $dwd_file_padding_tablet;
|
506 |
|
507 |
$dwd_file_padding_phone = array( '', '', '', '' );
|
508 |
-
foreach(explode(
|
509 |
-
if ($key === 0 && '' !== $val) {
|
510 |
$dwd_file_padding_phone['padding-top'] = $val;
|
511 |
}
|
512 |
-
if ($key === 1 && '' !== $val) {
|
513 |
$dwd_file_padding_phone['padding-right'] = $val;
|
514 |
}
|
515 |
-
if ($key === 2 && '' !== $val) {
|
516 |
$dwd_file_padding_phone['padding-bottom'] = $val;
|
517 |
}
|
518 |
-
if ($key === 3 && '' !== $val) {
|
519 |
$dwd_file_padding_phone['padding-left'] = $val;
|
520 |
}
|
521 |
}
|
522 |
-
|
523 |
$file_padding_phone = $dwd_file_padding_phone;
|
524 |
|
525 |
$file_responsive_active = et_pb_get_responsive_status( $file_padding_last_edited );
|
526 |
-
$file_padding_values
|
527 |
'desktop' => $file_padding,
|
528 |
'tablet' => $file_responsive_active ? $file_padding_tablet : '',
|
529 |
'phone' => $file_responsive_active ? $file_padding_phone : '',
|
@@ -536,7 +557,7 @@ class DSM_ContactForm7 extends ET_Builder_Module {
|
|
536 |
'<div class="%2$s"%3$s>
|
537 |
%1$s
|
538 |
</div>',
|
539 |
-
do_shortcode('[contact-form-7 id="'
|
540 |
'' !== $custom_icon_1 ? 'dsm_contact_form_7_btn_icon' : '',
|
541 |
'' !== $custom_icon_1 ? sprintf(
|
542 |
' data-dsm-btn-icon="%1$s"',
|
@@ -552,21 +573,21 @@ new DSM_ContactForm7;
|
|
552 |
|
553 |
function dsm_get_contact_form_7() {
|
554 |
$args = array(
|
555 |
-
'post_type'
|
556 |
-
'posts_per_page' => - 1
|
557 |
);
|
558 |
|
559 |
-
$dsm_cf7_library_list =
|
560 |
'0' => esc_html__( '-- Select Contact Form 7 --', 'dsm-supreme-modules-for-divi' ),
|
561 |
-
|
562 |
|
563 |
-
if ( $categories = get_posts($args) ) {
|
564 |
-
foreach($categories as $category) {
|
565 |
-
(int)$dsm_cf7_library_list[$category->ID] = $category->post_title;
|
566 |
}
|
567 |
} else {
|
568 |
-
(int)$dsm_cf7_library_list['0'] = esc_html__( 'No Contact From 7 form found', 'dsm-supreme-modules-for-divi' );
|
569 |
}
|
570 |
|
571 |
return $dsm_cf7_library_list;
|
572 |
-
}
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Contact Form 7', 'dsm-supreme-modules-for-divi' );
|
16 |
+
$this->icon = '1';
|
17 |
// Toggle settings
|
18 |
+
$this->settings_modal_toggles = array(
|
19 |
'general' => array(
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Contact Form 7', 'dsm-supreme-modules-for-divi' ),
|
23 |
),
|
24 |
'advanced' => array(
|
25 |
'toggles' => array(
|
26 |
+
'cf7_labels' => esc_html__( 'Labels', 'dsm-supreme-modules-for-divi' ),
|
27 |
+
'cf7_field' => esc_html__( 'Input, Textarea & Select', 'dsm-supreme-modules-for-divi' ),
|
28 |
+
'cf7_placeholder' => esc_html__( 'Placeholder', 'dsm-supreme-modules-for-divi' ),
|
29 |
+
'cf7_radio_checkbox' => esc_html__( 'Radio & Checkbox', 'dsm-supreme-modules-for-divi' ),
|
30 |
+
'cf7_file' => esc_html__( 'File', 'dsm-supreme-modules-for-divi' ),
|
31 |
+
'cf7_error' => esc_html__( 'Error Messages', 'dsm-supreme-modules-for-divi' ),
|
32 |
+
'cf7_validation_errors' => esc_html__( 'Validation Error', 'dsm-supreme-modules-for-divi' ),
|
33 |
'cf7_validation_success' => esc_html__( 'Validation Success', 'dsm-supreme-modules-for-divi' ),
|
34 |
),
|
35 |
),
|
37 |
}
|
38 |
public function get_advanced_fields_config() {
|
39 |
return array(
|
40 |
+
'text' => false,
|
41 |
'fonts' => array(
|
42 |
+
'labels' => array(
|
43 |
+
'label' => esc_html__( 'Labels', 'dsm-supreme-modules-for-divi' ),
|
44 |
+
'css' => array(
|
45 |
'main' => '%%order_class%% .wpcf7-form label',
|
46 |
),
|
47 |
+
'font_size' => array(
|
48 |
+
'default' => '14px',
|
49 |
),
|
50 |
'line_height' => array(
|
51 |
'default' => '1.7em',
|
53 |
'letter_spacing' => array(
|
54 |
'default' => '0px',
|
55 |
),
|
56 |
+
'tab_slug' => 'advanced',
|
57 |
+
'toggle_slug' => 'cf7_labels',
|
58 |
),
|
59 |
'input_textarea_select' => array(
|
60 |
+
'label' => esc_html__( 'Input, Textarea & Select', 'dsm-supreme-modules-for-divi' ),
|
61 |
+
'css' => array(
|
62 |
'main' => '%%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-text, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-tel, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-url, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-quiz, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-number, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-textarea, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-select, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-date',
|
63 |
),
|
64 |
+
'font_size' => array(
|
65 |
+
'default' => '14px',
|
66 |
),
|
67 |
'line_height' => array(
|
68 |
'default' => '1.7em',
|
70 |
'letter_spacing' => array(
|
71 |
'default' => '0px',
|
72 |
),
|
73 |
+
'tab_slug' => 'advanced',
|
74 |
+
'toggle_slug' => 'cf7_field',
|
75 |
),
|
76 |
+
'placeholder' => array(
|
77 |
+
'label' => esc_html__( 'Placeholder', 'dsm-supreme-modules-for-divi' ),
|
78 |
+
'css' => array(
|
79 |
'main' => '%%order_class%% .wpcf7-form-control.wpcf7-text::placeholder, %%order_class%% .wpcf7-form-control.wpcf7-textarea::placeholder',
|
80 |
),
|
81 |
+
'font_size' => array(
|
82 |
+
'default' => '14px',
|
83 |
),
|
84 |
'line_height' => array(
|
85 |
'default' => '1.7em',
|
87 |
'letter_spacing' => array(
|
88 |
'default' => '0px',
|
89 |
),
|
90 |
+
'tab_slug' => 'advanced',
|
91 |
+
'toggle_slug' => 'cf7_placeholder',
|
92 |
),
|
93 |
+
'radio_checkbox' => array(
|
94 |
+
'label' => esc_html__( 'Radio & Checkbox', 'dsm-supreme-modules-for-divi' ),
|
95 |
+
'css' => array(
|
96 |
'main' => '%%order_class%% .wpcf7-list-item-label',
|
97 |
),
|
98 |
+
'font_size' => array(
|
99 |
+
'default' => '14px',
|
100 |
),
|
101 |
'line_height' => array(
|
102 |
'default' => '1.7em',
|
104 |
'letter_spacing' => array(
|
105 |
'default' => '0px',
|
106 |
),
|
107 |
+
'tab_slug' => 'advanced',
|
108 |
+
'toggle_slug' => 'cf7_radio_checkbox',
|
109 |
),
|
110 |
+
'file' => array(
|
111 |
+
'label' => esc_html__( 'File', 'dsm-supreme-modules-for-divi' ),
|
112 |
+
'css' => array(
|
113 |
'main' => '%%order_class%% .wpcf7-form-control.wpcf7-file',
|
114 |
),
|
115 |
+
'font_size' => array(
|
116 |
+
'default' => '11px',
|
117 |
),
|
118 |
+
'letter_spacing' => array(
|
119 |
'default' => '0px',
|
120 |
),
|
121 |
+
'hide_line_height' => true,
|
122 |
+
'tab_slug' => 'advanced',
|
123 |
+
'toggle_slug' => 'cf7_file',
|
124 |
),
|
125 |
+
'error_msg' => array(
|
126 |
+
'label' => esc_html__( 'Error Messages', 'dsm-supreme-modules-for-divi' ),
|
127 |
+
'css' => array(
|
128 |
'main' => '%%order_class%% .wpcf7-not-valid-tip',
|
129 |
),
|
130 |
+
'font_size' => array(
|
131 |
+
'default' => '14px',
|
132 |
),
|
133 |
'line_height' => array(
|
134 |
'default' => '1.7em',
|
136 |
'letter_spacing' => array(
|
137 |
'default' => '0px',
|
138 |
),
|
139 |
+
'tab_slug' => 'advanced',
|
140 |
+
'toggle_slug' => 'cf7_error',
|
141 |
),
|
142 |
+
'error_validation' => array(
|
143 |
+
'label' => esc_html__( 'Validation Error', 'dsm-supreme-modules-for-divi' ),
|
144 |
+
'css' => array(
|
145 |
'main' => '%%order_class%% .wpcf7-validation-errors',
|
146 |
),
|
147 |
+
'font_size' => array(
|
148 |
+
'default' => '14px',
|
149 |
),
|
150 |
'line_height' => array(
|
151 |
'default' => '1.7em',
|
153 |
'letter_spacing' => array(
|
154 |
'default' => '0px',
|
155 |
),
|
156 |
+
'tab_slug' => 'advanced',
|
157 |
+
'toggle_slug' => 'cf7_validation_errors',
|
158 |
),
|
159 |
+
'success_validation' => array(
|
160 |
+
'label' => esc_html__( 'Validation Success', 'dsm-supreme-modules-for-divi' ),
|
161 |
+
'css' => array(
|
162 |
'main' => '%%order_class%% .wpcf7-mail-sent-ok',
|
163 |
),
|
164 |
+
'font_size' => array(
|
165 |
+
'default' => '14px',
|
166 |
),
|
167 |
'line_height' => array(
|
168 |
'default' => '1.7em',
|
170 |
'letter_spacing' => array(
|
171 |
'default' => '0px',
|
172 |
),
|
173 |
+
'tab_slug' => 'advanced',
|
174 |
+
'toggle_slug' => 'cf7_validation_success',
|
175 |
),
|
176 |
),
|
177 |
'background' => array(
|
185 |
),
|
186 |
),
|
187 |
'max_width' => array(
|
188 |
+
'css' => array(
|
189 |
'main' => '%%order_class%%',
|
190 |
),
|
191 |
),
|
192 |
+
'borders' => array(
|
193 |
+
'default' => array(),
|
194 |
+
'image' => array(
|
195 |
'css' => array(
|
196 |
'main' => array(
|
197 |
+
'border_radii' => '%%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-text, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-tel, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-url, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-quiz, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-number, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-textarea, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-select, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-date',
|
198 |
+
'border_styles' => '%%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-text, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-tel, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-url, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-quiz, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-number, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-textarea, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-select, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-date',
|
199 |
+
),
|
200 |
),
|
201 |
'label_prefix' => esc_html__( 'Field', 'dsm-supreme-modules-for-divi' ),
|
202 |
'tab_slug' => 'advanced',
|
203 |
'toggle_slug' => 'cf7_field',
|
204 |
'depends_show_if' => 'off',
|
205 |
),
|
206 |
+
'error_msg' => array(
|
207 |
'css' => array(
|
208 |
'main' => array(
|
209 |
+
'border_radii' => '%%order_class%% .wpcf7-not-valid-tip',
|
210 |
+
'border_styles' => '%%order_class%% .wpcf7-not-valid-tip',
|
211 |
+
),
|
212 |
),
|
213 |
'label_prefix' => esc_html__( 'Validation Errors', 'dsm-supreme-modules-for-divi' ),
|
214 |
+
'tab_slug' => 'advanced',
|
215 |
+
'toggle_slug' => 'cf7_error',
|
216 |
'depends_show_if' => 'off',
|
217 |
),
|
218 |
'error_validation' => array(
|
219 |
'css' => array(
|
220 |
'main' => array(
|
221 |
+
'border_radii' => '%%order_class%% .wpcf7-validation-errors',
|
222 |
+
'border_styles' => '%%order_class%% .wpcf7-validation-errors',
|
223 |
+
),
|
224 |
),
|
225 |
'label_prefix' => esc_html__( 'Validation Errors', 'dsm-supreme-modules-for-divi' ),
|
226 |
+
'tab_slug' => 'advanced',
|
227 |
+
'toggle_slug' => 'cf7_validation_errors',
|
228 |
'depends_show_if' => 'off',
|
229 |
),
|
230 |
+
'validation_success' => array(
|
231 |
'css' => array(
|
232 |
'main' => array(
|
233 |
+
'border_radii' => '%%order_class%% .wpcf7-mail-sent-ok',
|
234 |
+
'border_styles' => '%%order_class%% .wpcf7-mail-sent-ok',
|
235 |
+
),
|
236 |
),
|
237 |
'label_prefix' => esc_html__( 'Validation Success', 'dsm-supreme-modules-for-divi' ),
|
238 |
+
'tab_slug' => 'advanced',
|
239 |
+
'toggle_slug' => 'cf7_validation_success',
|
240 |
'depends_show_if' => 'off',
|
241 |
),
|
242 |
),
|
243 |
+
'box_shadow' => array(
|
244 |
+
'default' => array(),
|
245 |
+
'input_field' => array(
|
246 |
+
'label' => esc_html__( 'Box Shadow', 'dsm-supreme-modules-for-divi' ),
|
247 |
+
'option_category' => 'layout',
|
248 |
+
'tab_slug' => 'advanced',
|
249 |
+
'toggle_slug' => 'cf7_field',
|
250 |
+
'depends_show_if' => 'off',
|
251 |
+
'css' => array(
|
252 |
'main' => '%%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-text, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-quiz, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-number, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-textarea, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-select, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-date',
|
253 |
),
|
254 |
+
'default_on_fronts' => array(
|
255 |
'color' => '',
|
256 |
'position' => '',
|
257 |
),
|
258 |
),
|
259 |
),
|
260 |
+
'filters' => false,
|
261 |
'button' => array(
|
262 |
'button_one' => array(
|
263 |
+
'label' => esc_html__( 'Button', 'dsm-supreme-modules-for-divi' ),
|
264 |
+
'css' => array(
|
265 |
'main' => '%%order_class%% .wpcf7-form-control.wpcf7-submit',
|
266 |
),
|
267 |
'box_shadow' => array(
|
284 |
'message' => esc_html__( 'Note: Contact Form 7 will not function in the Divi Visual Builder at all, just like the Divi Contact Form module. It will only work on the frontend as usual. The purpose is to style and design your Contact Form 7 with the Divi Visual Builder without having to code. So go ahead and load your Contact Form 7 Library from the select list below to get started.', 'dsm-supreme-modules-for-divi' ),
|
285 |
),
|
286 |
*/
|
287 |
+
'cf7_library' => array(
|
288 |
'label' => esc_html__( 'Contact Form 7', 'dsm-supreme-modules-for-divi' ),
|
289 |
'type' => 'select',
|
290 |
'option_category' => 'layout',
|
291 |
'options' => dsm_get_contact_form_7(),
|
292 |
),
|
293 |
+
'show_validation' => array(
|
294 |
'label' => esc_html__( 'Show Error & Validation Messages', 'dsm-supreme-modules-for-divi' ),
|
295 |
'type' => 'yes_no_button',
|
296 |
'option_category' => 'basic_option',
|
298 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
299 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
300 |
),
|
301 |
+
'default' => 'off',
|
302 |
+
'description' => esc_html__( 'This will show the error and validation messages on the Visual Builder for styling purposes.', 'dsm-supreme-modules-for-divi' ),
|
303 |
),
|
304 |
+
'label_bottom_spacing' => array(
|
305 |
+
'label' => esc_html__( 'Bottom Spacing', 'dsm-supreme-modules-for-divi' ),
|
306 |
+
'type' => 'range',
|
307 |
+
'option_category' => 'layout',
|
308 |
+
'tab_slug' => 'advanced',
|
309 |
+
'toggle_slug' => 'cf7_labels',
|
310 |
+
'default_unit' => 'px',
|
311 |
),
|
312 |
+
'button_alignment' => array(
|
313 |
+
'label' => esc_html__( 'Button Alignment', 'dsm-supreme-modules-for-divi' ),
|
314 |
+
'type' => 'text_align',
|
315 |
+
'option_category' => 'configuration',
|
316 |
+
'options' => et_builder_get_text_orientation_options( array( 'justified' ) ),
|
317 |
+
'tab_slug' => 'advanced',
|
318 |
+
'toggle_slug' => 'button_one',
|
319 |
+
'description' => esc_html__( 'Here you can define the alignment of Button', 'dsm-supreme-modules-for-divi' ),
|
320 |
),
|
321 |
+
'input_background_color' => array(
|
322 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
323 |
+
'type' => 'color-alpha',
|
324 |
+
'option_category' => 'button',
|
325 |
+
'custom_color' => true,
|
326 |
+
'tab_slug' => 'advanced',
|
327 |
+
'toggle_slug' => 'cf7_field',
|
328 |
),
|
329 |
+
'file_padding' => array(
|
330 |
+
'label' => esc_html__( 'Padding', 'dsm-supreme-modules-for-divi' ),
|
331 |
+
'type' => 'custom_padding',
|
332 |
+
'option_category' => 'layout',
|
333 |
'tab_slug' => 'advanced',
|
334 |
'toggle_slug' => 'cf7_file',
|
335 |
+
'mobile_options' => true,
|
336 |
+
'validate_unit' => true,
|
337 |
+
'default' => '',
|
338 |
+
'default_unit' => 'px',
|
339 |
+
'default_on_front' => '',
|
340 |
+
'responsive' => true,
|
341 |
),
|
342 |
+
'file_background_color' => array(
|
343 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
344 |
+
'type' => 'color-alpha',
|
345 |
+
'option_category' => 'button',
|
346 |
+
'custom_color' => true,
|
347 |
+
'tab_slug' => 'advanced',
|
348 |
+
'toggle_slug' => 'cf7_file',
|
349 |
),
|
350 |
+
'error_msg_background_color' => array(
|
351 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
352 |
+
'type' => 'color-alpha',
|
353 |
+
'option_category' => 'button',
|
354 |
+
'custom_color' => true,
|
355 |
+
'tab_slug' => 'advanced',
|
356 |
+
'toggle_slug' => 'cf7_error',
|
357 |
),
|
358 |
+
'validation_error_background_color' => array(
|
359 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
360 |
+
'type' => 'color-alpha',
|
361 |
+
'option_category' => 'button',
|
362 |
+
'custom_color' => true,
|
363 |
+
'tab_slug' => 'advanced',
|
364 |
+
'toggle_slug' => 'cf7_validation_errors',
|
365 |
),
|
366 |
'validation_success_background_color' => array(
|
367 |
+
'label' => esc_html__( 'Background Color', 'dsm-supreme-modules-for-divi' ),
|
368 |
+
'type' => 'color-alpha',
|
369 |
+
'option_category' => 'button',
|
370 |
+
'custom_color' => true,
|
371 |
+
'tab_slug' => 'advanced',
|
372 |
+
'toggle_slug' => 'cf7_validation_success',
|
373 |
),
|
374 |
);
|
375 |
}
|
381 |
}
|
382 |
|
383 |
public function render( $attrs, $content = null, $render_slug ) {
|
384 |
+
$cf7_library = $this->props['cf7_library'];
|
385 |
+
$show_validation = $this->props['show_validation'];
|
386 |
+
$label_bottom_spacing = $this->props['label_bottom_spacing'];
|
387 |
+
$input_background_color = $this->props['input_background_color'];
|
388 |
+
$file_background_color = $this->props['file_background_color'];
|
389 |
+
$error_msg_background_color = $this->props['error_msg_background_color'];
|
390 |
+
$validation_error_background_color = $this->props['validation_error_background_color'];
|
391 |
$validation_success_background_color = $this->props['validation_success_background_color'];
|
392 |
+
$file_padding = $this->props['file_padding'];
|
393 |
+
$file_padding_tablet = $this->props['file_padding_tablet'];
|
394 |
+
$file_padding_phone = $this->props['file_padding_phone'];
|
395 |
+
$file_padding_last_edited = $this->props['file_padding_last_edited'];
|
396 |
+
$custom_icon_1 = $this->props['button_one_icon'];
|
397 |
+
$button_custom_1 = $this->props['custom_button_one'];
|
398 |
+
$button_alignment = $this->get_button_alignment();
|
399 |
|
400 |
if ( '' !== $input_background_color ) {
|
401 |
+
ET_Builder_Element::set_style(
|
402 |
+
$render_slug,
|
403 |
+
array(
|
404 |
+
'selector' => '%%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-text, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-tel, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-url, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-quiz, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-number, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-textarea, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-select, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-date',
|
405 |
+
'declaration' => sprintf(
|
406 |
+
'background-color: %1$s;',
|
407 |
+
esc_html( $input_background_color )
|
408 |
+
),
|
409 |
+
)
|
410 |
+
);
|
411 |
}
|
412 |
|
413 |
if ( '' !== $file_background_color ) {
|
414 |
+
ET_Builder_Element::set_style(
|
415 |
+
$render_slug,
|
416 |
+
array(
|
417 |
+
'selector' => '%%order_class%% .wpcf7-form-control.wpcf7-file',
|
418 |
+
'declaration' => sprintf(
|
419 |
+
'background-color: %1$s;',
|
420 |
+
esc_html( $file_background_color )
|
421 |
+
),
|
422 |
+
)
|
423 |
+
);
|
424 |
}
|
425 |
|
426 |
if ( '' !== $error_msg_background_color ) {
|
427 |
+
ET_Builder_Element::set_style(
|
428 |
+
$render_slug,
|
429 |
+
array(
|
430 |
+
'selector' => '%%order_class%% .wpcf7-not-valid-tip',
|
431 |
+
'declaration' => sprintf(
|
432 |
+
'background-color: %1$s;',
|
433 |
+
esc_html( $error_msg_background_color )
|
434 |
+
),
|
435 |
+
)
|
436 |
+
);
|
437 |
}
|
438 |
|
439 |
if ( '' !== $validation_error_background_color ) {
|
440 |
+
ET_Builder_Element::set_style(
|
441 |
+
$render_slug,
|
442 |
+
array(
|
443 |
+
'selector' => '%%order_class%% .wpcf7-validation-errors',
|
444 |
+
'declaration' => sprintf(
|
445 |
+
'background-color: %1$s;',
|
446 |
+
esc_html( $validation_error_background_color )
|
447 |
+
),
|
448 |
+
)
|
449 |
+
);
|
450 |
}
|
451 |
|
452 |
if ( '' !== $validation_success_background_color ) {
|
453 |
+
ET_Builder_Element::set_style(
|
454 |
+
$render_slug,
|
455 |
+
array(
|
456 |
+
'selector' => '%%order_class%% .wpcf7-mail-sent-ok',
|
457 |
+
'declaration' => sprintf(
|
458 |
+
'background-color: %1$s;',
|
459 |
+
esc_html( $validation_success_background_color )
|
460 |
+
),
|
461 |
+
)
|
462 |
+
);
|
463 |
}
|
464 |
|
465 |
if ( '' !== $label_bottom_spacing ) {
|
466 |
+
ET_Builder_Element::set_style(
|
467 |
+
$render_slug,
|
468 |
+
array(
|
469 |
+
'selector' => '%%order_class%% label',
|
470 |
+
'declaration' => sprintf(
|
471 |
+
'margin-bottom: %1$s;',
|
472 |
+
esc_attr( $label_bottom_spacing )
|
473 |
+
),
|
474 |
+
)
|
475 |
+
);
|
476 |
}
|
477 |
|
478 |
if ( 'left' !== $button_alignment ) {
|
479 |
+
ET_Builder_Element::set_style(
|
480 |
+
$render_slug,
|
481 |
+
array(
|
482 |
+
'selector' => '%%order_class%% .wpcf7-form p:nth-last-of-type(1)',
|
483 |
+
'declaration' => sprintf(
|
484 |
+
'text-align: %1$s;',
|
485 |
+
esc_attr( $button_alignment )
|
486 |
+
),
|
487 |
+
)
|
488 |
+
);
|
489 |
}
|
490 |
|
491 |
if ( '' !== $file_padding_tablet || '' !== $file_padding_phone || '' !== $file_padding ) {
|
492 |
+
$dwd_file_padding = array( '', '', '', '' );
|
493 |
+
foreach ( explode( '|', $file_padding ) as $key => $val ) {
|
494 |
+
if ( $key === 0 && '' !== $val ) {
|
495 |
$dwd_file_padding['padding-top'] = $val;
|
496 |
}
|
497 |
+
if ( $key === 1 && '' !== $val ) {
|
498 |
$dwd_file_padding['padding-right'] = $val;
|
499 |
}
|
500 |
+
if ( $key === 2 && '' !== $val ) {
|
501 |
$dwd_file_padding['padding-bottom'] = $val;
|
502 |
}
|
503 |
+
if ( $key === 3 && '' !== $val ) {
|
504 |
$dwd_file_padding['padding-left'] = $val;
|
505 |
}
|
506 |
}
|
508 |
$file_padding = $dwd_file_padding;
|
509 |
|
510 |
$dwd_file_padding_tablet = array( '', '', '', '' );
|
511 |
+
foreach ( explode( '|', $file_padding_tablet ) as $key => $val ) {
|
512 |
+
if ( $key === 0 && '' !== $val ) {
|
513 |
$dwd_file_padding_tablet['padding-top'] = $val;
|
514 |
}
|
515 |
+
if ( $key === 1 && '' !== $val ) {
|
516 |
$dwd_file_padding_tablet['padding-right'] = $val;
|
517 |
}
|
518 |
+
if ( $key === 2 && '' !== $val ) {
|
519 |
$dwd_file_padding_tablet['padding-bottom'] = $val;
|
520 |
}
|
521 |
+
if ( $key === 3 && '' !== $val ) {
|
522 |
$dwd_file_padding_tablet['padding-left'] = $val;
|
523 |
}
|
524 |
}
|
525 |
+
|
526 |
$file_padding_tablet = $dwd_file_padding_tablet;
|
527 |
|
528 |
$dwd_file_padding_phone = array( '', '', '', '' );
|
529 |
+
foreach ( explode( '|', $file_padding_phone ) as $key => $val ) {
|
530 |
+
if ( $key === 0 && '' !== $val ) {
|
531 |
$dwd_file_padding_phone['padding-top'] = $val;
|
532 |
}
|
533 |
+
if ( $key === 1 && '' !== $val ) {
|
534 |
$dwd_file_padding_phone['padding-right'] = $val;
|
535 |
}
|
536 |
+
if ( $key === 2 && '' !== $val ) {
|
537 |
$dwd_file_padding_phone['padding-bottom'] = $val;
|
538 |
}
|
539 |
+
if ( $key === 3 && '' !== $val ) {
|
540 |
$dwd_file_padding_phone['padding-left'] = $val;
|
541 |
}
|
542 |
}
|
543 |
+
|
544 |
$file_padding_phone = $dwd_file_padding_phone;
|
545 |
|
546 |
$file_responsive_active = et_pb_get_responsive_status( $file_padding_last_edited );
|
547 |
+
$file_padding_values = array(
|
548 |
'desktop' => $file_padding,
|
549 |
'tablet' => $file_responsive_active ? $file_padding_tablet : '',
|
550 |
'phone' => $file_responsive_active ? $file_padding_phone : '',
|
557 |
'<div class="%2$s"%3$s>
|
558 |
%1$s
|
559 |
</div>',
|
560 |
+
do_shortcode( '[contact-form-7 id="' . $cf7_library . '"]' ),
|
561 |
'' !== $custom_icon_1 ? 'dsm_contact_form_7_btn_icon' : '',
|
562 |
'' !== $custom_icon_1 ? sprintf(
|
563 |
' data-dsm-btn-icon="%1$s"',
|
573 |
|
574 |
function dsm_get_contact_form_7() {
|
575 |
$args = array(
|
576 |
+
'post_type' => 'wpcf7_contact_form',
|
577 |
+
'posts_per_page' => - 1,
|
578 |
);
|
579 |
|
580 |
+
$dsm_cf7_library_list = array(
|
581 |
'0' => esc_html__( '-- Select Contact Form 7 --', 'dsm-supreme-modules-for-divi' ),
|
582 |
+
);
|
583 |
|
584 |
+
if ( $categories = get_posts( $args ) ) {
|
585 |
+
foreach ( $categories as $category ) {
|
586 |
+
(int) $dsm_cf7_library_list[ $category->ID ] = $category->post_title;
|
587 |
}
|
588 |
} else {
|
589 |
+
(int) $dsm_cf7_library_list['0'] = esc_html__( 'No Contact From 7 form found', 'dsm-supreme-modules-for-divi' );
|
590 |
}
|
591 |
|
592 |
return $dsm_cf7_library_list;
|
593 |
+
}
|
includes/modules/EmbedGoogleMap/EmbedGoogleMap.php
CHANGED
@@ -6,17 +6,17 @@ class DSM_EmbedGoogleMap extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
-
'author' => 'Supreme
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
-
$this->name
|
16 |
-
$this->icon
|
17 |
|
18 |
$this->settings_modal_toggles = array(
|
19 |
-
'general'
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Embed Google Map', 'dsm-supreme-modules-for-divi' ),
|
22 |
),
|
@@ -26,17 +26,17 @@ class DSM_EmbedGoogleMap extends ET_Builder_Module {
|
|
26 |
|
27 |
public function get_advanced_fields_config() {
|
28 |
return array(
|
29 |
-
'fonts'
|
30 |
-
'button'
|
31 |
-
'text'
|
32 |
'background' => false,
|
33 |
-
'height'
|
34 |
-
'css'
|
35 |
-
'main' => '%%order_class%% iframe'
|
36 |
),
|
37 |
'options' => array(
|
38 |
-
'height'
|
39 |
-
'default'
|
40 |
'default_tablet' => '320px',
|
41 |
'default_phone' => '320px',
|
42 |
),
|
@@ -48,20 +48,20 @@ class DSM_EmbedGoogleMap extends ET_Builder_Module {
|
|
48 |
public function get_fields() {
|
49 |
return array(
|
50 |
'address' => array(
|
51 |
-
'label'
|
52 |
-
'type'
|
53 |
-
'option_category'
|
54 |
-
'description'
|
55 |
'default_on_front' => '1233 Howard St Apt 3A San Francisco, CA 94103-2775',
|
56 |
-
'toggle_slug'
|
57 |
),
|
58 |
-
'zoom'
|
59 |
-
'label'
|
60 |
-
'type'
|
61 |
-
'option_category'
|
62 |
'toggle_slug' => 'main_content',
|
63 |
-
'default_unit'
|
64 |
-
'default'
|
65 |
'allow_empty' => false,
|
66 |
'range_settings' => array(
|
67 |
'min' => '1',
|
@@ -75,8 +75,8 @@ class DSM_EmbedGoogleMap extends ET_Builder_Module {
|
|
75 |
}
|
76 |
|
77 |
function render( $attrs, $content = null, $render_slug ) {
|
78 |
-
$address
|
79 |
-
$zoom
|
80 |
|
81 |
$output = sprintf(
|
82 |
'<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=%1$s&t=m&z=%2$s&output=embed&iwloc=near&hl=%4$s" aria-label="%3$s"></iframe>',
|
@@ -90,4 +90,4 @@ class DSM_EmbedGoogleMap extends ET_Builder_Module {
|
|
90 |
}
|
91 |
}
|
92 |
|
93 |
-
new DSM_EmbedGoogleMap;
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
+
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
+
$this->name = esc_html__( 'Supreme Embed Google Map', 'dsm-supreme-modules-for-divi' );
|
16 |
+
$this->icon = 'Y';
|
17 |
|
18 |
$this->settings_modal_toggles = array(
|
19 |
+
'general' => array(
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Embed Google Map', 'dsm-supreme-modules-for-divi' ),
|
22 |
),
|
26 |
|
27 |
public function get_advanced_fields_config() {
|
28 |
return array(
|
29 |
+
'fonts' => false,
|
30 |
+
'button' => false,
|
31 |
+
'text' => false,
|
32 |
'background' => false,
|
33 |
+
'height' => array(
|
34 |
+
'css' => array(
|
35 |
+
'main' => '%%order_class%% iframe',
|
36 |
),
|
37 |
'options' => array(
|
38 |
+
'height' => array(
|
39 |
+
'default' => '320px',
|
40 |
'default_tablet' => '320px',
|
41 |
'default_phone' => '320px',
|
42 |
),
|
48 |
public function get_fields() {
|
49 |
return array(
|
50 |
'address' => array(
|
51 |
+
'label' => esc_html__( 'Address', 'dsm-supreme-modules-for-divi' ),
|
52 |
+
'type' => 'text',
|
53 |
+
'option_category' => 'basic_option',
|
54 |
+
'description' => esc_html__( 'Enter the address for the embed Google Map.', 'dsm-supreme-modules-for-divi' ),
|
55 |
'default_on_front' => '1233 Howard St Apt 3A San Francisco, CA 94103-2775',
|
56 |
+
'toggle_slug' => 'main_content',
|
57 |
),
|
58 |
+
'zoom' => array(
|
59 |
+
'label' => esc_html__( 'Zoom', 'dsm-supreme-modules-for-divi' ),
|
60 |
+
'type' => 'range',
|
61 |
+
'option_category' => 'layout',
|
62 |
'toggle_slug' => 'main_content',
|
63 |
+
'default_unit' => '',
|
64 |
+
'default' => '10',
|
65 |
'allow_empty' => false,
|
66 |
'range_settings' => array(
|
67 |
'min' => '1',
|
75 |
}
|
76 |
|
77 |
function render( $attrs, $content = null, $render_slug ) {
|
78 |
+
$address = $this->props['address'];
|
79 |
+
$zoom = $this->props['zoom'];
|
80 |
|
81 |
$output = sprintf(
|
82 |
'<iframe frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?q=%1$s&t=m&z=%2$s&output=embed&iwloc=near&hl=%4$s" aria-label="%3$s"></iframe>',
|
90 |
}
|
91 |
}
|
92 |
|
93 |
+
new DSM_EmbedGoogleMap;
|
includes/modules/EmbedTwitterTimeline/EmbedTwitterTimeline.php
CHANGED
@@ -6,17 +6,17 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
-
'author' => 'Supreme
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Embed Twitter Timeline ', 'dsm-supreme-modules-for-divi' );
|
16 |
-
$this->icon
|
17 |
// Toggle settings
|
18 |
-
$this->settings_modal_toggles
|
19 |
-
'general'
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Twitter Timeline Settings', 'dsm-supreme-modules-for-divi' ),
|
22 |
),
|
@@ -26,8 +26,8 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
26 |
|
27 |
public function get_advanced_fields_config() {
|
28 |
return array(
|
29 |
-
'text'
|
30 |
-
'fonts'
|
31 |
'background' => array(
|
32 |
'css' => array(
|
33 |
'main' => '%%order_class%%',
|
@@ -39,7 +39,7 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
39 |
),
|
40 |
),
|
41 |
'max_width' => array(
|
42 |
-
'css'
|
43 |
'main' => '%%order_class%%',
|
44 |
),
|
45 |
),
|
@@ -48,19 +48,19 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
48 |
|
49 |
public function get_fields() {
|
50 |
return array(
|
51 |
-
'twitter_username'
|
52 |
-
'label'
|
53 |
-
'type'
|
54 |
-
'option_category'
|
55 |
-
'toggle_slug'
|
56 |
'default_on_front' => 'TwitterDev',
|
57 |
-
'description'
|
58 |
),
|
59 |
-
'limit_tweet'
|
60 |
'label' => esc_html__( 'Limit Tweets', 'dsm-supreme-modules-for-divi' ),
|
61 |
-
'type'
|
62 |
-
'option_category'
|
63 |
-
'options'
|
64 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
65 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
66 |
),
|
@@ -68,33 +68,33 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
68 |
'description' => esc_html__( 'Limiting the number of Tweets displayed.', 'dsm-supreme-modules-for-divi' ),
|
69 |
'default_on_front' => 'off',
|
70 |
),
|
71 |
-
'tweet_number'
|
72 |
-
'label'
|
73 |
-
'type'
|
74 |
-
'option_category'
|
75 |
'toggle_slug' => 'main_content',
|
76 |
-
'default_unit'
|
77 |
-
'default'
|
78 |
'range_settings' => array(
|
79 |
'min' => '1',
|
80 |
'max' => '20',
|
81 |
'step' => '1',
|
82 |
),
|
83 |
-
'show_if'
|
84 |
'limit_tweet' => 'on',
|
85 |
),
|
86 |
),
|
87 |
-
'theme'
|
88 |
-
'label'
|
89 |
-
'type'
|
90 |
-
'option_category'
|
91 |
-
'options'
|
92 |
'light' => esc_html__( 'Light', 'et_builder' ),
|
93 |
'dark' => esc_html__( 'Dark', 'et_builder' ),
|
94 |
),
|
95 |
'default_on_front' => 'Dark',
|
96 |
-
'toggle_slug'
|
97 |
-
'description'
|
98 |
),
|
99 |
/*
|
100 |
'link_color' => array(
|
@@ -105,11 +105,11 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
105 |
'default_on_front' => '#1b95e0',
|
106 |
),
|
107 |
*/
|
108 |
-
'header'
|
109 |
'label' => esc_html__( 'Show Header', 'dsm-supreme-modules-for-divi' ),
|
110 |
-
'type'
|
111 |
-
'option_category'
|
112 |
-
'options'
|
113 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
114 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
115 |
),
|
@@ -117,11 +117,11 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
117 |
'description' => esc_html__( 'Hides the timeline header. Implementing sites must add their own Twitter attribution, link to the source timeline, and comply with other Twitter display requirements.', 'dsm-supreme-modules-for-divi' ),
|
118 |
'default_on_front' => 'on',
|
119 |
),
|
120 |
-
'footer'
|
121 |
'label' => esc_html__( 'Show Footer', 'dsm-supreme-modules-for-divi' ),
|
122 |
-
'type'
|
123 |
-
'option_category'
|
124 |
-
'options'
|
125 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
126 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
127 |
),
|
@@ -129,11 +129,11 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
129 |
'description' => esc_html__( 'Hides the timeline footer and Tweet composer link, if included in the timeline widget type.', 'dsm-supreme-modules-for-divi' ),
|
130 |
'default_on_front' => 'on',
|
131 |
),
|
132 |
-
'borders'
|
133 |
'label' => esc_html__( 'Show Border', 'dsm-supreme-modules-for-divi' ),
|
134 |
-
'type'
|
135 |
-
'option_category'
|
136 |
-
'options'
|
137 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
138 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
139 |
),
|
@@ -141,11 +141,11 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
141 |
'description' => esc_html__( 'Removes all borders within the widget including borders surrounding the widget area and separating Tweets.', 'dsm-supreme-modules-for-divi' ),
|
142 |
'default_on_front' => 'on',
|
143 |
),
|
144 |
-
'scrollbar'
|
145 |
'label' => esc_html__( 'Show Scrollbar', 'dsm-supreme-modules-for-divi' ),
|
146 |
-
'type'
|
147 |
-
'option_category'
|
148 |
-
'options'
|
149 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
150 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
151 |
),
|
@@ -155,9 +155,9 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
155 |
),
|
156 |
'remove_background' => array(
|
157 |
'label' => esc_html__( "Remove Widget's Background color", 'dsm-supreme-modules-for-divi' ),
|
158 |
-
'type'
|
159 |
-
'option_category'
|
160 |
-
'options'
|
161 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
162 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
163 |
),
|
@@ -165,14 +165,14 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
165 |
'description' => esc_html__( 'Removes the widget’s background color.', 'dsm-supreme-modules-for-divi' ),
|
166 |
'default_on_front' => 'off',
|
167 |
),
|
168 |
-
'height'
|
169 |
-
'label'
|
170 |
-
'type'
|
171 |
-
'option_category'
|
172 |
-
'tab_slug'
|
173 |
'toggle_slug' => 'width',
|
174 |
-
'default_unit'
|
175 |
-
'default'
|
176 |
'range_settings' => array(
|
177 |
'min' => '200',
|
178 |
'max' => '1000',
|
@@ -184,18 +184,18 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
184 |
|
185 |
public function render( $attrs, $content = null, $render_slug ) {
|
186 |
$twitter_username = $this->props['twitter_username'];
|
187 |
-
$limit_tweet
|
188 |
-
$tweet_number
|
189 |
-
$theme
|
190 |
-
$header
|
191 |
-
$footer
|
192 |
-
$borders
|
193 |
-
$scrollbar
|
194 |
-
$height
|
195 |
//$link_color = $this->props['link_color'];
|
196 |
$remove_background = $this->props['remove_background'];
|
197 |
|
198 |
-
wp_enqueue_script('dsm-twitter-embed');
|
199 |
|
200 |
// Render module content
|
201 |
$output = sprintf(
|
@@ -218,4 +218,4 @@ class DSM_TwitterEmbeddedTimeline extends ET_Builder_Module {
|
|
218 |
|
219 |
}
|
220 |
|
221 |
-
new DSM_TwitterEmbeddedTimeline;
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
+
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Embed Twitter Timeline ', 'dsm-supreme-modules-for-divi' );
|
16 |
+
$this->icon = '';
|
17 |
// Toggle settings
|
18 |
+
$this->settings_modal_toggles = array(
|
19 |
+
'general' => array(
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Twitter Timeline Settings', 'dsm-supreme-modules-for-divi' ),
|
22 |
),
|
26 |
|
27 |
public function get_advanced_fields_config() {
|
28 |
return array(
|
29 |
+
'text' => false,
|
30 |
+
'fonts' => false,
|
31 |
'background' => array(
|
32 |
'css' => array(
|
33 |
'main' => '%%order_class%%',
|
39 |
),
|
40 |
),
|
41 |
'max_width' => array(
|
42 |
+
'css' => array(
|
43 |
'main' => '%%order_class%%',
|
44 |
),
|
45 |
),
|
48 |
|
49 |
public function get_fields() {
|
50 |
return array(
|
51 |
+
'twitter_username' => array(
|
52 |
+
'label' => esc_html__( 'Twitter Username', 'dsm-supreme-modules-for-divi' ),
|
53 |
+
'type' => 'text',
|
54 |
+
'option_category' => 'basic_option',
|
55 |
+
'toggle_slug' => 'main_content',
|
56 |
'default_on_front' => 'TwitterDev',
|
57 |
+
'description' => esc_html__( 'Enter the Twitter Username without the hashtag @', 'dsm-supreme-modules-for-divi' ),
|
58 |
),
|
59 |
+
'limit_tweet' => array(
|
60 |
'label' => esc_html__( 'Limit Tweets', 'dsm-supreme-modules-for-divi' ),
|
61 |
+
'type' => 'yes_no_button',
|
62 |
+
'option_category' => 'configuration',
|
63 |
+
'options' => array(
|
64 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
65 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
66 |
),
|
68 |
'description' => esc_html__( 'Limiting the number of Tweets displayed.', 'dsm-supreme-modules-for-divi' ),
|
69 |
'default_on_front' => 'off',
|
70 |
),
|
71 |
+
'tweet_number' => array(
|
72 |
+
'label' => esc_html__( 'Number of Tweets', 'dsm-supreme-modules-for-divi' ),
|
73 |
+
'type' => 'range',
|
74 |
+
'option_category' => 'layout',
|
75 |
'toggle_slug' => 'main_content',
|
76 |
+
'default_unit' => '',
|
77 |
+
'default' => '3',
|
78 |
'range_settings' => array(
|
79 |
'min' => '1',
|
80 |
'max' => '20',
|
81 |
'step' => '1',
|
82 |
),
|
83 |
+
'show_if' => array(
|
84 |
'limit_tweet' => 'on',
|
85 |
),
|
86 |
),
|
87 |
+
'theme' => array(
|
88 |
+
'label' => esc_html__( 'Theme', 'et_builder' ),
|
89 |
+
'type' => 'select',
|
90 |
+
'option_category' => 'configuration',
|
91 |
+
'options' => array(
|
92 |
'light' => esc_html__( 'Light', 'et_builder' ),
|
93 |
'dark' => esc_html__( 'Dark', 'et_builder' ),
|
94 |
),
|
95 |
'default_on_front' => 'Dark',
|
96 |
+
'toggle_slug' => 'main_content',
|
97 |
+
'description' => esc_html__( 'Here you can choose whether the Twitter Widget will appear in light or dark theme.', 'et_builder' ),
|
98 |
),
|
99 |
/*
|
100 |
'link_color' => array(
|
105 |
'default_on_front' => '#1b95e0',
|
106 |
),
|
107 |
*/
|
108 |
+
'header' => array(
|
109 |
'label' => esc_html__( 'Show Header', 'dsm-supreme-modules-for-divi' ),
|
110 |
+
'type' => 'yes_no_button',
|
111 |
+
'option_category' => 'configuration',
|
112 |
+
'options' => array(
|
113 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
114 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
115 |
),
|
117 |
'description' => esc_html__( 'Hides the timeline header. Implementing sites must add their own Twitter attribution, link to the source timeline, and comply with other Twitter display requirements.', 'dsm-supreme-modules-for-divi' ),
|
118 |
'default_on_front' => 'on',
|
119 |
),
|
120 |
+
'footer' => array(
|
121 |
'label' => esc_html__( 'Show Footer', 'dsm-supreme-modules-for-divi' ),
|
122 |
+
'type' => 'yes_no_button',
|
123 |
+
'option_category' => 'configuration',
|
124 |
+
'options' => array(
|
125 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
126 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
127 |
),
|
129 |
'description' => esc_html__( 'Hides the timeline footer and Tweet composer link, if included in the timeline widget type.', 'dsm-supreme-modules-for-divi' ),
|
130 |
'default_on_front' => 'on',
|
131 |
),
|
132 |
+
'borders' => array(
|
133 |
'label' => esc_html__( 'Show Border', 'dsm-supreme-modules-for-divi' ),
|
134 |
+
'type' => 'yes_no_button',
|
135 |
+
'option_category' => 'configuration',
|
136 |
+
'options' => array(
|
137 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
138 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
139 |
),
|
141 |
'description' => esc_html__( 'Removes all borders within the widget including borders surrounding the widget area and separating Tweets.', 'dsm-supreme-modules-for-divi' ),
|
142 |
'default_on_front' => 'on',
|
143 |
),
|
144 |
+
'scrollbar' => array(
|
145 |
'label' => esc_html__( 'Show Scrollbar', 'dsm-supreme-modules-for-divi' ),
|
146 |
+
'type' => 'yes_no_button',
|
147 |
+
'option_category' => 'configuration',
|
148 |
+
'options' => array(
|
149 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
150 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
151 |
),
|
155 |
),
|
156 |
'remove_background' => array(
|
157 |
'label' => esc_html__( "Remove Widget's Background color", 'dsm-supreme-modules-for-divi' ),
|
158 |
+
'type' => 'yes_no_button',
|
159 |
+
'option_category' => 'configuration',
|
160 |
+
'options' => array(
|
161 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
162 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
163 |
),
|
165 |
'description' => esc_html__( 'Removes the widget’s background color.', 'dsm-supreme-modules-for-divi' ),
|
166 |
'default_on_front' => 'off',
|
167 |
),
|
168 |
+
'height' => array(
|
169 |
+
'label' => esc_html__( 'Height', 'dsm-supreme-modules-for-divi' ),
|
170 |
+
'type' => 'range',
|
171 |
+
'option_category' => 'layout',
|
172 |
+
'tab_slug' => 'advanced',
|
173 |
'toggle_slug' => 'width',
|
174 |
+
'default_unit' => '',
|
175 |
+
'default' => '800px',
|
176 |
'range_settings' => array(
|
177 |
'min' => '200',
|
178 |
'max' => '1000',
|
184 |
|
185 |
public function render( $attrs, $content = null, $render_slug ) {
|
186 |
$twitter_username = $this->props['twitter_username'];
|
187 |
+
$limit_tweet = $this->props['limit_tweet'];
|
188 |
+
$tweet_number = floatval( $this->props['tweet_number'] );
|
189 |
+
$theme = $this->props['theme'];
|
190 |
+
$header = $this->props['header'];
|
191 |
+
$footer = $this->props['footer'];
|
192 |
+
$borders = $this->props['borders'];
|
193 |
+
$scrollbar = $this->props['scrollbar'];
|
194 |
+
$height = floatval( $this->props['height'] );
|
195 |
//$link_color = $this->props['link_color'];
|
196 |
$remove_background = $this->props['remove_background'];
|
197 |
|
198 |
+
wp_enqueue_script( 'dsm-twitter-embed' );
|
199 |
|
200 |
// Render module content
|
201 |
$output = sprintf(
|
218 |
|
219 |
}
|
220 |
|
221 |
+
new DSM_TwitterEmbeddedTimeline;
|
includes/modules/FacebookSimpleComments/FacebookSimpleComments.php
CHANGED
@@ -6,9 +6,9 @@ class DSM_FacebookSimpleComments extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
'author' => 'Divi Supreme',
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
public function init() {
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
public function init() {
|
includes/modules/FacebookSimpleFeed/FacebookSimpleFeed.php
CHANGED
@@ -6,9 +6,9 @@ class DSM_FacebookSimpleFeed extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
'author' => 'Divi Supreme',
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
public function init() {
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
public function init() {
|
includes/modules/FlipBoxPerk/FlipBoxPerk.php
CHANGED
@@ -14,10 +14,10 @@ class DSM_FlipBox_Perk extends ET_Builder_Module {
|
|
14 |
|
15 |
public function init() {
|
16 |
$this->name = esc_html__( 'Supreme Flipbox', 'dsm-supreme-modules-for-divi' );
|
17 |
-
$this->icon
|
18 |
// Toggle settings
|
19 |
-
$this->settings_modal_toggles
|
20 |
-
'general'
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
23 |
),
|
@@ -28,35 +28,35 @@ class DSM_FlipBox_Perk extends ET_Builder_Module {
|
|
28 |
public function get_advanced_fields_config() {
|
29 |
return array(
|
30 |
'text' => array(
|
31 |
-
'use_text_orientation'
|
32 |
'use_background_layout' => false,
|
33 |
-
'css'
|
34 |
'text_shadow' => '%%order_class%%',
|
35 |
),
|
36 |
-
'options'
|
37 |
'background_layout' => array(
|
38 |
'default' => 'light',
|
39 |
),
|
40 |
),
|
41 |
),
|
42 |
-
'borders'
|
43 |
'default' => array(
|
44 |
'css' => array(
|
45 |
'main' => array(
|
46 |
-
'border_radii' =>
|
47 |
-
'border_styles' =>
|
48 |
),
|
49 |
),
|
50 |
),
|
51 |
),
|
52 |
-
'box_shadow'
|
53 |
-
'default'
|
54 |
-
'css'
|
55 |
'main' => '%%order_class%% .dsm_flipbox_child',
|
56 |
),
|
57 |
),
|
58 |
),
|
59 |
-
'fonts'
|
60 |
);
|
61 |
}
|
62 |
|
@@ -68,54 +68,54 @@ class DSM_FlipBox_Perk extends ET_Builder_Module {
|
|
68 |
'option_category' => 'configuration',
|
69 |
'default' => 'right',
|
70 |
'options' => array(
|
71 |
-
'left'
|
72 |
-
'right'
|
73 |
-
'up'
|
74 |
'down' => esc_html__( 'Flip Down', 'dsm-supreme-modules-for-divi' ),
|
75 |
),
|
76 |
-
'tab_slug'
|
77 |
'toggle_slug' => 'animation',
|
78 |
),
|
79 |
-
'flipbox_speed'
|
80 |
-
'label'
|
81 |
-
'type'
|
82 |
-
'option_category'
|
83 |
-
'default'
|
84 |
'default_on_front' => '0.6s',
|
85 |
-
'default_unit'
|
86 |
-
'range_settings'
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
),
|
91 |
-
'tab_slug'
|
92 |
-
'toggle_slug'
|
93 |
),
|
94 |
'flipbox_height' => array(
|
95 |
-
'label'
|
96 |
-
'type'
|
97 |
-
'option_category'
|
98 |
-
'tab_slug'
|
99 |
-
'toggle_slug'
|
100 |
-
'mobile_options'
|
101 |
-
'validate_unit'
|
102 |
-
'default'
|
103 |
-
'default_unit'
|
104 |
-
'default_on_front'=> '',
|
105 |
-
'range_settings'
|
106 |
'min' => '1',
|
107 |
'max' => '1200',
|
108 |
'step' => '1',
|
109 |
),
|
110 |
-
'responsive'
|
111 |
),
|
112 |
);
|
113 |
}
|
114 |
|
115 |
public function render( $attrs, $content = null, $render_slug ) {
|
116 |
-
$flipbox_effect
|
117 |
-
$flipbox_speed
|
118 |
-
$flipbox_height
|
119 |
$flipbox_height_tablet = $this->props['flipbox_height_tablet'];
|
120 |
$flipbox_height_phone = $this->props['flipbox_height_phone'];
|
121 |
$flipbox_height_last_edited = $this->props['flipbox_height_last_edited'];
|
@@ -133,13 +133,16 @@ class DSM_FlipBox_Perk extends ET_Builder_Module {
|
|
133 |
}
|
134 |
|
135 |
//if ( '0.6s' !== $flipbox_speed ) {
|
136 |
-
ET_Builder_Element::set_style(
|
137 |
-
|
138 |
-
|
139 |
-
'
|
140 |
-
|
141 |
-
|
142 |
-
|
|
|
|
|
|
|
143 |
//}
|
144 |
|
145 |
// Render module content
|
14 |
|
15 |
public function init() {
|
16 |
$this->name = esc_html__( 'Supreme Flipbox', 'dsm-supreme-modules-for-divi' );
|
17 |
+
$this->icon = 'j';
|
18 |
// Toggle settings
|
19 |
+
$this->settings_modal_toggles = array(
|
20 |
+
'general' => array(
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
23 |
),
|
28 |
public function get_advanced_fields_config() {
|
29 |
return array(
|
30 |
'text' => array(
|
31 |
+
'use_text_orientation' => false,
|
32 |
'use_background_layout' => false,
|
33 |
+
'css' => array(
|
34 |
'text_shadow' => '%%order_class%%',
|
35 |
),
|
36 |
+
'options' => array(
|
37 |
'background_layout' => array(
|
38 |
'default' => 'light',
|
39 |
),
|
40 |
),
|
41 |
),
|
42 |
+
'borders' => array(
|
43 |
'default' => array(
|
44 |
'css' => array(
|
45 |
'main' => array(
|
46 |
+
'border_radii' => '%%order_class%% .dsm_flipbox_child',
|
47 |
+
'border_styles' => '%%order_class%% .dsm_flipbox_child',
|
48 |
),
|
49 |
),
|
50 |
),
|
51 |
),
|
52 |
+
'box_shadow' => array(
|
53 |
+
'default' => array(
|
54 |
+
'css' => array(
|
55 |
'main' => '%%order_class%% .dsm_flipbox_child',
|
56 |
),
|
57 |
),
|
58 |
),
|
59 |
+
'fonts' => false,
|
60 |
);
|
61 |
}
|
62 |
|
68 |
'option_category' => 'configuration',
|
69 |
'default' => 'right',
|
70 |
'options' => array(
|
71 |
+
'left' => esc_html__( 'Flip Left', 'dsm-supreme-modules-for-divi' ),
|
72 |
+
'right' => esc_html__( 'Flip Right', 'dsm-supreme-modules-for-divi' ),
|
73 |
+
'up' => esc_html__( 'Flip Up', 'dsm-supreme-modules-for-divi' ),
|
74 |
'down' => esc_html__( 'Flip Down', 'dsm-supreme-modules-for-divi' ),
|
75 |
),
|
76 |
+
'tab_slug' => 'advanced',
|
77 |
'toggle_slug' => 'animation',
|
78 |
),
|
79 |
+
'flipbox_speed' => array(
|
80 |
+
'label' => esc_html__( 'Animation Speed (in s)', 'dsm-supreme-modules-for-divi' ),
|
81 |
+
'type' => 'range',
|
82 |
+
'option_category' => 'configuration',
|
83 |
+
'default' => '0.6s',
|
84 |
'default_on_front' => '0.6s',
|
85 |
+
'default_unit' => 's',
|
86 |
+
'range_settings' => array(
|
87 |
+
'min' => '0',
|
88 |
+
'max' => '10',
|
89 |
+
'step' => '0.1',
|
90 |
),
|
91 |
+
'tab_slug' => 'advanced',
|
92 |
+
'toggle_slug' => 'animation',
|
93 |
),
|
94 |
'flipbox_height' => array(
|
95 |
+
'label' => esc_html__( 'Height', 'dsm-supreme-modules-for-divi' ),
|
96 |
+
'type' => 'range',
|
97 |
+
'option_category' => 'layout',
|
98 |
+
'tab_slug' => 'advanced',
|
99 |
+
'toggle_slug' => 'width',
|
100 |
+
'mobile_options' => true,
|
101 |
+
'validate_unit' => true,
|
102 |
+
'default' => '200px',
|
103 |
+
'default_unit' => 'px',
|
104 |
+
'default_on_front' => '',
|
105 |
+
'range_settings' => array(
|
106 |
'min' => '1',
|
107 |
'max' => '1200',
|
108 |
'step' => '1',
|
109 |
),
|
110 |
+
'responsive' => true,
|
111 |
),
|
112 |
);
|
113 |
}
|
114 |
|
115 |
public function render( $attrs, $content = null, $render_slug ) {
|
116 |
+
$flipbox_effect = $this->props['flipbox_effect'];
|
117 |
+
$flipbox_speed = $this->props['flipbox_speed'];
|
118 |
+
$flipbox_height = $this->props['flipbox_height'];
|
119 |
$flipbox_height_tablet = $this->props['flipbox_height_tablet'];
|
120 |
$flipbox_height_phone = $this->props['flipbox_height_phone'];
|
121 |
$flipbox_height_last_edited = $this->props['flipbox_height_last_edited'];
|
133 |
}
|
134 |
|
135 |
//if ( '0.6s' !== $flipbox_speed ) {
|
136 |
+
ET_Builder_Element::set_style(
|
137 |
+
$render_slug,
|
138 |
+
array(
|
139 |
+
'selector' => '%%order_class%% .dsm_flipbox_child',
|
140 |
+
'declaration' => sprintf(
|
141 |
+
'transition: transform %1$s ease-in-out;',
|
142 |
+
esc_attr( $flipbox_speed )
|
143 |
+
),
|
144 |
+
)
|
145 |
+
);
|
146 |
//}
|
147 |
|
148 |
// Render module content
|
includes/modules/FlipBoxPerkChild/FlipBoxPerkChild.php
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
|
3 |
class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
4 |
|
5 |
-
public $slug
|
6 |
-
public $vb_support
|
7 |
-
public $type
|
8 |
-
public $child_title_var
|
9 |
// If the attribute defined on $this->child_title_var is empty, this attribute will be used instead
|
10 |
public $child_title_fallback_var = 'subtitle';
|
11 |
|
@@ -16,19 +16,19 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
16 |
);
|
17 |
|
18 |
public function init() {
|
19 |
-
$this->name
|
20 |
$this->advanced_setting_title_text = esc_html__( 'Flipbox Item', 'dsm-supreme-modules-for-divi' );
|
21 |
-
$this->settings_text
|
22 |
|
23 |
$this->settings_modal_toggles = array(
|
24 |
-
'general'
|
25 |
'toggles' => array(
|
26 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
27 |
'link' => esc_html__( 'Link', 'dsm-supreme-modules-for-divi' ),
|
28 |
'image' => esc_html__( 'Image & Icon', 'dsm-supreme-modules-for-divi' ),
|
29 |
),
|
30 |
),
|
31 |
-
'advanced'
|
32 |
'toggles' => array(
|
33 |
'icon_settings' => esc_html__( 'Image & Icon', 'dsm-supreme-modules-for-divi' ),
|
34 |
'text' => array(
|
@@ -54,14 +54,14 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
54 |
|
55 |
public function get_advanced_fields_config() {
|
56 |
return array(
|
57 |
-
'fonts'
|
58 |
-
'header'
|
59 |
-
'label'
|
60 |
-
'css'
|
61 |
'main' => '%%order_class%% h1.et_pb_module_header, %%order_class%% h2.et_pb_module_header, %%order_class%% h3.et_pb_module_header, %%order_class%% h4.et_pb_module_header, %%order_class%% h5.et_pb_module_header, %%order_class%% h6.et_pb_module_header',
|
62 |
),
|
63 |
-
'font_size'
|
64 |
-
'default'
|
65 |
),
|
66 |
'line_height' => array(
|
67 |
'default' => '1em',
|
@@ -69,17 +69,17 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
69 |
'letter_spacing' => array(
|
70 |
'default' => '0px',
|
71 |
),
|
72 |
-
'header_level'
|
73 |
'default' => 'h4',
|
74 |
),
|
75 |
),
|
76 |
'content' => array(
|
77 |
-
'label'
|
78 |
-
'css'
|
79 |
'main' => '%%order_class%% .dsm-content',
|
80 |
),
|
81 |
-
'font_size'
|
82 |
-
'default'
|
83 |
),
|
84 |
'line_height' => array(
|
85 |
'default' => '1em',
|
@@ -89,8 +89,8 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
89 |
),
|
90 |
),
|
91 |
'subhead' => array(
|
92 |
-
'label'
|
93 |
-
'css'
|
94 |
'main' => '%%order_class%% .dsm-subtitle',
|
95 |
),
|
96 |
'line_height' => array(
|
@@ -101,28 +101,28 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
101 |
),
|
102 |
),
|
103 |
),
|
104 |
-
'text'
|
105 |
'use_background_layout' => true,
|
106 |
-
'css'
|
107 |
'text_shadow' => '%%order_class%% .dsm_flipbox_wrapper',
|
108 |
),
|
109 |
-
'options'
|
110 |
'background_layout' => array(
|
111 |
'default_on_front' => 'light',
|
112 |
),
|
113 |
-
'text_orientation'
|
114 |
'default_on_front' => 'left',
|
115 |
),
|
116 |
),
|
117 |
),
|
118 |
-
'borders'
|
119 |
'default' => array(),
|
120 |
'image' => array(
|
121 |
'css' => array(
|
122 |
'main' => array(
|
123 |
-
'border_radii'
|
124 |
-
'border_styles' =>
|
125 |
-
)
|
126 |
),
|
127 |
'label_prefix' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
128 |
'tab_slug' => 'advanced',
|
@@ -131,30 +131,30 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
131 |
'depends_show_if' => 'off',
|
132 |
),
|
133 |
),
|
134 |
-
'box_shadow'
|
135 |
'default' => array(),
|
136 |
'image' => array(
|
137 |
-
'label'
|
138 |
-
'option_category'
|
139 |
-
'tab_slug'
|
140 |
-
'toggle_slug'
|
141 |
-
'depends_show_if'
|
142 |
-
'css'
|
143 |
-
'main'
|
144 |
'show_if_not' => array(
|
145 |
'use_icon' => 'on',
|
146 |
),
|
147 |
),
|
148 |
-
'default_on_fronts'
|
149 |
'color' => '',
|
150 |
'position' => '',
|
151 |
),
|
152 |
),
|
153 |
),
|
154 |
-
'button'
|
155 |
'button' => array(
|
156 |
-
'label'
|
157 |
-
'css'
|
158 |
'plugin_main' => '%%order_class%% .et_pb_button',
|
159 |
'alignment' => '%%order_class%% .et_pb_button_wrapper',
|
160 |
),
|
@@ -166,19 +166,19 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
166 |
),
|
167 |
),
|
168 |
),
|
169 |
-
'filters'
|
170 |
'child_filters_target' => array(
|
171 |
-
'tab_slug'
|
172 |
-
'toggle_slug'
|
173 |
'depends_show_if' => 'off',
|
174 |
),
|
175 |
),
|
176 |
-
'icon_settings'
|
177 |
'css' => array(
|
178 |
'main' => '%%order_class%% .et_pb_main_blurb_image',
|
179 |
),
|
180 |
),
|
181 |
-
'position_fields'
|
182 |
);
|
183 |
}
|
184 |
|
@@ -196,30 +196,30 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
196 |
}
|
197 |
|
198 |
return array(
|
199 |
-
'title'
|
200 |
'label' => esc_html__( 'Title', 'dsm-supreme-modules-for-divi' ),
|
201 |
'type' => 'text',
|
202 |
'option_category' => 'basic_option',
|
203 |
'description' => esc_html__( 'Text entered here will appear as title.', 'dsm-supreme-modules-for-divi' ),
|
204 |
'toggle_slug' => 'main_content',
|
205 |
),
|
206 |
-
'subtitle'
|
207 |
'label' => esc_html__( 'Sub Title', 'dsm-supreme-modules-for-divi' ),
|
208 |
'type' => 'text',
|
209 |
'option_category' => 'basic_option',
|
210 |
'description' => esc_html__( 'Text entered here will appear as subtitle.', 'dsm-supreme-modules-for-divi' ),
|
211 |
'toggle_slug' => 'main_content',
|
212 |
),
|
213 |
-
'use_icon'
|
214 |
-
'label'
|
215 |
-
'type'
|
216 |
-
'option_category'
|
217 |
-
'options'
|
218 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
219 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
220 |
),
|
221 |
-
'toggle_slug'
|
222 |
-
'affects'
|
223 |
'border_radii_image',
|
224 |
'border_styles_image',
|
225 |
'box_shadow_style_image',
|
@@ -240,36 +240,36 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
240 |
'child_filter_blur',
|
241 |
'child_mix_blend_mode',
|
242 |
),
|
243 |
-
'description'
|
244 |
-
'default_on_front'=> 'off',
|
245 |
),
|
246 |
-
'font_icon'
|
247 |
-
'label'
|
248 |
-
'type'
|
249 |
-
'option_category'
|
250 |
-
'class'
|
251 |
-
'toggle_slug'
|
252 |
-
'description'
|
253 |
-
'depends_show_if'
|
254 |
),
|
255 |
-
'icon_color'
|
256 |
-
'default'
|
257 |
-
'label'
|
258 |
-
'type'
|
259 |
-
'description'
|
260 |
-
'depends_show_if'
|
261 |
-
'tab_slug'
|
262 |
-
'toggle_slug'
|
263 |
),
|
264 |
-
'use_circle'
|
265 |
-
'label'
|
266 |
-
'type'
|
267 |
-
'option_category'
|
268 |
-
'options'
|
269 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
270 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
271 |
),
|
272 |
-
'affects'
|
273 |
'use_circle_border',
|
274 |
'circle_color',
|
275 |
),
|
@@ -277,9 +277,9 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
277 |
'toggle_slug' => 'icon_settings',
|
278 |
'description' => esc_html__( 'Here you can choose whether icon set above should display within a circle.', 'dsm-supreme-modules-for-divi' ),
|
279 |
'depends_show_if' => 'on',
|
280 |
-
'default_on_front'=> 'off',
|
281 |
),
|
282 |
-
'circle_color'
|
283 |
'default' => $et_accent_color,
|
284 |
'label' => esc_html__( 'Circle Color', 'dsm-supreme-modules-for-divi' ),
|
285 |
'type' => 'color-alpha',
|
@@ -288,24 +288,24 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
288 |
'tab_slug' => 'advanced',
|
289 |
'toggle_slug' => 'icon_settings',
|
290 |
),
|
291 |
-
'use_circle_border'
|
292 |
-
'label'
|
293 |
-
'type'
|
294 |
-
'option_category'
|
295 |
-
'options'
|
296 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
297 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
298 |
),
|
299 |
-
'affects'
|
300 |
'circle_border_color',
|
301 |
),
|
302 |
-
'description'
|
303 |
-
'depends_show_if'
|
304 |
-
'tab_slug'
|
305 |
-
'toggle_slug'
|
306 |
-
'default_on_front'
|
307 |
),
|
308 |
-
'circle_border_color'
|
309 |
'default' => $et_accent_color,
|
310 |
'label' => esc_html__( 'Circle Border Color', 'dsm-supreme-modules-for-divi' ),
|
311 |
'type' => 'color-alpha',
|
@@ -314,7 +314,7 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
314 |
'tab_slug' => 'advanced',
|
315 |
'toggle_slug' => 'icon_settings',
|
316 |
),
|
317 |
-
'image'
|
318 |
'label' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
319 |
'type' => 'upload',
|
320 |
'option_category' => 'basic_option',
|
@@ -325,7 +325,7 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
325 |
'description' => esc_html__( 'Upload an image to display at the top of your blurb.', 'dsm-supreme-modules-for-divi' ),
|
326 |
'toggle_slug' => 'image',
|
327 |
),
|
328 |
-
'alt'
|
329 |
'label' => esc_html__( 'Image Alt Text', 'dsm-supreme-modules-for-divi' ),
|
330 |
'type' => 'text',
|
331 |
'option_category' => 'basic_option',
|
@@ -334,85 +334,85 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
334 |
'tab_slug' => 'custom_css',
|
335 |
'toggle_slug' => 'attributes',
|
336 |
),
|
337 |
-
'icon_placement'
|
338 |
-
'label'
|
339 |
-
'type'
|
340 |
-
'option_category'
|
341 |
-
'options'
|
342 |
-
'tab_slug'
|
343 |
-
'toggle_slug'
|
344 |
-
'description'
|
345 |
-
'default_on_front'
|
346 |
),
|
347 |
-
'content'
|
348 |
'label' => esc_html__( 'Content', 'dsm-supreme-modules-for-divi' ),
|
349 |
'type' => 'tiny_mce',
|
350 |
'option_category' => 'basic_option',
|
351 |
'description' => esc_html__( 'Content entered here will appear inside the module.', 'dsm-supreme-modules-for-divi' ),
|
352 |
'toggle_slug' => 'main_content',
|
353 |
),
|
354 |
-
'image_max_width'
|
355 |
-
'label'
|
356 |
-
'type'
|
357 |
-
'option_category'
|
358 |
-
'tab_slug'
|
359 |
-
'toggle_slug'
|
360 |
-
'mobile_options'
|
361 |
-
'validate_unit'
|
362 |
-
'depends_show_if'
|
363 |
-
'default'
|
364 |
-
'default_unit'
|
365 |
-
'default_on_front'=> '',
|
366 |
-
'allow_empty'
|
367 |
-
'range_settings'
|
368 |
'min' => '0',
|
369 |
'max' => '100',
|
370 |
'step' => '1',
|
371 |
),
|
372 |
-
'responsive'
|
373 |
),
|
374 |
-
'use_icon_font_size'
|
375 |
-
'label'
|
376 |
-
'type'
|
377 |
-
'option_category'
|
378 |
-
'options'
|
379 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
380 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
381 |
),
|
382 |
-
'affects'
|
383 |
'icon_font_size',
|
384 |
),
|
385 |
-
'depends_show_if'
|
386 |
-
'tab_slug'
|
387 |
-
'toggle_slug'
|
388 |
-
'default_on_front'=> 'off',
|
389 |
),
|
390 |
-
'icon_font_size'
|
391 |
-
'label'
|
392 |
-
'type'
|
393 |
-
'option_category'
|
394 |
-
'tab_slug'
|
395 |
-
'toggle_slug'
|
396 |
-
'default'
|
397 |
-
'default_unit'
|
398 |
-
'default_on_front'=> '',
|
399 |
-
'range_settings'
|
400 |
'min' => '1',
|
401 |
'max' => '120',
|
402 |
'step' => '1',
|
403 |
),
|
404 |
-
'mobile_options'
|
405 |
-
'depends_show_if'
|
406 |
-
'responsive'
|
407 |
),
|
408 |
-
'button_text'
|
409 |
'label' => esc_html__( 'Button Text', 'dsm-supreme-modules-for-divi' ),
|
410 |
'type' => 'text',
|
411 |
'option_category' => 'basic_option',
|
412 |
'description' => esc_html__( 'Input your desired button text, or leave blank for no button.', 'dsm-supreme-modules-for-divi' ),
|
413 |
'toggle_slug' => 'button',
|
414 |
),
|
415 |
-
'button_url'
|
416 |
'label' => esc_html__( 'Button URL', 'dsm-supreme-modules-for-divi' ),
|
417 |
'type' => 'text',
|
418 |
'option_category' => 'basic_option',
|
@@ -420,28 +420,28 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
420 |
'toggle_slug' => 'button',
|
421 |
),
|
422 |
'button_url_new_window' => array(
|
423 |
-
'default'
|
424 |
-
'default_on_front'=> true,
|
425 |
-
'label'
|
426 |
-
'type'
|
427 |
-
'option_category'
|
428 |
-
'options'
|
429 |
'off' => esc_html__( 'In The Same Window', 'dsm-supreme-modules-for-divi' ),
|
430 |
'on' => esc_html__( 'In The New Tab', 'dsm-supreme-modules-for-divi' ),
|
431 |
),
|
432 |
-
'toggle_slug'
|
433 |
-
'description'
|
434 |
),
|
435 |
-
'content_orientation'
|
436 |
'label' => esc_html__( 'Text Vertical Alignment', 'dsm-supreme-modules-for-divi' ),
|
437 |
'type' => 'select',
|
438 |
'option_category' => 'layout',
|
439 |
'options' => array(
|
440 |
-
'flex-start'
|
441 |
-
'center'
|
442 |
-
'flex-end'
|
443 |
),
|
444 |
-
'default'
|
445 |
'tab_slug' => 'advanced',
|
446 |
'toggle_slug' => 'text',
|
447 |
'description' => esc_html__( 'This setting determines the vertical alignment of your content. Your content can either be align to the top, vertically centered, or aligned to the bottom.', 'dsm-supreme-modules-for-divi' ),
|
@@ -450,37 +450,37 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
450 |
}
|
451 |
|
452 |
public function render( $attrs, $content = null, $render_slug ) {
|
453 |
-
$title
|
454 |
-
$subtitle
|
455 |
-
$button_text
|
456 |
-
$image
|
457 |
-
$alt
|
458 |
-
$icon_placement
|
459 |
-
$font_icon
|
460 |
-
$use_icon
|
461 |
-
$use_circle
|
462 |
-
$use_circle_border
|
463 |
-
$icon_color
|
464 |
-
$circle_color
|
465 |
-
$circle_border_color
|
466 |
-
$use_icon_font_size
|
467 |
-
$icon_font_size
|
468 |
-
$icon_font_size_tablet
|
469 |
-
$icon_font_size_phone
|
470 |
$icon_font_size_last_edited = $this->props['icon_font_size_last_edited'];
|
471 |
$image_max_width = $this->props['image_max_width'];
|
472 |
$image_max_width_tablet = $this->props['image_max_width_tablet'];
|
473 |
$image_max_width_phone = $this->props['image_max_width_phone'];
|
474 |
$image_max_width_last_edited = $this->props['image_max_width_last_edited'];
|
475 |
-
$button_url
|
476 |
-
$button_url_new_window
|
477 |
-
$button_custom
|
478 |
-
$button_rel
|
479 |
-
$custom_icon
|
480 |
-
$content_orientation
|
481 |
-
$background_layout
|
482 |
-
$text_orientation
|
483 |
-
$header_level
|
484 |
|
485 |
$image_pathinfo = pathinfo( $image );
|
486 |
$is_image_svg = isset( $image_pathinfo['extension'] ) ? 'svg' === $image_pathinfo['extension'] : false;
|
@@ -536,25 +536,30 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
536 |
}
|
537 |
|
538 |
// Render button
|
539 |
-
$button = $this->render_button(
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
|
|
|
|
|
|
|
|
|
|
558 |
}
|
559 |
|
560 |
if ( 'off' === $use_icon ) {
|
@@ -602,13 +607,15 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
602 |
esc_attr( $generate_css_image_filters )
|
603 |
) : '';
|
604 |
|
605 |
-
$video_background
|
606 |
$parallax_image_background = $this->get_parallax_image_background();
|
607 |
|
608 |
-
$this->add_classname(
|
609 |
-
|
610 |
-
|
611 |
-
|
|
|
|
|
612 |
|
613 |
// Render module content
|
614 |
$output = sprintf(
|
@@ -638,4 +645,4 @@ class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
|
638 |
}
|
639 |
}
|
640 |
|
641 |
-
new DSM_FlipBox_Perk_Child;
|
2 |
|
3 |
class DSM_FlipBox_Perk_Child extends ET_Builder_Module {
|
4 |
|
5 |
+
public $slug = 'dsm_flipbox_child';
|
6 |
+
public $vb_support = 'on';
|
7 |
+
public $type = 'child';
|
8 |
+
public $child_title_var = 'title';
|
9 |
// If the attribute defined on $this->child_title_var is empty, this attribute will be used instead
|
10 |
public $child_title_fallback_var = 'subtitle';
|
11 |
|
16 |
);
|
17 |
|
18 |
public function init() {
|
19 |
+
$this->name = esc_html__( 'Flipbox Item', 'dsm-supreme-modules-for-divi' );
|
20 |
$this->advanced_setting_title_text = esc_html__( 'Flipbox Item', 'dsm-supreme-modules-for-divi' );
|
21 |
+
$this->settings_text = esc_html__( 'Flipbox Item Settings', 'dsm-supreme-modules-for-divi' );
|
22 |
|
23 |
$this->settings_modal_toggles = array(
|
24 |
+
'general' => array(
|
25 |
'toggles' => array(
|
26 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
27 |
'link' => esc_html__( 'Link', 'dsm-supreme-modules-for-divi' ),
|
28 |
'image' => esc_html__( 'Image & Icon', 'dsm-supreme-modules-for-divi' ),
|
29 |
),
|
30 |
),
|
31 |
+
'advanced' => array(
|
32 |
'toggles' => array(
|
33 |
'icon_settings' => esc_html__( 'Image & Icon', 'dsm-supreme-modules-for-divi' ),
|
34 |
'text' => array(
|
54 |
|
55 |
public function get_advanced_fields_config() {
|
56 |
return array(
|
57 |
+
'fonts' => array(
|
58 |
+
'header' => array(
|
59 |
+
'label' => esc_html__( 'Title', 'dsm-supreme-modules-for-divi' ),
|
60 |
+
'css' => array(
|
61 |
'main' => '%%order_class%% h1.et_pb_module_header, %%order_class%% h2.et_pb_module_header, %%order_class%% h3.et_pb_module_header, %%order_class%% h4.et_pb_module_header, %%order_class%% h5.et_pb_module_header, %%order_class%% h6.et_pb_module_header',
|
62 |
),
|
63 |
+
'font_size' => array(
|
64 |
+
'default' => '26px',
|
65 |
),
|
66 |
'line_height' => array(
|
67 |
'default' => '1em',
|
69 |
'letter_spacing' => array(
|
70 |
'default' => '0px',
|
71 |
),
|
72 |
+
'header_level' => array(
|
73 |
'default' => 'h4',
|
74 |
),
|
75 |
),
|
76 |
'content' => array(
|
77 |
+
'label' => esc_html__( 'Body', 'dsm-supreme-modules-for-divi' ),
|
78 |
+
'css' => array(
|
79 |
'main' => '%%order_class%% .dsm-content',
|
80 |
),
|
81 |
+
'font_size' => array(
|
82 |
+
'default' => '14px',
|
83 |
),
|
84 |
'line_height' => array(
|
85 |
'default' => '1em',
|
89 |
),
|
90 |
),
|
91 |
'subhead' => array(
|
92 |
+
'label' => esc_html__( 'Subhead', 'dsm-supreme-modules-for-divi' ),
|
93 |
+
'css' => array(
|
94 |
'main' => '%%order_class%% .dsm-subtitle',
|
95 |
),
|
96 |
'line_height' => array(
|
101 |
),
|
102 |
),
|
103 |
),
|
104 |
+
'text' => array(
|
105 |
'use_background_layout' => true,
|
106 |
+
'css' => array(
|
107 |
'text_shadow' => '%%order_class%% .dsm_flipbox_wrapper',
|
108 |
),
|
109 |
+
'options' => array(
|
110 |
'background_layout' => array(
|
111 |
'default_on_front' => 'light',
|
112 |
),
|
113 |
+
'text_orientation' => array(
|
114 |
'default_on_front' => 'left',
|
115 |
),
|
116 |
),
|
117 |
),
|
118 |
+
'borders' => array(
|
119 |
'default' => array(),
|
120 |
'image' => array(
|
121 |
'css' => array(
|
122 |
'main' => array(
|
123 |
+
'border_radii' => '%%order_class%% .dsm_flipbox_child_image .dsm_flipbox_child_image_wrap',
|
124 |
+
'border_styles' => '%%order_class%% .dsm_flipbox_child_image .dsm_flipbox_child_image_wrap',
|
125 |
+
),
|
126 |
),
|
127 |
'label_prefix' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
128 |
'tab_slug' => 'advanced',
|
131 |
'depends_show_if' => 'off',
|
132 |
),
|
133 |
),
|
134 |
+
'box_shadow' => array(
|
135 |
'default' => array(),
|
136 |
'image' => array(
|
137 |
+
'label' => esc_html__( 'Image Box Shadow', 'dsm-supreme-modules-for-divi' ),
|
138 |
+
'option_category' => 'layout',
|
139 |
+
'tab_slug' => 'advanced',
|
140 |
+
'toggle_slug' => 'icon_settings',
|
141 |
+
'depends_show_if' => 'off',
|
142 |
+
'css' => array(
|
143 |
+
'main' => '%%order_class%% .dsm_flipbox_child_image .dsm_flipbox_child_image_wrap',
|
144 |
'show_if_not' => array(
|
145 |
'use_icon' => 'on',
|
146 |
),
|
147 |
),
|
148 |
+
'default_on_fronts' => array(
|
149 |
'color' => '',
|
150 |
'position' => '',
|
151 |
),
|
152 |
),
|
153 |
),
|
154 |
+
'button' => array(
|
155 |
'button' => array(
|
156 |
+
'label' => esc_html__( 'Button', 'dsm-supreme-modules-for-divi' ),
|
157 |
+
'css' => array(
|
158 |
'plugin_main' => '%%order_class%% .et_pb_button',
|
159 |
'alignment' => '%%order_class%% .et_pb_button_wrapper',
|
160 |
),
|
166 |
),
|
167 |
),
|
168 |
),
|
169 |
+
'filters' => array(
|
170 |
'child_filters_target' => array(
|
171 |
+
'tab_slug' => 'advanced',
|
172 |
+
'toggle_slug' => 'icon_settings',
|
173 |
'depends_show_if' => 'off',
|
174 |
),
|
175 |
),
|
176 |
+
'icon_settings' => array(
|
177 |
'css' => array(
|
178 |
'main' => '%%order_class%% .et_pb_main_blurb_image',
|
179 |
),
|
180 |
),
|
181 |
+
'position_fields' => false,
|
182 |
);
|
183 |
}
|
184 |
|
196 |
}
|
197 |
|
198 |
return array(
|
199 |
+
'title' => array(
|
200 |
'label' => esc_html__( 'Title', 'dsm-supreme-modules-for-divi' ),
|
201 |
'type' => 'text',
|
202 |
'option_category' => 'basic_option',
|
203 |
'description' => esc_html__( 'Text entered here will appear as title.', 'dsm-supreme-modules-for-divi' ),
|
204 |
'toggle_slug' => 'main_content',
|
205 |
),
|
206 |
+
'subtitle' => array(
|
207 |
'label' => esc_html__( 'Sub Title', 'dsm-supreme-modules-for-divi' ),
|
208 |
'type' => 'text',
|
209 |
'option_category' => 'basic_option',
|
210 |
'description' => esc_html__( 'Text entered here will appear as subtitle.', 'dsm-supreme-modules-for-divi' ),
|
211 |
'toggle_slug' => 'main_content',
|
212 |
),
|
213 |
+
'use_icon' => array(
|
214 |
+
'label' => esc_html__( 'Use Icon', 'dsm-supreme-modules-for-divi' ),
|
215 |
+
'type' => 'yes_no_button',
|
216 |
+
'option_category' => 'basic_option',
|
217 |
+
'options' => array(
|
218 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
219 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
220 |
),
|
221 |
+
'toggle_slug' => 'image',
|
222 |
+
'affects' => array(
|
223 |
'border_radii_image',
|
224 |
'border_styles_image',
|
225 |
'box_shadow_style_image',
|
240 |
'child_filter_blur',
|
241 |
'child_mix_blend_mode',
|
242 |
),
|
243 |
+
'description' => esc_html__( 'Here you can choose whether icon set below should be used.', 'dsm-supreme-modules-for-divi' ),
|
244 |
+
'default_on_front' => 'off',
|
245 |
),
|
246 |
+
'font_icon' => array(
|
247 |
+
'label' => esc_html__( 'Icon', 'dsm-supreme-modules-for-divi' ),
|
248 |
+
'type' => 'select_icon',
|
249 |
+
'option_category' => 'basic_option',
|
250 |
+
'class' => array( 'et-pb-font-icon' ),
|
251 |
+
'toggle_slug' => 'image',
|
252 |
+
'description' => esc_html__( 'Choose an icon to display with your blurb.', 'dsm-supreme-modules-for-divi' ),
|
253 |
+
'depends_show_if' => 'on',
|
254 |
),
|
255 |
+
'icon_color' => array(
|
256 |
+
'default' => $et_accent_color,
|
257 |
+
'label' => esc_html__( 'Icon Color', 'dsm-supreme-modules-for-divi' ),
|
258 |
+
'type' => 'color-alpha',
|
259 |
+
'description' => esc_html__( 'Here you can define a custom color for your icon.', 'dsm-supreme-modules-for-divi' ),
|
260 |
+
'depends_show_if' => 'on',
|
261 |
+
'tab_slug' => 'advanced',
|
262 |
+
'toggle_slug' => 'icon_settings',
|
263 |
),
|
264 |
+
'use_circle' => array(
|
265 |
+
'label' => esc_html__( 'Circle Icon', 'dsm-supreme-modules-for-divi' ),
|
266 |
+
'type' => 'yes_no_button',
|
267 |
+
'option_category' => 'configuration',
|
268 |
+
'options' => array(
|
269 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
270 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
271 |
),
|
272 |
+
'affects' => array(
|
273 |
'use_circle_border',
|
274 |
'circle_color',
|
275 |
),
|
277 |
'toggle_slug' => 'icon_settings',
|
278 |
'description' => esc_html__( 'Here you can choose whether icon set above should display within a circle.', 'dsm-supreme-modules-for-divi' ),
|
279 |
'depends_show_if' => 'on',
|
280 |
+
'default_on_front' => 'off',
|
281 |
),
|
282 |
+
'circle_color' => array(
|
283 |
'default' => $et_accent_color,
|
284 |
'label' => esc_html__( 'Circle Color', 'dsm-supreme-modules-for-divi' ),
|
285 |
'type' => 'color-alpha',
|
288 |
'tab_slug' => 'advanced',
|
289 |
'toggle_slug' => 'icon_settings',
|
290 |
),
|
291 |
+
'use_circle_border' => array(
|
292 |
+
'label' => esc_html__( 'Show Circle Border', 'dsm-supreme-modules-for-divi' ),
|
293 |
+
'type' => 'yes_no_button',
|
294 |
+
'option_category' => 'layout',
|
295 |
+
'options' => array(
|
296 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
297 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
298 |
),
|
299 |
+
'affects' => array(
|
300 |
'circle_border_color',
|
301 |
),
|
302 |
+
'description' => esc_html__( 'Here you can choose whether if the icon circle border should display.', 'dsm-supreme-modules-for-divi' ),
|
303 |
+
'depends_show_if' => 'on',
|
304 |
+
'tab_slug' => 'advanced',
|
305 |
+
'toggle_slug' => 'icon_settings',
|
306 |
+
'default_on_front' => 'off',
|
307 |
),
|
308 |
+
'circle_border_color' => array(
|
309 |
'default' => $et_accent_color,
|
310 |
'label' => esc_html__( 'Circle Border Color', 'dsm-supreme-modules-for-divi' ),
|
311 |
'type' => 'color-alpha',
|
314 |
'tab_slug' => 'advanced',
|
315 |
'toggle_slug' => 'icon_settings',
|
316 |
),
|
317 |
+
'image' => array(
|
318 |
'label' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
319 |
'type' => 'upload',
|
320 |
'option_category' => 'basic_option',
|
325 |
'description' => esc_html__( 'Upload an image to display at the top of your blurb.', 'dsm-supreme-modules-for-divi' ),
|
326 |
'toggle_slug' => 'image',
|
327 |
),
|
328 |
+
'alt' => array(
|
329 |
'label' => esc_html__( 'Image Alt Text', 'dsm-supreme-modules-for-divi' ),
|
330 |
'type' => 'text',
|
331 |
'option_category' => 'basic_option',
|
334 |
'tab_slug' => 'custom_css',
|
335 |
'toggle_slug' => 'attributes',
|
336 |
),
|
337 |
+
'icon_placement' => array(
|
338 |
+
'label' => esc_html__( 'Image/Icon Placement', 'dsm-supreme-modules-for-divi' ),
|
339 |
+
'type' => 'select',
|
340 |
+
'option_category' => 'layout',
|
341 |
+
'options' => $image_icon_placement,
|
342 |
+
'tab_slug' => 'advanced',
|
343 |
+
'toggle_slug' => 'icon_settings',
|
344 |
+
'description' => esc_html__( 'Here you can choose where to place the icon.', 'dsm-supreme-modules-for-divi' ),
|
345 |
+
'default_on_front' => 'top',
|
346 |
),
|
347 |
+
'content' => array(
|
348 |
'label' => esc_html__( 'Content', 'dsm-supreme-modules-for-divi' ),
|
349 |
'type' => 'tiny_mce',
|
350 |
'option_category' => 'basic_option',
|
351 |
'description' => esc_html__( 'Content entered here will appear inside the module.', 'dsm-supreme-modules-for-divi' ),
|
352 |
'toggle_slug' => 'main_content',
|
353 |
),
|
354 |
+
'image_max_width' => array(
|
355 |
+
'label' => esc_html__( 'Image Width', 'dsm-supreme-modules-for-divi' ),
|
356 |
+
'type' => 'range',
|
357 |
+
'option_category' => 'layout',
|
358 |
+
'tab_slug' => 'advanced',
|
359 |
+
'toggle_slug' => 'width',
|
360 |
+
'mobile_options' => true,
|
361 |
+
'validate_unit' => true,
|
362 |
+
'depends_show_if' => 'off',
|
363 |
+
'default' => '100%',
|
364 |
+
'default_unit' => '%',
|
365 |
+
'default_on_front' => '',
|
366 |
+
'allow_empty' => true,
|
367 |
+
'range_settings' => array(
|
368 |
'min' => '0',
|
369 |
'max' => '100',
|
370 |
'step' => '1',
|
371 |
),
|
372 |
+
'responsive' => true,
|
373 |
),
|
374 |
+
'use_icon_font_size' => array(
|
375 |
+
'label' => esc_html__( 'Use Icon Font Size', 'dsm-supreme-modules-for-divi' ),
|
376 |
+
'type' => 'yes_no_button',
|
377 |
+
'option_category' => 'font_option',
|
378 |
+
'options' => array(
|
379 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
380 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
381 |
),
|
382 |
+
'affects' => array(
|
383 |
'icon_font_size',
|
384 |
),
|
385 |
+
'depends_show_if' => 'on',
|
386 |
+
'tab_slug' => 'advanced',
|
387 |
+
'toggle_slug' => 'icon_settings',
|
388 |
+
'default_on_front' => 'off',
|
389 |
),
|
390 |
+
'icon_font_size' => array(
|
391 |
+
'label' => esc_html__( 'Icon Font Size', 'dsm-supreme-modules-for-divi' ),
|
392 |
+
'type' => 'range',
|
393 |
+
'option_category' => 'font_option',
|
394 |
+
'tab_slug' => 'advanced',
|
395 |
+
'toggle_slug' => 'icon_settings',
|
396 |
+
'default' => '96px',
|
397 |
+
'default_unit' => 'px',
|
398 |
+
'default_on_front' => '',
|
399 |
+
'range_settings' => array(
|
400 |
'min' => '1',
|
401 |
'max' => '120',
|
402 |
'step' => '1',
|
403 |
),
|
404 |
+
'mobile_options' => true,
|
405 |
+
'depends_show_if' => 'on',
|
406 |
+
'responsive' => true,
|
407 |
),
|
408 |
+
'button_text' => array(
|
409 |
'label' => esc_html__( 'Button Text', 'dsm-supreme-modules-for-divi' ),
|
410 |
'type' => 'text',
|
411 |
'option_category' => 'basic_option',
|
412 |
'description' => esc_html__( 'Input your desired button text, or leave blank for no button.', 'dsm-supreme-modules-for-divi' ),
|
413 |
'toggle_slug' => 'button',
|
414 |
),
|
415 |
+
'button_url' => array(
|
416 |
'label' => esc_html__( 'Button URL', 'dsm-supreme-modules-for-divi' ),
|
417 |
'type' => 'text',
|
418 |
'option_category' => 'basic_option',
|
420 |
'toggle_slug' => 'button',
|
421 |
),
|
422 |
'button_url_new_window' => array(
|
423 |
+
'default' => 'off',
|
424 |
+
'default_on_front' => true,
|
425 |
+
'label' => esc_html__( 'Url Opens', 'dsm-supreme-modules-for-divi' ),
|
426 |
+
'type' => 'select',
|
427 |
+
'option_category' => 'configuration',
|
428 |
+
'options' => array(
|
429 |
'off' => esc_html__( 'In The Same Window', 'dsm-supreme-modules-for-divi' ),
|
430 |
'on' => esc_html__( 'In The New Tab', 'dsm-supreme-modules-for-divi' ),
|
431 |
),
|
432 |
+
'toggle_slug' => 'button',
|
433 |
+
'description' => esc_html__( 'Choose whether your link opens in a new window or not', 'dsm-supreme-modules-for-divi' ),
|
434 |
),
|
435 |
+
'content_orientation' => array(
|
436 |
'label' => esc_html__( 'Text Vertical Alignment', 'dsm-supreme-modules-for-divi' ),
|
437 |
'type' => 'select',
|
438 |
'option_category' => 'layout',
|
439 |
'options' => array(
|
440 |
+
'flex-start' => esc_html__( 'Top', 'dsm-supreme-modules-for-divi' ),
|
441 |
+
'center' => esc_html__( 'Center', 'dsm-supreme-modules-for-divi' ),
|
442 |
+
'flex-end' => esc_html__( 'Bottom', 'dsm-supreme-modules-for-divi' ),
|
443 |
),
|
444 |
+
'default' => 'center',
|
445 |
'tab_slug' => 'advanced',
|
446 |
'toggle_slug' => 'text',
|
447 |
'description' => esc_html__( 'This setting determines the vertical alignment of your content. Your content can either be align to the top, vertically centered, or aligned to the bottom.', 'dsm-supreme-modules-for-divi' ),
|
450 |
}
|
451 |
|
452 |
public function render( $attrs, $content = null, $render_slug ) {
|
453 |
+
$title = $this->props['title'];
|
454 |
+
$subtitle = $this->props['subtitle'];
|
455 |
+
$button_text = $this->props['button_text'];
|
456 |
+
$image = $this->props['image'];
|
457 |
+
$alt = $this->props['alt'];
|
458 |
+
$icon_placement = $this->props['icon_placement'];
|
459 |
+
$font_icon = $this->props['font_icon'];
|
460 |
+
$use_icon = $this->props['use_icon'];
|
461 |
+
$use_circle = $this->props['use_circle'];
|
462 |
+
$use_circle_border = $this->props['use_circle_border'];
|
463 |
+
$icon_color = $this->props['icon_color'];
|
464 |
+
$circle_color = $this->props['circle_color'];
|
465 |
+
$circle_border_color = $this->props['circle_border_color'];
|
466 |
+
$use_icon_font_size = $this->props['use_icon_font_size'];
|
467 |
+
$icon_font_size = $this->props['icon_font_size'];
|
468 |
+
$icon_font_size_tablet = $this->props['icon_font_size_tablet'];
|
469 |
+
$icon_font_size_phone = $this->props['icon_font_size_phone'];
|
470 |
$icon_font_size_last_edited = $this->props['icon_font_size_last_edited'];
|
471 |
$image_max_width = $this->props['image_max_width'];
|
472 |
$image_max_width_tablet = $this->props['image_max_width_tablet'];
|
473 |
$image_max_width_phone = $this->props['image_max_width_phone'];
|
474 |
$image_max_width_last_edited = $this->props['image_max_width_last_edited'];
|
475 |
+
$button_url = $this->props['button_url'];
|
476 |
+
$button_url_new_window = $this->props['button_url_new_window'];
|
477 |
+
$button_custom = $this->props['custom_button'];
|
478 |
+
$button_rel = $this->props['button_rel'];
|
479 |
+
$custom_icon = $this->props['button_icon'];
|
480 |
+
$content_orientation = $this->props['content_orientation'];
|
481 |
+
$background_layout = $this->props['background_layout'];
|
482 |
+
$text_orientation = $this->props['text_orientation'];
|
483 |
+
$header_level = $this->props['header_level'];
|
484 |
|
485 |
$image_pathinfo = pathinfo( $image );
|
486 |
$is_image_svg = isset( $image_pathinfo['extension'] ) ? 'svg' === $image_pathinfo['extension'] : false;
|
536 |
}
|
537 |
|
538 |
// Render button
|
539 |
+
$button = $this->render_button(
|
540 |
+
array(
|
541 |
+
'button_classname' => array( 'et_pb_more_button' ),
|
542 |
+
'button_custom' => $button_custom,
|
543 |
+
'button_rel' => $button_rel,
|
544 |
+
'button_text' => $button_text,
|
545 |
+
'button_url' => $button_url,
|
546 |
+
'custom_icon' => $custom_icon,
|
547 |
+
'url_new_window' => $button_url_new_window,
|
548 |
+
'display_button' => '' !== $button_url && '' !== $button_text,
|
549 |
+
)
|
550 |
+
);
|
551 |
+
|
552 |
+
if ( 'center' !== $content_orientation ) {
|
553 |
+
ET_Builder_Element::set_style(
|
554 |
+
$render_slug,
|
555 |
+
array(
|
556 |
+
'selector' => '%%order_class%%',
|
557 |
+
'declaration' => sprintf(
|
558 |
+
'align-items: %1$s;',
|
559 |
+
esc_attr( $content_orientation )
|
560 |
+
),
|
561 |
+
)
|
562 |
+
);
|
563 |
}
|
564 |
|
565 |
if ( 'off' === $use_icon ) {
|
607 |
esc_attr( $generate_css_image_filters )
|
608 |
) : '';
|
609 |
|
610 |
+
$video_background = $this->video_background();
|
611 |
$parallax_image_background = $this->get_parallax_image_background();
|
612 |
|
613 |
+
$this->add_classname(
|
614 |
+
array(
|
615 |
+
"et_pb_bg_layout_{$background_layout}",
|
616 |
+
sprintf( ' dsm_flipbox_icon_position_%1$s', esc_attr( $icon_placement ) ),
|
617 |
+
)
|
618 |
+
);
|
619 |
|
620 |
// Render module content
|
621 |
$output = sprintf(
|
645 |
}
|
646 |
}
|
647 |
|
648 |
+
new DSM_FlipBox_Perk_Child;
|
includes/modules/GradientText/GradientText.php
CHANGED
@@ -6,24 +6,23 @@ class DSM_GradientText extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
-
'author' => 'Supreme
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Gradient Text', 'dsm-supreme-modules-for-divi' );
|
16 |
//$this->icon = 'j';
|
17 |
// Toggle settings
|
18 |
-
$this->settings_modal_toggles
|
19 |
'general' => array(
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
22 |
),
|
23 |
),
|
24 |
'advanced' => array(
|
25 |
-
'toggles' => array(
|
26 |
-
),
|
27 |
),
|
28 |
);
|
29 |
}
|
@@ -32,12 +31,12 @@ class DSM_GradientText extends ET_Builder_Module {
|
|
32 |
return array(
|
33 |
'fonts' => array(
|
34 |
'header' => array(
|
35 |
-
'label'
|
36 |
-
'css'
|
37 |
'main' => '%%order_class%% h1.dsm-gradient-text, %%order_class%% h2.dsm-gradient-text, %%order_class%% h3.dsm-gradient-text, %%order_class%% h4.dsm-gradient-text, %%order_class%% h5.dsm-gradient-text, %%order_class%% h6.dsm-gradient-text',
|
38 |
),
|
39 |
-
'font_size'
|
40 |
-
'default'
|
41 |
),
|
42 |
'line_height' => array(
|
43 |
'default' => '1em',
|
@@ -45,18 +44,18 @@ class DSM_GradientText extends ET_Builder_Module {
|
|
45 |
'letter_spacing' => array(
|
46 |
'default' => '0px',
|
47 |
),
|
48 |
-
'header_level'
|
49 |
'default' => 'h1',
|
50 |
),
|
51 |
),
|
52 |
),
|
53 |
'text' => array(
|
54 |
-
'use_text_orientation'
|
55 |
'use_background_layout' => false,
|
56 |
-
'css'
|
57 |
'text_shadow' => '%%order_class%%',
|
58 |
),
|
59 |
-
'options'
|
60 |
'background_layout' => array(
|
61 |
'default' => 'light',
|
62 |
),
|
@@ -67,39 +66,39 @@ class DSM_GradientText extends ET_Builder_Module {
|
|
67 |
'main' => '%%order_class%% .dsm-gradient-text',
|
68 |
),
|
69 |
'options' => array(
|
70 |
-
'use_background_color'
|
71 |
'default' => 'off',
|
72 |
),
|
73 |
-
'use_background_video'
|
74 |
'default' => 'off',
|
75 |
),
|
76 |
-
'use_background_color_gradient'
|
77 |
'default' => 'on',
|
78 |
),
|
79 |
'background_color_gradient_start' => array(
|
80 |
-
'default'
|
81 |
),
|
82 |
-
'background_color_gradient_end'
|
83 |
-
'default'
|
84 |
),
|
85 |
-
'parallax_method'
|
86 |
'default' => 'off',
|
87 |
),
|
88 |
),
|
89 |
),
|
90 |
-
'borders'
|
91 |
'default' => array(
|
92 |
'css' => array(
|
93 |
'main' => array(
|
94 |
-
'border_radii' =>
|
95 |
-
'border_styles' =>
|
96 |
),
|
97 |
),
|
98 |
),
|
99 |
),
|
100 |
-
'box_shadow'
|
101 |
-
'default'
|
102 |
-
'css'
|
103 |
'main' => '%%order_class%%',
|
104 |
),
|
105 |
),
|
@@ -110,10 +109,10 @@ class DSM_GradientText extends ET_Builder_Module {
|
|
110 |
public function get_fields() {
|
111 |
return array(
|
112 |
'gradient_text' => array(
|
113 |
-
'label'
|
114 |
-
'type'
|
115 |
-
'option_category'
|
116 |
-
'toggle_slug'
|
117 |
'default_on_front' => 'Supreme Gradient Text',
|
118 |
),
|
119 |
);
|
@@ -121,19 +120,21 @@ class DSM_GradientText extends ET_Builder_Module {
|
|
121 |
|
122 |
public function render( $attrs, $content = null, $render_slug ) {
|
123 |
$gradient_text = $this->props['gradient_text'];
|
124 |
-
$header_level
|
125 |
|
126 |
if ( '' !== $gradient_text ) {
|
127 |
-
$gradient_text = sprintf(
|
|
|
128 |
et_pb_process_header_level( $header_level, 'h1' ),
|
129 |
$gradient_text
|
130 |
);
|
131 |
}
|
132 |
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
|
|
137 |
|
138 |
// Render module content
|
139 |
$output = sprintf(
|
@@ -146,4 +147,4 @@ class DSM_GradientText extends ET_Builder_Module {
|
|
146 |
}
|
147 |
}
|
148 |
|
149 |
-
new DSM_GradientText;
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
+
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Gradient Text', 'dsm-supreme-modules-for-divi' );
|
16 |
//$this->icon = 'j';
|
17 |
// Toggle settings
|
18 |
+
$this->settings_modal_toggles = array(
|
19 |
'general' => array(
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
22 |
),
|
23 |
),
|
24 |
'advanced' => array(
|
25 |
+
'toggles' => array(),
|
|
|
26 |
),
|
27 |
);
|
28 |
}
|
31 |
return array(
|
32 |
'fonts' => array(
|
33 |
'header' => array(
|
34 |
+
'label' => esc_html__( 'Title', 'dsm-supreme-modules-for-divi' ),
|
35 |
+
'css' => array(
|
36 |
'main' => '%%order_class%% h1.dsm-gradient-text, %%order_class%% h2.dsm-gradient-text, %%order_class%% h3.dsm-gradient-text, %%order_class%% h4.dsm-gradient-text, %%order_class%% h5.dsm-gradient-text, %%order_class%% h6.dsm-gradient-text',
|
37 |
),
|
38 |
+
'font_size' => array(
|
39 |
+
'default' => '30px',
|
40 |
),
|
41 |
'line_height' => array(
|
42 |
'default' => '1em',
|
44 |
'letter_spacing' => array(
|
45 |
'default' => '0px',
|
46 |
),
|
47 |
+
'header_level' => array(
|
48 |
'default' => 'h1',
|
49 |
),
|
50 |
),
|
51 |
),
|
52 |
'text' => array(
|
53 |
+
'use_text_orientation' => true,
|
54 |
'use_background_layout' => false,
|
55 |
+
'css' => array(
|
56 |
'text_shadow' => '%%order_class%%',
|
57 |
),
|
58 |
+
'options' => array(
|
59 |
'background_layout' => array(
|
60 |
'default' => 'light',
|
61 |
),
|
66 |
'main' => '%%order_class%% .dsm-gradient-text',
|
67 |
),
|
68 |
'options' => array(
|
69 |
+
'use_background_color' => array(
|
70 |
'default' => 'off',
|
71 |
),
|
72 |
+
'use_background_video' => array(
|
73 |
'default' => 'off',
|
74 |
),
|
75 |
+
'use_background_color_gradient' => array(
|
76 |
'default' => 'on',
|
77 |
),
|
78 |
'background_color_gradient_start' => array(
|
79 |
+
'default' => 'rgba(131,0,233,0.78)',
|
80 |
),
|
81 |
+
'background_color_gradient_end' => array(
|
82 |
+
'default' => 'rgba(41,196,169,0.62)',
|
83 |
),
|
84 |
+
'parallax_method' => array(
|
85 |
'default' => 'off',
|
86 |
),
|
87 |
),
|
88 |
),
|
89 |
+
'borders' => array(
|
90 |
'default' => array(
|
91 |
'css' => array(
|
92 |
'main' => array(
|
93 |
+
'border_radii' => '%%order_class%%',
|
94 |
+
'border_styles' => '%%order_class%%',
|
95 |
),
|
96 |
),
|
97 |
),
|
98 |
),
|
99 |
+
'box_shadow' => array(
|
100 |
+
'default' => array(
|
101 |
+
'css' => array(
|
102 |
'main' => '%%order_class%%',
|
103 |
),
|
104 |
),
|
109 |
public function get_fields() {
|
110 |
return array(
|
111 |
'gradient_text' => array(
|
112 |
+
'label' => esc_html__( 'Gradient Text', 'dsm-supreme-modules-for-divi' ),
|
113 |
+
'type' => 'text',
|
114 |
+
'option_category' => 'basic_option',
|
115 |
+
'toggle_slug' => 'main_content',
|
116 |
'default_on_front' => 'Supreme Gradient Text',
|
117 |
),
|
118 |
);
|
120 |
|
121 |
public function render( $attrs, $content = null, $render_slug ) {
|
122 |
$gradient_text = $this->props['gradient_text'];
|
123 |
+
$header_level = $this->props['header_level'];
|
124 |
|
125 |
if ( '' !== $gradient_text ) {
|
126 |
+
$gradient_text = sprintf(
|
127 |
+
'<%1$s class="dsm-gradient-text">%2$s</%1$s>',
|
128 |
et_pb_process_header_level( $header_level, 'h1' ),
|
129 |
$gradient_text
|
130 |
);
|
131 |
}
|
132 |
|
133 |
+
$this->add_classname(
|
134 |
+
array(
|
135 |
+
$this->get_text_orientation_classname(),
|
136 |
+
)
|
137 |
+
);
|
138 |
|
139 |
// Render module content
|
140 |
$output = sprintf(
|
147 |
}
|
148 |
}
|
149 |
|
150 |
+
new DSM_GradientText;
|
includes/modules/Menu/Menu.php
CHANGED
@@ -6,16 +6,16 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
'author' => 'Divi Supreme',
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Menu', 'dsm-supreme-modules-for-divi' );
|
16 |
//$this->icon = '';
|
17 |
// Toggle settings
|
18 |
-
$this->settings_modal_toggles
|
19 |
'general' => array(
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Menu', 'dsm-supreme-modules-for-divi' ),
|
@@ -23,7 +23,7 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
23 |
),
|
24 |
'advanced' => array(
|
25 |
'toggles' => array(
|
26 |
-
'menu_style'
|
27 |
'submenu_style' => esc_html__( 'Sub Menu Style', 'dsm-supreme-modules-for-divi' ),
|
28 |
),
|
29 |
),
|
@@ -32,14 +32,14 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
32 |
|
33 |
public function get_advanced_fields_config() {
|
34 |
return array(
|
35 |
-
'fonts'
|
36 |
'header' => array(
|
37 |
-
'label'
|
38 |
-
'css'
|
39 |
'main' => '%%order_class%% h1.dsm-menu-title, %%order_class%% h2.dsm-menu-title, %%order_class%% h3.dsm-menu-title, %%order_class%% h4.dsm-menu-title, %%order_class%% h5.dsm-menu-title, %%order_class%% h6.dsm-menu-title',
|
40 |
),
|
41 |
-
'font_size'
|
42 |
-
'default'
|
43 |
),
|
44 |
'line_height' => array(
|
45 |
'default' => '1em',
|
@@ -47,29 +47,29 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
47 |
'letter_spacing' => array(
|
48 |
'default' => '0px',
|
49 |
),
|
50 |
-
'header_level'
|
51 |
'default' => 'h4',
|
52 |
),
|
53 |
),
|
54 |
-
'menu'
|
55 |
-
'label'
|
56 |
-
'css'
|
57 |
-
'main'
|
58 |
-
'plugin_main' => '%%order_class%% ul.dsm-menu li a'
|
59 |
),
|
60 |
-
'line_height'
|
61 |
'default' => '1em',
|
62 |
),
|
63 |
-
'font_size'
|
64 |
-
'default'
|
65 |
'range_settings' => array(
|
66 |
'min' => '12',
|
67 |
'max' => '24',
|
68 |
'step' => '1',
|
69 |
),
|
70 |
),
|
71 |
-
'letter_spacing'
|
72 |
-
'default'
|
73 |
'range_settings' => array(
|
74 |
'min' => '0',
|
75 |
'max' => '8',
|
@@ -80,39 +80,39 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
80 |
'hide_text_color' => true,
|
81 |
),
|
82 |
),
|
83 |
-
'text'
|
84 |
'use_background_layout' => true,
|
85 |
-
'options'
|
86 |
'text_orientation' => array(
|
87 |
'default_on_front' => 'left',
|
88 |
),
|
89 |
'background_layout' => array(
|
90 |
'default_on_front' => 'light',
|
91 |
-
'hover'
|
92 |
),
|
93 |
),
|
94 |
),
|
95 |
-
'margin_padding'
|
96 |
-
'css'
|
97 |
'main' => '%%order_class%%',
|
98 |
),
|
99 |
),
|
100 |
-
'link_options'
|
101 |
-
'button'
|
102 |
);
|
103 |
}
|
104 |
|
105 |
public function get_fields() {
|
106 |
$et_accent_color = et_builder_accent_color();
|
107 |
return array(
|
108 |
-
'title'
|
109 |
'label' => esc_html__( 'Menu Title', 'dsm-supreme-modules-for-divi' ),
|
110 |
'type' => 'text',
|
111 |
'option_category' => 'basic_option',
|
112 |
'description' => esc_html__( 'The title will appear above the menu.', 'dsm-supreme-modules-for-divi' ),
|
113 |
'toggle_slug' => 'main_content',
|
114 |
),
|
115 |
-
'title_bottom_gap'
|
116 |
'label' => esc_html__( 'Bottom Gap', 'dsm-supreme-modules-for-divi' ),
|
117 |
'type' => 'range',
|
118 |
'option_category' => 'layout',
|
@@ -121,14 +121,14 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
121 |
'toggle_slug' => 'header',
|
122 |
'responsive' => true,
|
123 |
'default_unit' => 'px',
|
124 |
-
'default'
|
125 |
),
|
126 |
-
'menu_id'
|
127 |
-
'label'
|
128 |
-
'type'
|
129 |
-
'option_category'
|
130 |
-
'options'
|
131 |
-
'description'
|
132 |
'<p class="description">%2$s. <a href="%1$s" target="_blank">%3$s</a>.</p>',
|
133 |
esc_url( admin_url( 'nav-menus.php' ) ),
|
134 |
esc_html__( 'Select a menu that should be used in the module', 'dsm-supreme-modules-for-divi' ),
|
@@ -147,60 +147,60 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
147 |
'toggle_slug' => 'menu',
|
148 |
'hover' => 'tabs',
|
149 |
),
|
150 |
-
'menu_space_between'
|
151 |
'label' => esc_html__( 'Space Between', 'dsm-supreme-modules-for-divi' ),
|
152 |
'type' => 'range',
|
153 |
'option_category' => 'layout',
|
154 |
'mobile_options' => true,
|
155 |
'responsive' => true,
|
156 |
'default_unit' => 'px',
|
157 |
-
'default'
|
158 |
-
'tab_slug'
|
159 |
-
'toggle_slug'
|
160 |
),
|
161 |
-
'menu_layout'
|
162 |
'label' => esc_html__( 'Menu Layout', 'dsm-supreme-modules-for-divi' ),
|
163 |
'type' => 'select',
|
164 |
'option_category' => 'layout',
|
165 |
'options' => array(
|
166 |
-
'vertical'
|
167 |
),
|
168 |
-
'default'
|
169 |
'tab_slug' => 'advanced',
|
170 |
'toggle_slug' => 'menu_style',
|
171 |
),
|
172 |
-
'list_style_type'
|
173 |
-
'label'
|
174 |
-
'type'
|
175 |
-
'option_category'
|
176 |
-
'options'
|
177 |
-
'none'
|
178 |
-
'disc'
|
179 |
-
'circle'
|
180 |
'decimal' => esc_html__( 'Decimal', 'dsm-supreme-modules-for-divi' ),
|
181 |
-
'square'
|
182 |
),
|
183 |
'default_on_front' => 'disc',
|
184 |
-
'tab_slug'
|
185 |
-
'toggle_slug'
|
186 |
-
'show_if'
|
187 |
'menu_layout' => 'vertical',
|
188 |
),
|
189 |
),
|
190 |
-
'list_style_color'
|
191 |
'label' => esc_html__( 'List Style Color', 'dsm-supreme-modules-for-divi' ),
|
192 |
'type' => 'color-alpha',
|
193 |
'custom_color' => true,
|
194 |
-
'tab_slug'
|
195 |
-
'toggle_slug'
|
196 |
-
'show_if_not'
|
197 |
'list_style_type' => 'none',
|
198 |
),
|
199 |
-
'show_if'
|
200 |
'menu_layout' => 'vertical',
|
201 |
),
|
202 |
),
|
203 |
-
'submenu_left_space'
|
204 |
'label' => esc_html__( 'Left Spacing', 'dsm-supreme-modules-for-divi' ),
|
205 |
'type' => 'range',
|
206 |
'option_category' => 'layout',
|
@@ -209,12 +209,12 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
209 |
'toggle_slug' => 'submenu_style',
|
210 |
'responsive' => true,
|
211 |
'default_unit' => 'px',
|
212 |
-
'default'
|
213 |
-
'show_if'
|
214 |
'menu_layout' => 'vertical',
|
215 |
),
|
216 |
),
|
217 |
-
'__menu'
|
218 |
'type' => 'computed',
|
219 |
'computed_callback' => array( 'DSM_NavMenu', 'get_dsm_navmenu' ),
|
220 |
'computed_depends_on' => array(
|
@@ -241,15 +241,15 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
241 |
}
|
242 |
|
243 |
/**
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
static function get_dsm_navmenu( $args = array() ) {
|
249 |
$defaults = array(
|
250 |
'list_style_type' => '',
|
251 |
-
'menu_layout'
|
252 |
-
'menu_id'
|
253 |
);
|
254 |
|
255 |
// modify the menu item to include the required data
|
@@ -261,7 +261,7 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
261 |
|
262 |
$menuClass = 'dsm-menu';
|
263 |
|
264 |
-
if ( ! et_is_builder_plugin_active() && 'on'
|
265 |
$menuClass .= ' et_disable_top_tier';
|
266 |
}
|
267 |
$menuClass .= ( '' !== $args['list_style_type'] ? sprintf( ' %s', esc_attr( 'dsm-menu-style-type-' . $args['list_style_type'] ) ) : '' );
|
@@ -284,13 +284,14 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
284 |
|
285 |
$primaryNav = wp_nav_menu( apply_filters( 'dsm_menu_args', $menu_args ) );
|
286 |
|
287 |
-
if ( ''
|
288 |
$menu .= sprintf(
|
289 |
'<ul class="%1$s">
|
290 |
%2$s',
|
291 |
esc_attr( $menuClass ),
|
292 |
( ! et_is_builder_plugin_active() && 'on' === et_get_option( 'divi_home_link' )
|
293 |
-
? sprintf(
|
|
|
294 |
( is_home() ? ' class="current_page_item"' : '' ),
|
295 |
esc_url( home_url( '/' ) ),
|
296 |
esc_html__( 'Home', 'dsm-supreme-modules-for-divi' )
|
@@ -326,33 +327,35 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
326 |
}
|
327 |
|
328 |
public function render( $attrs, $content = null, $render_slug ) {
|
329 |
-
$background_layout
|
330 |
-
$title
|
331 |
-
$title_bottom_gap
|
332 |
-
$title_bottom_gap_tablet
|
333 |
-
$title_bottom_gap_phone
|
334 |
-
$title_bottom_gap_last_edited
|
335 |
-
$menu_id
|
336 |
-
$menu_layout
|
337 |
-
$list_style_type
|
338 |
-
$list_style_color
|
339 |
-
$menu_link_text_color
|
340 |
-
$menu_link_text_color_hover
|
341 |
-
$menu_space_between
|
342 |
-
$menu_space_between_tablet
|
343 |
-
$menu_space_between_phone
|
344 |
$menu_space_between_last_edited = $this->props['menu_space_between_last_edited'];
|
345 |
-
$submenu_left_space
|
346 |
-
$submenu_left_space_tablet
|
347 |
-
$submenu_left_space_phone
|
348 |
$submenu_left_space_last_edited = $this->props['submenu_left_space_last_edited'];
|
349 |
-
$header_level
|
350 |
-
|
351 |
-
$menu = self::get_dsm_navmenu(
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
|
|
|
|
356 |
|
357 |
if ( '10px' !== $title_bottom_gap || '' !== $title_bottom_gap_tablet || '' !== $title_bottom_gap_phone ) {
|
358 |
$title_bottom_gap_responsive_active = et_pb_get_responsive_status( $title_bottom_gap_last_edited );
|
@@ -393,56 +396,71 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
393 |
}
|
394 |
|
395 |
if ( '' !== $menu_link_text_color ) {
|
396 |
-
ET_Builder_Element::set_style(
|
397 |
-
|
398 |
-
|
399 |
-
'
|
400 |
-
|
401 |
-
|
402 |
-
|
|
|
|
|
|
|
403 |
}
|
404 |
|
405 |
if ( et_builder_is_hover_enabled( 'menu_link_text_color', $this->props ) ) {
|
406 |
-
ET_Builder_Element::set_style(
|
407 |
-
|
408 |
-
|
409 |
-
'
|
410 |
-
|
411 |
-
|
412 |
-
|
|
|
|
|
|
|
413 |
}
|
414 |
|
415 |
if ( 'disc' !== $list_style_type ) {
|
416 |
-
ET_Builder_Element::set_style(
|
417 |
-
|
418 |
-
|
419 |
-
'
|
420 |
-
|
421 |
-
|
422 |
-
|
|
|
|
|
|
|
423 |
}
|
424 |
|
425 |
if ( '' !== $list_style_color ) {
|
426 |
-
ET_Builder_Element::set_style(
|
427 |
-
|
428 |
-
|
429 |
-
'
|
430 |
-
|
431 |
-
|
432 |
-
|
|
|
|
|
|
|
433 |
}
|
434 |
|
435 |
if ( '' !== $title ) {
|
436 |
-
$title = sprintf(
|
|
|
437 |
et_pb_process_header_level( $header_level, 'h4' ),
|
438 |
$title
|
439 |
);
|
440 |
}
|
441 |
|
442 |
-
$this->add_classname(
|
443 |
-
|
444 |
-
|
445 |
-
|
|
|
|
|
446 |
|
447 |
// Render module content
|
448 |
$output = sprintf(
|
@@ -455,4 +473,4 @@ class DSM_NavMenu extends ET_Builder_Module {
|
|
455 |
}
|
456 |
}
|
457 |
|
458 |
-
new DSM_NavMenu;
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Menu', 'dsm-supreme-modules-for-divi' );
|
16 |
//$this->icon = '';
|
17 |
// Toggle settings
|
18 |
+
$this->settings_modal_toggles = array(
|
19 |
'general' => array(
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Menu', 'dsm-supreme-modules-for-divi' ),
|
23 |
),
|
24 |
'advanced' => array(
|
25 |
'toggles' => array(
|
26 |
+
'menu_style' => esc_html__( 'Menu Style', 'dsm-supreme-modules-for-divi' ),
|
27 |
'submenu_style' => esc_html__( 'Sub Menu Style', 'dsm-supreme-modules-for-divi' ),
|
28 |
),
|
29 |
),
|
32 |
|
33 |
public function get_advanced_fields_config() {
|
34 |
return array(
|
35 |
+
'fonts' => array(
|
36 |
'header' => array(
|
37 |
+
'label' => esc_html__( 'Title', 'dsm-supreme-modules-for-divi' ),
|
38 |
+
'css' => array(
|
39 |
'main' => '%%order_class%% h1.dsm-menu-title, %%order_class%% h2.dsm-menu-title, %%order_class%% h3.dsm-menu-title, %%order_class%% h4.dsm-menu-title, %%order_class%% h5.dsm-menu-title, %%order_class%% h6.dsm-menu-title',
|
40 |
),
|
41 |
+
'font_size' => array(
|
42 |
+
'default' => '18px',
|
43 |
),
|
44 |
'line_height' => array(
|
45 |
'default' => '1em',
|
47 |
'letter_spacing' => array(
|
48 |
'default' => '0px',
|
49 |
),
|
50 |
+
'header_level' => array(
|
51 |
'default' => 'h4',
|
52 |
),
|
53 |
),
|
54 |
+
'menu' => array(
|
55 |
+
'label' => esc_html__( 'Menu', 'dsm-supreme-modules-for-divi' ),
|
56 |
+
'css' => array(
|
57 |
+
'main' => '%%order_class%% ul.dsm-menu li a',
|
58 |
+
'plugin_main' => '%%order_class%% ul.dsm-menu li a',
|
59 |
),
|
60 |
+
'line_height' => array(
|
61 |
'default' => '1em',
|
62 |
),
|
63 |
+
'font_size' => array(
|
64 |
+
'default' => '14px',
|
65 |
'range_settings' => array(
|
66 |
'min' => '12',
|
67 |
'max' => '24',
|
68 |
'step' => '1',
|
69 |
),
|
70 |
),
|
71 |
+
'letter_spacing' => array(
|
72 |
+
'default' => '0px',
|
73 |
'range_settings' => array(
|
74 |
'min' => '0',
|
75 |
'max' => '8',
|
80 |
'hide_text_color' => true,
|
81 |
),
|
82 |
),
|
83 |
+
'text' => array(
|
84 |
'use_background_layout' => true,
|
85 |
+
'options' => array(
|
86 |
'text_orientation' => array(
|
87 |
'default_on_front' => 'left',
|
88 |
),
|
89 |
'background_layout' => array(
|
90 |
'default_on_front' => 'light',
|
91 |
+
'hover' => 'tabs',
|
92 |
),
|
93 |
),
|
94 |
),
|
95 |
+
'margin_padding' => array(
|
96 |
+
'css' => array(
|
97 |
'main' => '%%order_class%%',
|
98 |
),
|
99 |
),
|
100 |
+
'link_options' => false,
|
101 |
+
'button' => false,
|
102 |
);
|
103 |
}
|
104 |
|
105 |
public function get_fields() {
|
106 |
$et_accent_color = et_builder_accent_color();
|
107 |
return array(
|
108 |
+
'title' => array(
|
109 |
'label' => esc_html__( 'Menu Title', 'dsm-supreme-modules-for-divi' ),
|
110 |
'type' => 'text',
|
111 |
'option_category' => 'basic_option',
|
112 |
'description' => esc_html__( 'The title will appear above the menu.', 'dsm-supreme-modules-for-divi' ),
|
113 |
'toggle_slug' => 'main_content',
|
114 |
),
|
115 |
+
'title_bottom_gap' => array(
|
116 |
'label' => esc_html__( 'Bottom Gap', 'dsm-supreme-modules-for-divi' ),
|
117 |
'type' => 'range',
|
118 |
'option_category' => 'layout',
|
121 |
'toggle_slug' => 'header',
|
122 |
'responsive' => true,
|
123 |
'default_unit' => 'px',
|
124 |
+
'default' => '10px',
|
125 |
),
|
126 |
+
'menu_id' => array(
|
127 |
+
'label' => esc_html__( 'Menu', 'dsm-supreme-modules-for-divi' ),
|
128 |
+
'type' => 'select',
|
129 |
+
'option_category' => 'basic_option',
|
130 |
+
'options' => et_builder_get_nav_menus_options(),
|
131 |
+
'description' => sprintf(
|
132 |
'<p class="description">%2$s. <a href="%1$s" target="_blank">%3$s</a>.</p>',
|
133 |
esc_url( admin_url( 'nav-menus.php' ) ),
|
134 |
esc_html__( 'Select a menu that should be used in the module', 'dsm-supreme-modules-for-divi' ),
|
147 |
'toggle_slug' => 'menu',
|
148 |
'hover' => 'tabs',
|
149 |
),
|
150 |
+
'menu_space_between' => array(
|
151 |
'label' => esc_html__( 'Space Between', 'dsm-supreme-modules-for-divi' ),
|
152 |
'type' => 'range',
|
153 |
'option_category' => 'layout',
|
154 |
'mobile_options' => true,
|
155 |
'responsive' => true,
|
156 |
'default_unit' => 'px',
|
157 |
+
'default' => '0px',
|
158 |
+
'tab_slug' => 'advanced',
|
159 |
+
'toggle_slug' => 'menu',
|
160 |
),
|
161 |
+
'menu_layout' => array(
|
162 |
'label' => esc_html__( 'Menu Layout', 'dsm-supreme-modules-for-divi' ),
|
163 |
'type' => 'select',
|
164 |
'option_category' => 'layout',
|
165 |
'options' => array(
|
166 |
+
'vertical' => esc_html__( 'Vertical', 'dsm-supreme-modules-for-divi' ),
|
167 |
),
|
168 |
+
'default' => 'vertical',
|
169 |
'tab_slug' => 'advanced',
|
170 |
'toggle_slug' => 'menu_style',
|
171 |
),
|
172 |
+
'list_style_type' => array(
|
173 |
+
'label' => esc_html__( 'List Style Type', 'dsm-supreme-modules-for-divi' ),
|
174 |
+
'type' => 'select',
|
175 |
+
'option_category' => 'layout',
|
176 |
+
'options' => array(
|
177 |
+
'none' => esc_html__( 'None', 'dsm-supreme-modules-for-divi' ),
|
178 |
+
'disc' => esc_html__( 'Disc', 'dsm-supreme-modules-for-divi' ),
|
179 |
+
'circle' => esc_html__( 'Circle', 'dsm-supreme-modules-for-divi' ),
|
180 |
'decimal' => esc_html__( 'Decimal', 'dsm-supreme-modules-for-divi' ),
|
181 |
+
'square' => esc_html__( 'Square', 'dsm-supreme-modules-for-divi' ),
|
182 |
),
|
183 |
'default_on_front' => 'disc',
|
184 |
+
'tab_slug' => 'advanced',
|
185 |
+
'toggle_slug' => 'menu_style',
|
186 |
+
'show_if' => array(
|
187 |
'menu_layout' => 'vertical',
|
188 |
),
|
189 |
),
|
190 |
+
'list_style_color' => array(
|
191 |
'label' => esc_html__( 'List Style Color', 'dsm-supreme-modules-for-divi' ),
|
192 |
'type' => 'color-alpha',
|
193 |
'custom_color' => true,
|
194 |
+
'tab_slug' => 'advanced',
|
195 |
+
'toggle_slug' => 'menu_style',
|
196 |
+
'show_if_not' => array(
|
197 |
'list_style_type' => 'none',
|
198 |
),
|
199 |
+
'show_if' => array(
|
200 |
'menu_layout' => 'vertical',
|
201 |
),
|
202 |
),
|
203 |
+
'submenu_left_space' => array(
|
204 |
'label' => esc_html__( 'Left Spacing', 'dsm-supreme-modules-for-divi' ),
|
205 |
'type' => 'range',
|
206 |
'option_category' => 'layout',
|
209 |
'toggle_slug' => 'submenu_style',
|
210 |
'responsive' => true,
|
211 |
'default_unit' => 'px',
|
212 |
+
'default' => '20px',
|
213 |
+
'show_if' => array(
|
214 |
'menu_layout' => 'vertical',
|
215 |
),
|
216 |
),
|
217 |
+
'__menu' => array(
|
218 |
'type' => 'computed',
|
219 |
'computed_callback' => array( 'DSM_NavMenu', 'get_dsm_navmenu' ),
|
220 |
'computed_depends_on' => array(
|
241 |
}
|
242 |
|
243 |
/**
|
244 |
+
* Get fullwidth menu markup for fullwidth menu module
|
245 |
+
*
|
246 |
+
* @return string of fullwidth menu markup
|
247 |
+
*/
|
248 |
static function get_dsm_navmenu( $args = array() ) {
|
249 |
$defaults = array(
|
250 |
'list_style_type' => '',
|
251 |
+
'menu_layout' => '',
|
252 |
+
'menu_id' => '',
|
253 |
);
|
254 |
|
255 |
// modify the menu item to include the required data
|
261 |
|
262 |
$menuClass = 'dsm-menu';
|
263 |
|
264 |
+
if ( ! et_is_builder_plugin_active() && 'on' === et_get_option( 'divi_disable_toptier' ) ) {
|
265 |
$menuClass .= ' et_disable_top_tier';
|
266 |
}
|
267 |
$menuClass .= ( '' !== $args['list_style_type'] ? sprintf( ' %s', esc_attr( 'dsm-menu-style-type-' . $args['list_style_type'] ) ) : '' );
|
284 |
|
285 |
$primaryNav = wp_nav_menu( apply_filters( 'dsm_menu_args', $menu_args ) );
|
286 |
|
287 |
+
if ( '' === $primaryNav ) {
|
288 |
$menu .= sprintf(
|
289 |
'<ul class="%1$s">
|
290 |
%2$s',
|
291 |
esc_attr( $menuClass ),
|
292 |
( ! et_is_builder_plugin_active() && 'on' === et_get_option( 'divi_home_link' )
|
293 |
+
? sprintf(
|
294 |
+
'<li%1$s><a href="%2$s">%3$s</a></li>',
|
295 |
( is_home() ? ' class="current_page_item"' : '' ),
|
296 |
esc_url( home_url( '/' ) ),
|
297 |
esc_html__( 'Home', 'dsm-supreme-modules-for-divi' )
|
327 |
}
|
328 |
|
329 |
public function render( $attrs, $content = null, $render_slug ) {
|
330 |
+
$background_layout = $this->props['background_layout'];
|
331 |
+
$title = $this->props['title'];
|
332 |
+
$title_bottom_gap = $this->props['title_bottom_gap'];
|
333 |
+
$title_bottom_gap_tablet = $this->props['title_bottom_gap_tablet'];
|
334 |
+
$title_bottom_gap_phone = $this->props['title_bottom_gap_phone'];
|
335 |
+
$title_bottom_gap_last_edited = $this->props['title_bottom_gap_last_edited'];
|
336 |
+
$menu_id = $this->props['menu_id'];
|
337 |
+
$menu_layout = $this->props['menu_layout'];
|
338 |
+
$list_style_type = $this->props['list_style_type'];
|
339 |
+
$list_style_color = $this->props['list_style_color'];
|
340 |
+
$menu_link_text_color = $this->props['menu_link_text_color'];
|
341 |
+
$menu_link_text_color_hover = $this->get_hover_value( 'menu_link_text_color' );
|
342 |
+
$menu_space_between = $this->props['menu_space_between'];
|
343 |
+
$menu_space_between_tablet = $this->props['menu_space_between_tablet'];
|
344 |
+
$menu_space_between_phone = $this->props['menu_space_between_phone'];
|
345 |
$menu_space_between_last_edited = $this->props['menu_space_between_last_edited'];
|
346 |
+
$submenu_left_space = $this->props['submenu_left_space'];
|
347 |
+
$submenu_left_space_tablet = $this->props['submenu_left_space_tablet'];
|
348 |
+
$submenu_left_space_phone = $this->props['submenu_left_space_phone'];
|
349 |
$submenu_left_space_last_edited = $this->props['submenu_left_space_last_edited'];
|
350 |
+
$header_level = $this->props['header_level'];
|
351 |
+
|
352 |
+
$menu = self::get_dsm_navmenu(
|
353 |
+
array(
|
354 |
+
'menu_id' => $menu_id,
|
355 |
+
'list_style_type' => $list_style_type,
|
356 |
+
'menu_layout' => $menu_layout,
|
357 |
+
)
|
358 |
+
);
|
359 |
|
360 |
if ( '10px' !== $title_bottom_gap || '' !== $title_bottom_gap_tablet || '' !== $title_bottom_gap_phone ) {
|
361 |
$title_bottom_gap_responsive_active = et_pb_get_responsive_status( $title_bottom_gap_last_edited );
|
396 |
}
|
397 |
|
398 |
if ( '' !== $menu_link_text_color ) {
|
399 |
+
ET_Builder_Element::set_style(
|
400 |
+
$render_slug,
|
401 |
+
array(
|
402 |
+
'selector' => '%%order_class%% ul.dsm-menu li a',
|
403 |
+
'declaration' => sprintf(
|
404 |
+
'color: %1$s;',
|
405 |
+
esc_html( $menu_link_text_color )
|
406 |
+
),
|
407 |
+
)
|
408 |
+
);
|
409 |
}
|
410 |
|
411 |
if ( et_builder_is_hover_enabled( 'menu_link_text_color', $this->props ) ) {
|
412 |
+
ET_Builder_Element::set_style(
|
413 |
+
$render_slug,
|
414 |
+
array(
|
415 |
+
'selector' => '%%order_class%% ul.dsm-menu li a:hover',
|
416 |
+
'declaration' => sprintf(
|
417 |
+
'color: %1$s;',
|
418 |
+
esc_html( $menu_link_text_color_hover )
|
419 |
+
),
|
420 |
+
)
|
421 |
+
);
|
422 |
}
|
423 |
|
424 |
if ( 'disc' !== $list_style_type ) {
|
425 |
+
ET_Builder_Element::set_style(
|
426 |
+
$render_slug,
|
427 |
+
array(
|
428 |
+
'selector' => '#et-boc %%order_class%% ul.dsm-menu, %%order_class%% ul.dsm-menu, %%order_class%% ul.dsm-menu .sub-menu',
|
429 |
+
'declaration' => sprintf(
|
430 |
+
'list-style-type: %1$s;',
|
431 |
+
esc_attr( $list_style_type )
|
432 |
+
),
|
433 |
+
)
|
434 |
+
);
|
435 |
}
|
436 |
|
437 |
if ( '' !== $list_style_color ) {
|
438 |
+
ET_Builder_Element::set_style(
|
439 |
+
$render_slug,
|
440 |
+
array(
|
441 |
+
'selector' => '%%order_class%% ul.dsm-menu li',
|
442 |
+
'declaration' => sprintf(
|
443 |
+
'color: %1$s;',
|
444 |
+
esc_html( $list_style_color )
|
445 |
+
),
|
446 |
+
)
|
447 |
+
);
|
448 |
}
|
449 |
|
450 |
if ( '' !== $title ) {
|
451 |
+
$title = sprintf(
|
452 |
+
'<%1$s class="dsm-menu-title et_pb_module_header">%2$s</%1$s>',
|
453 |
et_pb_process_header_level( $header_level, 'h4' ),
|
454 |
$title
|
455 |
);
|
456 |
}
|
457 |
|
458 |
+
$this->add_classname(
|
459 |
+
array(
|
460 |
+
$this->get_text_orientation_classname(),
|
461 |
+
"et_pb_bg_layout_{$background_layout}",
|
462 |
+
)
|
463 |
+
);
|
464 |
|
465 |
// Render module content
|
466 |
$output = sprintf(
|
473 |
}
|
474 |
}
|
475 |
|
476 |
+
new DSM_NavMenu;
|
includes/modules/PerspectiveImage/PerspectiveImage.php
CHANGED
@@ -6,29 +6,29 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
-
'author' => 'Supreme
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
-
$this->name
|
16 |
-
$this->plural
|
17 |
-
$this->icon
|
18 |
|
19 |
$this->settings_modal_toggles = array(
|
20 |
-
'general'
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
23 |
'link' => esc_html__( 'Link', 'dsm-supreme-modules-for-divi' ),
|
24 |
'transform' => esc_html__( 'Transform & Rotation', 'dsm-supreme-modules-for-divi' ),
|
25 |
),
|
26 |
),
|
27 |
-
'advanced'
|
28 |
'toggles' => array(
|
29 |
-
'overlay'
|
30 |
-
'alignment'
|
31 |
-
'width'
|
32 |
'title' => esc_html__( 'Sizing', 'dsm-supreme-modules-for-divi' ),
|
33 |
'priority' => 65,
|
34 |
),
|
@@ -36,7 +36,7 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
36 |
),
|
37 |
'custom_css' => array(
|
38 |
'toggles' => array(
|
39 |
-
'animation'
|
40 |
'title' => esc_html__( 'Animation', 'dsm-supreme-modules-for-divi' ),
|
41 |
'priority' => 90,
|
42 |
),
|
@@ -57,17 +57,17 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
57 |
'important' => array( 'custom_margin' ),
|
58 |
),
|
59 |
),
|
60 |
-
'borders'
|
61 |
'default' => array(
|
62 |
'css' => array(
|
63 |
'main' => array(
|
64 |
-
'border_radii' =>
|
65 |
-
'border_styles' =>
|
66 |
),
|
67 |
),
|
68 |
),
|
69 |
),
|
70 |
-
'box_shadow'
|
71 |
'default' => array(
|
72 |
'css' => array(
|
73 |
'main' => '%%order_class%% .et_pb_image_wrap',
|
@@ -75,23 +75,23 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
75 |
),
|
76 |
),
|
77 |
),
|
78 |
-
'max_width'
|
79 |
'options' => array(
|
80 |
'max_width' => array(
|
81 |
'depends_show_if' => 'off',
|
82 |
),
|
83 |
),
|
84 |
),
|
85 |
-
'fonts'
|
86 |
-
'text'
|
87 |
-
'button'
|
88 |
-
'link_options'
|
89 |
);
|
90 |
}
|
91 |
|
92 |
public function get_fields() {
|
93 |
return array(
|
94 |
-
'src'
|
95 |
'type' => 'upload',
|
96 |
'option_category' => 'basic_option',
|
97 |
'upload_button_text' => esc_attr__( 'Upload an image', 'dsm-supreme-modules-for-divi' ),
|
@@ -105,7 +105,7 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
105 |
'description' => esc_html__( 'Upload your desired image, or type in the URL to the image you would like to display.', 'dsm-supreme-modules-for-divi' ),
|
106 |
'toggle_slug' => 'main_content',
|
107 |
),
|
108 |
-
'alt'
|
109 |
'label' => esc_html__( 'Image Alternative Text', 'dsm-supreme-modules-for-divi' ),
|
110 |
'type' => 'text',
|
111 |
'option_category' => 'basic_option',
|
@@ -117,7 +117,7 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
117 |
'tab_slug' => 'custom_css',
|
118 |
'toggle_slug' => 'attributes',
|
119 |
),
|
120 |
-
'title_text'
|
121 |
'label' => esc_html__( 'Image Title Text', 'dsm-supreme-modules-for-divi' ),
|
122 |
'type' => 'text',
|
123 |
'option_category' => 'basic_option',
|
@@ -129,38 +129,38 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
129 |
'tab_slug' => 'custom_css',
|
130 |
'toggle_slug' => 'attributes',
|
131 |
),
|
132 |
-
'show_in_lightbox'
|
133 |
-
'label'
|
134 |
-
'type'
|
135 |
-
'option_category'
|
136 |
-
'options'
|
137 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
138 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
139 |
),
|
140 |
'default_on_front' => 'off',
|
141 |
-
'affects'
|
142 |
'url',
|
143 |
'url_new_window',
|
144 |
'use_overlay',
|
145 |
'show_lightbox_other_img',
|
146 |
),
|
147 |
-
'toggle_slug'
|
148 |
-
'description'
|
149 |
),
|
150 |
-
'show_lightbox_other_img'
|
151 |
-
'label'
|
152 |
-
'type'
|
153 |
-
'option_category'
|
154 |
-
'options'
|
155 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
156 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
157 |
),
|
158 |
'default_on_front' => 'off',
|
159 |
-
'affects'
|
160 |
'show_lightbox_other_img_src',
|
161 |
),
|
162 |
-
'toggle_slug'
|
163 |
-
'description'
|
164 |
),
|
165 |
'show_lightbox_other_img_src' => array(
|
166 |
'type' => 'upload',
|
@@ -170,9 +170,9 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
170 |
'update_text' => esc_attr__( 'Set As Lightbox Image', 'dsm-supreme-modules-for-divi' ),
|
171 |
'hide_metadata' => true,
|
172 |
'description' => esc_html__( 'Upload your desired image, or type in the URL to the image you would like to display.', 'dsm-supreme-modules-pro-for-divi' ),
|
173 |
-
'toggle_slug'
|
174 |
),
|
175 |
-
'url'
|
176 |
'label' => esc_html__( 'Image Link URL', 'dsm-supreme-modules-for-divi' ),
|
177 |
'type' => 'text',
|
178 |
'option_category' => 'basic_option',
|
@@ -184,175 +184,175 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
184 |
'toggle_slug' => 'link',
|
185 |
//'dynamic_content' => 'url',
|
186 |
),
|
187 |
-
'url_new_window'
|
188 |
-
'label'
|
189 |
-
'type'
|
190 |
-
'option_category'
|
191 |
-
'options'
|
192 |
'off' => esc_html__( 'In The Same Window', 'dsm-supreme-modules-for-divi' ),
|
193 |
'on' => esc_html__( 'In The New Tab', 'dsm-supreme-modules-for-divi' ),
|
194 |
),
|
195 |
'default_on_front' => 'off',
|
196 |
-
'depends_show_if'
|
197 |
-
'toggle_slug'
|
198 |
-
'description'
|
199 |
),
|
200 |
-
'perspective'
|
201 |
-
'label'
|
202 |
-
'type'
|
203 |
-
'option_category'
|
204 |
-
'toggle_slug'
|
205 |
//'mobile_options' => true,
|
206 |
-
'validate_unit'
|
207 |
-
'default'
|
208 |
-
'default_unit'
|
209 |
-
'default_on_front'=> '1000px',
|
210 |
-
'range_settings'
|
211 |
'min' => '0',
|
212 |
'max' => '1500',
|
213 |
'step' => '1',
|
214 |
),
|
215 |
//'responsive' => true,
|
216 |
),
|
217 |
-
'dsm_rotate_y'
|
218 |
-
'label'
|
219 |
-
'type'
|
220 |
-
'option_category'
|
221 |
-
'toggle_slug'
|
222 |
//'mobile_options' => true,
|
223 |
-
'validate_unit'
|
224 |
-
'default'
|
225 |
-
'default_unit'
|
226 |
-
'default_on_front'=> '0deg',
|
227 |
-
'range_settings'
|
228 |
'min' => '-90',
|
229 |
'max' => '90',
|
230 |
'step' => '1',
|
231 |
),
|
232 |
-
'hover'
|
233 |
//'responsive' => true,
|
234 |
),
|
235 |
-
'dsm_rotate_x'
|
236 |
-
'label'
|
237 |
-
'type'
|
238 |
-
'option_category'
|
239 |
-
'toggle_slug'
|
240 |
//'mobile_options' => true,
|
241 |
-
'validate_unit'
|
242 |
-
'default'
|
243 |
-
'default_unit'
|
244 |
-
'default_on_front'=> '0deg',
|
245 |
-
'range_settings'
|
246 |
'min' => '-90',
|
247 |
'max' => '90',
|
248 |
'step' => '1',
|
249 |
),
|
250 |
-
'hover'
|
251 |
//'responsive' => true,
|
252 |
),
|
253 |
-
'dsm_rotate_z'
|
254 |
-
'label'
|
255 |
-
'type'
|
256 |
-
'option_category'
|
257 |
-
'toggle_slug'
|
258 |
//'mobile_options' => true,
|
259 |
-
'validate_unit'
|
260 |
-
'default'
|
261 |
-
'default_unit'
|
262 |
-
'default_on_front'=> '0deg',
|
263 |
-
'range_settings'
|
264 |
'min' => '-90',
|
265 |
'max' => '90',
|
266 |
'step' => '1',
|
267 |
),
|
268 |
-
'hover'
|
269 |
//'responsive' => true,
|
270 |
),
|
271 |
-
'use_overlay'
|
272 |
-
'label'
|
273 |
-
'type'
|
274 |
-
'option_category'
|
275 |
-
'options'
|
276 |
'off' => esc_html__( 'Off', 'dsm-supreme-modules-for-divi' ),
|
277 |
'on' => esc_html__( 'On', 'dsm-supreme-modules-for-divi' ),
|
278 |
),
|
279 |
'default_on_front' => 'off',
|
280 |
-
'affects'
|
281 |
'overlay_icon_color',
|
282 |
'hover_overlay_color',
|
283 |
'hover_icon',
|
284 |
),
|
285 |
-
'depends_show_if'
|
286 |
-
'tab_slug'
|
287 |
-
'toggle_slug'
|
288 |
-
'description'
|
289 |
),
|
290 |
-
'overlay_icon_color'
|
291 |
-
'label'
|
292 |
-
'type'
|
293 |
-
'custom_color'
|
294 |
-
'depends_show_if'
|
295 |
-
'tab_slug'
|
296 |
-
'toggle_slug'
|
297 |
-
'description'
|
298 |
),
|
299 |
-
'hover_overlay_color'
|
300 |
-
'label'
|
301 |
-
'type'
|
302 |
-
'custom_color'
|
303 |
-
'depends_show_if'
|
304 |
-
'tab_slug'
|
305 |
-
'toggle_slug'
|
306 |
-
'description'
|
307 |
),
|
308 |
-
'hover_icon'
|
309 |
-
'label'
|
310 |
-
'type'
|
311 |
-
'option_category'
|
312 |
-
'default'
|
313 |
-
'class'
|
314 |
-
'depends_show_if'
|
315 |
-
'tab_slug'
|
316 |
-
'toggle_slug'
|
317 |
-
'description'
|
318 |
),
|
319 |
-
'align'
|
320 |
-
'label'
|
321 |
-
'type'
|
322 |
-
'option_category'
|
323 |
-
'options'
|
324 |
'default_on_front' => 'left',
|
325 |
-
'tab_slug'
|
326 |
-
'toggle_slug'
|
327 |
-
'description'
|
328 |
-
'options_icon'
|
329 |
),
|
330 |
-
'force_fullwidth'
|
331 |
-
'label'
|
332 |
-
'type'
|
333 |
-
'option_category'
|
334 |
-
'options'
|
335 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
336 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
337 |
),
|
338 |
'default_on_front' => 'off',
|
339 |
-
'tab_slug'
|
340 |
-
'toggle_slug'
|
341 |
-
'affects'
|
342 |
'max_width',
|
343 |
),
|
344 |
),
|
345 |
-
'always_center_on_mobile'
|
346 |
-
'label'
|
347 |
-
'type'
|
348 |
-
'option_category'
|
349 |
-
'options'
|
350 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
351 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
352 |
),
|
353 |
'default_on_front' => 'on',
|
354 |
-
'tab_slug'
|
355 |
-
'toggle_slug'
|
356 |
),
|
357 |
);
|
358 |
}
|
@@ -364,101 +364,119 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
364 |
}
|
365 |
|
366 |
public function render( $attrs, $content = null, $render_slug ) {
|
367 |
-
$src
|
368 |
-
$alt
|
369 |
-
$title_text
|
370 |
-
$url
|
371 |
-
$url_new_window
|
372 |
-
$show_in_lightbox
|
373 |
-
$align
|
374 |
-
$force_fullwidth
|
375 |
-
$always_center_on_mobile
|
376 |
-
$overlay_icon_color
|
377 |
-
$hover_overlay_color
|
378 |
-
$hover_icon
|
379 |
-
$use_overlay
|
380 |
-
$animation_style
|
381 |
-
$show_lightbox_other_img
|
382 |
$show_lightbox_other_img_src = $this->props['show_lightbox_other_img_src'];
|
383 |
-
$perspective
|
384 |
-
$dsm_rotate_y
|
385 |
-
$dsm_rotate_y_hover
|
386 |
-
$dsm_rotate_y__hover_enabled
|
387 |
-
$dsm_rotate_x
|
388 |
-
$dsm_rotate_x_hover
|
389 |
-
$dsm_rotate_x__hover_enabled
|
390 |
-
$dsm_rotate_z
|
391 |
-
$dsm_rotate_z_hover
|
392 |
-
$dsm_rotate_z__hover_enabled
|
393 |
-
|
394 |
-
$hover_transition_duration
|
395 |
-
$hover_transition_delay
|
396 |
$hover_transition_speed_curve = $this->props['hover_transition_speed_curve'];
|
397 |
|
398 |
$video_background = $this->video_background();
|
399 |
$parallax_image_background = $this->get_parallax_image_background();
|
400 |
|
401 |
-
$wrapper_selector
|
402 |
$image_style_hover = '';
|
403 |
|
404 |
// Handle svg image behaviour
|
405 |
$src_pathinfo = pathinfo( $src );
|
406 |
-
$is_src_svg
|
407 |
|
408 |
// overlay can be applied only if image has link or if lightbox enabled
|
409 |
$is_overlay_applied = 'on' === $use_overlay && ( 'on' === $show_in_lightbox || ( 'off' === $show_in_lightbox && '' !== $url ) ) ? 'on' : 'off';
|
410 |
|
411 |
if ( 'on' === $force_fullwidth ) {
|
412 |
-
ET_Builder_Element::set_style(
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
}
|
422 |
|
423 |
if ( ! $this->_is_field_default( 'align', $align ) ) {
|
424 |
-
ET_Builder_Element::set_style(
|
425 |
-
|
426 |
-
|
427 |
-
'
|
428 |
-
|
429 |
-
|
430 |
-
|
|
|
|
|
|
|
431 |
}
|
432 |
|
433 |
if ( 'center' !== $align ) {
|
434 |
-
ET_Builder_Element::set_style(
|
435 |
-
|
436 |
-
|
437 |
-
'
|
438 |
-
|
439 |
-
|
440 |
-
|
|
|
|
|
|
|
441 |
}
|
442 |
|
443 |
if ( 'on' === $is_overlay_applied ) {
|
444 |
if ( '' !== $overlay_icon_color ) {
|
445 |
-
ET_Builder_Element::set_style(
|
446 |
-
|
447 |
-
|
448 |
-
'
|
449 |
-
|
450 |
-
|
451 |
-
|
|
|
|
|
|
|
452 |
}
|
453 |
|
454 |
if ( '' !== $hover_overlay_color ) {
|
455 |
-
ET_Builder_Element::set_style(
|
456 |
-
|
457 |
-
|
458 |
-
'
|
459 |
-
|
460 |
-
|
461 |
-
|
|
|
|
|
|
|
462 |
}
|
463 |
|
464 |
$data_icon = '' !== $hover_icon
|
@@ -477,10 +495,13 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
477 |
|
478 |
// Set display block for svg image to avoid disappearing svg image
|
479 |
if ( $is_src_svg ) {
|
480 |
-
ET_Builder_Element::set_style(
|
481 |
-
|
482 |
-
|
483 |
-
|
|
|
|
|
|
|
484 |
}
|
485 |
|
486 |
$output = sprintf(
|
@@ -492,64 +513,76 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
492 |
);
|
493 |
|
494 |
if ( 'on' === $show_in_lightbox ) {
|
495 |
-
$output = sprintf(
|
|
|
496 |
esc_attr( $src ),
|
497 |
$output,
|
498 |
esc_attr( $alt ),
|
499 |
'on' === $show_lightbox_other_img && '' !== $show_lightbox_other_img_src ? esc_url( $show_lightbox_other_img_src ) : esc_url( $src )
|
500 |
);
|
501 |
-
}
|
502 |
-
$output = sprintf(
|
|
|
503 |
esc_url( $url ),
|
504 |
$output,
|
505 |
( 'on' === $url_new_window ? ' target="_blank"' : '' )
|
506 |
);
|
507 |
}
|
508 |
|
509 |
-
ET_Builder_Element::set_style(
|
510 |
-
|
511 |
-
|
512 |
-
'
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
|
|
|
|
|
|
519 |
|
520 |
if ( et_builder_is_hover_enabled( 'dsm_rotate_y', $this->props ) || et_builder_is_hover_enabled( 'dsm_rotate_x', $this->props ) || et_builder_is_hover_enabled( 'dsm_rotate_z', $this->props ) ) {
|
521 |
-
$image_style_hover = sprintf(
|
522 |
-
|
523 |
-
( et_builder_is_hover_enabled( '
|
524 |
-
( et_builder_is_hover_enabled( '
|
|
|
525 |
esc_attr( $perspective )
|
526 |
);
|
527 |
}
|
528 |
|
529 |
if ( '' !== $dsm_rotate_y_hover || '' !== $dsm_rotate_x_hover || '' !== $dsm_rotate_z_hover ) {
|
530 |
-
ET_Builder_Element::set_style(
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
}
|
544 |
|
545 |
// Module classnames
|
546 |
|
547 |
-
$class =
|
548 |
// Module classnames
|
549 |
if ( ! in_array( $animation_style, array( '', 'none' ) ) ) {
|
550 |
$this->add_classname( 'et-waypoint' );
|
551 |
}
|
552 |
-
|
553 |
if ( 'on' === $is_overlay_applied ) {
|
554 |
$class .= ' et_pb_has_overlay';
|
555 |
}
|
@@ -576,4 +609,4 @@ class DSM_Perspective_Image extends ET_Builder_Module {
|
|
576 |
}
|
577 |
}
|
578 |
|
579 |
-
new DSM_Perspective_Image;
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
+
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
+
$this->name = esc_html__( 'Supreme Image', 'dsm-supreme-modules-for-divi' );
|
16 |
+
$this->plural = esc_html__( 'Supreme Images', 'dsm-supreme-modules-for-divi' );
|
17 |
+
$this->icon = '&';
|
18 |
|
19 |
$this->settings_modal_toggles = array(
|
20 |
+
'general' => array(
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
23 |
'link' => esc_html__( 'Link', 'dsm-supreme-modules-for-divi' ),
|
24 |
'transform' => esc_html__( 'Transform & Rotation', 'dsm-supreme-modules-for-divi' ),
|
25 |
),
|
26 |
),
|
27 |
+
'advanced' => array(
|
28 |
'toggles' => array(
|
29 |
+
'overlay' => esc_html__( 'Overlay', 'dsm-supreme-modules-for-divi' ),
|
30 |
+
'alignment' => esc_html__( 'Alignment', 'dsm-supreme-modules-for-divi' ),
|
31 |
+
'width' => array(
|
32 |
'title' => esc_html__( 'Sizing', 'dsm-supreme-modules-for-divi' ),
|
33 |
'priority' => 65,
|
34 |
),
|
36 |
),
|
37 |
'custom_css' => array(
|
38 |
'toggles' => array(
|
39 |
+
'animation' => array(
|
40 |
'title' => esc_html__( 'Animation', 'dsm-supreme-modules-for-divi' ),
|
41 |
'priority' => 90,
|
42 |
),
|
57 |
'important' => array( 'custom_margin' ),
|
58 |
),
|
59 |
),
|
60 |
+
'borders' => array(
|
61 |
'default' => array(
|
62 |
'css' => array(
|
63 |
'main' => array(
|
64 |
+
'border_radii' => '%%order_class%% .et_pb_image_wrap',
|
65 |
+
'border_styles' => '%%order_class%% .et_pb_image_wrap',
|
66 |
),
|
67 |
),
|
68 |
),
|
69 |
),
|
70 |
+
'box_shadow' => array(
|
71 |
'default' => array(
|
72 |
'css' => array(
|
73 |
'main' => '%%order_class%% .et_pb_image_wrap',
|
75 |
),
|
76 |
),
|
77 |
),
|
78 |
+
'max_width' => array(
|
79 |
'options' => array(
|
80 |
'max_width' => array(
|
81 |
'depends_show_if' => 'off',
|
82 |
),
|
83 |
),
|
84 |
),
|
85 |
+
'fonts' => false,
|
86 |
+
'text' => false,
|
87 |
+
'button' => false,
|
88 |
+
'link_options' => false,
|
89 |
);
|
90 |
}
|
91 |
|
92 |
public function get_fields() {
|
93 |
return array(
|
94 |
+
'src' => array(
|
95 |
'type' => 'upload',
|
96 |
'option_category' => 'basic_option',
|
97 |
'upload_button_text' => esc_attr__( 'Upload an image', 'dsm-supreme-modules-for-divi' ),
|
105 |
'description' => esc_html__( 'Upload your desired image, or type in the URL to the image you would like to display.', 'dsm-supreme-modules-for-divi' ),
|
106 |
'toggle_slug' => 'main_content',
|
107 |
),
|
108 |
+
'alt' => array(
|
109 |
'label' => esc_html__( 'Image Alternative Text', 'dsm-supreme-modules-for-divi' ),
|
110 |
'type' => 'text',
|
111 |
'option_category' => 'basic_option',
|
117 |
'tab_slug' => 'custom_css',
|
118 |
'toggle_slug' => 'attributes',
|
119 |
),
|
120 |
+
'title_text' => array(
|
121 |
'label' => esc_html__( 'Image Title Text', 'dsm-supreme-modules-for-divi' ),
|
122 |
'type' => 'text',
|
123 |
'option_category' => 'basic_option',
|
129 |
'tab_slug' => 'custom_css',
|
130 |
'toggle_slug' => 'attributes',
|
131 |
),
|
132 |
+
'show_in_lightbox' => array(
|
133 |
+
'label' => esc_html__( 'Open in Lightbox', 'dsm-supreme-modules-for-divi' ),
|
134 |
+
'type' => 'yes_no_button',
|
135 |
+
'option_category' => 'configuration',
|
136 |
+
'options' => array(
|
137 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
138 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
139 |
),
|
140 |
'default_on_front' => 'off',
|
141 |
+
'affects' => array(
|
142 |
'url',
|
143 |
'url_new_window',
|
144 |
'use_overlay',
|
145 |
'show_lightbox_other_img',
|
146 |
),
|
147 |
+
'toggle_slug' => 'link',
|
148 |
+
'description' => esc_html__( 'Here you can choose whether or not the image should open in Lightbox. Note: if you select to open the image in Lightbox, url options below will be ignored.', 'dsm-supreme-modules-for-divi' ),
|
149 |
),
|
150 |
+
'show_lightbox_other_img' => array(
|
151 |
+
'label' => esc_html__( 'Use Other Lightbox Image', 'dsm-supreme-modules-pro-for-divi' ),
|
152 |
+
'type' => 'yes_no_button',
|
153 |
+
'option_category' => 'configuration',
|
154 |
+
'options' => array(
|
155 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
156 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
157 |
),
|
158 |
'default_on_front' => 'off',
|
159 |
+
'affects' => array(
|
160 |
'show_lightbox_other_img_src',
|
161 |
),
|
162 |
+
'toggle_slug' => 'link',
|
163 |
+
'description' => esc_html__( 'Here you can choose whether you want to have another image should open in Lightbox.', 'dsm-supreme-modules-pro-for-divi' ),
|
164 |
),
|
165 |
'show_lightbox_other_img_src' => array(
|
166 |
'type' => 'upload',
|
170 |
'update_text' => esc_attr__( 'Set As Lightbox Image', 'dsm-supreme-modules-for-divi' ),
|
171 |
'hide_metadata' => true,
|
172 |
'description' => esc_html__( 'Upload your desired image, or type in the URL to the image you would like to display.', 'dsm-supreme-modules-pro-for-divi' ),
|
173 |
+
'toggle_slug' => 'link',
|
174 |
),
|
175 |
+
'url' => array(
|
176 |
'label' => esc_html__( 'Image Link URL', 'dsm-supreme-modules-for-divi' ),
|
177 |
'type' => 'text',
|
178 |
'option_category' => 'basic_option',
|
184 |
'toggle_slug' => 'link',
|
185 |
//'dynamic_content' => 'url',
|
186 |
),
|
187 |
+
'url_new_window' => array(
|
188 |
+
'label' => esc_html__( 'Image Link Target', 'dsm-supreme-modules-for-divi' ),
|
189 |
+
'type' => 'select',
|
190 |
+
'option_category' => 'configuration',
|
191 |
+
'options' => array(
|
192 |
'off' => esc_html__( 'In The Same Window', 'dsm-supreme-modules-for-divi' ),
|
193 |
'on' => esc_html__( 'In The New Tab', 'dsm-supreme-modules-for-divi' ),
|
194 |
),
|
195 |
'default_on_front' => 'off',
|
196 |
+
'depends_show_if' => 'off',
|
197 |
+
'toggle_slug' => 'link',
|
198 |
+
'description' => esc_html__( 'Here you can choose whether or not your link opens in a new window', 'dsm-supreme-modules-for-divi' ),
|
199 |
),
|
200 |
+
'perspective' => array(
|
201 |
+
'label' => esc_html__( 'Perspective', 'dsm-supreme-modules-for-divi' ),
|
202 |
+
'type' => 'range',
|
203 |
+
'option_category' => 'layout',
|
204 |
+
'toggle_slug' => 'transform',
|
205 |
//'mobile_options' => true,
|
206 |
+
'validate_unit' => true,
|
207 |
+
'default' => '1000px',
|
208 |
+
'default_unit' => 'px',
|
209 |
+
'default_on_front' => '1000px',
|
210 |
+
'range_settings' => array(
|
211 |
'min' => '0',
|
212 |
'max' => '1500',
|
213 |
'step' => '1',
|
214 |
),
|
215 |
//'responsive' => true,
|
216 |
),
|
217 |
+
'dsm_rotate_y' => array(
|
218 |
+
'label' => esc_html__( 'Rotate Y', 'dsm-supreme-modules-for-divi' ),
|
219 |
+
'type' => 'range',
|
220 |
+
'option_category' => 'layout',
|
221 |
+
'toggle_slug' => 'transform',
|
222 |
//'mobile_options' => true,
|
223 |
+
'validate_unit' => true,
|
224 |
+
'default' => '0deg',
|
225 |
+
'default_unit' => 'deg',
|
226 |
+
'default_on_front' => '0deg',
|
227 |
+
'range_settings' => array(
|
228 |
'min' => '-90',
|
229 |
'max' => '90',
|
230 |
'step' => '1',
|
231 |
),
|
232 |
+
'hover' => 'tabs',
|
233 |
//'responsive' => true,
|
234 |
),
|
235 |
+
'dsm_rotate_x' => array(
|
236 |
+
'label' => esc_html__( 'Rotate X', 'dsm-supreme-modules-for-divi' ),
|
237 |
+
'type' => 'range',
|
238 |
+
'option_category' => 'layout',
|
239 |
+
'toggle_slug' => 'transform',
|
240 |
//'mobile_options' => true,
|
241 |
+
'validate_unit' => true,
|
242 |
+
'default' => '0deg',
|
243 |
+
'default_unit' => 'deg',
|
244 |
+
'default_on_front' => '0deg',
|
245 |
+
'range_settings' => array(
|
246 |
'min' => '-90',
|
247 |
'max' => '90',
|
248 |
'step' => '1',
|
249 |
),
|
250 |
+
'hover' => 'tabs',
|
251 |
//'responsive' => true,
|
252 |
),
|
253 |
+
'dsm_rotate_z' => array(
|
254 |
+
'label' => esc_html__( 'Rotate Z', 'dsm-supreme-modules-for-divi' ),
|
255 |
+
'type' => 'range',
|
256 |
+
'option_category' => 'layout',
|
257 |
+
'toggle_slug' => 'transform',
|
258 |
//'mobile_options' => true,
|
259 |
+
'validate_unit' => true,
|
260 |
+
'default' => '0deg',
|
261 |
+
'default_unit' => 'deg',
|
262 |
+
'default_on_front' => '0deg',
|
263 |
+
'range_settings' => array(
|
264 |
'min' => '-90',
|
265 |
'max' => '90',
|
266 |
'step' => '1',
|
267 |
),
|
268 |
+
'hover' => 'tabs',
|
269 |
//'responsive' => true,
|
270 |
),
|
271 |
+
'use_overlay' => array(
|
272 |
+
'label' => esc_html__( 'Image Overlay', 'dsm-supreme-modules-for-divi' ),
|
273 |
+
'type' => 'yes_no_button',
|
274 |
+
'option_category' => 'layout',
|
275 |
+
'options' => array(
|
276 |
'off' => esc_html__( 'Off', 'dsm-supreme-modules-for-divi' ),
|
277 |
'on' => esc_html__( 'On', 'dsm-supreme-modules-for-divi' ),
|
278 |
),
|
279 |
'default_on_front' => 'off',
|
280 |
+
'affects' => array(
|
281 |
'overlay_icon_color',
|
282 |
'hover_overlay_color',
|
283 |
'hover_icon',
|
284 |
),
|
285 |
+
'depends_show_if' => 'on',
|
286 |
+
'tab_slug' => 'advanced',
|
287 |
+
'toggle_slug' => 'overlay',
|
288 |
+
'description' => esc_html__( 'If enabled, an overlay color and icon will be displayed when a visitors hovers over the image', 'dsm-supreme-modules-for-divi' ),
|
289 |
),
|
290 |
+
'overlay_icon_color' => array(
|
291 |
+
'label' => esc_html__( 'Overlay Icon Color', 'dsm-supreme-modules-for-divi' ),
|
292 |
+
'type' => 'color-alpha',
|
293 |
+
'custom_color' => true,
|
294 |
+
'depends_show_if' => 'on',
|
295 |
+
'tab_slug' => 'advanced',
|
296 |
+
'toggle_slug' => 'overlay',
|
297 |
+
'description' => esc_html__( 'Here you can define a custom color for the overlay icon', 'dsm-supreme-modules-for-divi' ),
|
298 |
),
|
299 |
+
'hover_overlay_color' => array(
|
300 |
+
'label' => esc_html__( 'Hover Overlay Color', 'dsm-supreme-modules-for-divi' ),
|
301 |
+
'type' => 'color-alpha',
|
302 |
+
'custom_color' => true,
|
303 |
+
'depends_show_if' => 'on',
|
304 |
+
'tab_slug' => 'advanced',
|
305 |
+
'toggle_slug' => 'overlay',
|
306 |
+
'description' => esc_html__( 'Here you can define a custom color for the overlay', 'dsm-supreme-modules-for-divi' ),
|
307 |
),
|
308 |
+
'hover_icon' => array(
|
309 |
+
'label' => esc_html__( 'Hover Icon Picker', 'dsm-supreme-modules-for-divi' ),
|
310 |
+
'type' => 'select_icon',
|
311 |
+
'option_category' => 'configuration',
|
312 |
+
'default' => 'P',
|
313 |
+
'class' => array( 'et-pb-font-icon' ),
|
314 |
+
'depends_show_if' => 'on',
|
315 |
+
'tab_slug' => 'advanced',
|
316 |
+
'toggle_slug' => 'overlay',
|
317 |
+
'description' => esc_html__( 'Here you can define a custom icon for the overlay', 'dsm-supreme-modules-for-divi' ),
|
318 |
),
|
319 |
+
'align' => array(
|
320 |
+
'label' => esc_html__( 'Image Alignment', 'dsm-supreme-modules-for-divi' ),
|
321 |
+
'type' => 'text_align',
|
322 |
+
'option_category' => 'layout',
|
323 |
+
'options' => et_builder_get_text_orientation_options( array( 'justified' ) ),
|
324 |
'default_on_front' => 'left',
|
325 |
+
'tab_slug' => 'advanced',
|
326 |
+
'toggle_slug' => 'alignment',
|
327 |
+
'description' => esc_html__( 'Here you can choose the image alignment.', 'dsm-supreme-modules-for-divi' ),
|
328 |
+
'options_icon' => 'module_align',
|
329 |
),
|
330 |
+
'force_fullwidth' => array(
|
331 |
+
'label' => esc_html__( 'Force Fullwidth', 'dsm-supreme-modules-for-divi' ),
|
332 |
+
'type' => 'yes_no_button',
|
333 |
+
'option_category' => 'layout',
|
334 |
+
'options' => array(
|
335 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
336 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
337 |
),
|
338 |
'default_on_front' => 'off',
|
339 |
+
'tab_slug' => 'advanced',
|
340 |
+
'toggle_slug' => 'width',
|
341 |
+
'affects' => array(
|
342 |
'max_width',
|
343 |
),
|
344 |
),
|
345 |
+
'always_center_on_mobile' => array(
|
346 |
+
'label' => esc_html__( 'Always Center Image On Mobile', 'dsm-supreme-modules-for-divi' ),
|
347 |
+
'type' => 'yes_no_button',
|
348 |
+
'option_category' => 'layout',
|
349 |
+
'options' => array(
|
350 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
351 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
352 |
),
|
353 |
'default_on_front' => 'on',
|
354 |
+
'tab_slug' => 'advanced',
|
355 |
+
'toggle_slug' => 'alignment',
|
356 |
),
|
357 |
);
|
358 |
}
|
364 |
}
|
365 |
|
366 |
public function render( $attrs, $content = null, $render_slug ) {
|
367 |
+
$src = $this->props['src'];
|
368 |
+
$alt = $this->props['alt'];
|
369 |
+
$title_text = $this->props['title_text'];
|
370 |
+
$url = $this->props['url'];
|
371 |
+
$url_new_window = $this->props['url_new_window'];
|
372 |
+
$show_in_lightbox = $this->props['show_in_lightbox'];
|
373 |
+
$align = $this->get_alignment();
|
374 |
+
$force_fullwidth = $this->props['force_fullwidth'];
|
375 |
+
$always_center_on_mobile = $this->props['always_center_on_mobile'];
|
376 |
+
$overlay_icon_color = $this->props['overlay_icon_color'];
|
377 |
+
$hover_overlay_color = $this->props['hover_overlay_color'];
|
378 |
+
$hover_icon = $this->props['hover_icon'];
|
379 |
+
$use_overlay = $this->props['use_overlay'];
|
380 |
+
$animation_style = $this->props['animation_style'];
|
381 |
+
$show_lightbox_other_img = $this->props['show_lightbox_other_img'];
|
382 |
$show_lightbox_other_img_src = $this->props['show_lightbox_other_img_src'];
|
383 |
+
$perspective = $this->props['perspective'];
|
384 |
+
$dsm_rotate_y = $this->props['dsm_rotate_y'];
|
385 |
+
$dsm_rotate_y_hover = $this->get_hover_value( 'dsm_rotate_y' );
|
386 |
+
$dsm_rotate_y__hover_enabled = et_pb_hover_options()->is_enabled( 'dsm_rotate_y', $this->props );
|
387 |
+
$dsm_rotate_x = $this->props['dsm_rotate_x'];
|
388 |
+
$dsm_rotate_x_hover = $this->get_hover_value( 'dsm_rotate_x' );
|
389 |
+
$dsm_rotate_x__hover_enabled = et_pb_hover_options()->is_enabled( 'dsm_rotate_x', $this->props );
|
390 |
+
$dsm_rotate_z = $this->props['dsm_rotate_z'];
|
391 |
+
$dsm_rotate_z_hover = $this->get_hover_value( 'dsm_rotate_z' );
|
392 |
+
$dsm_rotate_z__hover_enabled = et_pb_hover_options()->is_enabled( 'dsm_rotate_z', $this->props );
|
393 |
+
|
394 |
+
$hover_transition_duration = $this->props['hover_transition_duration'];
|
395 |
+
$hover_transition_delay = $this->props['hover_transition_delay'];
|
396 |
$hover_transition_speed_curve = $this->props['hover_transition_speed_curve'];
|
397 |
|
398 |
$video_background = $this->video_background();
|
399 |
$parallax_image_background = $this->get_parallax_image_background();
|
400 |
|
401 |
+
$wrapper_selector = '%%order_class%% .dsm-perspective-image-wrapper';
|
402 |
$image_style_hover = '';
|
403 |
|
404 |
// Handle svg image behaviour
|
405 |
$src_pathinfo = pathinfo( $src );
|
406 |
+
$is_src_svg = isset( $src_pathinfo['extension'] ) ? 'svg' === $src_pathinfo['extension'] : false;
|
407 |
|
408 |
// overlay can be applied only if image has link or if lightbox enabled
|
409 |
$is_overlay_applied = 'on' === $use_overlay && ( 'on' === $show_in_lightbox || ( 'off' === $show_in_lightbox && '' !== $url ) ) ? 'on' : 'off';
|
410 |
|
411 |
if ( 'on' === $force_fullwidth ) {
|
412 |
+
ET_Builder_Element::set_style(
|
413 |
+
$render_slug,
|
414 |
+
array(
|
415 |
+
'selector' => '%%order_class%%',
|
416 |
+
'declaration' => 'max-width: 100% !important;',
|
417 |
+
)
|
418 |
+
);
|
419 |
+
|
420 |
+
ET_Builder_Element::set_style(
|
421 |
+
$render_slug,
|
422 |
+
array(
|
423 |
+
'selector' => '%%order_class%% .et_pb_image_wrap, %%order_class%% img',
|
424 |
+
'declaration' => 'width: 100%;',
|
425 |
+
)
|
426 |
+
);
|
427 |
}
|
428 |
|
429 |
if ( ! $this->_is_field_default( 'align', $align ) ) {
|
430 |
+
ET_Builder_Element::set_style(
|
431 |
+
$render_slug,
|
432 |
+
array(
|
433 |
+
'selector' => '%%order_class%%',
|
434 |
+
'declaration' => sprintf(
|
435 |
+
'text-align: %1$s;',
|
436 |
+
esc_html( $align )
|
437 |
+
),
|
438 |
+
)
|
439 |
+
);
|
440 |
}
|
441 |
|
442 |
if ( 'center' !== $align ) {
|
443 |
+
ET_Builder_Element::set_style(
|
444 |
+
$render_slug,
|
445 |
+
array(
|
446 |
+
'selector' => '%%order_class%%',
|
447 |
+
'declaration' => sprintf(
|
448 |
+
'margin-%1$s: 0;',
|
449 |
+
esc_html( $align )
|
450 |
+
),
|
451 |
+
)
|
452 |
+
);
|
453 |
}
|
454 |
|
455 |
if ( 'on' === $is_overlay_applied ) {
|
456 |
if ( '' !== $overlay_icon_color ) {
|
457 |
+
ET_Builder_Element::set_style(
|
458 |
+
$render_slug,
|
459 |
+
array(
|
460 |
+
'selector' => '%%order_class%% .et_overlay:before',
|
461 |
+
'declaration' => sprintf(
|
462 |
+
'color: %1$s !important;',
|
463 |
+
esc_html( $overlay_icon_color )
|
464 |
+
),
|
465 |
+
)
|
466 |
+
);
|
467 |
}
|
468 |
|
469 |
if ( '' !== $hover_overlay_color ) {
|
470 |
+
ET_Builder_Element::set_style(
|
471 |
+
$render_slug,
|
472 |
+
array(
|
473 |
+
'selector' => '%%order_class%% .et_overlay',
|
474 |
+
'declaration' => sprintf(
|
475 |
+
'background-color: %1$s;',
|
476 |
+
esc_html( $hover_overlay_color )
|
477 |
+
),
|
478 |
+
)
|
479 |
+
);
|
480 |
}
|
481 |
|
482 |
$data_icon = '' !== $hover_icon
|
495 |
|
496 |
// Set display block for svg image to avoid disappearing svg image
|
497 |
if ( $is_src_svg ) {
|
498 |
+
ET_Builder_Element::set_style(
|
499 |
+
$render_slug,
|
500 |
+
array(
|
501 |
+
'selector' => '%%order_class%% .et_pb_image_wrap',
|
502 |
+
'declaration' => 'display: block;',
|
503 |
+
)
|
504 |
+
);
|
505 |
}
|
506 |
|
507 |
$output = sprintf(
|
513 |
);
|
514 |
|
515 |
if ( 'on' === $show_in_lightbox ) {
|
516 |
+
$output = sprintf(
|
517 |
+
'<a href="%1$s" class="et_pb_lightbox_image" title="%3$s" data-mfp-src="%4$s">%2$s</a>',
|
518 |
esc_attr( $src ),
|
519 |
$output,
|
520 |
esc_attr( $alt ),
|
521 |
'on' === $show_lightbox_other_img && '' !== $show_lightbox_other_img_src ? esc_url( $show_lightbox_other_img_src ) : esc_url( $src )
|
522 |
);
|
523 |
+
} elseif ( '' !== $url ) {
|
524 |
+
$output = sprintf(
|
525 |
+
'<a href="%1$s"%3$s>%2$s</a>',
|
526 |
esc_url( $url ),
|
527 |
$output,
|
528 |
( 'on' === $url_new_window ? ' target="_blank"' : '' )
|
529 |
);
|
530 |
}
|
531 |
|
532 |
+
ET_Builder_Element::set_style(
|
533 |
+
$render_slug,
|
534 |
+
array(
|
535 |
+
'selector' => '%%order_class%% .dsm-perspective-image-wrapper',
|
536 |
+
'declaration' => sprintf(
|
537 |
+
'transform: perspective(%1$s) rotateX(%2$s) rotateY(%3$s) rotateZ(%4$s);',
|
538 |
+
esc_attr( $perspective ),
|
539 |
+
esc_attr( $dsm_rotate_x ),
|
540 |
+
esc_attr( $dsm_rotate_y ),
|
541 |
+
esc_attr( $dsm_rotate_z )
|
542 |
+
),
|
543 |
+
)
|
544 |
+
);
|
545 |
|
546 |
if ( et_builder_is_hover_enabled( 'dsm_rotate_y', $this->props ) || et_builder_is_hover_enabled( 'dsm_rotate_x', $this->props ) || et_builder_is_hover_enabled( 'dsm_rotate_z', $this->props ) ) {
|
547 |
+
$image_style_hover = sprintf(
|
548 |
+
'transform: perspective(%4$s)%1$s%2$s%3$s;',
|
549 |
+
( et_builder_is_hover_enabled( 'dsm_rotate_x', $this->props ) ? esc_attr( " rotateX($dsm_rotate_x_hover)" ) : '' ),
|
550 |
+
( et_builder_is_hover_enabled( 'dsm_rotate_y', $this->props ) ? esc_attr( " rotateY($dsm_rotate_y_hover)" ) : '' ),
|
551 |
+
( et_builder_is_hover_enabled( 'dsm_rotate_z', $this->props ) ? esc_attr( " rotateZ($dsm_rotate_z_hover)" ) : '' ),
|
552 |
esc_attr( $perspective )
|
553 |
);
|
554 |
}
|
555 |
|
556 |
if ( '' !== $dsm_rotate_y_hover || '' !== $dsm_rotate_x_hover || '' !== $dsm_rotate_z_hover ) {
|
557 |
+
ET_Builder_Element::set_style(
|
558 |
+
$render_slug,
|
559 |
+
array(
|
560 |
+
'selector' => $this->add_hover_to_order_class( $wrapper_selector ),
|
561 |
+
'declaration' => $image_style_hover,
|
562 |
+
)
|
563 |
+
);
|
564 |
+
ET_Builder_Element::set_style(
|
565 |
+
$render_slug,
|
566 |
+
array(
|
567 |
+
'selector' => '%%order_class%% .dsm-perspective-image-wrapper',
|
568 |
+
'declaration' => sprintf(
|
569 |
+
'transition: transform %1$s %3$s %2$s;',
|
570 |
+
esc_attr( $hover_transition_duration ),
|
571 |
+
esc_attr( $hover_transition_delay ),
|
572 |
+
esc_attr( $hover_transition_speed_curve )
|
573 |
+
),
|
574 |
+
)
|
575 |
+
);
|
576 |
}
|
577 |
|
578 |
// Module classnames
|
579 |
|
580 |
+
$class = 'dsm-perspective-image-wrapper';
|
581 |
// Module classnames
|
582 |
if ( ! in_array( $animation_style, array( '', 'none' ) ) ) {
|
583 |
$this->add_classname( 'et-waypoint' );
|
584 |
}
|
585 |
+
|
586 |
if ( 'on' === $is_overlay_applied ) {
|
587 |
$class .= ' et_pb_has_overlay';
|
588 |
}
|
609 |
}
|
610 |
}
|
611 |
|
612 |
+
new DSM_Perspective_Image;
|
includes/modules/PriceList/PriceList.php
CHANGED
@@ -7,16 +7,16 @@ class DSM_PriceList extends ET_Builder_Module {
|
|
7 |
public $child_slug = 'dsm_pricelist_child';
|
8 |
|
9 |
protected $module_credits = array(
|
10 |
-
'module_uri' => 'https://
|
11 |
'author' => 'Divi Supreme',
|
12 |
-
'author_uri' => 'https://
|
13 |
);
|
14 |
|
15 |
public function init() {
|
16 |
$this->name = esc_html__( 'Supreme Price List', 'dsm-supreme-modules-for-divi' );
|
17 |
-
$this->icon
|
18 |
// Toggle settings
|
19 |
-
$this->settings_modal_toggles
|
20 |
'general' => array(
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
@@ -24,11 +24,11 @@ class DSM_PriceList extends ET_Builder_Module {
|
|
24 |
),
|
25 |
'advanced' => array(
|
26 |
'toggles' => array(
|
27 |
-
'separator'
|
28 |
'title' => esc_html__( 'Separator', 'dsm-supreme-modules-for-divi' ),
|
29 |
'priority' => 70,
|
30 |
),
|
31 |
-
'image'
|
32 |
'title' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
33 |
'priority' => 69,
|
34 |
),
|
@@ -40,99 +40,99 @@ class DSM_PriceList extends ET_Builder_Module {
|
|
40 |
public function get_advanced_fields_config() {
|
41 |
return array(
|
42 |
'fonts' => array(
|
43 |
-
'header'
|
44 |
-
'label'
|
45 |
-
'css'
|
46 |
'main' => '%%order_class%% .dsm-pricelist-title',
|
47 |
),
|
48 |
-
'font_size'
|
49 |
-
'default'
|
50 |
),
|
51 |
-
'line_height'
|
52 |
'default' => '1em',
|
53 |
),
|
54 |
-
'letter_spacing'
|
55 |
'default' => '0px',
|
56 |
),
|
57 |
'hide_header_level' => true,
|
58 |
-
'hide_text_align'
|
59 |
),
|
60 |
'content' => array(
|
61 |
-
'label'
|
62 |
-
'css'
|
63 |
'main' => '%%order_class%% .dsm-pricelist-description',
|
64 |
),
|
65 |
-
'font_size'
|
66 |
-
'default'
|
67 |
),
|
68 |
-
'line_height'
|
69 |
'default' => '1em',
|
70 |
),
|
71 |
-
'letter_spacing'
|
72 |
'default' => '0px',
|
73 |
),
|
74 |
'hide_text_align' => true,
|
75 |
),
|
76 |
-
'price'
|
77 |
-
'label'
|
78 |
-
'css'
|
79 |
'main' => '%%order_class%% .dsm-pricelist-price',
|
80 |
),
|
81 |
-
'font_size'
|
82 |
-
'default'
|
83 |
),
|
84 |
-
'line_height'
|
85 |
'default' => '1em',
|
86 |
),
|
87 |
-
'letter_spacing'
|
88 |
'default' => '0px',
|
89 |
),
|
90 |
'hide_text_align' => true,
|
91 |
),
|
92 |
),
|
93 |
'text' => array(
|
94 |
-
'use_text_orientation'
|
95 |
'use_background_layout' => false,
|
96 |
-
'css'
|
97 |
'text_shadow' => '%%order_class%% .dsm_pricelist_child',
|
98 |
),
|
99 |
),
|
100 |
-
'borders'
|
101 |
'default' => array(
|
102 |
'css' => array(
|
103 |
'main' => array(
|
104 |
-
'border_radii' =>
|
105 |
-
'border_styles' =>
|
106 |
),
|
107 |
),
|
108 |
),
|
109 |
'image' => array(
|
110 |
-
'css'
|
111 |
'main' => array(
|
112 |
-
'border_radii'
|
113 |
-
'border_styles' =>
|
114 |
-
)
|
115 |
),
|
116 |
-
'label_prefix'
|
117 |
-
'tab_slug'
|
118 |
-
'toggle_slug'
|
119 |
),
|
120 |
),
|
121 |
-
'box_shadow'
|
122 |
-
'default'
|
123 |
-
'css'
|
124 |
'main' => '%%order_class%%',
|
125 |
),
|
126 |
),
|
127 |
'image' => array(
|
128 |
-
'label'
|
129 |
-
'option_category'
|
130 |
'tab_slug' => 'advanced',
|
131 |
'toggle_slug' => 'image',
|
132 |
-
'css'
|
133 |
'main' => '%%order_class%% .dsm-pricelist-image img',
|
134 |
),
|
135 |
-
'default_on_fronts'
|
136 |
'color' => '',
|
137 |
'position' => '',
|
138 |
),
|
@@ -148,140 +148,140 @@ class DSM_PriceList extends ET_Builder_Module {
|
|
148 |
'type' => 'select',
|
149 |
'option_category' => 'layout',
|
150 |
'options' => array(
|
151 |
-
'flex-start'
|
152 |
-
'center'
|
153 |
-
'flex-end'
|
154 |
),
|
155 |
-
'default'
|
156 |
'tab_slug' => 'advanced',
|
157 |
'toggle_slug' => 'text',
|
158 |
'description' => esc_html__( 'This setting determines the vertical alignment of your content. Your content can either be align to the top, vertically centered, or aligned to the bottom.', 'dsm-supreme-modules-for-divi' ),
|
159 |
),
|
160 |
-
'item_bottom_gap'
|
161 |
-
'label'
|
162 |
-
'type'
|
163 |
-
'option_category'
|
164 |
-
'default'
|
165 |
'default_on_front' => '25px',
|
166 |
-
'default_unit'
|
167 |
-
'range_settings'
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
),
|
172 |
-
'tab_slug'
|
173 |
-
'toggle_slug'
|
174 |
-
'mobile_options'
|
175 |
-
'allow_empty'
|
176 |
-
'responsive'
|
177 |
),
|
178 |
-
'separator_style'
|
179 |
'label' => esc_html__( 'Style', 'dsm-supreme-modules-for-divi' ),
|
180 |
'type' => 'select',
|
181 |
'option_category' => 'configuration',
|
182 |
'default' => 'dotted',
|
183 |
'options' => et_divi_divider_style_choices(),
|
184 |
-
'tab_slug'
|
185 |
'toggle_slug' => 'separator',
|
186 |
),
|
187 |
-
'separator_weight'
|
188 |
-
'label'
|
189 |
-
'type'
|
190 |
-
'option_category'
|
191 |
-
'default'
|
192 |
'default_on_front' => '2px',
|
193 |
-
'default_unit'
|
194 |
-
'range_settings'
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
),
|
199 |
-
'tab_slug'
|
200 |
-
'toggle_slug'
|
201 |
),
|
202 |
-
'separator_color'
|
203 |
-
'default'
|
204 |
-
'label'
|
205 |
-
'type'
|
206 |
-
'description'
|
207 |
-
'tab_slug'
|
208 |
-
'toggle_slug'
|
209 |
),
|
210 |
-
'separator_gap'
|
211 |
-
'label'
|
212 |
-
'type'
|
213 |
-
'option_category'
|
214 |
-
'default'
|
215 |
'default_on_front' => '10px',
|
216 |
-
'default_unit'
|
217 |
-
'range_settings'
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
),
|
222 |
-
'tab_slug'
|
223 |
-
'toggle_slug'
|
224 |
),
|
225 |
-
'image_max_width'
|
226 |
-
'label'
|
227 |
-
'type'
|
228 |
-
'option_category'
|
229 |
-
'tab_slug'
|
230 |
-
'toggle_slug'
|
231 |
-
'mobile_options'
|
232 |
-
'validate_unit'
|
233 |
-
'depends_show_if'
|
234 |
-
'default'
|
235 |
-
'default_unit'
|
236 |
-
'default_on_front'=> '',
|
237 |
-
'allow_empty'
|
238 |
-
'range_settings'
|
239 |
'min' => '0',
|
240 |
'max' => '50',
|
241 |
'step' => '1',
|
242 |
),
|
243 |
-
'responsive'
|
244 |
),
|
245 |
-
'image_spacing'
|
246 |
-
'label'
|
247 |
-
'type'
|
248 |
-
'option_category'
|
249 |
-
'tab_slug'
|
250 |
-
'toggle_slug'
|
251 |
-
'mobile_options'
|
252 |
-
'validate_unit'
|
253 |
-
'default'
|
254 |
-
'default_unit'
|
255 |
-
'default_on_front'=> '',
|
256 |
-
'allow_empty'
|
257 |
-
'range_settings'
|
258 |
'min' => '0',
|
259 |
'max' => '50',
|
260 |
'step' => '1',
|
261 |
),
|
262 |
-
'responsive'
|
263 |
),
|
264 |
);
|
265 |
}
|
266 |
|
267 |
public function render( $attrs, $content = null, $render_slug ) {
|
268 |
-
$separator_style
|
269 |
-
$separator_weight
|
270 |
-
$separator_color
|
271 |
-
$separator_gap
|
272 |
-
$item_bottom_gap
|
273 |
$item_bottom_gap_tablet = $this->props['item_bottom_gap_tablet'];
|
274 |
$item_bottom_gap_phone = $this->props['item_bottom_gap_phone'];
|
275 |
$item_bottom_gap_last_edited = $this->props['item_bottom_gap_last_edited'];
|
276 |
-
$content_orientation
|
277 |
$image_max_width = $this->props['image_max_width'];
|
278 |
$image_max_width_tablet = $this->props['image_max_width_tablet'];
|
279 |
$image_max_width_phone = $this->props['image_max_width_phone'];
|
280 |
$image_max_width_last_edited = $this->props['image_max_width_last_edited'];
|
281 |
-
$image_spacing
|
282 |
-
$image_spacing_tablet
|
283 |
-
$image_spacing_phone
|
284 |
-
$image_spacing_last_edited
|
285 |
|
286 |
if ( '25px' !== $item_bottom_gap_tablet || '' !== $item_bottom_gap_phone || '' !== $item_bottom_gap ) {
|
287 |
$item_bottom_gap_responsive_active = et_pb_get_responsive_status( $item_bottom_gap_last_edited );
|
@@ -320,53 +320,68 @@ class DSM_PriceList extends ET_Builder_Module {
|
|
320 |
}
|
321 |
|
322 |
if ( 'dotted' !== $separator_style ) {
|
323 |
-
ET_Builder_Element::set_style(
|
324 |
-
|
325 |
-
|
326 |
-
'
|
327 |
-
|
328 |
-
|
329 |
-
|
|
|
|
|
|
|
330 |
}
|
331 |
|
332 |
if ( '2px' !== $separator_weight ) {
|
333 |
-
ET_Builder_Element::set_style(
|
334 |
-
|
335 |
-
|
336 |
-
'
|
337 |
-
|
338 |
-
|
339 |
-
|
|
|
|
|
|
|
340 |
}
|
341 |
|
342 |
if ( '' !== $separator_color ) {
|
343 |
-
ET_Builder_Element::set_style(
|
344 |
-
|
345 |
-
|
346 |
-
'
|
347 |
-
|
348 |
-
|
349 |
-
|
|
|
|
|
|
|
350 |
}
|
351 |
|
352 |
if ( '10px' !== $separator_gap ) {
|
353 |
-
ET_Builder_Element::set_style(
|
354 |
-
|
355 |
-
|
356 |
-
'
|
357 |
-
|
358 |
-
|
359 |
-
|
|
|
|
|
|
|
360 |
}
|
361 |
|
362 |
if ( 'flex-start' !== $content_orientation ) {
|
363 |
-
ET_Builder_Element::set_style(
|
364 |
-
|
365 |
-
|
366 |
-
'
|
367 |
-
|
368 |
-
|
369 |
-
|
|
|
|
|
|
|
370 |
}
|
371 |
|
372 |
// Render module content
|
7 |
public $child_slug = 'dsm_pricelist_child';
|
8 |
|
9 |
protected $module_credits = array(
|
10 |
+
'module_uri' => 'https://divsupreme.com/',
|
11 |
'author' => 'Divi Supreme',
|
12 |
+
'author_uri' => 'https://divisupreme.com/',
|
13 |
);
|
14 |
|
15 |
public function init() {
|
16 |
$this->name = esc_html__( 'Supreme Price List', 'dsm-supreme-modules-for-divi' );
|
17 |
+
$this->icon = '(';
|
18 |
// Toggle settings
|
19 |
+
$this->settings_modal_toggles = array(
|
20 |
'general' => array(
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
24 |
),
|
25 |
'advanced' => array(
|
26 |
'toggles' => array(
|
27 |
+
'separator' => array(
|
28 |
'title' => esc_html__( 'Separator', 'dsm-supreme-modules-for-divi' ),
|
29 |
'priority' => 70,
|
30 |
),
|
31 |
+
'image' => array(
|
32 |
'title' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
33 |
'priority' => 69,
|
34 |
),
|
40 |
public function get_advanced_fields_config() {
|
41 |
return array(
|
42 |
'fonts' => array(
|
43 |
+
'header' => array(
|
44 |
+
'label' => esc_html__( 'Title', 'dsm-supreme-modules-for-divi' ),
|
45 |
+
'css' => array(
|
46 |
'main' => '%%order_class%% .dsm-pricelist-title',
|
47 |
),
|
48 |
+
'font_size' => array(
|
49 |
+
'default' => '26px',
|
50 |
),
|
51 |
+
'line_height' => array(
|
52 |
'default' => '1em',
|
53 |
),
|
54 |
+
'letter_spacing' => array(
|
55 |
'default' => '0px',
|
56 |
),
|
57 |
'hide_header_level' => true,
|
58 |
+
'hide_text_align' => true,
|
59 |
),
|
60 |
'content' => array(
|
61 |
+
'label' => esc_html__( 'Description', 'dsm-supreme-modules-for-divi' ),
|
62 |
+
'css' => array(
|
63 |
'main' => '%%order_class%% .dsm-pricelist-description',
|
64 |
),
|
65 |
+
'font_size' => array(
|
66 |
+
'default' => '14px',
|
67 |
),
|
68 |
+
'line_height' => array(
|
69 |
'default' => '1em',
|
70 |
),
|
71 |
+
'letter_spacing' => array(
|
72 |
'default' => '0px',
|
73 |
),
|
74 |
'hide_text_align' => true,
|
75 |
),
|
76 |
+
'price' => array(
|
77 |
+
'label' => esc_html__( 'Price', 'dsm-supreme-modules-for-divi' ),
|
78 |
+
'css' => array(
|
79 |
'main' => '%%order_class%% .dsm-pricelist-price',
|
80 |
),
|
81 |
+
'font_size' => array(
|
82 |
+
'default' => '18px',
|
83 |
),
|
84 |
+
'line_height' => array(
|
85 |
'default' => '1em',
|
86 |
),
|
87 |
+
'letter_spacing' => array(
|
88 |
'default' => '0px',
|
89 |
),
|
90 |
'hide_text_align' => true,
|
91 |
),
|
92 |
),
|
93 |
'text' => array(
|
94 |
+
'use_text_orientation' => false,
|
95 |
'use_background_layout' => false,
|
96 |
+
'css' => array(
|
97 |
'text_shadow' => '%%order_class%% .dsm_pricelist_child',
|
98 |
),
|
99 |
),
|
100 |
+
'borders' => array(
|
101 |
'default' => array(
|
102 |
'css' => array(
|
103 |
'main' => array(
|
104 |
+
'border_radii' => '%%order_class%%',
|
105 |
+
'border_styles' => '%%order_class%%',
|
106 |
),
|
107 |
),
|
108 |
),
|
109 |
'image' => array(
|
110 |
+
'css' => array(
|
111 |
'main' => array(
|
112 |
+
'border_radii' => '%%order_class%% .dsm-pricelist-image img',
|
113 |
+
'border_styles' => '%%order_class%% .dsm-pricelist-image img',
|
114 |
+
),
|
115 |
),
|
116 |
+
'label_prefix' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
117 |
+
'tab_slug' => 'advanced',
|
118 |
+
'toggle_slug' => 'image',
|
119 |
),
|
120 |
),
|
121 |
+
'box_shadow' => array(
|
122 |
+
'default' => array(
|
123 |
+
'css' => array(
|
124 |
'main' => '%%order_class%%',
|
125 |
),
|
126 |
),
|
127 |
'image' => array(
|
128 |
+
'label' => esc_html__( 'Image Box Shadow', 'dsm-supreme-modules-for-divi' ),
|
129 |
+
'option_category' => 'layout',
|
130 |
'tab_slug' => 'advanced',
|
131 |
'toggle_slug' => 'image',
|
132 |
+
'css' => array(
|
133 |
'main' => '%%order_class%% .dsm-pricelist-image img',
|
134 |
),
|
135 |
+
'default_on_fronts' => array(
|
136 |
'color' => '',
|
137 |
'position' => '',
|
138 |
),
|
148 |
'type' => 'select',
|
149 |
'option_category' => 'layout',
|
150 |
'options' => array(
|
151 |
+
'flex-start' => esc_html__( 'Top', 'dsm-supreme-modules-for-divi' ),
|
152 |
+
'center' => esc_html__( 'Center', 'dsm-supreme-modules-for-divi' ),
|
153 |
+
'flex-end' => esc_html__( 'Bottom', 'dsm-supreme-modules-for-divi' ),
|
154 |
),
|
155 |
+
'default' => 'flex-start',
|
156 |
'tab_slug' => 'advanced',
|
157 |
'toggle_slug' => 'text',
|
158 |
'description' => esc_html__( 'This setting determines the vertical alignment of your content. Your content can either be align to the top, vertically centered, or aligned to the bottom.', 'dsm-supreme-modules-for-divi' ),
|
159 |
),
|
160 |
+
'item_bottom_gap' => array(
|
161 |
+
'label' => esc_html__( 'Item Bottom Spacing', 'dsm-supreme-modules-for-divi' ),
|
162 |
+
'type' => 'range',
|
163 |
+
'option_category' => 'configuration',
|
164 |
+
'default' => '25px',
|
165 |
'default_on_front' => '25px',
|
166 |
+
'default_unit' => 'px',
|
167 |
+
'range_settings' => array(
|
168 |
+
'min' => '0',
|
169 |
+
'max' => '60',
|
170 |
+
'step' => '1',
|
171 |
),
|
172 |
+
'tab_slug' => 'advanced',
|
173 |
+
'toggle_slug' => 'width',
|
174 |
+
'mobile_options' => true,
|
175 |
+
'allow_empty' => true,
|
176 |
+
'responsive' => true,
|
177 |
),
|
178 |
+
'separator_style' => array(
|
179 |
'label' => esc_html__( 'Style', 'dsm-supreme-modules-for-divi' ),
|
180 |
'type' => 'select',
|
181 |
'option_category' => 'configuration',
|
182 |
'default' => 'dotted',
|
183 |
'options' => et_divi_divider_style_choices(),
|
184 |
+
'tab_slug' => 'advanced',
|
185 |
'toggle_slug' => 'separator',
|
186 |
),
|
187 |
+
'separator_weight' => array(
|
188 |
+
'label' => esc_html__( 'Weight', 'dsm-supreme-modules-for-divi' ),
|
189 |
+
'type' => 'range',
|
190 |
+
'option_category' => 'configuration',
|
191 |
+
'default' => '2px',
|
192 |
'default_on_front' => '2px',
|
193 |
+
'default_unit' => 'px',
|
194 |
+
'range_settings' => array(
|
195 |
+
'min' => '0',
|
196 |
+
'max' => '10',
|
197 |
+
'step' => '1',
|
198 |
),
|
199 |
+
'tab_slug' => 'advanced',
|
200 |
+
'toggle_slug' => 'separator',
|
201 |
),
|
202 |
+
'separator_color' => array(
|
203 |
+
'default' => '#333',
|
204 |
+
'label' => esc_html__( 'Color', 'dsm-supreme-modules-for-divi' ),
|
205 |
+
'type' => 'color-alpha',
|
206 |
+
'description' => esc_html__( 'Here you can define a custom color for your separator.', 'dsm-supreme-modules-for-divi' ),
|
207 |
+
'tab_slug' => 'advanced',
|
208 |
+
'toggle_slug' => 'separator',
|
209 |
),
|
210 |
+
'separator_gap' => array(
|
211 |
+
'label' => esc_html__( 'Gap Spacing', 'dsm-supreme-modules-for-divi' ),
|
212 |
+
'type' => 'range',
|
213 |
+
'option_category' => 'configuration',
|
214 |
+
'default' => '10px',
|
215 |
'default_on_front' => '10px',
|
216 |
+
'default_unit' => 'px',
|
217 |
+
'range_settings' => array(
|
218 |
+
'min' => '0',
|
219 |
+
'max' => '40',
|
220 |
+
'step' => '1',
|
221 |
),
|
222 |
+
'tab_slug' => 'advanced',
|
223 |
+
'toggle_slug' => 'separator',
|
224 |
),
|
225 |
+
'image_max_width' => array(
|
226 |
+
'label' => esc_html__( 'Image Width', 'dsm-supreme-modules-for-divi' ),
|
227 |
+
'type' => 'range',
|
228 |
+
'option_category' => 'layout',
|
229 |
+
'tab_slug' => 'advanced',
|
230 |
+
'toggle_slug' => 'image',
|
231 |
+
'mobile_options' => true,
|
232 |
+
'validate_unit' => true,
|
233 |
+
'depends_show_if' => 'off',
|
234 |
+
'default' => '50%',
|
235 |
+
'default_unit' => '%',
|
236 |
+
'default_on_front' => '',
|
237 |
+
'allow_empty' => true,
|
238 |
+
'range_settings' => array(
|
239 |
'min' => '0',
|
240 |
'max' => '50',
|
241 |
'step' => '1',
|
242 |
),
|
243 |
+
'responsive' => true,
|
244 |
),
|
245 |
+
'image_spacing' => array(
|
246 |
+
'label' => esc_html__( 'Image Gap Spacing', 'dsm-supreme-modules-for-divi' ),
|
247 |
+
'type' => 'range',
|
248 |
+
'option_category' => 'layout',
|
249 |
+
'tab_slug' => 'advanced',
|
250 |
+
'toggle_slug' => 'image',
|
251 |
+
'mobile_options' => true,
|
252 |
+
'validate_unit' => true,
|
253 |
+
'default' => '25px',
|
254 |
+
'default_unit' => 'px',
|
255 |
+
'default_on_front' => '',
|
256 |
+
'allow_empty' => true,
|
257 |
+
'range_settings' => array(
|
258 |
'min' => '0',
|
259 |
'max' => '50',
|
260 |
'step' => '1',
|
261 |
),
|
262 |
+
'responsive' => true,
|
263 |
),
|
264 |
);
|
265 |
}
|
266 |
|
267 |
public function render( $attrs, $content = null, $render_slug ) {
|
268 |
+
$separator_style = $this->props['separator_style'];
|
269 |
+
$separator_weight = $this->props['separator_weight'];
|
270 |
+
$separator_color = $this->props['separator_color'];
|
271 |
+
$separator_gap = $this->props['separator_gap'];
|
272 |
+
$item_bottom_gap = $this->props['item_bottom_gap'];
|
273 |
$item_bottom_gap_tablet = $this->props['item_bottom_gap_tablet'];
|
274 |
$item_bottom_gap_phone = $this->props['item_bottom_gap_phone'];
|
275 |
$item_bottom_gap_last_edited = $this->props['item_bottom_gap_last_edited'];
|
276 |
+
$content_orientation = $this->props['content_orientation'];
|
277 |
$image_max_width = $this->props['image_max_width'];
|
278 |
$image_max_width_tablet = $this->props['image_max_width_tablet'];
|
279 |
$image_max_width_phone = $this->props['image_max_width_phone'];
|
280 |
$image_max_width_last_edited = $this->props['image_max_width_last_edited'];
|
281 |
+
$image_spacing = $this->props['image_spacing'];
|
282 |
+
$image_spacing_tablet = $this->props['image_spacing_tablet'];
|
283 |
+
$image_spacing_phone = $this->props['image_spacing_phone'];
|
284 |
+
$image_spacing_last_edited = $this->props['image_spacing_last_edited'];
|
285 |
|
286 |
if ( '25px' !== $item_bottom_gap_tablet || '' !== $item_bottom_gap_phone || '' !== $item_bottom_gap ) {
|
287 |
$item_bottom_gap_responsive_active = et_pb_get_responsive_status( $item_bottom_gap_last_edited );
|
320 |
}
|
321 |
|
322 |
if ( 'dotted' !== $separator_style ) {
|
323 |
+
ET_Builder_Element::set_style(
|
324 |
+
$render_slug,
|
325 |
+
array(
|
326 |
+
'selector' => '%%order_class%% .dsm-pricelist-separator',
|
327 |
+
'declaration' => sprintf(
|
328 |
+
'border-bottom-style: %1$s;',
|
329 |
+
esc_attr( $separator_style )
|
330 |
+
),
|
331 |
+
)
|
332 |
+
);
|
333 |
}
|
334 |
|
335 |
if ( '2px' !== $separator_weight ) {
|
336 |
+
ET_Builder_Element::set_style(
|
337 |
+
$render_slug,
|
338 |
+
array(
|
339 |
+
'selector' => '%%order_class%% .dsm-pricelist-separator',
|
340 |
+
'declaration' => sprintf(
|
341 |
+
'border-bottom-width: %1$s;',
|
342 |
+
esc_attr( $separator_weight )
|
343 |
+
),
|
344 |
+
)
|
345 |
+
);
|
346 |
}
|
347 |
|
348 |
if ( '' !== $separator_color ) {
|
349 |
+
ET_Builder_Element::set_style(
|
350 |
+
$render_slug,
|
351 |
+
array(
|
352 |
+
'selector' => '%%order_class%% .dsm-pricelist-separator',
|
353 |
+
'declaration' => sprintf(
|
354 |
+
'border-bottom-color: %1$s;',
|
355 |
+
esc_html( $separator_color )
|
356 |
+
),
|
357 |
+
)
|
358 |
+
);
|
359 |
}
|
360 |
|
361 |
if ( '10px' !== $separator_gap ) {
|
362 |
+
ET_Builder_Element::set_style(
|
363 |
+
$render_slug,
|
364 |
+
array(
|
365 |
+
'selector' => '%%order_class%% .dsm-pricelist-separator',
|
366 |
+
'declaration' => sprintf(
|
367 |
+
'margin-left: %1$s; margin-right: %1$s;',
|
368 |
+
esc_attr( $separator_gap )
|
369 |
+
),
|
370 |
+
)
|
371 |
+
);
|
372 |
}
|
373 |
|
374 |
if ( 'flex-start' !== $content_orientation ) {
|
375 |
+
ET_Builder_Element::set_style(
|
376 |
+
$render_slug,
|
377 |
+
array(
|
378 |
+
'selector' => '%%order_class%% .dsm_pricelist_child>div',
|
379 |
+
'declaration' => sprintf(
|
380 |
+
'align-items: %1$s;',
|
381 |
+
esc_attr( $content_orientation )
|
382 |
+
),
|
383 |
+
)
|
384 |
+
);
|
385 |
}
|
386 |
|
387 |
// Render module content
|
includes/modules/PriceListChild/PriceListChild.php
CHANGED
@@ -2,33 +2,33 @@
|
|
2 |
|
3 |
class DSM_PriceList_Child extends ET_Builder_Module {
|
4 |
|
5 |
-
public $slug
|
6 |
-
public $vb_support
|
7 |
-
public $type
|
8 |
-
public $child_title_var
|
9 |
// If the attribute defined on $this->child_title_var is empty, this attribute will be used instead
|
10 |
public $child_title_fallback_var = 'subtitle';
|
11 |
|
12 |
protected $module_credits = array(
|
13 |
-
'module_uri' => 'https://
|
14 |
'author' => 'Divi Supreme',
|
15 |
-
'author_uri' => 'https://
|
16 |
);
|
17 |
|
18 |
public function init() {
|
19 |
-
$this->name
|
20 |
$this->advanced_setting_title_text = esc_html__( 'Price List Item', 'dsm-supreme-modules-for-divi' );
|
21 |
-
$this->settings_text
|
22 |
|
23 |
$this->settings_modal_toggles = array(
|
24 |
-
'general'
|
25 |
'toggles' => array(
|
26 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
27 |
'link' => esc_html__( 'Link', 'dsm-supreme-modules-for-divi' ),
|
28 |
'image' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
29 |
),
|
30 |
),
|
31 |
-
'advanced'
|
32 |
'toggles' => array(
|
33 |
'icon_settings' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
34 |
'text' => array(
|
@@ -54,57 +54,57 @@ class DSM_PriceList_Child extends ET_Builder_Module {
|
|
54 |
|
55 |
public function get_advanced_fields_config() {
|
56 |
return array(
|
57 |
-
'fonts'
|
58 |
-
'text'
|
59 |
-
'use_text_orientation'
|
60 |
'use_background_layout' => false,
|
61 |
-
'css'
|
62 |
'text_shadow' => '%%order_class%% .dsm_pricelist_item_wrapper',
|
63 |
),
|
64 |
),
|
65 |
-
'borders'
|
66 |
'default' => array(),
|
67 |
'image' => array(
|
68 |
-
'css'
|
69 |
'main' => array(
|
70 |
-
'border_radii'
|
71 |
-
'border_styles' =>
|
72 |
-
)
|
73 |
),
|
74 |
-
'label_prefix'
|
75 |
-
'tab_slug'
|
76 |
-
'toggle_slug'
|
77 |
),
|
78 |
),
|
79 |
-
'box_shadow'
|
80 |
'default' => array(),
|
81 |
'image' => array(
|
82 |
-
'label'
|
83 |
-
'option_category'
|
84 |
'tab_slug' => 'advanced',
|
85 |
'toggle_slug' => 'icon_settings',
|
86 |
-
'css'
|
87 |
'main' => '%%order_class%% .dsm-pricelist-image img',
|
88 |
),
|
89 |
-
'default_on_fronts'
|
90 |
'color' => '',
|
91 |
'position' => '',
|
92 |
),
|
93 |
),
|
94 |
),
|
95 |
-
'button'
|
96 |
-
'filters'
|
97 |
'child_filters_target' => array(
|
98 |
-
'tab_slug'
|
99 |
'toggle_slug' => 'icon_settings',
|
100 |
),
|
101 |
),
|
102 |
-
'icon_settings'
|
103 |
'css' => array(
|
104 |
'main' => '%%order_class%% .dsm-pricelist-image img',
|
105 |
),
|
106 |
),
|
107 |
-
'position_fields'
|
108 |
);
|
109 |
}
|
110 |
|
@@ -112,24 +112,24 @@ class DSM_PriceList_Child extends ET_Builder_Module {
|
|
112 |
$et_accent_color = et_builder_accent_color();
|
113 |
|
114 |
return array(
|
115 |
-
'price'
|
116 |
-
'label'
|
117 |
-
'type'
|
118 |
-
'option_category'
|
119 |
-
'description'
|
120 |
-
'toggle_slug'
|
121 |
-
'default'
|
122 |
'default_on_front' => '$8',
|
123 |
),
|
124 |
-
'title'
|
125 |
-
'label'
|
126 |
-
'type'
|
127 |
-
'option_category'
|
128 |
-
'description'
|
129 |
-
'toggle_slug'
|
130 |
-
'default_on_front'=> 'The title of the first pricing item.',
|
131 |
),
|
132 |
-
'image'
|
133 |
'label' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
134 |
'type' => 'upload',
|
135 |
'option_category' => 'basic_option',
|
@@ -140,7 +140,7 @@ class DSM_PriceList_Child extends ET_Builder_Module {
|
|
140 |
'description' => esc_html__( 'Upload an image to display at the top of your blurb.', 'dsm-supreme-modules-for-divi' ),
|
141 |
'toggle_slug' => 'image',
|
142 |
),
|
143 |
-
'alt'
|
144 |
'label' => esc_html__( 'Image Alt Text', 'dsm-supreme-modules-for-divi' ),
|
145 |
'type' => 'text',
|
146 |
'option_category' => 'basic_option',
|
@@ -149,7 +149,7 @@ class DSM_PriceList_Child extends ET_Builder_Module {
|
|
149 |
'tab_slug' => 'custom_css',
|
150 |
'toggle_slug' => 'attributes',
|
151 |
),
|
152 |
-
'content'
|
153 |
'label' => esc_html__( 'Content', 'dsm-supreme-modules-for-divi' ),
|
154 |
'type' => 'tiny_mce',
|
155 |
'option_category' => 'basic_option',
|
@@ -157,62 +157,62 @@ class DSM_PriceList_Child extends ET_Builder_Module {
|
|
157 |
'toggle_slug' => 'main_content',
|
158 |
),
|
159 |
'image_max_width' => array(
|
160 |
-
'label'
|
161 |
-
'type'
|
162 |
-
'option_category'
|
163 |
-
'tab_slug'
|
164 |
-
'toggle_slug'
|
165 |
-
'mobile_options'
|
166 |
-
'validate_unit'
|
167 |
-
'depends_show_if'
|
168 |
-
'default'
|
169 |
-
'default_unit'
|
170 |
-
'default_on_front'=> '',
|
171 |
-
'allow_empty'
|
172 |
-
'range_settings'
|
173 |
'min' => '0',
|
174 |
'max' => '50',
|
175 |
'step' => '1',
|
176 |
),
|
177 |
-
'responsive'
|
178 |
),
|
179 |
-
'image_spacing'
|
180 |
-
'label'
|
181 |
-
'type'
|
182 |
-
'option_category'
|
183 |
-
'tab_slug'
|
184 |
-
'toggle_slug'
|
185 |
-
'mobile_options'
|
186 |
-
'validate_unit'
|
187 |
-
'default'
|
188 |
-
'default_unit'
|
189 |
-
'default_on_front'=> '',
|
190 |
-
'allow_empty'
|
191 |
-
'range_settings'
|
192 |
'min' => '0',
|
193 |
'max' => '50',
|
194 |
'step' => '1',
|
195 |
),
|
196 |
-
'responsive'
|
197 |
),
|
198 |
-
|
199 |
);
|
200 |
}
|
201 |
|
202 |
public function render( $attrs, $content = null, $render_slug ) {
|
203 |
-
$title
|
204 |
-
$price
|
205 |
-
$image
|
206 |
-
$alt
|
207 |
-
$image_spacing
|
208 |
-
$image_spacing_tablet
|
209 |
-
$image_spacing_phone
|
210 |
-
$image_spacing_last_edited
|
211 |
$image_max_width = $this->props['image_max_width'];
|
212 |
$image_max_width_tablet = $this->props['image_max_width_tablet'];
|
213 |
$image_max_width_phone = $this->props['image_max_width_phone'];
|
214 |
$image_max_width_last_edited = $this->props['image_max_width_last_edited'];
|
215 |
-
|
216 |
if ( '' !== $image_max_width_tablet || '' !== $image_max_width_phone || '' !== $image_max_width ) {
|
217 |
$image_max_width_responsive_active = et_pb_get_responsive_status( $image_max_width_last_edited );
|
218 |
|
@@ -256,7 +256,7 @@ class DSM_PriceList_Child extends ET_Builder_Module {
|
|
256 |
esc_attr( $generate_css_image_filters )
|
257 |
) : '';
|
258 |
|
259 |
-
$video_background
|
260 |
$parallax_image_background = $this->get_parallax_image_background();
|
261 |
|
262 |
// Render module content
|
@@ -286,4 +286,4 @@ class DSM_PriceList_Child extends ET_Builder_Module {
|
|
286 |
}
|
287 |
}
|
288 |
|
289 |
-
new DSM_PriceList_Child;
|
2 |
|
3 |
class DSM_PriceList_Child extends ET_Builder_Module {
|
4 |
|
5 |
+
public $slug = 'dsm_pricelist_child';
|
6 |
+
public $vb_support = 'on';
|
7 |
+
public $type = 'child';
|
8 |
+
public $child_title_var = 'title';
|
9 |
// If the attribute defined on $this->child_title_var is empty, this attribute will be used instead
|
10 |
public $child_title_fallback_var = 'subtitle';
|
11 |
|
12 |
protected $module_credits = array(
|
13 |
+
'module_uri' => 'https://divisupreme.com/',
|
14 |
'author' => 'Divi Supreme',
|
15 |
+
'author_uri' => 'https://divisupreme.com/',
|
16 |
);
|
17 |
|
18 |
public function init() {
|
19 |
+
$this->name = esc_html__( 'Price List Item', 'dsm-supreme-modules-for-divi' );
|
20 |
$this->advanced_setting_title_text = esc_html__( 'Price List Item', 'dsm-supreme-modules-for-divi' );
|
21 |
+
$this->settings_text = esc_html__( 'Price List Item Settings', 'dsm-supreme-modules-for-divi' );
|
22 |
|
23 |
$this->settings_modal_toggles = array(
|
24 |
+
'general' => array(
|
25 |
'toggles' => array(
|
26 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
27 |
'link' => esc_html__( 'Link', 'dsm-supreme-modules-for-divi' ),
|
28 |
'image' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
29 |
),
|
30 |
),
|
31 |
+
'advanced' => array(
|
32 |
'toggles' => array(
|
33 |
'icon_settings' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
34 |
'text' => array(
|
54 |
|
55 |
public function get_advanced_fields_config() {
|
56 |
return array(
|
57 |
+
'fonts' => false,
|
58 |
+
'text' => array(
|
59 |
+
'use_text_orientation' => false,
|
60 |
'use_background_layout' => false,
|
61 |
+
'css' => array(
|
62 |
'text_shadow' => '%%order_class%% .dsm_pricelist_item_wrapper',
|
63 |
),
|
64 |
),
|
65 |
+
'borders' => array(
|
66 |
'default' => array(),
|
67 |
'image' => array(
|
68 |
+
'css' => array(
|
69 |
'main' => array(
|
70 |
+
'border_radii' => '%%order_class%% .dsm-pricelist-image img',
|
71 |
+
'border_styles' => '%%order_class%% .dsm-pricelist-image img',
|
72 |
+
),
|
73 |
),
|
74 |
+
'label_prefix' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
75 |
+
'tab_slug' => 'advanced',
|
76 |
+
'toggle_slug' => 'icon_settings',
|
77 |
),
|
78 |
),
|
79 |
+
'box_shadow' => array(
|
80 |
'default' => array(),
|
81 |
'image' => array(
|
82 |
+
'label' => esc_html__( 'Image Box Shadow', 'dsm-supreme-modules-for-divi' ),
|
83 |
+
'option_category' => 'layout',
|
84 |
'tab_slug' => 'advanced',
|
85 |
'toggle_slug' => 'icon_settings',
|
86 |
+
'css' => array(
|
87 |
'main' => '%%order_class%% .dsm-pricelist-image img',
|
88 |
),
|
89 |
+
'default_on_fronts' => array(
|
90 |
'color' => '',
|
91 |
'position' => '',
|
92 |
),
|
93 |
),
|
94 |
),
|
95 |
+
'button' => false,
|
96 |
+
'filters' => array(
|
97 |
'child_filters_target' => array(
|
98 |
+
'tab_slug' => 'advanced',
|
99 |
'toggle_slug' => 'icon_settings',
|
100 |
),
|
101 |
),
|
102 |
+
'icon_settings' => array(
|
103 |
'css' => array(
|
104 |
'main' => '%%order_class%% .dsm-pricelist-image img',
|
105 |
),
|
106 |
),
|
107 |
+
'position_fields' => false,
|
108 |
);
|
109 |
}
|
110 |
|
112 |
$et_accent_color = et_builder_accent_color();
|
113 |
|
114 |
return array(
|
115 |
+
'price' => array(
|
116 |
+
'label' => esc_html__( 'Price', 'dsm-supreme-modules-for-divi' ),
|
117 |
+
'type' => 'text',
|
118 |
+
'option_category' => 'basic_option',
|
119 |
+
'description' => esc_html__( 'Add the price of the item', 'dsm-supreme-modules-for-divi' ),
|
120 |
+
'toggle_slug' => 'main_content',
|
121 |
+
'default' => '$8',
|
122 |
'default_on_front' => '$8',
|
123 |
),
|
124 |
+
'title' => array(
|
125 |
+
'label' => esc_html__( 'Title', 'dsm-supreme-modules-for-divi' ),
|
126 |
+
'type' => 'text',
|
127 |
+
'option_category' => 'basic_option',
|
128 |
+
'description' => esc_html__( 'Text entered here will appear as title.', 'dsm-supreme-modules-for-divi' ),
|
129 |
+
'toggle_slug' => 'main_content',
|
130 |
+
'default_on_front' => 'The title of the first pricing item.',
|
131 |
),
|
132 |
+
'image' => array(
|
133 |
'label' => esc_html__( 'Image', 'dsm-supreme-modules-for-divi' ),
|
134 |
'type' => 'upload',
|
135 |
'option_category' => 'basic_option',
|
140 |
'description' => esc_html__( 'Upload an image to display at the top of your blurb.', 'dsm-supreme-modules-for-divi' ),
|
141 |
'toggle_slug' => 'image',
|
142 |
),
|
143 |
+
'alt' => array(
|
144 |
'label' => esc_html__( 'Image Alt Text', 'dsm-supreme-modules-for-divi' ),
|
145 |
'type' => 'text',
|
146 |
'option_category' => 'basic_option',
|
149 |
'tab_slug' => 'custom_css',
|
150 |
'toggle_slug' => 'attributes',
|
151 |
),
|
152 |
+
'content' => array(
|
153 |
'label' => esc_html__( 'Content', 'dsm-supreme-modules-for-divi' ),
|
154 |
'type' => 'tiny_mce',
|
155 |
'option_category' => 'basic_option',
|
157 |
'toggle_slug' => 'main_content',
|
158 |
),
|
159 |
'image_max_width' => array(
|
160 |
+
'label' => esc_html__( 'Image Width', 'dsm-supreme-modules-for-divi' ),
|
161 |
+
'type' => 'range',
|
162 |
+
'option_category' => 'layout',
|
163 |
+
'tab_slug' => 'advanced',
|
164 |
+
'toggle_slug' => 'icon_settings',
|
165 |
+
'mobile_options' => true,
|
166 |
+
'validate_unit' => true,
|
167 |
+
'depends_show_if' => 'off',
|
168 |
+
'default' => '50%',
|
169 |
+
'default_unit' => '%',
|
170 |
+
'default_on_front' => '',
|
171 |
+
'allow_empty' => true,
|
172 |
+
'range_settings' => array(
|
173 |
'min' => '0',
|
174 |
'max' => '50',
|
175 |
'step' => '1',
|
176 |
),
|
177 |
+
'responsive' => true,
|
178 |
),
|
179 |
+
'image_spacing' => array(
|
180 |
+
'label' => esc_html__( 'Image Gap Spacing', 'dsm-supreme-modules-for-divi' ),
|
181 |
+
'type' => 'range',
|
182 |
+
'option_category' => 'layout',
|
183 |
+
'tab_slug' => 'advanced',
|
184 |
+
'toggle_slug' => 'icon_settings',
|
185 |
+
'mobile_options' => true,
|
186 |
+
'validate_unit' => true,
|
187 |
+
'default' => '25px',
|
188 |
+
'default_unit' => 'px',
|
189 |
+
'default_on_front' => '',
|
190 |
+
'allow_empty' => true,
|
191 |
+
'range_settings' => array(
|
192 |
'min' => '0',
|
193 |
'max' => '50',
|
194 |
'step' => '1',
|
195 |
),
|
196 |
+
'responsive' => true,
|
197 |
),
|
198 |
+
|
199 |
);
|
200 |
}
|
201 |
|
202 |
public function render( $attrs, $content = null, $render_slug ) {
|
203 |
+
$title = $this->props['title'];
|
204 |
+
$price = $this->props['price'];
|
205 |
+
$image = $this->props['image'];
|
206 |
+
$alt = $this->props['alt'];
|
207 |
+
$image_spacing = $this->props['image_spacing'];
|
208 |
+
$image_spacing_tablet = $this->props['image_spacing_tablet'];
|
209 |
+
$image_spacing_phone = $this->props['image_spacing_phone'];
|
210 |
+
$image_spacing_last_edited = $this->props['image_spacing_last_edited'];
|
211 |
$image_max_width = $this->props['image_max_width'];
|
212 |
$image_max_width_tablet = $this->props['image_max_width_tablet'];
|
213 |
$image_max_width_phone = $this->props['image_max_width_phone'];
|
214 |
$image_max_width_last_edited = $this->props['image_max_width_last_edited'];
|
215 |
+
|
216 |
if ( '' !== $image_max_width_tablet || '' !== $image_max_width_phone || '' !== $image_max_width ) {
|
217 |
$image_max_width_responsive_active = et_pb_get_responsive_status( $image_max_width_last_edited );
|
218 |
|
256 |
esc_attr( $generate_css_image_filters )
|
257 |
) : '';
|
258 |
|
259 |
+
$video_background = $this->video_background();
|
260 |
$parallax_image_background = $this->get_parallax_image_background();
|
261 |
|
262 |
// Render module content
|
286 |
}
|
287 |
}
|
288 |
|
289 |
+
new DSM_PriceList_Child;
|
includes/modules/Shapes/Shapes.php
CHANGED
@@ -12,26 +12,26 @@ class DSM_Shapes extends ET_Builder_Module {
|
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
-
$this->name
|
16 |
$this->icon = '';
|
17 |
$this->main_css_element = '%%order_class%%.dsm_shapes';
|
18 |
|
19 |
$this->settings_modal_toggles = array(
|
20 |
-
'general'
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Shapes', 'dsm-supreme-modules-for-divi' ),
|
23 |
'link' => esc_html__( 'Link', 'dsm-supreme-modules-for-divi' ),
|
24 |
'image' => esc_html__( 'Image & Badge', 'dsm-supreme-modules-for-divi' ),
|
25 |
),
|
26 |
),
|
27 |
-
'advanced'
|
28 |
'toggles' => array(
|
29 |
'shapes_settings' => esc_html__( 'Shapes', 'dsm-supreme-modules-for-divi' ),
|
30 |
-
'text'
|
31 |
'title' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
32 |
'priority' => 49,
|
33 |
),
|
34 |
-
'width'
|
35 |
'title' => esc_html__( 'Sizing', 'dsm-supreme-modules-for-divi' ),
|
36 |
'priority' => 65,
|
37 |
),
|
@@ -50,31 +50,28 @@ class DSM_Shapes extends ET_Builder_Module {
|
|
50 |
|
51 |
public function get_advanced_fields_config() {
|
52 |
return array(
|
53 |
-
|
54 |
-
'background' => array(
|
55 |
'has_background_color_toggle' => true,
|
56 |
'use_background_color' => true,
|
57 |
-
'css'
|
58 |
-
|
59 |
),
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
'
|
66 |
-
'default' => 'on',
|
67 |
-
),
|
68 |
),
|
69 |
-
)
|
70 |
-
'borders'
|
71 |
'default' => array(),
|
72 |
-
'shapes'
|
73 |
'css' => array(
|
74 |
'main' => array(
|
75 |
-
'border_radii'
|
76 |
-
'border_styles' => "
|
77 |
-
)
|
78 |
),
|
79 |
'label_prefix' => esc_html__( 'Shapes', 'dsm-supreme-modules-for-divi' ),
|
80 |
'tab_slug' => 'advanced',
|
@@ -83,35 +80,35 @@ class DSM_Shapes extends ET_Builder_Module {
|
|
83 |
'depends_show_if' => 'on',
|
84 |
),
|
85 |
),
|
86 |
-
'box_shadow'
|
87 |
'default' => array(
|
88 |
-
'css'
|
89 |
'main' => "{$this->main_css_element}",
|
90 |
),
|
91 |
),
|
92 |
-
'shapes'
|
93 |
-
'label'
|
94 |
-
'option_category'
|
95 |
'tab_slug' => 'advanced',
|
96 |
'toggle_slug' => 'shapes_settings',
|
97 |
-
'css'
|
98 |
'main' => "{$this->main_css_element} .dsm_shapes_wrapper",
|
99 |
),
|
100 |
-
'default_on_fronts'
|
101 |
'color' => '',
|
102 |
'position' => '',
|
103 |
),
|
104 |
),
|
105 |
-
|
106 |
),
|
107 |
-
'fonts'
|
108 |
-
'text'
|
109 |
-
'text_shadow'
|
110 |
-
'button'
|
111 |
-
'width'
|
112 |
-
'height'
|
113 |
-
'max_width'
|
114 |
-
'filters'
|
115 |
'css' => array(
|
116 |
'main' => array(
|
117 |
"{$this->main_css_element}",
|
@@ -134,86 +131,86 @@ class DSM_Shapes extends ET_Builder_Module {
|
|
134 |
$et_accent_color = et_builder_accent_color();
|
135 |
|
136 |
return array(
|
137 |
-
'shapes_type'
|
138 |
-
'default'
|
139 |
-
'default_on_front'=> 'square',
|
140 |
-
'label'
|
141 |
-
'type'
|
142 |
-
'option_category'
|
143 |
-
'options'
|
144 |
-
'square'
|
145 |
-
'circle'
|
146 |
-
'rectangle'
|
147 |
-
'triangle'
|
148 |
-
'oval'
|
149 |
-
'trapezoid'
|
150 |
-
'parallelogram'
|
151 |
'diamond_square' => esc_html__( 'Diamond Square', 'dsm-supreme-modules-for-divi' ),
|
152 |
-
'hexagon'
|
153 |
-
'blob_one'
|
154 |
-
'blob_two'
|
155 |
-
'blob_three'
|
156 |
-
'blob_four'
|
157 |
-
'blob_five'
|
158 |
-
'blob_six'
|
159 |
-
'blob_seven'
|
160 |
-
'blob_eight'
|
161 |
),
|
162 |
-
'toggle_slug'
|
163 |
-
'description'
|
164 |
),
|
165 |
'shapes_square_size' => array(
|
166 |
-
'label'
|
167 |
-
'description'
|
168 |
-
'type'
|
169 |
-
'option_category'
|
170 |
-
'toggle_slug'
|
171 |
-
'mobile_options'
|
172 |
-
'validate_unit'
|
173 |
-
'allowed_units'
|
174 |
-
'default'
|
175 |
-
'default_unit'
|
176 |
-
'default_on_front'=> '80',
|
177 |
-
'unitless'
|
178 |
-
'allow_empty'
|
179 |
-
'range_settings'
|
180 |
'min' => '0',
|
181 |
'max' => '800',
|
182 |
'step' => '1',
|
183 |
),
|
184 |
-
'responsive'
|
185 |
),
|
186 |
-
'shape_color'
|
187 |
-
'label'
|
188 |
-
'type'
|
189 |
-
'custom_color'
|
190 |
'default' => $et_accent_color,
|
191 |
-
'default_on_front'
|
192 |
-
'tab_slug'
|
193 |
-
'toggle_slug'
|
194 |
-
'description'
|
195 |
),
|
196 |
-
'use_shape_border'
|
197 |
-
'label'
|
198 |
-
'type'
|
199 |
-
'option_category'
|
200 |
-
'options'
|
201 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
202 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
203 |
),
|
204 |
-
'tab_slug'
|
205 |
-
'toggle_slug'
|
206 |
-
'affects'
|
207 |
'border_radii_shapes',
|
208 |
'border_styles_shapes',
|
209 |
),
|
210 |
-
'show_if_not'
|
211 |
'shapes_type' => 'triangle',
|
212 |
'shapes_type' => 'hexagon',
|
213 |
'shapes_type' => 'trapezoid',
|
214 |
),
|
215 |
-
'default'
|
216 |
-
'default_on_front'=> 'off',
|
217 |
),
|
218 |
/*
|
219 |
'title' => array(
|
@@ -232,7 +229,7 @@ class DSM_Shapes extends ET_Builder_Module {
|
|
232 |
//'default' => 'Sub Title',
|
233 |
'toggle_slug' => 'main_content',
|
234 |
),
|
235 |
-
|
236 |
'content' => array(
|
237 |
'label' => esc_html__( 'Content', 'dsm-supreme-modules-for-divi' ),
|
238 |
'type' => 'tiny_mce',
|
@@ -247,370 +244,503 @@ class DSM_Shapes extends ET_Builder_Module {
|
|
247 |
public function get_transition_fields_css_props() {
|
248 |
$fields = parent::get_transition_fields_css_props();
|
249 |
return $fields;
|
250 |
-
|
251 |
}
|
252 |
|
253 |
public function render( $attrs, $content = null, $render_slug ) {
|
254 |
-
$multi_view
|
255 |
-
|
256 |
-
$shapes_type = $this->props['shapes_type'];
|
257 |
|
258 |
-
$
|
259 |
-
$shapes_square_size_values = et_pb_responsive_options()->get_property_values( $this->props, 'shapes_square_size' );
|
260 |
-
$shapes_square_size_tablet = isset( $shapes_square_size_values['tablet'] ) ? $shapes_square_size_values['tablet'] : '';
|
261 |
-
$shapes_square_size_phone = isset( $shapes_square_size_values['phone'] ) ? $shapes_square_size_values['phone'] : '';
|
262 |
|
263 |
-
$
|
264 |
-
$
|
265 |
-
$
|
266 |
-
$
|
267 |
|
268 |
-
$
|
|
|
|
|
|
|
269 |
|
270 |
-
$
|
271 |
|
|
|
272 |
|
273 |
-
$video_background
|
274 |
$parallax_image_background = $this->get_parallax_image_background();
|
275 |
|
276 |
//size
|
277 |
-
$shapes_square_size_parent_style
|
278 |
$shapes_square_size_parent_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %1$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ) ) : '';
|
279 |
-
$shapes_square_size_parent_phone_style
|
280 |
|
281 |
-
$shapes_square_size_style
|
282 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %1$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ) ) : '';
|
283 |
-
$shapes_square_size_phone_style
|
284 |
-
|
285 |
-
if ($shapes_type === 'square') {
|
286 |
-
ET_Builder_Element::set_style(
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
)
|
302 |
-
|
303 |
-
ET_Builder_Element::set_style(
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
)
|
319 |
-
|
320 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
321 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 2 ) ) : '';
|
322 |
-
$shapes_square_size_phone_style
|
323 |
-
|
324 |
-
ET_Builder_Element::set_style(
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
)
|
340 |
-
|
341 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'width: 0; height: 0; border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-bottom-width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 2 ) ) : '';
|
343 |
-
$shapes_square_size_phone_style
|
344 |
-
|
345 |
-
ET_Builder_Element::set_style(
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
)
|
361 |
-
|
362 |
-
ET_Builder_Element::set_style(
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
)
|
378 |
-
|
379 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
380 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 2 ) ) : '';
|
381 |
-
$shapes_square_size_phone_style
|
382 |
-
|
383 |
-
ET_Builder_Element::set_style(
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
)
|
399 |
-
|
400 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'width: %1$spx; height: 0px; border-bottom-width: %3$spx; border-left: %2$spx solid transparent; border-right: %2$spx solid transparent;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 5 ), ( esc_html( $shapes_square_size_tablet ) / 5 ) * 2 ) : '';
|
402 |
-
$shapes_square_size_phone_style
|
403 |
-
|
404 |
-
ET_Builder_Element::set_style(
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
)
|
420 |
-
|
421 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
422 |
$shapes_square_size_parent_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 5 ) * 2 ) : '';
|
423 |
-
$shapes_square_size_parent_phone_style
|
424 |
-
|
425 |
-
ET_Builder_Element::set_style(
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
)
|
441 |
-
|
442 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
443 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 2 ) ) : '';
|
444 |
-
$shapes_square_size_phone_style
|
445 |
-
|
446 |
-
ET_Builder_Element::set_style(
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
)
|
462 |
-
|
463 |
-
ET_Builder_Element::set_style(
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
)
|
479 |
-
|
480 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
481 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 1.77 ) ) : '';
|
482 |
-
$shapes_square_size_phone_style
|
483 |
|
484 |
-
$shapes_square_size_before_style
|
485 |
$shapes_square_size_before_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-bottom: %3$spx solid %1$s', esc_attr( $shape_color ), ( esc_html( $shapes_square_size_tablet ) / 2 ), ( esc_html( $shapes_square_size_tablet ) / 4 ) ) : '';
|
486 |
-
$shapes_square_size_before_phone_style
|
487 |
|
488 |
-
$shapes_square_size_after_style
|
489 |
$shapes_square_size_after_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-top: %3$spx solid %1$s', esc_attr( $shape_color ), ( esc_html( $shapes_square_size_tablet ) / 2 ), ( esc_html( $shapes_square_size_tablet ) / 4 ) ) : '';
|
490 |
-
$shapes_square_size_after_phone_style
|
491 |
-
|
492 |
-
ET_Builder_Element::set_style(
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
)
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
)
|
517 |
-
ET_Builder_Element::set_style(
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
522 |
//before
|
523 |
-
ET_Builder_Element::set_style(
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
|
540 |
//after
|
541 |
-
ET_Builder_Element::set_style(
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
} else {
|
557 |
-
ET_Builder_Element::set_style(
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
}
|
574 |
|
575 |
-
|
576 |
//color
|
577 |
-
$shape_color_style
|
578 |
$shape_color_tablet_style = '';
|
579 |
-
$shape_color_phone_style
|
580 |
|
581 |
-
if ($shapes_type === 'square') {
|
582 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
583 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
584 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
585 |
-
}
|
586 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
587 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
588 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
589 |
-
}
|
590 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
591 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
592 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
593 |
-
}
|
594 |
$shape_color_style = sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color ) );
|
595 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
596 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
597 |
-
}
|
598 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
599 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
600 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
601 |
-
}
|
602 |
$shape_color_style = sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color ) );
|
603 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
604 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
605 |
-
}
|
606 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
607 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
608 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
609 |
-
}
|
610 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
611 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
612 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
613 |
-
}
|
614 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
615 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
616 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
@@ -620,28 +750,38 @@ class DSM_Shapes extends ET_Builder_Module {
|
|
620 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
621 |
}
|
622 |
|
623 |
-
ET_Builder_Element::set_style(
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
'declaration' => $shape_color_tablet_style,
|
631 |
-
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
632 |
-
) );
|
633 |
|
634 |
-
ET_Builder_Element::set_style(
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
|
|
|
|
|
|
|
639 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
640 |
|
641 |
// Remove automatically added classnames
|
642 |
-
$this->remove_classname(
|
643 |
-
|
644 |
-
|
|
|
|
|
645 |
|
646 |
// Render module content
|
647 |
$output = sprintf(
|
@@ -656,45 +796,57 @@ class DSM_Shapes extends ET_Builder_Module {
|
|
656 |
|
657 |
return $output;
|
658 |
}
|
659 |
-
public function apply_custom_margin_padding($function_name, $slug, $type, $class, $important = false) {
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
}
|
688 |
if ( et_builder_is_hover_enabled( $slug, $this->props ) ) {
|
689 |
-
if (isset($this->props[$slug.'__hover']) ) {
|
690 |
-
$hover = $this->props[$slug.'__hover'];
|
691 |
-
ET_Builder_Element::set_style(
|
692 |
-
|
693 |
-
|
694 |
-
|
|
|
|
|
|
|
695 |
}
|
696 |
}
|
697 |
}
|
698 |
}
|
699 |
|
700 |
-
new DSM_Shapes;
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
+
$this->name = esc_html__( 'Supreme Shapes', 'dsm-supreme-modules-for-divi' );
|
16 |
$this->icon = '';
|
17 |
$this->main_css_element = '%%order_class%%.dsm_shapes';
|
18 |
|
19 |
$this->settings_modal_toggles = array(
|
20 |
+
'general' => array(
|
21 |
'toggles' => array(
|
22 |
'main_content' => esc_html__( 'Shapes', 'dsm-supreme-modules-for-divi' ),
|
23 |
'link' => esc_html__( 'Link', 'dsm-supreme-modules-for-divi' ),
|
24 |
'image' => esc_html__( 'Image & Badge', 'dsm-supreme-modules-for-divi' ),
|
25 |
),
|
26 |
),
|
27 |
+
'advanced' => array(
|
28 |
'toggles' => array(
|
29 |
'shapes_settings' => esc_html__( 'Shapes', 'dsm-supreme-modules-for-divi' ),
|
30 |
+
'text' => array(
|
31 |
'title' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
32 |
'priority' => 49,
|
33 |
),
|
34 |
+
'width' => array(
|
35 |
'title' => esc_html__( 'Sizing', 'dsm-supreme-modules-for-divi' ),
|
36 |
'priority' => 65,
|
37 |
),
|
50 |
|
51 |
public function get_advanced_fields_config() {
|
52 |
return array(
|
53 |
+
'background' => array(
|
|
|
54 |
'has_background_color_toggle' => true,
|
55 |
'use_background_color' => true,
|
56 |
+
'css' => array(
|
57 |
+
"{$this->main_css_element}",
|
58 |
),
|
59 |
+
),
|
60 |
+
'margin_padding' => array(
|
61 |
+
'css' => array(
|
62 |
+
'padding' => "{$this->main_css_element}",
|
63 |
+
'margin' => "{$this->main_css_element}",
|
64 |
+
'important' => 'all',
|
|
|
|
|
65 |
),
|
66 |
+
),
|
67 |
+
'borders' => array(
|
68 |
'default' => array(),
|
69 |
+
'shapes' => array(
|
70 |
'css' => array(
|
71 |
'main' => array(
|
72 |
+
'border_radii' => "{$this->main_css_element} .dsm_shapes_wrapper",
|
73 |
+
'border_styles' => "{$this->main_css_element} .dsm_shapes_wrapper",
|
74 |
+
),
|
75 |
),
|
76 |
'label_prefix' => esc_html__( 'Shapes', 'dsm-supreme-modules-for-divi' ),
|
77 |
'tab_slug' => 'advanced',
|
80 |
'depends_show_if' => 'on',
|
81 |
),
|
82 |
),
|
83 |
+
'box_shadow' => array(
|
84 |
'default' => array(
|
85 |
+
'css' => array(
|
86 |
'main' => "{$this->main_css_element}",
|
87 |
),
|
88 |
),
|
89 |
+
'shapes' => array(
|
90 |
+
'label' => esc_html__( 'Shapes Shadow', 'dsm-supreme-modules-for-divi' ),
|
91 |
+
'option_category' => 'layout',
|
92 |
'tab_slug' => 'advanced',
|
93 |
'toggle_slug' => 'shapes_settings',
|
94 |
+
'css' => array(
|
95 |
'main' => "{$this->main_css_element} .dsm_shapes_wrapper",
|
96 |
),
|
97 |
+
'default_on_fronts' => array(
|
98 |
'color' => '',
|
99 |
'position' => '',
|
100 |
),
|
101 |
),
|
102 |
+
|
103 |
),
|
104 |
+
'fonts' => false,
|
105 |
+
'text' => false,
|
106 |
+
'text_shadow' => false,
|
107 |
+
'button' => false,
|
108 |
+
'width' => false,
|
109 |
+
'height' => false,
|
110 |
+
'max_width' => false,
|
111 |
+
'filters' => array(
|
112 |
'css' => array(
|
113 |
'main' => array(
|
114 |
"{$this->main_css_element}",
|
131 |
$et_accent_color = et_builder_accent_color();
|
132 |
|
133 |
return array(
|
134 |
+
'shapes_type' => array(
|
135 |
+
'default' => 'square',
|
136 |
+
'default_on_front' => 'square',
|
137 |
+
'label' => esc_html__( 'Type', 'dsm-supreme-modules-for-divi' ),
|
138 |
+
'type' => 'select',
|
139 |
+
'option_category' => 'configuration',
|
140 |
+
'options' => array(
|
141 |
+
'square' => esc_html__( 'Square', 'dsm-supreme-modules-for-divi' ),
|
142 |
+
'circle' => esc_html__( 'Circle', 'dsm-supreme-modules-for-divi' ),
|
143 |
+
'rectangle' => esc_html__( 'Rectangle', 'dsm-supreme-modules-for-divi' ),
|
144 |
+
'triangle' => esc_html__( 'Triangle', 'dsm-supreme-modules-for-divi' ),
|
145 |
+
'oval' => esc_html__( 'Oval', 'dsm-supreme-modules-for-divi' ),
|
146 |
+
'trapezoid' => esc_html__( 'Trapezoid', 'dsm-supreme-modules-for-divi' ),
|
147 |
+
'parallelogram' => esc_html__( 'Parallelogram', 'dsm-supreme-modules-for-divi' ),
|
148 |
'diamond_square' => esc_html__( 'Diamond Square', 'dsm-supreme-modules-for-divi' ),
|
149 |
+
'hexagon' => esc_html__( 'Hexagon', 'dsm-supreme-modules-for-divi' ),
|
150 |
+
'blob_one' => esc_html__( 'Blob #1', 'dsm-supreme-modules-for-divi' ),
|
151 |
+
'blob_two' => esc_html__( 'Blob #2', 'dsm-supreme-modules-for-divi' ),
|
152 |
+
'blob_three' => esc_html__( 'Blob #3', 'dsm-supreme-modules-for-divi' ),
|
153 |
+
'blob_four' => esc_html__( 'Blob #4', 'dsm-supreme-modules-for-divi' ),
|
154 |
+
'blob_five' => esc_html__( 'Blob #5', 'dsm-supreme-modules-for-divi' ),
|
155 |
+
'blob_six' => esc_html__( 'Blob #6', 'dsm-supreme-modules-for-divi' ),
|
156 |
+
'blob_seven' => esc_html__( 'Blob #7', 'dsm-supreme-modules-for-divi' ),
|
157 |
+
'blob_eight' => esc_html__( 'Blob #8', 'dsm-supreme-modules-for-divi' ),
|
158 |
),
|
159 |
+
'toggle_slug' => 'main_content',
|
160 |
+
'description' => esc_html__( '', 'dsm-supreme-modules-for-divi' ),
|
161 |
),
|
162 |
'shapes_square_size' => array(
|
163 |
+
'label' => esc_html__( 'Size', 'dsm-supreme-modules-for-divi' ),
|
164 |
+
'description' => esc_html__( 'Adjust size of the Shape.', 'dsm-supreme-modules-for-divi' ),
|
165 |
+
'type' => 'range',
|
166 |
+
'option_category' => 'layout',
|
167 |
+
'toggle_slug' => 'main_content',
|
168 |
+
'mobile_options' => true,
|
169 |
+
'validate_unit' => true,
|
170 |
+
'allowed_units' => array( '%', 'em', 'rem', 'px', 'cm', 'mm', 'in', 'pt', 'pc', 'ex', 'vh', 'vw' ),
|
171 |
+
'default' => '80',
|
172 |
+
'default_unit' => '',
|
173 |
+
'default_on_front' => '80',
|
174 |
+
'unitless' => true,
|
175 |
+
'allow_empty' => false,
|
176 |
+
'range_settings' => array(
|
177 |
'min' => '0',
|
178 |
'max' => '800',
|
179 |
'step' => '1',
|
180 |
),
|
181 |
+
'responsive' => true,
|
182 |
),
|
183 |
+
'shape_color' => array(
|
184 |
+
'label' => esc_html__( 'Shape Color', 'dsm-supreme-modules-for-divi' ),
|
185 |
+
'type' => 'color-alpha',
|
186 |
+
'custom_color' => true,
|
187 |
'default' => $et_accent_color,
|
188 |
+
'default_on_front' => $et_accent_color,
|
189 |
+
'tab_slug' => 'advanced',
|
190 |
+
'toggle_slug' => 'shapes_settings',
|
191 |
+
'description' => esc_html__( 'Here you can define a custom color for the shapes', 'dsm-supreme-modules-for-divi' ),
|
192 |
),
|
193 |
+
'use_shape_border' => array(
|
194 |
+
'label' => esc_html__( 'Use Border', 'dsm-supreme-modules-for-divi' ),
|
195 |
+
'type' => 'yes_no_button',
|
196 |
+
'option_category' => 'basic_option',
|
197 |
+
'options' => array(
|
198 |
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
199 |
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
200 |
),
|
201 |
+
'tab_slug' => 'advanced',
|
202 |
+
'toggle_slug' => 'shapes_settings',
|
203 |
+
'affects' => array(
|
204 |
'border_radii_shapes',
|
205 |
'border_styles_shapes',
|
206 |
),
|
207 |
+
'show_if_not' => array(
|
208 |
'shapes_type' => 'triangle',
|
209 |
'shapes_type' => 'hexagon',
|
210 |
'shapes_type' => 'trapezoid',
|
211 |
),
|
212 |
+
'default' => 'off',
|
213 |
+
'default_on_front' => 'off',
|
214 |
),
|
215 |
/*
|
216 |
'title' => array(
|
229 |
//'default' => 'Sub Title',
|
230 |
'toggle_slug' => 'main_content',
|
231 |
),
|
232 |
+
|
233 |
'content' => array(
|
234 |
'label' => esc_html__( 'Content', 'dsm-supreme-modules-for-divi' ),
|
235 |
'type' => 'tiny_mce',
|
244 |
public function get_transition_fields_css_props() {
|
245 |
$fields = parent::get_transition_fields_css_props();
|
246 |
return $fields;
|
247 |
+
|
248 |
}
|
249 |
|
250 |
public function render( $attrs, $content = null, $render_slug ) {
|
251 |
+
$multi_view = et_pb_multi_view_options( $this );
|
|
|
|
|
252 |
|
253 |
+
$shapes_type = $this->props['shapes_type'];
|
|
|
|
|
|
|
254 |
|
255 |
+
$shapes_square_size = $this->props['shapes_square_size'];
|
256 |
+
$shapes_square_size_values = et_pb_responsive_options()->get_property_values( $this->props, 'shapes_square_size' );
|
257 |
+
$shapes_square_size_tablet = isset( $shapes_square_size_values['tablet'] ) ? $shapes_square_size_values['tablet'] : '';
|
258 |
+
$shapes_square_size_phone = isset( $shapes_square_size_values['phone'] ) ? $shapes_square_size_values['phone'] : '';
|
259 |
|
260 |
+
$shape_color = $this->props['shape_color'];
|
261 |
+
$shape_color_values = et_pb_responsive_options()->get_property_values( $this->props, 'shape_color' );
|
262 |
+
$shape_color_tablet = isset( $shape_color_values['tablet'] ) ? $shape_color_values['tablet'] : '';
|
263 |
+
$shape_color_phone = isset( $shape_color_values['phone'] ) ? $shape_color_values['phone'] : '';
|
264 |
|
265 |
+
$use_shape_border = $this->props['use_shape_border'];
|
266 |
|
267 |
+
$shape_selector = "{$this->main_css_element} .dsm_shapes_wrapper";
|
268 |
|
269 |
+
$video_background = $this->video_background();
|
270 |
$parallax_image_background = $this->get_parallax_image_background();
|
271 |
|
272 |
//size
|
273 |
+
$shapes_square_size_parent_style = sprintf( 'height: %1$spx; width: %1$spx;', esc_html( $shapes_square_size ) );
|
274 |
$shapes_square_size_parent_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %1$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ) ) : '';
|
275 |
+
$shapes_square_size_parent_phone_style = '' !== $shapes_square_size_phone ? sprintf( 'height: %1$spx; width: %1$spx;', esc_html( $shapes_square_size_phone ) ) : '';
|
276 |
|
277 |
+
$shapes_square_size_style = sprintf( 'height: %1$spx; width: %1$spx;', esc_html( $shapes_square_size ) );
|
278 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %1$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ) ) : '';
|
279 |
+
$shapes_square_size_phone_style = '' !== $shapes_square_size_phone ? sprintf( 'height: %1$spx; width: %1$spx;', esc_html( $shapes_square_size_phone ) ) : '';
|
280 |
+
|
281 |
+
if ( $shapes_type === 'square' ) {
|
282 |
+
ET_Builder_Element::set_style(
|
283 |
+
$render_slug,
|
284 |
+
array(
|
285 |
+
'selector' => $shape_selector,
|
286 |
+
'declaration' => $shapes_square_size_style,
|
287 |
+
)
|
288 |
+
);
|
289 |
+
|
290 |
+
ET_Builder_Element::set_style(
|
291 |
+
$render_slug,
|
292 |
+
array(
|
293 |
+
'selector' => $shape_selector,
|
294 |
+
'declaration' => $shapes_square_size_tablet_style,
|
295 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
296 |
+
)
|
297 |
+
);
|
298 |
+
|
299 |
+
ET_Builder_Element::set_style(
|
300 |
+
$render_slug,
|
301 |
+
array(
|
302 |
+
'selector' => $shape_selector,
|
303 |
+
'declaration' => $shapes_square_size_phone_style,
|
304 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
305 |
+
)
|
306 |
+
);
|
307 |
+
} elseif ( $shapes_type === 'circle' ) {
|
308 |
+
ET_Builder_Element::set_style(
|
309 |
+
$render_slug,
|
310 |
+
array(
|
311 |
+
'selector' => $shape_selector,
|
312 |
+
'declaration' => $shapes_square_size_style,
|
313 |
+
)
|
314 |
+
);
|
315 |
+
|
316 |
+
ET_Builder_Element::set_style(
|
317 |
+
$render_slug,
|
318 |
+
array(
|
319 |
+
'selector' => $shape_selector,
|
320 |
+
'declaration' => $shapes_square_size_tablet_style,
|
321 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
322 |
+
)
|
323 |
+
);
|
324 |
+
|
325 |
+
ET_Builder_Element::set_style(
|
326 |
+
$render_slug,
|
327 |
+
array(
|
328 |
+
'selector' => $shape_selector,
|
329 |
+
'declaration' => $shapes_square_size_phone_style,
|
330 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
331 |
+
)
|
332 |
+
);
|
333 |
+
} elseif ( $shapes_type === 'rectangle' ) {
|
334 |
+
$shapes_square_size_style = sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size ), ( esc_html( $shapes_square_size ) / 2 ) );
|
335 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 2 ) ) : '';
|
336 |
+
$shapes_square_size_phone_style = '' !== $shapes_square_size_phone ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_phone ), ( esc_html( $shapes_square_size_phone ) / 2 ) ) : '';
|
337 |
+
|
338 |
+
ET_Builder_Element::set_style(
|
339 |
+
$render_slug,
|
340 |
+
array(
|
341 |
+
'selector' => $shape_selector,
|
342 |
+
'declaration' => $shapes_square_size_style,
|
343 |
+
)
|
344 |
+
);
|
345 |
+
|
346 |
+
ET_Builder_Element::set_style(
|
347 |
+
$render_slug,
|
348 |
+
array(
|
349 |
+
'selector' => $shape_selector,
|
350 |
+
'declaration' => $shapes_square_size_tablet_style,
|
351 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
352 |
+
)
|
353 |
+
);
|
354 |
+
|
355 |
+
ET_Builder_Element::set_style(
|
356 |
+
$render_slug,
|
357 |
+
array(
|
358 |
+
'selector' => $shape_selector,
|
359 |
+
'declaration' => $shapes_square_size_phone_style,
|
360 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
361 |
+
)
|
362 |
+
);
|
363 |
+
} elseif ( $shapes_type === 'triangle' ) {
|
364 |
+
$shapes_square_size_style = sprintf( 'width: 0; height: 0; border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-bottom-width: %1$spx;', esc_html( $shapes_square_size ), ( esc_html( $shapes_square_size ) / 2 ) );
|
365 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'width: 0; height: 0; border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-bottom-width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 2 ) ) : '';
|
366 |
+
$shapes_square_size_phone_style = '' !== $shapes_square_size_phone ? sprintf( 'width: 0; height: 0; border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-bottom-width: %1$spx;', esc_html( $shapes_square_size_phone ), ( esc_html( $shapes_square_size_phone ) / 2 ) ) : '';
|
367 |
+
|
368 |
+
ET_Builder_Element::set_style(
|
369 |
+
$render_slug,
|
370 |
+
array(
|
371 |
+
'selector' => $shape_selector,
|
372 |
+
'declaration' => $shapes_square_size_style,
|
373 |
+
)
|
374 |
+
);
|
375 |
+
|
376 |
+
ET_Builder_Element::set_style(
|
377 |
+
$render_slug,
|
378 |
+
array(
|
379 |
+
'selector' => $shape_selector,
|
380 |
+
'declaration' => $shapes_square_size_tablet_style,
|
381 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
382 |
+
)
|
383 |
+
);
|
384 |
+
|
385 |
+
ET_Builder_Element::set_style(
|
386 |
+
$render_slug,
|
387 |
+
array(
|
388 |
+
'selector' => $shape_selector,
|
389 |
+
'declaration' => $shapes_square_size_phone_style,
|
390 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
391 |
+
)
|
392 |
+
);
|
393 |
+
|
394 |
+
ET_Builder_Element::set_style(
|
395 |
+
$render_slug,
|
396 |
+
array(
|
397 |
+
'selector' => $shape_selector,
|
398 |
+
'declaration' => $shapes_square_size_parent_style,
|
399 |
+
)
|
400 |
+
);
|
401 |
+
|
402 |
+
ET_Builder_Element::set_style(
|
403 |
+
$render_slug,
|
404 |
+
array(
|
405 |
+
'selector' => $shape_selector,
|
406 |
+
'declaration' => $shapes_square_size_parent_tablet_style,
|
407 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
408 |
+
)
|
409 |
+
);
|
410 |
+
|
411 |
+
ET_Builder_Element::set_style(
|
412 |
+
$render_slug,
|
413 |
+
array(
|
414 |
+
'selector' => $shape_selector,
|
415 |
+
'declaration' => $shapes_square_size_parent_phone_style,
|
416 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
417 |
+
)
|
418 |
+
);
|
419 |
+
} elseif ( $shapes_type === 'oval' ) {
|
420 |
+
$shapes_square_size_style = sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size ), ( esc_html( $shapes_square_size ) / 2 ) );
|
421 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 2 ) ) : '';
|
422 |
+
$shapes_square_size_phone_style = '' !== $shapes_square_size_phone ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_phone ), ( esc_html( $shapes_square_size_phone ) / 2 ) ) : '';
|
423 |
+
|
424 |
+
ET_Builder_Element::set_style(
|
425 |
+
$render_slug,
|
426 |
+
array(
|
427 |
+
'selector' => $shape_selector,
|
428 |
+
'declaration' => $shapes_square_size_style,
|
429 |
+
)
|
430 |
+
);
|
431 |
+
|
432 |
+
ET_Builder_Element::set_style(
|
433 |
+
$render_slug,
|
434 |
+
array(
|
435 |
+
'selector' => $shape_selector,
|
436 |
+
'declaration' => $shapes_square_size_tablet_style,
|
437 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
438 |
+
)
|
439 |
+
);
|
440 |
+
|
441 |
+
ET_Builder_Element::set_style(
|
442 |
+
$render_slug,
|
443 |
+
array(
|
444 |
+
'selector' => $shape_selector,
|
445 |
+
'declaration' => $shapes_square_size_phone_style,
|
446 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
447 |
+
)
|
448 |
+
);
|
449 |
+
} elseif ( $shapes_type === 'trapezoid' ) {
|
450 |
+
$shapes_square_size_style = sprintf( 'width: %1$spx; height: 0px; border-bottom-width: %3$spx; border-left: %2$spx solid transparent; border-right: %2$spx solid transparent;', esc_html( $shapes_square_size ), ( esc_html( $shapes_square_size ) / 5 ), ( esc_html( $shapes_square_size ) / 5 ) * 2 );
|
451 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'width: %1$spx; height: 0px; border-bottom-width: %3$spx; border-left: %2$spx solid transparent; border-right: %2$spx solid transparent;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 5 ), ( esc_html( $shapes_square_size_tablet ) / 5 ) * 2 ) : '';
|
452 |
+
$shapes_square_size_phone_style = '' !== $shapes_square_size_phone ? sprintf( 'width: %1$spx; height: 0px; border-bottom-width: %3$spx; border-left: %2$spx solid transparent; border-right: %2$spx solid transparent;', esc_html( $shapes_square_size_phone ), ( esc_html( $shapes_square_size_phone ) / 5 ), ( esc_html( $shapes_square_size_phone ) / 5 ) * 2 ) : '';
|
453 |
+
|
454 |
+
ET_Builder_Element::set_style(
|
455 |
+
$render_slug,
|
456 |
+
array(
|
457 |
+
'selector' => $shape_selector,
|
458 |
+
'declaration' => $shapes_square_size_style,
|
459 |
+
)
|
460 |
+
);
|
461 |
+
|
462 |
+
ET_Builder_Element::set_style(
|
463 |
+
$render_slug,
|
464 |
+
array(
|
465 |
+
'selector' => $shape_selector,
|
466 |
+
'declaration' => $shapes_square_size_tablet_style,
|
467 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
468 |
+
)
|
469 |
+
);
|
470 |
+
|
471 |
+
ET_Builder_Element::set_style(
|
472 |
+
$render_slug,
|
473 |
+
array(
|
474 |
+
'selector' => $shape_selector,
|
475 |
+
'declaration' => $shapes_square_size_phone_style,
|
476 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
477 |
+
)
|
478 |
+
);
|
479 |
+
|
480 |
+
$shapes_square_size_parent_style = sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size ), ( esc_html( $shapes_square_size ) / 5 ) * 2 );
|
481 |
$shapes_square_size_parent_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 5 ) * 2 ) : '';
|
482 |
+
$shapes_square_size_parent_phone_style = '' !== $shapes_square_size_phone ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_phone ), ( esc_html( $shapes_square_size_phone ) / 5 ) * 2 ) : '';
|
483 |
+
|
484 |
+
ET_Builder_Element::set_style(
|
485 |
+
$render_slug,
|
486 |
+
array(
|
487 |
+
'selector' => $shape_selector,
|
488 |
+
'declaration' => $shapes_square_size_parent_style,
|
489 |
+
)
|
490 |
+
);
|
491 |
+
|
492 |
+
ET_Builder_Element::set_style(
|
493 |
+
$render_slug,
|
494 |
+
array(
|
495 |
+
'selector' => $shape_selector,
|
496 |
+
'declaration' => $shapes_square_size_parent_tablet_style,
|
497 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
498 |
+
)
|
499 |
+
);
|
500 |
+
|
501 |
+
ET_Builder_Element::set_style(
|
502 |
+
$render_slug,
|
503 |
+
array(
|
504 |
+
'selector' => $shape_selector,
|
505 |
+
'declaration' => $shapes_square_size_parent_phone_style,
|
506 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
507 |
+
)
|
508 |
+
);
|
509 |
+
} elseif ( $shapes_type === 'parallelogram' ) {
|
510 |
+
$shapes_square_size_style = sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size ), ( esc_html( $shapes_square_size ) / 2 ) );
|
511 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 2 ) ) : '';
|
512 |
+
$shapes_square_size_phone_style = '' !== $shapes_square_size_phone ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_phone ), ( esc_html( $shapes_square_size_phone ) / 2 ) ) : '';
|
513 |
+
|
514 |
+
ET_Builder_Element::set_style(
|
515 |
+
$render_slug,
|
516 |
+
array(
|
517 |
+
'selector' => $shape_selector,
|
518 |
+
'declaration' => $shapes_square_size_style,
|
519 |
+
)
|
520 |
+
);
|
521 |
+
|
522 |
+
ET_Builder_Element::set_style(
|
523 |
+
$render_slug,
|
524 |
+
array(
|
525 |
+
'selector' => $shape_selector,
|
526 |
+
'declaration' => $shapes_square_size_tablet_style,
|
527 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
528 |
+
)
|
529 |
+
);
|
530 |
+
|
531 |
+
ET_Builder_Element::set_style(
|
532 |
+
$render_slug,
|
533 |
+
array(
|
534 |
+
'selector' => $shape_selector,
|
535 |
+
'declaration' => $shapes_square_size_phone_style,
|
536 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
537 |
+
)
|
538 |
+
);
|
539 |
+
} elseif ( $shapes_type === 'diamond_square' ) {
|
540 |
+
ET_Builder_Element::set_style(
|
541 |
+
$render_slug,
|
542 |
+
array(
|
543 |
+
'selector' => $shape_selector,
|
544 |
+
'declaration' => $shapes_square_size_style,
|
545 |
+
)
|
546 |
+
);
|
547 |
+
|
548 |
+
ET_Builder_Element::set_style(
|
549 |
+
$render_slug,
|
550 |
+
array(
|
551 |
+
'selector' => $shape_selector,
|
552 |
+
'declaration' => $shapes_square_size_tablet_style,
|
553 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
554 |
+
)
|
555 |
+
);
|
556 |
+
|
557 |
+
ET_Builder_Element::set_style(
|
558 |
+
$render_slug,
|
559 |
+
array(
|
560 |
+
'selector' => $shape_selector,
|
561 |
+
'declaration' => $shapes_square_size_phone_style,
|
562 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
563 |
+
)
|
564 |
+
);
|
565 |
+
} elseif ( $shapes_type === 'hexagon' ) {
|
566 |
+
$shapes_square_size_style = sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size ), ( esc_html( $shapes_square_size ) / 1.77 ) );
|
567 |
$shapes_square_size_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_tablet ), ( esc_html( $shapes_square_size_tablet ) / 1.77 ) ) : '';
|
568 |
+
$shapes_square_size_phone_style = '' !== $shapes_square_size_phone ? sprintf( 'height: %2$spx; width: %1$spx;', esc_html( $shapes_square_size_phone ), ( esc_html( $shapes_square_size_phone ) / 1.77 ) ) : '';
|
569 |
|
570 |
+
$shapes_square_size_before_style = sprintf( 'border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-bottom: %3$spx solid %1$s', esc_attr( $shape_color ), ( esc_html( $shapes_square_size ) / 2 ), ( esc_html( $shapes_square_size ) / 4 ) );
|
571 |
$shapes_square_size_before_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-bottom: %3$spx solid %1$s', esc_attr( $shape_color ), ( esc_html( $shapes_square_size_tablet ) / 2 ), ( esc_html( $shapes_square_size_tablet ) / 4 ) ) : '';
|
572 |
+
$shapes_square_size_before_phone_style = '' !== $shapes_square_size_phone ? sprintf( 'border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-bottom: %3$spx solid %1$s', esc_attr( $shape_color ), ( esc_html( $shapes_square_size_phone ) / 2 ), ( esc_html( $shapes_square_size_phone ) / 4 ) ) : '';
|
573 |
|
574 |
+
$shapes_square_size_after_style = sprintf( 'border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-top: %3$spx solid %1$s', esc_attr( $shape_color ), ( esc_html( $shapes_square_size ) / 2 ), ( esc_html( $shapes_square_size ) / 4 ) );
|
575 |
$shapes_square_size_after_tablet_style = '' !== $shapes_square_size_tablet ? sprintf( 'border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-top: %3$spx solid %1$s', esc_attr( $shape_color ), ( esc_html( $shapes_square_size_tablet ) / 2 ), ( esc_html( $shapes_square_size_tablet ) / 4 ) ) : '';
|
576 |
+
$shapes_square_size_after_phone_style = '' !== $shapes_square_size_phone ? sprintf( 'border-left: %2$spx solid transparent; border-right: %2$spx solid transparent; border-top: %3$spx solid %1$s', esc_attr( $shape_color ), ( esc_html( $shapes_square_size_phone ) / 2 ), ( esc_html( $shapes_square_size_phone ) / 4 ) ) : '';
|
577 |
+
|
578 |
+
ET_Builder_Element::set_style(
|
579 |
+
$render_slug,
|
580 |
+
array(
|
581 |
+
'selector' => $shape_selector,
|
582 |
+
'declaration' => $shapes_square_size_style,
|
583 |
+
)
|
584 |
+
);
|
585 |
+
|
586 |
+
ET_Builder_Element::set_style(
|
587 |
+
$render_slug,
|
588 |
+
array(
|
589 |
+
'selector' => $shape_selector,
|
590 |
+
'declaration' => $shapes_square_size_tablet_style,
|
591 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
592 |
+
)
|
593 |
+
);
|
594 |
+
|
595 |
+
ET_Builder_Element::set_style(
|
596 |
+
$render_slug,
|
597 |
+
array(
|
598 |
+
'selector' => $shape_selector,
|
599 |
+
'declaration' => $shapes_square_size_phone_style,
|
600 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
601 |
+
)
|
602 |
+
);
|
603 |
+
ET_Builder_Element::set_style(
|
604 |
+
$render_slug,
|
605 |
+
array(
|
606 |
+
'selector' => $shape_selector,
|
607 |
+
'declaration' => sprintf( 'margin: %1$spx 0;', ( esc_html( $shapes_square_size ) / 4 ) ),
|
608 |
+
)
|
609 |
+
);
|
610 |
+
ET_Builder_Element::set_style(
|
611 |
+
$render_slug,
|
612 |
+
array(
|
613 |
+
'selector' => $shape_selector,
|
614 |
+
'declaration' => sprintf( 'margin: %1$spx 0;', ( (int) esc_html( $shapes_square_size_tablet ) / 4 ) ),
|
615 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
616 |
+
)
|
617 |
+
);
|
618 |
+
ET_Builder_Element::set_style(
|
619 |
+
$render_slug,
|
620 |
+
array(
|
621 |
+
'selector' => $shape_selector,
|
622 |
+
'declaration' => sprintf( 'margin: %1$spx 0;', ( (int) esc_html( $shapes_square_size_phone ) / 4 ) ),
|
623 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
624 |
+
)
|
625 |
+
);
|
626 |
//before
|
627 |
+
ET_Builder_Element::set_style(
|
628 |
+
$render_slug,
|
629 |
+
array(
|
630 |
+
'selector' => '%%order_class%% .dsm_shapes_wrapper:before',
|
631 |
+
'declaration' => $shapes_square_size_before_style,
|
632 |
+
)
|
633 |
+
);
|
634 |
+
|
635 |
+
ET_Builder_Element::set_style(
|
636 |
+
$render_slug,
|
637 |
+
array(
|
638 |
+
'selector' => '%%order_class%% .dsm_shapes_wrapper:before',
|
639 |
+
'declaration' => $shapes_square_size_before_tablet_style,
|
640 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
641 |
+
)
|
642 |
+
);
|
643 |
+
|
644 |
+
ET_Builder_Element::set_style(
|
645 |
+
$render_slug,
|
646 |
+
array(
|
647 |
+
'selector' => '%%order_class%% .dsm_shapes_wrapper:before',
|
648 |
+
'declaration' => $shapes_square_size_before_phone_style,
|
649 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
650 |
+
)
|
651 |
+
);
|
652 |
|
653 |
//after
|
654 |
+
ET_Builder_Element::set_style(
|
655 |
+
$render_slug,
|
656 |
+
array(
|
657 |
+
'selector' => '%%order_class%% .dsm_shapes_wrapper:after',
|
658 |
+
'declaration' => $shapes_square_size_after_style,
|
659 |
+
)
|
660 |
+
);
|
661 |
+
ET_Builder_Element::set_style(
|
662 |
+
$render_slug,
|
663 |
+
array(
|
664 |
+
'selector' => '%%order_class%% .dsm_shapes_wrapper:after',
|
665 |
+
'declaration' => $shapes_square_size_after_tablet_style,
|
666 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
667 |
+
)
|
668 |
+
);
|
669 |
+
|
670 |
+
ET_Builder_Element::set_style(
|
671 |
+
$render_slug,
|
672 |
+
array(
|
673 |
+
'selector' => '%%order_class%% .dsm_shapes_wrapper:after',
|
674 |
+
'declaration' => $shapes_square_size_after_phone_style,
|
675 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
676 |
+
)
|
677 |
+
);
|
678 |
} else {
|
679 |
+
ET_Builder_Element::set_style(
|
680 |
+
$render_slug,
|
681 |
+
array(
|
682 |
+
'selector' => $shape_selector,
|
683 |
+
'declaration' => $shapes_square_size_style,
|
684 |
+
)
|
685 |
+
);
|
686 |
+
|
687 |
+
ET_Builder_Element::set_style(
|
688 |
+
$render_slug,
|
689 |
+
array(
|
690 |
+
'selector' => $shape_selector,
|
691 |
+
'declaration' => $shapes_square_size_tablet_style,
|
692 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
693 |
+
)
|
694 |
+
);
|
695 |
+
|
696 |
+
ET_Builder_Element::set_style(
|
697 |
+
$render_slug,
|
698 |
+
array(
|
699 |
+
'selector' => $shape_selector,
|
700 |
+
'declaration' => $shapes_square_size_phone_style,
|
701 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
702 |
+
)
|
703 |
+
);
|
704 |
}
|
705 |
|
|
|
706 |
//color
|
707 |
+
$shape_color_style = '';
|
708 |
$shape_color_tablet_style = '';
|
709 |
+
$shape_color_phone_style = '';
|
710 |
|
711 |
+
if ( $shapes_type === 'square' ) {
|
712 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
713 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
714 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
715 |
+
} elseif ( $shapes_type === 'circle' ) {
|
716 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
717 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
718 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
719 |
+
} elseif ( $shapes_type === 'rectangle' ) {
|
720 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
721 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
722 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
723 |
+
} elseif ( $shapes_type === 'triangle' ) {
|
724 |
$shape_color_style = sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color ) );
|
725 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
726 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
727 |
+
} elseif ( $shapes_type === 'oval' ) {
|
728 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
729 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
730 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
731 |
+
} elseif ( $shapes_type === 'trapezoid' ) {
|
732 |
$shape_color_style = sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color ) );
|
733 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
734 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'border-bottom-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
735 |
+
} elseif ( $shapes_type === 'parallelogram' ) {
|
736 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
737 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
738 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
739 |
+
} elseif ( $shapes_type === 'diamond_square' ) {
|
740 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
741 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
742 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
743 |
+
} elseif ( $shapes_type === 'hexagon' ) {
|
744 |
$shape_color_style = sprintf( 'background-color: %1$s;', esc_attr( $shape_color ) );
|
745 |
$shape_color_tablet_style = '' !== $shape_color_tablet ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_tablet ) ) : '';
|
746 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
750 |
$shape_color_phone_style = '' !== $shape_color_phone ? sprintf( 'background-color: %1$s;', esc_attr( $shape_color_phone ) ) : '';
|
751 |
}
|
752 |
|
753 |
+
ET_Builder_Element::set_style(
|
754 |
+
$render_slug,
|
755 |
+
array(
|
756 |
+
'selector' => $shape_selector,
|
757 |
+
'declaration' => $shape_color_style,
|
758 |
+
)
|
759 |
+
);
|
|
|
|
|
|
|
760 |
|
761 |
+
ET_Builder_Element::set_style(
|
762 |
+
$render_slug,
|
763 |
+
array(
|
764 |
+
'selector' => $shape_selector,
|
765 |
+
'declaration' => $shape_color_tablet_style,
|
766 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
767 |
+
)
|
768 |
+
);
|
769 |
|
770 |
+
ET_Builder_Element::set_style(
|
771 |
+
$render_slug,
|
772 |
+
array(
|
773 |
+
'selector' => $shape_selector,
|
774 |
+
'declaration' => $shape_color_phone_style,
|
775 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
776 |
+
)
|
777 |
+
);
|
778 |
|
779 |
// Remove automatically added classnames
|
780 |
+
$this->remove_classname(
|
781 |
+
array(
|
782 |
+
'et_pb_module',
|
783 |
+
)
|
784 |
+
);
|
785 |
|
786 |
// Render module content
|
787 |
$output = sprintf(
|
796 |
|
797 |
return $output;
|
798 |
}
|
799 |
+
public function apply_custom_margin_padding( $function_name, $slug, $type, $class, $important = false ) {
|
800 |
+
$slug_value = $this->props[ $slug ];
|
801 |
+
$slug_value_tablet = $this->props[ $slug . '_tablet' ];
|
802 |
+
$slug_value_phone = $this->props[ $slug . '_phone' ];
|
803 |
+
$slug_value_last_edited = $this->props[ $slug . '_last_edited' ];
|
804 |
+
$slug_value_responsive_active = et_pb_get_responsive_status( $slug_value_last_edited );
|
805 |
+
|
806 |
+
if ( isset( $slug_value ) && ! empty( $slug_value ) ) {
|
807 |
+
ET_Builder_Element::set_style(
|
808 |
+
$function_name,
|
809 |
+
array(
|
810 |
+
'selector' => $class,
|
811 |
+
'declaration' => et_builder_get_element_style_css( $slug_value, $type, $important ),
|
812 |
+
)
|
813 |
+
);
|
814 |
+
}
|
815 |
+
|
816 |
+
if ( isset( $slug_value_tablet ) && ! empty( $slug_value_tablet ) && $slug_value_responsive_active ) {
|
817 |
+
ET_Builder_Element::set_style(
|
818 |
+
$function_name,
|
819 |
+
array(
|
820 |
+
'selector' => $class,
|
821 |
+
'declaration' => et_builder_get_element_style_css( $slug_value_tablet, $type, $important ),
|
822 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_980' ),
|
823 |
+
)
|
824 |
+
);
|
825 |
+
}
|
826 |
+
|
827 |
+
if ( isset( $slug_value_phone ) && ! empty( $slug_value_phone ) && $slug_value_responsive_active ) {
|
828 |
+
ET_Builder_Element::set_style(
|
829 |
+
$function_name,
|
830 |
+
array(
|
831 |
+
'selector' => $class,
|
832 |
+
'declaration' => et_builder_get_element_style_css( $slug_value_phone, $type, $important ),
|
833 |
+
'media_query' => ET_Builder_Element::get_media_query( 'max_width_767' ),
|
834 |
+
)
|
835 |
+
);
|
836 |
}
|
837 |
if ( et_builder_is_hover_enabled( $slug, $this->props ) ) {
|
838 |
+
if ( isset( $this->props[ $slug . '__hover' ] ) ) {
|
839 |
+
$hover = $this->props[ $slug . '__hover' ];
|
840 |
+
ET_Builder_Element::set_style(
|
841 |
+
$function_name,
|
842 |
+
array(
|
843 |
+
'selector' => $this->add_hover_to_order_class( $class ),
|
844 |
+
'declaration' => et_builder_get_element_style_css( $hover, $type, $important ),
|
845 |
+
)
|
846 |
+
);
|
847 |
}
|
848 |
}
|
849 |
}
|
850 |
}
|
851 |
|
852 |
+
new DSM_Shapes;
|
includes/modules/TextDivider/TextDivider.php
CHANGED
@@ -6,20 +6,20 @@ class DSM_Text_Divider extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
-
'author' => 'Supreme
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Text Divider', 'dsm-supreme-modules-for-divi' );
|
16 |
-
$this->icon
|
17 |
|
18 |
$this->settings_modal_toggles = array(
|
19 |
-
'general'
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
22 |
-
'visibility'
|
23 |
),
|
24 |
),
|
25 |
'advanced' => array(
|
@@ -30,25 +30,25 @@ class DSM_Text_Divider extends ET_Builder_Module {
|
|
30 |
),
|
31 |
);
|
32 |
|
33 |
-
$style_option_name
|
34 |
$global_divider_style = ET_Global_Settings::get_value( $style_option_name );
|
35 |
|
36 |
$this->defaults = array(
|
37 |
-
'divider_style'
|
38 |
);
|
39 |
|
40 |
}
|
41 |
|
42 |
public function get_advanced_fields_config() {
|
43 |
return array(
|
44 |
-
'fonts'
|
45 |
'header' => array(
|
46 |
-
'label'
|
47 |
-
'css'
|
48 |
'main' => '%%order_class%% h1.et_pb_module_header, %%order_class%% h2.et_pb_module_header, %%order_class%% h3.et_pb_module_header, %%order_class%% h4.et_pb_module_header, %%order_class%% h5.et_pb_module_header, %%order_class%% h6.et_pb_module_header',
|
49 |
),
|
50 |
-
'font_size'
|
51 |
-
'default'
|
52 |
),
|
53 |
'line_height' => array(
|
54 |
'default' => '1em',
|
@@ -56,12 +56,12 @@ class DSM_Text_Divider extends ET_Builder_Module {
|
|
56 |
'letter_spacing' => array(
|
57 |
'default' => '0px',
|
58 |
),
|
59 |
-
'header_level'
|
60 |
'default' => 'h3',
|
61 |
),
|
62 |
),
|
63 |
),
|
64 |
-
'borders'
|
65 |
'default' => false,
|
66 |
),
|
67 |
'margin_padding' => array(
|
@@ -69,104 +69,104 @@ class DSM_Text_Divider extends ET_Builder_Module {
|
|
69 |
'important' => array( 'custom_margin' ), // needed to overwrite last module margin-bottom styling
|
70 |
),
|
71 |
),
|
72 |
-
'text'
|
73 |
'use_background_layout' => true,
|
74 |
-
'use_text_orientation'
|
75 |
-
'css'
|
76 |
'text_shadow' => '%%order_class%%',
|
77 |
),
|
78 |
-
'options'
|
79 |
'background_layout' => array(
|
80 |
'default_on_front' => 'light',
|
81 |
),
|
82 |
),
|
83 |
),
|
84 |
-
'button'
|
85 |
);
|
86 |
}
|
87 |
|
88 |
public function get_fields() {
|
89 |
return array(
|
90 |
-
'header'
|
91 |
-
'label'
|
92 |
-
'type'
|
93 |
-
'option_category'
|
94 |
-
'description'
|
95 |
-
'toggle_slug'
|
96 |
'default_on_front' => 'Divider Text',
|
97 |
),
|
98 |
-
'text_alignment'
|
99 |
'label' => esc_html__( 'Text Alignment', 'dsm-supreme-modules-for-divi' ),
|
100 |
'type' => 'select',
|
101 |
'option_category' => 'layout',
|
102 |
'options' => array(
|
103 |
-
'left'
|
104 |
'center' => esc_html__( 'Center', 'dsm-supreme-modules-for-divi' ),
|
105 |
-
'right'
|
106 |
),
|
107 |
-
'tab_slug' => 'advanced',
|
108 |
-
'toggle_slug' => 'text',
|
109 |
-
'default' => 'center',
|
110 |
-
),
|
111 |
-
'color' => array(
|
112 |
-
'default' => et_builder_accent_color(),
|
113 |
-
'label' => esc_html__( 'Color', 'dsm-supreme-modules-for-divi' ),
|
114 |
-
'type' => 'color-alpha',
|
115 |
'tab_slug' => 'advanced',
|
116 |
-
'
|
117 |
-
'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
),
|
119 |
-
'divider_style'
|
120 |
-
'label'
|
121 |
-
'type'
|
122 |
-
'option_category'
|
123 |
-
'options'
|
124 |
-
'tab_slug'
|
125 |
-
'toggle_slug'
|
126 |
-
'default'
|
127 |
),
|
128 |
'divider_position' => array(
|
129 |
'label' => esc_html__( 'Divider Position', 'dsm-supreme-modules-for-divi' ),
|
130 |
'type' => 'select',
|
131 |
'option_category' => 'layout',
|
132 |
'options' => array(
|
133 |
-
'flex-start'
|
134 |
-
'center'
|
135 |
-
'flex-end'
|
136 |
),
|
137 |
-
'tab_slug'
|
138 |
-
'toggle_slug'
|
139 |
-
'default'
|
140 |
-
),
|
141 |
-
'divider_weight' => array(
|
142 |
-
'label' => esc_html__( 'Divider Weight', 'dsm-supreme-modules-for-divi' ),
|
143 |
-
'type' => 'range',
|
144 |
-
'option_category' => 'layout',
|
145 |
-
'depends_show_if' => 'on',
|
146 |
-
'tab_slug' => 'advanced',
|
147 |
-
'toggle_slug' => 'width',
|
148 |
-
'default_unit' => 'px',
|
149 |
-
'default' => '1px',
|
150 |
),
|
151 |
-
'
|
152 |
-
'label'
|
153 |
-
'type'
|
154 |
-
'option_category'
|
155 |
-
'depends_show_if'
|
156 |
-
'tab_slug'
|
157 |
-
'toggle_slug'
|
158 |
-
'default_unit'
|
159 |
-
'default'
|
160 |
),
|
161 |
-
'
|
162 |
-
'label' => esc_html__( '
|
163 |
'type' => 'range',
|
164 |
'option_category' => 'layout',
|
|
|
165 |
'tab_slug' => 'advanced',
|
166 |
'toggle_slug' => 'width',
|
167 |
-
'description' => esc_html__( 'Define how much space should be added below the divider.', 'dsm-supreme-modules-for-divi' ),
|
168 |
-
'default' => '23px',
|
169 |
'default_unit' => 'px',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
'default_on_front' => '23px',
|
171 |
),
|
172 |
);
|
@@ -179,16 +179,16 @@ class DSM_Text_Divider extends ET_Builder_Module {
|
|
179 |
}
|
180 |
|
181 |
public function render( $attrs, $content = null, $render_slug ) {
|
182 |
-
$header
|
183 |
-
$text_alignment
|
184 |
-
$color
|
185 |
-
$height
|
186 |
-
$divider_style
|
187 |
-
$divider_position
|
188 |
-
$divider_weight
|
189 |
-
$text_gap
|
190 |
$background_layout = $this->props['background_layout'];
|
191 |
-
$header_level
|
192 |
|
193 |
$video_background = $this->video_background();
|
194 |
$parallax_image_background = $this->get_parallax_image_background();
|
@@ -200,85 +200,109 @@ class DSM_Text_Divider extends ET_Builder_Module {
|
|
200 |
}
|
201 |
|
202 |
if ( '' !== $color ) {
|
203 |
-
ET_Builder_Element::set_style(
|
204 |
-
|
205 |
-
|
206 |
-
'
|
207 |
-
|
208 |
-
|
209 |
-
|
|
|
|
|
|
|
210 |
}
|
211 |
|
212 |
if ( '' !== $divider_style ) {
|
213 |
-
ET_Builder_Element::set_style(
|
214 |
-
|
215 |
-
|
216 |
-
'
|
217 |
-
|
218 |
-
|
219 |
-
|
|
|
|
|
|
|
220 |
}
|
221 |
|
222 |
if ( '' !== $divider_weight ) {
|
223 |
-
ET_Builder_Element::set_style(
|
224 |
-
|
225 |
-
|
226 |
-
'
|
227 |
-
|
228 |
-
|
229 |
-
|
|
|
|
|
|
|
230 |
}
|
231 |
|
232 |
if ( '10px' !== $text_gap ) {
|
233 |
-
ET_Builder_Element::set_style(
|
234 |
-
|
235 |
-
|
236 |
-
'
|
237 |
-
|
238 |
-
|
239 |
-
|
|
|
|
|
|
|
240 |
}
|
241 |
|
242 |
if ( 'left' === $text_alignment ) {
|
243 |
-
ET_Builder_Element::set_style(
|
244 |
-
|
245 |
-
|
246 |
-
'
|
247 |
-
|
248 |
-
|
249 |
-
|
|
|
|
|
|
|
250 |
}
|
251 |
|
252 |
if ( 'right' === $text_alignment ) {
|
253 |
-
ET_Builder_Element::set_style(
|
254 |
-
|
255 |
-
|
256 |
-
'
|
257 |
-
|
258 |
-
|
259 |
-
|
|
|
|
|
|
|
260 |
}
|
261 |
|
262 |
if ( 'center' !== $divider_position ) {
|
263 |
-
ET_Builder_Element::set_style(
|
264 |
-
|
265 |
-
|
266 |
-
'
|
267 |
-
|
268 |
-
|
269 |
-
|
|
|
|
|
|
|
270 |
}
|
271 |
|
272 |
if ( '' !== $height ) {
|
273 |
-
ET_Builder_Element::set_style(
|
274 |
-
|
275 |
-
|
276 |
-
'
|
277 |
-
|
278 |
-
|
279 |
-
|
|
|
|
|
|
|
280 |
}
|
281 |
-
|
282 |
$class = "dsm-text-divider-wrapper dsm-text-divider-align-{$text_alignment} et_pb_bg_layout_{$background_layout}";
|
283 |
|
284 |
// Render module content
|
@@ -302,4 +326,4 @@ class DSM_Text_Divider extends ET_Builder_Module {
|
|
302 |
}
|
303 |
}
|
304 |
|
305 |
-
new DSM_Text_Divider;
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
+
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
public function init() {
|
15 |
$this->name = esc_html__( 'Supreme Text Divider', 'dsm-supreme-modules-for-divi' );
|
16 |
+
$this->icon = 'd';
|
17 |
|
18 |
$this->settings_modal_toggles = array(
|
19 |
+
'general' => array(
|
20 |
'toggles' => array(
|
21 |
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
22 |
+
'visibility' => esc_html__( 'Visibility', 'dsm-supreme-modules-for-divi' ),
|
23 |
),
|
24 |
),
|
25 |
'advanced' => array(
|
30 |
),
|
31 |
);
|
32 |
|
33 |
+
$style_option_name = sprintf( '%1$s-divider_style', $this->slug );
|
34 |
$global_divider_style = ET_Global_Settings::get_value( $style_option_name );
|
35 |
|
36 |
$this->defaults = array(
|
37 |
+
'divider_style' => $global_divider_style && '' !== $global_divider_style ? $global_divider_style : 'solid',
|
38 |
);
|
39 |
|
40 |
}
|
41 |
|
42 |
public function get_advanced_fields_config() {
|
43 |
return array(
|
44 |
+
'fonts' => array(
|
45 |
'header' => array(
|
46 |
+
'label' => esc_html__( 'Divider', 'dsm-supreme-modules-for-divi' ),
|
47 |
+
'css' => array(
|
48 |
'main' => '%%order_class%% h1.et_pb_module_header, %%order_class%% h2.et_pb_module_header, %%order_class%% h3.et_pb_module_header, %%order_class%% h4.et_pb_module_header, %%order_class%% h5.et_pb_module_header, %%order_class%% h6.et_pb_module_header',
|
49 |
),
|
50 |
+
'font_size' => array(
|
51 |
+
'default' => '22px',
|
52 |
),
|
53 |
'line_height' => array(
|
54 |
'default' => '1em',
|
56 |
'letter_spacing' => array(
|
57 |
'default' => '0px',
|
58 |
),
|
59 |
+
'header_level' => array(
|
60 |
'default' => 'h3',
|
61 |
),
|
62 |
),
|
63 |
),
|
64 |
+
'borders' => array(
|
65 |
'default' => false,
|
66 |
),
|
67 |
'margin_padding' => array(
|
69 |
'important' => array( 'custom_margin' ), // needed to overwrite last module margin-bottom styling
|
70 |
),
|
71 |
),
|
72 |
+
'text' => array(
|
73 |
'use_background_layout' => true,
|
74 |
+
'use_text_orientation' => false,
|
75 |
+
'css' => array(
|
76 |
'text_shadow' => '%%order_class%%',
|
77 |
),
|
78 |
+
'options' => array(
|
79 |
'background_layout' => array(
|
80 |
'default_on_front' => 'light',
|
81 |
),
|
82 |
),
|
83 |
),
|
84 |
+
'button' => false,
|
85 |
);
|
86 |
}
|
87 |
|
88 |
public function get_fields() {
|
89 |
return array(
|
90 |
+
'header' => array(
|
91 |
+
'label' => esc_html__( 'Divider Text', 'dsm-supreme-modules-for-divi' ),
|
92 |
+
'type' => 'text',
|
93 |
+
'option_category' => 'basic_option',
|
94 |
+
'description' => esc_html__( 'The text of divider will appear in between the divider.', 'dsm-supreme-modules-for-divi' ),
|
95 |
+
'toggle_slug' => 'main_content',
|
96 |
'default_on_front' => 'Divider Text',
|
97 |
),
|
98 |
+
'text_alignment' => array(
|
99 |
'label' => esc_html__( 'Text Alignment', 'dsm-supreme-modules-for-divi' ),
|
100 |
'type' => 'select',
|
101 |
'option_category' => 'layout',
|
102 |
'options' => array(
|
103 |
+
'left' => esc_html__( 'Left', 'dsm-supreme-modules-for-divi' ),
|
104 |
'center' => esc_html__( 'Center', 'dsm-supreme-modules-for-divi' ),
|
105 |
+
'right' => esc_html__( 'Right', 'dsm-supreme-modules-for-divi' ),
|
106 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
'tab_slug' => 'advanced',
|
108 |
+
'toggle_slug' => 'text',
|
109 |
+
'default' => 'center',
|
110 |
+
),
|
111 |
+
'color' => array(
|
112 |
+
'default' => et_builder_accent_color(),
|
113 |
+
'label' => esc_html__( 'Color', 'dsm-supreme-modules-for-divi' ),
|
114 |
+
'type' => 'color-alpha',
|
115 |
+
'tab_slug' => 'advanced',
|
116 |
+
'description' => esc_html__( 'This will adjust the color of the 1px divider line.', 'dsm-supreme-modules-for-divi' ),
|
117 |
+
'toggle_slug' => 'color',
|
118 |
),
|
119 |
+
'divider_style' => array(
|
120 |
+
'label' => esc_html__( 'Divider Style', 'dsm-supreme-modules-for-divi' ),
|
121 |
+
'type' => 'select',
|
122 |
+
'option_category' => 'layout',
|
123 |
+
'options' => et_builder_get_border_styles(),
|
124 |
+
'tab_slug' => 'advanced',
|
125 |
+
'toggle_slug' => 'styles',
|
126 |
+
'default' => $this->defaults['divider_style'],
|
127 |
),
|
128 |
'divider_position' => array(
|
129 |
'label' => esc_html__( 'Divider Position', 'dsm-supreme-modules-for-divi' ),
|
130 |
'type' => 'select',
|
131 |
'option_category' => 'layout',
|
132 |
'options' => array(
|
133 |
+
'flex-start' => esc_html__( 'Top', 'dsm-supreme-modules-for-divi' ),
|
134 |
+
'center' => esc_html__( 'Vertically Centered', 'dsm-supreme-modules-for-divi' ),
|
135 |
+
'flex-end' => esc_html__( 'Bottom', 'dsm-supreme-modules-for-divi' ),
|
136 |
),
|
137 |
+
'tab_slug' => 'advanced',
|
138 |
+
'toggle_slug' => 'styles',
|
139 |
+
'default' => 'center',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
),
|
141 |
+
'divider_weight' => array(
|
142 |
+
'label' => esc_html__( 'Divider Weight', 'dsm-supreme-modules-for-divi' ),
|
143 |
+
'type' => 'range',
|
144 |
+
'option_category' => 'layout',
|
145 |
+
'depends_show_if' => 'on',
|
146 |
+
'tab_slug' => 'advanced',
|
147 |
+
'toggle_slug' => 'width',
|
148 |
+
'default_unit' => 'px',
|
149 |
+
'default' => '1px',
|
150 |
),
|
151 |
+
'text_gap' => array(
|
152 |
+
'label' => esc_html__( 'Text Gap', 'dsm-supreme-modules-for-divi' ),
|
153 |
'type' => 'range',
|
154 |
'option_category' => 'layout',
|
155 |
+
'depends_show_if' => 'on',
|
156 |
'tab_slug' => 'advanced',
|
157 |
'toggle_slug' => 'width',
|
|
|
|
|
158 |
'default_unit' => 'px',
|
159 |
+
'default' => '10px',
|
160 |
+
),
|
161 |
+
'height' => array(
|
162 |
+
'label' => esc_html__( 'Height', 'dsm-supreme-modules-for-divi' ),
|
163 |
+
'type' => 'range',
|
164 |
+
'option_category' => 'layout',
|
165 |
+
'tab_slug' => 'advanced',
|
166 |
+
'toggle_slug' => 'width',
|
167 |
+
'description' => esc_html__( 'Define how much space should be added below the divider.', 'dsm-supreme-modules-for-divi' ),
|
168 |
+
'default' => '23px',
|
169 |
+
'default_unit' => 'px',
|
170 |
'default_on_front' => '23px',
|
171 |
),
|
172 |
);
|
179 |
}
|
180 |
|
181 |
public function render( $attrs, $content = null, $render_slug ) {
|
182 |
+
$header = $this->props['header'];
|
183 |
+
$text_alignment = $this->props['text_alignment'];
|
184 |
+
$color = $this->props['color'];
|
185 |
+
$height = $this->props['height'];
|
186 |
+
$divider_style = $this->props['divider_style'];
|
187 |
+
$divider_position = $this->props['divider_position'];
|
188 |
+
$divider_weight = $this->props['divider_weight'];
|
189 |
+
$text_gap = $this->props['text_gap'];
|
190 |
$background_layout = $this->props['background_layout'];
|
191 |
+
$header_level = $this->props['header_level'];
|
192 |
|
193 |
$video_background = $this->video_background();
|
194 |
$parallax_image_background = $this->get_parallax_image_background();
|
200 |
}
|
201 |
|
202 |
if ( '' !== $color ) {
|
203 |
+
ET_Builder_Element::set_style(
|
204 |
+
$render_slug,
|
205 |
+
array(
|
206 |
+
'selector' => '%%order_class%% .dsm-divider',
|
207 |
+
'declaration' => sprintf(
|
208 |
+
'border-top-color: %1$s;',
|
209 |
+
esc_html( $color )
|
210 |
+
),
|
211 |
+
)
|
212 |
+
);
|
213 |
}
|
214 |
|
215 |
if ( '' !== $divider_style ) {
|
216 |
+
ET_Builder_Element::set_style(
|
217 |
+
$render_slug,
|
218 |
+
array(
|
219 |
+
'selector' => '%%order_class%% .dsm-divider',
|
220 |
+
'declaration' => sprintf(
|
221 |
+
'border-top-style: %1$s;',
|
222 |
+
esc_attr( $divider_style )
|
223 |
+
),
|
224 |
+
)
|
225 |
+
);
|
226 |
}
|
227 |
|
228 |
if ( '' !== $divider_weight ) {
|
229 |
+
ET_Builder_Element::set_style(
|
230 |
+
$render_slug,
|
231 |
+
array(
|
232 |
+
'selector' => '%%order_class%% .dsm-divider',
|
233 |
+
'declaration' => sprintf(
|
234 |
+
'border-top-width: %1$s;',
|
235 |
+
esc_attr( $divider_weight )
|
236 |
+
),
|
237 |
+
)
|
238 |
+
);
|
239 |
}
|
240 |
|
241 |
if ( '10px' !== $text_gap ) {
|
242 |
+
ET_Builder_Element::set_style(
|
243 |
+
$render_slug,
|
244 |
+
array(
|
245 |
+
'selector' => '%%order_class%% .dsm-text-divider-header',
|
246 |
+
'declaration' => sprintf(
|
247 |
+
'margin: 0 %1$s;',
|
248 |
+
esc_attr( $text_gap )
|
249 |
+
),
|
250 |
+
)
|
251 |
+
);
|
252 |
}
|
253 |
|
254 |
if ( 'left' === $text_alignment ) {
|
255 |
+
ET_Builder_Element::set_style(
|
256 |
+
$render_slug,
|
257 |
+
array(
|
258 |
+
'selector' => '%%order_class%% .dsm-text-divider-header',
|
259 |
+
'declaration' => sprintf(
|
260 |
+
'margin: 0 %1$s 0 0;',
|
261 |
+
esc_attr( $text_gap )
|
262 |
+
),
|
263 |
+
)
|
264 |
+
);
|
265 |
}
|
266 |
|
267 |
if ( 'right' === $text_alignment ) {
|
268 |
+
ET_Builder_Element::set_style(
|
269 |
+
$render_slug,
|
270 |
+
array(
|
271 |
+
'selector' => '%%order_class%% .dsm-text-divider-header',
|
272 |
+
'declaration' => sprintf(
|
273 |
+
'margin: 0 0 0 %1$s;',
|
274 |
+
esc_attr( $text_gap )
|
275 |
+
),
|
276 |
+
)
|
277 |
+
);
|
278 |
}
|
279 |
|
280 |
if ( 'center' !== $divider_position ) {
|
281 |
+
ET_Builder_Element::set_style(
|
282 |
+
$render_slug,
|
283 |
+
array(
|
284 |
+
'selector' => '%%order_class%% .dsm-text-divider-wrapper',
|
285 |
+
'declaration' => sprintf(
|
286 |
+
'align-items: %1$s;',
|
287 |
+
esc_attr( $divider_position )
|
288 |
+
),
|
289 |
+
)
|
290 |
+
);
|
291 |
}
|
292 |
|
293 |
if ( '' !== $height ) {
|
294 |
+
ET_Builder_Element::set_style(
|
295 |
+
$render_slug,
|
296 |
+
array(
|
297 |
+
'selector' => '%%order_class%% .dsm-text-divider-wrapper',
|
298 |
+
'declaration' => sprintf(
|
299 |
+
'height: %1$s;',
|
300 |
+
esc_attr( et_builder_process_range_value( $height ) )
|
301 |
+
),
|
302 |
+
)
|
303 |
+
);
|
304 |
}
|
305 |
+
|
306 |
$class = "dsm-text-divider-wrapper dsm-text-divider-align-{$text_alignment} et_pb_bg_layout_{$background_layout}";
|
307 |
|
308 |
// Render module content
|
326 |
}
|
327 |
}
|
328 |
|
329 |
+
new DSM_Text_Divider;
|
includes/modules/TypingEffect/TypingEffect.php
CHANGED
@@ -6,26 +6,26 @@ class DSM_TypingEffect extends ET_Builder_Module {
|
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
-
'module_uri' => 'https://
|
10 |
'author' => 'Divi Supreme',
|
11 |
-
'author_uri' => 'https://
|
12 |
);
|
13 |
|
14 |
|
15 |
public function init() {
|
16 |
$this->name = esc_html__( 'Supreme Typing', 'dsm-supreme-modules-for-divi' );
|
17 |
-
$this->icon
|
18 |
// Toggle settings
|
19 |
-
$this->settings_modal_toggles
|
20 |
'general' => array(
|
21 |
'toggles' => array(
|
22 |
-
'main_content'
|
23 |
'typing_option' => esc_html__( 'Typing Options', 'dsm-supreme-modules-for-divi' ),
|
24 |
),
|
25 |
),
|
26 |
'advanced' => array(
|
27 |
'toggles' => array(
|
28 |
-
'typing_styles'
|
29 |
'title' => esc_html__( 'Typing Styles', 'dsm-supreme-modules-pro-for-divi' ),
|
30 |
'priority' => 56,
|
31 |
),
|
@@ -38,13 +38,13 @@ class DSM_TypingEffect extends ET_Builder_Module {
|
|
38 |
return array(
|
39 |
'fonts' => array(
|
40 |
'header' => array(
|
41 |
-
'label'
|
42 |
-
'css'
|
43 |
-
'main'
|
44 |
'text_align' => '%%order_class%%',
|
45 |
),
|
46 |
-
'font_size'
|
47 |
-
'default'
|
48 |
),
|
49 |
'line_height' => array(
|
50 |
'default' => '1em',
|
@@ -52,37 +52,37 @@ class DSM_TypingEffect extends ET_Builder_Module {
|
|
52 |
'letter_spacing' => array(
|
53 |
'default' => '0px',
|
54 |
),
|
55 |
-
'header_level'
|
56 |
'default' => 'h1',
|
57 |
),
|
58 |
),
|
59 |
),
|
60 |
'text' => array(
|
61 |
-
'use_text_orientation'
|
62 |
'use_background_layout' => true,
|
63 |
-
'css'
|
64 |
'text_shadow' => '%%order_class%%',
|
65 |
),
|
66 |
-
'options'
|
67 |
'background_layout' => array(
|
68 |
'default' => 'light',
|
69 |
),
|
70 |
),
|
71 |
-
'toggle_slug'
|
72 |
),
|
73 |
-
'borders'
|
74 |
'default' => array(
|
75 |
'css' => array(
|
76 |
'main' => array(
|
77 |
-
'border_radii' =>
|
78 |
-
'border_styles' =>
|
79 |
),
|
80 |
),
|
81 |
),
|
82 |
),
|
83 |
-
'box_shadow'
|
84 |
-
'default'
|
85 |
-
'css'
|
86 |
'main' => '%%order_class%%',
|
87 |
),
|
88 |
),
|
@@ -92,114 +92,120 @@ class DSM_TypingEffect extends ET_Builder_Module {
|
|
92 |
|
93 |
public function get_fields() {
|
94 |
return array(
|
95 |
-
'typing_effect'
|
96 |
-
'label'
|
97 |
-
'type'
|
98 |
-
'option_category'
|
99 |
-
'description'
|
100 |
'default_on_front' => 'Design Divi sites with|Divi|Supreme',
|
101 |
-
'toggle_slug'
|
102 |
),
|
103 |
-
'typing_loop'
|
104 |
-
'label'
|
105 |
-
'type'
|
106 |
-
'option_category'
|
107 |
-
'default'
|
108 |
'default_on_front' => 'on',
|
109 |
-
'options'
|
110 |
-
'off'
|
111 |
-
'on'
|
112 |
),
|
113 |
-
'description'
|
114 |
-
'toggle_slug'
|
115 |
),
|
116 |
-
'typing_speed'
|
117 |
-
'label'
|
118 |
-
'type'
|
119 |
-
'option_category'
|
120 |
-
'default'
|
121 |
'default_on_front' => '100ms',
|
122 |
-
'default_unit'
|
123 |
-
'range_settings'
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
),
|
128 |
-
'toggle_slug'
|
129 |
),
|
130 |
-
'typing_backspeed'
|
131 |
-
'label'
|
132 |
-
'type'
|
133 |
-
'option_category'
|
134 |
-
'default'
|
135 |
'default_on_front' => '50ms',
|
136 |
-
'default_unit'
|
137 |
-
'range_settings'
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
),
|
142 |
-
'toggle_slug'
|
143 |
),
|
144 |
-
'typing_backdelay'
|
145 |
-
'label'
|
146 |
-
'type'
|
147 |
-
'option_category'
|
148 |
-
'default'
|
149 |
'default_on_front' => '700ms',
|
150 |
-
'range_settings'
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
),
|
155 |
-
'description'
|
156 |
-
'toggle_slug'
|
157 |
),
|
158 |
'typing_cursor_color' => array(
|
159 |
-
'label'
|
160 |
-
'type'
|
161 |
-
'custom_color'
|
162 |
-
'tab_slug'
|
163 |
-
'toggle_slug'
|
164 |
),
|
165 |
);
|
166 |
}
|
167 |
|
168 |
public function render( $attrs, $content = null, $render_slug ) {
|
169 |
-
$typing_effect
|
170 |
-
$typing_loop
|
171 |
-
$typing_speed
|
172 |
-
$typing_backspeed
|
173 |
-
$typing_backdelay
|
174 |
$typing_cursor_color = $this->props['typing_cursor_color'];
|
175 |
-
$background_layout
|
176 |
-
$header_level
|
177 |
|
178 |
if ( '' !== $typing_effect ) {
|
179 |
-
$typing_effect = sprintf(
|
|
|
180 |
et_pb_process_header_level( $header_level, 'h1' ),
|
181 |
-
htmlspecialchars($typing_effect, ENT_QUOTES),
|
182 |
-
esc_attr(" data-dsm-typing-speed={$typing_speed} data-dsm-typing-backspeed={$typing_backspeed} data-dsm-typing-backdelay={$typing_backdelay}"),
|
183 |
-
( 'off' !== $typing_loop ? esc_attr(' data-dsm-typing-loop=true') : esc_attr(' data-dsm-typing-loop=false') )
|
184 |
);
|
185 |
}
|
186 |
|
187 |
if ( '' !== $typing_cursor_color ) {
|
188 |
-
ET_Builder_Element::set_style(
|
189 |
-
|
190 |
-
|
191 |
-
'
|
192 |
-
|
193 |
-
|
194 |
-
|
|
|
|
|
|
|
195 |
}
|
196 |
|
197 |
-
$this->add_classname(
|
198 |
-
|
199 |
-
|
200 |
-
|
|
|
|
|
201 |
|
202 |
-
wp_enqueue_script('dsm-typed');
|
203 |
|
204 |
// Render module content
|
205 |
$output = sprintf(
|
@@ -211,4 +217,4 @@ class DSM_TypingEffect extends ET_Builder_Module {
|
|
211 |
}
|
212 |
}
|
213 |
|
214 |
-
new DSM_TypingEffect;
|
6 |
public $vb_support = 'on';
|
7 |
|
8 |
protected $module_credits = array(
|
9 |
+
'module_uri' => 'https://divisupreme.com/',
|
10 |
'author' => 'Divi Supreme',
|
11 |
+
'author_uri' => 'https://divisupreme.com/',
|
12 |
);
|
13 |
|
14 |
|
15 |
public function init() {
|
16 |
$this->name = esc_html__( 'Supreme Typing', 'dsm-supreme-modules-for-divi' );
|
17 |
+
$this->icon = 'j';
|
18 |
// Toggle settings
|
19 |
+
$this->settings_modal_toggles = array(
|
20 |
'general' => array(
|
21 |
'toggles' => array(
|
22 |
+
'main_content' => esc_html__( 'Text', 'dsm-supreme-modules-for-divi' ),
|
23 |
'typing_option' => esc_html__( 'Typing Options', 'dsm-supreme-modules-for-divi' ),
|
24 |
),
|
25 |
),
|
26 |
'advanced' => array(
|
27 |
'toggles' => array(
|
28 |
+
'typing_styles' => array(
|
29 |
'title' => esc_html__( 'Typing Styles', 'dsm-supreme-modules-pro-for-divi' ),
|
30 |
'priority' => 56,
|
31 |
),
|
38 |
return array(
|
39 |
'fonts' => array(
|
40 |
'header' => array(
|
41 |
+
'label' => esc_html__( 'Main', 'dsm-supreme-modules-for-divi' ),
|
42 |
+
'css' => array(
|
43 |
+
'main' => '%%order_class%% h1.et_pb_module_header, %%order_class%% h2.et_pb_module_header, %%order_class%% h3.et_pb_module_header, %%order_class%% h4.et_pb_module_header, %%order_class%% h5.et_pb_module_header, %%order_class%% h6.et_pb_module_header',
|
44 |
'text_align' => '%%order_class%%',
|
45 |
),
|
46 |
+
'font_size' => array(
|
47 |
+
'default' => '30px',
|
48 |
),
|
49 |
'line_height' => array(
|
50 |
'default' => '1em',
|
52 |
'letter_spacing' => array(
|
53 |
'default' => '0px',
|
54 |
),
|
55 |
+
'header_level' => array(
|
56 |
'default' => 'h1',
|
57 |
),
|
58 |
),
|
59 |
),
|
60 |
'text' => array(
|
61 |
+
'use_text_orientation' => false,
|
62 |
'use_background_layout' => true,
|
63 |
+
'css' => array(
|
64 |
'text_shadow' => '%%order_class%%',
|
65 |
),
|
66 |
+
'options' => array(
|
67 |
'background_layout' => array(
|
68 |
'default' => 'light',
|
69 |
),
|
70 |
),
|
71 |
+
'toggle_slug' => 'header',
|
72 |
),
|
73 |
+
'borders' => array(
|
74 |
'default' => array(
|
75 |
'css' => array(
|
76 |
'main' => array(
|
77 |
+
'border_radii' => '%%order_class%%',
|
78 |
+
'border_styles' => '%%order_class%%',
|
79 |
),
|
80 |
),
|
81 |
),
|
82 |
),
|
83 |
+
'box_shadow' => array(
|
84 |
+
'default' => array(
|
85 |
+
'css' => array(
|
86 |
'main' => '%%order_class%%',
|
87 |
),
|
88 |
),
|
92 |
|
93 |
public function get_fields() {
|
94 |
return array(
|
95 |
+
'typing_effect' => array(
|
96 |
+
'label' => esc_html__( 'Typing Effect Text', 'dsm-supreme-modules-pro-for-divi' ),
|
97 |
+
'type' => 'text',
|
98 |
+
'option_category' => 'basic_option',
|
99 |
+
'description' => esc_html__( 'The title of your Typing Effect Text. Use "|" as a separator. eg Word One|Text Two|Divi 3', 'dsm-supreme-modules-pro-for-divi' ),
|
100 |
'default_on_front' => 'Design Divi sites with|Divi|Supreme',
|
101 |
+
'toggle_slug' => 'main_content',
|
102 |
),
|
103 |
+
'typing_loop' => array(
|
104 |
+
'label' => esc_html__( 'Use Loop', 'dsm-supreme-modules-for-divi' ),
|
105 |
+
'type' => 'yes_no_button',
|
106 |
+
'option_category' => 'configuration',
|
107 |
+
'default' => 'on',
|
108 |
'default_on_front' => 'on',
|
109 |
+
'options' => array(
|
110 |
+
'off' => esc_html__( 'No', 'dsm-supreme-modules-for-divi' ),
|
111 |
+
'on' => esc_html__( 'Yes', 'dsm-supreme-modules-for-divi' ),
|
112 |
),
|
113 |
+
'description' => esc_html__( 'If enabled, typing effect will loop infinite.', 'dsm-supreme-modules-for-divi' ),
|
114 |
+
'toggle_slug' => 'typing_option',
|
115 |
),
|
116 |
+
'typing_speed' => array(
|
117 |
+
'label' => esc_html__( 'Typing Speed (in ms)', 'dsm-supreme-modules-for-divi' ),
|
118 |
+
'type' => 'range',
|
119 |
+
'option_category' => 'configuration',
|
120 |
+
'default' => '100ms',
|
121 |
'default_on_front' => '100ms',
|
122 |
+
'default_unit' => 'ms',
|
123 |
+
'range_settings' => array(
|
124 |
+
'min' => '10',
|
125 |
+
'max' => '3000',
|
126 |
+
'step' => '1',
|
127 |
),
|
128 |
+
'toggle_slug' => 'typing_option',
|
129 |
),
|
130 |
+
'typing_backspeed' => array(
|
131 |
+
'label' => esc_html__( 'Typing Backspeed (in ms)', 'dsm-supreme-modules-for-divi' ),
|
132 |
+
'type' => 'range',
|
133 |
+
'option_category' => 'configuration',
|
134 |
+
'default' => '50ms',
|
135 |
'default_on_front' => '50ms',
|
136 |
+
'default_unit' => 'ms',
|
137 |
+
'range_settings' => array(
|
138 |
+
'min' => '1',
|
139 |
+
'max' => '300',
|
140 |
+
'step' => '1',
|
141 |
),
|
142 |
+
'toggle_slug' => 'typing_option',
|
143 |
),
|
144 |
+
'typing_backdelay' => array(
|
145 |
+
'label' => esc_html__( 'Back delay (in ms)', 'dsm-supreme-modules-for-divi' ),
|
146 |
+
'type' => 'range',
|
147 |
+
'option_category' => 'configuration',
|
148 |
+
'default' => '700ms',
|
149 |
'default_on_front' => '700ms',
|
150 |
+
'range_settings' => array(
|
151 |
+
'min' => '200',
|
152 |
+
'max' => '2000',
|
153 |
+
'step' => '100',
|
154 |
),
|
155 |
+
'description' => esc_html__( 'Time before backspacing', 'dsm-supreme-modules-for-divi' ),
|
156 |
+
'toggle_slug' => 'typing_option',
|
157 |
),
|
158 |
'typing_cursor_color' => array(
|
159 |
+
'label' => esc_html__( 'Cursor Color', 'dsm-supreme-modules-for-divi' ),
|
160 |
+
'type' => 'color-alpha',
|
161 |
+
'custom_color' => true,
|
162 |
+
'tab_slug' => 'advanced',
|
163 |
+
'toggle_slug' => 'typing_styles',
|
164 |
),
|
165 |
);
|
166 |
}
|
167 |
|
168 |
public function render( $attrs, $content = null, $render_slug ) {
|
169 |
+
$typing_effect = $this->props['typing_effect'];
|
170 |
+
$typing_loop = $this->props['typing_loop'];
|
171 |
+
$typing_speed = $this->props['typing_speed'];
|
172 |
+
$typing_backspeed = $this->props['typing_backspeed'];
|
173 |
+
$typing_backdelay = $this->props['typing_backdelay'];
|
174 |
$typing_cursor_color = $this->props['typing_cursor_color'];
|
175 |
+
$background_layout = $this->props['background_layout'];
|
176 |
+
$header_level = $this->props['header_level'];
|
177 |
|
178 |
if ( '' !== $typing_effect ) {
|
179 |
+
$typing_effect = sprintf(
|
180 |
+
'<%1$s class="dsm-typing-effect et_pb_module_header"><span class="dsm-typing" data-dsm-typing-strings="%2$s"%3$s%4$s></span></%1$s>',
|
181 |
et_pb_process_header_level( $header_level, 'h1' ),
|
182 |
+
htmlspecialchars( $typing_effect, ENT_QUOTES ),
|
183 |
+
esc_attr( " data-dsm-typing-speed={$typing_speed} data-dsm-typing-backspeed={$typing_backspeed} data-dsm-typing-backdelay={$typing_backdelay}" ),
|
184 |
+
( 'off' !== $typing_loop ? esc_attr( ' data-dsm-typing-loop=true' ) : esc_attr( ' data-dsm-typing-loop=false' ) )
|
185 |
);
|
186 |
}
|
187 |
|
188 |
if ( '' !== $typing_cursor_color ) {
|
189 |
+
ET_Builder_Element::set_style(
|
190 |
+
$render_slug,
|
191 |
+
array(
|
192 |
+
'selector' => '%%order_class%% .dsm-typing-effect .typed-cursor',
|
193 |
+
'declaration' => sprintf(
|
194 |
+
'color: %1$s;',
|
195 |
+
esc_html( $typing_cursor_color )
|
196 |
+
),
|
197 |
+
)
|
198 |
+
);
|
199 |
}
|
200 |
|
201 |
+
$this->add_classname(
|
202 |
+
array(
|
203 |
+
"et_pb_bg_layout_{$background_layout}",
|
204 |
+
$this->get_text_orientation_classname(),
|
205 |
+
)
|
206 |
+
);
|
207 |
|
208 |
+
wp_enqueue_script( 'dsm-typed' );
|
209 |
|
210 |
// Render module content
|
211 |
$output = sprintf(
|
217 |
}
|
218 |
}
|
219 |
|
220 |
+
new DSM_TypingEffect;
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: https://suprememodules.com/
|
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.4
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 2.0.
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -49,7 +49,7 @@ Many more Divi Modules and Extensions coming soon...
|
|
49 |
View [Demo for Divi Supreme](https://suprememodules.com/) or [Demo for Divi Supreme Pro](https://divisupreme.com/features/).
|
50 |
|
51 |
= Divi Supreme Pro =
|
52 |
-
[GO Pro](https://divisupreme.com/) Over
|
53 |
|
54 |
= About Divi Supreme =
|
55 |
Divi Supreme is featured on [ElegantThemes](https://www.elegantthemes.com/blog/divi-resources/divi-plugin-highlight-divi-supreme). Divi is a great tool for building website, but without proper addons it might take more time and money. Divi's mission is to help users design websites in the easiest, fastest and most streamlined way.
|
@@ -108,6 +108,15 @@ This is a common question that we get asked here every now and then which is why
|
|
108 |
|
109 |
|
110 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
= 2.0.1 – 09.04.2020 =
|
112 |
* Fixed: Divi Before After Image Slider module $animation_style var not found.
|
113 |
|
5 |
Requires at least: 4.5
|
6 |
Tested up to: 5.4
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 2.0.3
|
9 |
License: GPLv2
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
49 |
View [Demo for Divi Supreme](https://suprememodules.com/) or [Demo for Divi Supreme Pro](https://divisupreme.com/features/).
|
50 |
|
51 |
= Divi Supreme Pro =
|
52 |
+
[GO Pro](https://divisupreme.com/) Over 40+ Premium Divi Modules and counting to help you speed up your workflow. Packed with everything you need to build amazing website without any effort. Whether you're just starting out with web design or are an accomplished developer with multiple personal and client projects to think about, Divi Supreme Pro will significantly improve the quality of your design work. With 30+ premium Divi modules and Divi extensions to choose from, this plugin is exactly what you need to extend the functionality of your favorite page builder.
|
53 |
|
54 |
= About Divi Supreme =
|
55 |
Divi Supreme is featured on [ElegantThemes](https://www.elegantthemes.com/blog/divi-resources/divi-plugin-highlight-divi-supreme). Divi is a great tool for building website, but without proper addons it might take more time and money. Divi's mission is to help users design websites in the easiest, fastest and most streamlined way.
|
108 |
|
109 |
|
110 |
== Changelog ==
|
111 |
+
= 2.0.3 – 10.04.2020 =
|
112 |
+
* Enhanced: Divi Shapes Module Padding rendering issue.
|
113 |
+
* Enhanced: Overall improvements in Divi Shapes Module.
|
114 |
+
* Enhanced: Modules PHP files has been formatted.
|
115 |
+
|
116 |
+
= 2.0.2 – 09.04.2020 =
|
117 |
+
* Enhanced: Divi Business Hours Margin/Padding.
|
118 |
+
* Fixed: Divi Shapes Module Margin/Padding rendering issue in Visual Builder.
|
119 |
+
|
120 |
= 2.0.1 – 09.04.2020 =
|
121 |
* Fixed: Divi Before After Image Slider module $animation_style var not found.
|
122 |
|
scripts/builder-bundle.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(e){var t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,r),n.l=!0,n.exports}r.m=e,r.c=t,r.d=function(e,t,o){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:o})},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=142)}([function(e,t){e.exports=React},function(e,t,r){"use strict";t.__esModule=!0,t.default=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t,r){"use strict";t.__esModule=!0;var o,n=r(112),a=(o=n)&&o.__esModule?o:{default:o};t.default=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==("undefined"===typeof t?"undefined":(0,a.default)(t))&&"function"!==typeof t?e:t}},function(e,t,r){"use strict";t.__esModule=!0;var o=i(r(193)),n=i(r(197)),a=i(r(112));function i(e){return e&&e.__esModule?e:{default:e}}t.default=function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+("undefined"===typeof t?"undefined":(0,a.default)(t)));e.prototype=(0,n.default)(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(o.default?(0,o.default)(e,t):e.__proto__=t)}},function(e,t,r){"use strict";t.__esModule=!0;var o,n=r(201),a=(o=n)&&o.__esModule?o:{default:o};t.default=a.default||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e}},function(e,t){var r=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=r)},function(e,t,r){var o=r(64)("wks"),n=r(39),a=r(5).Symbol,i="function"==typeof a;(e.exports=function(e){return o[e]||(o[e]=i&&a[e]||(i?a:n)("Symbol."+e))}).store=o},function(e,t){var r=e.exports={version:"2.6.11"};"number"==typeof __e&&(__e=r)},function(e,t,r){"use strict";t.__esModule=!0,t.default=void 0;var o,n,a=d(r(1)),i=d(r(2)),s=d(r(3)),c=r(0),l=d(c),u=d(r(25));function d(e){return e&&e.__esModule?e:{default:e}}var p=(n=o=function(e){function t(){var r,o,n;(0,a.default)(this,t);for(var s=arguments.length,c=Array(s),l=0;l<s;l++)c[l]=arguments[l];return r=o=(0,i.default)(this,e.call.apply(e,[this].concat(c))),o.state={},o.handleReady=function(e){o.setState({api:e},o.handleParse)},o.handleContainer=function(e){o.setState({container:e},o.handleParse)},o.handleParse=function(){var e=o.state,t=e.api,r=e.container;t&&r&&t.parse(r)},n=r,(0,i.default)(o,n)}return(0,s.default)(t,e),t.prototype.render=function(){var e=this.props,t=e.className,r=e.children;return l.default.createElement("div",{className:t,ref:this.handleContainer},l.default.createElement(u.default,{onReady:this.handleReady},r({handleParse:this.handleParse})))},t}(c.Component),o.defaultProps={className:void 0},n);t.default=p},function(e,t,r){e.exports=r(155)},function(e,t,r){"use strict";t.__esModule=!0;var o,n=r(157),a=(o=n)&&o.__esModule?o:{default:o};t.default=function(e){return function(){var t=e.apply(this,arguments);return new a.default(function(e,r){return function o(n,i){try{var s=t[n](i),c=s.value}catch(e){return void r(e)}if(!s.done)return a.default.resolve(c).then(function(e){o("next",e)},function(e){o("throw",e)});e(c)}("next")})}}},function(e,t,r){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(122),a="object"==("undefined"===typeof self?"undefined":o(self))&&self&&self.Object===Object&&self,i=n||a||Function("return this")();e.exports=i},function(e,t,r){var o=r(14);e.exports=function(e){if(!o(e))throw TypeError(e+" is not an object!");return e}},function(e,t,r){var o=r(5),n=r(7),a=r(31),i=r(18),s=r(20),c=function e(t,r,c){var l,u,d,p=t&e.F,_=t&e.G,f=t&e.S,h=t&e.P,b=t&e.B,m=t&e.W,y=_?n:n[r]||(n[r]={}),v=y.prototype,g=_?o:f?o[r]:(o[r]||{}).prototype;for(l in _&&(c=r),c)(u=!p&&g&&void 0!==g[l])&&s(y,l)||(d=u?g[l]:c[l],y[l]=_&&"function"!=typeof g[l]?c[l]:b&&u?a(d,o):m&&g[l]==d?function(e){var t=function(t,r,o){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,r)}return new e(t,r,o)}return e.apply(this,arguments)};return t.prototype=e.prototype,t}(d):h&&"function"==typeof d?a(Function.call,d):d,h&&((y.virtual||(y.virtual={}))[l]=d,t&e.R&&v&&!v[l]&&i(v,l,d)))};c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return"object"===r(e)?null!==e:"function"===typeof e}},function(e,t,r){e.exports=!r(32)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t,r){"use strict";t.__esModule=!0,t.default=function(){if(!a.default)return"https://www.facebook.com";return window.location.href};var o,n=r(115),a=(o=n)&&o.__esModule?o:{default:o}},function(e,t,r){e.exports=r(211)()},function(e,t,r){var o=r(19),n=r(37);e.exports=r(15)?function(e,t,r){return o.f(e,t,n(1,r))}:function(e,t,r){return e[t]=r,e}},function(e,t,r){var o=r(12),n=r(100),a=r(61),i=Object.defineProperty;t.f=r(15)?Object.defineProperty:function(e,t,r){if(o(e),t=a(t,!0),o(r),n)try{return i(e,t,r)}catch(e){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(e[t]=r.value),e}},function(e,t){var r={}.hasOwnProperty;e.exports=function(e,t){return r.call(e,t)}},function(e,t,r){var o=r(253),n=r(259);e.exports=function(e,t){var r=n(e,t);return o(r)?r:void 0}},function(e,t){e.exports=jQuery},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,r){var o=r(103),n=r(59);e.exports=function(e){return o(n(e))}},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=f(r(4)),i=f(r(9)),s=f(r(10)),c=f(r(1)),l=f(r(2)),u=f(r(3)),d=r(0),p=f(d),_=r(96);function f(e){return e&&e.__esModule?e:{default:e}}var h=(n=o=function(e){function t(){return(0,c.default)(this,t),(0,l.default)(this,e.apply(this,arguments))}return(0,u.default)(t,e),t.prototype.componentDidMount=function(){this.prepare()},t.prototype.prepare=function(){var e=(0,s.default)(i.default.mark(function e(){var t,r,o,n;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t=this.props,r=t.onReady,o=t.handleInit,e.next=3,o();case 3:n=e.sent,r&&r(n);case 5:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),t.prototype.render=function(){var e=this.props,t=e.children,r=e.isReady,o=e.api;return"function"===typeof t?t({isReady:r,api:o}):t},t}(d.Component),o.defaultProps={onReady:void 0,api:void 0},n);t.default=(0,d.forwardRef)(function(e,t){return p.default.createElement(_.FacebookContext.Consumer,null,function(r){var o=r.handleInit,n=r.isReady,i=r.api;return p.default.createElement(h,(0,a.default)({},e,{handleInit:o,isReady:n,api:i,ref:t}))})})},function(e,t,r){var o=r(241);e.exports=function(e,t){return o(e,t)}},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return null!=e&&"object"==r(e)}},function(e,t,r){var o=r(294),n=1,a=4;e.exports=function(e){return o(e,n|a)}},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=s(r(0)),i=s(r(17));function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var l=function(e){function t(){var e,o,n;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var a=arguments.length,i=Array(a),s=0;s<a;s++)i[s]=arguments[s];return o=n=c(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(i))),n.loadWidget=function(){r(141).ready("twitter-widgets",function(){window.twttr?(t.removeChildren(n.widgetWrapper),n.props.ready(window.twttr,n.widgetWrapper,n.done)):console.error("Failure to load window.twttr, aborting load.")})},n.done=function(){n.willUnmount&&t.removeChildrenExceptLast(n.widgetWrapper)},c(n,o)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"componentWillMount",value:function(){this.willUnmount=!1}},{key:"componentDidMount",value:function(){this.loadWidget()}},{key:"componentDidUpdate",value:function(){this.loadWidget()}},{key:"componentWillUnmount",value:function(){this.willUnmount=!0}},{key:"render",value:function(){var e=this;return a.default.createElement("div",{ref:function(t){e.widgetWrapper=t}})}}],[{key:"removeChildren",value:function(e){if(e)for(;e.firstChild;)e.removeChild(e.firstChild)}},{key:"removeChildrenExceptLast",value:function(e){if(e)for(;e.childNodes.length>1;)e.removeChild(e.firstChild)}}]),t}();l.propTypes={ready:i.default.func.isRequired},t.default=l},function(e,t){e.exports=!0},function(e,t,r){var o=r(36);e.exports=function(e,t,r){if(o(e),void 0===t)return e;switch(r){case 1:return function(r){return e.call(t,r)};case 2:return function(r,o){return e.call(t,r,o)};case 3:return function(r,o,n){return e.call(t,r,o,n)}}return function(){return e.apply(t,arguments)}}},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){e.exports={}},function(e,t){var r={}.toString;e.exports=function(e){return r.call(e).slice(8,-1)}},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){var t=r(e);return null!=e&&("object"==t||"function"==t)}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,r){var o=r(102),n=r(65);e.exports=Object.keys||function(e){return o(e,n)}},function(e,t){var r=0,o=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++r+o).toString(36))}},function(e,t,r){var o=r(19).f,n=r(20),a=r(6)("toStringTag");e.exports=function(e,t,r){e&&!n(e=r?e:e.prototype,a)&&o(e,a,{configurable:!0,value:t})}},function(e,t){t.f={}.propertyIsEnumerable},function(e,t,r){"use strict";t.__esModule=!0,t.default=void 0;var o=d(r(9)),n=d(r(10)),a=d(r(1)),i=d(r(2)),s=d(r(3)),c=r(0),l=d(c),u=d(r(25));function d(e){return e&&e.__esModule?e:{default:e}}var p=function(e){function t(){var r,s,c,l,u=this;(0,a.default)(this,t);for(var d=arguments.length,p=Array(d),_=0;_<d;_++)p[_]=arguments[_];return r=s=(0,i.default)(this,e.call.apply(e,[this].concat(p))),s.state={api:void 0},s.handleProcess=(l=(0,n.default)(o.default.mark(function e(t){var r,n;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(s.setState({data:void 0,error:void 0,loading:!0}),e.prev=1,r=s.state.api){e.next=5;break}throw new Error("Facebook is not initialized. Wait for isReady");case 5:return e.next=7,t(r);case 7:return n=e.sent,s.setState({data:n,loading:!1}),e.abrupt("return",n);case 12:throw e.prev=12,e.t0=e.catch(1),s.setState({error:e.t0,loading:!1}),e.t0;case 16:case"end":return e.stop()}},e,u,[[1,12]])})),function(e){return l.apply(this,arguments)}),s.handleReady=function(e){s.setState({api:e})},c=r,(0,i.default)(s,c)}return(0,s.default)(t,e),t.prototype.render=function(){var e=this.props.children,t=this.state,r=t.api,o=t.loading,n=t.data,a=t.error;return l.default.createElement(u.default,{onReady:this.handleReady},e({loading:!r||o,handleProcess:this.handleProcess,data:n,error:a}))},t}(c.Component);t.default=p},function(e,t,r){var o=r(243),n=r(244),a=r(245),i=r(246),s=r(247);function c(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var o=e[t];this.set(o[0],o[1])}}c.prototype.clear=o,c.prototype.delete=n,c.prototype.get=a,c.prototype.has=i,c.prototype.set=s,e.exports=c},function(e,t,r){var o=r(78);e.exports=function(e,t){for(var r=e.length;r--;)if(o(e[r][0],t))return r;return-1}},function(e,t,r){var o=r(46),n=r(255),a=r(256),i="[object Null]",s="[object Undefined]",c=o?o.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?s:i:c&&c in Object(e)?n(e):a(e)}},function(e,t,r){var o=r(11).Symbol;e.exports=o},function(e,t,r){var o=r(21)(Object,"create");e.exports=o},function(e,t,r){var o=r(268);e.exports=function(e,t){var r=e.__data__;return o(t)?r["string"==typeof t?"string":"hash"]:r.map}},function(e,t){var r=Array.isArray;e.exports=r},function(e,t,r){var o=r(290),n=r(79),a=r(291),i=r(292),s=r(293),c=r(45),l=r(123),u=l(o),d=l(n),p=l(a),_=l(i),f=l(s),h=c;(o&&"[object DataView]"!=h(new o(new ArrayBuffer(1)))||n&&"[object Map]"!=h(new n)||a&&"[object Promise]"!=h(a.resolve())||i&&"[object Set]"!=h(new i)||s&&"[object WeakMap]"!=h(new s))&&(h=function(e){var t=c(e),r="[object Object]"==t?e.constructor:void 0,o=r?l(r):"";if(o)switch(o){case u:return"[object DataView]";case d:return"[object Map]";case p:return"[object Promise]";case _:return"[object Set]";case f:return"[object WeakMap]"}return t}),e.exports=h},function(e,t,r){var o=r(136),n=r(137);e.exports=function(e,t,r,a){var i=!r;r||(r={});for(var s=-1,c=t.length;++s<c;){var l=t[s],u=a?a(r[l],e[l],l,r,e):void 0;void 0===u&&(u=e[l]),i?n(r,l,u):o(r,l,u)}return r}},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){var r=Math.ceil,o=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?o:r)(e)}},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},function(e,t,r){var o=r(14),n=r(5).document,a=o(n)&&o(n.createElement);e.exports=function(e){return a?n.createElement(e):{}}},function(e,t,r){var o=r(14);e.exports=function(e,t){if(!o(e))return e;var r,n;if(t&&"function"==typeof(r=e.toString)&&!o(n=r.call(e)))return n;if("function"==typeof(r=e.valueOf)&&!o(n=r.call(e)))return n;if(!t&&"function"==typeof(r=e.toString)&&!o(n=r.call(e)))return n;throw TypeError("Can't convert object to primitive value")}},function(e,t,r){var o=r(12),n=r(161),a=r(65),i=r(63)("IE_PROTO"),s=function(){},c=function(){var e,t=r(60)("iframe"),o=a.length;for(t.style.display="none",r(105).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write("<script>document.F=Object<\/script>"),e.close(),c=e.F;o--;)delete c.prototype[a[o]];return c()};e.exports=Object.create||function(e,t){var r;return null!==e?(s.prototype=o(e),r=new s,s.prototype=null,r[i]=e):r=c(),void 0===t?r:n(r,t)}},function(e,t,r){var o=r(64)("keys"),n=r(39);e.exports=function(e){return o[e]||(o[e]=n(e))}},function(e,t,r){var o=r(7),n=r(5),a=n["__core-js_shared__"]||(n["__core-js_shared__"]={});(e.exports=function(e,t){return a[e]||(a[e]=void 0!==t?t:{})})("versions",[]).push({version:o.version,mode:r(30)?"pure":"global",copyright:"\xa9 2019 Denis Pushkarev (zloirock.ru)"})},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,r){var o=r(59);e.exports=function(e){return Object(o(e))}},function(e,t,r){"use strict";var o=r(36);e.exports.f=function(e){return new function(e){var t,r;this.promise=new e(function(e,o){if(void 0!==t||void 0!==r)throw TypeError("Bad Promise constructor");t=e,r=o}),this.resolve=o(t),this.reject=o(r)}(e)}},function(e,t,r){t.f=r(6)},function(e,t,r){var o=r(5),n=r(7),a=r(30),i=r(68),s=r(19).f;e.exports=function(e){var t=n.Symbol||(n.Symbol=a?{}:o.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:i.f(e)})}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,r){"use strict";t.__esModule=!0,t.default={CONNECTED:"connected",AUTHORIZATION_EXPIRED:"authorization_expired",NOT_AUTHORIZED:"not_authorized",UNKNOWN:"unknown"}},function(e,t,r){"use strict";t.__esModule=!0,t.default=function(e){if(!e)return e;var t={};return Object.keys(e).forEach(function(r){var o=e[r];void 0!==o&&(t[r]=o)}),t}},function(e,t,r){"use strict";t.__esModule=!0,t.default=["id","first_name","last_name","middle_name","name","name_format","picture","short_name","email"]},function(e,t,r){"use strict";t.__esModule=!0,t.default=void 0;var o,n,a,i=f(r(9)),s=f(r(10)),c=f(r(1)),l=f(r(2)),u=f(r(3)),d=r(0),p=f(d),_=f(r(25));function f(e){return e&&e.__esModule?e:{default:e}}var h=(n=o=function(e){function t(){var r,o,n;(0,c.default)(this,t);for(var i=arguments.length,s=Array(i),u=0;u<i;u++)s[u]=arguments[u];return r=o=(0,l.default)(this,e.call.apply(e,[this].concat(s))),a.call(o),n=r,(0,l.default)(o,n)}return(0,u.default)(t,e),t.prototype.componentWillUnmount=function(){var e=this.state.api,t=this.props.event;e&&e.unsubscribe(t,this.handleChange)},t.prototype.render=function(){var e=this.props.children;return p.default.createElement(_.default,{onReady:this.handleReady},e)},t}(d.Component),o.defaultProps={onChange:void 0},a=function(){var e,t=this;this.state={},this.handleReady=(e=(0,s.default)(i.default.mark(function e(r){var o;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return o=t.props.event,t.setState({api:r}),e.next=4,r.subscribe(o,t.handleChange);case 4:case"end":return e.stop()}},e,t)})),function(t){return e.apply(this,arguments)}),this.handleChange=function(){var e=t.props.onChange;e&&e.apply(void 0,arguments)}},n);t.default=h},function(e,t){},function(e,t){},function(e,t){},function(e,t){e.exports=function(e,t){return e===t||e!==e&&t!==t}},function(e,t,r){var o=r(21)(r(11),"Map");e.exports=o},function(e,t,r){var o=r(281),n=r(130),a=Object.prototype.propertyIsEnumerable,i=Object.getOwnPropertySymbols,s=i?function(e){return null==e?[]:(e=Object(e),o(i(e),function(t){return a.call(e,t)}))}:n;e.exports=s},function(e,t,r){var o=r(131),n=r(288),a=r(135);e.exports=function(e){return a(e)?o(e):n(e)}},function(e,t,r){(function(e){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(11),a=r(285),i="object"==o(t)&&t&&!t.nodeType&&t,s=i&&"object"==o(e)&&e&&!e.nodeType&&e,c=s&&s.exports===i?n.Buffer:void 0,l=(c?c.isBuffer:void 0)||a;e.exports=l}).call(t,r(23)(e))},function(e,t){e.exports=function(e){return function(t){return e(t)}}},function(e,t,r){(function(e){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(122),a="object"==o(t)&&t&&!t.nodeType&&t,i=a&&"object"==o(e)&&e&&!e.nodeType&&e,s=i&&i.exports===a&&n.process,c=function(){try{var e=i&&i.require&&i.require("util").types;return e||s&&s.binding&&s.binding("util")}catch(e){}}();e.exports=c}).call(t,r(23)(e))},function(e,t){var r=Object.prototype;e.exports=function(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||r)}},function(e,t,r){var o=r(126);e.exports=function(e){var t=new e.constructor(e.byteLength);return new o(t).set(new o(e)),t}},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){e.exports=ReactDOM},function(e,t,r){"use strict";t.__esModule=!0,t.Fields=t.LoginStatus=t.MessengerColor=t.MessengerSize=t.CommentsOrderBy=t.LikeAction=t.ColorScheme=t.LikeLayout=t.LikeSize=t.SendToMessenger=t.MessengerCheckbox=t.MessageUs=t.CustomChat=t.Profile=t.Status=t.Subscribe=t.Group=t.Feed=t.CommentsCount=t.Comments=t.EmbeddedVideo=t.EmbeddedPost=t.LoginButton=t.Login=t.Page=t.ShareButton=t.Share=t.Send=t.Like=t.Initialize=t.Parser=t.FacebookProvider=void 0;var o=N(r(96)),n=N(r(8)),a=N(r(25)),i=N(r(205)),s=N(r(206)),c=N(r(116)),l=N(r(207)),u=N(r(208)),d=N(r(118)),p=N(r(209)),_=N(r(214)),f=N(r(215)),h=N(r(216)),b=N(r(217)),m=N(r(218)),y=N(r(219)),v=N(r(74)),g=N(r(220)),w=N(r(221)),x=N(r(222)),k=N(r(223)),O=N(r(224)),S=N(r(225)),j=N(r(226)),E=N(r(227)),P=N(r(228)),z=N(r(229)),C=N(r(230)),T=N(r(231)),q=N(r(232)),M=N(r(71)),I=N(r(73));function N(e){return e&&e.__esModule?e:{default:e}}t.FacebookProvider=o.default,t.Parser=n.default,t.Initialize=a.default,t.Like=i.default,t.Send=s.default,t.Share=c.default,t.ShareButton=l.default,t.Page=u.default,t.Login=d.default,t.LoginButton=p.default,t.EmbeddedPost=_.default,t.EmbeddedVideo=f.default,t.Comments=h.default,t.CommentsCount=b.default,t.Feed=m.default,t.Group=y.default,t.Subscribe=v.default,t.Status=g.default,t.Profile=w.default,t.CustomChat=x.default,t.MessageUs=k.default,t.MessengerCheckbox=O.default,t.SendToMessenger=S.default,t.LikeSize=j.default,t.LikeLayout=E.default,t.ColorScheme=P.default,t.LikeAction=z.default,t.CommentsOrderBy=C.default,t.MessengerSize=T.default,t.MessengerColor=q.default,t.LoginStatus=M.default,t.Fields=I.default},function(e,t,r){"use strict";t.__esModule=!0,t.default=t.FacebookContext=void 0;var o,n,a=f(r(9)),i=f(r(10)),s=f(r(1)),c=f(r(2)),l=f(r(3)),u=r(0),d=f(u),p=f(r(115)),_=f(r(200));function f(e){return e&&e.__esModule?e:{default:e}}var h=t.FacebookContext=(0,u.createContext)(),b=null,m=(n=o=function(e){function t(){var r,o,n,l=this;(0,s.default)(this,t);for(var u=arguments.length,d=Array(u),f=0;f<u;f++)d[f]=arguments[f];return r=o=(0,c.default)(this,e.call.apply(e,[this].concat(d))),o.state={isReady:!1},o.handleInit=(0,i.default)(a.default.mark(function e(){var t,r,n,i,s,c,u,d,f,h;return a.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(p.default){e.next=2;break}throw new Error("You can not use Facebook without DOM");case 2:if(!o.state.isReady){e.next=5;break}return e.abrupt("return",b);case 5:return b||(t=o.props,r=t.domain,n=t.version,i=t.appId,s=t.cookie,c=t.status,u=t.xfbml,d=t.language,f=t.frictionlessRequests,h=t.wait,b=new _.default({domain:r,appId:i,version:n,cookie:s,status:c,xfbml:u,language:d,frictionlessRequests:f,wait:h})),e.next=8,b.init();case 8:return o.state.isReady||o.setState({isReady:!0}),e.abrupt("return",b);case 10:case"end":return e.stop()}},e,l)})),n=r,(0,c.default)(o,n)}return(0,l.default)(t,e),t.prototype.componentDidMount=function(){this.props.wait||this.handleInit()},t.prototype.render=function(){var e=this.props.children,t=this.state,r={isReady:t.isReady,error:t.error,handleInit:this.handleInit,api:b};return d.default.createElement(h.Provider,{value:r},e)},t}(u.Component),o.defaultProps={version:"v3.1",cookie:!1,status:!1,xfbml:!1,language:"en_US",frictionlessRequests:!1,domain:"connect.facebook.net",children:void 0,wait:!1},n);t.default=m},function(e,t){},function(e,t,r){"use strict";var o=r(159)(!0);r(99)(String,"String",function(e){this._t=String(e),this._i=0},function(){var e,t=this._t,r=this._i;return r>=t.length?{value:void 0,done:!0}:(e=o(t,r),this._i+=e.length,{value:e,done:!1})})},function(e,t,r){"use strict";var o=r(30),n=r(13),a=r(101),i=r(18),s=r(33),c=r(160),l=r(40),u=r(164),d=r(6)("iterator"),p=!([].keys&&"next"in[].keys()),_=function(){return this};e.exports=function(e,t,r,f,h,b,m){c(r,t,f);var y,v,g,w=function(e){if(!p&&e in S)return S[e];switch(e){case"keys":case"values":return function(){return new r(this,e)}}return function(){return new r(this,e)}},x=t+" Iterator",k="values"==h,O=!1,S=e.prototype,j=S[d]||S["@@iterator"]||h&&S[h],E=j||w(h),P=h?k?w("entries"):E:void 0,z="Array"==t&&S.entries||j;if(z&&(g=u(z.call(new e)))!==Object.prototype&&g.next&&(l(g,x,!0),o||"function"==typeof g[d]||i(g,d,_)),k&&j&&"values"!==j.name&&(O=!0,E=function(){return j.call(this)}),o&&!m||!p&&!O&&S[d]||i(S,d,E),s[t]=E,s[x]=_,h)if(y={values:k?E:w("values"),keys:b?E:w("keys"),entries:P},m)for(v in y)v in S||a(S,v,y[v]);else n(n.P+n.F*(p||O),t,y);return y}},function(e,t,r){e.exports=!r(15)&&!r(32)(function(){return 7!=Object.defineProperty(r(60)("div"),"a",{get:function(){return 7}}).a})},function(e,t,r){e.exports=r(18)},function(e,t,r){var o=r(20),n=r(24),a=r(162)(!1),i=r(63)("IE_PROTO");e.exports=function(e,t){var r,s=n(e),c=0,l=[];for(r in s)r!=i&&o(s,r)&&l.push(r);for(;t.length>c;)o(s,r=t[c++])&&(~a(l,r)||l.push(r));return l}},function(e,t,r){var o=r(34);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==o(e)?e.split(""):Object(e)}},function(e,t,r){var o=r(58),n=Math.min;e.exports=function(e){return e>0?n(o(e),9007199254740991):0}},function(e,t,r){var o=r(5).document;e.exports=o&&o.documentElement},function(e,t,r){r(165);for(var o=r(5),n=r(18),a=r(33),i=r(6)("toStringTag"),s="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),c=0;c<s.length;c++){var l=s[c],u=o[l],d=u&&u.prototype;d&&!d[i]&&n(d,i,l),a[l]=a.Array}},function(e,t,r){var o=r(34),n=r(6)("toStringTag"),a="Arguments"==o(function(){return arguments}());e.exports=function(e){var t,r,i;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(r=function(e,t){try{return e[t]}catch(e){}}(t=Object(e),n))?r:a?o(t):"Object"==(i=o(t))&&"function"==typeof t.callee?"Arguments":i}},function(e,t,r){var o=r(12),n=r(36),a=r(6)("species");e.exports=function(e,t){var r,i=o(e).constructor;return void 0===i||void 0==(r=o(i)[a])?t:n(r)}},function(e,t,r){var o,n,a,i=r(31),s=r(174),c=r(105),l=r(60),u=r(5),d=u.process,p=u.setImmediate,_=u.clearImmediate,f=u.MessageChannel,h=u.Dispatch,b=0,m={},y=function(){var e=+this;if(m.hasOwnProperty(e)){var t=m[e];delete m[e],t()}},v=function(e){y.call(e.data)};p&&_||(p=function(e){for(var t=[],r=1;arguments.length>r;)t.push(arguments[r++]);return m[++b]=function(){s("function"==typeof e?e:Function(e),t)},o(b),b},_=function(e){delete m[e]},"process"==r(34)(d)?o=function(e){d.nextTick(i(y,e,1))}:h&&h.now?o=function(e){h.now(i(y,e,1))}:f?(a=(n=new f).port2,n.port1.onmessage=v,o=i(a.postMessage,a,1)):u.addEventListener&&"function"==typeof postMessage&&!u.importScripts?(o=function(e){u.postMessage(e+"","*")},u.addEventListener("message",v,!1)):o="onreadystatechange"in l("script")?function(e){c.appendChild(l("script")).onreadystatechange=function(){c.removeChild(this),y.call(e)}}:function(e){setTimeout(i(y,e,1),0)}),e.exports={set:p,clear:_}},function(e,t){e.exports=function(e){try{return{e:!1,v:e()}}catch(e){return{e:!0,v:e}}}},function(e,t,r){var o=r(12),n=r(14),a=r(67);e.exports=function(e,t){if(o(e),n(t)&&t.constructor===e)return t;var r=a.f(e);return(0,r.resolve)(t),r.promise}},function(e,t,r){"use strict";function o(e){return(o="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)}t.__esModule=!0;var n=s(r(182)),a=s(r(184)),i="function"===typeof a.default&&"symbol"===o(n.default)?function(e){return o(e)}:function(e){return e&&"function"===typeof a.default&&e.constructor===a.default&&e!==a.default.prototype?"symbol":o(e)};function s(e){return e&&e.__esModule?e:{default:e}}t.default="function"===typeof a.default&&"symbol"===i(n.default)?function(e){return"undefined"===typeof e?"undefined":i(e)}:function(e){return e&&"function"===typeof a.default&&e.constructor===a.default&&e!==a.default.prototype?"symbol":"undefined"===typeof e?"undefined":i(e)}},function(e,t,r){var o=r(102),n=r(65).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return o(e,n)}},function(e,t,r){var o=r(41),n=r(37),a=r(24),i=r(61),s=r(20),c=r(100),l=Object.getOwnPropertyDescriptor;t.f=r(15)?l:function(e,t){if(e=a(e),t=i(t,!0),c)try{return l(e,t)}catch(e){}if(s(e,t))return n(!o.f.call(e,t),e[t])}},function(e,t){var r=!("undefined"===typeof window||!window.document||!window.document.createElement);e.exports=r},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=b(r(4)),i=b(r(9)),s=b(r(10)),c=b(r(1)),l=b(r(2)),u=b(r(3)),d=r(0),p=b(d),_=b(r(16)),f=b(r(72)),h=b(r(42));function b(e){return e&&e.__esModule?e:{default:e}}var m=(n=o=function(e){function t(){var r,o,n,a,u=this;(0,c.default)(this,t);for(var d=arguments.length,p=Array(d),h=0;h<d;h++)p[h]=arguments[h];return r=o=(0,l.default)(this,e.call.apply(e,[this].concat(p))),o.handleClick=(a=(0,s.default)(i.default.mark(function e(t){var r;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t.preventDefault(),r=o.props.handleProcess,e.abrupt("return",r(function(){var e=(0,s.default)(i.default.mark(function e(t){var r,n,a,s,c,l,d,p,h,b;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return r=o.props,n=r.href,a=void 0===n?(0,_.default)():n,s=r.display,c=r.appId,l=void 0===c?t.getAppId():c,d=r.hashtag,p=r.redirectURI,h=r.quote,b=r.mobileIframe,e.abrupt("return",t.ui((0,f.default)({method:"share",href:a,display:s,app_id:l,hashtag:d,redirect_uri:p,quote:h,mobile_iframe:b})));case 2:case"end":return e.stop()}},e,u)}));return function(t){return e.apply(this,arguments)}}()));case 3:case"end":return e.stop()}},e,u)})),function(e){return a.apply(this,arguments)}),n=r,(0,l.default)(o,n)}return(0,u.default)(t,e),t.prototype.render=function(){var e=this.props,t=e.children,r=e.loading,o=e.error,n=e.data;return t({loading:r,handleClick:this.handleClick,error:o,data:n})},t}(d.Component),o.defaultProps={href:void 0,hashtag:void 0,quote:void 0,mobileIframe:void 0,display:void 0,appId:void 0,redirectURI:void 0},n);t.default=(0,d.forwardRef)(function(e,t){return p.default.createElement(h.default,null,function(r){var o=r.loading,n=r.handleProcess,i=r.data,s=r.error;return p.default.createElement(m,(0,a.default)({},e,{loading:o,handleProcess:n,data:i,error:s,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0,t.default=function(e,t){var r={};for(var o in e)t.indexOf(o)>=0||Object.prototype.hasOwnProperty.call(e,o)&&(r[o]=e[o]);return r}},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=h(r(9)),i=h(r(4)),s=h(r(10)),c=h(r(1)),l=h(r(2)),u=h(r(3)),d=r(0),p=h(d),_=h(r(42)),f=h(r(73));function h(e){return e&&e.__esModule?e:{default:e}}var b=(n=o=function(e){function t(){var r,o,n,u,d=this;(0,c.default)(this,t);for(var p=arguments.length,_=Array(p),f=0;f<p;f++)_[f]=arguments[f];return r=o=(0,l.default)(this,e.call.apply(e,[this].concat(_))),o.handleClick=(u=(0,s.default)(a.default.mark(function e(t){var r,n,c,l;return a.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t.preventDefault(),r=o.props,n=r.handleProcess,c=r.onCompleted,l=r.onError,e.prev=2,e.next=5,n(function(){var e=(0,s.default)(a.default.mark(function e(t){var r,n,s,l,u,p,_,f,h,b;return a.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return r=o.props,n=r.scope,s=r.fields,l=r.returnScopes,u=r.rerequest,p=r.reauthorize,_=r.eventKey,f={scope:n},h=[],l&&(f.return_scopes=!0),u&&h.push("rerequest"),p&&h.push("reauthenticate"),h.length&&(f.auth_type=h.join(",")),e.next=9,t.login(f);case 9:if("connected"===e.sent.status){e.next=12;break}throw new Error("Unauthorized user");case 12:return e.next=14,t.getTokenDetailWithProfile({fields:s});case 14:if(b=e.sent,!c){e.next=18;break}return e.next=18,c((0,i.default)({},b,{eventKey:_}));case 18:return e.abrupt("return",b);case 19:case"end":return e.stop()}},e,d)}));return function(t){return e.apply(this,arguments)}}());case 5:e.next=10;break;case 7:e.prev=7,e.t0=e.catch(2),l&&l(e.t0);case 10:case"end":return e.stop()}},e,d,[[2,7]])})),function(e){return u.apply(this,arguments)}),n=r,(0,l.default)(o,n)}return(0,u.default)(t,e),t.prototype.render=function(){var e=this.props,t=e.children,r=e.loading,o=e.error,n=e.data;return t({loading:r,handleClick:this.handleClick,error:o,data:n})},t}(d.Component),o.defaultProps={scope:"",fields:f.default,returnScopes:!1,rerequest:!1,reauthorize:!1,onCompleted:void 0,onError:void 0,eventKey:void 0},n);t.default=(0,d.forwardRef)(function(e,t){return p.default.createElement(_.default,null,function(r){var o=r.loading,n=r.handleProcess,a=r.data,s=r.error;return p.default.createElement(b,(0,i.default)({},e,{loading:o,handleProcess:n,data:a,error:s,ref:t}))})})},function(e,t){(function(t){e.exports=t}).call(t,{})},function(e,t,r){var o=r(43),n=r(248),a=r(249),i=r(250),s=r(251),c=r(252);function l(e){var t=this.__data__=new o(e);this.size=t.size}l.prototype.clear=n,l.prototype.delete=a,l.prototype.get=i,l.prototype.has=s,l.prototype.set=c,e.exports=l},function(e,t,r){var o=r(45),n=r(35),a="[object AsyncFunction]",i="[object Function]",s="[object GeneratorFunction]",c="[object Proxy]";e.exports=function(e){if(!n(e))return!1;var t=o(e);return t==i||t==s||t==a||t==c}},function(e,t,r){(function(t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o="object"==("undefined"===typeof t?"undefined":r(t))&&t&&t.Object===Object&&t;e.exports=o}).call(t,r(254))},function(e,t){var r=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return r.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},function(e,t,r){var o=r(260),n=r(267),a=r(269),i=r(270),s=r(271);function c(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var o=e[t];this.set(o[0],o[1])}}c.prototype.clear=o,c.prototype.delete=n,c.prototype.get=a,c.prototype.has=i,c.prototype.set=s,e.exports=c},function(e,t,r){var o=r(272),n=r(275),a=r(276),i=1,s=2;e.exports=function(e,t,r,c,l,u){var d=r&i,p=e.length,_=t.length;if(p!=_&&!(d&&_>p))return!1;var f=u.get(e);if(f&&u.get(t))return f==t;var h=-1,b=!0,m=r&s?new o:void 0;for(u.set(e,t),u.set(t,e);++h<p;){var y=e[h],v=t[h];if(c)var g=d?c(v,y,h,t,e,u):c(y,v,h,e,t,u);if(void 0!==g){if(g)continue;b=!1;break}if(m){if(!n(t,function(e,t){if(!a(m,t)&&(y===e||l(y,e,r,c,u)))return m.push(t)})){b=!1;break}}else if(y!==v&&!l(y,v,r,c,u)){b=!1;break}}return u.delete(e),u.delete(t),b}},function(e,t,r){var o=r(11).Uint8Array;e.exports=o},function(e,t,r){var o=r(128),n=r(80),a=r(81);e.exports=function(e){return o(e,a,n)}},function(e,t,r){var o=r(129),n=r(49);e.exports=function(e,t,r){var a=t(e);return n(e)?a:o(a,r(e))}},function(e,t){e.exports=function(e,t){for(var r=-1,o=t.length,n=e.length;++r<o;)e[n+r]=t[r];return e}},function(e,t){e.exports=function(){return[]}},function(e,t,r){var o=r(282),n=r(283),a=r(49),i=r(82),s=r(286),c=r(132),l=Object.prototype.hasOwnProperty;e.exports=function(e,t){var r=a(e),u=!r&&n(e),d=!r&&!u&&i(e),p=!r&&!u&&!d&&c(e),_=r||u||d||p,f=_?o(e.length,String):[],h=f.length;for(var b in e)!t&&!l.call(e,b)||_&&("length"==b||d&&("offset"==b||"parent"==b)||p&&("buffer"==b||"byteLength"==b||"byteOffset"==b)||s(b,h))||f.push(b);return f}},function(e,t,r){var o=r(287),n=r(83),a=r(84),i=a&&a.isTypedArray,s=i?n(i):o;e.exports=s},function(e,t){var r=9007199254740991;e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=r}},function(e,t){e.exports=function(e,t){return function(r){return e(t(r))}}},function(e,t,r){var o=r(121),n=r(133);e.exports=function(e){return null!=e&&n(e.length)&&!o(e)}},function(e,t,r){var o=r(137),n=r(78),a=Object.prototype.hasOwnProperty;e.exports=function(e,t,r){var i=e[t];a.call(e,t)&&n(i,r)&&(void 0!==r||t in e)||o(e,t,r)}},function(e,t,r){var o=r(296);e.exports=function(e,t,r){"__proto__"==t&&o?o(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}},function(e,t,r){var o=r(131),n=r(299),a=r(135);e.exports=function(e){return a(e)?o(e,!0):n(e)}},function(e,t,r){var o=r(129),n=r(140),a=r(80),i=r(130),s=Object.getOwnPropertySymbols?function(e){for(var t=[];e;)o(t,a(e)),e=n(e);return t}:i;e.exports=s},function(e,t,r){var o=r(134)(Object.getPrototypeOf,Object);e.exports=o},function(e,t,r){var o,n,a;a=function(){var e,t,r=document,o=r.getElementsByTagName("head")[0],n=!1,a="push",i="readyState",s="onreadystatechange",c={},l={},u={},d={};function p(e,t){for(var r=0,o=e.length;r<o;++r)if(!t(e[r]))return n;return 1}function _(e,t){p(e,function(e){return t(e),1})}function f(t,r,o){t=t[a]?t:[t];var n=r&&r.call,i=n?r:o,s=n?t.join(""):r,b=t.length;function m(e){return e.call?e():c[e]}function y(){if(!--b)for(var e in c[s]=1,i&&i(),u)p(e.split("|"),m)&&!_(u[e],m)&&(u[e]=[])}return setTimeout(function(){_(t,function t(r,o){return null===r?y():(o||/^https?:\/\//.test(r)||!e||(r=-1===r.indexOf(".js")?e+r+".js":e+r),d[r]?(s&&(l[s]=1),2==d[r]?y():setTimeout(function(){t(r,!0)},0)):(d[r]=1,s&&(l[s]=1),void h(r,y)))})},0),f}function h(e,n){var a,c=r.createElement("script");c.onload=c.onerror=c[s]=function(){c[i]&&!/^c|loade/.test(c[i])||a||(c.onload=c[s]=null,a=1,d[e]=2,n())},c.async=1,c.src=t?e+(-1===e.indexOf("?")?"?":"&")+t:e,o.insertBefore(c,o.lastChild)}return f.get=h,f.order=function(e,t,r){!function o(n){n=e.shift(),e.length?f(n,o):f(n,t,r)}()},f.path=function(t){e=t},f.urlArgs=function(e){t=e},f.ready=function(e,t,r){var o,n=[];return!_(e=e[a]?e:[e],function(e){c[e]||n[a](e)})&&p(e,function(e){return c[e]})?t():(o=e.join("|"),u[o]=u[o]||[],u[o][a](t),r&&r(n)),f},f.done=function(e){f([null],e)},f},"undefined"!=typeof e&&e.exports?e.exports=a():void 0===(n="function"===typeof(o=a)?o.call(t,r,t,e):o)||(e.exports=n)},function(e,t,r){r(143),e.exports=r(144)},function(e,t,r){"use strict"},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=r(22),n=r.n(o),a=r(145);n()(window).on("et_builder_api_ready",function(e,t){t.registerModules(a.a)})},function(e,t,r){"use strict";var o=r(146),n=r(147),a=r(148),i=r(150),s=r(151),c=r(152),l=r(153),u=r(154),d=r(233),p=r(234),_=r(235),f=r(236),h=r(237),b=r(323),m=r(324),y=r(325),v=r(326),g=r(327),w=r(328),x=r(329),k=r(330),O=r(331),S=r(332);t.a=[S.a,O.a,x.a,k.a,o.a,n.a,a.a,i.a,s.a,c.a,l.a,u.a,d.a,p.a,_.a,f.a,h.a,b.a,m.a,y.a,v.a,g.a,w.a]},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(52);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];t.push([{selector:"%%order_class%% .dsm_flipbox_child",declaration:"transition: transform ".concat(e.flipbox_speed," ease-in-out;")}]);var r=e.flipbox_height_last_edited,o=r&&r.startsWith("on");return e.flipbox_height&&t.push([{selector:"%%order_class%% .dsm-flipbox",declaration:"height: ".concat(e.flipbox_height,";")}]),e.flipbox_height_tablet&&o&&e.flipbox_height_tablet&&""!==e.flipbox_height_tablet&&t.push([{selector:"%%order_class%% .dsm-flipbox",declaration:"height: ".concat(e.flipbox_height_tablet,";"),device:"tablet"}]),e.flipbox_height_phone&&o&&e.flipbox_height_phone&&""!==e.flipbox_height_phone&&t.push([{selector:"%%order_class%% .dsm-flipbox",declaration:"height: ".concat(e.flipbox_height_phone,";"),device:"phone"}]),t}}],(a=[{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm-flipbox et_pb_bg_layout_".concat(e.background_layout," dsm-flipbox-effect-").concat(e.flipbox_effect)},this.props.content))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_flipbox"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o);function a(e){return(a="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 o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function s(e,t){return!t||"object"!==a(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}var c=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[];"on"===e.use_icon&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"color: #7EBEC5"}]),"#7EBEC5"!==e.icon_color&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"color: ".concat(e.icon_color)}]),"on"===e.use_circle&&e.circle_color&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"background-color: ".concat(e.circle_color)}]),"on"===e.use_circle_border&&e.circle_border_color&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"border-color: ".concat(e.circle_border_color)}]),"on"===e.use_icon_font_size&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"font-size: ".concat(e.icon_font_size)}]),"on"===e.use_icon_font_size&&e.icon_font_size_tablet&&t.push([{selector:".et_fb_preview_active.et_fb_preview_active--responsive_preview.et_fb_preview_active--responsive_preview--tablet_preview %%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"font-size: ".concat(e.icon_font_size_tablet)}]),"on"===e.use_icon_font_size&&e.icon_font_size_phone&&t.push([{selector:".et_fb_preview_active.et_fb_preview_active--responsive_preview.et_fb_preview_active--responsive_preview--phone_preview %%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"font-size: ".concat(e.icon_font_size_phone)}]);var r=e.image_max_width_last_edited&&e.image_max_width_last_edited.startsWith("on"),o=e.image_max_width,n=r&&e.image_max_width_tablet?e.image_max_width_tablet:o,a=r&&e.image_max_width_phone?e.image_max_width_phone:n;(e.image_max_width&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .dsm_flipbox_child_image_wrap img",declaration:"max-width: ".concat(o)}]),e.image_max_width_tablet&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .dsm_flipbox_child_image_wrap img",declaration:"max-width: ".concat(n),device:"tablet"}]),e.image_max_width_phone&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .dsm_flipbox_child_image_wrap img",declaration:"max-width: ".concat(a),device:"phone"}]),"center"!==e.content_orientation&&t.push([{selector:"%%order_class%%",declaration:"align-items: ".concat(e.content_orientation,";")}]),e.image)&&("svg"===e.image.substr(e.image.lastIndexOf(".")+1)&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image",declaration:"width: 100%;"}]));return t}}],(a=[{key:"_renderTitle",value:function(){var e=this.props,t=""===e.header_level?"h4":"".concat(e.header_level);return e.title?void 0===e.header_level?n.a.createElement(o.Fragment,null,n.a.createElement("h4",{className:"dsm-title et_pb_module_header"},e.title)):n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-title et_pb_module_header"},e.title)):""}},{key:"_renderIcon",value:function(){var e=this.props,t=window.ET_Builder.API.Utils;if(("off"!==e.use_icon||!e.image)&&e.use_icon&&"off"!==e.use_icon)return n.a.createElement("div",{className:"dsm_flipbox_child_image"},n.a.createElement("span",{className:"dsm_flipbox_child_image_wrap"},n.a.createElement("span",{className:"et-pb-icon".concat("on"===this.props.use_circle?" et-pb-icon-circle":"").concat("on"===this.props.use_circle_border?" et-pb-icon-circle-border":"")},t.processFontIcon(e.font_icon))))}},{key:"_renderImage",value:function(){var e=this.props;return!e.image||"on"===e.use_icon&&e.image?"":n.a.createElement("div",{className:"dsm_flipbox_child_image"},n.a.createElement("span",{className:"dsm_flipbox_child_image_wrap"},n.a.createElement("img",{src:"".concat(e.image),alt:"".concat(e.alt)})))}},{key:"_renderButton",value:function(){var e=this.props,t=window.ET_Builder.API.Utils,r="on"===e.url_new_window?"_blank":"",o=!!e.button_icon&&t.processFontIcon(e.button_icon),a={et_pb_button:!0,et_pb_more_button:!0,et_pb_custom_button_icon:e.button_icon};return e.button_text&&e.button_url?n.a.createElement("div",{className:"et_pb_button_wrapper"},n.a.createElement("a",{className:t.classnames(a),href:e.button_url,target:r,rel:t.linkRel(e.button_rel),"data-icon":o},e.button_text)):""}},{key:"render",value:function(){var e=this.props,t=e.text_orientation?e.text_orientation:"left";return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm_flipbox_icon_position_".concat(e.icon_placement," et_pb_bg_layout_").concat(e.background_layout)},this._renderIcon(),this._renderImage(),n.a.createElement("div",{className:"dsm_flipbox_wrapper et_pb_text_align_".concat(t)},this._renderTitle(),n.a.createElement("span",{className:"dsm-subtitle"},this.props.subtitle),n.a.createElement("div",{className:"dsm-content"},this.props.content()),this._renderButton())))}}])&&i(r.prototype,a),c&&i(r,c),t}();Object.defineProperty(c,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_flipbox_child"}),t.a=c},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(149),i=r.n(a);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 c(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function l(e,t){return!t||"object"!==s(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}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),l(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,s;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,o["Component"]),r=t,s=[{key:"css",value:function(e){var t=[];return e.typing_cursor_color&&t.push([{selector:"%%order_class%% .typed-cursor",declaration:"color: ".concat(e.typing_cursor_color,";")}]),t}}],(a=[{key:"_renderTitleLoop",value:function(){var e=this.props,t=""===e.header_level?"h1":"".concat(e.header_level),r=e.typing_effect.split("|"),a=parseFloat(e.typing_speed),s=parseFloat(e.typing_backspeed),c=parseFloat(e.typing_backdelay);return e.typing_effect&&"off"!==e.typing_loop?"on"===e.typing_loop?n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-typing-effect et_pb_module_header"},n.a.createElement(i.a,{strings:r,typeSpeed:a,backSpeed:s,backDelay:c,contentType:null,className:"dsm-typing",loop:!0}))):void 0:""}},{key:"_renderTitleNoLoop",value:function(){var e=this.props,t=""===e.header_level?"h1":"".concat(e.header_level),r=e.typing_effect.split("|"),a=parseFloat(e.typing_speed),s=parseFloat(e.typing_backspeed),c=parseFloat(e.typing_backdelay);return e.typing_effect&&"on"!==e.typing_loop?"off"===e.typing_loop?n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-typing-effect et_pb_module_header"},n.a.createElement(i.a,{strings:r,typeSpeed:a,backSpeed:s,backDelay:c,contentType:null,className:"dsm-typing dsm-typing-no-loop"}))):void 0:""}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"et_pb_bg_layout_".concat(e.background_layout)},this._renderTitleNoLoop(),this._renderTitleLoop()))}}])&&c(r.prototype,a),s&&c(r,s),t}();Object.defineProperty(u,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_typing_effect"}),t.a=u},function(e,t,r){(function(e){var o,n,a,i;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)}i=function(e){return function(e){var t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=e,r.c=t,r.d=function(e,t,o){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==s(e)&&e&&e.__esModule)return e;var o=Object.create(null);if(r.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)r.d(o,n,function(t){return e[t]}.bind(null,n));return o},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=5)}([function(e,t,r){var o=r(3);e.exports=r(8)(o.isElement,!0)},function(t,r){t.exports=e},function(e,t,r){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,r){"use strict";e.exports=r(7)},function(e,t,r){var o;o=function(){return function(e){var t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={exports:{},id:o,loaded:!1};return e[o].call(n.exports,n,n.exports,r),n.loaded=!0,n.exports}return r.m=e,r.c=t,r.p="",r(0)}([function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),n=r(1),a=r(3),i=function(){function e(t,r){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),n.initializer.load(this,r,t),this.begin()}return o(e,[{key:"toggle",value:function(){this.pause.status?this.start():this.stop()}},{key:"stop",value:function(){this.typingComplete||this.pause.status||(this.toggleBlinking(!0),this.pause.status=!0,this.options.onStop(this.arrayPos,this))}},{key:"start",value:function(){this.typingComplete||this.pause.status&&(this.pause.status=!1,this.pause.typewrite?this.typewrite(this.pause.curString,this.pause.curStrPos):this.backspace(this.pause.curString,this.pause.curStrPos),this.options.onStart(this.arrayPos,this))}},{key:"destroy",value:function(){this.reset(!1),this.options.onDestroy(this)}},{key:"reset",value:function(){var e=arguments.length<=0||void 0===arguments[0]||arguments[0];clearInterval(this.timeout),this.replaceText(""),this.cursor&&this.cursor.parentNode&&(this.cursor.parentNode.removeChild(this.cursor),this.cursor=null),this.strPos=0,this.arrayPos=0,this.curLoop=0,e&&(this.insertCursor(),this.options.onReset(this),this.begin())}},{key:"begin",value:function(){var e=this;this.typingComplete=!1,this.shuffleStringsIfNeeded(this),this.insertCursor(),this.bindInputFocusEvents&&this.bindFocusEvents(),this.timeout=setTimeout(function(){e.currentElContent&&0!==e.currentElContent.length?e.backspace(e.currentElContent,e.currentElContent.length):e.typewrite(e.strings[e.sequence[e.arrayPos]],e.strPos)},this.startDelay)}},{key:"typewrite",value:function(e,t){var r=this;this.fadeOut&&this.el.classList.contains(this.fadeOutClass)&&(this.el.classList.remove(this.fadeOutClass),this.cursor&&this.cursor.classList.remove(this.fadeOutClass));var o=this.humanizer(this.typeSpeed),n=1;!0!==this.pause.status?this.timeout=setTimeout(function(){t=a.htmlParser.typeHtmlChars(e,t,r);var o=0,i=e.substr(t);if("^"===i.charAt(0)&&/^\^\d+/.test(i)){var s=1;s+=(i=/\d+/.exec(i)[0]).length,o=parseInt(i),r.temporaryPause=!0,r.options.onTypingPaused(r.arrayPos,r),e=e.substring(0,t)+e.substring(t+s),r.toggleBlinking(!0)}if("`"===i.charAt(0)){for(;"`"!==e.substr(t+n).charAt(0)&&!(t+ ++n>e.length););var c=e.substring(0,t),l=e.substring(c.length+1,t+n),u=e.substring(t+n+1);e=c+l+u,n--}r.timeout=setTimeout(function(){r.toggleBlinking(!1),t>=e.length?r.doneTyping(e,t):r.keepTyping(e,t,n),r.temporaryPause&&(r.temporaryPause=!1,r.options.onTypingResumed(r.arrayPos,r))},o)},o):this.setPauseStatus(e,t,!0)}},{key:"keepTyping",value:function(e,t,r){0===t&&(this.toggleBlinking(!1),this.options.preStringTyped(this.arrayPos,this)),t+=r;var o=e.substr(0,t);this.replaceText(o),this.typewrite(e,t)}},{key:"doneTyping",value:function(e,t){var r=this;this.options.onStringTyped(this.arrayPos,this),this.toggleBlinking(!0),this.arrayPos===this.strings.length-1&&(this.complete(),!1===this.loop||this.curLoop===this.loopCount)||(this.timeout=setTimeout(function(){r.backspace(e,t)},this.backDelay))}},{key:"backspace",value:function(e,t){var r=this;if(!0!==this.pause.status){if(this.fadeOut)return this.initFadeOut();this.toggleBlinking(!1);var o=this.humanizer(this.backSpeed);this.timeout=setTimeout(function(){t=a.htmlParser.backSpaceHtmlChars(e,t,r);var o=e.substr(0,t);if(r.replaceText(o),r.smartBackspace){var n=r.strings[r.arrayPos+1];n&&o===n.substr(0,t)?r.stopNum=t:r.stopNum=0}t>r.stopNum?(t--,r.backspace(e,t)):t<=r.stopNum&&(r.arrayPos++,r.arrayPos===r.strings.length?(r.arrayPos=0,r.options.onLastStringBackspaced(),r.shuffleStringsIfNeeded(),r.begin()):r.typewrite(r.strings[r.sequence[r.arrayPos]],t))},o)}else this.setPauseStatus(e,t,!0)}},{key:"complete",value:function(){this.options.onComplete(this),this.loop?this.curLoop++:this.typingComplete=!0}},{key:"setPauseStatus",value:function(e,t,r){this.pause.typewrite=r,this.pause.curString=e,this.pause.curStrPos=t}},{key:"toggleBlinking",value:function(e){this.cursor&&(this.pause.status||this.cursorBlinking!==e&&(this.cursorBlinking=e,e?this.cursor.classList.add("typed-cursor--blink"):this.cursor.classList.remove("typed-cursor--blink")))}},{key:"humanizer",value:function(e){return Math.round(Math.random()*e/2)+e}},{key:"shuffleStringsIfNeeded",value:function(){this.shuffle&&(this.sequence=this.sequence.sort(function(){return Math.random()-.5}))}},{key:"initFadeOut",value:function(){var e=this;return this.el.className+=" "+this.fadeOutClass,this.cursor&&(this.cursor.className+=" "+this.fadeOutClass),setTimeout(function(){e.arrayPos++,e.replaceText(""),e.strings.length>e.arrayPos?e.typewrite(e.strings[e.sequence[e.arrayPos]],0):(e.typewrite(e.strings[0],0),e.arrayPos=0)},this.fadeOutDelay)}},{key:"replaceText",value:function(e){this.attr?this.el.setAttribute(this.attr,e):this.isInput?this.el.value=e:"html"===this.contentType?this.el.innerHTML=e:this.el.textContent=e}},{key:"bindFocusEvents",value:function(){var e=this;this.isInput&&(this.el.addEventListener("focus",function(t){e.stop()}),this.el.addEventListener("blur",function(t){e.el.value&&0!==e.el.value.length||e.start()}))}},{key:"insertCursor",value:function(){this.showCursor&&(this.cursor||(this.cursor=document.createElement("span"),this.cursor.className="typed-cursor",this.cursor.innerHTML=this.cursorChar,this.el.parentNode&&this.el.parentNode.insertBefore(this.cursor,this.el.nextSibling)))}}]),e}();t.default=i,e.exports=t.default},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o,n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},a=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),i=(o=r(2))&&o.__esModule?o:{default:o},s=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}return a(e,[{key:"load",value:function(e,t,r){if(e.el="string"==typeof r?document.querySelector(r):r,e.options=n({},i.default,t),e.isInput="input"===e.el.tagName.toLowerCase(),e.attr=e.options.attr,e.bindInputFocusEvents=e.options.bindInputFocusEvents,e.showCursor=!e.isInput&&e.options.showCursor,e.cursorChar=e.options.cursorChar,e.cursorBlinking=!0,e.elContent=e.attr?e.el.getAttribute(e.attr):e.el.textContent,e.contentType=e.options.contentType,e.typeSpeed=e.options.typeSpeed,e.startDelay=e.options.startDelay,e.backSpeed=e.options.backSpeed,e.smartBackspace=e.options.smartBackspace,e.backDelay=e.options.backDelay,e.fadeOut=e.options.fadeOut,e.fadeOutClass=e.options.fadeOutClass,e.fadeOutDelay=e.options.fadeOutDelay,e.isPaused=!1,e.strings=e.options.strings.map(function(e){return e.trim()}),"string"==typeof e.options.stringsElement?e.stringsElement=document.querySelector(e.options.stringsElement):e.stringsElement=e.options.stringsElement,e.stringsElement){e.strings=[],e.stringsElement.style.display="none";var o=Array.prototype.slice.apply(e.stringsElement.children),a=o.length;if(a)for(var s=0;s<a;s+=1){var c=o[s];e.strings.push(c.innerHTML.trim())}}for(var s in e.strPos=0,e.arrayPos=0,e.stopNum=0,e.loop=e.options.loop,e.loopCount=e.options.loopCount,e.curLoop=0,e.shuffle=e.options.shuffle,e.sequence=[],e.pause={status:!1,typewrite:!0,curString:"",curStrPos:0},e.typingComplete=!1,e.strings)e.sequence[s]=s;e.currentElContent=this.getCurrentElContent(e),e.autoInsertCss=e.options.autoInsertCss,this.appendAnimationCss(e)}},{key:"getCurrentElContent",value:function(e){return e.attr?e.el.getAttribute(e.attr):e.isInput?e.el.value:"html"===e.contentType?e.el.innerHTML:e.el.textContent}},{key:"appendAnimationCss",value:function(e){if(e.autoInsertCss&&(e.showCursor||e.fadeOut)&&!document.querySelector("[data-typed-js-css]")){var t=document.createElement("style");t.type="text/css",t.setAttribute("data-typed-js-css",!0);var r="";e.showCursor&&(r+="\n .typed-cursor{\n opacity: 1;\n }\n .typed-cursor.typed-cursor--blink{\n animation: typedjsBlink 0.7s infinite;\n -webkit-animation: typedjsBlink 0.7s infinite;\n animation: typedjsBlink 0.7s infinite;\n }\n @keyframes typedjsBlink{\n 50% { opacity: 0.0; }\n }\n @-webkit-keyframes typedjsBlink{\n 0% { opacity: 1; }\n 50% { opacity: 0.0; }\n 100% { opacity: 1; }\n }\n "),e.fadeOut&&(r+="\n .typed-fade-out{\n opacity: 0;\n transition: opacity .25s;\n }\n .typed-cursor.typed-cursor--blink.typed-fade-out{\n -webkit-animation: 0;\n animation: 0;\n }\n "),0!==t.length&&(t.innerHTML=r,document.body.appendChild(t))}}}]),e}();t.default=s;var c=new s;t.initializer=c},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default={strings:["These are the default values...","You know what you should do?","Use your own!","Have a great day!"],stringsElement:null,typeSpeed:0,startDelay:0,backSpeed:0,smartBackspace:!0,shuffle:!1,backDelay:700,fadeOut:!1,fadeOutClass:"typed-fade-out",fadeOutDelay:500,loop:!1,loopCount:1/0,showCursor:!0,cursorChar:"|",autoInsertCss:!0,attr:null,bindInputFocusEvents:!1,contentType:"html",onComplete:function(e){},preStringTyped:function(e,t){},onStringTyped:function(e,t){},onLastStringBackspaced:function(e){},onTypingPaused:function(e,t){},onTypingResumed:function(e,t){},onReset:function(e){},onStop:function(e,t){},onStart:function(e,t){},onDestroy:function(e){}},e.exports=t.default},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),o=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}return r(e,[{key:"typeHtmlChars",value:function(e,t,r){if("html"!==r.contentType)return t;var o=e.substr(t).charAt(0);if("<"===o||"&"===o){var n;for(n="<"===o?">":";";e.substr(t+1).charAt(0)!==n&&!(++t+1>e.length););t++}return t}},{key:"backSpaceHtmlChars",value:function(e,t,r){if("html"!==r.contentType)return t;var o=e.substr(t).charAt(0);if(">"===o||";"===o){var n;for(n=">"===o?"<":"&";e.substr(t-1).charAt(0)!==n&&!(--t<0););t--}return t}}]),e}();t.default=o;var n=new o;t.htmlParser=n}])},e.exports=o()},function(e,t,r){"use strict";r.r(t);var o=r(1),n=r.n(o),a=r(0),i=r.n(a),c=r(4),l=r.n(c);function u(e){return(u="function"==typeof Symbol&&"symbol"==s(Symbol.iterator)?function(e){return s(e)}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":s(e)})(e)}function d(e,t){if(null==e)return{};var r,o,n=function(e,t){if(null==e)return{};var r,o,n={},a=Object.keys(e);for(o=0;o<a.length;o++)r=a[o],t.indexOf(r)>=0||(n[r]=e[r]);return n}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)r=a[o],t.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(n[r]=e[r])}return n}function p(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function _(e){return(_=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function f(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function h(e,t){return(h=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var b=function(e){function t(){var e,r,o,a,i,s;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var c=arguments.length,l=new Array(c),d=0;d<c;d++)l[d]=arguments[d];return this,a=f(r=!(o=(e=_(t)).call.apply(e,[this].concat(l)))||"object"!==u(o)&&"function"!=typeof o?f(this):o),i="rootElement",s=n.a.createRef(),i in a?Object.defineProperty(a,i,{value:s,enumerable:!0,configurable:!0,writable:!0}):a[i]=s,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,writable:!0,configurable:!0}}),t&&h(e,t)}(t,o.Component),r=t,(a=[{key:"componentDidMount",value:function(){var e=this.props,t=(e.style,e.typedRef,e.stopped),r=(e.className,d(e,["style","typedRef","stopped","className"]));this.constructTyped(r),t&&this.typed.stop()}},{key:"constructTyped",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=this.props,o=(r.style,r.typedRef,r.stopped,r.className,d(r,["style","typedRef","stopped","className"]));this.typed&&this.typed.destroy(),this.typed=new l.a(this.rootElement.current,Object.assign(o,t)),this.props.typedRef&&this.props.typedRef(this.typed),this.typed.reConstruct=function(t){e.constructTyped(t)}}},{key:"shouldComponentUpdate",value:function(e){var t=this;if(this.props!==e){e.style,e.typedRef,e.stopped,e.className;var r=d(e,["style","typedRef","stopped","className"]);return this.typed.options=Object.assign(this.typed.options,r),!Object.keys(e).every(function(r){return!t.props[r]&&e[r]?(t.constructTyped(e),!1):(t.typed[r]&&(t.typed[r]=e[r]),!0)})||this.props.strings.length===e.strings.length||this.constructTyped(e),!0}return!1}},{key:"render",value:function(){var e=this.props,t=e.style,r=e.className,o=e.children,a=n.a.createElement("span",{ref:this.rootElement});return o&&(a=n.a.cloneElement(o,{ref:this.rootElement})),n.a.createElement("span",{style:t,className:r},a)}}])&&p(r.prototype,a),t}();b.propTypes={style:i.a.object,className:i.a.string,children:i.a.object,typedRef:i.a.func,stopped:i.a.bool,strings:i.a.arrayOf(i.a.string),typeSpeed:i.a.number,startDelay:i.a.number,backSpeed:i.a.number,smartBackspace:i.a.bool,shuffle:i.a.bool,backDelay:i.a.number,fadeOut:i.a.bool,fadeOutClass:i.a.string,fadeOutDelay:i.a.number,loop:i.a.bool,loopCount:i.a.number,showCursor:i.a.bool,cursorChar:i.a.string,autoInsertCss:i.a.bool,attr:i.a.string,bindInputFocusEvents:i.a.bool,contentType:i.a.oneOf(["html",""]),onComplete:i.a.func,preStringTyped:i.a.func,onStringTyped:i.a.func,onLastStringBackspaced:i.a.func,onTypingPaused:i.a.func,onTypingResumed:i.a.func,onReset:i.a.func,onStop:i.a.func,onStart:i.a.func,onDestroy:i.a.func},t.default=b},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o="function"==typeof Symbol&&Symbol.for,n=o?Symbol.for("react.element"):60103,a=o?Symbol.for("react.portal"):60106,i=o?Symbol.for("react.fragment"):60107,c=o?Symbol.for("react.strict_mode"):60108,l=o?Symbol.for("react.profiler"):60114,u=o?Symbol.for("react.provider"):60109,d=o?Symbol.for("react.context"):60110,p=o?Symbol.for("react.async_mode"):60111,_=o?Symbol.for("react.concurrent_mode"):60111,f=o?Symbol.for("react.forward_ref"):60112,h=o?Symbol.for("react.suspense"):60113,b=o?Symbol.for("react.suspense_list"):60120,m=o?Symbol.for("react.memo"):60115,y=o?Symbol.for("react.lazy"):60116,v=o?Symbol.for("react.fundamental"):60117,g=o?Symbol.for("react.responder"):60118;function w(e){if("object"==s(e)&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case p:case _:case i:case l:case c:case h:return e;default:switch(e=e&&e.$$typeof){case d:case f:case u:return e;default:return t}}case y:case m:case a:return t}}}function x(e){return w(e)===_}t.typeOf=w,t.AsyncMode=p,t.ConcurrentMode=_,t.ContextConsumer=d,t.ContextProvider=u,t.Element=n,t.ForwardRef=f,t.Fragment=i,t.Lazy=y,t.Memo=m,t.Portal=a,t.Profiler=l,t.StrictMode=c,t.Suspense=h,t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===_||e===l||e===c||e===h||e===b||"object"==s(e)&&null!==e&&(e.$$typeof===y||e.$$typeof===m||e.$$typeof===u||e.$$typeof===d||e.$$typeof===f||e.$$typeof===v||e.$$typeof===g)},t.isAsyncMode=function(e){return x(e)||w(e)===p},t.isConcurrentMode=x,t.isContextConsumer=function(e){return w(e)===d},t.isContextProvider=function(e){return w(e)===u},t.isElement=function(e){return"object"==s(e)&&null!==e&&e.$$typeof===n},t.isForwardRef=function(e){return w(e)===f},t.isFragment=function(e){return w(e)===i},t.isLazy=function(e){return w(e)===y},t.isMemo=function(e){return w(e)===m},t.isPortal=function(e){return w(e)===a},t.isProfiler=function(e){return w(e)===l},t.isStrictMode=function(e){return w(e)===c},t.isSuspense=function(e){return w(e)===h}},function(e,t,r){"use strict";!function(){Object.defineProperty(t,"__esModule",{value:!0});var e="function"==typeof Symbol&&Symbol.for,r=e?Symbol.for("react.element"):60103,o=e?Symbol.for("react.portal"):60106,n=e?Symbol.for("react.fragment"):60107,a=e?Symbol.for("react.strict_mode"):60108,i=e?Symbol.for("react.profiler"):60114,c=e?Symbol.for("react.provider"):60109,l=e?Symbol.for("react.context"):60110,u=e?Symbol.for("react.async_mode"):60111,d=e?Symbol.for("react.concurrent_mode"):60111,p=e?Symbol.for("react.forward_ref"):60112,_=e?Symbol.for("react.suspense"):60113,f=e?Symbol.for("react.suspense_list"):60120,h=e?Symbol.for("react.memo"):60115,b=e?Symbol.for("react.lazy"):60116,m=e?Symbol.for("react.fundamental"):60117,y=e?Symbol.for("react.responder"):60118,v=function(e,t){if(void 0===t)throw new Error("`lowPriorityWarning(condition, format, ...args)` requires a warning message argument");if(!e){for(var r=arguments.length,o=Array(r>2?r-2:0),n=2;n<r;n++)o[n-2]=arguments[n];(function(e){for(var t=arguments.length,r=Array(t>1?t-1:0),o=1;o<t;o++)r[o-1]=arguments[o];var n=0,a="Warning: "+e.replace(/%s/g,function(){return r[n++]});"undefined"!=typeof console&&console.warn(a);try{throw new Error(a)}catch(e){}}).apply(void 0,[t].concat(o))}};function g(e){if("object"==s(e)&&null!==e){var t=e.$$typeof;switch(t){case r:var f=e.type;switch(f){case u:case d:case n:case i:case a:case _:return f;default:var m=f&&f.$$typeof;switch(m){case l:case p:case c:return m;default:return t}}case b:case h:case o:return t}}}var w=u,x=d,k=l,O=c,S=r,j=p,E=n,P=b,z=h,C=o,T=i,q=a,M=_,I=!1;function N(e){return g(e)===d}t.typeOf=g,t.AsyncMode=w,t.ConcurrentMode=x,t.ContextConsumer=k,t.ContextProvider=O,t.Element=S,t.ForwardRef=j,t.Fragment=E,t.Lazy=P,t.Memo=z,t.Portal=C,t.Profiler=T,t.StrictMode=q,t.Suspense=M,t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===n||e===d||e===i||e===a||e===_||e===f||"object"==s(e)&&null!==e&&(e.$$typeof===b||e.$$typeof===h||e.$$typeof===c||e.$$typeof===l||e.$$typeof===p||e.$$typeof===m||e.$$typeof===y)},t.isAsyncMode=function(e){return I||(I=!0,v(!1,"The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),N(e)||g(e)===u},t.isConcurrentMode=N,t.isContextConsumer=function(e){return g(e)===l},t.isContextProvider=function(e){return g(e)===c},t.isElement=function(e){return"object"==s(e)&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return g(e)===p},t.isFragment=function(e){return g(e)===n},t.isLazy=function(e){return g(e)===b},t.isMemo=function(e){return g(e)===h},t.isPortal=function(e){return g(e)===o},t.isProfiler=function(e){return g(e)===i},t.isStrictMode=function(e){return g(e)===a},t.isSuspense=function(e){return g(e)===_}}()},function(e,t,r){"use strict";var o=r(3),n=r(9),a=r(2),i=r(10),c=Function.call.bind(Object.prototype.hasOwnProperty),l=function(){};function u(){return null}l=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}},e.exports=function(e,t){var r="function"==typeof Symbol&&Symbol.iterator,d="@@iterator",p="<<anonymous>>",_={array:m("array"),bool:m("boolean"),func:m("function"),number:m("number"),object:m("object"),string:m("string"),symbol:m("symbol"),any:b(u),arrayOf:function(e){return b(function(t,r,o,n,i){if("function"!=typeof e)return new h("Property `"+i+"` of component `"+o+"` has invalid PropType notation inside arrayOf.");var s=t[r];if(!Array.isArray(s))return new h("Invalid "+n+" `"+i+"` of type `"+v(s)+"` supplied to `"+o+"`, expected an array.");for(var c=0;c<s.length;c++){var l=e(s,c,o,n,i+"["+c+"]",a);if(l instanceof Error)return l}return null})},element:b(function(t,r,o,n,a){var i=t[r];return e(i)?null:new h("Invalid "+n+" `"+a+"` of type `"+v(i)+"` supplied to `"+o+"`, expected a single ReactElement.")}),elementType:b(function(e,t,r,n,a){var i=e[t];return o.isValidElementType(i)?null:new h("Invalid "+n+" `"+a+"` of type `"+v(i)+"` supplied to `"+r+"`, expected a single ReactElement type.")}),instanceOf:function(e){return b(function(t,r,o,n,a){if(!(t[r]instanceof e)){var i=e.name||p;return new h("Invalid "+n+" `"+a+"` of type `"+function(e){return e.constructor&&e.constructor.name?e.constructor.name:p}(t[r])+"` supplied to `"+o+"`, expected instance of `"+i+"`.")}return null})},node:b(function(e,t,r,o,n){return y(e[t])?null:new h("Invalid "+o+" `"+n+"` supplied to `"+r+"`, expected a ReactNode.")}),objectOf:function(e){return b(function(t,r,o,n,i){if("function"!=typeof e)return new h("Property `"+i+"` of component `"+o+"` has invalid PropType notation inside objectOf.");var s=t[r],l=v(s);if("object"!==l)return new h("Invalid "+n+" `"+i+"` of type `"+l+"` supplied to `"+o+"`, expected an object.");for(var u in s)if(c(s,u)){var d=e(s,u,o,n,i+"."+u,a);if(d instanceof Error)return d}return null})},oneOf:function(e){return Array.isArray(e)?b(function(t,r,o,n,a){for(var i=t[r],s=0;s<e.length;s++)if(f(i,e[s]))return null;var c=JSON.stringify(e,function(e,t){return"symbol"===g(t)?String(t):t});return new h("Invalid "+n+" `"+a+"` of value `"+String(i)+"` supplied to `"+o+"`, expected one of "+c+".")}):(arguments.length>1?l("Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."):l("Invalid argument supplied to oneOf, expected an array."),u)},oneOfType:function(e){if(!Array.isArray(e))return l("Invalid argument supplied to oneOfType, expected an instance of array."),u;for(var t=0;t<e.length;t++){var r=e[t];if("function"!=typeof r)return l("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+w(r)+" at index "+t+"."),u}return b(function(t,r,o,n,i){for(var s=0;s<e.length;s++)if(null==(0,e[s])(t,r,o,n,i,a))return null;return new h("Invalid "+n+" `"+i+"` supplied to `"+o+"`.")})},shape:function(e){return b(function(t,r,o,n,i){var s=t[r],c=v(s);if("object"!==c)return new h("Invalid "+n+" `"+i+"` of type `"+c+"` supplied to `"+o+"`, expected `object`.");for(var l in e){var u=e[l];if(u){var d=u(s,l,o,n,i+"."+l,a);if(d)return d}}return null})},exact:function(e){return b(function(t,r,o,i,s){var c=t[r],l=v(c);if("object"!==l)return new h("Invalid "+i+" `"+s+"` of type `"+l+"` supplied to `"+o+"`, expected `object`.");var u=n({},t[r],e);for(var d in u){var p=e[d];if(!p)return new h("Invalid "+i+" `"+s+"` key `"+d+"` supplied to `"+o+"`.\nBad object: "+JSON.stringify(t[r],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var _=p(c,d,o,i,s+"."+d,a);if(_)return _}return null})}};function f(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}function h(e){this.message=e,this.stack=""}function b(e){var r={},o=0;function n(n,i,s,c,u,d,_){if(c=c||p,d=d||s,_!==a){if(t){var f=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw f.name="Invariant Violation",f}if("undefined"!=typeof console){var b=c+":"+s;!r[b]&&o<3&&(l("You are manually calling a React.PropTypes validation function for the `"+d+"` prop on `"+c+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),r[b]=!0,o++)}}return null==i[s]?n?null===i[s]?new h("The "+u+" `"+d+"` is marked as required in `"+c+"`, but its value is `null`."):new h("The "+u+" `"+d+"` is marked as required in `"+c+"`, but its value is `undefined`."):null:e(i,s,c,u,d)}var i=n.bind(null,!1);return i.isRequired=n.bind(null,!0),i}function m(e){return b(function(t,r,o,n,a,i){var s=t[r];return v(s)!==e?new h("Invalid "+n+" `"+a+"` of type `"+g(s)+"` supplied to `"+o+"`, expected `"+e+"`."):null})}function y(t){switch(s(t)){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(y);if(null===t||e(t))return!0;var o=function(e){var t=e&&(r&&e[r]||e[d]);if("function"==typeof t)return t}(t);if(!o)return!1;var n,a=o.call(t);if(o!==t.entries){for(;!(n=a.next()).done;)if(!y(n.value))return!1}else for(;!(n=a.next()).done;){var i=n.value;if(i&&!y(i[1]))return!1}return!0;default:return!1}}function v(e){var t=s(e);return Array.isArray(e)?"array":e instanceof RegExp?"object":function(e,t){return"symbol"===e||!!t&&("Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol)}(t,e)?"symbol":t}function g(e){if(null==e)return""+e;var t=v(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function w(e){var t=g(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}return h.prototype=Error.prototype,_.checkPropTypes=i,_.resetWarningCache=i.resetWarningCache,_.PropTypes=_,_}},function(e,t,r){"use strict";var o=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach(function(e){o[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var r,i,s=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),c=1;c<arguments.length;c++){for(var l in r=Object(arguments[c]))n.call(r,l)&&(s[l]=r[l]);if(o){i=o(r);for(var u=0;u<i.length;u++)a.call(r,i[u])&&(s[i[u]]=r[i[u]])}}return s}},function(e,t,r){"use strict";var o=function(){},n=r(2),a={},i=Function.call.bind(Object.prototype.hasOwnProperty);function c(e,t,r,c,l){for(var u in e)if(i(e,u)){var d;try{if("function"!=typeof e[u]){var p=Error((c||"React class")+": "+r+" type `"+u+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+s(e[u])+"`.");throw p.name="Invariant Violation",p}d=e[u](t,u,c,r,null,n)}catch(e){d=e}if(!d||d instanceof Error||o((c||"React class")+": type specification of "+r+" `"+u+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+s(d)+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),d instanceof Error&&!(d.message in a)){a[d.message]=!0;var _=l?l():"";o("Failed "+r+" type: "+d.message+(null!=_?_:""))}}}o=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}},c.resetWarningCache=function(){a={}},e.exports=c},function(e,t,r){"use strict";var o=r(2);function n(){}function a(){}a.resetWarningCache=n,e.exports=function(){function e(e,t,r,n,a,i){if(i!==o){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var r={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:n};return r.PropTypes=r,r}}])},"object"==s(t)&&"object"==s(e)?e.exports=i(r(0)):(n=[r(0)],void 0===(a="function"===typeof(o=i)?o.apply(t,n):o)||(e.exports=a))}).call(t,r(23)(e))},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(22),i=r.n(a),s=r(94),c=(r.n(s),r(53));r.n(c);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 u(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function d(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}var p=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),d(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[];if(t.push([{selector:"%%order_class%% .dsm-perspective-image-wrapper",declaration:"transform: perspective(".concat(e.perspective,") rotateX(").concat(e.dsm_rotate_x,") rotateY(").concat(e.dsm_rotate_y,") rotateZ(").concat(e.dsm_rotate_z,");")}]),"left"!==e.align&&t.push([{selector:"%%order_class%%",declaration:"text-align: ".concat(e.align,";")}]),"on"===e.force_fullwidth&&t.push([{selector:"%%order_class%% .et_pb_image_wrap, %%order_class%% img",declaration:"width: 100%;"}]),"on"===e.use_overlay&&(e.hover_overlay_color&&t.push([{selector:"%%order_class%% .et_overlay",declaration:"background-color: ".concat(e.hover_overlay_color,";")}]),e.overlay_icon_color&&t.push([{selector:"%%order_class%% .et_overlay:before",declaration:"color: ".concat(e.overlay_icon_color,";")}])),"on"!==e.dsm_rotate_y__hover_enabled&&"on"!==e.dsm_rotate_x__hover_enabled&&"on"!==e.dsm_rotate_z__hover_enabled||t.push([{selector:"%%order_class%% .dsm-perspective-image-wrapper",declaration:"transition: transform ".concat(e.hover_transition_duration," ").concat(e.hover_transition_speed_curve," ").concat(e.hover_transition_delay,";")}]),void 0===e.dsm_rotate_y__hover)var r="0deg";else r=e.dsm_rotate_y__hover;if(void 0===e.dsm_rotate_x__hover)var o="0deg";else o=e.dsm_rotate_x__hover;if(void 0===e.dsm_rotate_z__hover)var n="0deg";else n=e.dsm_rotate_z__hover;var a=""!==e.dsm_rotate_x__hover?" rotateX(".concat(o,")"):"",i=""!==e.dsm_rotate_y__hover?" rotateY(".concat(r,")"):"",s=""!==e.dsm_rotate_z__hover?" rotateZ(".concat(n,")"):"";("on"!==e.dsm_rotate_y__hover_enabled&&"on"!==e.dsm_rotate_x__hover_enabled&&"on"!==e.dsm_rotate_z__hover_enabled||""===e.dsm_rotate_y__hover&&""===e.dsm_rotate_x__hover&&""===e.dsm_rotate_z__hover||t.push([{selector:"%%order_class%%:hover .dsm-perspective-image-wrapper",declaration:"transform: perspective(".concat(e.perspective,")").concat(a).concat(i).concat(s,";")}]),e.src)&&("svg"===e.src.substr(e.src.lastIndexOf(".")+1)&&t.push([{selector:"%%order_class%% .et_pb_image_wrap",declaration:"display: block;"}]));return t}}],(a=[{key:"componentDidUpdate",value:function(e){var t=Object(s.findDOMNode)(this.refs.lightboxIMG);i()(t).magnificPopup({type:"image",removalDelay:500,mainClass:"mfp-fade",zoom:{enabled:!0,duration:500,opener:function(e){return e.find("img")}}})}},{key:"_renderOverlay",value:function(){var e=this.props,t=window.ET_Builder.API.Utils.processFontIcon(e.hover_icon);return"off"===e.use_overlay&&("on"===e.show_in_lightbox||"off"===e.show_in_lightbox&&""!==e.url)?"":n.a.createElement(o.Fragment,null,n.a.createElement("span",{className:"et_overlay et_pb_inline_icon","data-icon":t}))}},{key:"_renderImageOutPut",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("span",{className:"et_pb_image_wrap"},n.a.createElement("img",{src:e.src,alt:e.alt,title:e.title_text}),this._renderOverlay()))}},{key:"_renderImage",value:function(){var e=this.props,t="on"===e.url_new_window&&"off"===e.show_in_lightbox?"_blank":"",r="on"===e.show_lightbox_other_img&&""!==e.show_lightbox_other_img_src?e.show_lightbox_other_img_src:e.src;return e.src||e.url?"on"===e.show_in_lightbox?n.a.createElement(o.Fragment,null,n.a.createElement("a",{ref:"lightboxIMG",href:e.src,className:"et_pb_lightbox_image","data-mfp-src":r},this._renderImageOutPut())):void 0===e.url?n.a.createElement(o.Fragment,null,this._renderImageOutPut()):""!==e.url?n.a.createElement(o.Fragment,null,n.a.createElement("a",{href:e.url,target:t,title:e.alt},this._renderImageOutPut())):n.a.createElement(o.Fragment,null,this._renderImageOutPut()):""}},{key:"render",value:function(){var e=this.props;return n.a.createElement("div",{ref:"spaces",className:"dsm-perspective-image-wrapper".concat("on"===e.use_overlay&&("on"===e.show_in_lightbox||"off"===e.show_in_lightbox&&""!==e.url)?" et_pb_has_overlay":"")},n.a.createElement(o.Fragment,null,this._renderImage()))}}])&&u(r.prototype,a),c&&u(r,c),t}();Object.defineProperty(p,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_perspective_image"}),t.a=p},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(54);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];return e.height&&t.push([{selector:"%%order_class%% .dsm-text-divider-wrapper",declaration:"height: ".concat(e.height,";")}]),e.divider_style&&t.push([{selector:"%%order_class%% .dsm-divider",declaration:"border-top-style: ".concat(e.divider_style,";")}]),"center"!==e.divider_position&&t.push([{selector:"%%order_class%% .dsm-text-divider-wrapper",declaration:"align-items: ".concat(e.divider_position,";")}]),e.color&&t.push([{selector:"%%order_class%% .dsm-divider",declaration:"border-top-color: ".concat(e.color,";")}]),e.divider_weight&&t.push([{selector:"%%order_class%% .dsm-divider",declaration:"border-top-width: ".concat(e.divider_weight,";")}]),"10px"!==e.text_gap&&("center"===e.text_alignment?t.push([{selector:"%%order_class%% .dsm-text-divider-header",declaration:"margin: 0 ".concat(e.text_gap,";")}]):"left"===e.text_alignment?t.push([{selector:"%%order_class%% .dsm-text-divider-header",declaration:"margin: 0 ".concat(e.text_gap," 0 0;")}]):t.push([{selector:"%%order_class%% .dsm-text-divider-header",declaration:"margin: 0 0 0 ".concat(e.text_gap,";")}])),t}}],(a=[{key:"_renderText",value:function(){var e=this.props,t=""===e.header_level?"h2":"".concat(e.header_level);return e.header?void 0===e.header_level?n.a.createElement(o.Fragment,null,n.a.createElement("h3",{className:"dsm-text-divider-header et_pb_module_header"},e.header)):n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-text-divider-header et_pb_module_header"},e.header)):""}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm-text-divider-wrapper et_pb_bg_layout_".concat(e.background_layout," dsm-text-divider-align-").concat(e.text_alignment)},n.a.createElement("div",{className:"dsm-text-divider-before dsm-divider"}),this._renderText(),n.a.createElement("div",{className:"dsm-text-divider-after dsm-divider"})))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_text_divider"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(55);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){return[]}}],(a=[{key:"_renderTitle",value:function(){var e=this.props,t=""===e.header_level?"h1":"".concat(e.header_level);return e.gradient_text?void 0===e.header_level?n.a.createElement(o.Fragment,null,n.a.createElement("h1",{className:"dsm-gradient-text et_pb_module_header"},e.gradient_text)):n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-gradient-text et_pb_module_header"},e.gradient_text)):""}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"et_pb_bg_layout_".concat(e.background_layout)},this._renderTitle()))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_gradient_text"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(94),i=(r.n(a),r(22)),s=r.n(i),c=r(56),l=(r.n(c),r(57));r.n(l);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 d(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function p(e,t){return!t||"object"!==u(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}var _=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),p(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,i,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[],r=e.separator_gap_last_edited&&e.separator_gap_last_edited.startsWith("on"),o=e.separator_gap,n=r&&e.separator_gap_tablet?e.separator_gap_tablet:o,a=r&&e.separator_gap_phone?e.separator_gap_phone:n;return e.separator_gap&&t.push([{selector:"%%order_class%% .dsm-button-separator-text",declaration:"margin-left: ".concat(o,"; margin-right: ").concat(o)}]),e.separator_gap_tablet&&t.push([{selector:"%%order_class%% .dsm-button-separator-text",declaration:"margin-left: ".concat(n,"; margin-right: ").concat(n),device:"tablet"}]),e.separator_gap_phone&&t.push([{selector:"%%order_class%% .dsm-button-separator-text",declaration:"margin-left: ".concat(a,"; margin-right: ").concat(a),device:"phone"}]),t}}],(i=[{key:"componentDidUpdate",value:function(){var e=this.props;s()(Object(a.findDOMNode)(this.popupvideoLink)).magnificPopup({delegate:".dsm-video-lightbox",type:"iframe",iframe:{markup:'<div class="mfp-iframe-scaler dsm-video-popup"><div class="mfp-close"></div><iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe></div>',patterns:{youtube:{index:"youtube.com/",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1&rel=0"},youtu_be:{index:"youtu.be",id:"/",src:"//www.youtube.com/embed/%id%?autoplay=1&rel=0"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},dailymotion:{index:"dailymotion.com",id:function(e){var t=e.match(/^.+dailymotion.com\/(video|hub)\/([^_]+)[^#]*(#video=([^_&]+))?/);return null!==t?void 0!==t[4]?t[4]:t[2]:null},src:"https://www.dailymotion.com/embed/video/%id%"}},srcAction:"iframe_src"},mainClass:"dsm-video-popup-wrap mfp-fade"});var t=Object(a.findDOMNode)(this.refs.IMGOneLightbox);"on"===e.button_one_image_popup?s()(t).magnificPopup({type:"image",removalDelay:500,mainClass:"mfp-fade"}):(s()(t).off("click"),s()(t).removeData("magnificPopup"));var r=Object(a.findDOMNode)(this.refs.IMGTwoLightbox);"on"===e.button_two_image_popup?s()(r).magnificPopup({type:"image",removalDelay:500,mainClass:"mfp-fade"}):(s()(r).off("click"),s()(r).removeData("magnificPopup"))}},{key:"_renderButton",value:function(){var e=this.props,t=window.ET_Builder.API.Utils,r="on"===e.button_one_url_new_window?"_blank":"",o=!!e.button_one_icon&&t.processFontIcon(e.button_one_icon),a=e.button_one_hover_animation,i="on"===e.button_one_video_popup?" dsm-video-lightbox et_pb_lightbox_image":"",s="on"===e.button_one_image_popup?" dsm-image-lightbox et_pb_lightbox_image":"",c="on"===e.button_one_image_popup?"".concat(e.button_one_image_src):"".concat(e.button_one_url),l={et_pb_button_one:!0,et_pb_button:!0,et_pb_custom_button_icon:e.button_one_icon};return e.button_one_text?n.a.createElement("a",{ref:"IMGOneLightbox",className:"".concat(t.classnames(l)," ").concat(a).concat(i).concat(s," ").concat(this.buttonBackgroundClassName()),href:c,target:r,rel:t.linkRel(e.button_one_rel),"data-icon":o},e.button_one_text):""}},{key:"_renderButtonTwo",value:function(){var e=this.props,t=window.ET_Builder.API.Utils,r="on"===e.button_two_url_new_window?"_blank":"",a=!!e.button_two_icon&&t.processFontIcon(e.button_two_icon),i=e.button_two_hover_animation,s="on"===e.button_two_video_popup?" dsm-video-lightbox et_pb_lightbox_image":"",c="on"===e.button_two_image_popup?" dsm-image-lightbox et_pb_lightbox_image":"",l="on"===e.button_two_image_popup?"".concat(e.button_two_image_src):"".concat(e.button_two_url),u={et_pb_button_two:!0,et_pb_button:!0,et_pb_custom_button_icon:e.button_two_icon};return e.button_two_text?n.a.createElement(o.Fragment,null,this._renderSeparator(),n.a.createElement("a",{ref:"IMGTwoLightbox",className:"".concat(t.classnames(u)," ").concat(i).concat(s).concat(c," ").concat(this.buttonBackgroundClassName()),href:l,target:r,rel:t.linkRel(e.button_two_rel),"data-icon":a},e.button_two_text)):""}},{key:"_renderSeparator",value:function(){var e=this.props;return e.separator_text?n.a.createElement("span",{className:"dsm-button-separator-text"},e.separator_text):""}},{key:"buttonBackgroundClassName",value:function(){var e=this.props,t=["et_pb_bg_layout_".concat(e.background_layout," ")],r=e.background_layout_last_edited,o=r&&r.startsWith("on");return e.background_layout_tablet&&o&&e.background_layout_tablet&&""!==e.background_layout_tablet&&t.push("et_pb_bg_layout_".concat(e.background_layout_tablet,"_tablet ")),e.background_layout_phone&&o&&e.background_layout_phone&&""!==e.background_layout_phone&&t.push("et_pb_bg_layout_".concat(e.background_layout_phone,"_phone ")),t.join(" ")}},{key:"buttonAlignmentClassName",value:function(){var e=this.props,t=["et_pb_button_alignment_".concat(e.button_alignment," ")],r=e.button_alignment_last_edited,o=r&&r.startsWith("on");return e.button_alignment_tablet&&o&&e.button_alignment_tablet&&""!==e.button_alignment_tablet&&t.push("et_pb_button_alignment_tablet_".concat(e.button_alignment_tablet," ")),e.button_alignment_phone&&o&&e.button_alignment_phone&&""!==e.button_alignment_phone&&t.push("et_pb_button_alignment_phone_".concat(e.button_alignment_phone," ")),e.separator_text&&t.push("dsm-button-seperator "),t.join(" ")}},{key:"render",value:function(){var e=this,t=this.props;return n.a.createElement("div",{ref:function(t){e.popupvideoLink=t},className:"".concat(this.buttonAlignmentClassName()).concat(this.buttonBackgroundClassName(),"et_pb_button_module_wrapper").concat(t.separator_text&&"on"===t.remove_separator_text_on_mobile?" dsm-button-separator-remove":"").concat(t.separator_text&&"on"===t.fullwidth_separator_text_on_mobile?" dsm-button-separator-fullwidth":"")},this._renderButton(),this._renderButtonTwo())}}])&&d(r.prototype,i),c&&d(r,c),t}();Object.defineProperty(_,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_button"}),t.a=_},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(95);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,i,l;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,o["Component"]),r=t,l=[{key:"css",value:function(e){var t=[];return"center"!==e.separator_gap&&t.push([{selector:"%%order_class%% .dsm-facebook-feed",declaration:"text-align: ".concat(e.fb_alignment,";")}]),t}}],(i=[{key:"shouldComponentUpdate",value:function(e,t){return e.fb_page_url!==this.props.fb_page_url||e.fb_tabs!==this.props.fb_tabs||e.fb_small_header!==this.props.fb_small_header||e.fb_hide_cover!==this.props.fb_hide_cover||e.fb_width!==this.props.fb_width||e.fb_height!==this.props.fb_height||e.fb_show_facepile!==this.props.fb_show_facepile}},{key:"render",value:function(){var e,t=this.props,r=""===t.fb_app_id?"252971358753113":"".concat(t.fb_app_id),i=t.fb_tabs.split("|"),s=["on"===i[0]?"timeline":"","on"===i[1]?"events":"","on"===i[2]?"messages":""];return e="undefined"!==typeof s[0]&&null!==s[0]?s.filter(Boolean):"",n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm-facebook-feed et_pb_text_align_".concat(t.fb_alignment)},n.a.createElement(a.FacebookProvider,{appId:r},n.a.createElement(a.Page,{href:t.fb_page_url,tabs:e,width:parseInt(t.fb_width,10),height:parseInt(t.fb_height,10),smallHeader:t.fb_small_header,adaptContainerWidth:"true",hideCover:t.fb_hide_cover,showFacepile:t.fb_show_facepile,hideCTA:"true"}))))}}])&&s(r.prototype,i),l&&s(r,l),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_facebook_feed"}),t.a=l},function(e,t,r){var o=function(){return this}()||Function("return this")(),n=o.regeneratorRuntime&&Object.getOwnPropertyNames(o).indexOf("regeneratorRuntime")>=0,a=n&&o.regeneratorRuntime;if(o.regeneratorRuntime=void 0,e.exports=r(156),n)o.regeneratorRuntime=a;else try{delete o.regeneratorRuntime}catch(e){o.regeneratorRuntime=void 0}},function(e,t,r){(function(e){function t(e){return(t="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(r){"use strict";var o,n=Object.prototype,a=n.hasOwnProperty,i="function"===typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",c=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag",u="object"===t(e),d=r.regeneratorRuntime;if(d)u&&(e.exports=d);else{(d=r.regeneratorRuntime=u?e.exports:{}).wrap=w;var p="suspendedStart",_="suspendedYield",f="executing",h="completed",b={},m={};m[s]=function(){return this};var y=Object.getPrototypeOf,v=y&&y(y(q([])));v&&v!==n&&a.call(v,s)&&(m=v);var g=S.prototype=k.prototype=Object.create(m);O.prototype=g.constructor=S,S.constructor=O,S[l]=O.displayName="GeneratorFunction",d.isGeneratorFunction=function(e){var t="function"===typeof e&&e.constructor;return!!t&&(t===O||"GeneratorFunction"===(t.displayName||t.name))},d.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,S):(e.__proto__=S,l in e||(e[l]="GeneratorFunction")),e.prototype=Object.create(g),e},d.awrap=function(e){return{__await:e}},j(E.prototype),E.prototype[c]=function(){return this},d.AsyncIterator=E,d.async=function(e,t,r,o){var n=new E(w(e,t,r,o));return d.isGeneratorFunction(t)?n:n.next().then(function(e){return e.done?e.value:n.next()})},j(g),g[l]="Generator",g[s]=function(){return this},g.toString=function(){return"[object Generator]"},d.keys=function(e){var t=[];for(var r in e)t.push(r);return t.reverse(),function r(){for(;t.length;){var o=t.pop();if(o in e)return r.value=o,r.done=!1,r}return r.done=!0,r}},d.values=q,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=o,this.done=!1,this.delegate=null,this.method="next",this.arg=o,this.tryEntries.forEach(C),!e)for(var t in this)"t"===t.charAt(0)&&a.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=o)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(r,n){return s.type="throw",s.arg=e,t.next=r,n&&(t.method="next",t.arg=o),!!n}for(var n=this.tryEntries.length-1;n>=0;--n){var i=this.tryEntries[n],s=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var c=a.call(i,"catchLoc"),l=a.call(i,"finallyLoc");if(c&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(c){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&a.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var n=o;break}}n&&("break"===e||"continue"===e)&&n.tryLoc<=t&&t<=n.finallyLoc&&(n=null);var i=n?n.completion:{};return i.type=e,i.arg=t,n?(this.method="next",this.next=n.finallyLoc,b):this.complete(i)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),b},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),C(r),b}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var o=r.completion;if("throw"===o.type){var n=o.arg;C(r)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,r){return this.delegate={iterator:q(e),resultName:t,nextLoc:r},"next"===this.method&&(this.arg=o),b}}}function w(e,t,r,o){var n=t&&t.prototype instanceof k?t:k,a=Object.create(n.prototype),i=new T(o||[]);return a._invoke=function(e,t,r){var o=p;return function(n,a){if(o===f)throw new Error("Generator is already running");if(o===h){if("throw"===n)throw a;return M()}for(r.method=n,r.arg=a;;){var i=r.delegate;if(i){var s=P(i,r);if(s){if(s===b)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=h,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=f;var c=x(e,t,r);if("normal"===c.type){if(o=r.done?h:_,c.arg===b)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=h,r.method="throw",r.arg=c.arg)}}}(e,r,i),a}function x(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}function k(){}function O(){}function S(){}function j(e){["next","throw","return"].forEach(function(t){e[t]=function(e){return this._invoke(t,e)}})}function E(e){var r;this._invoke=function(o,n){function i(){return new Promise(function(r,i){!function r(o,n,i,s){var c=x(e[o],e,n);if("throw"!==c.type){var l=c.arg,u=l.value;return u&&"object"===t(u)&&a.call(u,"__await")?Promise.resolve(u.__await).then(function(e){r("next",e,i,s)},function(e){r("throw",e,i,s)}):Promise.resolve(u).then(function(e){l.value=e,i(l)},s)}s(c.arg)}(o,n,r,i)})}return r=r?r.then(i,i):i()}}function P(e,t){var r=e.iterator[t.method];if(r===o){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=o,P(e,t),"throw"===t.method))return b;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return b}var n=x(r,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,b;var a=n.arg;return a?a.done?(t[e.resultName]=a.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=o),t.delegate=null,b):a:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,b)}function z(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function C(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function T(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(z,this),this.reset(!0)}function q(e){if(e){var t=e[s];if(t)return t.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var r=-1,n=function t(){for(;++r<e.length;)if(a.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=o,t.done=!0,t};return n.next=n}}return{next:M}}function M(){return{value:o,done:!0}}}(function(){return this}()||Function("return this")())}).call(t,r(23)(e))},function(e,t,r){e.exports={default:r(158),__esModule:!0}},function(e,t,r){r(97),r(98),r(106),r(168),r(180),r(181),e.exports=r(7).Promise},function(e,t,r){var o=r(58),n=r(59);e.exports=function(e){return function(t,r){var a,i,s=String(n(t)),c=o(r),l=s.length;return c<0||c>=l?e?"":void 0:(a=s.charCodeAt(c))<55296||a>56319||c+1===l||(i=s.charCodeAt(c+1))<56320||i>57343?e?s.charAt(c):a:e?s.slice(c,c+2):i-56320+(a-55296<<10)+65536}}},function(e,t,r){"use strict";var o=r(62),n=r(37),a=r(40),i={};r(18)(i,r(6)("iterator"),function(){return this}),e.exports=function(e,t,r){e.prototype=o(i,{next:n(1,r)}),a(e,t+" Iterator")}},function(e,t,r){var o=r(19),n=r(12),a=r(38);e.exports=r(15)?Object.defineProperties:function(e,t){n(e);for(var r,i=a(t),s=i.length,c=0;s>c;)o.f(e,r=i[c++],t[r]);return e}},function(e,t,r){var o=r(24),n=r(104),a=r(163);e.exports=function(e){return function(t,r,i){var s,c=o(t),l=n(c.length),u=a(i,l);if(e&&r!=r){for(;l>u;)if((s=c[u++])!=s)return!0}else for(;l>u;u++)if((e||u in c)&&c[u]===r)return e||u||0;return!e&&-1}}},function(e,t,r){var o=r(58),n=Math.max,a=Math.min;e.exports=function(e,t){return(e=o(e))<0?n(e+t,0):a(e,t)}},function(e,t,r){var o=r(20),n=r(66),a=r(63)("IE_PROTO"),i=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=n(e),o(e,a)?e[a]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?i:null}},function(e,t,r){"use strict";var o=r(166),n=r(167),a=r(33),i=r(24);e.exports=r(99)(Array,"Array",function(e,t){this._t=i(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,r=this._i++;return!e||r>=e.length?(this._t=void 0,n(1)):n(0,"keys"==t?r:"values"==t?e[r]:[r,e[r]])},"values"),a.Arguments=a.Array,o("keys"),o("values"),o("entries")},function(e,t){e.exports=function(){}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,r){"use strict";var o,n,a,i,s=r(30),c=r(5),l=r(31),u=r(107),d=r(13),p=r(14),_=r(36),f=r(169),h=r(170),b=r(108),m=r(109).set,y=r(175)(),v=r(67),g=r(110),w=r(176),x=r(111),k=c.TypeError,O=c.process,S=O&&O.versions,j=S&&S.v8||"",E=c.Promise,P="process"==u(O),z=function(){},C=n=v.f,T=!!function(){try{var e=E.resolve(1),t=(e.constructor={})[r(6)("species")]=function(e){e(z,z)};return(P||"function"==typeof PromiseRejectionEvent)&&e.then(z)instanceof t&&0!==j.indexOf("6.6")&&-1===w.indexOf("Chrome/66")}catch(e){}}(),q=function(e){var t;return!(!p(e)||"function"!=typeof(t=e.then))&&t},M=function(e,t){if(!e._n){e._n=!0;var r=e._c;y(function(){for(var o=e._v,n=1==e._s,a=0,i=function(t){var r,a,i,s=n?t.ok:t.fail,c=t.resolve,l=t.reject,u=t.domain;try{s?(n||(2==e._h&&R(e),e._h=1),!0===s?r=o:(u&&u.enter(),r=s(o),u&&(u.exit(),i=!0)),r===t.promise?l(k("Promise-chain cycle")):(a=q(r))?a.call(r,c,l):c(r)):l(o)}catch(e){u&&!i&&u.exit(),l(e)}};r.length>a;)i(r[a++]);e._c=[],e._n=!1,t&&!e._h&&I(e)})}},I=function(e){m.call(c,function(){var t,r,o,n=e._v,a=N(e);if(a&&(t=g(function(){P?O.emit("unhandledRejection",n,e):(r=c.onunhandledrejection)?r({promise:e,reason:n}):(o=c.console)&&o.error&&o.error("Unhandled promise rejection",n)}),e._h=P||N(e)?2:1),e._a=void 0,a&&t.e)throw t.v})},N=function(e){return 1!==e._h&&0===(e._a||e._c).length},R=function(e){m.call(c,function(){var t;P?O.emit("rejectionHandled",e):(t=c.onrejectionhandled)&&t({promise:e,reason:e._v})})},F=function(e){var t=this;t._d||(t._d=!0,(t=t._w||t)._v=e,t._s=2,t._a||(t._a=t._c.slice()),M(t,!0))},A=function e(t){var r,o=this;if(!o._d){o._d=!0,o=o._w||o;try{if(o===t)throw k("Promise can't be resolved itself");(r=q(t))?y(function(){var n={_w:o,_d:!1};try{r.call(t,l(e,n,1),l(F,n,1))}catch(e){F.call(n,e)}}):(o._v=t,o._s=1,M(o,!1))}catch(e){F.call({_w:o,_d:!1},e)}}};T||(E=function(e){f(this,E,"Promise","_h"),_(e),o.call(this);try{e(l(A,this,1),l(F,this,1))}catch(e){F.call(this,e)}},(o=function(e){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=r(177)(E.prototype,{then:function(e,t){var r=C(b(this,E));return r.ok="function"!=typeof e||e,r.fail="function"==typeof t&&t,r.domain=P?O.domain:void 0,this._c.push(r),this._a&&this._a.push(r),this._s&&M(this,!1),r.promise},catch:function(e){return this.then(void 0,e)}}),a=function(){var e=new o;this.promise=e,this.resolve=l(A,e,1),this.reject=l(F,e,1)},v.f=C=function(e){return e===E||e===i?new a(e):n(e)}),d(d.G+d.W+d.F*!T,{Promise:E}),r(40)(E,"Promise"),r(178)("Promise"),i=r(7).Promise,d(d.S+d.F*!T,"Promise",{reject:function(e){var t=C(this);return(0,t.reject)(e),t.promise}}),d(d.S+d.F*(s||!T),"Promise",{resolve:function(e){return x(s&&this===i?E:this,e)}}),d(d.S+d.F*!(T&&r(179)(function(e){E.all(e).catch(z)})),"Promise",{all:function(e){var t=this,r=C(t),o=r.resolve,n=r.reject,a=g(function(){var r=[],a=0,i=1;h(e,!1,function(e){var s=a++,c=!1;r.push(void 0),i++,t.resolve(e).then(function(e){c||(c=!0,r[s]=e,--i||o(r))},n)}),--i||o(r)});return a.e&&n(a.v),r.promise},race:function(e){var t=this,r=C(t),o=r.reject,n=g(function(){h(e,!1,function(e){t.resolve(e).then(r.resolve,o)})});return n.e&&o(n.v),r.promise}})},function(e,t){e.exports=function(e,t,r,o){if(!(e instanceof t)||void 0!==o&&o in e)throw TypeError(r+": incorrect invocation!");return e}},function(e,t,r){var o=r(31),n=r(171),a=r(172),i=r(12),s=r(104),c=r(173),l={},u={};(t=e.exports=function(e,t,r,d,p){var _,f,h,b,m=p?function(){return e}:c(e),y=o(r,d,t?2:1),v=0;if("function"!=typeof m)throw TypeError(e+" is not iterable!");if(a(m)){for(_=s(e.length);_>v;v++)if((b=t?y(i(f=e[v])[0],f[1]):y(e[v]))===l||b===u)return b}else for(h=m.call(e);!(f=h.next()).done;)if((b=n(h,y,f.value,t))===l||b===u)return b}).BREAK=l,t.RETURN=u},function(e,t,r){var o=r(12);e.exports=function(e,t,r,n){try{return n?t(o(r)[0],r[1]):t(r)}catch(t){var a=e.return;throw void 0!==a&&o(a.call(e)),t}}},function(e,t,r){var o=r(33),n=r(6)("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[n]===e)}},function(e,t,r){var o=r(107),n=r(6)("iterator"),a=r(33);e.exports=r(7).getIteratorMethod=function(e){if(void 0!=e)return e[n]||e["@@iterator"]||a[o(e)]}},function(e,t){e.exports=function(e,t,r){var o=void 0===r;switch(t.length){case 0:return o?e():e.call(r);case 1:return o?e(t[0]):e.call(r,t[0]);case 2:return o?e(t[0],t[1]):e.call(r,t[0],t[1]);case 3:return o?e(t[0],t[1],t[2]):e.call(r,t[0],t[1],t[2]);case 4:return o?e(t[0],t[1],t[2],t[3]):e.call(r,t[0],t[1],t[2],t[3])}return e.apply(r,t)}},function(e,t,r){var o=r(5),n=r(109).set,a=o.MutationObserver||o.WebKitMutationObserver,i=o.process,s=o.Promise,c="process"==r(34)(i);e.exports=function(){var e,t,r,l=function(){var o,n;for(c&&(o=i.domain)&&o.exit();e;){n=e.fn,e=e.next;try{n()}catch(o){throw e?r():t=void 0,o}}t=void 0,o&&o.enter()};if(c)r=function(){i.nextTick(l)};else if(!a||o.navigator&&o.navigator.standalone)if(s&&s.resolve){var u=s.resolve(void 0);r=function(){u.then(l)}}else r=function(){n.call(o,l)};else{var d=!0,p=document.createTextNode("");new a(l).observe(p,{characterData:!0}),r=function(){p.data=d=!d}}return function(o){var n={fn:o,next:void 0};t&&(t.next=n),e||(e=n,r()),t=n}}},function(e,t,r){var o=r(5).navigator;e.exports=o&&o.userAgent||""},function(e,t,r){var o=r(18);e.exports=function(e,t,r){for(var n in t)r&&e[n]?e[n]=t[n]:o(e,n,t[n]);return e}},function(e,t,r){"use strict";var o=r(5),n=r(7),a=r(19),i=r(15),s=r(6)("species");e.exports=function(e){var t="function"==typeof n[e]?n[e]:o[e];i&&t&&!t[s]&&a.f(t,s,{configurable:!0,get:function(){return this}})}},function(e,t,r){var o=r(6)("iterator"),n=!1;try{var a=[7][o]();a.return=function(){n=!0},Array.from(a,function(){throw 2})}catch(e){}e.exports=function(e,t){if(!t&&!n)return!1;var r=!1;try{var a=[7],i=a[o]();i.next=function(){return{done:r=!0}},a[o]=function(){return i},e(a)}catch(e){}return r}},function(e,t,r){"use strict";var o=r(13),n=r(7),a=r(5),i=r(108),s=r(111);o(o.P+o.R,"Promise",{finally:function(e){var t=i(this,n.Promise||a.Promise),r="function"==typeof e;return this.then(r?function(r){return s(t,e()).then(function(){return r})}:e,r?function(r){return s(t,e()).then(function(){throw r})}:e)}})},function(e,t,r){"use strict";var o=r(13),n=r(67),a=r(110);o(o.S,"Promise",{try:function(e){var t=n.f(this),r=a(e);return(r.e?t.reject:t.resolve)(r.v),t.promise}})},function(e,t,r){e.exports={default:r(183),__esModule:!0}},function(e,t,r){r(98),r(106),e.exports=r(68).f("iterator")},function(e,t,r){e.exports={default:r(185),__esModule:!0}},function(e,t,r){r(186),r(97),r(191),r(192),e.exports=r(7).Symbol},function(e,t,r){"use strict";function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(5),a=r(20),i=r(15),s=r(13),c=r(101),l=r(187).KEY,u=r(32),d=r(64),p=r(40),_=r(39),f=r(6),h=r(68),b=r(69),m=r(188),y=r(189),v=r(12),g=r(14),w=r(66),x=r(24),k=r(61),O=r(37),S=r(62),j=r(190),E=r(114),P=r(70),z=r(19),C=r(38),T=E.f,q=z.f,M=j.f,I=n.Symbol,N=n.JSON,R=N&&N.stringify,F=f("_hidden"),A=f("toPrimitive"),L={}.propertyIsEnumerable,D=d("symbol-registry"),B=d("symbols"),U=d("op-symbols"),W=Object.prototype,Y="function"==typeof I&&!!P.f,X=n.QObject,$=!X||!X.prototype||!X.prototype.findChild,G=i&&u(function(){return 7!=S(q({},"a",{get:function(){return q(this,"a",{value:7}).a}})).a})?function(e,t,r){var o=T(W,t);o&&delete W[t],q(e,t,r),o&&e!==W&&q(W,t,o)}:q,H=function(e){var t=B[e]=S(I.prototype);return t._k=e,t},V=Y&&"symbol"==o(I.iterator)?function(e){return"symbol"==o(e)}:function(e){return e instanceof I},K=function(e,t,r){return e===W&&K(U,t,r),v(e),t=k(t,!0),v(r),a(B,t)?(r.enumerable?(a(e,F)&&e[F][t]&&(e[F][t]=!1),r=S(r,{enumerable:O(0,!1)})):(a(e,F)||q(e,F,O(1,{})),e[F][t]=!0),G(e,t,r)):q(e,t,r)},J=function(e,t){v(e);for(var r,o=m(t=x(t)),n=0,a=o.length;a>n;)K(e,r=o[n++],t[r]);return e},Q=function(e){var t=L.call(this,e=k(e,!0));return!(this===W&&a(B,e)&&!a(U,e))&&(!(t||!a(this,e)||!a(B,e)||a(this,F)&&this[F][e])||t)},Z=function(e,t){if(e=x(e),t=k(t,!0),e!==W||!a(B,t)||a(U,t)){var r=T(e,t);return!r||!a(B,t)||a(e,F)&&e[F][t]||(r.enumerable=!0),r}},ee=function(e){for(var t,r=M(x(e)),o=[],n=0;r.length>n;)a(B,t=r[n++])||t==F||t==l||o.push(t);return o},te=function(e){for(var t,r=e===W,o=M(r?U:x(e)),n=[],i=0;o.length>i;)!a(B,t=o[i++])||r&&!a(W,t)||n.push(B[t]);return n};Y||(c((I=function(){if(this instanceof I)throw TypeError("Symbol is not a constructor!");var e=_(arguments.length>0?arguments[0]:void 0);return i&&$&&G(W,e,{configurable:!0,set:function t(r){this===W&&t.call(U,r),a(this,F)&&a(this[F],e)&&(this[F][e]=!1),G(this,e,O(1,r))}}),H(e)}).prototype,"toString",function(){return this._k}),E.f=Z,z.f=K,r(113).f=j.f=ee,r(41).f=Q,P.f=te,i&&!r(30)&&c(W,"propertyIsEnumerable",Q,!0),h.f=function(e){return H(f(e))}),s(s.G+s.W+s.F*!Y,{Symbol:I});for(var re="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),oe=0;re.length>oe;)f(re[oe++]);for(var ne=C(f.store),ae=0;ne.length>ae;)b(ne[ae++]);s(s.S+s.F*!Y,"Symbol",{for:function(e){return a(D,e+="")?D[e]:D[e]=I(e)},keyFor:function(e){if(!V(e))throw TypeError(e+" is not a symbol!");for(var t in D)if(D[t]===e)return t},useSetter:function(){$=!0},useSimple:function(){$=!1}}),s(s.S+s.F*!Y,"Object",{create:function(e,t){return void 0===t?S(e):J(S(e),t)},defineProperty:K,defineProperties:J,getOwnPropertyDescriptor:Z,getOwnPropertyNames:ee,getOwnPropertySymbols:te});var ie=u(function(){P.f(1)});s(s.S+s.F*ie,"Object",{getOwnPropertySymbols:function(e){return P.f(w(e))}}),N&&s(s.S+s.F*(!Y||u(function(){var e=I();return"[null]"!=R([e])||"{}"!=R({a:e})||"{}"!=R(Object(e))})),"JSON",{stringify:function(e){for(var t,r,o=[e],n=1;arguments.length>n;)o.push(arguments[n++]);if(r=t=o[1],(g(t)||void 0!==e)&&!V(e))return y(t)||(t=function(e,t){if("function"==typeof r&&(t=r.call(this,e,t)),!V(t))return t}),o[1]=t,R.apply(N,o)}}),I.prototype[A]||r(18)(I.prototype,A,I.prototype.valueOf),p(I,"Symbol"),p(Math,"Math",!0),p(n.JSON,"JSON",!0)},function(e,t,r){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(39)("meta"),a=r(14),i=r(20),s=r(19).f,c=0,l=Object.isExtensible||function(){return!0},u=!r(32)(function(){return l(Object.preventExtensions({}))}),d=function(e){s(e,n,{value:{i:"O"+ ++c,w:{}}})},p=e.exports={KEY:n,NEED:!1,fastKey:function(e,t){if(!a(e))return"symbol"==o(e)?e:("string"==typeof e?"S":"P")+e;if(!i(e,n)){if(!l(e))return"F";if(!t)return"E";d(e)}return e[n].i},getWeak:function(e,t){if(!i(e,n)){if(!l(e))return!0;if(!t)return!1;d(e)}return e[n].w},onFreeze:function(e){return u&&p.NEED&&l(e)&&!i(e,n)&&d(e),e}}},function(e,t,r){var o=r(38),n=r(70),a=r(41);e.exports=function(e){var t=o(e),r=n.f;if(r)for(var i,s=r(e),c=a.f,l=0;s.length>l;)c.call(e,i=s[l++])&&t.push(i);return t}},function(e,t,r){var o=r(34);e.exports=Array.isArray||function(e){return"Array"==o(e)}},function(e,t,r){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(24),a=r(113).f,i={}.toString,s="object"==("undefined"===typeof window?"undefined":o(window))&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return s&&"[object Window]"==i.call(e)?function(e){try{return a(e)}catch(e){return s.slice()}}(e):a(n(e))}},function(e,t,r){r(69)("asyncIterator")},function(e,t,r){r(69)("observable")},function(e,t,r){e.exports={default:r(194),__esModule:!0}},function(e,t,r){r(195),e.exports=r(7).Object.setPrototypeOf},function(e,t,r){var o=r(13);o(o.S,"Object",{setPrototypeOf:r(196).set})},function(e,t,r){var o=r(14),n=r(12),a=function(e,t){if(n(e),!o(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,o){try{(o=r(31)(Function.call,r(114).f(Object.prototype,"__proto__").set,2))(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function(e,r){return a(e,r),t?e.__proto__=r:o(e,r),e}}({},!1):void 0),check:a}},function(e,t,r){e.exports={default:r(198),__esModule:!0}},function(e,t,r){r(199);var o=r(7).Object;e.exports=function(e,t){return o.create(e,t)}},function(e,t,r){var o=r(13);o(o.S,"Object",{create:r(62)})},function(e,t,r){"use strict";t.__esModule=!0,t.default=t.Method=void 0;var o=c(r(9)),n=c(r(10)),a=c(r(4)),i=c(r(1)),s=c(r(71));function c(e){return e&&e.__esModule?e:{default:e}}var l=t.Method={GET:"get",POST:"post",DELETE:"delete"},u=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if((0,i.default)(this,e),this.options=(0,a.default)({domain:"connect.facebook.net",version:"v3.1",cookie:!1,status:!1,xfbml:!1,language:"en_US",frictionlessRequests:!1},t),!this.options.appId)throw new Error("You need to set appId");this.options.wait||this.init()}return e.prototype.getAppId=function(){return this.options.appId},e.prototype.init=function(){var e=(0,n.default)(o.default.mark(function e(){var t=this;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(!this.loadingPromise){e.next=2;break}return e.abrupt("return",this.loadingPromise);case 2:return this.loadingPromise=new Promise(function(e){var r=t.options;window.fbAsyncInit=function(){window.FB.init({appId:r.appId,version:r.version,cookie:r.cookie,status:r.status,xfbml:r.xfbml,frictionlessRequests:t.frictionlessRequests}),e(window.FB)};var o=window.document.getElementsByTagName("script")[0];if(o&&!window.document.getElementById("facebook-jssdk")){var n=window.document.createElement("script");n.id="facebook-jssdk",n.async=!0,n.src="https://"+r.domain+"/"+r.language+"/sdk.js",o.parentNode.insertBefore(n,o)}}),e.abrupt("return",this.loadingPromise);case 4:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.process=function(){var e=(0,n.default)(o.default.mark(function e(t){var r,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.init();case 2:return r=e.sent,e.abrupt("return",new Promise(function(e,o){r[t].apply(r,n.concat([function(t){if(t)if(t.error){var r=t.error,n=r.code,a=r.type,i=r.message,s=new Error(i);s.code=n,s.type=a,o(s)}else e(t);else o(new Error("Response is undefined"))}],a))}));case 4:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.ui=function(){var e=(0,n.default)(o.default.mark(function e(t){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("ui",[t]));case 1:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.api=function(){var e=(0,n.default)(o.default.mark(function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:l.GET,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("api",[t,r,n]));case 1:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.login=function(){var e=(0,n.default)(o.default.mark(function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("login",[],[t]));case 1:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.logout=function(){var e=(0,n.default)(o.default.mark(function e(){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("logout"));case 1:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.getLoginStatus=function(){var e=(0,n.default)(o.default.mark(function e(){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("getLoginStatus"));case 1:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.getAuthResponse=function(){var e=(0,n.default)(o.default.mark(function e(){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("getAuthResponse"));case 1:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.getTokenDetail=function(){var e=(0,n.default)(o.default.mark(function e(){var t;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getLoginStatus();case 2:if((t=e.sent).status!==s.default.CONNECTED||!t.authResponse){e.next=5;break}return e.abrupt("return",t.authResponse);case 5:throw new Error("Token is undefined");case 6:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.getProfile=function(){var e=(0,n.default)(o.default.mark(function e(t){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.api("/me",l.GET,t));case 1:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.getTokenDetailWithProfile=function(){var e=(0,n.default)(o.default.mark(function e(t){var r,n;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getTokenDetail();case 2:return r=e.sent,e.next=5,this.getProfile(t);case 5:return n=e.sent,e.abrupt("return",{profile:n,tokenDetail:r});case 7:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.getToken=function(){var e=(0,n.default)(o.default.mark(function e(){var t;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getTokenDetail();case 2:return t=e.sent,e.abrupt("return",t.accessToken);case 4:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.getUserId=function(){var e=(0,n.default)(o.default.mark(function e(){var t;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getTokenDetail();case 2:return t=e.sent,e.abrupt("return",t.userID);case 4:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.sendInvite=function(){var e=(0,n.default)(o.default.mark(function e(t,r){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.ui((0,a.default)({to:t,method:"apprequests"},r)));case 1:case"end":return e.stop()}},e,this)}));return function(t,r){return e.apply(this,arguments)}}(),e.prototype.postAction=function(){var e=(0,n.default)(o.default.mark(function e(t,r,n,a,i){var s;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return s="/me/"+t+":"+r+"?"+n+"="+encodeURIComponent(a),!0===i&&(s+="&no_feed_story=true"),e.abrupt("return",this.api(s,l.POST));case 3:case"end":return e.stop()}},e,this)}));return function(t,r,o,n,a){return e.apply(this,arguments)}}(),e.prototype.getPermissions=function(){var e=(0,n.default)(o.default.mark(function e(){var t;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.api("/me/permissions");case 2:return t=e.sent,e.abrupt("return",t.data);case 4:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.hasPermissions=function(){var e=(0,n.default)(o.default.mark(function e(t){var r,n;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getPermissions();case 2:return r=e.sent,n=t.filter(function(e){return!!r.find(function(t){var r=t.permission;return"granted"===t.status&&r===e})}),e.abrupt("return",n.length===t.length);case 5:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.subscribe=function(){var e=(0,n.default)(o.default.mark(function e(t,r){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.init();case 2:e.sent.Event.subscribe(t,r);case 4:case"end":return e.stop()}},e,this)}));return function(t,r){return e.apply(this,arguments)}}(),e.prototype.unsubscribe=function(){var e=(0,n.default)(o.default.mark(function e(t,r){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.init();case 2:e.sent.Event.unsubscribe(t,r);case 4:case"end":return e.stop()}},e,this)}));return function(t,r){return e.apply(this,arguments)}}(),e.prototype.parse=function(){var e=(0,n.default)(o.default.mark(function e(t){var r;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.init();case 2:r=e.sent,"undefined"===typeof t?r.XFBML.parse():r.XFBML.parse(t);case 4:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.getRequests=function(){var e=(0,n.default)(o.default.mark(function e(){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.api("/me/apprequests"));case 1:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.removeRequest=function(){var e=(0,n.default)(o.default.mark(function e(t){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.api(t,l.DELETE));case 1:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.setAutoGrow=function(){var e=(0,n.default)(o.default.mark(function e(){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.init();case 2:e.sent.Canvas.setAutoGrow();case 4:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.paySimple=function(){var e=(0,n.default)(o.default.mark(function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.ui({method:"pay",action:"purchaseitem",product:t,quantity:r}));case 1:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.pay=function(){var e=(0,n.default)(o.default.mark(function e(t,r){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.ui((0,a.default)({method:"pay",action:"purchaseitem",product:t},r)));case 1:case"end":return e.stop()}},e,this)}));return function(t,r){return e.apply(this,arguments)}}(),e}();t.default=u},function(e,t,r){e.exports={default:r(202),__esModule:!0}},function(e,t,r){r(203),e.exports=r(7).Object.assign},function(e,t,r){var o=r(13);o(o.S+o.F,"Object",{assign:r(204)})},function(e,t,r){"use strict";var o=r(15),n=r(38),a=r(70),i=r(41),s=r(66),c=r(103),l=Object.assign;e.exports=!l||r(32)(function(){var e={},t={},r=Symbol(),o="abcdefghijklmnopqrst";return e[r]=7,o.split("").forEach(function(e){t[e]=e}),7!=l({},e)[r]||Object.keys(l({},t)).join("")!=o})?function(e,t){for(var r=s(e),l=arguments.length,u=1,d=a.f,p=i.f;l>u;)for(var _,f=c(arguments[u++]),h=d?n(f).concat(d(f)):n(f),b=h.length,m=0;b>m;)_=h[m++],o&&!p.call(f,_)||(r[_]=f[_]);return r}:l},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=_(r(4)),i=_(r(1)),s=_(r(2)),c=_(r(3)),l=r(0),u=_(l),d=_(r(8)),p=_(r(16));function _(e){return e&&e.__esModule?e:{default:e}}var f=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.href,r=void 0===t?(0,p.default)():t,o=e.layout,n=e.colorScheme,a=e.action,i=e.showFaces,s=e.share,c=e.children,l=e.width,d=e.size,_=e.kidDirectedSite,f=e.referral;return u.default.createElement("div",{className:"fb-like","data-ref":f,"data-href":r,"data-layout":o,"data-colorscheme":n,"data-action":a,"data-show-faces":i,"data-share":s,"data-width":l,"data-size":d,"data-kid-directed-site":_},c)},t}(l.PureComponent),o.defaultProps={layout:void 0,showFaces:void 0,colorScheme:void 0,action:void 0,share:void 0,size:void 0,kidDirectedSite:void 0,children:void 0,href:void 0,referral:void 0,width:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(f,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=b(r(4)),i=b(r(9)),s=b(r(10)),c=b(r(1)),l=b(r(2)),u=b(r(3)),d=r(0),p=b(d),_=b(r(16)),f=b(r(72)),h=b(r(42));function b(e){return e&&e.__esModule?e:{default:e}}var m=(n=o=function(e){function t(){var r,o,n,a,u=this;(0,c.default)(this,t);for(var d=arguments.length,p=Array(d),h=0;h<d;h++)p[h]=arguments[h];return r=o=(0,l.default)(this,e.call.apply(e,[this].concat(p))),o.handleClick=(a=(0,s.default)(i.default.mark(function e(t){var r;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t.preventDefault(),r=o.props.handleProcess,e.abrupt("return",r(function(){var e=(0,s.default)(i.default.mark(function e(t){var r,n,a,s,c,l,d,p;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return r=o.props,n=r.link,a=void 0===n?(0,_.default)():n,s=r.display,c=r.appId,l=void 0===c?t.getAppId():c,d=r.to,p=r.redirectURI,e.abrupt("return",t.ui((0,f.default)({method:"send",link:a,display:s,app_id:l,to:d,redirect_uri:p})));case 2:case"end":return e.stop()}},e,u)}));return function(t){return e.apply(this,arguments)}}()));case 3:case"end":return e.stop()}},e,u)})),function(e){return a.apply(this,arguments)}),n=r,(0,l.default)(o,n)}return(0,u.default)(t,e),t.prototype.render=function(){var e=this.props;return(0,e.children)({loading:e.loading,handleClick:this.handleClick})},t}(d.Component),o.defaultProps={to:void 0,display:void 0,appId:void 0,redirectURI:void 0},n);t.default=(0,d.forwardRef)(function(e,t){return p.default.createElement(h.default,null,function(r){var o=r.loading,n=r.handleProcess;return p.default.createElement(m,(0,a.default)({},e,{loading:o,handleProcess:n,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o=s(r(4)),n=s(r(117));t.default=c;var a=s(r(0)),i=s(r(116));function s(e){return e&&e.__esModule?e:{default:e}}function c(e){var t=e.className,r=e.children,o=(0,n.default)(e,["className","children"]);return a.default.createElement(i.default,o,function(e){var o=e.loading,n=e.handleClick;return a.default.createElement("button",{type:"button",disabled:o,className:t,onClick:n},r)})}c.defaultProps=(0,o.default)({},i.default.defaultProps,{className:void 0})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=_(r(4)),i=_(r(1)),s=_(r(2)),c=_(r(3)),l=r(0),u=_(l),d=_(r(8)),p=_(r(16));function _(e){return e&&e.__esModule?e:{default:e}}var f=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.style,r=e.href,o=void 0===r?(0,p.default)():r,n=e.tabs,a=e.hideCover,i=e.width,s=e.height,c=e.showFacepile,l=e.hideCTA,d=e.smallHeader,_=e.adaptContainerWidth,f=e.children;return u.default.createElement("div",{className:"fb-page",style:t,"data-tabs":n,"data-hide-cover":a,"data-show-facepile":c,"data-hide-cta":l,"data-href":o,"data-small-header":d,"data-adapt-container-width":_,"data-height":s,"data-width":i},f)},t}(l.PureComponent),o.defaultProps={width:void 0,height:void 0,tabs:void 0,hideCover:void 0,showFacepile:void 0,hideCTA:void 0,smallHeader:void 0,adaptContainerWidth:void 0,children:void 0,style:void 0,href:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(f,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o=c(r(4)),n=c(r(117));t.default=l;var a=c(r(0)),i=c(r(210)),s=c(r(118));function c(e){return e&&e.__esModule?e:{default:e}}function l(e){var t=e.children,r=e.className,o=e.spinner,c=e.spinnerConfig,l=(0,n.default)(e,["children","className","spinner","spinnerConfig"]);return a.default.createElement(s.default,l,function(e){var n=e.loading,s=e.handleClick;return a.default.createElement("button",{type:"button",className:r,onClick:s,disabled:n},t,o&&n&&a.default.createElement(i.default,{config:c}))})}l.defaultProps=(0,o.default)({},s.default.defaultProps,{className:void 0,spinnerConfig:{},spinner:!0})},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=r(0),i=l(a),s=l(r(17)),c=l(r(213));function l(e){return e&&e.__esModule?e:{default:e}}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){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.Component),n(t,[{key:"componentDidMount",value:function(){this.updateSpinner()}},{key:"componentDidUpdate",value:function(){this.updateSpinner()}},{key:"componentWillUnmount",value:function(){this.spinner&&(this.spinner.stop(),this.spinner=null)}},{key:"updateSpinner",value:function(){var e=this.props.loaded;e||this.spinner?e&&this.spinner&&(this.spinner.stop(),this.spinner=null):(this.spinner=new c.default(this.props.config),this.spinner.spin(this.refs.loader))}},{key:"render",value:function(){var e=this.props,t=e.loaded,r=e.className;return t?this.props.children?a.Children.only(this.props.children):null:i.default.createElement("div",{className:r,ref:"loader"})}}]),t}();u.propTypes={className:s.default.string,config:s.default.object.isRequired,loaded:s.default.bool.isRequired,children:s.default.node},u.defaultProps={config:{},loaded:!1,className:"loader"},t.default=u},function(e,t,r){"use strict";var o=r(212);function n(){}function a(){}a.resetWarningCache=n,e.exports=function(){function e(e,t,r,n,a,i){if(i!==o){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var r={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:n};return r.PropTypes=r,r}},function(e,t,r){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,r){(function(e){var o,n,a;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)}a=function(){"use strict";var e,t,r=["webkit","Moz","ms","O"],o={};function n(e,t){var r,o=document.createElement(e||"div");for(r in t)o[r]=t[r];return o}function a(e){for(var t=1,r=arguments.length;t<r;t++)e.appendChild(arguments[t]);return e}function i(r,n,a,i){var s=["opacity",n,~~(100*r),a,i].join("-"),c=.01+a/i*100,l=Math.max(1-(1-r)/n*(100-c),r),u=e.substring(0,e.indexOf("Animation")).toLowerCase(),d=u&&"-"+u+"-"||"";return o[s]||(t.insertRule("@"+d+"keyframes "+s+"{0%{opacity:"+l+"}"+c+"%{opacity:"+r+"}"+(c+.01)+"%{opacity:1}"+(c+n)%100+"%{opacity:"+r+"}100%{opacity:"+l+"}}",t.cssRules.length),o[s]=1),s}function s(e,t){var o,n,a=e.style;if(void 0!==a[t=t.charAt(0).toUpperCase()+t.slice(1)])return t;for(n=0;n<r.length;n++)if(void 0!==a[o=r[n]+t])return o}function c(e,t){for(var r in t)e.style[s(e,r)||r]=t[r];return e}function l(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)void 0===e[o]&&(e[o]=r[o])}return e}function u(e,t){return"string"==typeof e?e:e[t%e.length]}var d,p={lines:12,length:7,width:5,radius:10,scale:1,corners:1,color:"#000",opacity:.25,rotate:0,direction:1,speed:1,trail:100,fps:20,zIndex:2e9,className:"spinner",top:"50%",left:"50%",shadow:!1,hwaccel:!1,position:"absolute"};function _(e){this.opts=l(e||{},_.defaults,p)}if(_.defaults={},l(_.prototype,{spin:function(t){this.stop();var r=this,o=r.opts,a=r.el=n(null,{className:o.className});if(c(a,{position:o.position,width:0,zIndex:o.zIndex,left:o.left,top:o.top}),t&&t.insertBefore(a,t.firstChild||null),a.setAttribute("role","progressbar"),r.lines(a,r.opts),!e){var i,s=0,l=(o.lines-1)*(1-o.direction)/2,u=o.fps,d=u/o.speed,p=(1-o.opacity)/(d*o.trail/100),_=d/o.lines;!function e(){s++;for(var t=0;t<o.lines;t++)i=Math.max(1-(s+(o.lines-t)*_)%d*p,o.opacity),r.opacity(a,t*o.direction+l,i,o);r.timeout=r.el&&setTimeout(e,~~(1e3/u))}()}return r},stop:function(){var e=this.el;return e&&(clearTimeout(this.timeout),e.parentNode&&e.parentNode.removeChild(e),this.el=void 0),this},lines:function(t,r){var o,s=0,l=(r.lines-1)*(1-r.direction)/2;function d(e,t){return c(n(),{position:"absolute",width:r.scale*(r.length+r.width)+"px",height:r.scale*r.width+"px",background:e,boxShadow:t,transformOrigin:"left",transform:"rotate("+~~(360/r.lines*s+r.rotate)+"deg) translate("+r.scale*r.radius+"px,0)",borderRadius:(r.corners*r.scale*r.width>>1)+"px"})}for(;s<r.lines;s++)o=c(n(),{position:"absolute",top:1+~(r.scale*r.width/2)+"px",transform:r.hwaccel?"translate3d(0,0,0)":"",opacity:r.opacity,animation:e&&i(r.opacity,r.trail,l+s*r.direction,r.lines)+" "+1/r.speed+"s linear infinite"}),r.shadow&&a(o,c(d("#000","0 0 4px #000"),{top:"2px"})),a(t,a(o,d(u(r.color,s),"0 0 1px rgba(0,0,0,.1)")));return t},opacity:function(e,t,r){t<e.childNodes.length&&(e.childNodes[t].style.opacity=r)}}),"undefined"!==typeof document){d=n("style",{type:"text/css"}),a(document.getElementsByTagName("head")[0],d),t=d.sheet||d.styleSheet;var f=c(n("group"),{behavior:"url(#default#VML)"});!s(f,"transform")&&f.adj?function(){function e(e,t){return n("<"+e+' xmlns="urn:schemas-microsoft.com:vml" class="spin-vml">',t)}t.addRule(".spin-vml","behavior:url(#default#VML)"),_.prototype.lines=function(t,r){var o=r.scale*(r.length+r.width),n=2*r.scale*o;function i(){return c(e("group",{coordsize:n+" "+n,coordorigin:-o+" "+-o}),{width:n,height:n})}var s,l=-(r.width+r.length)*r.scale*2+"px",d=c(i(),{position:"absolute",top:l,left:l});function p(t,n,s){a(d,a(c(i(),{rotation:360/r.lines*t+"deg",left:~~n}),a(c(e("roundrect",{arcsize:r.corners}),{width:o,height:r.scale*r.width,left:r.scale*r.radius,top:-r.scale*r.width>>1,filter:s}),e("fill",{color:u(r.color,t),opacity:r.opacity}),e("stroke",{opacity:0}))))}if(r.shadow)for(s=1;s<=r.lines;s++)p(s,-2,"progid:DXImageTransform.Microsoft.Blur(pixelradius=2,makeshadow=1,shadowopacity=.3)");for(s=1;s<=r.lines;s++)p(s);return a(t,d)},_.prototype.opacity=function(e,t,r,o){var n=e.firstChild;o=o.shadow&&o.lines||0,n&&t+o<n.childNodes.length&&(n=(n=(n=n.childNodes[t+o])&&n.firstChild)&&n.firstChild)&&(n.opacity=r)}}():e=s(f,"animation")}return _},"object"==i(e)&&e.exports?e.exports=a():void 0===(n="function"===typeof(o=a)?o.call(t,r,t,e):o)||(e.exports=n)}).call(t,r(23)(e))},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.href,r=e.width,o=e.showText,n=e.children;return u.default.createElement("div",{className:"fb-post","data-href":t,"data-width":r,"data-show-text":o},n)},t}(l.PureComponent),o.defaultProps={width:void 0,showText:void 0,children:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.href,r=e.width,o=e.showText,n=e.allowFullScreen,a=e.autoPlay,i=e.showCaptions,s=e.children;return u.default.createElement("div",{className:"fb-video","data-href":t,"data-width":r,"data-show-text":o,"data-show-captions":i,"data-autoplay":a,"data-allowfullscreen":n},s)},t}(l.PureComponent),o.defaultProps={width:void 0,showText:void 0,allowFullScreen:void 0,autoPlay:void 0,showCaptions:void 0,children:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=_(r(4)),i=_(r(1)),s=_(r(2)),c=_(r(3)),l=r(0),u=_(l),d=_(r(8)),p=_(r(16));function _(e){return e&&e.__esModule?e:{default:e}}var f=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.colorScheme,r=e.href,o=void 0===r?(0,p.default)():r,n=e.numPosts,a=e.orderBy,i=e.width,s=e.children,c=e.mobile;return u.default.createElement("div",{className:"fb-comments","data-colorscheme":t,"data-numposts":n,"data-href":o,"data-order-by":a,"data-width":i,"data-skin":t,"data-mobile":c},s)},t}(l.PureComponent),o.defaultProps={href:void 0,numPosts:void 0,orderBy:void 0,width:void 0,colorScheme:void 0,children:void 0,mobile:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(f,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=_(r(4)),i=_(r(1)),s=_(r(2)),c=_(r(3)),l=r(0),u=_(l),d=_(r(8)),p=_(r(16));function _(e){return e&&e.__esModule?e:{default:e}}var f=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.href,r=void 0===t?(0,p.default)():t,o=e.children;return u.default.createElement("span",{className:"fb-comments-count","data-href":r},o)},t}(l.PureComponent),o.defaultProps={href:void 0,children:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(f,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=b(r(4)),i=b(r(9)),s=b(r(10)),c=b(r(1)),l=b(r(2)),u=b(r(3)),d=r(0),p=b(d),_=b(r(16)),f=b(r(72)),h=b(r(42));function b(e){return e&&e.__esModule?e:{default:e}}var m=(n=o=function(e){function t(){var r,o,n,a,u=this;(0,c.default)(this,t);for(var d=arguments.length,p=Array(d),h=0;h<d;h++)p[h]=arguments[h];return r=o=(0,l.default)(this,e.call.apply(e,[this].concat(p))),o.handleClick=(a=(0,s.default)(i.default.mark(function e(t){var r;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t.preventDefault(),r=o.props.handleProcess,e.abrupt("return",r(function(){var e=(0,s.default)(i.default.mark(function e(t){var r,n,a,s,c,l,d,p,h,b,m,y,v,g,w;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return r=o.props,n=r.link,a=void 0===n?(0,_.default)():n,s=r.display,c=r.appId,l=void 0===c?t.getAppId():c,d=r.redirectURI,p=r.from,h=r.to,b=r.picture,m=r.source,y=r.name,v=r.caption,g=r.description,w=r.dataRef,e.abrupt("return",t.ui((0,f.default)({method:"feed",link:a,display:s,app_id:l,redirect_uri:d,from:p,to:h,picture:b,source:m,name:y,caption:v,description:g,ref:w})));case 2:case"end":return e.stop()}},e,u)}));return function(t){return e.apply(this,arguments)}}()));case 3:case"end":return e.stop()}},e,u)})),function(e){return a.apply(this,arguments)}),n=r,(0,l.default)(o,n)}return(0,u.default)(t,e),t.prototype.render=function(){var e=this.props,t=e.children,r=e.loading,o=e.error,n=e.data;return t({loading:r,handleClick:this.handleClick,error:o,data:n})},t}(d.Component),o.defaultProps={link:void 0,display:void 0,appId:void 0,redirectURI:void 0,from:void 0,to:void 0,source:void 0,picture:void 0,name:void 0,caption:void 0,description:void 0,dataRef:void 0},n);t.default=(0,d.forwardRef)(function(e,t){return p.default.createElement(h.default,null,function(r){var o=r.loading,n=r.handleProcess,i=r.error,s=r.data;return p.default.createElement(m,(0,a.default)({},e,{loading:o,handleProcess:n,data:s,error:i,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=_(r(4)),i=_(r(1)),s=_(r(2)),c=_(r(3)),l=r(0),u=_(l),d=_(r(8)),p=_(r(16));function _(e){return e&&e.__esModule?e:{default:e}}var f=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.style,r=e.href,o=void 0===r?(0,p.default)():r,n=e.width,a=e.showSocialContext,i=e.showMetaData,s=e.children,c=e.skin;return u.default.createElement("div",{className:"fb-group",style:t,"data-href":o,"data-width":n,"data-show-social-context":a,"data-show-metadata":i,"data-skin":c},s)},t}(l.PureComponent),o.defaultProps={showSocialContext:void 0,showMetaData:void 0,width:void 0,children:void 0,style:void 0,href:void 0,skin:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(f,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0,t.default=void 0;var o,n=f(r(1)),a=f(r(2)),i=f(r(3)),s=f(r(9)),c=f(r(10)),l=(o=(0,c.default)(s.default.mark(function e(t){var r;return s.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.getLoginStatus();case 2:return r=e.sent,e.abrupt("return",r.status);case 4:case"end":return e.stop()}},e,this)})),function(e){return o.apply(this,arguments)}),u=r(0),d=f(u),p=f(r(25)),_=f(r(74));function f(e){return e&&e.__esModule?e:{default:e}}var h=function(e){function t(){var r,o,i,u,d=this;(0,n.default)(this,t);for(var p=arguments.length,_=Array(p),f=0;f<p;f++)_[f]=arguments[f];return r=o=(0,a.default)(this,e.call.apply(e,[this].concat(_))),o.state={loading:!0},o.handleReady=(u=(0,c.default)(s.default.mark(function e(t){return s.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=o,e.next=3,l(t);case 3:e.t1=e.sent,e.t2={status:e.t1,loading:!1},e.t0.setState.call(e.t0,e.t2);case 6:case"end":return e.stop()}},e,d)})),function(e){return u.apply(this,arguments)}),o.handleStatusChange=function(e){o.setState({status:e.status,loading:!1})},i=r,(0,a.default)(o,i)}return(0,i.default)(t,e),t.prototype.render=function(){var e=this.props.children,t=this.state,r=t.status,o=t.loading;return d.default.createElement(p.default,{onReady:this.handleReady},d.default.createElement(_.default,{event:"auth.statusChange",onChange:this.handleStatusChange},e({status:r,loading:o})))},t}(u.Component);t.default=h},function(e,t,r){"use strict";t.__esModule=!0,t.default=void 0;var o,n,a=b(r(9)),i=b(r(10)),s=b(r(1)),c=b(r(2)),l=b(r(3)),u=r(0),d=b(u),p=b(r(25)),_=b(r(74)),f=b(r(73)),h=b(r(71));function b(e){return e&&e.__esModule?e:{default:e}}var m=(n=o=function(e){function t(){var r,o,n,l,u=this;(0,s.default)(this,t);for(var d=arguments.length,p=Array(d),_=0;_<d;_++)p[_]=arguments[_];return r=o=(0,c.default)(this,e.call.apply(e,[this].concat(p))),o.state={loading:!0},o.handleReady=(l=(0,i.default)(a.default.mark(function e(t){return a.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:o.api=t,o.updateProfile();case 2:case"end":return e.stop()}},e,u)})),function(e){return l.apply(this,arguments)}),o.handleStatusChange=function(){o.updateProfile()},n=r,(0,c.default)(o,n)}return(0,l.default)(t,e),t.prototype.updateProfile=function(){var e=(0,i.default)(a.default.mark(function e(){var t,r,o;return a.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(t=this.api,r=this.props.fields,t){e.next=3;break}return e.abrupt("return");case 3:return e.prev=3,e.next=6,t.getLoginStatus();case 6:if(e.sent.status===h.default.CONNECTED){e.next=10;break}return this.setState({profile:void 0,loading:!1,error:void 0}),e.abrupt("return");case 10:return e.next=12,t.getProfile({fields:r});case 12:o=e.sent,this.setState({profile:o,loading:!1,error:void 0}),e.next=19;break;case 16:e.prev=16,e.t0=e.catch(3),this.setState({profile:void 0,loading:!1,error:e.t0});case 19:case"end":return e.stop()}},e,this,[[3,16]])}));return function(){return e.apply(this,arguments)}}(),t.prototype.render=function(){var e=this.props.children,t=this.state,r=t.profile,o=t.loading,n=t.error;return d.default.createElement(p.default,{onReady:this.handleReady},d.default.createElement(_.default,{event:"auth.statusChange",onChange:this.handleStatusChange},e({profile:r,loading:o,error:n})))},t}(u.Component),o.defaultProps={fields:f.default},n);t.default=m},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.minimized,r=e.children,o=e.pageId,n=e.themeColor,a=e.loggedInGreeting,i=e.loggedOutGreeting,s=e.dataRef;return u.default.createElement("div",{className:"fb-customerchat",page_id:o,minimized:t,theme_color:n,logged_in_greeting:a,logged_out_greeting:i,"data-ref":s},r)},t}(l.PureComponent),o.defaultProps={minimized:void 0,children:void 0,themeColor:void 0,loggedInGreeting:void 0,loggedOutGreeting:void 0,dataRef:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.color,r=e.messengerAppId,o=e.pageId,n=e.children,a=e.size;return u.default.createElement("div",{className:"fb-messengermessageus",messenger_app_id:r,page_id:o,color:t,size:a},n)},t}(l.PureComponent),o.defaultProps={color:void 0,size:void 0,children:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.origin,r=e.prechecked,o=e.allowLogin,n=e.userRef,a=e.messengerAppId,i=e.pageId,s=e.children,c=e.size,l=e.centerAlign,d=e.skin;return u.default.createElement("div",{className:"fb-messenger-checkbox",messenger_app_id:a,page_id:i,size:c,origin:t,user_ref:n,prechecked:r,allow_login:o,skin:d,center_align:l},s)},t}(l.PureComponent),o.defaultProps={size:void 0,allowLogin:void 0,prechecked:void 0,userRef:void 0,children:void 0,origin:void 0,skin:void 0,centerAlign:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.color,r=e.messengerAppId,o=e.pageId,n=e.children,a=e.dataRef,i=e.size;return u.default.createElement("div",{className:"fb-send-to-messenger",messenger_app_id:r,page_id:o,"data-color":t,"data-size":i,"data-ref":a},n)},t}(l.PureComponent),o.defaultProps={color:void 0,size:void 0,dataRef:void 0,children:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0,t.default={SMALL:"small",LARGE:"large"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={STANDARD:"standard",BUTTON_COUNT:"button_count",BUTTON:"button",BOX_COUNT:"box_count"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={LIGHT:"light",DARK:"dark"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={LIKE:"like",RECOMMEND:"recommend"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={SOCIAL:"social",REVERSE_TIME:"reverse_time",TIME:"time"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={SMALL:"small",MEDIUM:"medium",STANDARD:"standard",LARGE:"large",XLARGE:"xlarge"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={BLUE:"blue",WHITE:"white"}},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(95);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,i,l;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,o["Component"]),r=t,l=[{key:"css",value:function(e){return[]}}],(i=[{key:"shouldComponentUpdate",value:function(e,t){return e.page_url!==this.props.page_url||e.num_posts!==this.props.num_posts||e.color_scheme!==this.props.color_scheme||e.order_by!==this.props.order_by}},{key:"render",value:function(){var e=this.props,t=""===e.fb_app_id?"252971358753113":"".concat(e.fb_app_id),r=""===e.page_url?"https://www.facebook.com/divisupreme/":"".concat(e.page_url);return n.a.createElement("div",{className:"dsm-facebook-comments"},n.a.createElement(a.FacebookProvider,{appId:t},n.a.createElement(a.Comments,{href:r,numPosts:e.num_posts,colorScheme:e.color_scheme,orderBy:e.order_by,width:"100%"})))}}])&&s(r.prototype,i),l&&s(r,l),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_facebook_comments"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(22),i=r.n(a),s=r(75);r.n(s);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 l(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function u(e,t){return!t||"object"!==c(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}var d=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,s;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,o["Component"]),r=t,s=[{key:"css",value:function(e){var t=[];if("on"===e.show_validation&&t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-submit:hover:after",declaration:"margin-left: .3em !important;"}]),e.button_one_icon&&t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-submit:hover:after",declaration:"margin-left: .3em !important;"}]),e.input_background_color&&t.push([{selector:"%%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-text, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-tel, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-url, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-quiz, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-number, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-textarea, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-select, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-date",declaration:"background-color: ".concat(e.input_background_color,";")}]),"left"!==e.button_alignment&&t.push([{selector:"%%order_class%% .wpcf7-form p:nth-last-of-type(1)",declaration:"text-align: ".concat(e.button_alignment,";")}]),e.label_bottom_spacing&&t.push([{selector:"%%order_class%% label",declaration:"margin-bottom: ".concat(e.label_bottom_spacing,";")}]),e.file_background_color&&t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-file",declaration:"background-color: ".concat(e.file_background_color,";")}]),e.error_msg_background_color&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"background-color: ".concat(e.error_msg_background_color,";")}]),e.validation_error_background_color&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"background-color: ".concat(e.validation_error_background_color,";")}]),e.validation_success_background_color&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"background-color: ".concat(e.validation_success_background_color,";")}]),e.border_radii_error_msg){var r=e.border_radii_error_msg,o="",n="",a="",i="";o=""!==r.split("|")[1]?r.split("|")[1]:"0px",n=""!==r.split("|")[2]?r.split("|")[2]:"0px",a=""!==r.split("|")[3]?r.split("|")[3]:"0px",i=""!==r.split("|")[4]?r.split("|")[4]:"0px",t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-radius: ".concat(o," ").concat(n," ").concat(a," ").concat(i,";")}])}if(e.border_width_all_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-width: ".concat(e.border_width_all_error_msg,";")}]),e.border_color_all_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-color: ".concat(e.border_color_all_error_msg,";")}]),e.border_style_all_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-style: ".concat(e.border_style_all_error_msg,";")}]),e.border_width_top_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-top-width: ".concat(e.border_width_top_error_msg,";")}]),e.border_color_top_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-top-color: ".concat(e.border_color_top_error_msg,";")}]),e.border_style_top_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-top-style: ".concat(e.border_style_top_error_msg,";")}]),e.border_width_right_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-right-width: ".concat(e.border_width_right_error_msg,";")}]),e.border_color_right_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-right-color: ".concat(e.border_color_right_error_msg,";")}]),e.border_style_right_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-right-style: ".concat(e.border_style_right_error_msg,";")}]),e.border_width_bottom_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-bottom-width: ".concat(e.border_width_bottom_error_msg,";")}]),e.border_color_bottom_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-bottom-color: ".concat(e.border_color_bottom_error_msg,";")}]),e.border_style_bottom_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-bottom-style: ".concat(e.border_style_bottom_error_msg,";")}]),e.border_width_left_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-left-width: ".concat(e.border_width_left_error_msg,";")}]),e.border_color_left_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-left-color: ".concat(e.border_color_left_error_msg,";")}]),e.border_style_left_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-left-style: ".concat(e.border_style_left_error_msg,";")}]),e.border_radii_error_validation){var s=e.border_radii_error_validation,c="",l="",u="",d="";c=""!==s.split("|")[1]?s.split("|")[1]:"0px",l=""!==s.split("|")[2]?s.split("|")[2]:"0px",u=""!==s.split("|")[3]?s.split("|")[3]:"0px",d=""!==s.split("|")[4]?s.split("|")[4]:"0px",t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-radius: ".concat(c," ").concat(l," ").concat(u," ").concat(d,";")}])}if(e.border_width_all_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-width: ".concat(e.border_width_all_error_validation,";")}]),e.border_color_all_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-color: ".concat(e.border_color_all_error_validation,";")}]),e.border_style_all_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-style: ".concat(e.border_style_all_error_validation,";")}]),e.border_width_top_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-top-width: ".concat(e.border_width_top_error_validation,";")}]),e.border_color_top_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-top-color: ".concat(e.border_color_top_error_validation,";")}]),e.border_style_top_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-top-style: ".concat(e.border_style_top_error_validation,";")}]),e.border_width_right_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-right-width: ".concat(e.border_width_right_error_validation,";")}]),e.border_color_right_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-right-color: ".concat(e.border_color_right_error_validation,";")}]),e.border_style_right_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-right-style: ".concat(e.border_style_right_error_validation,";")}]),e.border_width_bottom_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-bottom-width: ".concat(e.border_width_bottom_error_validation,";")}]),e.border_color_bottom_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-bottom-color: ".concat(e.border_color_bottom_error_validation,";")}]),e.border_style_bottom_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-bottom-style: ".concat(e.border_style_bottom_error_validation,";")}]),e.border_width_left_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-left-width: ".concat(e.border_width_left_error_validation,";")}]),e.border_color_left_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-left-color: ".concat(e.border_color_left_error_validation,";")}]),e.border_style_left_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-left-style: ".concat(e.border_style_left_error_validation,";")}]),e.border_radii_validation_success){var p=e.border_radii_validation_success,_="",f="",h="",b="";_=""!==p.split("|")[1]?p.split("|")[1]:"0px",f=""!==p.split("|")[2]?p.split("|")[2]:"0px",h=""!==p.split("|")[3]?p.split("|")[3]:"0px",b=""!==p.split("|")[4]?p.split("|")[4]:"0px",t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-radius: ".concat(_," ").concat(f," ").concat(h," ").concat(b,";")}])}if(e.border_width_all_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-width: ".concat(e.border_width_all_validation_success,";")}]),e.border_color_all_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-color: ".concat(e.border_color_all_validation_success,";")}]),e.border_style_all_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-style: ".concat(e.border_style_all_validation_success,";")}]),e.border_width_top_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-top-width: ".concat(e.border_width_top_validation_success,";")}]),e.border_color_top_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-top-color: ".concat(e.border_color_top_validation_success,";")}]),e.border_style_top_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-top-style: ".concat(e.border_style_top_validation_success,";")}]),e.border_width_right_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-right-width: ".concat(e.border_width_right_validation_success,";")}]),e.border_color_right_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-right-color: ".concat(e.border_color_right_validation_success,";")}]),e.border_style_right_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-right-style: ".concat(e.border_style_right_validation_success,";")}]),e.border_width_bottom_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-bottom-width: ".concat(e.border_width_bottom_validation_success,";")}]),e.border_color_bottom_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-bottom-color: ".concat(e.border_color_bottom_validation_success,";")}]),e.border_style_bottom_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-bottom-style: ".concat(e.border_style_bottom_validation_success,";")}]),e.border_width_left_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-left-width: ".concat(e.border_width_left_validation_success,";")}]),e.border_color_left_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-left-color: ".concat(e.border_color_left_validation_success,";")}]),e.border_style_left_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-left-style: ".concat(e.border_style_left_validation_success,";")}]),e.file_padding){var m=e.file_padding,y="",v="",g="",w="";y=""!==m.split("|")[0]?m.split("|")[0]:"0px",v=""!==m.split("|")[1]?m.split("|")[1]:"0px",g=""!==m.split("|")[2]?m.split("|")[2]:"0px",w=""!==m.split("|")[3]?m.split("|")[3]:"0px",t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-file",declaration:"padding: ".concat(y," ").concat(v," ").concat(g," ").concat(w,";")}])}if(e.file_padding_tablet){var x=e.file_padding_tablet,k="",O="",S="",j="";k=""!==x.split("|")[0]?x.split("|")[0]:"0px",O=""!==x.split("|")[1]?x.split("|")[1]:"0px",S=""!==x.split("|")[2]?x.split("|")[2]:"0px",j=""!==x.split("|")[3]?x.split("|")[3]:"0px",t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-file",declaration:"padding: ".concat(k," ").concat(O," ").concat(S," ").concat(j,";"),device:"tablet"}])}if(e.file_padding_phone){var E=e.file_padding_phone,P="",z="",C="",T="";P=""!==E.split("|")[0]?E.split("|")[0]:"0px",z=""!==E.split("|")[1]?E.split("|")[1]:"0px",C=""!==E.split("|")[2]?E.split("|")[2]:"0px",T=""!==E.split("|")[3]?E.split("|")[3]:"0px",t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-file",declaration:"padding: ".concat(P," ").concat(z," ").concat(C," ").concat(T,";"),device:"phone"}])}return t}}],(a=[{key:"componentDidUpdate",value:function(){var e=this.props,t=this.refs.cf7,r=window.ET_Builder.API.Utils.processFontIcon(e.button_one_icon);i.a.ajax({type:"POST",url:window.ETBuilderBackend.ajaxUrl,data:{action:"dsm_load_cf7_library",et_admin_load_nonce:window.et_fb_options.et_admin_load_nonce,cf7_library:e.cf7_library},success:function(o){"0"!==o?(i()(t).html(o),e.button_one_icon&&(i()(t).find(".wpcf7-submit").addClass("et_pb_custom_button_icon"),i()(t).find(".wpcf7-submit").attr("data-icon",r)),"on"===e.show_validation&&(i()(t).find("input.wpcf7-validates-as-required").after('<span role="alert" class="wpcf7-not-valid-tip">The field is required.</span>'),i()(t).find(".wpcf7-submit").after('<div class="wpcf7-response-output wpcf7-validation-errors" role="alert">One or more fields have an error. Please check and try again.</div><div class="wpcf7-response-output wpcf7-mail-sent-ok" style="display: block;" role="alert">Thank you for your message. It has been sent.</div>'))):i()(t).html("Contact Form 7 plugin not found.")},error:function(e){}})}},{key:"render",value:function(){return n.a.createElement(o.Fragment,null,n.a.createElement("div",{ref:"cf7",className:"dsm-contact-form-7"}))}}])&&l(r.prototype,a),s&&l(r,s),t}();Object.defineProperty(d,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_contact_form_7"}),t.a=d},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(22),i=r.n(a),s=r(76);r.n(s);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 l(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function u(e,t){return!t||"object"!==c(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}var d=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,s;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,o["Component"]),r=t,s=[{key:"css",value:function(e){var t=[];"on"===e.show_validation&&t.push([{selector:"%%order_class%% .et_pb_button:hover:after",declaration:"margin-left: .3em !important;"}]);var r=e.input_textarea_select_margin_bottom_last_edited&&e.input_textarea_select_margin_bottom_last_edited.startsWith("on"),o=e.input_textarea_select_margin_bottom,n=r&&e.input_textarea_select_margin_bottom_tablet?e.input_textarea_select_margin_bottom_tablet:o,a=r&&e.input_textarea_select_margin_bottom_phone?e.input_textarea_select_margin_bottom_phone:n;"15px"!==e.input_textarea_select_margin_bottom&&t.push([{selector:"%%order_class%% .form-group",declaration:"margin-bottom: ".concat(o)}]),e.input_textarea_select_margin_bottom_tablet&&t.push([{selector:"%%order_class%% .form-group",declaration:"margin-bottom: ".concat(n),device:"tablet"}]),e.input_textarea_select_margin_bottom_phone&&t.push([{selector:"%%order_class%% .form-group",declaration:"margin-bottom: ".concat(a),device:"phone"}]);var i=e.button_margin_top_last_edited&&e.button_margin_top_last_edited.startsWith("on"),s=e.button_margin_top,c=i&&e.button_margin_top_tablet?e.button_margin_top_tablet:s,l=i&&e.button_margin_top_phone?e.button_margin_top_phone:c;"20px"!==e.button_margin_top&&t.push([{selector:"%%order_class%% .et_pb_button_module_wrapper",declaration:"margin-top: ".concat(s)}]),e.button_margin_top_tablet&&t.push([{selector:"%%order_class%% .et_pb_button_module_wrapper",declaration:"margin-top: ".concat(c),device:"tablet"}]),e.button_margin_top_phone&&t.push([{selector:"%%order_class%% .et_pb_button_module_wrapper",declaration:"margin-top: ".concat(l),device:"phone"}]),e.button_one_icon&&t.push([{selector:"%%order_class%% .et_pb_button:hover:after",declaration:"margin-left: .3em !important;"}]),e.button_advanced_file_icon&&t.push([{selector:"%%order_class%% .dsm-cf-advanced-button:hover:after",declaration:"margin-left: .3em !important;"}]);var u=e.hr_gap_last_edited&&e.hr_gap_last_edited.startsWith("on"),d=e.hr_gap,p=u&&e.hr_gap_tablet?e.hr_gap_tablet:d,_=u&&e.hr_gap_phone?e.hr_gap_phone:p;if("0.5em"!==e.hr_gap&&t.push([{selector:"%%order_class%% .dsm-cf-html hr",declaration:"margin-block-start: ".concat(d,"; margin-block-end: ").concat(d,";")}]),e.hr_gap_tablet&&t.push([{selector:"%%order_class%% .dsm-cf-html hr",declaration:"margin-block-start: ".concat(p,"; margin-block-end: ").concat(p,";"),device:"tablet"}]),e.hr_gap_phone&&t.push([{selector:"%%order_class%% .dsm-cf-html hr",declaration:"margin-block-start: ".concat(_,"; margin-block-end: ").concat(_,";"),device:"phone"}]),"#666666"!==e.hr_color&&t.push([{selector:"%%order_class%% .dsm-cf-html hr",declaration:"border-color: ".concat(e.hr_color,";")}]),"#ee0000"!==e.label_required_asterisk_color&&t.push([{selector:"%%order_class%% label.control-label>span.field_required",declaration:"color: ".concat(e.label_required_asterisk_color," !important;")}]),e.description_background_color&&t.push([{selector:"%%order_class%% .form-group>div span.help-block",declaration:"background-color: ".concat(e.description_background_color,";")}]),e.input_background_color&&t.push([{selector:"%%order_class%% input.text,%%order_class%% input.title,%%order_class%% input[type=email],%%order_class%% input[type=url],%%order_class%% input[type=password],%%order_class%% input[type=tel],%%order_class%% input[type=text],%%order_class%% input[type=number],%%order_class%% input[type=phone],%%order_class%% input[type=date],%%order_class%% select.form-control,%%order_class%% textarea",declaration:"background-color: ".concat(e.input_background_color,";")}]),e.input_textarea_select_text_color&&t.push([{selector:"%%order_class%% .dsm-caldera-forms-select:after",declaration:"border-color: ".concat(e.input_textarea_select_text_color," transparent transparent;")}]),"on"===e.radio_style&&("#2ea3f2"!==e.radio_checked_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_radio .dsm-cf-radio:after",declaration:"background-color: ".concat(e.radio_checked_color,";")}]),"#eeeeee"!==e.radio_checked_background_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_radio .dsm-radio input[type=radio]:checked ~ .dsm-cf-radio",declaration:"background-color: ".concat(e.radio_checked_background_color,";")}]),"#eeeeee"!==e.radio_background_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_radio .dsm-radio .dsm-cf-radio",declaration:"background-color: ".concat(e.radio_background_color,";")}])),"on"===e.checkbox_style&&("#2ea3f2"!==e.checkbox_checked_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_checkbox .dsm-checkbox input[type=checkbox]:checked ~ .dsm-cf-checkbox:after",declaration:"color: ".concat(e.checkbox_checked_color,";")}]),"#eeeeee"!==e.checkbox_checked_background_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_checkbox .dsm-checkbox input[type=checkbox]:checked ~ .dsm-cf-checkbox",declaration:"background-color: ".concat(e.checkbox_checked_background_color,";")}]),"#eeeeee"!==e.checkbox_background_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_checkbox .dsm-checkbox .dsm-cf-checkbox",declaration:"background-color: ".concat(e.checkbox_background_color,";")}])),"left"!==e.button_alignment&&t.push([{selector:"%%order_class%% .et_pb_button_module_wrapper",declaration:"text-align: ".concat(e.button_alignment,";")}]),"5px"!==e.label_bottom_spacing&&t.push([{selector:"%%order_class%% label.control-label",declaration:"margin-bottom: ".concat(e.label_bottom_spacing,";")}]),e.file_background_color&&t.push([{selector:"%%order_class%% .file-prevent-overflow",declaration:"background-color: ".concat(e.file_background_color,";")}]),e.error_msg_background_color&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"background-color: ".concat(e.error_msg_background_color,";")}]),e.validation_success_background_color&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"background-color: ".concat(e.validation_success_background_color,";")}]),e.border_radii_error_validation){var f=e.border_radii_error_validation,h="",b="",m="",y="";h=""!==f.split("|")[1]?f.split("|")[1]:"0px",b=""!==f.split("|")[2]?f.split("|")[2]:"0px",m=""!==f.split("|")[3]?f.split("|")[3]:"0px",y=""!==f.split("|")[4]?f.split("|")[4]:"0px",t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-radius: ".concat(h," ").concat(b," ").concat(m," ").concat(y,";")}])}if(e.border_width_all_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-width: ".concat(e.border_width_all_error_validation,";")}]),e.border_color_all_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-color: ".concat(e.border_color_all_error_validation,";")}]),e.border_style_all_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-style: ".concat(e.border_style_all_error_validation,";")}]),e.border_width_top_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-top-width: ".concat(e.border_width_top_error_validation,";")}]),e.border_color_top_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-top-color: ".concat(e.border_color_top_error_validation,";")}]),e.border_style_top_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-top-style: ".concat(e.border_style_top_error_validation,";")}]),e.border_width_right_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-right-width: ".concat(e.border_width_right_error_validation,";")}]),e.border_color_right_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-right-color: ".concat(e.border_color_right_error_validation,";")}]),e.border_style_right_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-right-style: ".concat(e.border_style_right_error_validation,";")}]),e.border_width_bottom_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-bottom-width: ".concat(e.border_width_bottom_error_validation,";")}]),e.border_color_bottom_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-bottom-color: ".concat(e.border_color_bottom_error_validation,";")}]),e.border_style_bottom_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-bottom-style: ".concat(e.border_style_bottom_error_validation,";")}]),e.border_width_left_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-left-width: ".concat(e.border_width_left_error_validation,";")}]),e.border_color_left_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-left-color: ".concat(e.border_color_left_error_validation,";")}]),e.border_style_left_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-left-style: ".concat(e.border_style_left_error_validation,";")}]),e.border_radii_validation_success){var v=e.border_radii_validation_success,g="",w="",x="",k="";g=""!==v.split("|")[1]?v.split("|")[1]:"0px",w=""!==v.split("|")[2]?v.split("|")[2]:"0px",x=""!==v.split("|")[3]?v.split("|")[3]:"0px",k=""!==v.split("|")[4]?v.split("|")[4]:"0px",t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-radius: ".concat(g," ").concat(w," ").concat(x," ").concat(k,";")}])}e.border_width_all_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-width: ".concat(e.border_width_all_validation_success,";")}]),e.border_color_all_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-color: ".concat(e.border_color_all_validation_success,";")}]),e.border_style_all_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-style: ".concat(e.border_style_all_validation_success,";")}]),e.border_width_top_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-top-width: ".concat(e.border_width_top_validation_success,";")}]),e.border_color_top_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-top-color: ".concat(e.border_color_top_validation_success,";")}]),e.border_style_top_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-top-style: ".concat(e.border_style_top_validation_success,";")}]),e.border_width_right_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-right-width: ".concat(e.border_width_right_validation_success,";")}]),e.border_color_right_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-right-color: ".concat(e.border_color_right_validation_success,";")}]),e.border_style_right_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-right-style: ".concat(e.border_style_right_validation_success,";")}]),e.border_width_bottom_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-bottom-width: ".concat(e.border_width_bottom_validation_success,";")}]),e.border_color_bottom_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-bottom-color: ".concat(e.border_color_bottom_validation_success,";")}]),e.border_style_bottom_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-bottom-style: ".concat(e.border_style_bottom_validation_success,";")}]),e.border_width_left_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-left-width: ".concat(e.border_width_left_validation_success,";")}]),e.border_color_left_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-left-color: ".concat(e.border_color_left_validation_success,";")}]),e.border_style_left_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-left-style: ".concat(e.border_style_left_validation_success,";")}]);var O=void 0!==e.file_padding__hover_enabled?e.file_padding__hover_enabled.split("|"):"",S=e.file_padding_last_edited,j=S&&S.startsWith("on");if(e.file_padding){var E=e.file_padding.split("|");t.push([{selector:"%%order_class%% .file-prevent-overflow",declaration:"padding-top: ".concat(E[0],"; padding-right: ").concat(E[1],"; padding-bottom: ").concat(E[2],"; padding-left: ").concat(E[3],";")}])}if("on"===O[0]&&"hover"===O[1]&&1===e.hover_enabled){var P=void 0!==e.file_padding__hover?e.file_padding__hover.split("|"):"";t.push([{selector:"%%order_class%% .file-prevent-overflow",declaration:"padding-top: ".concat(P[0],"; padding-right: ").concat(P[1],"; padding-bottom: ").concat(P[2],"; padding-left: ").concat(P[3],";")}])}if(e.file_padding_tablet&&j&&e.file_padding_tablet&&""!==e.file_padding_tablet){var z=e.file_padding_tablet.split("|");t.push([{selector:"%%order_class%% .file-prevent-overflow",declaration:"padding-top: ".concat(z[0],"; padding-right: ").concat(z[1],"; padding-bottom: ").concat(z[2],"; padding-left: ").concat(z[3],";"),device:"tablet"}])}if(e.file_padding_phone&&j&&e.file_padding_phone&&""!==e.file_padding_phone){var C=e.file_padding_phone.split("|");t.push([{selector:"%%order_class%% .file-prevent-overflow",declaration:"padding-top: ".concat(C[0],"; padding-right: ").concat(C[1],"; padding-bottom: ").concat(C[2],"; padding-left: ").concat(C[3],";"),device:"phone"}])}return t}}],(a=[{key:"componentDidUpdate",value:function(){var e=this.props,t=this.refs.cf,r=window.ET_Builder.API.Utils,o=r.processFontIcon(e.button_one_icon),n=r.processFontIcon(e.button_advanced_file_icon);i.a.ajax({type:"POST",url:window.ETBuilderBackend.ajaxUrl,data:{action:"dsm_load_caldera_forms",et_admin_load_nonce:window.et_fb_options.et_admin_load_nonce,cf_library:e.cf_library},success:function(r){"0"!==r?(i()(t).html(r),e.button_one_icon&&(i()(t).find(".dsm-cf-submit-button").addClass("et_pb_custom_button_icon"),i()(t).find(".dsm-cf-submit-button").attr("data-icon",o)),e.button_advanced_file_icon&&(i()(t).find(".dsm-cf-advanced-button").addClass("et_pb_custom_button_icon"),i()(t).find(".dsm-cf-advanced-button").attr("data-icon",n)),"on"===e.show_validation&&(i()(t).find("input[aria-required]").closest(".form-group").addClass("has-error"),i()(t).find("input[aria-required]").closest(".form-group").append('<span class="help-block caldera_ajax_error_block filled" aria-live="polite" style="display:block;"><span class="parsley-required">This value is required.</span></span>'),i()(t).find('textarea[required="required"]').closest(".form-group").addClass("has-error"),i()(t).find('textarea[required="required"]').closest(".form-group").append('<span class="help-block caldera_ajax_error_block filled" aria-live="polite"><span class="parsley-required">This value is required.</span></span>'),i()(t).find(".caldera-grid").after('<div class="alert alert-success" style="display: block; margin-top: 10px;" role="alert">Form has been successfully submitted. Thank you.</div>'))):i()(t).html("Caldera Forms plugin not found.")},error:function(e){}})}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{ref:"cf",className:"dsm_caldera_forms".concat("off"!==e.radio_style?" dsm_cf_custom_radio":"").concat("off"!==e.checkbox_style?" dsm_cf_custom_checkbox":"").concat(""!==e.description_background_color?" dsm_cf_description_label":"").concat(""!==e.error_msg_background_color?" dsm_cf_error_label":"").concat(""!==e.validation_success_background_color?" dsm_cf_success_label":"")}))}}])&&l(r.prototype,a),s&&l(r,s),t}();Object.defineProperty(d,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_caldera_forms"}),t.a=d},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(77);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){return[]}}],(a=[{key:"render",value:function(){var e=this.props,t="https://maps.google.com/maps?q="+encodeURIComponent(e.address)+"&t=m&z="+parseInt(e.zoom,10)+"&output=embed&iwloc=near&hl="+window.ETBuilderBackend.locale,r=e.address;return n.a.createElement(o.Fragment,null,n.a.createElement("iframe",{title:"Divi Supreme Embed Google Map",frameBorder:"0",scrolling:"no",marginHeight:"0",marginWidth:"0",src:t,"aria-label":r}))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_embed_google_map"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(238);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,i,l;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,o["Component"]),r=t,l=[{key:"css",value:function(e){var t=[];return"center"!==e.separator_gap&&t.push([{selector:"%%order_class%% .dsm-facebook-feed",declaration:"text-align: ".concat(e.fb_alignment,";")}]),t}}],(i=[{key:"_renderTwitter",value:function(){var e=this.props,t="off"===e.header?"noheader":"",r="off"===e.footer?" nofooter":"",i="off"===e.borders?" noborders":"",s="off"===e.scrollbar?" noscrollbar":"",c="on"===e.remove_background?" transparent":"";return"on"===e.limit_tweet?n.a.createElement(o.Fragment,null,n.a.createElement(a.Timeline,{dataSource:{sourceType:"profile",screenName:e.twitter_username},options:{username:e.twitter_username,height:parseInt(e.height,10),theme:e.theme,tweetLimit:parseInt(e.tweet_number,10),chrome:"".concat(t).concat(r).concat(i).concat(s).concat(c)}})):n.a.createElement(o.Fragment,null,n.a.createElement(a.Timeline,{dataSource:{sourceType:"profile",screenName:e.twitter_username},options:{username:e.twitter_username,height:parseInt(e.height,10),theme:e.theme,chrome:"".concat(t).concat(r).concat(i).concat(s).concat(c)}}))}},{key:"render",value:function(){return n.a.createElement(o.Fragment,null,this._renderTwitter())}}])&&s(r.prototype,i),l&&s(r,l),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_embed_twitter_timeline"}),t.a=l},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Tweet=t.Timeline=t.Share=t.Mention=t.Hashtag=t.Follow=void 0;var o=r(239),n=u(r(240)),a=u(r(318)),i=u(r(319)),s=u(r(320)),c=u(r(321)),l=u(r(322));function u(e){return e&&e.__esModule?e:{default:e}}o.canUseDOM&&r(141)("https://platform.twitter.com/widgets.js","twitter-widgets");t.Follow=n.default,t.Hashtag=a.default,t.Mention=i.default,t.Share=s.default,t.Timeline=c.default,t.Tweet=l.default},function(e,t,r){var o;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(){"use strict";var a=!("undefined"===typeof window||!window.document||!window.document.createElement),i={canUseDOM:a,canUseWorkers:"undefined"!==typeof Worker,canUseEventListeners:a&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:a&&!!window.screen};"object"===n(r(119))&&r(119)?void 0===(o=function(){return i}.call(t,r,t,e))||(e.exports=o):"undefined"!==typeof e&&e.exports?e.exports=i:window.ExecutionEnvironment=i}()},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.username,i=n.options,s=n.onLoad;e.widgets.createFollowButton(a,t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("username")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={username:i.default.string.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){var o=r(242),n=r(27);e.exports=function e(t,r,a,i,s){return t===r||(null==t||null==r||!n(t)&&!n(r)?t!==t&&r!==r:o(t,r,a,i,e,s))}},function(e,t,r){var o=r(120),n=r(125),a=r(277),i=r(280),s=r(50),c=r(49),l=r(82),u=r(132),d=1,p="[object Arguments]",_="[object Array]",f="[object Object]",h=Object.prototype.hasOwnProperty;e.exports=function(e,t,r,b,m,y){var v=c(e),g=c(t),w=v?_:s(e),x=g?_:s(t),k=(w=w==p?f:w)==f,O=(x=x==p?f:x)==f,S=w==x;if(S&&l(e)){if(!l(t))return!1;v=!0,k=!1}if(S&&!k)return y||(y=new o),v||u(e)?n(e,t,r,b,m,y):a(e,t,w,r,b,m,y);if(!(r&d)){var j=k&&h.call(e,"__wrapped__"),E=O&&h.call(t,"__wrapped__");if(j||E){var P=j?e.value():e,z=E?t.value():t;return y||(y=new o),m(P,z,r,b,y)}}return!!S&&(y||(y=new o),i(e,t,r,b,m,y))}},function(e,t){e.exports=function(){this.__data__=[],this.size=0}},function(e,t,r){var o=r(44),n=Array.prototype.splice;e.exports=function(e){var t=this.__data__,r=o(t,e);return!(r<0)&&(r==t.length-1?t.pop():n.call(t,r,1),--this.size,!0)}},function(e,t,r){var o=r(44);e.exports=function(e){var t=this.__data__,r=o(t,e);return r<0?void 0:t[r][1]}},function(e,t,r){var o=r(44);e.exports=function(e){return o(this.__data__,e)>-1}},function(e,t,r){var o=r(44);e.exports=function(e,t){var r=this.__data__,n=o(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this}},function(e,t,r){var o=r(43);e.exports=function(){this.__data__=new o,this.size=0}},function(e,t){e.exports=function(e){var t=this.__data__,r=t.delete(e);return this.size=t.size,r}},function(e,t){e.exports=function(e){return this.__data__.get(e)}},function(e,t){e.exports=function(e){return this.__data__.has(e)}},function(e,t,r){var o=r(43),n=r(79),a=r(124),i=200;e.exports=function(e,t){var r=this.__data__;if(r instanceof o){var s=r.__data__;if(!n||s.length<i-1)return s.push([e,t]),this.size=++r.size,this;r=this.__data__=new a(s)}return r.set(e,t),this.size=r.size,this}},function(e,t,r){var o=r(121),n=r(257),a=r(35),i=r(123),s=/^\[object .+?Constructor\]$/,c=Function.prototype,l=Object.prototype,u=c.toString,d=l.hasOwnProperty,p=RegExp("^"+u.call(d).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");e.exports=function(e){return!(!a(e)||n(e))&&(o(e)?p:s).test(i(e))}},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o;o=function(){return this}();try{o=o||Function("return this")()||(0,eval)("this")}catch(e){"object"===("undefined"===typeof window?"undefined":r(window))&&(o=window)}e.exports=o},function(e,t,r){var o=r(46),n=Object.prototype,a=n.hasOwnProperty,i=n.toString,s=o?o.toStringTag:void 0;e.exports=function(e){var t=a.call(e,s),r=e[s];try{e[s]=void 0;var o=!0}catch(e){}var n=i.call(e);return o&&(t?e[s]=r:delete e[s]),n}},function(e,t){var r=Object.prototype.toString;e.exports=function(e){return r.call(e)}},function(e,t,r){var o,n=r(258),a=(o=/[^.]+$/.exec(n&&n.keys&&n.keys.IE_PROTO||""))?"Symbol(src)_1."+o:"";e.exports=function(e){return!!a&&a in e}},function(e,t,r){var o=r(11)["__core-js_shared__"];e.exports=o},function(e,t){e.exports=function(e,t){return null==e?void 0:e[t]}},function(e,t,r){var o=r(261),n=r(43),a=r(79);e.exports=function(){this.size=0,this.__data__={hash:new o,map:new(a||n),string:new o}}},function(e,t,r){var o=r(262),n=r(263),a=r(264),i=r(265),s=r(266);function c(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var o=e[t];this.set(o[0],o[1])}}c.prototype.clear=o,c.prototype.delete=n,c.prototype.get=a,c.prototype.has=i,c.prototype.set=s,e.exports=c},function(e,t,r){var o=r(47);e.exports=function(){this.__data__=o?o(null):{},this.size=0}},function(e,t){e.exports=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}},function(e,t,r){var o=r(47),n="__lodash_hash_undefined__",a=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;if(o){var r=t[e];return r===n?void 0:r}return a.call(t,e)?t[e]:void 0}},function(e,t,r){var o=r(47),n=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;return o?void 0!==t[e]:n.call(t,e)}},function(e,t,r){var o=r(47),n="__lodash_hash_undefined__";e.exports=function(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=o&&void 0===t?n:t,this}},function(e,t,r){var o=r(48);e.exports=function(e){var t=o(this,e).delete(e);return this.size-=t?1:0,t}},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){var t=r(e);return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}},function(e,t,r){var o=r(48);e.exports=function(e){return o(this,e).get(e)}},function(e,t,r){var o=r(48);e.exports=function(e){return o(this,e).has(e)}},function(e,t,r){var o=r(48);e.exports=function(e,t){var r=o(this,e),n=r.size;return r.set(e,t),this.size+=r.size==n?0:1,this}},function(e,t,r){var o=r(124),n=r(273),a=r(274);function i(e){var t=-1,r=null==e?0:e.length;for(this.__data__=new o;++t<r;)this.add(e[t])}i.prototype.add=i.prototype.push=n,i.prototype.has=a,e.exports=i},function(e,t){var r="__lodash_hash_undefined__";e.exports=function(e){return this.__data__.set(e,r),this}},function(e,t){e.exports=function(e){return this.__data__.has(e)}},function(e,t){e.exports=function(e,t){for(var r=-1,o=null==e?0:e.length;++r<o;)if(t(e[r],r,e))return!0;return!1}},function(e,t){e.exports=function(e,t){return e.has(t)}},function(e,t,r){var o=r(46),n=r(126),a=r(78),i=r(125),s=r(278),c=r(279),l=1,u=2,d="[object Boolean]",p="[object Date]",_="[object Error]",f="[object Map]",h="[object Number]",b="[object RegExp]",m="[object Set]",y="[object String]",v="[object Symbol]",g="[object ArrayBuffer]",w="[object DataView]",x=o?o.prototype:void 0,k=x?x.valueOf:void 0;e.exports=function(e,t,r,o,x,O,S){switch(r){case w:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case g:return!(e.byteLength!=t.byteLength||!O(new n(e),new n(t)));case d:case p:case h:return a(+e,+t);case _:return e.name==t.name&&e.message==t.message;case b:case y:return e==t+"";case f:var j=s;case m:var E=o&l;if(j||(j=c),e.size!=t.size&&!E)return!1;var P=S.get(e);if(P)return P==t;o|=u,S.set(e,t);var z=i(j(e),j(t),o,x,O,S);return S.delete(e),z;case v:if(k)return k.call(e)==k.call(t)}return!1}},function(e,t){e.exports=function(e){var t=-1,r=Array(e.size);return e.forEach(function(e,o){r[++t]=[o,e]}),r}},function(e,t){e.exports=function(e){var t=-1,r=Array(e.size);return e.forEach(function(e){r[++t]=e}),r}},function(e,t,r){var o=r(127),n=1,a=Object.prototype.hasOwnProperty;e.exports=function(e,t,r,i,s,c){var l=r&n,u=o(e),d=u.length;if(d!=o(t).length&&!l)return!1;for(var p=d;p--;){var _=u[p];if(!(l?_ in t:a.call(t,_)))return!1}var f=c.get(e);if(f&&c.get(t))return f==t;var h=!0;c.set(e,t),c.set(t,e);for(var b=l;++p<d;){var m=e[_=u[p]],y=t[_];if(i)var v=l?i(y,m,_,t,e,c):i(m,y,_,e,t,c);if(!(void 0===v?m===y||s(m,y,r,i,c):v)){h=!1;break}b||(b="constructor"==_)}if(h&&!b){var g=e.constructor,w=t.constructor;g!=w&&"constructor"in e&&"constructor"in t&&!("function"==typeof g&&g instanceof g&&"function"==typeof w&&w instanceof w)&&(h=!1)}return c.delete(e),c.delete(t),h}},function(e,t){e.exports=function(e,t){for(var r=-1,o=null==e?0:e.length,n=0,a=[];++r<o;){var i=e[r];t(i,r,e)&&(a[n++]=i)}return a}},function(e,t){e.exports=function(e,t){for(var r=-1,o=Array(e);++r<e;)o[r]=t(r);return o}},function(e,t,r){var o=r(284),n=r(27),a=Object.prototype,i=a.hasOwnProperty,s=a.propertyIsEnumerable,c=o(function(){return arguments}())?o:function(e){return n(e)&&i.call(e,"callee")&&!s.call(e,"callee")};e.exports=c},function(e,t,r){var o=r(45),n=r(27),a="[object Arguments]";e.exports=function(e){return n(e)&&o(e)==a}},function(e,t){e.exports=function(){return!1}},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o=9007199254740991,n=/^(?:0|[1-9]\d*)$/;e.exports=function(e,t){var a=r(e);return!!(t=null==t?o:t)&&("number"==a||"symbol"!=a&&n.test(e))&&e>-1&&e%1==0&&e<t}},function(e,t,r){var o=r(45),n=r(133),a=r(27),i={};i["[object Float32Array]"]=i["[object Float64Array]"]=i["[object Int8Array]"]=i["[object Int16Array]"]=i["[object Int32Array]"]=i["[object Uint8Array]"]=i["[object Uint8ClampedArray]"]=i["[object Uint16Array]"]=i["[object Uint32Array]"]=!0,i["[object Arguments]"]=i["[object Array]"]=i["[object ArrayBuffer]"]=i["[object Boolean]"]=i["[object DataView]"]=i["[object Date]"]=i["[object Error]"]=i["[object Function]"]=i["[object Map]"]=i["[object Number]"]=i["[object Object]"]=i["[object RegExp]"]=i["[object Set]"]=i["[object String]"]=i["[object WeakMap]"]=!1,e.exports=function(e){return a(e)&&n(e.length)&&!!i[o(e)]}},function(e,t,r){var o=r(85),n=r(289),a=Object.prototype.hasOwnProperty;e.exports=function(e){if(!o(e))return n(e);var t=[];for(var r in Object(e))a.call(e,r)&&"constructor"!=r&&t.push(r);return t}},function(e,t,r){var o=r(134)(Object.keys,Object);e.exports=o},function(e,t,r){var o=r(21)(r(11),"DataView");e.exports=o},function(e,t,r){var o=r(21)(r(11),"Promise");e.exports=o},function(e,t,r){var o=r(21)(r(11),"Set");e.exports=o},function(e,t,r){var o=r(21)(r(11),"WeakMap");e.exports=o},function(e,t,r){var o=r(120),n=r(295),a=r(136),i=r(297),s=r(298),c=r(301),l=r(302),u=r(303),d=r(304),p=r(127),_=r(305),f=r(50),h=r(306),b=r(307),m=r(312),y=r(49),v=r(82),g=r(314),w=r(35),x=r(316),k=r(81),O=1,S=2,j=4,E="[object Arguments]",P="[object Function]",z="[object GeneratorFunction]",C="[object Object]",T={};T[E]=T["[object Array]"]=T["[object ArrayBuffer]"]=T["[object DataView]"]=T["[object Boolean]"]=T["[object Date]"]=T["[object Float32Array]"]=T["[object Float64Array]"]=T["[object Int8Array]"]=T["[object Int16Array]"]=T["[object Int32Array]"]=T["[object Map]"]=T["[object Number]"]=T[C]=T["[object RegExp]"]=T["[object Set]"]=T["[object String]"]=T["[object Symbol]"]=T["[object Uint8Array]"]=T["[object Uint8ClampedArray]"]=T["[object Uint16Array]"]=T["[object Uint32Array]"]=!0,T["[object Error]"]=T[P]=T["[object WeakMap]"]=!1,e.exports=function e(t,r,q,M,I,N){var R,F=r&O,A=r&S,L=r&j;if(q&&(R=I?q(t,M,I,N):q(t)),void 0!==R)return R;if(!w(t))return t;var D=y(t);if(D){if(R=h(t),!F)return l(t,R)}else{var B=f(t),U=B==P||B==z;if(v(t))return c(t,F);if(B==C||B==E||U&&!I){if(R=A||U?{}:m(t),!F)return A?d(t,s(R,t)):u(t,i(R,t))}else{if(!T[B])return I?t:{};R=b(t,B,F)}}N||(N=new o);var W=N.get(t);if(W)return W;N.set(t,R),x(t)?t.forEach(function(o){R.add(e(o,r,q,o,t,N))}):g(t)&&t.forEach(function(o,n){R.set(n,e(o,r,q,n,t,N))});var Y=L?A?_:p:A?keysIn:k,X=D?void 0:Y(t);return n(X||t,function(o,n){X&&(o=t[n=o]),a(R,n,e(o,r,q,n,t,N))}),R}},function(e,t){e.exports=function(e,t){for(var r=-1,o=null==e?0:e.length;++r<o&&!1!==t(e[r],r,e););return e}},function(e,t,r){var o=r(21),n=function(){try{var e=o(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();e.exports=n},function(e,t,r){var o=r(51),n=r(81);e.exports=function(e,t){return e&&o(t,n(t),e)}},function(e,t,r){var o=r(51),n=r(138);e.exports=function(e,t){return e&&o(t,n(t),e)}},function(e,t,r){var o=r(35),n=r(85),a=r(300),i=Object.prototype.hasOwnProperty;e.exports=function(e){if(!o(e))return a(e);var t=n(e),r=[];for(var s in e)("constructor"!=s||!t&&i.call(e,s))&&r.push(s);return r}},function(e,t){e.exports=function(e){var t=[];if(null!=e)for(var r in Object(e))t.push(r);return t}},function(e,t,r){(function(e){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(11),a="object"==o(t)&&t&&!t.nodeType&&t,i=a&&"object"==o(e)&&e&&!e.nodeType&&e,s=i&&i.exports===a?n.Buffer:void 0,c=s?s.allocUnsafe:void 0;e.exports=function(e,t){if(t)return e.slice();var r=e.length,o=c?c(r):new e.constructor(r);return e.copy(o),o}}).call(t,r(23)(e))},function(e,t){e.exports=function(e,t){var r=-1,o=e.length;for(t||(t=Array(o));++r<o;)t[r]=e[r];return t}},function(e,t,r){var o=r(51),n=r(80);e.exports=function(e,t){return o(e,n(e),t)}},function(e,t,r){var o=r(51),n=r(139);e.exports=function(e,t){return o(e,n(e),t)}},function(e,t,r){var o=r(128),n=r(139),a=r(138);e.exports=function(e){return o(e,a,n)}},function(e,t){var r=Object.prototype.hasOwnProperty;e.exports=function(e){var t=e.length,o=new e.constructor(t);return t&&"string"==typeof e[0]&&r.call(e,"index")&&(o.index=e.index,o.input=e.input),o}},function(e,t,r){var o=r(86),n=r(308),a=r(309),i=r(310),s=r(311),c="[object Boolean]",l="[object Date]",u="[object Map]",d="[object Number]",p="[object RegExp]",_="[object Set]",f="[object String]",h="[object Symbol]",b="[object ArrayBuffer]",m="[object DataView]",y="[object Float32Array]",v="[object Float64Array]",g="[object Int8Array]",w="[object Int16Array]",x="[object Int32Array]",k="[object Uint8Array]",O="[object Uint8ClampedArray]",S="[object Uint16Array]",j="[object Uint32Array]";e.exports=function(e,t,r){var E=e.constructor;switch(t){case b:return o(e);case c:case l:return new E(+e);case m:return n(e,r);case y:case v:case g:case w:case x:case k:case O:case S:case j:return s(e,r);case u:return new E;case d:case f:return new E(e);case p:return a(e);case _:return new E;case h:return i(e)}}},function(e,t,r){var o=r(86);e.exports=function(e,t){var r=t?o(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.byteLength)}},function(e,t){var r=/\w*$/;e.exports=function(e){var t=new e.constructor(e.source,r.exec(e));return t.lastIndex=e.lastIndex,t}},function(e,t,r){var o=r(46),n=o?o.prototype:void 0,a=n?n.valueOf:void 0;e.exports=function(e){return a?Object(a.call(e)):{}}},function(e,t,r){var o=r(86);e.exports=function(e,t){var r=t?o(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}},function(e,t,r){var o=r(313),n=r(140),a=r(85);e.exports=function(e){return"function"!=typeof e.constructor||a(e)?{}:o(n(e))}},function(e,t,r){var o=r(35),n=Object.create,a=function(){function e(){}return function(t){if(!o(t))return{};if(n)return n(t);e.prototype=t;var r=new e;return e.prototype=void 0,r}}();e.exports=a},function(e,t,r){var o=r(315),n=r(83),a=r(84),i=a&&a.isMap,s=i?n(i):o;e.exports=s},function(e,t,r){var o=r(50),n=r(27),a="[object Map]";e.exports=function(e){return n(e)&&o(e)==a}},function(e,t,r){var o=r(317),n=r(83),a=r(84),i=a&&a.isSet,s=i?n(i):o;e.exports=s},function(e,t,r){var o=r(50),n=r(27),a="[object Set]";e.exports=function(e){return n(e)&&o(e)==a}},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.hashtag,i=n.options,s=n.onLoad;e.widgets.createHashtagButton(a,t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("hashtag")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={hashtag:i.default.string.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.username,i=n.options,s=n.onLoad;e.widgets.createMentionButton(a,t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("username")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={username:i.default.string.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.url,i=n.options,s=n.onLoad;e.widgets.createShareButton(a,t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("url")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={url:i.default.string.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.dataSource,i=n.options,s=n.onLoad;e.widgets.createTimeline((0,c.default)(a),t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("dataSource")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={dataSource:i.default.object.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.tweetId,i=n.options,s=n.onLoad;e.widgets.createTweet(a,t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("tweetId")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={tweetId:i.default.string.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(87);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];return e.badges_background_color&&t.push([{selector:"%%order_class%% .dsm-badges",declaration:"background-color: ".concat(e.badges_background_color,";")}]),"7px"!==e.badges_gap&&("after"===e.badges_placement?t.push([{selector:"%%order_class%% .dsm-badges-after",declaration:"margin-left: ".concat(e.badges_gap,";")}]):t.push([{selector:"%%order_class%% .dsm-badges-before",declaration:"margin-right: ".concat(e.badges_gap,";")}])),"after"===e.badges_placement&&(e.badges_gap_tablet&&t.push([{selector:"%%order_class%% .dsm-badges-after",declaration:"margin-left: ".concat(e.badges_gap_tablet,";"),device:"tablet"}]),e.badges_gap_phone&&t.push([{selector:"%%order_class%% .dsm-badges-after",declaration:"margin-left: ".concat(e.badges_gap_phone,";"),device:"phone"}])),"before"===e.badges_placement&&(e.badges_gap_tablet&&t.push([{selector:"%%order_class%% .dsm-badges-before",declaration:"margin-right: ".concat(e.badges_gap_tablet,";"),device:"tablet"}]),e.badges_gap_phone&&t.push([{selector:"%%order_class%% .dsm-badges-before",declaration:"margin-right: ".concat(e.badges_gap_phone,";"),device:"phone"}])),t}}],(a=[{key:"_renderBadgesBefore",value:function(){var e=this.props;return e.badges_text&&"after"!==e.badges_placement?n.a.createElement(o.Fragment,null,n.a.createElement("span",{className:"dsm-badges dsm-badges-".concat(e.badges_placement)},e.badges_text)):""}},{key:"_renderBadgesAfter",value:function(){var e=this.props;return e.badges_text&&"before"!==e.badges_placement?n.a.createElement(o.Fragment,null,n.a.createElement("span",{className:"dsm-badges dsm-badges-".concat(e.badges_placement)},e.badges_text)):""}},{key:"_renderTitle",value:function(){var e=this.props,t=""===e.header_level?"h4":"".concat(e.header_level);return e.main_text?void 0===e.header_level?n.a.createElement(o.Fragment,null,n.a.createElement("h4",{className:"dsm-text-badges et_pb_module_header"},this._renderBadgesBefore(),e.main_text,this._renderBadgesAfter())):n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-text-badges et_pb_module_header"},this._renderBadgesBefore(),e.main_text,this._renderBadgesAfter())):""}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"et_pb_bg_layout_".concat(e.background_layout)},this._renderTitle()))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_text_badges"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(88);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];e.menu_link_text_color&&t.push([{selector:"%%order_class%% ul.dsm-menu li a",declaration:"color: ".concat(e.menu_link_text_color,";")}]),"on"===e.menu_link_text_color__hover_enabled&&e.menu_link_text_color__hover&&t.push([{selector:"%%order_class%% ul.dsm-menu li a:hover",declaration:"color: ".concat(e.menu_link_text_color__hover,";")}]),"disc"!==e.list_style_type&&t.push([{selector:"%%order_class%% ul.dsm-menu, %%order_class%% ul.dsm-menu .sub-menu",declaration:"list-style-type: ".concat(e.list_style_type,";")}]),""!==e.list_style_color&&t.push([{selector:"%%order_class%% ul.dsm-menu li",declaration:"color: ".concat(e.list_style_color,";")}]);var r=e.title_bottom_gap_last_edited&&e.title_bottom_gap_last_edited.startsWith("on"),o=e.title_bottom_gap,n=r&&e.title_bottom_gap_tablet?e.title_bottom_gap_tablet:o,a=r&&e.title_bottom_gap_phone?e.title_bottom_gap_phone:n;"10px"!==e.title_bottom_gap&&t.push([{selector:"%%order_class%% ".concat(e.header_level,".dsm-menu-title"),declaration:"padding-bottom: ".concat(o,";")}]),""!==e.title_bottom_gap_tablet&&t.push([{selector:"%%order_class%% ".concat(e.header_level,".dsm-menu-title"),declaration:"padding-bottom: ".concat(n,";"),device:"tablet"}]),""!==e.title_bottom_gap_phone&&t.push([{selector:"%%order_class%% ".concat(e.header_level,".dsm-menu-title"),declaration:"padding-bottom: ".concat(a,";"),device:"phone"}]);var i=e.menu_space_between_last_edited&&e.menu_space_between_last_edited.startsWith("on"),s=e.menu_space_between,c=i&&e.menu_space_between_tablet?e.menu_space_between_tablet:s,l=i&&e.menu_space_between_phone?e.menu_space_between_phone:c;"0px"!==e.menu_space_between&&(t.push([{selector:"%%order_class%% .dsm-menu li:not(:last-child)",declaration:"margin-bottom: ".concat(s,";")}]),t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu>li",declaration:"margin-top: ".concat(s,";")}])),""!==e.menu_space_between_tablet&&(t.push([{selector:"%%order_class%% .dsm-menu li:not(:last-child)",declaration:"margin-bottom: ".concat(c,";"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu>li",declaration:"margin-top: ".concat(c,";"),device:"tablet"}])),""!==e.menu_space_between_phone&&(t.push([{selector:"%%order_class%% .dsm-menu li:not(:last-child)",declaration:"margin-top: ".concat(l,";"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu>li",declaration:"margin-top: ".concat(l,";"),device:"phone"}]));var u=e.submenu_left_space_last_edited&&e.submenu_left_space_last_edited.startsWith("on"),d=e.submenu_left_space,p=u&&e.submenu_left_space_tablet?e.submenu_left_space_tablet:d,_=u&&e.submenu_left_space_phone?e.submenu_left_space_phone:p;return"20px"!==e.submenu_left_space&&t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu",declaration:"padding-left: ".concat(d,";")}]),""!==e.submenu_left_space_tablet&&t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu",declaration:"padding-left: ".concat(p,";"),device:"tablet"}]),""!==e.submenu_left_space_phone&&t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu",declaration:"padding-left: ".concat(_,";"),device:"phone"}]),t}}],(a=[{key:"_renderTitle",value:function(){var e=this.props,t=""===e.header_level?"h4":"".concat(e.header_level);return e.title?void 0===e.header_level?n.a.createElement(o.Fragment,null,n.a.createElement("h4",{className:"dsm-menu-title et_pb_module_header"},e.title)):n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-menu-title et_pb_module_header"},e.title)):""}},{key:"_renderNav",value:function(){var e=this.props;if("none"!==e.menu_id){var t=e.__menu;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{dangerouslySetInnerHTML:{__html:t}}))}}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"et_pb_bg_layout_".concat(e.background_layout)},this._renderTitle(),this._renderNav()))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_menu"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(89);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];"dotted"!==e.separator_style&&t.push([{selector:"%%order_class%% .dsm-pricelist-separator",declaration:"border-bottom-style: ".concat(e.separator_style,";")}]),"2px"!==e.separator_weight&&t.push([{selector:"%%order_class%% .dsm-pricelist-separator",declaration:"border-bottom-width: ".concat(e.separator_weight,";")}]),e.separator_color&&t.push([{selector:"%%order_class%% .dsm-pricelist-separator",declaration:"border-bottom-color: ".concat(e.separator_color,";")}]),"10px"!==e.separator_gap&&t.push([{selector:"%%order_class%% .dsm-pricelist-separator",declaration:"margin-left: ".concat(e.separator_gap,"; margin-right: ").concat(e.separator_gap,";")}]);var r=e.item_bottom_gap_last_edited&&e.item_bottom_gap_last_edited.startsWith("on"),o=e.item_bottom_gap,n=r&&e.item_bottom_gap_tablet?e.item_bottom_gap_tablet:o,a=r&&e.item_bottom_gap_phone?e.item_bottom_gap_phone:n;"25px"!==e.item_bottom_gap&&t.push([{selector:"%%order_class%% .dsm_pricelist_child:not(:last-child)",declaration:"padding-bottom: ".concat(o,";")}]),e.item_bottom_gap_tablet&&t.push([{selector:"%%order_class%% .dsm_pricelist_child:not(:last-child)",declaration:"padding-bottom: ".concat(n),device:"tablet"}]),e.item_bottom_gap_phone&&t.push([{selector:"%%order_class%% .dsm_pricelist_child:not(:last-child)",declaration:"padding-bottom: ".concat(a),device:"phone"}]),"flex-start"!==e.content_orientation&&t.push([{selector:"%%order_class%% .dsm_pricelist_child>div",declaration:"align-items: ".concat(e.content_orientation,";")}]);var i=e.image_max_width_last_edited&&e.image_max_width_last_edited.startsWith("on"),s=e.image_max_width,c=i&&e.image_max_width_tablet?e.image_max_width_tablet:s,l=i&&e.image_max_width_phone?e.image_max_width_phone:c;"50%"!==e.image_max_width&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(s)}]),e.image_max_width_tablet&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(c),device:"tablet"}]),e.image_max_width_phone&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(l),device:"phone"}]);var u=e.image_spacing_last_edited&&e.image_spacing_last_edited.startsWith("on"),d=e.image_spacing,p=u&&e.image_spacing_tablet?e.image_spacing_tablet:d,_=u&&e.image_spacing_phone?e.image_spacing_phone:p;return e.image_spacing&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(d,";")}]),e.image_spacing_tablet&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(p,";"),device:"tablet"}]),e.image_spacing_phone&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(_,";"),device:"phone"}]),t}}],(a=[{key:"render",value:function(){return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm_pricelist"},this.props.content))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_pricelist"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o);function a(e){return(a="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 o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function s(e,t){return!t||"object"!==a(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}var c=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[],r=e.image_max_width_last_edited&&e.image_max_width_last_edited.startsWith("on"),o=e.image_max_width,n=r&&e.image_max_width_tablet?e.image_max_width_tablet:o,a=r&&e.image_max_width_phone?e.image_max_width_phone:n;e.image_max_width&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(o)}]),e.image_max_width_tablet&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(n),device:"tablet"}]),e.image_max_width_phone&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(a),device:"phone"}]),"center"!==e.content_orientation&&t.push([{selector:"%%order_class%%",declaration:"align-items: ".concat(e.content_orientation,";")}]);var i=e.image_spacing_last_edited&&e.image_spacing_last_edited.startsWith("on"),s=e.image_spacing,c=i&&e.image_spacing_tablet?e.image_spacing_tablet:s,l=i&&e.image_spacing_phone?e.image_spacing_phone:c;return e.image_spacing&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(s,";")}]),e.image_spacing_tablet&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(c,";"),device:"tablet"}]),e.image_spacing_phone&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(l,";"),device:"phone"}]),t}}],(a=[{key:"_renderTitle",value:function(){var e=this.props;return e.title?n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm-pricelist-title et_pb_module_header"},e.title)):""}},{key:"_renderIcon",value:function(){var e=this.props,t=window.ET_Builder.API.Utils;return"off"===e.use_icon?"":n.a.createElement("div",{className:"dsm_flipbox_child_image"},n.a.createElement("span",{className:"dsm_flipbox_child_image_wrap"},n.a.createElement("span",{className:"et-pb-icon".concat("on"===this.props.use_circle?" et-pb-icon-circle":"").concat("on"===this.props.use_circle_border?" et-pb-icon-circle-border":"")},t.processFontIcon(e.font_icon))))}},{key:"_renderImage",value:function(){var e=this.props;return e.image?n.a.createElement("div",{className:"dsm-pricelist-image"},n.a.createElement("img",{src:"".concat(e.image),alt:"".concat(e.alt)})):""}},{key:"_renderButton",value:function(){var e=this.props,t=window.ET_Builder.API.Utils,r="on"===e.url_new_window?"_blank":"",o=!!e.button_icon&&t.processFontIcon(e.button_icon),a={et_pb_button:!0,et_pb_more_button:!0,et_pb_custom_button_icon:e.button_icon};return e.button_text&&e.button_url?n.a.createElement("div",{className:"et_pb_button_wrapper"},n.a.createElement("a",{className:t.classnames(a),href:e.button_url,target:r,rel:t.linkRel(e.button_rel),"data-icon":o},e.button_text)):""}},{key:"_renderPrice",value:function(){var e=this.props,t=void 0===e.price?"$8":e.price;return e.price?n.a.createElement("div",{className:"dsm-pricelist-price"},t):""}},{key:"_renderContent",value:function(){var e=this.props,t=e.content;return e.content?n.a.createElement("div",{className:"dsm-pricelist-description"},n.a.createElement(t,null)):""}},{key:"render",value:function(){return n.a.createElement(o.Fragment,null,this._renderImage(),n.a.createElement("div",{className:"dsm_pricelist_item_wrapper"},n.a.createElement("div",{className:"dsm-pricelist-header"},this._renderTitle(),n.a.createElement("div",{className:"dsm-pricelist-separator"}),this._renderPrice()),this._renderContent()))}}])&&i(r.prototype,a),c&&i(r,c),t}();Object.defineProperty(c,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_pricelist_child"}),t.a=c},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(90);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];if("none"!==e.divider_style&&t.push([{selector:"%%order_class%% .dsm_business_hours_child:not(:last-child)",declaration:"border-bottom-style: ".concat(e.divider_style,";")}]),""!==e.divider_weight&&t.push([{selector:"%%order_class%% .dsm_business_hours_child:not(:last-child)",declaration:"border-bottom-width: ".concat(e.divider_weight,";")}]),e.divider_color&&t.push([{selector:"%%order_class%% .dsm_business_hours_child:not(:last-child)",declaration:"border-bottom-color: ".concat(e.divider_color,";")}]),"none"!==e.separator_style&&t.push([{selector:"%%order_class%% .dsm-business-hours-separator",declaration:"border-bottom-style: ".concat(e.separator_style,";")}]),"2px"!==e.separator_weight&&t.push([{selector:"%%order_class%% .dsm-business-hours-separator",declaration:"border-bottom-width: ".concat(e.separator_weight,";")}]),e.separator_color&&t.push([{selector:"%%order_class%% .dsm-business-hours-separator",declaration:"border-bottom-color: ".concat(e.separator_color,";")}]),"10px"!==e.separator_gap&&t.push([{selector:"%%order_class%% .dsm-business-hours-separator",declaration:"margin-left: ".concat(e.separator_gap,"; margin-right: ").concat(e.separator_gap,";")}]),"center"!==e.content_orientation&&t.push([{selector:"%%order_class%% .dsm_business_hours_child>div",declaration:"align-items: ".concat(e.content_orientation,";")}]),e.item_padding){var r=e.item_padding.split("|"),o=e.item_padding_last_edited,n=o&&o.startsWith("on");if(t.push([{selector:"%%order_class%% .dsm_business_hours_item_wrapper",declaration:"padding-top: ".concat(r[0],"; padding-right: ").concat(r[1]," !important; padding-bottom: ").concat(r[2],"; padding-left: ").concat(r[3]," !important;")}]),e.item_padding_tablet&&n&&e.item_padding_tablet&&""!==e.item_padding_tablet){var a=e.item_padding_tablet.split("|");t.push([{selector:"%%order_class%% .dsm_business_hours_item_wrapper",declaration:"padding-top: ".concat(a[0],"; padding-right: ").concat(a[1]," !important; padding-bottom: ").concat(a[2],"; padding-left: ").concat(a[3]," !important;"),device:"tablet"}])}if(e.item_padding_phone&&n&&e.item_padding_phone&&""!==e.item_padding_phone){var i=e.item_padding_phone.split("|");t.push([{selector:"%%order_class%% .dsm_business_hours_item_wrapper",declaration:"padding-top: ".concat(i[0],"; padding-right: ").concat(i[1]," !important; padding-bottom: ").concat(i[2],"; padding-left: ").concat(i[3]," !important;"),device:"phone"}])}}return t}}],(a=[{key:"render",value:function(){return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm_business_hours"},this.props.content))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_business_hours"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o);function a(e){return(a="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 o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function s(e,t){return!t||"object"!==a(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}var c=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[];return"center"!==e.content_orientation&&t.push([{selector:"%%order_class%%",declaration:"align-items: ".concat(e.content_orientation,";")}]),t}}],(a=[{key:"_renderTitle",value:function(){var e=this.props,t=void 0===e.title?"Monday":e.title;return t?n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm-business-hours-day"},t)):""}},{key:"_renderTime",value:function(){var e=this.props,t=void 0===e.time?"9:00 AM - 6:00 PM":e.time;return t?n.a.createElement("div",{className:"dsm-business-hours-time"},t):""}},{key:"render",value:function(){return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm_business_hours_item_wrapper"},n.a.createElement("div",{className:"dsm-business-hours-header"},this._renderTitle(),n.a.createElement("div",{className:"dsm-business-hours-separator"}),this._renderTime())))}}])&&i(r.prototype,a),c&&i(r,c),t}();Object.defineProperty(c,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_business_hours_child"}),t.a=c},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(91);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[],r=void 0===e.icon_font_size?"14px":e.icon_font_size;if("14px"!==e.icon_font_size&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_icon",declaration:"font-size: ".concat(r,";")}]),e.icon_font_size){var o=void 0!==e.icon_font_size__hover_enabled?e.icon_font_size__hover_enabled.split("|"):"",n=e.icon_font_size_last_edited,a=n&&n.startsWith("on");"on"===o[0]&&"hover"===o[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size__hover,";")}]),e.icon_font_size_tablet&&a&&e.icon_font_size_tablet&&""!==e.icon_font_size_tablet&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size_tablet,";"),device:"tablet"}]),e.icon_font_size_phone&&a&&e.icon_font_size_phone&&""!==e.icon_font_size_phone&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size_phone,";"),device:"phone"}])}e.icon_color&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color,";")}]);var i=void 0!==e.icon_color__hover_enabled?e.icon_color__hover_enabled.split("|"):"",s=e.icon_color_last_edited,c=s&&s.startsWith("on");"on"===i[0]&&"hover"===i[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color__hover,";")}]),e.icon_color_tablet&&c&&e.icon_color_tablet&&""!==e.icon_color_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color_tablet,";"),device:"tablet"}]),e.icon_color_phone&&c&&e.icon_color_phone&&""!==e.icon_color_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color_phone,";"),device:"phone"}]),e.icon_background_color&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color,";")}]);var l=void 0!==e.icon_background_color__hover_enabled?e.icon_background_color__hover_enabled.split("|"):"",u=e.icon_background_color_last_edited,d=u&&u.startsWith("on");"on"===l[0]&&"hover"===l[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color__hover,";")}]),e.icon_background_color_tablet&&d&&e.icon_background_color_tablet&&""!==e.icon_background_color_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color_tablet,";"),device:"tablet"}]),e.icon_background_color_phone&&d&&e.icon_background_color_phone&&""!==e.icon_background_color_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color_phone,";"),device:"phone"}]),e.icon_padding&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding,";")}]);var p=void 0!==e.icon_padding__hover_enabled?e.icon_padding__hover_enabled.split("|"):"",_=e.icon_padding_last_edited,f=_&&_.startsWith("on");"on"===p[0]&&"hover"===p[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding__hover,";")}]),e.icon_padding_tablet&&f&&e.icon_padding_tablet&&""!==e.icon_padding_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding_tablet,";"),device:"tablet"}]),e.icon_padding_phone&&f&&e.icon_padding_phone&&""!==e.icon_padding_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding_phone,";"),device:"phone"}]),"flex-start"!==e.list_alignment&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"justify-content: ".concat(e.list_alignment,"; ")}]);var h=e.list_alignment_last_edited,b=h&&h.startsWith("on");e.list_alignment_tablet&&b&&e.list_alignment_tablet&&""!==e.list_alignment_tablet&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"justify-content: ".concat(e.list_alignment_tablet,";"),device:"tablet"}]),e.list_alignment_phone&&b&&e.list_alignment_phone&&""!==e.list_alignment_phone&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"justify-content: ".concat(e.list_alignment_phone,";"),device:"phone"}]),e.list_vertical_alignment&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"align-items: ".concat(e.list_vertical_alignment,"; ")}]);var m=e.list_vertical_alignment_last_edited,y=m&&m.startsWith("on");e.list_vertical_alignment_tablet&&y&&e.list_vertical_alignment_tablet&&""!==e.list_vertical_alignment_tablet&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"align-items: ".concat(e.list_vertical_alignment_tablet,";"),device:"tablet"}]),e.list_vertical_alignment_phone&&y&&e.list_vertical_alignment_phone&&""!==e.list_vertical_alignment_phone&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"align-items: ".concat(e.list_vertical_alignment_phone,";"),device:"phone"}]),e.list_space_between&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child:not(:last-child)",declaration:"margin-bottom: ".concat(e.list_space_between," !important; ")}]);var v=void 0!==e.list_space_between__hover_enabled?e.list_space_between__hover_enabled.split("|"):"",g=e.list_space_between_last_edited,w=g&&g.startsWith("on");"on"===v[0]&&"hover"===v[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child:not(:last-child)",declaration:"margin-bottom: ".concat(e.list_space_between__hover," !important;")}]),e.list_space_between_tablet&&w&&e.list_space_between_tablet&&""!==e.list_space_between_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child:not(:last-child)",declaration:"margin-bottom: ".concat(e.list_space_between_tablet," !important;"),device:"tablet"}]),e.list_space_between_phone&&w&&e.list_space_between_phone&&""!==e.list_space_between_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child:not(:last-child)",declaration:"margin-bottom: ".concat(e.list_space_between_phone," !important;"),device:"phone"}]),e.list_background&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"background-color: ".concat(e.list_background,";")}]);var x=void 0!==e.list_background__hover_enabled?e.list_background__hover_enabled.split("|"):"",k=e.list_background_last_edited,O=k&&k.startsWith("on");"on"===x[0]&&"hover"===x[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"background-color: ".concat(e.list_background__hover,";")}]),e.list_background_tablet&&O&&e.list_background_tablet&&""!==e.list_background_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"background-color: ".concat(e.list_background_tablet,";"),device:"tablet"}]),e.list_background_phone&&O&&e.list_background_phone&&""!==e.list_background_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"background-color: ".concat(e.list_background_phone,";"),device:"phone"}]);var S=void 0!==e.list_padding?e.list_padding.split("|"):"";e.list_padding&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"padding-top: ".concat(S[0],"; padding-right: ").concat(S[1]," !important; padding-bottom: ").concat(S[2],"; padding-left: ").concat(S[3]," !important;")}]);var j=e.list_padding_last_edited,E=j&&j.startsWith("on"),P=void 0!==e.list_padding__hover_enabled?e.list_padding__hover_enabled.split("|"):"";if("on"===P[0]){var z=void 0!==e.list_padding__hover?e.list_padding__hover.split("|"):S;"hover"===P[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"padding-top: ".concat(z[0],"; padding-right: ").concat(z[1]," !important; padding-bottom: ").concat(z[2],"; padding-left: ").concat(z[3]," !important;")}])}if(e.list_padding_tablet&&E&&e.list_padding_tablet&&""!==e.list_padding_tablet){var C=e.list_padding_tablet.split("|");t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"padding-top: ".concat(C[0],"; padding-right: ").concat(C[1]," !important; padding-bottom: ").concat(C[2],"; padding-left: ").concat(C[3]," !important;"),device:"tablet"}])}if(e.list_padding_phone&&E&&e.list_padding_phone&&""!==e.list_padding_phone){var T=e.list_padding_phone.split("|");t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"padding-top: ".concat(T[0],"; padding-right: ").concat(T[1]," !important; padding-bottom: ").concat(T[2],"; padding-left: ").concat(T[3]," !important;"),device:"phone"}])}e.text_indent&&t.push([{selector:"%%order_class%% .dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent,";")}]);var q=void 0!==e.text_indent__hover_enabled?e.text_indent__hover_enabled.split("|"):"",M=e.text_indent_last_edited,I=M&&M.startsWith("on");return"on"===q[0]&&"hover"===q[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent__hover,";")}]),e.text_indent_tablet&&I&&e.text_indent_tablet&&""!==e.text_indent_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent_tablet,";"),device:"tablet"}]),e.text_indent_phone&&I&&e.text_indent_phone&&""!==e.text_indent_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent_phone,";"),device:"phone"}]),t}}],(a=[{key:"render",value:function(){return n.a.createElement("div",{className:"dsm_icon_list"},n.a.createElement("div",{className:"dsm_icon_list_items"},this.props.content))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_icon_list"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o);function a(e){return(a="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 o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function s(e,t){return!t||"object"!==a(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}var c=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[];if(e.icon_font_size&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size,";")}]),e.icon_font_size){var r=void 0!==e.icon_font_size__hover_enabled?e.icon_font_size__hover_enabled.split("|"):"",o=e.icon_font_size_last_edited,n=o&&o.startsWith("on");"on"===r[0]&&"hover"===r[1]&&1===e.hover_enabled&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size__hover,";")}]),e.icon_font_size_tablet&&n&&e.icon_font_size_tablet&&""!==e.icon_font_size_tablet&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size_tablet,";"),device:"tablet"}]),e.icon_font_size_phone&&n&&e.icon_font_size_phone&&""!==e.icon_font_size_phone&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size_phone,";"),device:"phone"}])}e.icon_color&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color,";")}]);var a=void 0!==e.icon_color__hover_enabled?e.icon_color__hover_enabled.split("|"):"",i=e.icon_color_last_edited,s=i&&i.startsWith("on");"on"===a[0]&&"hover"===a[1]&&1===e.hover_enabled&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color__hover," !important;")}]),e.icon_color_tablet&&s&&e.icon_color_tablet&&""!==e.icon_color_tablet&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color_tablet,";"),device:"tablet"}]),e.icon_color_phone&&s&&e.icon_color_phone&&""!==e.icon_color_phone&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color_phone,";"),device:"phone"}]),e.icon_background_color&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color,";")}]);var c=void 0!==e.icon_background_color__hover_enabled?e.icon_background_color__hover_enabled.split("|"):"",l=e.icon_background_color_last_edited,u=l&&l.startsWith("on");"on"===c[0]&&"hover"===c[1]&&1===e.hover_enabled&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color__hover,";")}]),e.icon_background_color_tablet&&u&&e.icon_background_color_tablet&&""!==e.icon_background_color_tablet&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color_tablet,";"),device:"tablet"}]),e.icon_background_color_phone&&u&&e.icon_background_color_phone&&""!==e.icon_background_color_phone&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color_phone,";"),device:"phone"}]),e.icon_padding&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding,";")}]);var d=void 0!==e.icon_padding__hover_enabled?e.icon_padding__hover_enabled.split("|"):"",p=e.icon_padding_last_edited,_=p&&p.startsWith("on");"on"===d[0]&&"hover"===d[1]&&1===e.hover_enabled&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding__hover,";")}]),e.icon_padding_tablet&&_&&e.icon_padding_tablet&&""!==e.icon_padding_tablet&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding_tablet,";"),device:"tablet"}]),e.icon_padding_phone&&_&&e.icon_padding_phone&&""!==e.icon_padding_phone&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding_phone,";"),device:"phone"}]),e.text_indent&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent,";")}]);var f=void 0!==e.text_indent__hover_enabled?e.text_indent__hover_enabled.split("|"):"",h=e.text_indent_last_edited,b=h&&h.startsWith("on");return"on"===f[0]&&"hover"===f[1]&&1===e.hover_enabled&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent__hover,";")}]),e.text_indent_tablet&&b&&e.text_indent_tablet&&""!==e.text_indent_tablet&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent_tablet,";"),device:"tablet"}]),e.text_indent_phone&&b&&e.text_indent_phone&&""!==e.text_indent_phone&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent_phone,";"),device:"phone"}]),t}}],(a=[{key:"_renderText",value:function(){var e=this.props,t=void 0===e.text?"Icon List Item":e.text;return t?n.a.createElement("span",{className:"dsm_icon_list_text"},t):""}},{key:"_renderIcon",value:function(){var e=this.props,t=window.ET_Builder.API.Utils,r=void 0===e.font_icon?"P":e.font_icon;if("off"!==e.use_icon&&!e.image){var o=void 0!==e.font_icon__hover_enabled?e.font_icon__hover_enabled.split("|"):"";return"on"===o[0]&&"hover"===o[1]&&1===e.hover_enabled?n.a.createElement("span",{className:"dsm_icon_list_icon"},t.processFontIcon(e.font_icon__hover)):n.a.createElement("span",{className:"dsm_icon_list_icon"},t.processFontIcon(r))}}},{key:"render",value:function(){var e="on"===this.props.url_new_window?"_blank":"";return this.props.url?n.a.createElement(o.Fragment,null,n.a.createElement("a",{href:this.props.url,target:e},this._renderIcon(),this._renderText())):n.a.createElement(o.Fragment,null,this._renderIcon(),this._renderText())}}])&&i(r.prototype,a),c&&i(r,c),t}();Object.defineProperty(c,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_icon_list_child"}),t.a=c},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(92);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[],r=e.shapes_square_size_last_edited,o=r&&r.startsWith("on");if(t.push([{selector:"%%order_class%%",declaration:"margin-bottom: 0 !important;"}]),"triangle"!==e.shapes_type&&("square"===e.shapes_type&&(t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size,"px; width: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color)}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"circle"===e.shapes_type&&(t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size,"px; width: ").concat(e.shapes_square_size,"px; border-radius: 50%; background-color: ").concat(e.shape_color)}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}]))),"triangle"===e.shapes_type){t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"border-top-color: transparent !important;border-top-width: 0 !important;"}]);var n=parseFloat(e.shapes_square_size,10)/2;if(t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: 0; height: 0; border-left: ".concat(n,"px solid transparent; border-right: ").concat(n,"px solid transparent; border-bottom: ").concat(e.shapes_square_size,"px solid ").concat(e.shape_color,";")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var a=parseFloat(e.shapes_square_size_tablet,10)/2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: 0; height: 0; border-left: ".concat(a,"px solid transparent; border-right: ").concat(a,"px solid transparent; border-bottom: ").concat(e.shapes_square_size_tablet,"px solid ").concat(e.shape_color,";"),device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var i=parseFloat(e.shapes_square_size_phone,10)/2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: 0; height: 0; border-left: ".concat(i,"px solid transparent; border-right: ").concat(i,"px solid transparent; border-bottom: ").concat(e.shapes_square_size_phone,"px solid ").concat(e.shape_color,";"),device:"phone"}])}e.shapes_type&&t.push([{selector:"%%order_class%%",declaration:"height: ".concat(e.shapes_square_size,"px; width: ").concat(e.shapes_square_size,"px;")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])}if("rectangle"===e.shapes_type){var s=parseFloat(e.shapes_square_size,10)/2;if(t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(s,"px; background-color: ").concat(e.shape_color)}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var c=parseFloat(e.shapes_square_size_tablet,10)/2;t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(c,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var l=parseFloat(e.shapes_square_size_phone,10)/2;t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(l,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])}}if("oval"===e.shapes_type){var u=parseFloat(e.shapes_square_size,10)/2;if(t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(u,"px; border-radius: 50%; background-color: ").concat(e.shape_color)}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var d=parseFloat(e.shapes_square_size_tablet,10)/2;t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(d,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var p=parseFloat(e.shapes_square_size_phone,10)/2;t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(p,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])}}if("trapezoid"===e.shapes_type){t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"border-top-color: transparent !important;border-top-width: 0 !important;"}]);var _=parseFloat(e.shapes_square_size,10)/5,f=parseFloat(e.shapes_square_size,10)/5*2;if(t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: 0px; border-bottom: ").concat(f,"px solid ").concat(e.shape_color,";\n border-left: ").concat(_,"px solid transparent;\n border-right: ").concat(_,"px solid transparent;")}]),t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(f,"px;")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var h=parseFloat(e.shapes_square_size_tablet,10)/5,b=parseFloat(e.shapes_square_size_tablet,10)/5*2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size_tablet,"px; height: 0px; border-bottom: ").concat(b,"px solid ").concat(e.shape_color,";\n border-left: ").concat(h,"px solid transparent;\n border-right: ").concat(h,"px solid transparent;"),device:"tablet"}]),t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size_tablet,"px;height: ").concat(b,"px;"),device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var m=parseFloat(e.shapes_square_size_phone,10)/5,y=parseFloat(e.shapes_square_size_phone,10)/5*2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size_phone,"px; height: 0px; border-bottom: ").concat(y,"px solid ").concat(e.shape_color,";\n border-left: ").concat(m,"px solid transparent;\n border-right: ").concat(m,"px solid transparent;"),device:"phone"}]),t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size_phone,"px; height: ").concat(y,"px;"),device:"phone"}])}}if("parallelogram"===e.shapes_type){var v=parseFloat(e.shapes_square_size,10)/2;if(t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(v,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(v,"px; transform: skew(20deg); background-color: ").concat(e.shape_color)}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var g=parseFloat(e.shapes_square_size_tablet,10)/2;t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(g,"px;"),device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var w=parseFloat(e.shapes_square_size_phone,10)/2;t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(w,"px;"),device:"phone"}])}}if("diamond_square"===e.shapes_type&&(t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color)}]),t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px;")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"hexagon"===e.shapes_type){t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"border-width: 0 !important;"}]);var x=parseFloat(e.shapes_square_size,10)/2,k=parseFloat(e.shapes_square_size,10)/1.77,O=parseFloat(e.shapes_square_size,10)/4;if(t.push([{selector:"%%order_class%%",declaration:"margin: ".concat(O,"px 0 !important;")}]),t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(k,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"position: relative; width: ".concat(e.shapes_square_size,"px; height: ").concat(k,"px; background-color: ").concat(e.shape_color)}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:before",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(x,"px solid transparent;\n border-right: ").concat(x,"px solid transparent; bottom: 100%; border-bottom: ").concat(O,"px solid ").concat(e.shape_color,";")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:after",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(x,"px solid transparent;\n border-right: ").concat(x,"px solid transparent; top: 100%;\n width: 0; border-top: ").concat(O,"px solid ").concat(e.shape_color,";")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var S=parseFloat(e.shapes_square_size_tablet,10)/2,j=parseFloat(e.shapes_square_size_tablet,10)/1.77,E=parseFloat(e.shapes_square_size_tablet,10)/4;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"position: relative; width: ".concat(e.shapes_square_size_tablet,"px; height: ").concat(j,"px; background-color: ").concat(e.shape_color),device:"tablet"}]),t.push([{selector:"%%order_class%%",declaration:"margin: ".concat(E,"px 0 !important;"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:before",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(S,"px solid transparent;\n border-right: ").concat(S,"px solid transparent; bottom: 100%; border-bottom: ").concat(E,"px solid ").concat(e.shape_color,";"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:after",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(S,"px solid transparent;\n border-right: ").concat(S,"px solid transparent; top: 100%;\n width: 0; border-top: ").concat(E,"px solid ").concat(e.shape_color,";"),device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var P=parseFloat(e.shapes_square_size_phone,10)/2,z=parseFloat(e.shapes_square_size_phone,10)/1.77,C=parseFloat(e.shapes_square_size_phone,10)/4;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"position: relative; width: ".concat(e.shapes_square_size_phone,"px; height: ").concat(z,"px; background-color: ").concat(e.shape_color),device:"phone"}]),t.push([{selector:"%%order_class%%",declaration:"margin: ".concat(C,"px 0 !important;"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:before",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(P,"px solid transparent;\n border-right: ").concat(P,"px solid transparent; bottom: 100%; border-bottom: ").concat(C,"px solid ").concat(e.shape_color,";"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:after",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(P,"px solid transparent;\n border-right: ").concat(P,"px solid transparent; top: 100%;\n width: 0; border-top: ").concat(C,"px solid ").concat(e.shape_color,";"),device:"phone"}])}}return"blob_one"===e.shapes_type&&(t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_two"===e.shapes_type&&(t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_three"===e.shapes_type&&(t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_four"===e.shapes_type&&(t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_five"===e.shapes_type&&(t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_six"===e.shapes_type&&(t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_seven"===e.shapes_type&&(t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_eight"===e.shapes_type&&(t.push([{selector:"%%order_class%%",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px;")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%, %%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),t}}],(a=[{key:"_renderhexagon",value:function(){var e=this.props;if("hexagon"===e.shapes_type)return n.a.createElement("svg",{width:"175",height:"200"},n.a.createElement("polyline",{fill:e.shape_color,transform:"scale(1)",points:"87,0 174,50 174,150 87,200 0,150 0,50 87,0"}))}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm_shapes_wrapper dsm_shapes_".concat(e.shapes_type)}))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_shapes"}),t.a=l},function(e,t,r){"use strict";(function(e){var o=r(0),n=r.n(o),a=r(22),i=r.n(a),s=r(93);r.n(s);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 l(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function u(e,t){return!t||"object"!==c(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}var d=function(t){function r(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,r),u(this,(r.__proto__||Object.getPrototypeOf(r)).apply(this,arguments))}var a,s,c;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)}(r,o["Component"]),a=r,c=[{key:"css",value:function(e){var t=[];if("off"===e.no_overlay){var r=e.overlay_color_last_edited,o=r&&r.startsWith("on");e.overlay_color&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-overlay:hover",declaration:"background-color: ".concat(e.overlay_color,";")}]),e.overlay_color_tablet&&o&&e.overlay_color_tablet&&""!==e.overlay_color_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-overlay:hover",declaration:"background-color: ".concat(e.overlay_color_tablet,";"),device:"tablet"}]),e.overlay_color_phone&&o&&e.overlay_color_phone&&""!==e.overlay_color_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-overlay:hover",declaration:"background-color: ".concat(e.overlay_color_phone,";"),device:"phone"}]);var n=e.before_label_background_color_last_edited,a=n&&n.startsWith("on");e.before_label_background_color&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-before-label:before",declaration:"background-color: ".concat(e.before_label_background_color,";")}]),e.before_label_background_color_tablet&&a&&e.before_label_background_color_tablet&&""!==e.before_label_background_color_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-before-label:before",declaration:"background-color: ".concat(e.before_label_background_color_tablet,";"),device:"tablet"}]),e.before_label_background_color_phone&&a&&e.before_label_background_color_phone&&""!==e.before_label_background_color_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-before-label:before",declaration:"background-color: ".concat(e.before_label_background_color_phone,";"),device:"phone"}]);var i=e.after_label_background_color_last_edited,s=i&&i.startsWith("on");e.after_label_background_color&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-after-label:before",declaration:"background-color: ".concat(e.after_label_background_color,";")}]),e.after_label_background_color_tablet&&s&&e.after_label_background_color_tablet&&""!==e.after_label_background_color_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-after-label:before",declaration:"background-color: ".concat(e.after_label_background_color_tablet,";"),device:"tablet"}]),e.after_label_background_color_phone&&s&&e.after_label_background_color_phone&&""!==e.after_label_background_color_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-after-label:before",declaration:"background-color: ".concat(e.after_label_background_color_phone,";"),device:"phone"}])}var c=e.handle_border_color_last_edited,l=c&&c.startsWith("on");e.handle_border_color&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:after",declaration:"background-color: ".concat(e.handle_border_color,";")}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-color: ".concat(e.handle_border_color,";")}])),e.handle_border_color_tablet&&l&&e.handle_border_color_tablet&&""!==e.handle_border_color_tablet&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:after",declaration:"background-color: ".concat(e.handle_border_color_tablet,";"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-color: ".concat(e.handle_border_color_tablet,";"),device:"tablet"}])),e.handle_border_color_phone&&l&&e.handle_border_color_phone&&""!==e.handle_border_color_phone&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:after",declaration:"background-color: ".concat(e.handle_border_color_phone,";"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-color: ".concat(e.handle_border_color_phone,";"),device:"phone"}]));var u=e.handle_border_radius_last_edited,d=u&&u.startsWith("on");e.handle_border_radius&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-radius: ".concat(e.handle_border_radius,";")}]),e.handle_border_radius_tablet&&d&&e.handle_border_radius_tablet&&""!==e.handle_border_radius_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-radius: ".concat(e.handle_border_radius_tablet,";"),device:"tablet"}]),e.handle_border_radius_phone&&d&&e.handle_border_radius_phone&&""!==e.handle_border_radius_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-radius: ".concat(e.handle_border_radius_phone,";"),device:"phone"}]);var p=e.handle_background_color_last_edited,_=p&&p.startsWith("on");e.handle_background_color&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"background-color: ".concat(e.handle_background_color,";")}]),e.handle_background_color_tablet&&_&&e.handle_background_color_tablet&&""!==e.handle_background_color_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"background-color: ".concat(e.handle_background_color_tablet,";"),device:"tablet"}]),e.handle_background_color_phone&&_&&e.handle_background_color_phone&&""!==e.handle_background_color_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"background-color: ".concat(e.handle_background_color_phone,";"),device:"phone"}]);var f=e.handle_arrow_color_last_edited,h=f&&f.startsWith("on");return"vertical"===e.orientation?(e.handle_arrow_color&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-down-arrow",declaration:"border-top-color: ".concat(e.handle_arrow_color,";")}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-up-arrow",declaration:"border-bottom-color: ".concat(e.handle_arrow_color,";")}])),e.handle_arrow_color_tablet&&h&&e.handle_arrow_color_tablet&&""!==e.handle_arrow_color_tablet&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-down-arrow",declaration:"border-top-color: ".concat(e.handle_arrow_color_tablet,";"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-up-arrow",declaration:"border-bottom-color: ".concat(e.handle_arrow_color_tablet,";"),device:"tablet"}])),e.handle_arrow_color_phone&&h&&e.handle_arrow_color_phone&&""!==e.handle_arrow_color_phone&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-down-arrow",declaration:"border-top-color: ".concat(e.handle_arrow_color_phone,";"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-up-arrow",declaration:"border-bottom-color: ".concat(e.handle_arrow_color_phone,";"),device:"phone"}]))):(e.handle_arrow_color&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-left-arrow",declaration:"border-right-color: ".concat(e.handle_arrow_color,";")}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-right-arrow",declaration:"border-left-color: ".concat(e.handle_arrow_color,";")}])),e.handle_arrow_color_tablet&&h&&e.handle_arrow_color_tablet&&""!==e.handle_arrow_color_tablet&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-left-arrow",declaration:"border-right-color: ".concat(e.handle_arrow_color_tablet,";"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-right-arrow",declaration:"border-left-color: ".concat(e.handle_arrow_color_tablet,";"),device:"tablet"}])),e.handle_arrow_color_phone&&h&&e.handle_arrow_color_phone&&""!==e.handle_arrow_color_phone&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-left-arrow",declaration:"border-right-color: ".concat(e.handle_arrow_color_phone,";"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-right-arrow",declaration:"border-left-color: ".concat(e.handle_arrow_color_phone,";"),device:"phone"}])),e.handle_border_color&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after",declaration:"box-shadow: 0 -3px 0 ".concat(e.handle_border_color,", 0px 0px 12px rgba(51, 51, 51, 0.5);")}]),e.handle_border_color_tablet&&l&&e.handle_border_color_tablet&&""!==e.handle_border_color_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after",declaration:"box-shadow: 0 -3px 0 ".concat(e.handle_border_color_tablet,", 0px 0px 12px rgba(51, 51, 51, 0.5);"),device:"tablet"}]),e.handle_border_color_phone&&l&&e.handle_border_color_phone&&""!==e.handle_border_color_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after",declaration:"box-shadow: 0 -3px 0 ".concat(e.handle_border_color_phone,", 0px 0px 12px rgba(51, 51, 51, 0.5);"),device:"phone"}])),t}}],(s=[{key:"componentDidMount",value:function(){var t,r;t=function(){var e=Object.assign||window.jQuery&&i.a.extend,t=8,r=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(e,t){return window.setTimeout(function(){e()},25)};!function(){if("function"===typeof window.CustomEvent)return!1;function e(e,t){t=t||{bubbles:!1,cancelable:!1,detail:void 0};var r=document.createEvent("CustomEvent");return r.initCustomEvent(e,t.bubbles,t.cancelable,t.detail),r}e.prototype=window.Event.prototype,window.CustomEvent=e}();var o={textarea:!0,input:!0,select:!0,button:!0},n={move:"mousemove",cancel:"mouseup dragstart",end:"mouseup"},a={move:"touchmove",cancel:"touchend",end:"touchend"},s=/\s+/,c={bubbles:!0,cancelable:!0},l="function"===typeof Symbol?Symbol("events"):{};function u(e){return e[l]||(e[l]={})}function d(e,t,r,o,n){t=t.split(s);var a,i=u(e),c=t.length;function l(e){r(e,o)}for(;c--;)(i[a=t[c]]||(i[a]=[])).push([r,l]),e.addEventListener(a,l)}function p(e,t,r,o){t=t.split(s);var n,a,i,c=u(e),l=t.length;if(c)for(;l--;)if(a=c[n=t[l]])for(i=a.length;i--;)a[i][0]===r&&(e.removeEventListener(n,a[i][1]),a.splice(i,1))}function _(t,r,o){var n=function(e){return new CustomEvent(e,c)}(r);o&&e(n,o),t.dispatchEvent(n)}function f(){}function h(e){e.preventDefault()}function b(e,t){var r,o;if(e.identifiedTouch)return e.identifiedTouch(t);for(r=-1,o=e.length;++r<o;)if(e[r].identifier===t)return e[r]}function m(e,t){var r=b(e.changedTouches,t.identifier);if(r&&(r.pageX!==t.pageX||r.pageY!==t.pageY))return r}function y(e,t){x(e,t,e,g)}function v(e,t){g()}function g(){p(document,n.move,y),p(document,n.cancel,v)}function w(e){p(document,a.move,e.touchmove),p(document,a.cancel,e.touchend)}function x(e,r,o,n){var a=o.pageX-r.pageX,i=o.pageY-r.pageY;a*a+i*i<t*t||function(e,t,r,o,n,a){var i=e.targetTouches,s=e.timeStamp-t.timeStamp,c={altKey:e.altKey,ctrlKey:e.ctrlKey,shiftKey:e.shiftKey,startX:t.pageX,startY:t.pageY,distX:o,distY:n,deltaX:o,deltaY:n,pageX:r.pageX,pageY:r.pageY,velocityX:o/s,velocityY:n/s,identifier:t.identifier,targetTouches:i,finger:i?i.length:1,enableMove:function(){this.moveEnabled=!0,this.enableMove=f,e.preventDefault()}};_(t.target,"movestart",c),a(t)}(e,r,o,a,i,n)}function k(e,t){var r=t.timer;t.touch=e,t.timeStamp=e.timeStamp,r.kick()}function O(e,t){var r=t.target,o=t.event,a=t.timer;p(document,n.move,k),p(document,n.end,O),j(r,o,a,function(){setTimeout(function(){p(r,"click",h)},0)})}function S(e,t){var r=t.target,o=t.event,n=t.timer;b(e.changedTouches,o.identifier)&&(!function(e){p(document,a.move,e.activeTouchmove),p(document,a.end,e.activeTouchend)}(t),j(r,o,n))}function j(e,t,r,o){r.end(function(){return _(e,"moveend",t),o&&o()})}if(d(document,"mousedown",function(e){(function(e){return 1===e.which&&!e.ctrlKey&&!e.altKey})(e)&&(function(e){return!!o[e.target.tagName.toLowerCase()]}(e)||(d(document,n.move,y,e),d(document,n.cancel,v,e)))}),d(document,"touchstart",function(e){if(!o[e.target.tagName.toLowerCase()]){var t=e.changedTouches[0],r={target:t.target,pageX:t.pageX,pageY:t.pageY,identifier:t.identifier,touchmove:function(e,t){!function(e,t){var r=m(e,t);r&&x(e,t,r,w)}(e,t)},touchend:function(e,t){!function(e,t){b(e.changedTouches,t.identifier)&&w(t)}(e,t)}};d(document,a.move,r.touchmove,r),d(document,a.cancel,r.touchend,r)}}),d(document,"movestart",function(e){if(!e.defaultPrevented&&e.moveEnabled){var t={startX:e.startX,startY:e.startY,pageX:e.pageX,pageY:e.pageY,distX:e.distX,distY:e.distY,deltaX:e.deltaX,deltaY:e.deltaY,velocityX:e.velocityX,velocityY:e.velocityY,identifier:e.identifier,targetTouches:e.targetTouches,finger:e.finger},o={target:e.target,event:t,timer:new function(e){var t=e,o=!1,n=!1;function a(e){o?(t(),r(a),n=!0,o=!1):n=!1}this.kick=function(e){o=!0,n||a()},this.end=function(e){var r=t;e&&(n?(t=o?function(){r(),e()}:e,o=!0):e())}}(function(e){(function(e,t,r){var o=r-e.timeStamp;e.distX=t.pageX-e.startX,e.distY=t.pageY-e.startY,e.deltaX=t.pageX-e.pageX,e.deltaY=t.pageY-e.pageY,e.velocityX=.3*e.velocityX+.7*e.deltaX/o,e.velocityY=.3*e.velocityY+.7*e.deltaY/o,e.pageX=t.pageX,e.pageY=t.pageY})(t,o.touch,o.timeStamp),_(o.target,"move",t)}),touch:void 0,timeStamp:e.timeStamp};void 0===e.identifier?(d(e.target,"click",h),d(document,n.move,k,o),d(document,n.end,O,o)):(o.activeTouchmove=function(e,t){!function(e,t){var r=t.event,o=t.timer,n=m(e,r);n&&(e.preventDefault(),r.targetTouches=e.targetTouches,t.touch=n,t.timeStamp=e.timeStamp,o.kick())}(e,t)},o.activeTouchend=function(e,t){S(e,t)},d(document,a.move,o.activeTouchmove,o),d(document,a.end,o.activeTouchend,o))}}),window.jQuery){var E="startX startY pageX pageY distX distY deltaX deltaY velocityX velocityY".split(" ");i.a.event.special.movestart={setup:function(){return d(this,"movestart",P),!1},teardown:function(){return p(this,"movestart",P),!1},add:T},i.a.event.special.move={setup:function(){return d(this,"movestart",z),!1},teardown:function(){return p(this,"movestart",z),!1},add:T},i.a.event.special.moveend={setup:function(){return d(this,"movestart",C),!1},teardown:function(){return p(this,"movestart",C),!1},add:T}}function P(e){e.enableMove()}function z(e){e.enableMove()}function C(e){e.enableMove()}function T(e){var t=e.handler;e.handler=function(e){for(var r,o=E.length;o--;)e[r=E[o]]=e.originalEvent[r];t.apply(this,arguments)}}},"undefined"!==typeof e&&null!==e&&e.exports?e.exports=t:t(),(r=i.a).fn.twentytwenty=function(e){return e=r.extend({default_offset_pct:.5,orientation:"horizontal",before_label:"Before",after_label:"After",no_overlay:!1,move_slider_on_hover:!1,move_with_handle_only:!0,click_to_move:!1},e),this.each(function(){var t=e.default_offset_pct,o=r(this),n=e.orientation,a="vertical"===n?"down":"left",i="vertical"===n?"up":"right";if(!e.no_overlay){o.children(".dsm-before-after-image-slider-overlay").length||o.append("<div class='dsm-before-after-image-slider-overlay'></div>");var s=o.find(".dsm-before-after-image-slider-overlay");s.children(".dsm-before-after-image-slider-before-label").length||s.append("<div class='dsm-before-after-image-slider-before-label' data-content='"+e.before_label+"'></div>"),s.children(".dsm-before-after-image-slider-after-label").length||s.append("<div class='dsm-before-after-image-slider-after-label' data-content='"+e.after_label+"'></div>")}var c=o.find("img:first"),l=o.find("img:last");o.children(".dsm-before-after-image-slider-handle").length||o.append("<div class='dsm-before-after-image-slider-handle'></div>");var u=o.find(".dsm-before-after-image-slider-handle");u.children(".dsm-before-after-image-slider-"+a+"-arrow").length||u.append("<span class='dsm-before-after-image-slider-"+a+"-arrow'></span>"),u.children(".dsm-before-after-image-slider-"+i+"-arrow").length||u.append("<span class='dsm-before-after-image-slider-"+i+"-arrow'></span>"),o.addClass("dsm-before-after-image-slider-container"),c.addClass("dsm-before-after-image-slider-before"),l.addClass("dsm-before-after-image-slider-after");var d=function(e){var t,r,a,i=(t=e,r=c.width(),a=c.height(),{w:r+"px",h:a+"px",cw:t*r+"px",ch:t*a+"px"});u.css("vertical"===n?"top":"left","vertical"===n?i.ch:i.cw),function(e){"vertical"===n?(c.css("clip","rect(0,"+e.w+","+e.ch+",0)"),l.css("clip","rect("+e.ch+","+e.w+","+e.h+",0)")):(c.css("clip","rect(0,"+e.cw+","+e.h+",0)"),l.css("clip","rect(0,"+e.w+","+e.h+","+e.cw+")")),o.css("height",e.h)}(i)},p=function(e,t){var r,o,a;return r="vertical"===n?(t-f)/b:(e-_)/h,o=0,a=1,Math.max(o,Math.min(a,r))};r(window).on("resize.twentytwenty",function(e){d(t)});var _=0,f=0,h=0,b=0,m=function(e){(e.distX>e.distY&&e.distX<-e.distY||e.distX<e.distY&&e.distX>-e.distY)&&"vertical"!==n?e.preventDefault():(e.distX<e.distY&&e.distX<-e.distY||e.distX>e.distY&&e.distX>-e.distY)&&"vertical"===n&&e.preventDefault(),o.addClass("active"),_=o.offset().left,f=o.offset().top,h=c.width(),b=c.height()},y=function(e){o.hasClass("active")&&(t=p(e.pageX,e.pageY),d(t))},v=function(){o.removeClass("active")},g=e.move_with_handle_only?u:o;g.on("movestart",m),g.on("move",y),g.on("moveend",v),!0===e.move_slider_on_hover?(o.on("mouseenter",m),o.on("mousemove",y),o.on("mouseleave",v)):o.unbind("mouseenter mousemove mouseleave"),u.on("touchmove",function(e){e.preventDefault()}),o.find("img").on("mousedown",function(e){e.preventDefault()}),!0===e.click_to_move?o.on("click",function(e){_=o.offset().left,f=o.offset().top,h=c.width(),b=c.height(),t=p(e.pageX,e.pageY),d(t)}):o.unbind("click"),r(window).trigger("resize.twentytwenty")})}}},{key:"componentDidUpdate",value:function(e){var t=this.props,r=this.refs.init;e.orientation!==this.props.orientation&&i()(r).find(".dsm-before-after-image-slider-handle").remove(),"on"===t.no_overlay&&i()(r).find(".dsm-before-after-image-slider-overlay").remove(),e.before_label_text!==this.props.before_label_text&&i()(r).find(".dsm-before-after-image-slider-before-label").attr("data-content",this.props.before_label_text),e.after_label_text!==this.props.after_label_text&&i()(r).find(".dsm-before-after-image-slider-after-label").attr("data-content",this.props.after_label_text),i()(r).twentytwenty({default_offset_pct:this.props.default_offset_pct,orientation:this.props.orientation,before_label:this.props.before_label_text,after_label:this.props.after_label_text,no_overlay:"on"===this.props.no_overlay,move_slider_on_hover:"on"===this.props.move_slider_on_hover,move_with_handle_only:"on"===this.props.move_with_handle_only,click_to_move:"on"===this.props.click_to_move})}},{key:"renderBeforeImage",value:function(){var e=this.props;if(e.before_src)return n.a.createElement("img",{src:e.before_src,alt:e.before_alt,title:e.before_title_text})}},{key:"renderAfterImage",value:function(){var e=this.props;if(e.after_src)return n.a.createElement("img",{src:e.after_src,alt:e.after_alt,title:e.after_title_text})}},{key:"render",value:function(){var e=this.props;return n.a.createElement("div",{className:"dsm-before-after-image-slider-wrapper dsm-before-after-image-slider-".concat(e.orientation)},n.a.createElement("div",{ref:"init",className:"dsm_before_after_image_wrapper"},this.renderBeforeImage(),this.renderAfterImage()))}}])&&l(a.prototype,s),c&&l(a,c),r}();Object.defineProperty(d,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_before_after_image"}),t.a=d}).call(t,r(333)(e))},function(e,t){e.exports=function(e){if(!e.webpackPolyfill){var t=Object.create(e);t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),Object.defineProperty(t,"exports",{enumerable:!0}),t.webpackPolyfill=1}return t}}]);
|
1 |
+
!function(e){var t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,r),n.l=!0,n.exports}r.m=e,r.c=t,r.d=function(e,t,o){r.o(e,t)||Object.defineProperty(e,t,{configurable:!1,enumerable:!0,get:o})},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=142)}([function(e,t){e.exports=React},function(e,t,r){"use strict";t.__esModule=!0,t.default=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}},function(e,t,r){"use strict";t.__esModule=!0;var o,n=r(112),a=(o=n)&&o.__esModule?o:{default:o};t.default=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==("undefined"===typeof t?"undefined":(0,a.default)(t))&&"function"!==typeof t?e:t}},function(e,t,r){"use strict";t.__esModule=!0;var o=i(r(193)),n=i(r(197)),a=i(r(112));function i(e){return e&&e.__esModule?e:{default:e}}t.default=function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+("undefined"===typeof t?"undefined":(0,a.default)(t)));e.prototype=(0,n.default)(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(o.default?(0,o.default)(e,t):e.__proto__=t)}},function(e,t,r){"use strict";t.__esModule=!0;var o,n=r(201),a=(o=n)&&o.__esModule?o:{default:o};t.default=a.default||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e}},function(e,t){var r=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=r)},function(e,t,r){var o=r(64)("wks"),n=r(39),a=r(5).Symbol,i="function"==typeof a;(e.exports=function(e){return o[e]||(o[e]=i&&a[e]||(i?a:n)("Symbol."+e))}).store=o},function(e,t){var r=e.exports={version:"2.6.11"};"number"==typeof __e&&(__e=r)},function(e,t,r){"use strict";t.__esModule=!0,t.default=void 0;var o,n,a=d(r(1)),i=d(r(2)),s=d(r(3)),c=r(0),l=d(c),u=d(r(25));function d(e){return e&&e.__esModule?e:{default:e}}var p=(n=o=function(e){function t(){var r,o,n;(0,a.default)(this,t);for(var s=arguments.length,c=Array(s),l=0;l<s;l++)c[l]=arguments[l];return r=o=(0,i.default)(this,e.call.apply(e,[this].concat(c))),o.state={},o.handleReady=function(e){o.setState({api:e},o.handleParse)},o.handleContainer=function(e){o.setState({container:e},o.handleParse)},o.handleParse=function(){var e=o.state,t=e.api,r=e.container;t&&r&&t.parse(r)},n=r,(0,i.default)(o,n)}return(0,s.default)(t,e),t.prototype.render=function(){var e=this.props,t=e.className,r=e.children;return l.default.createElement("div",{className:t,ref:this.handleContainer},l.default.createElement(u.default,{onReady:this.handleReady},r({handleParse:this.handleParse})))},t}(c.Component),o.defaultProps={className:void 0},n);t.default=p},function(e,t,r){e.exports=r(155)},function(e,t,r){"use strict";t.__esModule=!0;var o,n=r(157),a=(o=n)&&o.__esModule?o:{default:o};t.default=function(e){return function(){var t=e.apply(this,arguments);return new a.default(function(e,r){return function o(n,i){try{var s=t[n](i),c=s.value}catch(e){return void r(e)}if(!s.done)return a.default.resolve(c).then(function(e){o("next",e)},function(e){o("throw",e)});e(c)}("next")})}}},function(e,t,r){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(122),a="object"==("undefined"===typeof self?"undefined":o(self))&&self&&self.Object===Object&&self,i=n||a||Function("return this")();e.exports=i},function(e,t,r){var o=r(14);e.exports=function(e){if(!o(e))throw TypeError(e+" is not an object!");return e}},function(e,t,r){var o=r(5),n=r(7),a=r(31),i=r(18),s=r(20),c=function e(t,r,c){var l,u,d,p=t&e.F,_=t&e.G,f=t&e.S,h=t&e.P,b=t&e.B,m=t&e.W,y=_?n:n[r]||(n[r]={}),v=y.prototype,g=_?o:f?o[r]:(o[r]||{}).prototype;for(l in _&&(c=r),c)(u=!p&&g&&void 0!==g[l])&&s(y,l)||(d=u?g[l]:c[l],y[l]=_&&"function"!=typeof g[l]?c[l]:b&&u?a(d,o):m&&g[l]==d?function(e){var t=function(t,r,o){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,r)}return new e(t,r,o)}return e.apply(this,arguments)};return t.prototype=e.prototype,t}(d):h&&"function"==typeof d?a(Function.call,d):d,h&&((y.virtual||(y.virtual={}))[l]=d,t&e.R&&v&&!v[l]&&i(v,l,d)))};c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return"object"===r(e)?null!==e:"function"===typeof e}},function(e,t,r){e.exports=!r(32)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t,r){"use strict";t.__esModule=!0,t.default=function(){if(!a.default)return"https://www.facebook.com";return window.location.href};var o,n=r(115),a=(o=n)&&o.__esModule?o:{default:o}},function(e,t,r){e.exports=r(211)()},function(e,t,r){var o=r(19),n=r(37);e.exports=r(15)?function(e,t,r){return o.f(e,t,n(1,r))}:function(e,t,r){return e[t]=r,e}},function(e,t,r){var o=r(12),n=r(100),a=r(61),i=Object.defineProperty;t.f=r(15)?Object.defineProperty:function(e,t,r){if(o(e),t=a(t,!0),o(r),n)try{return i(e,t,r)}catch(e){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(e[t]=r.value),e}},function(e,t){var r={}.hasOwnProperty;e.exports=function(e,t){return r.call(e,t)}},function(e,t,r){var o=r(253),n=r(259);e.exports=function(e,t){var r=n(e,t);return o(r)?r:void 0}},function(e,t){e.exports=jQuery},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t,r){var o=r(103),n=r(59);e.exports=function(e){return o(n(e))}},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=f(r(4)),i=f(r(9)),s=f(r(10)),c=f(r(1)),l=f(r(2)),u=f(r(3)),d=r(0),p=f(d),_=r(96);function f(e){return e&&e.__esModule?e:{default:e}}var h=(n=o=function(e){function t(){return(0,c.default)(this,t),(0,l.default)(this,e.apply(this,arguments))}return(0,u.default)(t,e),t.prototype.componentDidMount=function(){this.prepare()},t.prototype.prepare=function(){var e=(0,s.default)(i.default.mark(function e(){var t,r,o,n;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t=this.props,r=t.onReady,o=t.handleInit,e.next=3,o();case 3:n=e.sent,r&&r(n);case 5:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),t.prototype.render=function(){var e=this.props,t=e.children,r=e.isReady,o=e.api;return"function"===typeof t?t({isReady:r,api:o}):t},t}(d.Component),o.defaultProps={onReady:void 0,api:void 0},n);t.default=(0,d.forwardRef)(function(e,t){return p.default.createElement(_.FacebookContext.Consumer,null,function(r){var o=r.handleInit,n=r.isReady,i=r.api;return p.default.createElement(h,(0,a.default)({},e,{handleInit:o,isReady:n,api:i,ref:t}))})})},function(e,t,r){var o=r(241);e.exports=function(e,t){return o(e,t)}},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){return null!=e&&"object"==r(e)}},function(e,t,r){var o=r(294),n=1,a=4;e.exports=function(e){return o(e,n|a)}},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=s(r(0)),i=s(r(17));function s(e){return e&&e.__esModule?e:{default:e}}function c(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var l=function(e){function t(){var e,o,n;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var a=arguments.length,i=Array(a),s=0;s<a;s++)i[s]=arguments[s];return o=n=c(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(i))),n.loadWidget=function(){r(141).ready("twitter-widgets",function(){window.twttr?(t.removeChildren(n.widgetWrapper),n.props.ready(window.twttr,n.widgetWrapper,n.done)):console.error("Failure to load window.twttr, aborting load.")})},n.done=function(){n.willUnmount&&t.removeChildrenExceptLast(n.widgetWrapper)},c(n,o)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"componentWillMount",value:function(){this.willUnmount=!1}},{key:"componentDidMount",value:function(){this.loadWidget()}},{key:"componentDidUpdate",value:function(){this.loadWidget()}},{key:"componentWillUnmount",value:function(){this.willUnmount=!0}},{key:"render",value:function(){var e=this;return a.default.createElement("div",{ref:function(t){e.widgetWrapper=t}})}}],[{key:"removeChildren",value:function(e){if(e)for(;e.firstChild;)e.removeChild(e.firstChild)}},{key:"removeChildrenExceptLast",value:function(e){if(e)for(;e.childNodes.length>1;)e.removeChild(e.firstChild)}}]),t}();l.propTypes={ready:i.default.func.isRequired},t.default=l},function(e,t){e.exports=!0},function(e,t,r){var o=r(36);e.exports=function(e,t,r){if(o(e),void 0===t)return e;switch(r){case 1:return function(r){return e.call(t,r)};case 2:return function(r,o){return e.call(t,r,o)};case 3:return function(r,o,n){return e.call(t,r,o,n)}}return function(){return e.apply(t,arguments)}}},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){e.exports={}},function(e,t){var r={}.toString;e.exports=function(e){return r.call(e).slice(8,-1)}},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){var t=r(e);return null!=e&&("object"==t||"function"==t)}},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,r){var o=r(102),n=r(65);e.exports=Object.keys||function(e){return o(e,n)}},function(e,t){var r=0,o=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++r+o).toString(36))}},function(e,t,r){var o=r(19).f,n=r(20),a=r(6)("toStringTag");e.exports=function(e,t,r){e&&!n(e=r?e:e.prototype,a)&&o(e,a,{configurable:!0,value:t})}},function(e,t){t.f={}.propertyIsEnumerable},function(e,t,r){"use strict";t.__esModule=!0,t.default=void 0;var o=d(r(9)),n=d(r(10)),a=d(r(1)),i=d(r(2)),s=d(r(3)),c=r(0),l=d(c),u=d(r(25));function d(e){return e&&e.__esModule?e:{default:e}}var p=function(e){function t(){var r,s,c,l,u=this;(0,a.default)(this,t);for(var d=arguments.length,p=Array(d),_=0;_<d;_++)p[_]=arguments[_];return r=s=(0,i.default)(this,e.call.apply(e,[this].concat(p))),s.state={api:void 0},s.handleProcess=(l=(0,n.default)(o.default.mark(function e(t){var r,n;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(s.setState({data:void 0,error:void 0,loading:!0}),e.prev=1,r=s.state.api){e.next=5;break}throw new Error("Facebook is not initialized. Wait for isReady");case 5:return e.next=7,t(r);case 7:return n=e.sent,s.setState({data:n,loading:!1}),e.abrupt("return",n);case 12:throw e.prev=12,e.t0=e.catch(1),s.setState({error:e.t0,loading:!1}),e.t0;case 16:case"end":return e.stop()}},e,u,[[1,12]])})),function(e){return l.apply(this,arguments)}),s.handleReady=function(e){s.setState({api:e})},c=r,(0,i.default)(s,c)}return(0,s.default)(t,e),t.prototype.render=function(){var e=this.props.children,t=this.state,r=t.api,o=t.loading,n=t.data,a=t.error;return l.default.createElement(u.default,{onReady:this.handleReady},e({loading:!r||o,handleProcess:this.handleProcess,data:n,error:a}))},t}(c.Component);t.default=p},function(e,t,r){var o=r(243),n=r(244),a=r(245),i=r(246),s=r(247);function c(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var o=e[t];this.set(o[0],o[1])}}c.prototype.clear=o,c.prototype.delete=n,c.prototype.get=a,c.prototype.has=i,c.prototype.set=s,e.exports=c},function(e,t,r){var o=r(78);e.exports=function(e,t){for(var r=e.length;r--;)if(o(e[r][0],t))return r;return-1}},function(e,t,r){var o=r(46),n=r(255),a=r(256),i="[object Null]",s="[object Undefined]",c=o?o.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?s:i:c&&c in Object(e)?n(e):a(e)}},function(e,t,r){var o=r(11).Symbol;e.exports=o},function(e,t,r){var o=r(21)(Object,"create");e.exports=o},function(e,t,r){var o=r(268);e.exports=function(e,t){var r=e.__data__;return o(t)?r["string"==typeof t?"string":"hash"]:r.map}},function(e,t){var r=Array.isArray;e.exports=r},function(e,t,r){var o=r(290),n=r(79),a=r(291),i=r(292),s=r(293),c=r(45),l=r(123),u=l(o),d=l(n),p=l(a),_=l(i),f=l(s),h=c;(o&&"[object DataView]"!=h(new o(new ArrayBuffer(1)))||n&&"[object Map]"!=h(new n)||a&&"[object Promise]"!=h(a.resolve())||i&&"[object Set]"!=h(new i)||s&&"[object WeakMap]"!=h(new s))&&(h=function(e){var t=c(e),r="[object Object]"==t?e.constructor:void 0,o=r?l(r):"";if(o)switch(o){case u:return"[object DataView]";case d:return"[object Map]";case p:return"[object Promise]";case _:return"[object Set]";case f:return"[object WeakMap]"}return t}),e.exports=h},function(e,t,r){var o=r(136),n=r(137);e.exports=function(e,t,r,a){var i=!r;r||(r={});for(var s=-1,c=t.length;++s<c;){var l=t[s],u=a?a(r[l],e[l],l,r,e):void 0;void 0===u&&(u=e[l]),i?n(r,l,u):o(r,l,u)}return r}},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){var r=Math.ceil,o=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?o:r)(e)}},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},function(e,t,r){var o=r(14),n=r(5).document,a=o(n)&&o(n.createElement);e.exports=function(e){return a?n.createElement(e):{}}},function(e,t,r){var o=r(14);e.exports=function(e,t){if(!o(e))return e;var r,n;if(t&&"function"==typeof(r=e.toString)&&!o(n=r.call(e)))return n;if("function"==typeof(r=e.valueOf)&&!o(n=r.call(e)))return n;if(!t&&"function"==typeof(r=e.toString)&&!o(n=r.call(e)))return n;throw TypeError("Can't convert object to primitive value")}},function(e,t,r){var o=r(12),n=r(161),a=r(65),i=r(63)("IE_PROTO"),s=function(){},c=function(){var e,t=r(60)("iframe"),o=a.length;for(t.style.display="none",r(105).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write("<script>document.F=Object<\/script>"),e.close(),c=e.F;o--;)delete c.prototype[a[o]];return c()};e.exports=Object.create||function(e,t){var r;return null!==e?(s.prototype=o(e),r=new s,s.prototype=null,r[i]=e):r=c(),void 0===t?r:n(r,t)}},function(e,t,r){var o=r(64)("keys"),n=r(39);e.exports=function(e){return o[e]||(o[e]=n(e))}},function(e,t,r){var o=r(7),n=r(5),a=n["__core-js_shared__"]||(n["__core-js_shared__"]={});(e.exports=function(e,t){return a[e]||(a[e]=void 0!==t?t:{})})("versions",[]).push({version:o.version,mode:r(30)?"pure":"global",copyright:"\xa9 2019 Denis Pushkarev (zloirock.ru)"})},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,r){var o=r(59);e.exports=function(e){return Object(o(e))}},function(e,t,r){"use strict";var o=r(36);e.exports.f=function(e){return new function(e){var t,r;this.promise=new e(function(e,o){if(void 0!==t||void 0!==r)throw TypeError("Bad Promise constructor");t=e,r=o}),this.resolve=o(t),this.reject=o(r)}(e)}},function(e,t,r){t.f=r(6)},function(e,t,r){var o=r(5),n=r(7),a=r(30),i=r(68),s=r(19).f;e.exports=function(e){var t=n.Symbol||(n.Symbol=a?{}:o.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:i.f(e)})}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,r){"use strict";t.__esModule=!0,t.default={CONNECTED:"connected",AUTHORIZATION_EXPIRED:"authorization_expired",NOT_AUTHORIZED:"not_authorized",UNKNOWN:"unknown"}},function(e,t,r){"use strict";t.__esModule=!0,t.default=function(e){if(!e)return e;var t={};return Object.keys(e).forEach(function(r){var o=e[r];void 0!==o&&(t[r]=o)}),t}},function(e,t,r){"use strict";t.__esModule=!0,t.default=["id","first_name","last_name","middle_name","name","name_format","picture","short_name","email"]},function(e,t,r){"use strict";t.__esModule=!0,t.default=void 0;var o,n,a,i=f(r(9)),s=f(r(10)),c=f(r(1)),l=f(r(2)),u=f(r(3)),d=r(0),p=f(d),_=f(r(25));function f(e){return e&&e.__esModule?e:{default:e}}var h=(n=o=function(e){function t(){var r,o,n;(0,c.default)(this,t);for(var i=arguments.length,s=Array(i),u=0;u<i;u++)s[u]=arguments[u];return r=o=(0,l.default)(this,e.call.apply(e,[this].concat(s))),a.call(o),n=r,(0,l.default)(o,n)}return(0,u.default)(t,e),t.prototype.componentWillUnmount=function(){var e=this.state.api,t=this.props.event;e&&e.unsubscribe(t,this.handleChange)},t.prototype.render=function(){var e=this.props.children;return p.default.createElement(_.default,{onReady:this.handleReady},e)},t}(d.Component),o.defaultProps={onChange:void 0},a=function(){var e,t=this;this.state={},this.handleReady=(e=(0,s.default)(i.default.mark(function e(r){var o;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return o=t.props.event,t.setState({api:r}),e.next=4,r.subscribe(o,t.handleChange);case 4:case"end":return e.stop()}},e,t)})),function(t){return e.apply(this,arguments)}),this.handleChange=function(){var e=t.props.onChange;e&&e.apply(void 0,arguments)}},n);t.default=h},function(e,t){},function(e,t){},function(e,t){},function(e,t){e.exports=function(e,t){return e===t||e!==e&&t!==t}},function(e,t,r){var o=r(21)(r(11),"Map");e.exports=o},function(e,t,r){var o=r(281),n=r(130),a=Object.prototype.propertyIsEnumerable,i=Object.getOwnPropertySymbols,s=i?function(e){return null==e?[]:(e=Object(e),o(i(e),function(t){return a.call(e,t)}))}:n;e.exports=s},function(e,t,r){var o=r(131),n=r(288),a=r(135);e.exports=function(e){return a(e)?o(e):n(e)}},function(e,t,r){(function(e){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(11),a=r(285),i="object"==o(t)&&t&&!t.nodeType&&t,s=i&&"object"==o(e)&&e&&!e.nodeType&&e,c=s&&s.exports===i?n.Buffer:void 0,l=(c?c.isBuffer:void 0)||a;e.exports=l}).call(t,r(23)(e))},function(e,t){e.exports=function(e){return function(t){return e(t)}}},function(e,t,r){(function(e){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(122),a="object"==o(t)&&t&&!t.nodeType&&t,i=a&&"object"==o(e)&&e&&!e.nodeType&&e,s=i&&i.exports===a&&n.process,c=function(){try{var e=i&&i.require&&i.require("util").types;return e||s&&s.binding&&s.binding("util")}catch(e){}}();e.exports=c}).call(t,r(23)(e))},function(e,t){var r=Object.prototype;e.exports=function(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||r)}},function(e,t,r){var o=r(126);e.exports=function(e){var t=new e.constructor(e.byteLength);return new o(t).set(new o(e)),t}},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){},function(e,t){e.exports=ReactDOM},function(e,t,r){"use strict";t.__esModule=!0,t.Fields=t.LoginStatus=t.MessengerColor=t.MessengerSize=t.CommentsOrderBy=t.LikeAction=t.ColorScheme=t.LikeLayout=t.LikeSize=t.SendToMessenger=t.MessengerCheckbox=t.MessageUs=t.CustomChat=t.Profile=t.Status=t.Subscribe=t.Group=t.Feed=t.CommentsCount=t.Comments=t.EmbeddedVideo=t.EmbeddedPost=t.LoginButton=t.Login=t.Page=t.ShareButton=t.Share=t.Send=t.Like=t.Initialize=t.Parser=t.FacebookProvider=void 0;var o=N(r(96)),n=N(r(8)),a=N(r(25)),i=N(r(205)),s=N(r(206)),c=N(r(116)),l=N(r(207)),u=N(r(208)),d=N(r(118)),p=N(r(209)),_=N(r(214)),f=N(r(215)),h=N(r(216)),b=N(r(217)),m=N(r(218)),y=N(r(219)),v=N(r(74)),g=N(r(220)),w=N(r(221)),x=N(r(222)),k=N(r(223)),O=N(r(224)),S=N(r(225)),j=N(r(226)),E=N(r(227)),P=N(r(228)),z=N(r(229)),C=N(r(230)),T=N(r(231)),q=N(r(232)),M=N(r(71)),I=N(r(73));function N(e){return e&&e.__esModule?e:{default:e}}t.FacebookProvider=o.default,t.Parser=n.default,t.Initialize=a.default,t.Like=i.default,t.Send=s.default,t.Share=c.default,t.ShareButton=l.default,t.Page=u.default,t.Login=d.default,t.LoginButton=p.default,t.EmbeddedPost=_.default,t.EmbeddedVideo=f.default,t.Comments=h.default,t.CommentsCount=b.default,t.Feed=m.default,t.Group=y.default,t.Subscribe=v.default,t.Status=g.default,t.Profile=w.default,t.CustomChat=x.default,t.MessageUs=k.default,t.MessengerCheckbox=O.default,t.SendToMessenger=S.default,t.LikeSize=j.default,t.LikeLayout=E.default,t.ColorScheme=P.default,t.LikeAction=z.default,t.CommentsOrderBy=C.default,t.MessengerSize=T.default,t.MessengerColor=q.default,t.LoginStatus=M.default,t.Fields=I.default},function(e,t,r){"use strict";t.__esModule=!0,t.default=t.FacebookContext=void 0;var o,n,a=f(r(9)),i=f(r(10)),s=f(r(1)),c=f(r(2)),l=f(r(3)),u=r(0),d=f(u),p=f(r(115)),_=f(r(200));function f(e){return e&&e.__esModule?e:{default:e}}var h=t.FacebookContext=(0,u.createContext)(),b=null,m=(n=o=function(e){function t(){var r,o,n,l=this;(0,s.default)(this,t);for(var u=arguments.length,d=Array(u),f=0;f<u;f++)d[f]=arguments[f];return r=o=(0,c.default)(this,e.call.apply(e,[this].concat(d))),o.state={isReady:!1},o.handleInit=(0,i.default)(a.default.mark(function e(){var t,r,n,i,s,c,u,d,f,h;return a.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(p.default){e.next=2;break}throw new Error("You can not use Facebook without DOM");case 2:if(!o.state.isReady){e.next=5;break}return e.abrupt("return",b);case 5:return b||(t=o.props,r=t.domain,n=t.version,i=t.appId,s=t.cookie,c=t.status,u=t.xfbml,d=t.language,f=t.frictionlessRequests,h=t.wait,b=new _.default({domain:r,appId:i,version:n,cookie:s,status:c,xfbml:u,language:d,frictionlessRequests:f,wait:h})),e.next=8,b.init();case 8:return o.state.isReady||o.setState({isReady:!0}),e.abrupt("return",b);case 10:case"end":return e.stop()}},e,l)})),n=r,(0,c.default)(o,n)}return(0,l.default)(t,e),t.prototype.componentDidMount=function(){this.props.wait||this.handleInit()},t.prototype.render=function(){var e=this.props.children,t=this.state,r={isReady:t.isReady,error:t.error,handleInit:this.handleInit,api:b};return d.default.createElement(h.Provider,{value:r},e)},t}(u.Component),o.defaultProps={version:"v3.1",cookie:!1,status:!1,xfbml:!1,language:"en_US",frictionlessRequests:!1,domain:"connect.facebook.net",children:void 0,wait:!1},n);t.default=m},function(e,t){},function(e,t,r){"use strict";var o=r(159)(!0);r(99)(String,"String",function(e){this._t=String(e),this._i=0},function(){var e,t=this._t,r=this._i;return r>=t.length?{value:void 0,done:!0}:(e=o(t,r),this._i+=e.length,{value:e,done:!1})})},function(e,t,r){"use strict";var o=r(30),n=r(13),a=r(101),i=r(18),s=r(33),c=r(160),l=r(40),u=r(164),d=r(6)("iterator"),p=!([].keys&&"next"in[].keys()),_=function(){return this};e.exports=function(e,t,r,f,h,b,m){c(r,t,f);var y,v,g,w=function(e){if(!p&&e in S)return S[e];switch(e){case"keys":case"values":return function(){return new r(this,e)}}return function(){return new r(this,e)}},x=t+" Iterator",k="values"==h,O=!1,S=e.prototype,j=S[d]||S["@@iterator"]||h&&S[h],E=j||w(h),P=h?k?w("entries"):E:void 0,z="Array"==t&&S.entries||j;if(z&&(g=u(z.call(new e)))!==Object.prototype&&g.next&&(l(g,x,!0),o||"function"==typeof g[d]||i(g,d,_)),k&&j&&"values"!==j.name&&(O=!0,E=function(){return j.call(this)}),o&&!m||!p&&!O&&S[d]||i(S,d,E),s[t]=E,s[x]=_,h)if(y={values:k?E:w("values"),keys:b?E:w("keys"),entries:P},m)for(v in y)v in S||a(S,v,y[v]);else n(n.P+n.F*(p||O),t,y);return y}},function(e,t,r){e.exports=!r(15)&&!r(32)(function(){return 7!=Object.defineProperty(r(60)("div"),"a",{get:function(){return 7}}).a})},function(e,t,r){e.exports=r(18)},function(e,t,r){var o=r(20),n=r(24),a=r(162)(!1),i=r(63)("IE_PROTO");e.exports=function(e,t){var r,s=n(e),c=0,l=[];for(r in s)r!=i&&o(s,r)&&l.push(r);for(;t.length>c;)o(s,r=t[c++])&&(~a(l,r)||l.push(r));return l}},function(e,t,r){var o=r(34);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==o(e)?e.split(""):Object(e)}},function(e,t,r){var o=r(58),n=Math.min;e.exports=function(e){return e>0?n(o(e),9007199254740991):0}},function(e,t,r){var o=r(5).document;e.exports=o&&o.documentElement},function(e,t,r){r(165);for(var o=r(5),n=r(18),a=r(33),i=r(6)("toStringTag"),s="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),c=0;c<s.length;c++){var l=s[c],u=o[l],d=u&&u.prototype;d&&!d[i]&&n(d,i,l),a[l]=a.Array}},function(e,t,r){var o=r(34),n=r(6)("toStringTag"),a="Arguments"==o(function(){return arguments}());e.exports=function(e){var t,r,i;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(r=function(e,t){try{return e[t]}catch(e){}}(t=Object(e),n))?r:a?o(t):"Object"==(i=o(t))&&"function"==typeof t.callee?"Arguments":i}},function(e,t,r){var o=r(12),n=r(36),a=r(6)("species");e.exports=function(e,t){var r,i=o(e).constructor;return void 0===i||void 0==(r=o(i)[a])?t:n(r)}},function(e,t,r){var o,n,a,i=r(31),s=r(174),c=r(105),l=r(60),u=r(5),d=u.process,p=u.setImmediate,_=u.clearImmediate,f=u.MessageChannel,h=u.Dispatch,b=0,m={},y=function(){var e=+this;if(m.hasOwnProperty(e)){var t=m[e];delete m[e],t()}},v=function(e){y.call(e.data)};p&&_||(p=function(e){for(var t=[],r=1;arguments.length>r;)t.push(arguments[r++]);return m[++b]=function(){s("function"==typeof e?e:Function(e),t)},o(b),b},_=function(e){delete m[e]},"process"==r(34)(d)?o=function(e){d.nextTick(i(y,e,1))}:h&&h.now?o=function(e){h.now(i(y,e,1))}:f?(a=(n=new f).port2,n.port1.onmessage=v,o=i(a.postMessage,a,1)):u.addEventListener&&"function"==typeof postMessage&&!u.importScripts?(o=function(e){u.postMessage(e+"","*")},u.addEventListener("message",v,!1)):o="onreadystatechange"in l("script")?function(e){c.appendChild(l("script")).onreadystatechange=function(){c.removeChild(this),y.call(e)}}:function(e){setTimeout(i(y,e,1),0)}),e.exports={set:p,clear:_}},function(e,t){e.exports=function(e){try{return{e:!1,v:e()}}catch(e){return{e:!0,v:e}}}},function(e,t,r){var o=r(12),n=r(14),a=r(67);e.exports=function(e,t){if(o(e),n(t)&&t.constructor===e)return t;var r=a.f(e);return(0,r.resolve)(t),r.promise}},function(e,t,r){"use strict";function o(e){return(o="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)}t.__esModule=!0;var n=s(r(182)),a=s(r(184)),i="function"===typeof a.default&&"symbol"===o(n.default)?function(e){return o(e)}:function(e){return e&&"function"===typeof a.default&&e.constructor===a.default&&e!==a.default.prototype?"symbol":o(e)};function s(e){return e&&e.__esModule?e:{default:e}}t.default="function"===typeof a.default&&"symbol"===i(n.default)?function(e){return"undefined"===typeof e?"undefined":i(e)}:function(e){return e&&"function"===typeof a.default&&e.constructor===a.default&&e!==a.default.prototype?"symbol":"undefined"===typeof e?"undefined":i(e)}},function(e,t,r){var o=r(102),n=r(65).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return o(e,n)}},function(e,t,r){var o=r(41),n=r(37),a=r(24),i=r(61),s=r(20),c=r(100),l=Object.getOwnPropertyDescriptor;t.f=r(15)?l:function(e,t){if(e=a(e),t=i(t,!0),c)try{return l(e,t)}catch(e){}if(s(e,t))return n(!o.f.call(e,t),e[t])}},function(e,t){var r=!("undefined"===typeof window||!window.document||!window.document.createElement);e.exports=r},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=b(r(4)),i=b(r(9)),s=b(r(10)),c=b(r(1)),l=b(r(2)),u=b(r(3)),d=r(0),p=b(d),_=b(r(16)),f=b(r(72)),h=b(r(42));function b(e){return e&&e.__esModule?e:{default:e}}var m=(n=o=function(e){function t(){var r,o,n,a,u=this;(0,c.default)(this,t);for(var d=arguments.length,p=Array(d),h=0;h<d;h++)p[h]=arguments[h];return r=o=(0,l.default)(this,e.call.apply(e,[this].concat(p))),o.handleClick=(a=(0,s.default)(i.default.mark(function e(t){var r;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t.preventDefault(),r=o.props.handleProcess,e.abrupt("return",r(function(){var e=(0,s.default)(i.default.mark(function e(t){var r,n,a,s,c,l,d,p,h,b;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return r=o.props,n=r.href,a=void 0===n?(0,_.default)():n,s=r.display,c=r.appId,l=void 0===c?t.getAppId():c,d=r.hashtag,p=r.redirectURI,h=r.quote,b=r.mobileIframe,e.abrupt("return",t.ui((0,f.default)({method:"share",href:a,display:s,app_id:l,hashtag:d,redirect_uri:p,quote:h,mobile_iframe:b})));case 2:case"end":return e.stop()}},e,u)}));return function(t){return e.apply(this,arguments)}}()));case 3:case"end":return e.stop()}},e,u)})),function(e){return a.apply(this,arguments)}),n=r,(0,l.default)(o,n)}return(0,u.default)(t,e),t.prototype.render=function(){var e=this.props,t=e.children,r=e.loading,o=e.error,n=e.data;return t({loading:r,handleClick:this.handleClick,error:o,data:n})},t}(d.Component),o.defaultProps={href:void 0,hashtag:void 0,quote:void 0,mobileIframe:void 0,display:void 0,appId:void 0,redirectURI:void 0},n);t.default=(0,d.forwardRef)(function(e,t){return p.default.createElement(h.default,null,function(r){var o=r.loading,n=r.handleProcess,i=r.data,s=r.error;return p.default.createElement(m,(0,a.default)({},e,{loading:o,handleProcess:n,data:i,error:s,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0,t.default=function(e,t){var r={};for(var o in e)t.indexOf(o)>=0||Object.prototype.hasOwnProperty.call(e,o)&&(r[o]=e[o]);return r}},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=h(r(9)),i=h(r(4)),s=h(r(10)),c=h(r(1)),l=h(r(2)),u=h(r(3)),d=r(0),p=h(d),_=h(r(42)),f=h(r(73));function h(e){return e&&e.__esModule?e:{default:e}}var b=(n=o=function(e){function t(){var r,o,n,u,d=this;(0,c.default)(this,t);for(var p=arguments.length,_=Array(p),f=0;f<p;f++)_[f]=arguments[f];return r=o=(0,l.default)(this,e.call.apply(e,[this].concat(_))),o.handleClick=(u=(0,s.default)(a.default.mark(function e(t){var r,n,c,l;return a.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t.preventDefault(),r=o.props,n=r.handleProcess,c=r.onCompleted,l=r.onError,e.prev=2,e.next=5,n(function(){var e=(0,s.default)(a.default.mark(function e(t){var r,n,s,l,u,p,_,f,h,b;return a.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return r=o.props,n=r.scope,s=r.fields,l=r.returnScopes,u=r.rerequest,p=r.reauthorize,_=r.eventKey,f={scope:n},h=[],l&&(f.return_scopes=!0),u&&h.push("rerequest"),p&&h.push("reauthenticate"),h.length&&(f.auth_type=h.join(",")),e.next=9,t.login(f);case 9:if("connected"===e.sent.status){e.next=12;break}throw new Error("Unauthorized user");case 12:return e.next=14,t.getTokenDetailWithProfile({fields:s});case 14:if(b=e.sent,!c){e.next=18;break}return e.next=18,c((0,i.default)({},b,{eventKey:_}));case 18:return e.abrupt("return",b);case 19:case"end":return e.stop()}},e,d)}));return function(t){return e.apply(this,arguments)}}());case 5:e.next=10;break;case 7:e.prev=7,e.t0=e.catch(2),l&&l(e.t0);case 10:case"end":return e.stop()}},e,d,[[2,7]])})),function(e){return u.apply(this,arguments)}),n=r,(0,l.default)(o,n)}return(0,u.default)(t,e),t.prototype.render=function(){var e=this.props,t=e.children,r=e.loading,o=e.error,n=e.data;return t({loading:r,handleClick:this.handleClick,error:o,data:n})},t}(d.Component),o.defaultProps={scope:"",fields:f.default,returnScopes:!1,rerequest:!1,reauthorize:!1,onCompleted:void 0,onError:void 0,eventKey:void 0},n);t.default=(0,d.forwardRef)(function(e,t){return p.default.createElement(_.default,null,function(r){var o=r.loading,n=r.handleProcess,a=r.data,s=r.error;return p.default.createElement(b,(0,i.default)({},e,{loading:o,handleProcess:n,data:a,error:s,ref:t}))})})},function(e,t){(function(t){e.exports=t}).call(t,{})},function(e,t,r){var o=r(43),n=r(248),a=r(249),i=r(250),s=r(251),c=r(252);function l(e){var t=this.__data__=new o(e);this.size=t.size}l.prototype.clear=n,l.prototype.delete=a,l.prototype.get=i,l.prototype.has=s,l.prototype.set=c,e.exports=l},function(e,t,r){var o=r(45),n=r(35),a="[object AsyncFunction]",i="[object Function]",s="[object GeneratorFunction]",c="[object Proxy]";e.exports=function(e){if(!n(e))return!1;var t=o(e);return t==i||t==s||t==a||t==c}},function(e,t,r){(function(t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o="object"==("undefined"===typeof t?"undefined":r(t))&&t&&t.Object===Object&&t;e.exports=o}).call(t,r(254))},function(e,t){var r=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return r.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},function(e,t,r){var o=r(260),n=r(267),a=r(269),i=r(270),s=r(271);function c(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var o=e[t];this.set(o[0],o[1])}}c.prototype.clear=o,c.prototype.delete=n,c.prototype.get=a,c.prototype.has=i,c.prototype.set=s,e.exports=c},function(e,t,r){var o=r(272),n=r(275),a=r(276),i=1,s=2;e.exports=function(e,t,r,c,l,u){var d=r&i,p=e.length,_=t.length;if(p!=_&&!(d&&_>p))return!1;var f=u.get(e);if(f&&u.get(t))return f==t;var h=-1,b=!0,m=r&s?new o:void 0;for(u.set(e,t),u.set(t,e);++h<p;){var y=e[h],v=t[h];if(c)var g=d?c(v,y,h,t,e,u):c(y,v,h,e,t,u);if(void 0!==g){if(g)continue;b=!1;break}if(m){if(!n(t,function(e,t){if(!a(m,t)&&(y===e||l(y,e,r,c,u)))return m.push(t)})){b=!1;break}}else if(y!==v&&!l(y,v,r,c,u)){b=!1;break}}return u.delete(e),u.delete(t),b}},function(e,t,r){var o=r(11).Uint8Array;e.exports=o},function(e,t,r){var o=r(128),n=r(80),a=r(81);e.exports=function(e){return o(e,a,n)}},function(e,t,r){var o=r(129),n=r(49);e.exports=function(e,t,r){var a=t(e);return n(e)?a:o(a,r(e))}},function(e,t){e.exports=function(e,t){for(var r=-1,o=t.length,n=e.length;++r<o;)e[n+r]=t[r];return e}},function(e,t){e.exports=function(){return[]}},function(e,t,r){var o=r(282),n=r(283),a=r(49),i=r(82),s=r(286),c=r(132),l=Object.prototype.hasOwnProperty;e.exports=function(e,t){var r=a(e),u=!r&&n(e),d=!r&&!u&&i(e),p=!r&&!u&&!d&&c(e),_=r||u||d||p,f=_?o(e.length,String):[],h=f.length;for(var b in e)!t&&!l.call(e,b)||_&&("length"==b||d&&("offset"==b||"parent"==b)||p&&("buffer"==b||"byteLength"==b||"byteOffset"==b)||s(b,h))||f.push(b);return f}},function(e,t,r){var o=r(287),n=r(83),a=r(84),i=a&&a.isTypedArray,s=i?n(i):o;e.exports=s},function(e,t){var r=9007199254740991;e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=r}},function(e,t){e.exports=function(e,t){return function(r){return e(t(r))}}},function(e,t,r){var o=r(121),n=r(133);e.exports=function(e){return null!=e&&n(e.length)&&!o(e)}},function(e,t,r){var o=r(137),n=r(78),a=Object.prototype.hasOwnProperty;e.exports=function(e,t,r){var i=e[t];a.call(e,t)&&n(i,r)&&(void 0!==r||t in e)||o(e,t,r)}},function(e,t,r){var o=r(296);e.exports=function(e,t,r){"__proto__"==t&&o?o(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}},function(e,t,r){var o=r(131),n=r(299),a=r(135);e.exports=function(e){return a(e)?o(e,!0):n(e)}},function(e,t,r){var o=r(129),n=r(140),a=r(80),i=r(130),s=Object.getOwnPropertySymbols?function(e){for(var t=[];e;)o(t,a(e)),e=n(e);return t}:i;e.exports=s},function(e,t,r){var o=r(134)(Object.getPrototypeOf,Object);e.exports=o},function(e,t,r){var o,n,a;a=function(){var e,t,r=document,o=r.getElementsByTagName("head")[0],n=!1,a="push",i="readyState",s="onreadystatechange",c={},l={},u={},d={};function p(e,t){for(var r=0,o=e.length;r<o;++r)if(!t(e[r]))return n;return 1}function _(e,t){p(e,function(e){return t(e),1})}function f(t,r,o){t=t[a]?t:[t];var n=r&&r.call,i=n?r:o,s=n?t.join(""):r,b=t.length;function m(e){return e.call?e():c[e]}function y(){if(!--b)for(var e in c[s]=1,i&&i(),u)p(e.split("|"),m)&&!_(u[e],m)&&(u[e]=[])}return setTimeout(function(){_(t,function t(r,o){return null===r?y():(o||/^https?:\/\//.test(r)||!e||(r=-1===r.indexOf(".js")?e+r+".js":e+r),d[r]?(s&&(l[s]=1),2==d[r]?y():setTimeout(function(){t(r,!0)},0)):(d[r]=1,s&&(l[s]=1),void h(r,y)))})},0),f}function h(e,n){var a,c=r.createElement("script");c.onload=c.onerror=c[s]=function(){c[i]&&!/^c|loade/.test(c[i])||a||(c.onload=c[s]=null,a=1,d[e]=2,n())},c.async=1,c.src=t?e+(-1===e.indexOf("?")?"?":"&")+t:e,o.insertBefore(c,o.lastChild)}return f.get=h,f.order=function(e,t,r){!function o(n){n=e.shift(),e.length?f(n,o):f(n,t,r)}()},f.path=function(t){e=t},f.urlArgs=function(e){t=e},f.ready=function(e,t,r){var o,n=[];return!_(e=e[a]?e:[e],function(e){c[e]||n[a](e)})&&p(e,function(e){return c[e]})?t():(o=e.join("|"),u[o]=u[o]||[],u[o][a](t),r&&r(n)),f},f.done=function(e){f([null],e)},f},"undefined"!=typeof e&&e.exports?e.exports=a():void 0===(n="function"===typeof(o=a)?o.call(t,r,t,e):o)||(e.exports=n)},function(e,t,r){r(143),e.exports=r(144)},function(e,t,r){"use strict"},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=r(22),n=r.n(o),a=r(145);n()(window).on("et_builder_api_ready",function(e,t){t.registerModules(a.a)})},function(e,t,r){"use strict";var o=r(146),n=r(147),a=r(148),i=r(150),s=r(151),c=r(152),l=r(153),u=r(154),d=r(233),p=r(234),_=r(235),f=r(236),h=r(237),b=r(323),m=r(324),y=r(325),v=r(326),g=r(327),w=r(328),x=r(329),k=r(330),O=r(331),S=r(332);t.a=[S.a,O.a,x.a,k.a,o.a,n.a,a.a,i.a,s.a,c.a,l.a,u.a,d.a,p.a,_.a,f.a,h.a,b.a,m.a,y.a,v.a,g.a,w.a]},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(52);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];t.push([{selector:"%%order_class%% .dsm_flipbox_child",declaration:"transition: transform ".concat(e.flipbox_speed," ease-in-out;")}]);var r=e.flipbox_height_last_edited,o=r&&r.startsWith("on");return e.flipbox_height&&t.push([{selector:"%%order_class%% .dsm-flipbox",declaration:"height: ".concat(e.flipbox_height,";")}]),e.flipbox_height_tablet&&o&&e.flipbox_height_tablet&&""!==e.flipbox_height_tablet&&t.push([{selector:"%%order_class%% .dsm-flipbox",declaration:"height: ".concat(e.flipbox_height_tablet,";"),device:"tablet"}]),e.flipbox_height_phone&&o&&e.flipbox_height_phone&&""!==e.flipbox_height_phone&&t.push([{selector:"%%order_class%% .dsm-flipbox",declaration:"height: ".concat(e.flipbox_height_phone,";"),device:"phone"}]),t}}],(a=[{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm-flipbox et_pb_bg_layout_".concat(e.background_layout," dsm-flipbox-effect-").concat(e.flipbox_effect)},this.props.content))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_flipbox"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o);function a(e){return(a="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 o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function s(e,t){return!t||"object"!==a(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}var c=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[];"on"===e.use_icon&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"color: #7EBEC5"}]),"#7EBEC5"!==e.icon_color&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"color: ".concat(e.icon_color)}]),"on"===e.use_circle&&e.circle_color&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"background-color: ".concat(e.circle_color)}]),"on"===e.use_circle_border&&e.circle_border_color&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"border-color: ".concat(e.circle_border_color)}]),"on"===e.use_icon_font_size&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"font-size: ".concat(e.icon_font_size)}]),"on"===e.use_icon_font_size&&e.icon_font_size_tablet&&t.push([{selector:".et_fb_preview_active.et_fb_preview_active--responsive_preview.et_fb_preview_active--responsive_preview--tablet_preview %%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"font-size: ".concat(e.icon_font_size_tablet)}]),"on"===e.use_icon_font_size&&e.icon_font_size_phone&&t.push([{selector:".et_fb_preview_active.et_fb_preview_active--responsive_preview.et_fb_preview_active--responsive_preview--phone_preview %%order_class%% .dsm_flipbox_child_image .et-pb-icon",declaration:"font-size: ".concat(e.icon_font_size_phone)}]);var r=e.image_max_width_last_edited&&e.image_max_width_last_edited.startsWith("on"),o=e.image_max_width,n=r&&e.image_max_width_tablet?e.image_max_width_tablet:o,a=r&&e.image_max_width_phone?e.image_max_width_phone:n;(e.image_max_width&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .dsm_flipbox_child_image_wrap img",declaration:"max-width: ".concat(o)}]),e.image_max_width_tablet&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .dsm_flipbox_child_image_wrap img",declaration:"max-width: ".concat(n),device:"tablet"}]),e.image_max_width_phone&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image .dsm_flipbox_child_image_wrap img",declaration:"max-width: ".concat(a),device:"phone"}]),"center"!==e.content_orientation&&t.push([{selector:"%%order_class%%",declaration:"align-items: ".concat(e.content_orientation,";")}]),e.image)&&("svg"===e.image.substr(e.image.lastIndexOf(".")+1)&&t.push([{selector:"%%order_class%% .dsm_flipbox_child_image",declaration:"width: 100%;"}]));return t}}],(a=[{key:"_renderTitle",value:function(){var e=this.props,t=""===e.header_level?"h4":"".concat(e.header_level);return e.title?void 0===e.header_level?n.a.createElement(o.Fragment,null,n.a.createElement("h4",{className:"dsm-title et_pb_module_header"},e.title)):n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-title et_pb_module_header"},e.title)):""}},{key:"_renderIcon",value:function(){var e=this.props,t=window.ET_Builder.API.Utils;if(("off"!==e.use_icon||!e.image)&&e.use_icon&&"off"!==e.use_icon)return n.a.createElement("div",{className:"dsm_flipbox_child_image"},n.a.createElement("span",{className:"dsm_flipbox_child_image_wrap"},n.a.createElement("span",{className:"et-pb-icon".concat("on"===this.props.use_circle?" et-pb-icon-circle":"").concat("on"===this.props.use_circle_border?" et-pb-icon-circle-border":"")},t.processFontIcon(e.font_icon))))}},{key:"_renderImage",value:function(){var e=this.props;return!e.image||"on"===e.use_icon&&e.image?"":n.a.createElement("div",{className:"dsm_flipbox_child_image"},n.a.createElement("span",{className:"dsm_flipbox_child_image_wrap"},n.a.createElement("img",{src:"".concat(e.image),alt:"".concat(e.alt)})))}},{key:"_renderButton",value:function(){var e=this.props,t=window.ET_Builder.API.Utils,r="on"===e.url_new_window?"_blank":"",o=!!e.button_icon&&t.processFontIcon(e.button_icon),a={et_pb_button:!0,et_pb_more_button:!0,et_pb_custom_button_icon:e.button_icon};return e.button_text&&e.button_url?n.a.createElement("div",{className:"et_pb_button_wrapper"},n.a.createElement("a",{className:t.classnames(a),href:e.button_url,target:r,rel:t.linkRel(e.button_rel),"data-icon":o},e.button_text)):""}},{key:"render",value:function(){var e=this.props,t=e.text_orientation?e.text_orientation:"left";return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm_flipbox_icon_position_".concat(e.icon_placement," et_pb_bg_layout_").concat(e.background_layout)},this._renderIcon(),this._renderImage(),n.a.createElement("div",{className:"dsm_flipbox_wrapper et_pb_text_align_".concat(t)},this._renderTitle(),n.a.createElement("span",{className:"dsm-subtitle"},this.props.subtitle),n.a.createElement("div",{className:"dsm-content"},this.props.content()),this._renderButton())))}}])&&i(r.prototype,a),c&&i(r,c),t}();Object.defineProperty(c,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_flipbox_child"}),t.a=c},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(149),i=r.n(a);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 c(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function l(e,t){return!t||"object"!==s(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}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),l(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,s;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,o["Component"]),r=t,s=[{key:"css",value:function(e){var t=[];return e.typing_cursor_color&&t.push([{selector:"%%order_class%% .typed-cursor",declaration:"color: ".concat(e.typing_cursor_color,";")}]),t}}],(a=[{key:"_renderTitleLoop",value:function(){var e=this.props,t=""===e.header_level?"h1":"".concat(e.header_level),r=e.typing_effect.split("|"),a=parseFloat(e.typing_speed),s=parseFloat(e.typing_backspeed),c=parseFloat(e.typing_backdelay);return e.typing_effect&&"off"!==e.typing_loop?"on"===e.typing_loop?n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-typing-effect et_pb_module_header"},n.a.createElement(i.a,{strings:r,typeSpeed:a,backSpeed:s,backDelay:c,contentType:null,className:"dsm-typing",loop:!0}))):void 0:""}},{key:"_renderTitleNoLoop",value:function(){var e=this.props,t=""===e.header_level?"h1":"".concat(e.header_level),r=e.typing_effect.split("|"),a=parseFloat(e.typing_speed),s=parseFloat(e.typing_backspeed),c=parseFloat(e.typing_backdelay);return e.typing_effect&&"on"!==e.typing_loop?"off"===e.typing_loop?n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-typing-effect et_pb_module_header"},n.a.createElement(i.a,{strings:r,typeSpeed:a,backSpeed:s,backDelay:c,contentType:null,className:"dsm-typing dsm-typing-no-loop"}))):void 0:""}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"et_pb_bg_layout_".concat(e.background_layout)},this._renderTitleNoLoop(),this._renderTitleLoop()))}}])&&c(r.prototype,a),s&&c(r,s),t}();Object.defineProperty(u,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_typing_effect"}),t.a=u},function(e,t,r){(function(e){var o,n,a,i;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)}i=function(e){return function(e){var t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={i:o,l:!1,exports:{}};return e[o].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=e,r.c=t,r.d=function(e,t,o){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==s(e)&&e&&e.__esModule)return e;var o=Object.create(null);if(r.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)r.d(o,n,function(t){return e[t]}.bind(null,n));return o},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=5)}([function(e,t,r){var o=r(3);e.exports=r(8)(o.isElement,!0)},function(t,r){t.exports=e},function(e,t,r){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,r){"use strict";e.exports=r(7)},function(e,t,r){var o;o=function(){return function(e){var t={};function r(o){if(t[o])return t[o].exports;var n=t[o]={exports:{},id:o,loaded:!1};return e[o].call(n.exports,n,n.exports,r),n.loaded=!0,n.exports}return r.m=e,r.c=t,r.p="",r(0)}([function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),n=r(1),a=r(3),i=function(){function e(t,r){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),n.initializer.load(this,r,t),this.begin()}return o(e,[{key:"toggle",value:function(){this.pause.status?this.start():this.stop()}},{key:"stop",value:function(){this.typingComplete||this.pause.status||(this.toggleBlinking(!0),this.pause.status=!0,this.options.onStop(this.arrayPos,this))}},{key:"start",value:function(){this.typingComplete||this.pause.status&&(this.pause.status=!1,this.pause.typewrite?this.typewrite(this.pause.curString,this.pause.curStrPos):this.backspace(this.pause.curString,this.pause.curStrPos),this.options.onStart(this.arrayPos,this))}},{key:"destroy",value:function(){this.reset(!1),this.options.onDestroy(this)}},{key:"reset",value:function(){var e=arguments.length<=0||void 0===arguments[0]||arguments[0];clearInterval(this.timeout),this.replaceText(""),this.cursor&&this.cursor.parentNode&&(this.cursor.parentNode.removeChild(this.cursor),this.cursor=null),this.strPos=0,this.arrayPos=0,this.curLoop=0,e&&(this.insertCursor(),this.options.onReset(this),this.begin())}},{key:"begin",value:function(){var e=this;this.typingComplete=!1,this.shuffleStringsIfNeeded(this),this.insertCursor(),this.bindInputFocusEvents&&this.bindFocusEvents(),this.timeout=setTimeout(function(){e.currentElContent&&0!==e.currentElContent.length?e.backspace(e.currentElContent,e.currentElContent.length):e.typewrite(e.strings[e.sequence[e.arrayPos]],e.strPos)},this.startDelay)}},{key:"typewrite",value:function(e,t){var r=this;this.fadeOut&&this.el.classList.contains(this.fadeOutClass)&&(this.el.classList.remove(this.fadeOutClass),this.cursor&&this.cursor.classList.remove(this.fadeOutClass));var o=this.humanizer(this.typeSpeed),n=1;!0!==this.pause.status?this.timeout=setTimeout(function(){t=a.htmlParser.typeHtmlChars(e,t,r);var o=0,i=e.substr(t);if("^"===i.charAt(0)&&/^\^\d+/.test(i)){var s=1;s+=(i=/\d+/.exec(i)[0]).length,o=parseInt(i),r.temporaryPause=!0,r.options.onTypingPaused(r.arrayPos,r),e=e.substring(0,t)+e.substring(t+s),r.toggleBlinking(!0)}if("`"===i.charAt(0)){for(;"`"!==e.substr(t+n).charAt(0)&&!(t+ ++n>e.length););var c=e.substring(0,t),l=e.substring(c.length+1,t+n),u=e.substring(t+n+1);e=c+l+u,n--}r.timeout=setTimeout(function(){r.toggleBlinking(!1),t>=e.length?r.doneTyping(e,t):r.keepTyping(e,t,n),r.temporaryPause&&(r.temporaryPause=!1,r.options.onTypingResumed(r.arrayPos,r))},o)},o):this.setPauseStatus(e,t,!0)}},{key:"keepTyping",value:function(e,t,r){0===t&&(this.toggleBlinking(!1),this.options.preStringTyped(this.arrayPos,this)),t+=r;var o=e.substr(0,t);this.replaceText(o),this.typewrite(e,t)}},{key:"doneTyping",value:function(e,t){var r=this;this.options.onStringTyped(this.arrayPos,this),this.toggleBlinking(!0),this.arrayPos===this.strings.length-1&&(this.complete(),!1===this.loop||this.curLoop===this.loopCount)||(this.timeout=setTimeout(function(){r.backspace(e,t)},this.backDelay))}},{key:"backspace",value:function(e,t){var r=this;if(!0!==this.pause.status){if(this.fadeOut)return this.initFadeOut();this.toggleBlinking(!1);var o=this.humanizer(this.backSpeed);this.timeout=setTimeout(function(){t=a.htmlParser.backSpaceHtmlChars(e,t,r);var o=e.substr(0,t);if(r.replaceText(o),r.smartBackspace){var n=r.strings[r.arrayPos+1];n&&o===n.substr(0,t)?r.stopNum=t:r.stopNum=0}t>r.stopNum?(t--,r.backspace(e,t)):t<=r.stopNum&&(r.arrayPos++,r.arrayPos===r.strings.length?(r.arrayPos=0,r.options.onLastStringBackspaced(),r.shuffleStringsIfNeeded(),r.begin()):r.typewrite(r.strings[r.sequence[r.arrayPos]],t))},o)}else this.setPauseStatus(e,t,!0)}},{key:"complete",value:function(){this.options.onComplete(this),this.loop?this.curLoop++:this.typingComplete=!0}},{key:"setPauseStatus",value:function(e,t,r){this.pause.typewrite=r,this.pause.curString=e,this.pause.curStrPos=t}},{key:"toggleBlinking",value:function(e){this.cursor&&(this.pause.status||this.cursorBlinking!==e&&(this.cursorBlinking=e,e?this.cursor.classList.add("typed-cursor--blink"):this.cursor.classList.remove("typed-cursor--blink")))}},{key:"humanizer",value:function(e){return Math.round(Math.random()*e/2)+e}},{key:"shuffleStringsIfNeeded",value:function(){this.shuffle&&(this.sequence=this.sequence.sort(function(){return Math.random()-.5}))}},{key:"initFadeOut",value:function(){var e=this;return this.el.className+=" "+this.fadeOutClass,this.cursor&&(this.cursor.className+=" "+this.fadeOutClass),setTimeout(function(){e.arrayPos++,e.replaceText(""),e.strings.length>e.arrayPos?e.typewrite(e.strings[e.sequence[e.arrayPos]],0):(e.typewrite(e.strings[0],0),e.arrayPos=0)},this.fadeOutDelay)}},{key:"replaceText",value:function(e){this.attr?this.el.setAttribute(this.attr,e):this.isInput?this.el.value=e:"html"===this.contentType?this.el.innerHTML=e:this.el.textContent=e}},{key:"bindFocusEvents",value:function(){var e=this;this.isInput&&(this.el.addEventListener("focus",function(t){e.stop()}),this.el.addEventListener("blur",function(t){e.el.value&&0!==e.el.value.length||e.start()}))}},{key:"insertCursor",value:function(){this.showCursor&&(this.cursor||(this.cursor=document.createElement("span"),this.cursor.className="typed-cursor",this.cursor.innerHTML=this.cursorChar,this.el.parentNode&&this.el.parentNode.insertBefore(this.cursor,this.el.nextSibling)))}}]),e}();t.default=i,e.exports=t.default},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o,n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(e[o]=r[o])}return e},a=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),i=(o=r(2))&&o.__esModule?o:{default:o},s=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}return a(e,[{key:"load",value:function(e,t,r){if(e.el="string"==typeof r?document.querySelector(r):r,e.options=n({},i.default,t),e.isInput="input"===e.el.tagName.toLowerCase(),e.attr=e.options.attr,e.bindInputFocusEvents=e.options.bindInputFocusEvents,e.showCursor=!e.isInput&&e.options.showCursor,e.cursorChar=e.options.cursorChar,e.cursorBlinking=!0,e.elContent=e.attr?e.el.getAttribute(e.attr):e.el.textContent,e.contentType=e.options.contentType,e.typeSpeed=e.options.typeSpeed,e.startDelay=e.options.startDelay,e.backSpeed=e.options.backSpeed,e.smartBackspace=e.options.smartBackspace,e.backDelay=e.options.backDelay,e.fadeOut=e.options.fadeOut,e.fadeOutClass=e.options.fadeOutClass,e.fadeOutDelay=e.options.fadeOutDelay,e.isPaused=!1,e.strings=e.options.strings.map(function(e){return e.trim()}),"string"==typeof e.options.stringsElement?e.stringsElement=document.querySelector(e.options.stringsElement):e.stringsElement=e.options.stringsElement,e.stringsElement){e.strings=[],e.stringsElement.style.display="none";var o=Array.prototype.slice.apply(e.stringsElement.children),a=o.length;if(a)for(var s=0;s<a;s+=1){var c=o[s];e.strings.push(c.innerHTML.trim())}}for(var s in e.strPos=0,e.arrayPos=0,e.stopNum=0,e.loop=e.options.loop,e.loopCount=e.options.loopCount,e.curLoop=0,e.shuffle=e.options.shuffle,e.sequence=[],e.pause={status:!1,typewrite:!0,curString:"",curStrPos:0},e.typingComplete=!1,e.strings)e.sequence[s]=s;e.currentElContent=this.getCurrentElContent(e),e.autoInsertCss=e.options.autoInsertCss,this.appendAnimationCss(e)}},{key:"getCurrentElContent",value:function(e){return e.attr?e.el.getAttribute(e.attr):e.isInput?e.el.value:"html"===e.contentType?e.el.innerHTML:e.el.textContent}},{key:"appendAnimationCss",value:function(e){if(e.autoInsertCss&&(e.showCursor||e.fadeOut)&&!document.querySelector("[data-typed-js-css]")){var t=document.createElement("style");t.type="text/css",t.setAttribute("data-typed-js-css",!0);var r="";e.showCursor&&(r+="\n .typed-cursor{\n opacity: 1;\n }\n .typed-cursor.typed-cursor--blink{\n animation: typedjsBlink 0.7s infinite;\n -webkit-animation: typedjsBlink 0.7s infinite;\n animation: typedjsBlink 0.7s infinite;\n }\n @keyframes typedjsBlink{\n 50% { opacity: 0.0; }\n }\n @-webkit-keyframes typedjsBlink{\n 0% { opacity: 1; }\n 50% { opacity: 0.0; }\n 100% { opacity: 1; }\n }\n "),e.fadeOut&&(r+="\n .typed-fade-out{\n opacity: 0;\n transition: opacity .25s;\n }\n .typed-cursor.typed-cursor--blink.typed-fade-out{\n -webkit-animation: 0;\n animation: 0;\n }\n "),0!==t.length&&(t.innerHTML=r,document.body.appendChild(t))}}}]),e}();t.default=s;var c=new s;t.initializer=c},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default={strings:["These are the default values...","You know what you should do?","Use your own!","Have a great day!"],stringsElement:null,typeSpeed:0,startDelay:0,backSpeed:0,smartBackspace:!0,shuffle:!1,backDelay:700,fadeOut:!1,fadeOutClass:"typed-fade-out",fadeOutDelay:500,loop:!1,loopCount:1/0,showCursor:!0,cursorChar:"|",autoInsertCss:!0,attr:null,bindInputFocusEvents:!1,contentType:"html",onComplete:function(e){},preStringTyped:function(e,t){},onStringTyped:function(e,t){},onLastStringBackspaced:function(e){},onTypingPaused:function(e,t){},onTypingResumed:function(e,t){},onReset:function(e){},onStop:function(e,t){},onStart:function(e,t){},onDestroy:function(e){}},e.exports=t.default},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),o=function(){function e(){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e)}return r(e,[{key:"typeHtmlChars",value:function(e,t,r){if("html"!==r.contentType)return t;var o=e.substr(t).charAt(0);if("<"===o||"&"===o){var n;for(n="<"===o?">":";";e.substr(t+1).charAt(0)!==n&&!(++t+1>e.length););t++}return t}},{key:"backSpaceHtmlChars",value:function(e,t,r){if("html"!==r.contentType)return t;var o=e.substr(t).charAt(0);if(">"===o||";"===o){var n;for(n=">"===o?"<":"&";e.substr(t-1).charAt(0)!==n&&!(--t<0););t--}return t}}]),e}();t.default=o;var n=new o;t.htmlParser=n}])},e.exports=o()},function(e,t,r){"use strict";r.r(t);var o=r(1),n=r.n(o),a=r(0),i=r.n(a),c=r(4),l=r.n(c);function u(e){return(u="function"==typeof Symbol&&"symbol"==s(Symbol.iterator)?function(e){return s(e)}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":s(e)})(e)}function d(e,t){if(null==e)return{};var r,o,n=function(e,t){if(null==e)return{};var r,o,n={},a=Object.keys(e);for(o=0;o<a.length;o++)r=a[o],t.indexOf(r)>=0||(n[r]=e[r]);return n}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(o=0;o<a.length;o++)r=a[o],t.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(n[r]=e[r])}return n}function p(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function _(e){return(_=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function f(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function h(e,t){return(h=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var b=function(e){function t(){var e,r,o,a,i,s;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var c=arguments.length,l=new Array(c),d=0;d<c;d++)l[d]=arguments[d];return this,a=f(r=!(o=(e=_(t)).call.apply(e,[this].concat(l)))||"object"!==u(o)&&"function"!=typeof o?f(this):o),i="rootElement",s=n.a.createRef(),i in a?Object.defineProperty(a,i,{value:s,enumerable:!0,configurable:!0,writable:!0}):a[i]=s,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,writable:!0,configurable:!0}}),t&&h(e,t)}(t,o.Component),r=t,(a=[{key:"componentDidMount",value:function(){var e=this.props,t=(e.style,e.typedRef,e.stopped),r=(e.className,d(e,["style","typedRef","stopped","className"]));this.constructTyped(r),t&&this.typed.stop()}},{key:"constructTyped",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=this.props,o=(r.style,r.typedRef,r.stopped,r.className,d(r,["style","typedRef","stopped","className"]));this.typed&&this.typed.destroy(),this.typed=new l.a(this.rootElement.current,Object.assign(o,t)),this.props.typedRef&&this.props.typedRef(this.typed),this.typed.reConstruct=function(t){e.constructTyped(t)}}},{key:"shouldComponentUpdate",value:function(e){var t=this;if(this.props!==e){e.style,e.typedRef,e.stopped,e.className;var r=d(e,["style","typedRef","stopped","className"]);return this.typed.options=Object.assign(this.typed.options,r),!Object.keys(e).every(function(r){return!t.props[r]&&e[r]?(t.constructTyped(e),!1):(t.typed[r]&&(t.typed[r]=e[r]),!0)})||this.props.strings.length===e.strings.length||this.constructTyped(e),!0}return!1}},{key:"render",value:function(){var e=this.props,t=e.style,r=e.className,o=e.children,a=n.a.createElement("span",{ref:this.rootElement});return o&&(a=n.a.cloneElement(o,{ref:this.rootElement})),n.a.createElement("span",{style:t,className:r},a)}}])&&p(r.prototype,a),t}();b.propTypes={style:i.a.object,className:i.a.string,children:i.a.object,typedRef:i.a.func,stopped:i.a.bool,strings:i.a.arrayOf(i.a.string),typeSpeed:i.a.number,startDelay:i.a.number,backSpeed:i.a.number,smartBackspace:i.a.bool,shuffle:i.a.bool,backDelay:i.a.number,fadeOut:i.a.bool,fadeOutClass:i.a.string,fadeOutDelay:i.a.number,loop:i.a.bool,loopCount:i.a.number,showCursor:i.a.bool,cursorChar:i.a.string,autoInsertCss:i.a.bool,attr:i.a.string,bindInputFocusEvents:i.a.bool,contentType:i.a.oneOf(["html",""]),onComplete:i.a.func,preStringTyped:i.a.func,onStringTyped:i.a.func,onLastStringBackspaced:i.a.func,onTypingPaused:i.a.func,onTypingResumed:i.a.func,onReset:i.a.func,onStop:i.a.func,onStart:i.a.func,onDestroy:i.a.func},t.default=b},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o="function"==typeof Symbol&&Symbol.for,n=o?Symbol.for("react.element"):60103,a=o?Symbol.for("react.portal"):60106,i=o?Symbol.for("react.fragment"):60107,c=o?Symbol.for("react.strict_mode"):60108,l=o?Symbol.for("react.profiler"):60114,u=o?Symbol.for("react.provider"):60109,d=o?Symbol.for("react.context"):60110,p=o?Symbol.for("react.async_mode"):60111,_=o?Symbol.for("react.concurrent_mode"):60111,f=o?Symbol.for("react.forward_ref"):60112,h=o?Symbol.for("react.suspense"):60113,b=o?Symbol.for("react.suspense_list"):60120,m=o?Symbol.for("react.memo"):60115,y=o?Symbol.for("react.lazy"):60116,v=o?Symbol.for("react.fundamental"):60117,g=o?Symbol.for("react.responder"):60118;function w(e){if("object"==s(e)&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case p:case _:case i:case l:case c:case h:return e;default:switch(e=e&&e.$$typeof){case d:case f:case u:return e;default:return t}}case y:case m:case a:return t}}}function x(e){return w(e)===_}t.typeOf=w,t.AsyncMode=p,t.ConcurrentMode=_,t.ContextConsumer=d,t.ContextProvider=u,t.Element=n,t.ForwardRef=f,t.Fragment=i,t.Lazy=y,t.Memo=m,t.Portal=a,t.Profiler=l,t.StrictMode=c,t.Suspense=h,t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===i||e===_||e===l||e===c||e===h||e===b||"object"==s(e)&&null!==e&&(e.$$typeof===y||e.$$typeof===m||e.$$typeof===u||e.$$typeof===d||e.$$typeof===f||e.$$typeof===v||e.$$typeof===g)},t.isAsyncMode=function(e){return x(e)||w(e)===p},t.isConcurrentMode=x,t.isContextConsumer=function(e){return w(e)===d},t.isContextProvider=function(e){return w(e)===u},t.isElement=function(e){return"object"==s(e)&&null!==e&&e.$$typeof===n},t.isForwardRef=function(e){return w(e)===f},t.isFragment=function(e){return w(e)===i},t.isLazy=function(e){return w(e)===y},t.isMemo=function(e){return w(e)===m},t.isPortal=function(e){return w(e)===a},t.isProfiler=function(e){return w(e)===l},t.isStrictMode=function(e){return w(e)===c},t.isSuspense=function(e){return w(e)===h}},function(e,t,r){"use strict";!function(){Object.defineProperty(t,"__esModule",{value:!0});var e="function"==typeof Symbol&&Symbol.for,r=e?Symbol.for("react.element"):60103,o=e?Symbol.for("react.portal"):60106,n=e?Symbol.for("react.fragment"):60107,a=e?Symbol.for("react.strict_mode"):60108,i=e?Symbol.for("react.profiler"):60114,c=e?Symbol.for("react.provider"):60109,l=e?Symbol.for("react.context"):60110,u=e?Symbol.for("react.async_mode"):60111,d=e?Symbol.for("react.concurrent_mode"):60111,p=e?Symbol.for("react.forward_ref"):60112,_=e?Symbol.for("react.suspense"):60113,f=e?Symbol.for("react.suspense_list"):60120,h=e?Symbol.for("react.memo"):60115,b=e?Symbol.for("react.lazy"):60116,m=e?Symbol.for("react.fundamental"):60117,y=e?Symbol.for("react.responder"):60118,v=function(e,t){if(void 0===t)throw new Error("`lowPriorityWarning(condition, format, ...args)` requires a warning message argument");if(!e){for(var r=arguments.length,o=Array(r>2?r-2:0),n=2;n<r;n++)o[n-2]=arguments[n];(function(e){for(var t=arguments.length,r=Array(t>1?t-1:0),o=1;o<t;o++)r[o-1]=arguments[o];var n=0,a="Warning: "+e.replace(/%s/g,function(){return r[n++]});"undefined"!=typeof console&&console.warn(a);try{throw new Error(a)}catch(e){}}).apply(void 0,[t].concat(o))}};function g(e){if("object"==s(e)&&null!==e){var t=e.$$typeof;switch(t){case r:var f=e.type;switch(f){case u:case d:case n:case i:case a:case _:return f;default:var m=f&&f.$$typeof;switch(m){case l:case p:case c:return m;default:return t}}case b:case h:case o:return t}}}var w=u,x=d,k=l,O=c,S=r,j=p,E=n,P=b,z=h,C=o,T=i,q=a,M=_,I=!1;function N(e){return g(e)===d}t.typeOf=g,t.AsyncMode=w,t.ConcurrentMode=x,t.ContextConsumer=k,t.ContextProvider=O,t.Element=S,t.ForwardRef=j,t.Fragment=E,t.Lazy=P,t.Memo=z,t.Portal=C,t.Profiler=T,t.StrictMode=q,t.Suspense=M,t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===n||e===d||e===i||e===a||e===_||e===f||"object"==s(e)&&null!==e&&(e.$$typeof===b||e.$$typeof===h||e.$$typeof===c||e.$$typeof===l||e.$$typeof===p||e.$$typeof===m||e.$$typeof===y)},t.isAsyncMode=function(e){return I||(I=!0,v(!1,"The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),N(e)||g(e)===u},t.isConcurrentMode=N,t.isContextConsumer=function(e){return g(e)===l},t.isContextProvider=function(e){return g(e)===c},t.isElement=function(e){return"object"==s(e)&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return g(e)===p},t.isFragment=function(e){return g(e)===n},t.isLazy=function(e){return g(e)===b},t.isMemo=function(e){return g(e)===h},t.isPortal=function(e){return g(e)===o},t.isProfiler=function(e){return g(e)===i},t.isStrictMode=function(e){return g(e)===a},t.isSuspense=function(e){return g(e)===_}}()},function(e,t,r){"use strict";var o=r(3),n=r(9),a=r(2),i=r(10),c=Function.call.bind(Object.prototype.hasOwnProperty),l=function(){};function u(){return null}l=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}},e.exports=function(e,t){var r="function"==typeof Symbol&&Symbol.iterator,d="@@iterator",p="<<anonymous>>",_={array:m("array"),bool:m("boolean"),func:m("function"),number:m("number"),object:m("object"),string:m("string"),symbol:m("symbol"),any:b(u),arrayOf:function(e){return b(function(t,r,o,n,i){if("function"!=typeof e)return new h("Property `"+i+"` of component `"+o+"` has invalid PropType notation inside arrayOf.");var s=t[r];if(!Array.isArray(s))return new h("Invalid "+n+" `"+i+"` of type `"+v(s)+"` supplied to `"+o+"`, expected an array.");for(var c=0;c<s.length;c++){var l=e(s,c,o,n,i+"["+c+"]",a);if(l instanceof Error)return l}return null})},element:b(function(t,r,o,n,a){var i=t[r];return e(i)?null:new h("Invalid "+n+" `"+a+"` of type `"+v(i)+"` supplied to `"+o+"`, expected a single ReactElement.")}),elementType:b(function(e,t,r,n,a){var i=e[t];return o.isValidElementType(i)?null:new h("Invalid "+n+" `"+a+"` of type `"+v(i)+"` supplied to `"+r+"`, expected a single ReactElement type.")}),instanceOf:function(e){return b(function(t,r,o,n,a){if(!(t[r]instanceof e)){var i=e.name||p;return new h("Invalid "+n+" `"+a+"` of type `"+function(e){return e.constructor&&e.constructor.name?e.constructor.name:p}(t[r])+"` supplied to `"+o+"`, expected instance of `"+i+"`.")}return null})},node:b(function(e,t,r,o,n){return y(e[t])?null:new h("Invalid "+o+" `"+n+"` supplied to `"+r+"`, expected a ReactNode.")}),objectOf:function(e){return b(function(t,r,o,n,i){if("function"!=typeof e)return new h("Property `"+i+"` of component `"+o+"` has invalid PropType notation inside objectOf.");var s=t[r],l=v(s);if("object"!==l)return new h("Invalid "+n+" `"+i+"` of type `"+l+"` supplied to `"+o+"`, expected an object.");for(var u in s)if(c(s,u)){var d=e(s,u,o,n,i+"."+u,a);if(d instanceof Error)return d}return null})},oneOf:function(e){return Array.isArray(e)?b(function(t,r,o,n,a){for(var i=t[r],s=0;s<e.length;s++)if(f(i,e[s]))return null;var c=JSON.stringify(e,function(e,t){return"symbol"===g(t)?String(t):t});return new h("Invalid "+n+" `"+a+"` of value `"+String(i)+"` supplied to `"+o+"`, expected one of "+c+".")}):(arguments.length>1?l("Invalid arguments supplied to oneOf, expected an array, got "+arguments.length+" arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."):l("Invalid argument supplied to oneOf, expected an array."),u)},oneOfType:function(e){if(!Array.isArray(e))return l("Invalid argument supplied to oneOfType, expected an instance of array."),u;for(var t=0;t<e.length;t++){var r=e[t];if("function"!=typeof r)return l("Invalid argument supplied to oneOfType. Expected an array of check functions, but received "+w(r)+" at index "+t+"."),u}return b(function(t,r,o,n,i){for(var s=0;s<e.length;s++)if(null==(0,e[s])(t,r,o,n,i,a))return null;return new h("Invalid "+n+" `"+i+"` supplied to `"+o+"`.")})},shape:function(e){return b(function(t,r,o,n,i){var s=t[r],c=v(s);if("object"!==c)return new h("Invalid "+n+" `"+i+"` of type `"+c+"` supplied to `"+o+"`, expected `object`.");for(var l in e){var u=e[l];if(u){var d=u(s,l,o,n,i+"."+l,a);if(d)return d}}return null})},exact:function(e){return b(function(t,r,o,i,s){var c=t[r],l=v(c);if("object"!==l)return new h("Invalid "+i+" `"+s+"` of type `"+l+"` supplied to `"+o+"`, expected `object`.");var u=n({},t[r],e);for(var d in u){var p=e[d];if(!p)return new h("Invalid "+i+" `"+s+"` key `"+d+"` supplied to `"+o+"`.\nBad object: "+JSON.stringify(t[r],null," ")+"\nValid keys: "+JSON.stringify(Object.keys(e),null," "));var _=p(c,d,o,i,s+"."+d,a);if(_)return _}return null})}};function f(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}function h(e){this.message=e,this.stack=""}function b(e){var r={},o=0;function n(n,i,s,c,u,d,_){if(c=c||p,d=d||s,_!==a){if(t){var f=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types");throw f.name="Invariant Violation",f}if("undefined"!=typeof console){var b=c+":"+s;!r[b]&&o<3&&(l("You are manually calling a React.PropTypes validation function for the `"+d+"` prop on `"+c+"`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."),r[b]=!0,o++)}}return null==i[s]?n?null===i[s]?new h("The "+u+" `"+d+"` is marked as required in `"+c+"`, but its value is `null`."):new h("The "+u+" `"+d+"` is marked as required in `"+c+"`, but its value is `undefined`."):null:e(i,s,c,u,d)}var i=n.bind(null,!1);return i.isRequired=n.bind(null,!0),i}function m(e){return b(function(t,r,o,n,a,i){var s=t[r];return v(s)!==e?new h("Invalid "+n+" `"+a+"` of type `"+g(s)+"` supplied to `"+o+"`, expected `"+e+"`."):null})}function y(t){switch(s(t)){case"number":case"string":case"undefined":return!0;case"boolean":return!t;case"object":if(Array.isArray(t))return t.every(y);if(null===t||e(t))return!0;var o=function(e){var t=e&&(r&&e[r]||e[d]);if("function"==typeof t)return t}(t);if(!o)return!1;var n,a=o.call(t);if(o!==t.entries){for(;!(n=a.next()).done;)if(!y(n.value))return!1}else for(;!(n=a.next()).done;){var i=n.value;if(i&&!y(i[1]))return!1}return!0;default:return!1}}function v(e){var t=s(e);return Array.isArray(e)?"array":e instanceof RegExp?"object":function(e,t){return"symbol"===e||!!t&&("Symbol"===t["@@toStringTag"]||"function"==typeof Symbol&&t instanceof Symbol)}(t,e)?"symbol":t}function g(e){if(null==e)return""+e;var t=v(e);if("object"===t){if(e instanceof Date)return"date";if(e instanceof RegExp)return"regexp"}return t}function w(e){var t=g(e);switch(t){case"array":case"object":return"an "+t;case"boolean":case"date":case"regexp":return"a "+t;default:return t}}return h.prototype=Error.prototype,_.checkPropTypes=i,_.resetWarningCache=i.resetWarningCache,_.PropTypes=_,_}},function(e,t,r){"use strict";var o=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},r=0;r<10;r++)t["_"+String.fromCharCode(r)]=r;if("0123456789"!==Object.getOwnPropertyNames(t).map(function(e){return t[e]}).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach(function(e){o[e]=e}),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var r,i,s=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(e),c=1;c<arguments.length;c++){for(var l in r=Object(arguments[c]))n.call(r,l)&&(s[l]=r[l]);if(o){i=o(r);for(var u=0;u<i.length;u++)a.call(r,i[u])&&(s[i[u]]=r[i[u]])}}return s}},function(e,t,r){"use strict";var o=function(){},n=r(2),a={},i=Function.call.bind(Object.prototype.hasOwnProperty);function c(e,t,r,c,l){for(var u in e)if(i(e,u)){var d;try{if("function"!=typeof e[u]){var p=Error((c||"React class")+": "+r+" type `"+u+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+s(e[u])+"`.");throw p.name="Invariant Violation",p}d=e[u](t,u,c,r,null,n)}catch(e){d=e}if(!d||d instanceof Error||o((c||"React class")+": type specification of "+r+" `"+u+"` is invalid; the type checker function must return `null` or an `Error` but returned a "+s(d)+". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."),d instanceof Error&&!(d.message in a)){a[d.message]=!0;var _=l?l():"";o("Failed "+r+" type: "+d.message+(null!=_?_:""))}}}o=function(e){var t="Warning: "+e;"undefined"!=typeof console&&console.error(t);try{throw new Error(t)}catch(e){}},c.resetWarningCache=function(){a={}},e.exports=c},function(e,t,r){"use strict";var o=r(2);function n(){}function a(){}a.resetWarningCache=n,e.exports=function(){function e(e,t,r,n,a,i){if(i!==o){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var r={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:n};return r.PropTypes=r,r}}])},"object"==s(t)&&"object"==s(e)?e.exports=i(r(0)):(n=[r(0)],void 0===(a="function"===typeof(o=i)?o.apply(t,n):o)||(e.exports=a))}).call(t,r(23)(e))},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(22),i=r.n(a),s=r(94),c=(r.n(s),r(53));r.n(c);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 u(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function d(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}var p=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),d(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[];if(t.push([{selector:"%%order_class%% .dsm-perspective-image-wrapper",declaration:"transform: perspective(".concat(e.perspective,") rotateX(").concat(e.dsm_rotate_x,") rotateY(").concat(e.dsm_rotate_y,") rotateZ(").concat(e.dsm_rotate_z,");")}]),"left"!==e.align&&t.push([{selector:"%%order_class%%",declaration:"text-align: ".concat(e.align,";")}]),"on"===e.force_fullwidth&&t.push([{selector:"%%order_class%% .et_pb_image_wrap, %%order_class%% img",declaration:"width: 100%;"}]),"on"===e.use_overlay&&(e.hover_overlay_color&&t.push([{selector:"%%order_class%% .et_overlay",declaration:"background-color: ".concat(e.hover_overlay_color,";")}]),e.overlay_icon_color&&t.push([{selector:"%%order_class%% .et_overlay:before",declaration:"color: ".concat(e.overlay_icon_color,";")}])),"on"!==e.dsm_rotate_y__hover_enabled&&"on"!==e.dsm_rotate_x__hover_enabled&&"on"!==e.dsm_rotate_z__hover_enabled||t.push([{selector:"%%order_class%% .dsm-perspective-image-wrapper",declaration:"transition: transform ".concat(e.hover_transition_duration," ").concat(e.hover_transition_speed_curve," ").concat(e.hover_transition_delay,";")}]),void 0===e.dsm_rotate_y__hover)var r="0deg";else r=e.dsm_rotate_y__hover;if(void 0===e.dsm_rotate_x__hover)var o="0deg";else o=e.dsm_rotate_x__hover;if(void 0===e.dsm_rotate_z__hover)var n="0deg";else n=e.dsm_rotate_z__hover;var a=""!==e.dsm_rotate_x__hover?" rotateX(".concat(o,")"):"",i=""!==e.dsm_rotate_y__hover?" rotateY(".concat(r,")"):"",s=""!==e.dsm_rotate_z__hover?" rotateZ(".concat(n,")"):"";("on"!==e.dsm_rotate_y__hover_enabled&&"on"!==e.dsm_rotate_x__hover_enabled&&"on"!==e.dsm_rotate_z__hover_enabled||""===e.dsm_rotate_y__hover&&""===e.dsm_rotate_x__hover&&""===e.dsm_rotate_z__hover||t.push([{selector:"%%order_class%%:hover .dsm-perspective-image-wrapper",declaration:"transform: perspective(".concat(e.perspective,")").concat(a).concat(i).concat(s,";")}]),e.src)&&("svg"===e.src.substr(e.src.lastIndexOf(".")+1)&&t.push([{selector:"%%order_class%% .et_pb_image_wrap",declaration:"display: block;"}]));return t}}],(a=[{key:"componentDidUpdate",value:function(e){var t=Object(s.findDOMNode)(this.refs.lightboxIMG);i()(t).magnificPopup({type:"image",removalDelay:500,mainClass:"mfp-fade",zoom:{enabled:!0,duration:500,opener:function(e){return e.find("img")}}})}},{key:"_renderOverlay",value:function(){var e=this.props,t=window.ET_Builder.API.Utils.processFontIcon(e.hover_icon);return"off"===e.use_overlay&&("on"===e.show_in_lightbox||"off"===e.show_in_lightbox&&""!==e.url)?"":n.a.createElement(o.Fragment,null,n.a.createElement("span",{className:"et_overlay et_pb_inline_icon","data-icon":t}))}},{key:"_renderImageOutPut",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("span",{className:"et_pb_image_wrap"},n.a.createElement("img",{src:e.src,alt:e.alt,title:e.title_text}),this._renderOverlay()))}},{key:"_renderImage",value:function(){var e=this.props,t="on"===e.url_new_window&&"off"===e.show_in_lightbox?"_blank":"",r="on"===e.show_lightbox_other_img&&""!==e.show_lightbox_other_img_src?e.show_lightbox_other_img_src:e.src;return e.src||e.url?"on"===e.show_in_lightbox?n.a.createElement(o.Fragment,null,n.a.createElement("a",{ref:"lightboxIMG",href:e.src,className:"et_pb_lightbox_image","data-mfp-src":r},this._renderImageOutPut())):void 0===e.url?n.a.createElement(o.Fragment,null,this._renderImageOutPut()):""!==e.url?n.a.createElement(o.Fragment,null,n.a.createElement("a",{href:e.url,target:t,title:e.alt},this._renderImageOutPut())):n.a.createElement(o.Fragment,null,this._renderImageOutPut()):""}},{key:"render",value:function(){var e=this.props;return n.a.createElement("div",{ref:"spaces",className:"dsm-perspective-image-wrapper".concat("on"===e.use_overlay&&("on"===e.show_in_lightbox||"off"===e.show_in_lightbox&&""!==e.url)?" et_pb_has_overlay":"")},n.a.createElement(o.Fragment,null,this._renderImage()))}}])&&u(r.prototype,a),c&&u(r,c),t}();Object.defineProperty(p,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_perspective_image"}),t.a=p},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(54);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];return e.height&&t.push([{selector:"%%order_class%% .dsm-text-divider-wrapper",declaration:"height: ".concat(e.height,";")}]),e.divider_style&&t.push([{selector:"%%order_class%% .dsm-divider",declaration:"border-top-style: ".concat(e.divider_style,";")}]),"center"!==e.divider_position&&t.push([{selector:"%%order_class%% .dsm-text-divider-wrapper",declaration:"align-items: ".concat(e.divider_position,";")}]),e.color&&t.push([{selector:"%%order_class%% .dsm-divider",declaration:"border-top-color: ".concat(e.color,";")}]),e.divider_weight&&t.push([{selector:"%%order_class%% .dsm-divider",declaration:"border-top-width: ".concat(e.divider_weight,";")}]),"10px"!==e.text_gap&&("center"===e.text_alignment?t.push([{selector:"%%order_class%% .dsm-text-divider-header",declaration:"margin: 0 ".concat(e.text_gap,";")}]):"left"===e.text_alignment?t.push([{selector:"%%order_class%% .dsm-text-divider-header",declaration:"margin: 0 ".concat(e.text_gap," 0 0;")}]):t.push([{selector:"%%order_class%% .dsm-text-divider-header",declaration:"margin: 0 0 0 ".concat(e.text_gap,";")}])),t}}],(a=[{key:"_renderText",value:function(){var e=this.props,t=""===e.header_level?"h2":"".concat(e.header_level);return e.header?void 0===e.header_level?n.a.createElement(o.Fragment,null,n.a.createElement("h3",{className:"dsm-text-divider-header et_pb_module_header"},e.header)):n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-text-divider-header et_pb_module_header"},e.header)):""}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm-text-divider-wrapper et_pb_bg_layout_".concat(e.background_layout," dsm-text-divider-align-").concat(e.text_alignment)},n.a.createElement("div",{className:"dsm-text-divider-before dsm-divider"}),this._renderText(),n.a.createElement("div",{className:"dsm-text-divider-after dsm-divider"})))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_text_divider"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(55);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){return[]}}],(a=[{key:"_renderTitle",value:function(){var e=this.props,t=""===e.header_level?"h1":"".concat(e.header_level);return e.gradient_text?void 0===e.header_level?n.a.createElement(o.Fragment,null,n.a.createElement("h1",{className:"dsm-gradient-text et_pb_module_header"},e.gradient_text)):n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-gradient-text et_pb_module_header"},e.gradient_text)):""}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"et_pb_bg_layout_".concat(e.background_layout)},this._renderTitle()))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_gradient_text"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(94),i=(r.n(a),r(22)),s=r.n(i),c=r(56),l=(r.n(c),r(57));r.n(l);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 d(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function p(e,t){return!t||"object"!==u(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}var _=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),p(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,i,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[],r=e.separator_gap_last_edited&&e.separator_gap_last_edited.startsWith("on"),o=e.separator_gap,n=r&&e.separator_gap_tablet?e.separator_gap_tablet:o,a=r&&e.separator_gap_phone?e.separator_gap_phone:n;return e.separator_gap&&t.push([{selector:"%%order_class%% .dsm-button-separator-text",declaration:"margin-left: ".concat(o,"; margin-right: ").concat(o)}]),e.separator_gap_tablet&&t.push([{selector:"%%order_class%% .dsm-button-separator-text",declaration:"margin-left: ".concat(n,"; margin-right: ").concat(n),device:"tablet"}]),e.separator_gap_phone&&t.push([{selector:"%%order_class%% .dsm-button-separator-text",declaration:"margin-left: ".concat(a,"; margin-right: ").concat(a),device:"phone"}]),t}}],(i=[{key:"componentDidUpdate",value:function(){var e=this.props;s()(Object(a.findDOMNode)(this.popupvideoLink)).magnificPopup({delegate:".dsm-video-lightbox",type:"iframe",iframe:{markup:'<div class="mfp-iframe-scaler dsm-video-popup"><div class="mfp-close"></div><iframe class="mfp-iframe" frameborder="0" allowfullscreen></iframe></div>',patterns:{youtube:{index:"youtube.com/",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1&rel=0"},youtu_be:{index:"youtu.be",id:"/",src:"//www.youtube.com/embed/%id%?autoplay=1&rel=0"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},dailymotion:{index:"dailymotion.com",id:function(e){var t=e.match(/^.+dailymotion.com\/(video|hub)\/([^_]+)[^#]*(#video=([^_&]+))?/);return null!==t?void 0!==t[4]?t[4]:t[2]:null},src:"https://www.dailymotion.com/embed/video/%id%"}},srcAction:"iframe_src"},mainClass:"dsm-video-popup-wrap mfp-fade"});var t=Object(a.findDOMNode)(this.refs.IMGOneLightbox);"on"===e.button_one_image_popup?s()(t).magnificPopup({type:"image",removalDelay:500,mainClass:"mfp-fade"}):(s()(t).off("click"),s()(t).removeData("magnificPopup"));var r=Object(a.findDOMNode)(this.refs.IMGTwoLightbox);"on"===e.button_two_image_popup?s()(r).magnificPopup({type:"image",removalDelay:500,mainClass:"mfp-fade"}):(s()(r).off("click"),s()(r).removeData("magnificPopup"))}},{key:"_renderButton",value:function(){var e=this.props,t=window.ET_Builder.API.Utils,r="on"===e.button_one_url_new_window?"_blank":"",o=!!e.button_one_icon&&t.processFontIcon(e.button_one_icon),a=e.button_one_hover_animation,i="on"===e.button_one_video_popup?" dsm-video-lightbox et_pb_lightbox_image":"",s="on"===e.button_one_image_popup?" dsm-image-lightbox et_pb_lightbox_image":"",c="on"===e.button_one_image_popup?"".concat(e.button_one_image_src):"".concat(e.button_one_url),l={et_pb_button_one:!0,et_pb_button:!0,et_pb_custom_button_icon:e.button_one_icon};return e.button_one_text?n.a.createElement("a",{ref:"IMGOneLightbox",className:"".concat(t.classnames(l)," ").concat(a).concat(i).concat(s," ").concat(this.buttonBackgroundClassName()),href:c,target:r,rel:t.linkRel(e.button_one_rel),"data-icon":o},e.button_one_text):""}},{key:"_renderButtonTwo",value:function(){var e=this.props,t=window.ET_Builder.API.Utils,r="on"===e.button_two_url_new_window?"_blank":"",a=!!e.button_two_icon&&t.processFontIcon(e.button_two_icon),i=e.button_two_hover_animation,s="on"===e.button_two_video_popup?" dsm-video-lightbox et_pb_lightbox_image":"",c="on"===e.button_two_image_popup?" dsm-image-lightbox et_pb_lightbox_image":"",l="on"===e.button_two_image_popup?"".concat(e.button_two_image_src):"".concat(e.button_two_url),u={et_pb_button_two:!0,et_pb_button:!0,et_pb_custom_button_icon:e.button_two_icon};return e.button_two_text?n.a.createElement(o.Fragment,null,this._renderSeparator(),n.a.createElement("a",{ref:"IMGTwoLightbox",className:"".concat(t.classnames(u)," ").concat(i).concat(s).concat(c," ").concat(this.buttonBackgroundClassName()),href:l,target:r,rel:t.linkRel(e.button_two_rel),"data-icon":a},e.button_two_text)):""}},{key:"_renderSeparator",value:function(){var e=this.props;return e.separator_text?n.a.createElement("span",{className:"dsm-button-separator-text"},e.separator_text):""}},{key:"buttonBackgroundClassName",value:function(){var e=this.props,t=["et_pb_bg_layout_".concat(e.background_layout," ")],r=e.background_layout_last_edited,o=r&&r.startsWith("on");return e.background_layout_tablet&&o&&e.background_layout_tablet&&""!==e.background_layout_tablet&&t.push("et_pb_bg_layout_".concat(e.background_layout_tablet,"_tablet ")),e.background_layout_phone&&o&&e.background_layout_phone&&""!==e.background_layout_phone&&t.push("et_pb_bg_layout_".concat(e.background_layout_phone,"_phone ")),t.join(" ")}},{key:"buttonAlignmentClassName",value:function(){var e=this.props,t=["et_pb_button_alignment_".concat(e.button_alignment," ")],r=e.button_alignment_last_edited,o=r&&r.startsWith("on");return e.button_alignment_tablet&&o&&e.button_alignment_tablet&&""!==e.button_alignment_tablet&&t.push("et_pb_button_alignment_tablet_".concat(e.button_alignment_tablet," ")),e.button_alignment_phone&&o&&e.button_alignment_phone&&""!==e.button_alignment_phone&&t.push("et_pb_button_alignment_phone_".concat(e.button_alignment_phone," ")),e.separator_text&&t.push("dsm-button-seperator "),t.join(" ")}},{key:"render",value:function(){var e=this,t=this.props;return n.a.createElement("div",{ref:function(t){e.popupvideoLink=t},className:"".concat(this.buttonAlignmentClassName()).concat(this.buttonBackgroundClassName(),"et_pb_button_module_wrapper").concat(t.separator_text&&"on"===t.remove_separator_text_on_mobile?" dsm-button-separator-remove":"").concat(t.separator_text&&"on"===t.fullwidth_separator_text_on_mobile?" dsm-button-separator-fullwidth":"")},this._renderButton(),this._renderButtonTwo())}}])&&d(r.prototype,i),c&&d(r,c),t}();Object.defineProperty(_,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_button"}),t.a=_},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(95);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,i,l;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,o["Component"]),r=t,l=[{key:"css",value:function(e){var t=[];return"center"!==e.separator_gap&&t.push([{selector:"%%order_class%% .dsm-facebook-feed",declaration:"text-align: ".concat(e.fb_alignment,";")}]),t}}],(i=[{key:"shouldComponentUpdate",value:function(e,t){return e.fb_page_url!==this.props.fb_page_url||e.fb_tabs!==this.props.fb_tabs||e.fb_small_header!==this.props.fb_small_header||e.fb_hide_cover!==this.props.fb_hide_cover||e.fb_width!==this.props.fb_width||e.fb_height!==this.props.fb_height||e.fb_show_facepile!==this.props.fb_show_facepile}},{key:"render",value:function(){var e,t=this.props,r=""===t.fb_app_id?"252971358753113":"".concat(t.fb_app_id),i=t.fb_tabs.split("|"),s=["on"===i[0]?"timeline":"","on"===i[1]?"events":"","on"===i[2]?"messages":""];return e="undefined"!==typeof s[0]&&null!==s[0]?s.filter(Boolean):"",n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm-facebook-feed et_pb_text_align_".concat(t.fb_alignment)},n.a.createElement(a.FacebookProvider,{appId:r},n.a.createElement(a.Page,{href:t.fb_page_url,tabs:e,width:parseInt(t.fb_width,10),height:parseInt(t.fb_height,10),smallHeader:t.fb_small_header,adaptContainerWidth:"true",hideCover:t.fb_hide_cover,showFacepile:t.fb_show_facepile,hideCTA:"true"}))))}}])&&s(r.prototype,i),l&&s(r,l),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_facebook_feed"}),t.a=l},function(e,t,r){var o=function(){return this}()||Function("return this")(),n=o.regeneratorRuntime&&Object.getOwnPropertyNames(o).indexOf("regeneratorRuntime")>=0,a=n&&o.regeneratorRuntime;if(o.regeneratorRuntime=void 0,e.exports=r(156),n)o.regeneratorRuntime=a;else try{delete o.regeneratorRuntime}catch(e){o.regeneratorRuntime=void 0}},function(e,t,r){(function(e){function t(e){return(t="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(r){"use strict";var o,n=Object.prototype,a=n.hasOwnProperty,i="function"===typeof Symbol?Symbol:{},s=i.iterator||"@@iterator",c=i.asyncIterator||"@@asyncIterator",l=i.toStringTag||"@@toStringTag",u="object"===t(e),d=r.regeneratorRuntime;if(d)u&&(e.exports=d);else{(d=r.regeneratorRuntime=u?e.exports:{}).wrap=w;var p="suspendedStart",_="suspendedYield",f="executing",h="completed",b={},m={};m[s]=function(){return this};var y=Object.getPrototypeOf,v=y&&y(y(q([])));v&&v!==n&&a.call(v,s)&&(m=v);var g=S.prototype=k.prototype=Object.create(m);O.prototype=g.constructor=S,S.constructor=O,S[l]=O.displayName="GeneratorFunction",d.isGeneratorFunction=function(e){var t="function"===typeof e&&e.constructor;return!!t&&(t===O||"GeneratorFunction"===(t.displayName||t.name))},d.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,S):(e.__proto__=S,l in e||(e[l]="GeneratorFunction")),e.prototype=Object.create(g),e},d.awrap=function(e){return{__await:e}},j(E.prototype),E.prototype[c]=function(){return this},d.AsyncIterator=E,d.async=function(e,t,r,o){var n=new E(w(e,t,r,o));return d.isGeneratorFunction(t)?n:n.next().then(function(e){return e.done?e.value:n.next()})},j(g),g[l]="Generator",g[s]=function(){return this},g.toString=function(){return"[object Generator]"},d.keys=function(e){var t=[];for(var r in e)t.push(r);return t.reverse(),function r(){for(;t.length;){var o=t.pop();if(o in e)return r.value=o,r.done=!1,r}return r.done=!0,r}},d.values=q,T.prototype={constructor:T,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=o,this.done=!1,this.delegate=null,this.method="next",this.arg=o,this.tryEntries.forEach(C),!e)for(var t in this)"t"===t.charAt(0)&&a.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=o)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if("throw"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(r,n){return s.type="throw",s.arg=e,t.next=r,n&&(t.method="next",t.arg=o),!!n}for(var n=this.tryEntries.length-1;n>=0;--n){var i=this.tryEntries[n],s=i.completion;if("root"===i.tryLoc)return r("end");if(i.tryLoc<=this.prev){var c=a.call(i,"catchLoc"),l=a.call(i,"finallyLoc");if(c&&l){if(this.prev<i.catchLoc)return r(i.catchLoc,!0);if(this.prev<i.finallyLoc)return r(i.finallyLoc)}else if(c){if(this.prev<i.catchLoc)return r(i.catchLoc,!0)}else{if(!l)throw new Error("try statement without catch or finally");if(this.prev<i.finallyLoc)return r(i.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var o=this.tryEntries[r];if(o.tryLoc<=this.prev&&a.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var n=o;break}}n&&("break"===e||"continue"===e)&&n.tryLoc<=t&&t<=n.finallyLoc&&(n=null);var i=n?n.completion:{};return i.type=e,i.arg=t,n?(this.method="next",this.next=n.finallyLoc,b):this.complete(i)},complete:function(e,t){if("throw"===e.type)throw e.arg;return"break"===e.type||"continue"===e.type?this.next=e.arg:"return"===e.type?(this.rval=this.arg=e.arg,this.method="return",this.next="end"):"normal"===e.type&&t&&(this.next=t),b},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),C(r),b}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var o=r.completion;if("throw"===o.type){var n=o.arg;C(r)}return n}}throw new Error("illegal catch attempt")},delegateYield:function(e,t,r){return this.delegate={iterator:q(e),resultName:t,nextLoc:r},"next"===this.method&&(this.arg=o),b}}}function w(e,t,r,o){var n=t&&t.prototype instanceof k?t:k,a=Object.create(n.prototype),i=new T(o||[]);return a._invoke=function(e,t,r){var o=p;return function(n,a){if(o===f)throw new Error("Generator is already running");if(o===h){if("throw"===n)throw a;return M()}for(r.method=n,r.arg=a;;){var i=r.delegate;if(i){var s=P(i,r);if(s){if(s===b)continue;return s}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===p)throw o=h,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=f;var c=x(e,t,r);if("normal"===c.type){if(o=r.done?h:_,c.arg===b)continue;return{value:c.arg,done:r.done}}"throw"===c.type&&(o=h,r.method="throw",r.arg=c.arg)}}}(e,r,i),a}function x(e,t,r){try{return{type:"normal",arg:e.call(t,r)}}catch(e){return{type:"throw",arg:e}}}function k(){}function O(){}function S(){}function j(e){["next","throw","return"].forEach(function(t){e[t]=function(e){return this._invoke(t,e)}})}function E(e){var r;this._invoke=function(o,n){function i(){return new Promise(function(r,i){!function r(o,n,i,s){var c=x(e[o],e,n);if("throw"!==c.type){var l=c.arg,u=l.value;return u&&"object"===t(u)&&a.call(u,"__await")?Promise.resolve(u.__await).then(function(e){r("next",e,i,s)},function(e){r("throw",e,i,s)}):Promise.resolve(u).then(function(e){l.value=e,i(l)},s)}s(c.arg)}(o,n,r,i)})}return r=r?r.then(i,i):i()}}function P(e,t){var r=e.iterator[t.method];if(r===o){if(t.delegate=null,"throw"===t.method){if(e.iterator.return&&(t.method="return",t.arg=o,P(e,t),"throw"===t.method))return b;t.method="throw",t.arg=new TypeError("The iterator does not provide a 'throw' method")}return b}var n=x(r,e.iterator,t.arg);if("throw"===n.type)return t.method="throw",t.arg=n.arg,t.delegate=null,b;var a=n.arg;return a?a.done?(t[e.resultName]=a.value,t.next=e.nextLoc,"return"!==t.method&&(t.method="next",t.arg=o),t.delegate=null,b):a:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,b)}function z(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function C(e){var t=e.completion||{};t.type="normal",delete t.arg,e.completion=t}function T(e){this.tryEntries=[{tryLoc:"root"}],e.forEach(z,this),this.reset(!0)}function q(e){if(e){var t=e[s];if(t)return t.call(e);if("function"===typeof e.next)return e;if(!isNaN(e.length)){var r=-1,n=function t(){for(;++r<e.length;)if(a.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=o,t.done=!0,t};return n.next=n}}return{next:M}}function M(){return{value:o,done:!0}}}(function(){return this}()||Function("return this")())}).call(t,r(23)(e))},function(e,t,r){e.exports={default:r(158),__esModule:!0}},function(e,t,r){r(97),r(98),r(106),r(168),r(180),r(181),e.exports=r(7).Promise},function(e,t,r){var o=r(58),n=r(59);e.exports=function(e){return function(t,r){var a,i,s=String(n(t)),c=o(r),l=s.length;return c<0||c>=l?e?"":void 0:(a=s.charCodeAt(c))<55296||a>56319||c+1===l||(i=s.charCodeAt(c+1))<56320||i>57343?e?s.charAt(c):a:e?s.slice(c,c+2):i-56320+(a-55296<<10)+65536}}},function(e,t,r){"use strict";var o=r(62),n=r(37),a=r(40),i={};r(18)(i,r(6)("iterator"),function(){return this}),e.exports=function(e,t,r){e.prototype=o(i,{next:n(1,r)}),a(e,t+" Iterator")}},function(e,t,r){var o=r(19),n=r(12),a=r(38);e.exports=r(15)?Object.defineProperties:function(e,t){n(e);for(var r,i=a(t),s=i.length,c=0;s>c;)o.f(e,r=i[c++],t[r]);return e}},function(e,t,r){var o=r(24),n=r(104),a=r(163);e.exports=function(e){return function(t,r,i){var s,c=o(t),l=n(c.length),u=a(i,l);if(e&&r!=r){for(;l>u;)if((s=c[u++])!=s)return!0}else for(;l>u;u++)if((e||u in c)&&c[u]===r)return e||u||0;return!e&&-1}}},function(e,t,r){var o=r(58),n=Math.max,a=Math.min;e.exports=function(e,t){return(e=o(e))<0?n(e+t,0):a(e,t)}},function(e,t,r){var o=r(20),n=r(66),a=r(63)("IE_PROTO"),i=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=n(e),o(e,a)?e[a]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?i:null}},function(e,t,r){"use strict";var o=r(166),n=r(167),a=r(33),i=r(24);e.exports=r(99)(Array,"Array",function(e,t){this._t=i(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,r=this._i++;return!e||r>=e.length?(this._t=void 0,n(1)):n(0,"keys"==t?r:"values"==t?e[r]:[r,e[r]])},"values"),a.Arguments=a.Array,o("keys"),o("values"),o("entries")},function(e,t){e.exports=function(){}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,r){"use strict";var o,n,a,i,s=r(30),c=r(5),l=r(31),u=r(107),d=r(13),p=r(14),_=r(36),f=r(169),h=r(170),b=r(108),m=r(109).set,y=r(175)(),v=r(67),g=r(110),w=r(176),x=r(111),k=c.TypeError,O=c.process,S=O&&O.versions,j=S&&S.v8||"",E=c.Promise,P="process"==u(O),z=function(){},C=n=v.f,T=!!function(){try{var e=E.resolve(1),t=(e.constructor={})[r(6)("species")]=function(e){e(z,z)};return(P||"function"==typeof PromiseRejectionEvent)&&e.then(z)instanceof t&&0!==j.indexOf("6.6")&&-1===w.indexOf("Chrome/66")}catch(e){}}(),q=function(e){var t;return!(!p(e)||"function"!=typeof(t=e.then))&&t},M=function(e,t){if(!e._n){e._n=!0;var r=e._c;y(function(){for(var o=e._v,n=1==e._s,a=0,i=function(t){var r,a,i,s=n?t.ok:t.fail,c=t.resolve,l=t.reject,u=t.domain;try{s?(n||(2==e._h&&R(e),e._h=1),!0===s?r=o:(u&&u.enter(),r=s(o),u&&(u.exit(),i=!0)),r===t.promise?l(k("Promise-chain cycle")):(a=q(r))?a.call(r,c,l):c(r)):l(o)}catch(e){u&&!i&&u.exit(),l(e)}};r.length>a;)i(r[a++]);e._c=[],e._n=!1,t&&!e._h&&I(e)})}},I=function(e){m.call(c,function(){var t,r,o,n=e._v,a=N(e);if(a&&(t=g(function(){P?O.emit("unhandledRejection",n,e):(r=c.onunhandledrejection)?r({promise:e,reason:n}):(o=c.console)&&o.error&&o.error("Unhandled promise rejection",n)}),e._h=P||N(e)?2:1),e._a=void 0,a&&t.e)throw t.v})},N=function(e){return 1!==e._h&&0===(e._a||e._c).length},R=function(e){m.call(c,function(){var t;P?O.emit("rejectionHandled",e):(t=c.onrejectionhandled)&&t({promise:e,reason:e._v})})},F=function(e){var t=this;t._d||(t._d=!0,(t=t._w||t)._v=e,t._s=2,t._a||(t._a=t._c.slice()),M(t,!0))},A=function e(t){var r,o=this;if(!o._d){o._d=!0,o=o._w||o;try{if(o===t)throw k("Promise can't be resolved itself");(r=q(t))?y(function(){var n={_w:o,_d:!1};try{r.call(t,l(e,n,1),l(F,n,1))}catch(e){F.call(n,e)}}):(o._v=t,o._s=1,M(o,!1))}catch(e){F.call({_w:o,_d:!1},e)}}};T||(E=function(e){f(this,E,"Promise","_h"),_(e),o.call(this);try{e(l(A,this,1),l(F,this,1))}catch(e){F.call(this,e)}},(o=function(e){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=r(177)(E.prototype,{then:function(e,t){var r=C(b(this,E));return r.ok="function"!=typeof e||e,r.fail="function"==typeof t&&t,r.domain=P?O.domain:void 0,this._c.push(r),this._a&&this._a.push(r),this._s&&M(this,!1),r.promise},catch:function(e){return this.then(void 0,e)}}),a=function(){var e=new o;this.promise=e,this.resolve=l(A,e,1),this.reject=l(F,e,1)},v.f=C=function(e){return e===E||e===i?new a(e):n(e)}),d(d.G+d.W+d.F*!T,{Promise:E}),r(40)(E,"Promise"),r(178)("Promise"),i=r(7).Promise,d(d.S+d.F*!T,"Promise",{reject:function(e){var t=C(this);return(0,t.reject)(e),t.promise}}),d(d.S+d.F*(s||!T),"Promise",{resolve:function(e){return x(s&&this===i?E:this,e)}}),d(d.S+d.F*!(T&&r(179)(function(e){E.all(e).catch(z)})),"Promise",{all:function(e){var t=this,r=C(t),o=r.resolve,n=r.reject,a=g(function(){var r=[],a=0,i=1;h(e,!1,function(e){var s=a++,c=!1;r.push(void 0),i++,t.resolve(e).then(function(e){c||(c=!0,r[s]=e,--i||o(r))},n)}),--i||o(r)});return a.e&&n(a.v),r.promise},race:function(e){var t=this,r=C(t),o=r.reject,n=g(function(){h(e,!1,function(e){t.resolve(e).then(r.resolve,o)})});return n.e&&o(n.v),r.promise}})},function(e,t){e.exports=function(e,t,r,o){if(!(e instanceof t)||void 0!==o&&o in e)throw TypeError(r+": incorrect invocation!");return e}},function(e,t,r){var o=r(31),n=r(171),a=r(172),i=r(12),s=r(104),c=r(173),l={},u={};(t=e.exports=function(e,t,r,d,p){var _,f,h,b,m=p?function(){return e}:c(e),y=o(r,d,t?2:1),v=0;if("function"!=typeof m)throw TypeError(e+" is not iterable!");if(a(m)){for(_=s(e.length);_>v;v++)if((b=t?y(i(f=e[v])[0],f[1]):y(e[v]))===l||b===u)return b}else for(h=m.call(e);!(f=h.next()).done;)if((b=n(h,y,f.value,t))===l||b===u)return b}).BREAK=l,t.RETURN=u},function(e,t,r){var o=r(12);e.exports=function(e,t,r,n){try{return n?t(o(r)[0],r[1]):t(r)}catch(t){var a=e.return;throw void 0!==a&&o(a.call(e)),t}}},function(e,t,r){var o=r(33),n=r(6)("iterator"),a=Array.prototype;e.exports=function(e){return void 0!==e&&(o.Array===e||a[n]===e)}},function(e,t,r){var o=r(107),n=r(6)("iterator"),a=r(33);e.exports=r(7).getIteratorMethod=function(e){if(void 0!=e)return e[n]||e["@@iterator"]||a[o(e)]}},function(e,t){e.exports=function(e,t,r){var o=void 0===r;switch(t.length){case 0:return o?e():e.call(r);case 1:return o?e(t[0]):e.call(r,t[0]);case 2:return o?e(t[0],t[1]):e.call(r,t[0],t[1]);case 3:return o?e(t[0],t[1],t[2]):e.call(r,t[0],t[1],t[2]);case 4:return o?e(t[0],t[1],t[2],t[3]):e.call(r,t[0],t[1],t[2],t[3])}return e.apply(r,t)}},function(e,t,r){var o=r(5),n=r(109).set,a=o.MutationObserver||o.WebKitMutationObserver,i=o.process,s=o.Promise,c="process"==r(34)(i);e.exports=function(){var e,t,r,l=function(){var o,n;for(c&&(o=i.domain)&&o.exit();e;){n=e.fn,e=e.next;try{n()}catch(o){throw e?r():t=void 0,o}}t=void 0,o&&o.enter()};if(c)r=function(){i.nextTick(l)};else if(!a||o.navigator&&o.navigator.standalone)if(s&&s.resolve){var u=s.resolve(void 0);r=function(){u.then(l)}}else r=function(){n.call(o,l)};else{var d=!0,p=document.createTextNode("");new a(l).observe(p,{characterData:!0}),r=function(){p.data=d=!d}}return function(o){var n={fn:o,next:void 0};t&&(t.next=n),e||(e=n,r()),t=n}}},function(e,t,r){var o=r(5).navigator;e.exports=o&&o.userAgent||""},function(e,t,r){var o=r(18);e.exports=function(e,t,r){for(var n in t)r&&e[n]?e[n]=t[n]:o(e,n,t[n]);return e}},function(e,t,r){"use strict";var o=r(5),n=r(7),a=r(19),i=r(15),s=r(6)("species");e.exports=function(e){var t="function"==typeof n[e]?n[e]:o[e];i&&t&&!t[s]&&a.f(t,s,{configurable:!0,get:function(){return this}})}},function(e,t,r){var o=r(6)("iterator"),n=!1;try{var a=[7][o]();a.return=function(){n=!0},Array.from(a,function(){throw 2})}catch(e){}e.exports=function(e,t){if(!t&&!n)return!1;var r=!1;try{var a=[7],i=a[o]();i.next=function(){return{done:r=!0}},a[o]=function(){return i},e(a)}catch(e){}return r}},function(e,t,r){"use strict";var o=r(13),n=r(7),a=r(5),i=r(108),s=r(111);o(o.P+o.R,"Promise",{finally:function(e){var t=i(this,n.Promise||a.Promise),r="function"==typeof e;return this.then(r?function(r){return s(t,e()).then(function(){return r})}:e,r?function(r){return s(t,e()).then(function(){throw r})}:e)}})},function(e,t,r){"use strict";var o=r(13),n=r(67),a=r(110);o(o.S,"Promise",{try:function(e){var t=n.f(this),r=a(e);return(r.e?t.reject:t.resolve)(r.v),t.promise}})},function(e,t,r){e.exports={default:r(183),__esModule:!0}},function(e,t,r){r(98),r(106),e.exports=r(68).f("iterator")},function(e,t,r){e.exports={default:r(185),__esModule:!0}},function(e,t,r){r(186),r(97),r(191),r(192),e.exports=r(7).Symbol},function(e,t,r){"use strict";function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(5),a=r(20),i=r(15),s=r(13),c=r(101),l=r(187).KEY,u=r(32),d=r(64),p=r(40),_=r(39),f=r(6),h=r(68),b=r(69),m=r(188),y=r(189),v=r(12),g=r(14),w=r(66),x=r(24),k=r(61),O=r(37),S=r(62),j=r(190),E=r(114),P=r(70),z=r(19),C=r(38),T=E.f,q=z.f,M=j.f,I=n.Symbol,N=n.JSON,R=N&&N.stringify,F=f("_hidden"),A=f("toPrimitive"),L={}.propertyIsEnumerable,D=d("symbol-registry"),B=d("symbols"),U=d("op-symbols"),W=Object.prototype,Y="function"==typeof I&&!!P.f,X=n.QObject,$=!X||!X.prototype||!X.prototype.findChild,G=i&&u(function(){return 7!=S(q({},"a",{get:function(){return q(this,"a",{value:7}).a}})).a})?function(e,t,r){var o=T(W,t);o&&delete W[t],q(e,t,r),o&&e!==W&&q(W,t,o)}:q,H=function(e){var t=B[e]=S(I.prototype);return t._k=e,t},V=Y&&"symbol"==o(I.iterator)?function(e){return"symbol"==o(e)}:function(e){return e instanceof I},K=function(e,t,r){return e===W&&K(U,t,r),v(e),t=k(t,!0),v(r),a(B,t)?(r.enumerable?(a(e,F)&&e[F][t]&&(e[F][t]=!1),r=S(r,{enumerable:O(0,!1)})):(a(e,F)||q(e,F,O(1,{})),e[F][t]=!0),G(e,t,r)):q(e,t,r)},J=function(e,t){v(e);for(var r,o=m(t=x(t)),n=0,a=o.length;a>n;)K(e,r=o[n++],t[r]);return e},Q=function(e){var t=L.call(this,e=k(e,!0));return!(this===W&&a(B,e)&&!a(U,e))&&(!(t||!a(this,e)||!a(B,e)||a(this,F)&&this[F][e])||t)},Z=function(e,t){if(e=x(e),t=k(t,!0),e!==W||!a(B,t)||a(U,t)){var r=T(e,t);return!r||!a(B,t)||a(e,F)&&e[F][t]||(r.enumerable=!0),r}},ee=function(e){for(var t,r=M(x(e)),o=[],n=0;r.length>n;)a(B,t=r[n++])||t==F||t==l||o.push(t);return o},te=function(e){for(var t,r=e===W,o=M(r?U:x(e)),n=[],i=0;o.length>i;)!a(B,t=o[i++])||r&&!a(W,t)||n.push(B[t]);return n};Y||(c((I=function(){if(this instanceof I)throw TypeError("Symbol is not a constructor!");var e=_(arguments.length>0?arguments[0]:void 0);return i&&$&&G(W,e,{configurable:!0,set:function t(r){this===W&&t.call(U,r),a(this,F)&&a(this[F],e)&&(this[F][e]=!1),G(this,e,O(1,r))}}),H(e)}).prototype,"toString",function(){return this._k}),E.f=Z,z.f=K,r(113).f=j.f=ee,r(41).f=Q,P.f=te,i&&!r(30)&&c(W,"propertyIsEnumerable",Q,!0),h.f=function(e){return H(f(e))}),s(s.G+s.W+s.F*!Y,{Symbol:I});for(var re="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),oe=0;re.length>oe;)f(re[oe++]);for(var ne=C(f.store),ae=0;ne.length>ae;)b(ne[ae++]);s(s.S+s.F*!Y,"Symbol",{for:function(e){return a(D,e+="")?D[e]:D[e]=I(e)},keyFor:function(e){if(!V(e))throw TypeError(e+" is not a symbol!");for(var t in D)if(D[t]===e)return t},useSetter:function(){$=!0},useSimple:function(){$=!1}}),s(s.S+s.F*!Y,"Object",{create:function(e,t){return void 0===t?S(e):J(S(e),t)},defineProperty:K,defineProperties:J,getOwnPropertyDescriptor:Z,getOwnPropertyNames:ee,getOwnPropertySymbols:te});var ie=u(function(){P.f(1)});s(s.S+s.F*ie,"Object",{getOwnPropertySymbols:function(e){return P.f(w(e))}}),N&&s(s.S+s.F*(!Y||u(function(){var e=I();return"[null]"!=R([e])||"{}"!=R({a:e})||"{}"!=R(Object(e))})),"JSON",{stringify:function(e){for(var t,r,o=[e],n=1;arguments.length>n;)o.push(arguments[n++]);if(r=t=o[1],(g(t)||void 0!==e)&&!V(e))return y(t)||(t=function(e,t){if("function"==typeof r&&(t=r.call(this,e,t)),!V(t))return t}),o[1]=t,R.apply(N,o)}}),I.prototype[A]||r(18)(I.prototype,A,I.prototype.valueOf),p(I,"Symbol"),p(Math,"Math",!0),p(n.JSON,"JSON",!0)},function(e,t,r){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(39)("meta"),a=r(14),i=r(20),s=r(19).f,c=0,l=Object.isExtensible||function(){return!0},u=!r(32)(function(){return l(Object.preventExtensions({}))}),d=function(e){s(e,n,{value:{i:"O"+ ++c,w:{}}})},p=e.exports={KEY:n,NEED:!1,fastKey:function(e,t){if(!a(e))return"symbol"==o(e)?e:("string"==typeof e?"S":"P")+e;if(!i(e,n)){if(!l(e))return"F";if(!t)return"E";d(e)}return e[n].i},getWeak:function(e,t){if(!i(e,n)){if(!l(e))return!0;if(!t)return!1;d(e)}return e[n].w},onFreeze:function(e){return u&&p.NEED&&l(e)&&!i(e,n)&&d(e),e}}},function(e,t,r){var o=r(38),n=r(70),a=r(41);e.exports=function(e){var t=o(e),r=n.f;if(r)for(var i,s=r(e),c=a.f,l=0;s.length>l;)c.call(e,i=s[l++])&&t.push(i);return t}},function(e,t,r){var o=r(34);e.exports=Array.isArray||function(e){return"Array"==o(e)}},function(e,t,r){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(24),a=r(113).f,i={}.toString,s="object"==("undefined"===typeof window?"undefined":o(window))&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return s&&"[object Window]"==i.call(e)?function(e){try{return a(e)}catch(e){return s.slice()}}(e):a(n(e))}},function(e,t,r){r(69)("asyncIterator")},function(e,t,r){r(69)("observable")},function(e,t,r){e.exports={default:r(194),__esModule:!0}},function(e,t,r){r(195),e.exports=r(7).Object.setPrototypeOf},function(e,t,r){var o=r(13);o(o.S,"Object",{setPrototypeOf:r(196).set})},function(e,t,r){var o=r(14),n=r(12),a=function(e,t){if(n(e),!o(t)&&null!==t)throw TypeError(t+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,t,o){try{(o=r(31)(Function.call,r(114).f(Object.prototype,"__proto__").set,2))(e,[]),t=!(e instanceof Array)}catch(e){t=!0}return function(e,r){return a(e,r),t?e.__proto__=r:o(e,r),e}}({},!1):void 0),check:a}},function(e,t,r){e.exports={default:r(198),__esModule:!0}},function(e,t,r){r(199);var o=r(7).Object;e.exports=function(e,t){return o.create(e,t)}},function(e,t,r){var o=r(13);o(o.S,"Object",{create:r(62)})},function(e,t,r){"use strict";t.__esModule=!0,t.default=t.Method=void 0;var o=c(r(9)),n=c(r(10)),a=c(r(4)),i=c(r(1)),s=c(r(71));function c(e){return e&&e.__esModule?e:{default:e}}var l=t.Method={GET:"get",POST:"post",DELETE:"delete"},u=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if((0,i.default)(this,e),this.options=(0,a.default)({domain:"connect.facebook.net",version:"v3.1",cookie:!1,status:!1,xfbml:!1,language:"en_US",frictionlessRequests:!1},t),!this.options.appId)throw new Error("You need to set appId");this.options.wait||this.init()}return e.prototype.getAppId=function(){return this.options.appId},e.prototype.init=function(){var e=(0,n.default)(o.default.mark(function e(){var t=this;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(!this.loadingPromise){e.next=2;break}return e.abrupt("return",this.loadingPromise);case 2:return this.loadingPromise=new Promise(function(e){var r=t.options;window.fbAsyncInit=function(){window.FB.init({appId:r.appId,version:r.version,cookie:r.cookie,status:r.status,xfbml:r.xfbml,frictionlessRequests:t.frictionlessRequests}),e(window.FB)};var o=window.document.getElementsByTagName("script")[0];if(o&&!window.document.getElementById("facebook-jssdk")){var n=window.document.createElement("script");n.id="facebook-jssdk",n.async=!0,n.src="https://"+r.domain+"/"+r.language+"/sdk.js",o.parentNode.insertBefore(n,o)}}),e.abrupt("return",this.loadingPromise);case 4:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.process=function(){var e=(0,n.default)(o.default.mark(function e(t){var r,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.init();case 2:return r=e.sent,e.abrupt("return",new Promise(function(e,o){r[t].apply(r,n.concat([function(t){if(t)if(t.error){var r=t.error,n=r.code,a=r.type,i=r.message,s=new Error(i);s.code=n,s.type=a,o(s)}else e(t);else o(new Error("Response is undefined"))}],a))}));case 4:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.ui=function(){var e=(0,n.default)(o.default.mark(function e(t){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("ui",[t]));case 1:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.api=function(){var e=(0,n.default)(o.default.mark(function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:l.GET,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("api",[t,r,n]));case 1:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.login=function(){var e=(0,n.default)(o.default.mark(function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("login",[],[t]));case 1:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.logout=function(){var e=(0,n.default)(o.default.mark(function e(){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("logout"));case 1:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.getLoginStatus=function(){var e=(0,n.default)(o.default.mark(function e(){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("getLoginStatus"));case 1:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.getAuthResponse=function(){var e=(0,n.default)(o.default.mark(function e(){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.process("getAuthResponse"));case 1:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.getTokenDetail=function(){var e=(0,n.default)(o.default.mark(function e(){var t;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getLoginStatus();case 2:if((t=e.sent).status!==s.default.CONNECTED||!t.authResponse){e.next=5;break}return e.abrupt("return",t.authResponse);case 5:throw new Error("Token is undefined");case 6:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.getProfile=function(){var e=(0,n.default)(o.default.mark(function e(t){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.api("/me",l.GET,t));case 1:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.getTokenDetailWithProfile=function(){var e=(0,n.default)(o.default.mark(function e(t){var r,n;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getTokenDetail();case 2:return r=e.sent,e.next=5,this.getProfile(t);case 5:return n=e.sent,e.abrupt("return",{profile:n,tokenDetail:r});case 7:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.getToken=function(){var e=(0,n.default)(o.default.mark(function e(){var t;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getTokenDetail();case 2:return t=e.sent,e.abrupt("return",t.accessToken);case 4:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.getUserId=function(){var e=(0,n.default)(o.default.mark(function e(){var t;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getTokenDetail();case 2:return t=e.sent,e.abrupt("return",t.userID);case 4:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.sendInvite=function(){var e=(0,n.default)(o.default.mark(function e(t,r){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.ui((0,a.default)({to:t,method:"apprequests"},r)));case 1:case"end":return e.stop()}},e,this)}));return function(t,r){return e.apply(this,arguments)}}(),e.prototype.postAction=function(){var e=(0,n.default)(o.default.mark(function e(t,r,n,a,i){var s;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return s="/me/"+t+":"+r+"?"+n+"="+encodeURIComponent(a),!0===i&&(s+="&no_feed_story=true"),e.abrupt("return",this.api(s,l.POST));case 3:case"end":return e.stop()}},e,this)}));return function(t,r,o,n,a){return e.apply(this,arguments)}}(),e.prototype.getPermissions=function(){var e=(0,n.default)(o.default.mark(function e(){var t;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.api("/me/permissions");case 2:return t=e.sent,e.abrupt("return",t.data);case 4:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.hasPermissions=function(){var e=(0,n.default)(o.default.mark(function e(t){var r,n;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.getPermissions();case 2:return r=e.sent,n=t.filter(function(e){return!!r.find(function(t){var r=t.permission;return"granted"===t.status&&r===e})}),e.abrupt("return",n.length===t.length);case 5:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.subscribe=function(){var e=(0,n.default)(o.default.mark(function e(t,r){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.init();case 2:e.sent.Event.subscribe(t,r);case 4:case"end":return e.stop()}},e,this)}));return function(t,r){return e.apply(this,arguments)}}(),e.prototype.unsubscribe=function(){var e=(0,n.default)(o.default.mark(function e(t,r){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.init();case 2:e.sent.Event.unsubscribe(t,r);case 4:case"end":return e.stop()}},e,this)}));return function(t,r){return e.apply(this,arguments)}}(),e.prototype.parse=function(){var e=(0,n.default)(o.default.mark(function e(t){var r;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.init();case 2:r=e.sent,"undefined"===typeof t?r.XFBML.parse():r.XFBML.parse(t);case 4:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.getRequests=function(){var e=(0,n.default)(o.default.mark(function e(){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.api("/me/apprequests"));case 1:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.removeRequest=function(){var e=(0,n.default)(o.default.mark(function e(t){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.api(t,l.DELETE));case 1:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.setAutoGrow=function(){var e=(0,n.default)(o.default.mark(function e(){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,this.init();case 2:e.sent.Canvas.setAutoGrow();case 4:case"end":return e.stop()}},e,this)}));return function(){return e.apply(this,arguments)}}(),e.prototype.paySimple=function(){var e=(0,n.default)(o.default.mark(function e(t){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.ui({method:"pay",action:"purchaseitem",product:t,quantity:r}));case 1:case"end":return e.stop()}},e,this)}));return function(t){return e.apply(this,arguments)}}(),e.prototype.pay=function(){var e=(0,n.default)(o.default.mark(function e(t,r){return o.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.ui((0,a.default)({method:"pay",action:"purchaseitem",product:t},r)));case 1:case"end":return e.stop()}},e,this)}));return function(t,r){return e.apply(this,arguments)}}(),e}();t.default=u},function(e,t,r){e.exports={default:r(202),__esModule:!0}},function(e,t,r){r(203),e.exports=r(7).Object.assign},function(e,t,r){var o=r(13);o(o.S+o.F,"Object",{assign:r(204)})},function(e,t,r){"use strict";var o=r(15),n=r(38),a=r(70),i=r(41),s=r(66),c=r(103),l=Object.assign;e.exports=!l||r(32)(function(){var e={},t={},r=Symbol(),o="abcdefghijklmnopqrst";return e[r]=7,o.split("").forEach(function(e){t[e]=e}),7!=l({},e)[r]||Object.keys(l({},t)).join("")!=o})?function(e,t){for(var r=s(e),l=arguments.length,u=1,d=a.f,p=i.f;l>u;)for(var _,f=c(arguments[u++]),h=d?n(f).concat(d(f)):n(f),b=h.length,m=0;b>m;)_=h[m++],o&&!p.call(f,_)||(r[_]=f[_]);return r}:l},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=_(r(4)),i=_(r(1)),s=_(r(2)),c=_(r(3)),l=r(0),u=_(l),d=_(r(8)),p=_(r(16));function _(e){return e&&e.__esModule?e:{default:e}}var f=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.href,r=void 0===t?(0,p.default)():t,o=e.layout,n=e.colorScheme,a=e.action,i=e.showFaces,s=e.share,c=e.children,l=e.width,d=e.size,_=e.kidDirectedSite,f=e.referral;return u.default.createElement("div",{className:"fb-like","data-ref":f,"data-href":r,"data-layout":o,"data-colorscheme":n,"data-action":a,"data-show-faces":i,"data-share":s,"data-width":l,"data-size":d,"data-kid-directed-site":_},c)},t}(l.PureComponent),o.defaultProps={layout:void 0,showFaces:void 0,colorScheme:void 0,action:void 0,share:void 0,size:void 0,kidDirectedSite:void 0,children:void 0,href:void 0,referral:void 0,width:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(f,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=b(r(4)),i=b(r(9)),s=b(r(10)),c=b(r(1)),l=b(r(2)),u=b(r(3)),d=r(0),p=b(d),_=b(r(16)),f=b(r(72)),h=b(r(42));function b(e){return e&&e.__esModule?e:{default:e}}var m=(n=o=function(e){function t(){var r,o,n,a,u=this;(0,c.default)(this,t);for(var d=arguments.length,p=Array(d),h=0;h<d;h++)p[h]=arguments[h];return r=o=(0,l.default)(this,e.call.apply(e,[this].concat(p))),o.handleClick=(a=(0,s.default)(i.default.mark(function e(t){var r;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t.preventDefault(),r=o.props.handleProcess,e.abrupt("return",r(function(){var e=(0,s.default)(i.default.mark(function e(t){var r,n,a,s,c,l,d,p;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return r=o.props,n=r.link,a=void 0===n?(0,_.default)():n,s=r.display,c=r.appId,l=void 0===c?t.getAppId():c,d=r.to,p=r.redirectURI,e.abrupt("return",t.ui((0,f.default)({method:"send",link:a,display:s,app_id:l,to:d,redirect_uri:p})));case 2:case"end":return e.stop()}},e,u)}));return function(t){return e.apply(this,arguments)}}()));case 3:case"end":return e.stop()}},e,u)})),function(e){return a.apply(this,arguments)}),n=r,(0,l.default)(o,n)}return(0,u.default)(t,e),t.prototype.render=function(){var e=this.props;return(0,e.children)({loading:e.loading,handleClick:this.handleClick})},t}(d.Component),o.defaultProps={to:void 0,display:void 0,appId:void 0,redirectURI:void 0},n);t.default=(0,d.forwardRef)(function(e,t){return p.default.createElement(h.default,null,function(r){var o=r.loading,n=r.handleProcess;return p.default.createElement(m,(0,a.default)({},e,{loading:o,handleProcess:n,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o=s(r(4)),n=s(r(117));t.default=c;var a=s(r(0)),i=s(r(116));function s(e){return e&&e.__esModule?e:{default:e}}function c(e){var t=e.className,r=e.children,o=(0,n.default)(e,["className","children"]);return a.default.createElement(i.default,o,function(e){var o=e.loading,n=e.handleClick;return a.default.createElement("button",{type:"button",disabled:o,className:t,onClick:n},r)})}c.defaultProps=(0,o.default)({},i.default.defaultProps,{className:void 0})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=_(r(4)),i=_(r(1)),s=_(r(2)),c=_(r(3)),l=r(0),u=_(l),d=_(r(8)),p=_(r(16));function _(e){return e&&e.__esModule?e:{default:e}}var f=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.style,r=e.href,o=void 0===r?(0,p.default)():r,n=e.tabs,a=e.hideCover,i=e.width,s=e.height,c=e.showFacepile,l=e.hideCTA,d=e.smallHeader,_=e.adaptContainerWidth,f=e.children;return u.default.createElement("div",{className:"fb-page",style:t,"data-tabs":n,"data-hide-cover":a,"data-show-facepile":c,"data-hide-cta":l,"data-href":o,"data-small-header":d,"data-adapt-container-width":_,"data-height":s,"data-width":i},f)},t}(l.PureComponent),o.defaultProps={width:void 0,height:void 0,tabs:void 0,hideCover:void 0,showFacepile:void 0,hideCTA:void 0,smallHeader:void 0,adaptContainerWidth:void 0,children:void 0,style:void 0,href:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(f,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o=c(r(4)),n=c(r(117));t.default=l;var a=c(r(0)),i=c(r(210)),s=c(r(118));function c(e){return e&&e.__esModule?e:{default:e}}function l(e){var t=e.children,r=e.className,o=e.spinner,c=e.spinnerConfig,l=(0,n.default)(e,["children","className","spinner","spinnerConfig"]);return a.default.createElement(s.default,l,function(e){var n=e.loading,s=e.handleClick;return a.default.createElement("button",{type:"button",className:r,onClick:s,disabled:n},t,o&&n&&a.default.createElement(i.default,{config:c}))})}l.defaultProps=(0,o.default)({},s.default.defaultProps,{className:void 0,spinnerConfig:{},spinner:!0})},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=r(0),i=l(a),s=l(r(17)),c=l(r(213));function l(e){return e&&e.__esModule?e:{default:e}}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){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.Component),n(t,[{key:"componentDidMount",value:function(){this.updateSpinner()}},{key:"componentDidUpdate",value:function(){this.updateSpinner()}},{key:"componentWillUnmount",value:function(){this.spinner&&(this.spinner.stop(),this.spinner=null)}},{key:"updateSpinner",value:function(){var e=this.props.loaded;e||this.spinner?e&&this.spinner&&(this.spinner.stop(),this.spinner=null):(this.spinner=new c.default(this.props.config),this.spinner.spin(this.refs.loader))}},{key:"render",value:function(){var e=this.props,t=e.loaded,r=e.className;return t?this.props.children?a.Children.only(this.props.children):null:i.default.createElement("div",{className:r,ref:"loader"})}}]),t}();u.propTypes={className:s.default.string,config:s.default.object.isRequired,loaded:s.default.bool.isRequired,children:s.default.node},u.defaultProps={config:{},loaded:!1,className:"loader"},t.default=u},function(e,t,r){"use strict";var o=r(212);function n(){}function a(){}a.resetWarningCache=n,e.exports=function(){function e(e,t,r,n,a,i){if(i!==o){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var r={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:n};return r.PropTypes=r,r}},function(e,t,r){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,r){(function(e){var o,n,a;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)}a=function(){"use strict";var e,t,r=["webkit","Moz","ms","O"],o={};function n(e,t){var r,o=document.createElement(e||"div");for(r in t)o[r]=t[r];return o}function a(e){for(var t=1,r=arguments.length;t<r;t++)e.appendChild(arguments[t]);return e}function i(r,n,a,i){var s=["opacity",n,~~(100*r),a,i].join("-"),c=.01+a/i*100,l=Math.max(1-(1-r)/n*(100-c),r),u=e.substring(0,e.indexOf("Animation")).toLowerCase(),d=u&&"-"+u+"-"||"";return o[s]||(t.insertRule("@"+d+"keyframes "+s+"{0%{opacity:"+l+"}"+c+"%{opacity:"+r+"}"+(c+.01)+"%{opacity:1}"+(c+n)%100+"%{opacity:"+r+"}100%{opacity:"+l+"}}",t.cssRules.length),o[s]=1),s}function s(e,t){var o,n,a=e.style;if(void 0!==a[t=t.charAt(0).toUpperCase()+t.slice(1)])return t;for(n=0;n<r.length;n++)if(void 0!==a[o=r[n]+t])return o}function c(e,t){for(var r in t)e.style[s(e,r)||r]=t[r];return e}function l(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var o in r)void 0===e[o]&&(e[o]=r[o])}return e}function u(e,t){return"string"==typeof e?e:e[t%e.length]}var d,p={lines:12,length:7,width:5,radius:10,scale:1,corners:1,color:"#000",opacity:.25,rotate:0,direction:1,speed:1,trail:100,fps:20,zIndex:2e9,className:"spinner",top:"50%",left:"50%",shadow:!1,hwaccel:!1,position:"absolute"};function _(e){this.opts=l(e||{},_.defaults,p)}if(_.defaults={},l(_.prototype,{spin:function(t){this.stop();var r=this,o=r.opts,a=r.el=n(null,{className:o.className});if(c(a,{position:o.position,width:0,zIndex:o.zIndex,left:o.left,top:o.top}),t&&t.insertBefore(a,t.firstChild||null),a.setAttribute("role","progressbar"),r.lines(a,r.opts),!e){var i,s=0,l=(o.lines-1)*(1-o.direction)/2,u=o.fps,d=u/o.speed,p=(1-o.opacity)/(d*o.trail/100),_=d/o.lines;!function e(){s++;for(var t=0;t<o.lines;t++)i=Math.max(1-(s+(o.lines-t)*_)%d*p,o.opacity),r.opacity(a,t*o.direction+l,i,o);r.timeout=r.el&&setTimeout(e,~~(1e3/u))}()}return r},stop:function(){var e=this.el;return e&&(clearTimeout(this.timeout),e.parentNode&&e.parentNode.removeChild(e),this.el=void 0),this},lines:function(t,r){var o,s=0,l=(r.lines-1)*(1-r.direction)/2;function d(e,t){return c(n(),{position:"absolute",width:r.scale*(r.length+r.width)+"px",height:r.scale*r.width+"px",background:e,boxShadow:t,transformOrigin:"left",transform:"rotate("+~~(360/r.lines*s+r.rotate)+"deg) translate("+r.scale*r.radius+"px,0)",borderRadius:(r.corners*r.scale*r.width>>1)+"px"})}for(;s<r.lines;s++)o=c(n(),{position:"absolute",top:1+~(r.scale*r.width/2)+"px",transform:r.hwaccel?"translate3d(0,0,0)":"",opacity:r.opacity,animation:e&&i(r.opacity,r.trail,l+s*r.direction,r.lines)+" "+1/r.speed+"s linear infinite"}),r.shadow&&a(o,c(d("#000","0 0 4px #000"),{top:"2px"})),a(t,a(o,d(u(r.color,s),"0 0 1px rgba(0,0,0,.1)")));return t},opacity:function(e,t,r){t<e.childNodes.length&&(e.childNodes[t].style.opacity=r)}}),"undefined"!==typeof document){d=n("style",{type:"text/css"}),a(document.getElementsByTagName("head")[0],d),t=d.sheet||d.styleSheet;var f=c(n("group"),{behavior:"url(#default#VML)"});!s(f,"transform")&&f.adj?function(){function e(e,t){return n("<"+e+' xmlns="urn:schemas-microsoft.com:vml" class="spin-vml">',t)}t.addRule(".spin-vml","behavior:url(#default#VML)"),_.prototype.lines=function(t,r){var o=r.scale*(r.length+r.width),n=2*r.scale*o;function i(){return c(e("group",{coordsize:n+" "+n,coordorigin:-o+" "+-o}),{width:n,height:n})}var s,l=-(r.width+r.length)*r.scale*2+"px",d=c(i(),{position:"absolute",top:l,left:l});function p(t,n,s){a(d,a(c(i(),{rotation:360/r.lines*t+"deg",left:~~n}),a(c(e("roundrect",{arcsize:r.corners}),{width:o,height:r.scale*r.width,left:r.scale*r.radius,top:-r.scale*r.width>>1,filter:s}),e("fill",{color:u(r.color,t),opacity:r.opacity}),e("stroke",{opacity:0}))))}if(r.shadow)for(s=1;s<=r.lines;s++)p(s,-2,"progid:DXImageTransform.Microsoft.Blur(pixelradius=2,makeshadow=1,shadowopacity=.3)");for(s=1;s<=r.lines;s++)p(s);return a(t,d)},_.prototype.opacity=function(e,t,r,o){var n=e.firstChild;o=o.shadow&&o.lines||0,n&&t+o<n.childNodes.length&&(n=(n=(n=n.childNodes[t+o])&&n.firstChild)&&n.firstChild)&&(n.opacity=r)}}():e=s(f,"animation")}return _},"object"==i(e)&&e.exports?e.exports=a():void 0===(n="function"===typeof(o=a)?o.call(t,r,t,e):o)||(e.exports=n)}).call(t,r(23)(e))},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.href,r=e.width,o=e.showText,n=e.children;return u.default.createElement("div",{className:"fb-post","data-href":t,"data-width":r,"data-show-text":o},n)},t}(l.PureComponent),o.defaultProps={width:void 0,showText:void 0,children:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.href,r=e.width,o=e.showText,n=e.allowFullScreen,a=e.autoPlay,i=e.showCaptions,s=e.children;return u.default.createElement("div",{className:"fb-video","data-href":t,"data-width":r,"data-show-text":o,"data-show-captions":i,"data-autoplay":a,"data-allowfullscreen":n},s)},t}(l.PureComponent),o.defaultProps={width:void 0,showText:void 0,allowFullScreen:void 0,autoPlay:void 0,showCaptions:void 0,children:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=_(r(4)),i=_(r(1)),s=_(r(2)),c=_(r(3)),l=r(0),u=_(l),d=_(r(8)),p=_(r(16));function _(e){return e&&e.__esModule?e:{default:e}}var f=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.colorScheme,r=e.href,o=void 0===r?(0,p.default)():r,n=e.numPosts,a=e.orderBy,i=e.width,s=e.children,c=e.mobile;return u.default.createElement("div",{className:"fb-comments","data-colorscheme":t,"data-numposts":n,"data-href":o,"data-order-by":a,"data-width":i,"data-skin":t,"data-mobile":c},s)},t}(l.PureComponent),o.defaultProps={href:void 0,numPosts:void 0,orderBy:void 0,width:void 0,colorScheme:void 0,children:void 0,mobile:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(f,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=_(r(4)),i=_(r(1)),s=_(r(2)),c=_(r(3)),l=r(0),u=_(l),d=_(r(8)),p=_(r(16));function _(e){return e&&e.__esModule?e:{default:e}}var f=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.href,r=void 0===t?(0,p.default)():t,o=e.children;return u.default.createElement("span",{className:"fb-comments-count","data-href":r},o)},t}(l.PureComponent),o.defaultProps={href:void 0,children:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(f,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=b(r(4)),i=b(r(9)),s=b(r(10)),c=b(r(1)),l=b(r(2)),u=b(r(3)),d=r(0),p=b(d),_=b(r(16)),f=b(r(72)),h=b(r(42));function b(e){return e&&e.__esModule?e:{default:e}}var m=(n=o=function(e){function t(){var r,o,n,a,u=this;(0,c.default)(this,t);for(var d=arguments.length,p=Array(d),h=0;h<d;h++)p[h]=arguments[h];return r=o=(0,l.default)(this,e.call.apply(e,[this].concat(p))),o.handleClick=(a=(0,s.default)(i.default.mark(function e(t){var r;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return t.preventDefault(),r=o.props.handleProcess,e.abrupt("return",r(function(){var e=(0,s.default)(i.default.mark(function e(t){var r,n,a,s,c,l,d,p,h,b,m,y,v,g,w;return i.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return r=o.props,n=r.link,a=void 0===n?(0,_.default)():n,s=r.display,c=r.appId,l=void 0===c?t.getAppId():c,d=r.redirectURI,p=r.from,h=r.to,b=r.picture,m=r.source,y=r.name,v=r.caption,g=r.description,w=r.dataRef,e.abrupt("return",t.ui((0,f.default)({method:"feed",link:a,display:s,app_id:l,redirect_uri:d,from:p,to:h,picture:b,source:m,name:y,caption:v,description:g,ref:w})));case 2:case"end":return e.stop()}},e,u)}));return function(t){return e.apply(this,arguments)}}()));case 3:case"end":return e.stop()}},e,u)})),function(e){return a.apply(this,arguments)}),n=r,(0,l.default)(o,n)}return(0,u.default)(t,e),t.prototype.render=function(){var e=this.props,t=e.children,r=e.loading,o=e.error,n=e.data;return t({loading:r,handleClick:this.handleClick,error:o,data:n})},t}(d.Component),o.defaultProps={link:void 0,display:void 0,appId:void 0,redirectURI:void 0,from:void 0,to:void 0,source:void 0,picture:void 0,name:void 0,caption:void 0,description:void 0,dataRef:void 0},n);t.default=(0,d.forwardRef)(function(e,t){return p.default.createElement(h.default,null,function(r){var o=r.loading,n=r.handleProcess,i=r.error,s=r.data;return p.default.createElement(m,(0,a.default)({},e,{loading:o,handleProcess:n,data:s,error:i,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=_(r(4)),i=_(r(1)),s=_(r(2)),c=_(r(3)),l=r(0),u=_(l),d=_(r(8)),p=_(r(16));function _(e){return e&&e.__esModule?e:{default:e}}var f=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.style,r=e.href,o=void 0===r?(0,p.default)():r,n=e.width,a=e.showSocialContext,i=e.showMetaData,s=e.children,c=e.skin;return u.default.createElement("div",{className:"fb-group",style:t,"data-href":o,"data-width":n,"data-show-social-context":a,"data-show-metadata":i,"data-skin":c},s)},t}(l.PureComponent),o.defaultProps={showSocialContext:void 0,showMetaData:void 0,width:void 0,children:void 0,style:void 0,href:void 0,skin:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(f,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0,t.default=void 0;var o,n=f(r(1)),a=f(r(2)),i=f(r(3)),s=f(r(9)),c=f(r(10)),l=(o=(0,c.default)(s.default.mark(function e(t){var r;return s.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.getLoginStatus();case 2:return r=e.sent,e.abrupt("return",r.status);case 4:case"end":return e.stop()}},e,this)})),function(e){return o.apply(this,arguments)}),u=r(0),d=f(u),p=f(r(25)),_=f(r(74));function f(e){return e&&e.__esModule?e:{default:e}}var h=function(e){function t(){var r,o,i,u,d=this;(0,n.default)(this,t);for(var p=arguments.length,_=Array(p),f=0;f<p;f++)_[f]=arguments[f];return r=o=(0,a.default)(this,e.call.apply(e,[this].concat(_))),o.state={loading:!0},o.handleReady=(u=(0,c.default)(s.default.mark(function e(t){return s.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=o,e.next=3,l(t);case 3:e.t1=e.sent,e.t2={status:e.t1,loading:!1},e.t0.setState.call(e.t0,e.t2);case 6:case"end":return e.stop()}},e,d)})),function(e){return u.apply(this,arguments)}),o.handleStatusChange=function(e){o.setState({status:e.status,loading:!1})},i=r,(0,a.default)(o,i)}return(0,i.default)(t,e),t.prototype.render=function(){var e=this.props.children,t=this.state,r=t.status,o=t.loading;return d.default.createElement(p.default,{onReady:this.handleReady},d.default.createElement(_.default,{event:"auth.statusChange",onChange:this.handleStatusChange},e({status:r,loading:o})))},t}(u.Component);t.default=h},function(e,t,r){"use strict";t.__esModule=!0,t.default=void 0;var o,n,a=b(r(9)),i=b(r(10)),s=b(r(1)),c=b(r(2)),l=b(r(3)),u=r(0),d=b(u),p=b(r(25)),_=b(r(74)),f=b(r(73)),h=b(r(71));function b(e){return e&&e.__esModule?e:{default:e}}var m=(n=o=function(e){function t(){var r,o,n,l,u=this;(0,s.default)(this,t);for(var d=arguments.length,p=Array(d),_=0;_<d;_++)p[_]=arguments[_];return r=o=(0,c.default)(this,e.call.apply(e,[this].concat(p))),o.state={loading:!0},o.handleReady=(l=(0,i.default)(a.default.mark(function e(t){return a.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:o.api=t,o.updateProfile();case 2:case"end":return e.stop()}},e,u)})),function(e){return l.apply(this,arguments)}),o.handleStatusChange=function(){o.updateProfile()},n=r,(0,c.default)(o,n)}return(0,l.default)(t,e),t.prototype.updateProfile=function(){var e=(0,i.default)(a.default.mark(function e(){var t,r,o;return a.default.wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(t=this.api,r=this.props.fields,t){e.next=3;break}return e.abrupt("return");case 3:return e.prev=3,e.next=6,t.getLoginStatus();case 6:if(e.sent.status===h.default.CONNECTED){e.next=10;break}return this.setState({profile:void 0,loading:!1,error:void 0}),e.abrupt("return");case 10:return e.next=12,t.getProfile({fields:r});case 12:o=e.sent,this.setState({profile:o,loading:!1,error:void 0}),e.next=19;break;case 16:e.prev=16,e.t0=e.catch(3),this.setState({profile:void 0,loading:!1,error:e.t0});case 19:case"end":return e.stop()}},e,this,[[3,16]])}));return function(){return e.apply(this,arguments)}}(),t.prototype.render=function(){var e=this.props.children,t=this.state,r=t.profile,o=t.loading,n=t.error;return d.default.createElement(p.default,{onReady:this.handleReady},d.default.createElement(_.default,{event:"auth.statusChange",onChange:this.handleStatusChange},e({profile:r,loading:o,error:n})))},t}(u.Component),o.defaultProps={fields:f.default},n);t.default=m},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.minimized,r=e.children,o=e.pageId,n=e.themeColor,a=e.loggedInGreeting,i=e.loggedOutGreeting,s=e.dataRef;return u.default.createElement("div",{className:"fb-customerchat",page_id:o,minimized:t,theme_color:n,logged_in_greeting:a,logged_out_greeting:i,"data-ref":s},r)},t}(l.PureComponent),o.defaultProps={minimized:void 0,children:void 0,themeColor:void 0,loggedInGreeting:void 0,loggedOutGreeting:void 0,dataRef:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.color,r=e.messengerAppId,o=e.pageId,n=e.children,a=e.size;return u.default.createElement("div",{className:"fb-messengermessageus",messenger_app_id:r,page_id:o,color:t,size:a},n)},t}(l.PureComponent),o.defaultProps={color:void 0,size:void 0,children:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.origin,r=e.prechecked,o=e.allowLogin,n=e.userRef,a=e.messengerAppId,i=e.pageId,s=e.children,c=e.size,l=e.centerAlign,d=e.skin;return u.default.createElement("div",{className:"fb-messenger-checkbox",messenger_app_id:a,page_id:i,size:c,origin:t,user_ref:n,prechecked:r,allow_login:o,skin:d,center_align:l},s)},t}(l.PureComponent),o.defaultProps={size:void 0,allowLogin:void 0,prechecked:void 0,userRef:void 0,children:void 0,origin:void 0,skin:void 0,centerAlign:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0;var o,n,a=p(r(4)),i=p(r(1)),s=p(r(2)),c=p(r(3)),l=r(0),u=p(l),d=p(r(8));function p(e){return e&&e.__esModule?e:{default:e}}var _=(n=o=function(e){function t(){return(0,i.default)(this,t),(0,s.default)(this,e.apply(this,arguments))}return(0,c.default)(t,e),t.prototype.componentDidUpdate=function(){(0,this.props.handleParse)()},t.prototype.render=function(){var e=this.props,t=e.color,r=e.messengerAppId,o=e.pageId,n=e.children,a=e.dataRef,i=e.size;return u.default.createElement("div",{className:"fb-send-to-messenger",messenger_app_id:r,page_id:o,"data-color":t,"data-size":i,"data-ref":a},n)},t}(l.PureComponent),o.defaultProps={color:void 0,size:void 0,dataRef:void 0,children:void 0},n);t.default=(0,l.forwardRef)(function(e,t){return u.default.createElement(d.default,null,function(r){var o=r.handleParse;return u.default.createElement(_,(0,a.default)({},e,{handleParse:o,ref:t}))})})},function(e,t,r){"use strict";t.__esModule=!0,t.default={SMALL:"small",LARGE:"large"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={STANDARD:"standard",BUTTON_COUNT:"button_count",BUTTON:"button",BOX_COUNT:"box_count"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={LIGHT:"light",DARK:"dark"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={LIKE:"like",RECOMMEND:"recommend"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={SOCIAL:"social",REVERSE_TIME:"reverse_time",TIME:"time"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={SMALL:"small",MEDIUM:"medium",STANDARD:"standard",LARGE:"large",XLARGE:"xlarge"}},function(e,t,r){"use strict";t.__esModule=!0,t.default={BLUE:"blue",WHITE:"white"}},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(95);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,i,l;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,o["Component"]),r=t,l=[{key:"css",value:function(e){return[]}}],(i=[{key:"shouldComponentUpdate",value:function(e,t){return e.page_url!==this.props.page_url||e.num_posts!==this.props.num_posts||e.color_scheme!==this.props.color_scheme||e.order_by!==this.props.order_by}},{key:"render",value:function(){var e=this.props,t=""===e.fb_app_id?"252971358753113":"".concat(e.fb_app_id),r=""===e.page_url?"https://www.facebook.com/divisupreme/":"".concat(e.page_url);return n.a.createElement("div",{className:"dsm-facebook-comments"},n.a.createElement(a.FacebookProvider,{appId:t},n.a.createElement(a.Comments,{href:r,numPosts:e.num_posts,colorScheme:e.color_scheme,orderBy:e.order_by,width:"100%"})))}}])&&s(r.prototype,i),l&&s(r,l),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_facebook_comments"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(22),i=r.n(a),s=r(75);r.n(s);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 l(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function u(e,t){return!t||"object"!==c(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}var d=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,s;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,o["Component"]),r=t,s=[{key:"css",value:function(e){var t=[];if("on"===e.show_validation&&t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-submit:hover:after",declaration:"margin-left: .3em !important;"}]),e.button_one_icon&&t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-submit:hover:after",declaration:"margin-left: .3em !important;"}]),e.input_background_color&&t.push([{selector:"%%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-text, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-tel, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-url, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-quiz, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-number, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-textarea, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-select, %%order_class%%.dsm_contact_form_7 .wpcf7-form-control.wpcf7-date",declaration:"background-color: ".concat(e.input_background_color,";")}]),"left"!==e.button_alignment&&t.push([{selector:"%%order_class%% .wpcf7-form p:nth-last-of-type(1)",declaration:"text-align: ".concat(e.button_alignment,";")}]),e.label_bottom_spacing&&t.push([{selector:"%%order_class%% label",declaration:"margin-bottom: ".concat(e.label_bottom_spacing,";")}]),e.file_background_color&&t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-file",declaration:"background-color: ".concat(e.file_background_color,";")}]),e.error_msg_background_color&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"background-color: ".concat(e.error_msg_background_color,";")}]),e.validation_error_background_color&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"background-color: ".concat(e.validation_error_background_color,";")}]),e.validation_success_background_color&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"background-color: ".concat(e.validation_success_background_color,";")}]),e.border_radii_error_msg){var r=e.border_radii_error_msg,o="",n="",a="",i="";o=""!==r.split("|")[1]?r.split("|")[1]:"0px",n=""!==r.split("|")[2]?r.split("|")[2]:"0px",a=""!==r.split("|")[3]?r.split("|")[3]:"0px",i=""!==r.split("|")[4]?r.split("|")[4]:"0px",t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-radius: ".concat(o," ").concat(n," ").concat(a," ").concat(i,";")}])}if(e.border_width_all_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-width: ".concat(e.border_width_all_error_msg,";")}]),e.border_color_all_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-color: ".concat(e.border_color_all_error_msg,";")}]),e.border_style_all_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-style: ".concat(e.border_style_all_error_msg,";")}]),e.border_width_top_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-top-width: ".concat(e.border_width_top_error_msg,";")}]),e.border_color_top_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-top-color: ".concat(e.border_color_top_error_msg,";")}]),e.border_style_top_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-top-style: ".concat(e.border_style_top_error_msg,";")}]),e.border_width_right_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-right-width: ".concat(e.border_width_right_error_msg,";")}]),e.border_color_right_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-right-color: ".concat(e.border_color_right_error_msg,";")}]),e.border_style_right_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-right-style: ".concat(e.border_style_right_error_msg,";")}]),e.border_width_bottom_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-bottom-width: ".concat(e.border_width_bottom_error_msg,";")}]),e.border_color_bottom_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-bottom-color: ".concat(e.border_color_bottom_error_msg,";")}]),e.border_style_bottom_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-bottom-style: ".concat(e.border_style_bottom_error_msg,";")}]),e.border_width_left_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-left-width: ".concat(e.border_width_left_error_msg,";")}]),e.border_color_left_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-left-color: ".concat(e.border_color_left_error_msg,";")}]),e.border_style_left_error_msg&&t.push([{selector:"%%order_class%% .wpcf7-not-valid-tip",declaration:"border-left-style: ".concat(e.border_style_left_error_msg,";")}]),e.border_radii_error_validation){var s=e.border_radii_error_validation,c="",l="",u="",d="";c=""!==s.split("|")[1]?s.split("|")[1]:"0px",l=""!==s.split("|")[2]?s.split("|")[2]:"0px",u=""!==s.split("|")[3]?s.split("|")[3]:"0px",d=""!==s.split("|")[4]?s.split("|")[4]:"0px",t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-radius: ".concat(c," ").concat(l," ").concat(u," ").concat(d,";")}])}if(e.border_width_all_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-width: ".concat(e.border_width_all_error_validation,";")}]),e.border_color_all_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-color: ".concat(e.border_color_all_error_validation,";")}]),e.border_style_all_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-style: ".concat(e.border_style_all_error_validation,";")}]),e.border_width_top_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-top-width: ".concat(e.border_width_top_error_validation,";")}]),e.border_color_top_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-top-color: ".concat(e.border_color_top_error_validation,";")}]),e.border_style_top_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-top-style: ".concat(e.border_style_top_error_validation,";")}]),e.border_width_right_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-right-width: ".concat(e.border_width_right_error_validation,";")}]),e.border_color_right_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-right-color: ".concat(e.border_color_right_error_validation,";")}]),e.border_style_right_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-right-style: ".concat(e.border_style_right_error_validation,";")}]),e.border_width_bottom_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-bottom-width: ".concat(e.border_width_bottom_error_validation,";")}]),e.border_color_bottom_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-bottom-color: ".concat(e.border_color_bottom_error_validation,";")}]),e.border_style_bottom_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-bottom-style: ".concat(e.border_style_bottom_error_validation,";")}]),e.border_width_left_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-left-width: ".concat(e.border_width_left_error_validation,";")}]),e.border_color_left_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-left-color: ".concat(e.border_color_left_error_validation,";")}]),e.border_style_left_error_validation&&t.push([{selector:"%%order_class%% .wpcf7-validation-errors",declaration:"border-left-style: ".concat(e.border_style_left_error_validation,";")}]),e.border_radii_validation_success){var p=e.border_radii_validation_success,_="",f="",h="",b="";_=""!==p.split("|")[1]?p.split("|")[1]:"0px",f=""!==p.split("|")[2]?p.split("|")[2]:"0px",h=""!==p.split("|")[3]?p.split("|")[3]:"0px",b=""!==p.split("|")[4]?p.split("|")[4]:"0px",t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-radius: ".concat(_," ").concat(f," ").concat(h," ").concat(b,";")}])}if(e.border_width_all_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-width: ".concat(e.border_width_all_validation_success,";")}]),e.border_color_all_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-color: ".concat(e.border_color_all_validation_success,";")}]),e.border_style_all_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-style: ".concat(e.border_style_all_validation_success,";")}]),e.border_width_top_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-top-width: ".concat(e.border_width_top_validation_success,";")}]),e.border_color_top_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-top-color: ".concat(e.border_color_top_validation_success,";")}]),e.border_style_top_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-top-style: ".concat(e.border_style_top_validation_success,";")}]),e.border_width_right_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-right-width: ".concat(e.border_width_right_validation_success,";")}]),e.border_color_right_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-right-color: ".concat(e.border_color_right_validation_success,";")}]),e.border_style_right_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-right-style: ".concat(e.border_style_right_validation_success,";")}]),e.border_width_bottom_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-bottom-width: ".concat(e.border_width_bottom_validation_success,";")}]),e.border_color_bottom_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-bottom-color: ".concat(e.border_color_bottom_validation_success,";")}]),e.border_style_bottom_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-bottom-style: ".concat(e.border_style_bottom_validation_success,";")}]),e.border_width_left_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-left-width: ".concat(e.border_width_left_validation_success,";")}]),e.border_color_left_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-left-color: ".concat(e.border_color_left_validation_success,";")}]),e.border_style_left_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-left-style: ".concat(e.border_style_left_validation_success,";")}]),e.file_padding){var m=e.file_padding,y="",v="",g="",w="";y=""!==m.split("|")[0]?m.split("|")[0]:"0px",v=""!==m.split("|")[1]?m.split("|")[1]:"0px",g=""!==m.split("|")[2]?m.split("|")[2]:"0px",w=""!==m.split("|")[3]?m.split("|")[3]:"0px",t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-file",declaration:"padding: ".concat(y," ").concat(v," ").concat(g," ").concat(w,";")}])}if(e.file_padding_tablet){var x=e.file_padding_tablet,k="",O="",S="",j="";k=""!==x.split("|")[0]?x.split("|")[0]:"0px",O=""!==x.split("|")[1]?x.split("|")[1]:"0px",S=""!==x.split("|")[2]?x.split("|")[2]:"0px",j=""!==x.split("|")[3]?x.split("|")[3]:"0px",t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-file",declaration:"padding: ".concat(k," ").concat(O," ").concat(S," ").concat(j,";"),device:"tablet"}])}if(e.file_padding_phone){var E=e.file_padding_phone,P="",z="",C="",T="";P=""!==E.split("|")[0]?E.split("|")[0]:"0px",z=""!==E.split("|")[1]?E.split("|")[1]:"0px",C=""!==E.split("|")[2]?E.split("|")[2]:"0px",T=""!==E.split("|")[3]?E.split("|")[3]:"0px",t.push([{selector:"%%order_class%% .wpcf7-form-control.wpcf7-file",declaration:"padding: ".concat(P," ").concat(z," ").concat(C," ").concat(T,";"),device:"phone"}])}return t}}],(a=[{key:"componentDidUpdate",value:function(){var e=this.props,t=this.refs.cf7,r=window.ET_Builder.API.Utils.processFontIcon(e.button_one_icon);i.a.ajax({type:"POST",url:window.ETBuilderBackend.ajaxUrl,data:{action:"dsm_load_cf7_library",et_admin_load_nonce:window.et_fb_options.et_admin_load_nonce,cf7_library:e.cf7_library},success:function(o){"0"!==o?(i()(t).html(o),e.button_one_icon&&(i()(t).find(".wpcf7-submit").addClass("et_pb_custom_button_icon"),i()(t).find(".wpcf7-submit").attr("data-icon",r)),"on"===e.show_validation&&(i()(t).find("input.wpcf7-validates-as-required").after('<span role="alert" class="wpcf7-not-valid-tip">The field is required.</span>'),i()(t).find(".wpcf7-submit").after('<div class="wpcf7-response-output wpcf7-validation-errors" role="alert">One or more fields have an error. Please check and try again.</div><div class="wpcf7-response-output wpcf7-mail-sent-ok" style="display: block;" role="alert">Thank you for your message. It has been sent.</div>'))):i()(t).html("Contact Form 7 plugin not found.")},error:function(e){}})}},{key:"render",value:function(){return n.a.createElement(o.Fragment,null,n.a.createElement("div",{ref:"cf7",className:"dsm-contact-form-7"}))}}])&&l(r.prototype,a),s&&l(r,s),t}();Object.defineProperty(d,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_contact_form_7"}),t.a=d},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(22),i=r.n(a),s=r(76);r.n(s);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 l(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function u(e,t){return!t||"object"!==c(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}var d=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),u(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,s;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,o["Component"]),r=t,s=[{key:"css",value:function(e){var t=[];"on"===e.show_validation&&t.push([{selector:"%%order_class%% .et_pb_button:hover:after",declaration:"margin-left: .3em !important;"}]);var r=e.input_textarea_select_margin_bottom_last_edited&&e.input_textarea_select_margin_bottom_last_edited.startsWith("on"),o=e.input_textarea_select_margin_bottom,n=r&&e.input_textarea_select_margin_bottom_tablet?e.input_textarea_select_margin_bottom_tablet:o,a=r&&e.input_textarea_select_margin_bottom_phone?e.input_textarea_select_margin_bottom_phone:n;"15px"!==e.input_textarea_select_margin_bottom&&t.push([{selector:"%%order_class%% .form-group",declaration:"margin-bottom: ".concat(o)}]),e.input_textarea_select_margin_bottom_tablet&&t.push([{selector:"%%order_class%% .form-group",declaration:"margin-bottom: ".concat(n),device:"tablet"}]),e.input_textarea_select_margin_bottom_phone&&t.push([{selector:"%%order_class%% .form-group",declaration:"margin-bottom: ".concat(a),device:"phone"}]);var i=e.button_margin_top_last_edited&&e.button_margin_top_last_edited.startsWith("on"),s=e.button_margin_top,c=i&&e.button_margin_top_tablet?e.button_margin_top_tablet:s,l=i&&e.button_margin_top_phone?e.button_margin_top_phone:c;"20px"!==e.button_margin_top&&t.push([{selector:"%%order_class%% .et_pb_button_module_wrapper",declaration:"margin-top: ".concat(s)}]),e.button_margin_top_tablet&&t.push([{selector:"%%order_class%% .et_pb_button_module_wrapper",declaration:"margin-top: ".concat(c),device:"tablet"}]),e.button_margin_top_phone&&t.push([{selector:"%%order_class%% .et_pb_button_module_wrapper",declaration:"margin-top: ".concat(l),device:"phone"}]),e.button_one_icon&&t.push([{selector:"%%order_class%% .et_pb_button:hover:after",declaration:"margin-left: .3em !important;"}]),e.button_advanced_file_icon&&t.push([{selector:"%%order_class%% .dsm-cf-advanced-button:hover:after",declaration:"margin-left: .3em !important;"}]);var u=e.hr_gap_last_edited&&e.hr_gap_last_edited.startsWith("on"),d=e.hr_gap,p=u&&e.hr_gap_tablet?e.hr_gap_tablet:d,_=u&&e.hr_gap_phone?e.hr_gap_phone:p;if("0.5em"!==e.hr_gap&&t.push([{selector:"%%order_class%% .dsm-cf-html hr",declaration:"margin-block-start: ".concat(d,"; margin-block-end: ").concat(d,";")}]),e.hr_gap_tablet&&t.push([{selector:"%%order_class%% .dsm-cf-html hr",declaration:"margin-block-start: ".concat(p,"; margin-block-end: ").concat(p,";"),device:"tablet"}]),e.hr_gap_phone&&t.push([{selector:"%%order_class%% .dsm-cf-html hr",declaration:"margin-block-start: ".concat(_,"; margin-block-end: ").concat(_,";"),device:"phone"}]),"#666666"!==e.hr_color&&t.push([{selector:"%%order_class%% .dsm-cf-html hr",declaration:"border-color: ".concat(e.hr_color,";")}]),"#ee0000"!==e.label_required_asterisk_color&&t.push([{selector:"%%order_class%% label.control-label>span.field_required",declaration:"color: ".concat(e.label_required_asterisk_color," !important;")}]),e.description_background_color&&t.push([{selector:"%%order_class%% .form-group>div span.help-block",declaration:"background-color: ".concat(e.description_background_color,";")}]),e.input_background_color&&t.push([{selector:"%%order_class%% input.text,%%order_class%% input.title,%%order_class%% input[type=email],%%order_class%% input[type=url],%%order_class%% input[type=password],%%order_class%% input[type=tel],%%order_class%% input[type=text],%%order_class%% input[type=number],%%order_class%% input[type=phone],%%order_class%% input[type=date],%%order_class%% select.form-control,%%order_class%% textarea",declaration:"background-color: ".concat(e.input_background_color,";")}]),e.input_textarea_select_text_color&&t.push([{selector:"%%order_class%% .dsm-caldera-forms-select:after",declaration:"border-color: ".concat(e.input_textarea_select_text_color," transparent transparent;")}]),"on"===e.radio_style&&("#2ea3f2"!==e.radio_checked_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_radio .dsm-cf-radio:after",declaration:"background-color: ".concat(e.radio_checked_color,";")}]),"#eeeeee"!==e.radio_checked_background_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_radio .dsm-radio input[type=radio]:checked ~ .dsm-cf-radio",declaration:"background-color: ".concat(e.radio_checked_background_color,";")}]),"#eeeeee"!==e.radio_background_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_radio .dsm-radio .dsm-cf-radio",declaration:"background-color: ".concat(e.radio_background_color,";")}])),"on"===e.checkbox_style&&("#2ea3f2"!==e.checkbox_checked_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_checkbox .dsm-checkbox input[type=checkbox]:checked ~ .dsm-cf-checkbox:after",declaration:"color: ".concat(e.checkbox_checked_color,";")}]),"#eeeeee"!==e.checkbox_checked_background_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_checkbox .dsm-checkbox input[type=checkbox]:checked ~ .dsm-cf-checkbox",declaration:"background-color: ".concat(e.checkbox_checked_background_color,";")}]),"#eeeeee"!==e.checkbox_background_color&&t.push([{selector:"%%order_class%% .dsm_cf_custom_checkbox .dsm-checkbox .dsm-cf-checkbox",declaration:"background-color: ".concat(e.checkbox_background_color,";")}])),"left"!==e.button_alignment&&t.push([{selector:"%%order_class%% .et_pb_button_module_wrapper",declaration:"text-align: ".concat(e.button_alignment,";")}]),"5px"!==e.label_bottom_spacing&&t.push([{selector:"%%order_class%% label.control-label",declaration:"margin-bottom: ".concat(e.label_bottom_spacing,";")}]),e.file_background_color&&t.push([{selector:"%%order_class%% .file-prevent-overflow",declaration:"background-color: ".concat(e.file_background_color,";")}]),e.error_msg_background_color&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"background-color: ".concat(e.error_msg_background_color,";")}]),e.validation_success_background_color&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"background-color: ".concat(e.validation_success_background_color,";")}]),e.border_radii_error_validation){var f=e.border_radii_error_validation,h="",b="",m="",y="";h=""!==f.split("|")[1]?f.split("|")[1]:"0px",b=""!==f.split("|")[2]?f.split("|")[2]:"0px",m=""!==f.split("|")[3]?f.split("|")[3]:"0px",y=""!==f.split("|")[4]?f.split("|")[4]:"0px",t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-radius: ".concat(h," ").concat(b," ").concat(m," ").concat(y,";")}])}if(e.border_width_all_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-width: ".concat(e.border_width_all_error_validation,";")}]),e.border_color_all_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-color: ".concat(e.border_color_all_error_validation,";")}]),e.border_style_all_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-style: ".concat(e.border_style_all_error_validation,";")}]),e.border_width_top_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-top-width: ".concat(e.border_width_top_error_validation,";")}]),e.border_color_top_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-top-color: ".concat(e.border_color_top_error_validation,";")}]),e.border_style_top_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-top-style: ".concat(e.border_style_top_error_validation,";")}]),e.border_width_right_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-right-width: ".concat(e.border_width_right_error_validation,";")}]),e.border_color_right_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-right-color: ".concat(e.border_color_right_error_validation,";")}]),e.border_style_right_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-right-style: ".concat(e.border_style_right_error_validation,";")}]),e.border_width_bottom_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-bottom-width: ".concat(e.border_width_bottom_error_validation,";")}]),e.border_color_bottom_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-bottom-color: ".concat(e.border_color_bottom_error_validation,";")}]),e.border_style_bottom_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-bottom-style: ".concat(e.border_style_bottom_error_validation,";")}]),e.border_width_left_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-left-width: ".concat(e.border_width_left_error_validation,";")}]),e.border_color_left_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-left-color: ".concat(e.border_color_left_error_validation,";")}]),e.border_style_left_error_validation&&t.push([{selector:"%%order_class%% .has-error .help-block.caldera_ajax_error_block",declaration:"border-left-style: ".concat(e.border_style_left_error_validation,";")}]),e.border_radii_validation_success){var v=e.border_radii_validation_success,g="",w="",x="",k="";g=""!==v.split("|")[1]?v.split("|")[1]:"0px",w=""!==v.split("|")[2]?v.split("|")[2]:"0px",x=""!==v.split("|")[3]?v.split("|")[3]:"0px",k=""!==v.split("|")[4]?v.split("|")[4]:"0px",t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-radius: ".concat(g," ").concat(w," ").concat(x," ").concat(k,";")}])}e.border_width_all_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-width: ".concat(e.border_width_all_validation_success,";")}]),e.border_color_all_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-color: ".concat(e.border_color_all_validation_success,";")}]),e.border_style_all_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-style: ".concat(e.border_style_all_validation_success,";")}]),e.border_width_top_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-top-width: ".concat(e.border_width_top_validation_success,";")}]),e.border_color_top_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-top-color: ".concat(e.border_color_top_validation_success,";")}]),e.border_style_top_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-top-style: ".concat(e.border_style_top_validation_success,";")}]),e.border_width_right_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-right-width: ".concat(e.border_width_right_validation_success,";")}]),e.border_color_right_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-right-color: ".concat(e.border_color_right_validation_success,";")}]),e.border_style_right_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-right-style: ".concat(e.border_style_right_validation_success,";")}]),e.border_width_bottom_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-bottom-width: ".concat(e.border_width_bottom_validation_success,";")}]),e.border_color_bottom_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-bottom-color: ".concat(e.border_color_bottom_validation_success,";")}]),e.border_style_bottom_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-bottom-style: ".concat(e.border_style_bottom_validation_success,";")}]),e.border_width_left_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-left-width: ".concat(e.border_width_left_validation_success,";")}]),e.border_color_left_validation_success&&t.push([{selector:"%%order_class%% .wpcf7-mail-sent-ok",declaration:"border-left-color: ".concat(e.border_color_left_validation_success,";")}]),e.border_style_left_validation_success&&t.push([{selector:"%%order_class%% .alert.alert-success",declaration:"border-left-style: ".concat(e.border_style_left_validation_success,";")}]);var O=void 0!==e.file_padding__hover_enabled?e.file_padding__hover_enabled.split("|"):"",S=e.file_padding_last_edited,j=S&&S.startsWith("on");if(e.file_padding){var E=e.file_padding.split("|");t.push([{selector:"%%order_class%% .file-prevent-overflow",declaration:"padding-top: ".concat(E[0],"; padding-right: ").concat(E[1],"; padding-bottom: ").concat(E[2],"; padding-left: ").concat(E[3],";")}])}if("on"===O[0]&&"hover"===O[1]&&1===e.hover_enabled){var P=void 0!==e.file_padding__hover?e.file_padding__hover.split("|"):"";t.push([{selector:"%%order_class%% .file-prevent-overflow",declaration:"padding-top: ".concat(P[0],"; padding-right: ").concat(P[1],"; padding-bottom: ").concat(P[2],"; padding-left: ").concat(P[3],";")}])}if(e.file_padding_tablet&&j&&e.file_padding_tablet&&""!==e.file_padding_tablet){var z=e.file_padding_tablet.split("|");t.push([{selector:"%%order_class%% .file-prevent-overflow",declaration:"padding-top: ".concat(z[0],"; padding-right: ").concat(z[1],"; padding-bottom: ").concat(z[2],"; padding-left: ").concat(z[3],";"),device:"tablet"}])}if(e.file_padding_phone&&j&&e.file_padding_phone&&""!==e.file_padding_phone){var C=e.file_padding_phone.split("|");t.push([{selector:"%%order_class%% .file-prevent-overflow",declaration:"padding-top: ".concat(C[0],"; padding-right: ").concat(C[1],"; padding-bottom: ").concat(C[2],"; padding-left: ").concat(C[3],";"),device:"phone"}])}return t}}],(a=[{key:"componentDidUpdate",value:function(){var e=this.props,t=this.refs.cf,r=window.ET_Builder.API.Utils,o=r.processFontIcon(e.button_one_icon),n=r.processFontIcon(e.button_advanced_file_icon);i.a.ajax({type:"POST",url:window.ETBuilderBackend.ajaxUrl,data:{action:"dsm_load_caldera_forms",et_admin_load_nonce:window.et_fb_options.et_admin_load_nonce,cf_library:e.cf_library},success:function(r){"0"!==r?(i()(t).html(r),e.button_one_icon&&(i()(t).find(".dsm-cf-submit-button").addClass("et_pb_custom_button_icon"),i()(t).find(".dsm-cf-submit-button").attr("data-icon",o)),e.button_advanced_file_icon&&(i()(t).find(".dsm-cf-advanced-button").addClass("et_pb_custom_button_icon"),i()(t).find(".dsm-cf-advanced-button").attr("data-icon",n)),"on"===e.show_validation&&(i()(t).find("input[aria-required]").closest(".form-group").addClass("has-error"),i()(t).find("input[aria-required]").closest(".form-group").append('<span class="help-block caldera_ajax_error_block filled" aria-live="polite" style="display:block;"><span class="parsley-required">This value is required.</span></span>'),i()(t).find('textarea[required="required"]').closest(".form-group").addClass("has-error"),i()(t).find('textarea[required="required"]').closest(".form-group").append('<span class="help-block caldera_ajax_error_block filled" aria-live="polite"><span class="parsley-required">This value is required.</span></span>'),i()(t).find(".caldera-grid").after('<div class="alert alert-success" style="display: block; margin-top: 10px;" role="alert">Form has been successfully submitted. Thank you.</div>'))):i()(t).html("Caldera Forms plugin not found.")},error:function(e){}})}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{ref:"cf",className:"dsm_caldera_forms".concat("off"!==e.radio_style?" dsm_cf_custom_radio":"").concat("off"!==e.checkbox_style?" dsm_cf_custom_checkbox":"").concat(""!==e.description_background_color?" dsm_cf_description_label":"").concat(""!==e.error_msg_background_color?" dsm_cf_error_label":"").concat(""!==e.validation_success_background_color?" dsm_cf_success_label":"")}))}}])&&l(r.prototype,a),s&&l(r,s),t}();Object.defineProperty(d,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_caldera_forms"}),t.a=d},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(77);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){return[]}}],(a=[{key:"render",value:function(){var e=this.props,t="https://maps.google.com/maps?q="+encodeURIComponent(e.address)+"&t=m&z="+parseInt(e.zoom,10)+"&output=embed&iwloc=near&hl="+window.ETBuilderBackend.locale,r=e.address;return n.a.createElement(o.Fragment,null,n.a.createElement("iframe",{title:"Divi Supreme Embed Google Map",frameBorder:"0",scrolling:"no",marginHeight:"0",marginWidth:"0",src:t,"aria-label":r}))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_embed_google_map"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(238);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,i,l;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,o["Component"]),r=t,l=[{key:"css",value:function(e){var t=[];return"center"!==e.separator_gap&&t.push([{selector:"%%order_class%% .dsm-facebook-feed",declaration:"text-align: ".concat(e.fb_alignment,";")}]),t}}],(i=[{key:"_renderTwitter",value:function(){var e=this.props,t="off"===e.header?"noheader":"",r="off"===e.footer?" nofooter":"",i="off"===e.borders?" noborders":"",s="off"===e.scrollbar?" noscrollbar":"",c="on"===e.remove_background?" transparent":"";return"on"===e.limit_tweet?n.a.createElement(o.Fragment,null,n.a.createElement(a.Timeline,{dataSource:{sourceType:"profile",screenName:e.twitter_username},options:{username:e.twitter_username,height:parseInt(e.height,10),theme:e.theme,tweetLimit:parseInt(e.tweet_number,10),chrome:"".concat(t).concat(r).concat(i).concat(s).concat(c)}})):n.a.createElement(o.Fragment,null,n.a.createElement(a.Timeline,{dataSource:{sourceType:"profile",screenName:e.twitter_username},options:{username:e.twitter_username,height:parseInt(e.height,10),theme:e.theme,chrome:"".concat(t).concat(r).concat(i).concat(s).concat(c)}}))}},{key:"render",value:function(){return n.a.createElement(o.Fragment,null,this._renderTwitter())}}])&&s(r.prototype,i),l&&s(r,l),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_embed_twitter_timeline"}),t.a=l},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Tweet=t.Timeline=t.Share=t.Mention=t.Hashtag=t.Follow=void 0;var o=r(239),n=u(r(240)),a=u(r(318)),i=u(r(319)),s=u(r(320)),c=u(r(321)),l=u(r(322));function u(e){return e&&e.__esModule?e:{default:e}}o.canUseDOM&&r(141)("https://platform.twitter.com/widgets.js","twitter-widgets");t.Follow=n.default,t.Hashtag=a.default,t.Mention=i.default,t.Share=s.default,t.Timeline=c.default,t.Tweet=l.default},function(e,t,r){var o;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(){"use strict";var a=!("undefined"===typeof window||!window.document||!window.document.createElement),i={canUseDOM:a,canUseWorkers:"undefined"!==typeof Worker,canUseEventListeners:a&&!(!window.addEventListener&&!window.attachEvent),canUseViewport:a&&!!window.screen};"object"===n(r(119))&&r(119)?void 0===(o=function(){return i}.call(t,r,t,e))||(e.exports=o):"undefined"!==typeof e&&e.exports?e.exports=i:window.ExecutionEnvironment=i}()},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.username,i=n.options,s=n.onLoad;e.widgets.createFollowButton(a,t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("username")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={username:i.default.string.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){var o=r(242),n=r(27);e.exports=function e(t,r,a,i,s){return t===r||(null==t||null==r||!n(t)&&!n(r)?t!==t&&r!==r:o(t,r,a,i,e,s))}},function(e,t,r){var o=r(120),n=r(125),a=r(277),i=r(280),s=r(50),c=r(49),l=r(82),u=r(132),d=1,p="[object Arguments]",_="[object Array]",f="[object Object]",h=Object.prototype.hasOwnProperty;e.exports=function(e,t,r,b,m,y){var v=c(e),g=c(t),w=v?_:s(e),x=g?_:s(t),k=(w=w==p?f:w)==f,O=(x=x==p?f:x)==f,S=w==x;if(S&&l(e)){if(!l(t))return!1;v=!0,k=!1}if(S&&!k)return y||(y=new o),v||u(e)?n(e,t,r,b,m,y):a(e,t,w,r,b,m,y);if(!(r&d)){var j=k&&h.call(e,"__wrapped__"),E=O&&h.call(t,"__wrapped__");if(j||E){var P=j?e.value():e,z=E?t.value():t;return y||(y=new o),m(P,z,r,b,y)}}return!!S&&(y||(y=new o),i(e,t,r,b,m,y))}},function(e,t){e.exports=function(){this.__data__=[],this.size=0}},function(e,t,r){var o=r(44),n=Array.prototype.splice;e.exports=function(e){var t=this.__data__,r=o(t,e);return!(r<0)&&(r==t.length-1?t.pop():n.call(t,r,1),--this.size,!0)}},function(e,t,r){var o=r(44);e.exports=function(e){var t=this.__data__,r=o(t,e);return r<0?void 0:t[r][1]}},function(e,t,r){var o=r(44);e.exports=function(e){return o(this.__data__,e)>-1}},function(e,t,r){var o=r(44);e.exports=function(e,t){var r=this.__data__,n=o(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this}},function(e,t,r){var o=r(43);e.exports=function(){this.__data__=new o,this.size=0}},function(e,t){e.exports=function(e){var t=this.__data__,r=t.delete(e);return this.size=t.size,r}},function(e,t){e.exports=function(e){return this.__data__.get(e)}},function(e,t){e.exports=function(e){return this.__data__.has(e)}},function(e,t,r){var o=r(43),n=r(79),a=r(124),i=200;e.exports=function(e,t){var r=this.__data__;if(r instanceof o){var s=r.__data__;if(!n||s.length<i-1)return s.push([e,t]),this.size=++r.size,this;r=this.__data__=new a(s)}return r.set(e,t),this.size=r.size,this}},function(e,t,r){var o=r(121),n=r(257),a=r(35),i=r(123),s=/^\[object .+?Constructor\]$/,c=Function.prototype,l=Object.prototype,u=c.toString,d=l.hasOwnProperty,p=RegExp("^"+u.call(d).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");e.exports=function(e){return!(!a(e)||n(e))&&(o(e)?p:s).test(i(e))}},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o;o=function(){return this}();try{o=o||Function("return this")()||(0,eval)("this")}catch(e){"object"===("undefined"===typeof window?"undefined":r(window))&&(o=window)}e.exports=o},function(e,t,r){var o=r(46),n=Object.prototype,a=n.hasOwnProperty,i=n.toString,s=o?o.toStringTag:void 0;e.exports=function(e){var t=a.call(e,s),r=e[s];try{e[s]=void 0;var o=!0}catch(e){}var n=i.call(e);return o&&(t?e[s]=r:delete e[s]),n}},function(e,t){var r=Object.prototype.toString;e.exports=function(e){return r.call(e)}},function(e,t,r){var o,n=r(258),a=(o=/[^.]+$/.exec(n&&n.keys&&n.keys.IE_PROTO||""))?"Symbol(src)_1."+o:"";e.exports=function(e){return!!a&&a in e}},function(e,t,r){var o=r(11)["__core-js_shared__"];e.exports=o},function(e,t){e.exports=function(e,t){return null==e?void 0:e[t]}},function(e,t,r){var o=r(261),n=r(43),a=r(79);e.exports=function(){this.size=0,this.__data__={hash:new o,map:new(a||n),string:new o}}},function(e,t,r){var o=r(262),n=r(263),a=r(264),i=r(265),s=r(266);function c(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var o=e[t];this.set(o[0],o[1])}}c.prototype.clear=o,c.prototype.delete=n,c.prototype.get=a,c.prototype.has=i,c.prototype.set=s,e.exports=c},function(e,t,r){var o=r(47);e.exports=function(){this.__data__=o?o(null):{},this.size=0}},function(e,t){e.exports=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}},function(e,t,r){var o=r(47),n="__lodash_hash_undefined__",a=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;if(o){var r=t[e];return r===n?void 0:r}return a.call(t,e)?t[e]:void 0}},function(e,t,r){var o=r(47),n=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;return o?void 0!==t[e]:n.call(t,e)}},function(e,t,r){var o=r(47),n="__lodash_hash_undefined__";e.exports=function(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=o&&void 0===t?n:t,this}},function(e,t,r){var o=r(48);e.exports=function(e){var t=o(this,e).delete(e);return this.size-=t?1:0,t}},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}e.exports=function(e){var t=r(e);return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}},function(e,t,r){var o=r(48);e.exports=function(e){return o(this,e).get(e)}},function(e,t,r){var o=r(48);e.exports=function(e){return o(this,e).has(e)}},function(e,t,r){var o=r(48);e.exports=function(e,t){var r=o(this,e),n=r.size;return r.set(e,t),this.size+=r.size==n?0:1,this}},function(e,t,r){var o=r(124),n=r(273),a=r(274);function i(e){var t=-1,r=null==e?0:e.length;for(this.__data__=new o;++t<r;)this.add(e[t])}i.prototype.add=i.prototype.push=n,i.prototype.has=a,e.exports=i},function(e,t){var r="__lodash_hash_undefined__";e.exports=function(e){return this.__data__.set(e,r),this}},function(e,t){e.exports=function(e){return this.__data__.has(e)}},function(e,t){e.exports=function(e,t){for(var r=-1,o=null==e?0:e.length;++r<o;)if(t(e[r],r,e))return!0;return!1}},function(e,t){e.exports=function(e,t){return e.has(t)}},function(e,t,r){var o=r(46),n=r(126),a=r(78),i=r(125),s=r(278),c=r(279),l=1,u=2,d="[object Boolean]",p="[object Date]",_="[object Error]",f="[object Map]",h="[object Number]",b="[object RegExp]",m="[object Set]",y="[object String]",v="[object Symbol]",g="[object ArrayBuffer]",w="[object DataView]",x=o?o.prototype:void 0,k=x?x.valueOf:void 0;e.exports=function(e,t,r,o,x,O,S){switch(r){case w:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case g:return!(e.byteLength!=t.byteLength||!O(new n(e),new n(t)));case d:case p:case h:return a(+e,+t);case _:return e.name==t.name&&e.message==t.message;case b:case y:return e==t+"";case f:var j=s;case m:var E=o&l;if(j||(j=c),e.size!=t.size&&!E)return!1;var P=S.get(e);if(P)return P==t;o|=u,S.set(e,t);var z=i(j(e),j(t),o,x,O,S);return S.delete(e),z;case v:if(k)return k.call(e)==k.call(t)}return!1}},function(e,t){e.exports=function(e){var t=-1,r=Array(e.size);return e.forEach(function(e,o){r[++t]=[o,e]}),r}},function(e,t){e.exports=function(e){var t=-1,r=Array(e.size);return e.forEach(function(e){r[++t]=e}),r}},function(e,t,r){var o=r(127),n=1,a=Object.prototype.hasOwnProperty;e.exports=function(e,t,r,i,s,c){var l=r&n,u=o(e),d=u.length;if(d!=o(t).length&&!l)return!1;for(var p=d;p--;){var _=u[p];if(!(l?_ in t:a.call(t,_)))return!1}var f=c.get(e);if(f&&c.get(t))return f==t;var h=!0;c.set(e,t),c.set(t,e);for(var b=l;++p<d;){var m=e[_=u[p]],y=t[_];if(i)var v=l?i(y,m,_,t,e,c):i(m,y,_,e,t,c);if(!(void 0===v?m===y||s(m,y,r,i,c):v)){h=!1;break}b||(b="constructor"==_)}if(h&&!b){var g=e.constructor,w=t.constructor;g!=w&&"constructor"in e&&"constructor"in t&&!("function"==typeof g&&g instanceof g&&"function"==typeof w&&w instanceof w)&&(h=!1)}return c.delete(e),c.delete(t),h}},function(e,t){e.exports=function(e,t){for(var r=-1,o=null==e?0:e.length,n=0,a=[];++r<o;){var i=e[r];t(i,r,e)&&(a[n++]=i)}return a}},function(e,t){e.exports=function(e,t){for(var r=-1,o=Array(e);++r<e;)o[r]=t(r);return o}},function(e,t,r){var o=r(284),n=r(27),a=Object.prototype,i=a.hasOwnProperty,s=a.propertyIsEnumerable,c=o(function(){return arguments}())?o:function(e){return n(e)&&i.call(e,"callee")&&!s.call(e,"callee")};e.exports=c},function(e,t,r){var o=r(45),n=r(27),a="[object Arguments]";e.exports=function(e){return n(e)&&o(e)==a}},function(e,t){e.exports=function(){return!1}},function(e,t){function r(e){return(r="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var o=9007199254740991,n=/^(?:0|[1-9]\d*)$/;e.exports=function(e,t){var a=r(e);return!!(t=null==t?o:t)&&("number"==a||"symbol"!=a&&n.test(e))&&e>-1&&e%1==0&&e<t}},function(e,t,r){var o=r(45),n=r(133),a=r(27),i={};i["[object Float32Array]"]=i["[object Float64Array]"]=i["[object Int8Array]"]=i["[object Int16Array]"]=i["[object Int32Array]"]=i["[object Uint8Array]"]=i["[object Uint8ClampedArray]"]=i["[object Uint16Array]"]=i["[object Uint32Array]"]=!0,i["[object Arguments]"]=i["[object Array]"]=i["[object ArrayBuffer]"]=i["[object Boolean]"]=i["[object DataView]"]=i["[object Date]"]=i["[object Error]"]=i["[object Function]"]=i["[object Map]"]=i["[object Number]"]=i["[object Object]"]=i["[object RegExp]"]=i["[object Set]"]=i["[object String]"]=i["[object WeakMap]"]=!1,e.exports=function(e){return a(e)&&n(e.length)&&!!i[o(e)]}},function(e,t,r){var o=r(85),n=r(289),a=Object.prototype.hasOwnProperty;e.exports=function(e){if(!o(e))return n(e);var t=[];for(var r in Object(e))a.call(e,r)&&"constructor"!=r&&t.push(r);return t}},function(e,t,r){var o=r(134)(Object.keys,Object);e.exports=o},function(e,t,r){var o=r(21)(r(11),"DataView");e.exports=o},function(e,t,r){var o=r(21)(r(11),"Promise");e.exports=o},function(e,t,r){var o=r(21)(r(11),"Set");e.exports=o},function(e,t,r){var o=r(21)(r(11),"WeakMap");e.exports=o},function(e,t,r){var o=r(120),n=r(295),a=r(136),i=r(297),s=r(298),c=r(301),l=r(302),u=r(303),d=r(304),p=r(127),_=r(305),f=r(50),h=r(306),b=r(307),m=r(312),y=r(49),v=r(82),g=r(314),w=r(35),x=r(316),k=r(81),O=1,S=2,j=4,E="[object Arguments]",P="[object Function]",z="[object GeneratorFunction]",C="[object Object]",T={};T[E]=T["[object Array]"]=T["[object ArrayBuffer]"]=T["[object DataView]"]=T["[object Boolean]"]=T["[object Date]"]=T["[object Float32Array]"]=T["[object Float64Array]"]=T["[object Int8Array]"]=T["[object Int16Array]"]=T["[object Int32Array]"]=T["[object Map]"]=T["[object Number]"]=T[C]=T["[object RegExp]"]=T["[object Set]"]=T["[object String]"]=T["[object Symbol]"]=T["[object Uint8Array]"]=T["[object Uint8ClampedArray]"]=T["[object Uint16Array]"]=T["[object Uint32Array]"]=!0,T["[object Error]"]=T[P]=T["[object WeakMap]"]=!1,e.exports=function e(t,r,q,M,I,N){var R,F=r&O,A=r&S,L=r&j;if(q&&(R=I?q(t,M,I,N):q(t)),void 0!==R)return R;if(!w(t))return t;var D=y(t);if(D){if(R=h(t),!F)return l(t,R)}else{var B=f(t),U=B==P||B==z;if(v(t))return c(t,F);if(B==C||B==E||U&&!I){if(R=A||U?{}:m(t),!F)return A?d(t,s(R,t)):u(t,i(R,t))}else{if(!T[B])return I?t:{};R=b(t,B,F)}}N||(N=new o);var W=N.get(t);if(W)return W;N.set(t,R),x(t)?t.forEach(function(o){R.add(e(o,r,q,o,t,N))}):g(t)&&t.forEach(function(o,n){R.set(n,e(o,r,q,n,t,N))});var Y=L?A?_:p:A?keysIn:k,X=D?void 0:Y(t);return n(X||t,function(o,n){X&&(o=t[n=o]),a(R,n,e(o,r,q,n,t,N))}),R}},function(e,t){e.exports=function(e,t){for(var r=-1,o=null==e?0:e.length;++r<o&&!1!==t(e[r],r,e););return e}},function(e,t,r){var o=r(21),n=function(){try{var e=o(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();e.exports=n},function(e,t,r){var o=r(51),n=r(81);e.exports=function(e,t){return e&&o(t,n(t),e)}},function(e,t,r){var o=r(51),n=r(138);e.exports=function(e,t){return e&&o(t,n(t),e)}},function(e,t,r){var o=r(35),n=r(85),a=r(300),i=Object.prototype.hasOwnProperty;e.exports=function(e){if(!o(e))return a(e);var t=n(e),r=[];for(var s in e)("constructor"!=s||!t&&i.call(e,s))&&r.push(s);return r}},function(e,t){e.exports=function(e){var t=[];if(null!=e)for(var r in Object(e))t.push(r);return t}},function(e,t,r){(function(e){function o(e){return(o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"===typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var n=r(11),a="object"==o(t)&&t&&!t.nodeType&&t,i=a&&"object"==o(e)&&e&&!e.nodeType&&e,s=i&&i.exports===a?n.Buffer:void 0,c=s?s.allocUnsafe:void 0;e.exports=function(e,t){if(t)return e.slice();var r=e.length,o=c?c(r):new e.constructor(r);return e.copy(o),o}}).call(t,r(23)(e))},function(e,t){e.exports=function(e,t){var r=-1,o=e.length;for(t||(t=Array(o));++r<o;)t[r]=e[r];return t}},function(e,t,r){var o=r(51),n=r(80);e.exports=function(e,t){return o(e,n(e),t)}},function(e,t,r){var o=r(51),n=r(139);e.exports=function(e,t){return o(e,n(e),t)}},function(e,t,r){var o=r(128),n=r(139),a=r(138);e.exports=function(e){return o(e,a,n)}},function(e,t){var r=Object.prototype.hasOwnProperty;e.exports=function(e){var t=e.length,o=new e.constructor(t);return t&&"string"==typeof e[0]&&r.call(e,"index")&&(o.index=e.index,o.input=e.input),o}},function(e,t,r){var o=r(86),n=r(308),a=r(309),i=r(310),s=r(311),c="[object Boolean]",l="[object Date]",u="[object Map]",d="[object Number]",p="[object RegExp]",_="[object Set]",f="[object String]",h="[object Symbol]",b="[object ArrayBuffer]",m="[object DataView]",y="[object Float32Array]",v="[object Float64Array]",g="[object Int8Array]",w="[object Int16Array]",x="[object Int32Array]",k="[object Uint8Array]",O="[object Uint8ClampedArray]",S="[object Uint16Array]",j="[object Uint32Array]";e.exports=function(e,t,r){var E=e.constructor;switch(t){case b:return o(e);case c:case l:return new E(+e);case m:return n(e,r);case y:case v:case g:case w:case x:case k:case O:case S:case j:return s(e,r);case u:return new E;case d:case f:return new E(e);case p:return a(e);case _:return new E;case h:return i(e)}}},function(e,t,r){var o=r(86);e.exports=function(e,t){var r=t?o(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.byteLength)}},function(e,t){var r=/\w*$/;e.exports=function(e){var t=new e.constructor(e.source,r.exec(e));return t.lastIndex=e.lastIndex,t}},function(e,t,r){var o=r(46),n=o?o.prototype:void 0,a=n?n.valueOf:void 0;e.exports=function(e){return a?Object(a.call(e)):{}}},function(e,t,r){var o=r(86);e.exports=function(e,t){var r=t?o(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}},function(e,t,r){var o=r(313),n=r(140),a=r(85);e.exports=function(e){return"function"!=typeof e.constructor||a(e)?{}:o(n(e))}},function(e,t,r){var o=r(35),n=Object.create,a=function(){function e(){}return function(t){if(!o(t))return{};if(n)return n(t);e.prototype=t;var r=new e;return e.prototype=void 0,r}}();e.exports=a},function(e,t,r){var o=r(315),n=r(83),a=r(84),i=a&&a.isMap,s=i?n(i):o;e.exports=s},function(e,t,r){var o=r(50),n=r(27),a="[object Map]";e.exports=function(e){return n(e)&&o(e)==a}},function(e,t,r){var o=r(317),n=r(83),a=r(84),i=a&&a.isSet,s=i?n(i):o;e.exports=s},function(e,t,r){var o=r(50),n=r(27),a="[object Set]";e.exports=function(e){return n(e)&&o(e)==a}},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.hashtag,i=n.options,s=n.onLoad;e.widgets.createHashtagButton(a,t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("hashtag")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={hashtag:i.default.string.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.username,i=n.options,s=n.onLoad;e.widgets.createMentionButton(a,t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("username")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={username:i.default.string.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.url,i=n.options,s=n.onLoad;e.widgets.createShareButton(a,t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("url")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={url:i.default.string.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.dataSource,i=n.options,s=n.onLoad;e.widgets.createTimeline((0,c.default)(a),t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("dataSource")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={dataSource:i.default.object.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){"use strict";function o(e){return(o="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)}Object.defineProperty(t,"__esModule",{value:!0});var n=function(){function e(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,r,o){return r&&e(t.prototype,r),o&&e(t,o),t}}(),a=u(r(0)),i=u(r(17)),s=u(r(26)),c=u(r(28)),l=u(r(29));function u(e){return e&&e.__esModule?e:{default:e}}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!==o(t)&&"function"!==typeof t?e:t}var p=function(e){function t(){var e,r,o;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t);for(var n=arguments.length,a=Array(n),i=0;i<n;i++)a[i]=arguments[i];return r=o=d(this,(e=t.__proto__||Object.getPrototypeOf(t)).call.apply(e,[this].concat(a))),o.ready=function(e,t,r){var n=o.props,a=n.tweetId,i=n.options,s=n.onLoad;e.widgets.createTweet(a,t,(0,c.default)(i)).then(function(){r(),s()})},d(o,r)}return function(e,t){if("function"!==typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+o(t));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,a.default.Component),n(t,[{key:"shouldComponentUpdate",value:function(e){var t=this,r=function(r){return!(0,s.default)(t.props[r],e[r])};return r("tweetId")||r("options")}},{key:"render",value:function(){return a.default.createElement(l.default,{ready:this.ready})}}]),t}();p.propTypes={tweetId:i.default.string.isRequired,options:i.default.object,onLoad:i.default.func},p.defaultProps={options:{},onLoad:function(){}},t.default=p},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(87);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];return e.badges_background_color&&t.push([{selector:"%%order_class%% .dsm-badges",declaration:"background-color: ".concat(e.badges_background_color,";")}]),"7px"!==e.badges_gap&&("after"===e.badges_placement?t.push([{selector:"%%order_class%% .dsm-badges-after",declaration:"margin-left: ".concat(e.badges_gap,";")}]):t.push([{selector:"%%order_class%% .dsm-badges-before",declaration:"margin-right: ".concat(e.badges_gap,";")}])),"after"===e.badges_placement&&(e.badges_gap_tablet&&t.push([{selector:"%%order_class%% .dsm-badges-after",declaration:"margin-left: ".concat(e.badges_gap_tablet,";"),device:"tablet"}]),e.badges_gap_phone&&t.push([{selector:"%%order_class%% .dsm-badges-after",declaration:"margin-left: ".concat(e.badges_gap_phone,";"),device:"phone"}])),"before"===e.badges_placement&&(e.badges_gap_tablet&&t.push([{selector:"%%order_class%% .dsm-badges-before",declaration:"margin-right: ".concat(e.badges_gap_tablet,";"),device:"tablet"}]),e.badges_gap_phone&&t.push([{selector:"%%order_class%% .dsm-badges-before",declaration:"margin-right: ".concat(e.badges_gap_phone,";"),device:"phone"}])),t}}],(a=[{key:"_renderBadgesBefore",value:function(){var e=this.props;return e.badges_text&&"after"!==e.badges_placement?n.a.createElement(o.Fragment,null,n.a.createElement("span",{className:"dsm-badges dsm-badges-".concat(e.badges_placement)},e.badges_text)):""}},{key:"_renderBadgesAfter",value:function(){var e=this.props;return e.badges_text&&"before"!==e.badges_placement?n.a.createElement(o.Fragment,null,n.a.createElement("span",{className:"dsm-badges dsm-badges-".concat(e.badges_placement)},e.badges_text)):""}},{key:"_renderTitle",value:function(){var e=this.props,t=""===e.header_level?"h4":"".concat(e.header_level);return e.main_text?void 0===e.header_level?n.a.createElement(o.Fragment,null,n.a.createElement("h4",{className:"dsm-text-badges et_pb_module_header"},this._renderBadgesBefore(),e.main_text,this._renderBadgesAfter())):n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-text-badges et_pb_module_header"},this._renderBadgesBefore(),e.main_text,this._renderBadgesAfter())):""}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"et_pb_bg_layout_".concat(e.background_layout)},this._renderTitle()))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_text_badges"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(88);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];e.menu_link_text_color&&t.push([{selector:"%%order_class%% ul.dsm-menu li a",declaration:"color: ".concat(e.menu_link_text_color,";")}]),"on"===e.menu_link_text_color__hover_enabled&&e.menu_link_text_color__hover&&t.push([{selector:"%%order_class%% ul.dsm-menu li a:hover",declaration:"color: ".concat(e.menu_link_text_color__hover,";")}]),"disc"!==e.list_style_type&&t.push([{selector:"%%order_class%% ul.dsm-menu, %%order_class%% ul.dsm-menu .sub-menu",declaration:"list-style-type: ".concat(e.list_style_type,";")}]),""!==e.list_style_color&&t.push([{selector:"%%order_class%% ul.dsm-menu li",declaration:"color: ".concat(e.list_style_color,";")}]);var r=e.title_bottom_gap_last_edited&&e.title_bottom_gap_last_edited.startsWith("on"),o=e.title_bottom_gap,n=r&&e.title_bottom_gap_tablet?e.title_bottom_gap_tablet:o,a=r&&e.title_bottom_gap_phone?e.title_bottom_gap_phone:n;"10px"!==e.title_bottom_gap&&t.push([{selector:"%%order_class%% ".concat(e.header_level,".dsm-menu-title"),declaration:"padding-bottom: ".concat(o,";")}]),""!==e.title_bottom_gap_tablet&&t.push([{selector:"%%order_class%% ".concat(e.header_level,".dsm-menu-title"),declaration:"padding-bottom: ".concat(n,";"),device:"tablet"}]),""!==e.title_bottom_gap_phone&&t.push([{selector:"%%order_class%% ".concat(e.header_level,".dsm-menu-title"),declaration:"padding-bottom: ".concat(a,";"),device:"phone"}]);var i=e.menu_space_between_last_edited&&e.menu_space_between_last_edited.startsWith("on"),s=e.menu_space_between,c=i&&e.menu_space_between_tablet?e.menu_space_between_tablet:s,l=i&&e.menu_space_between_phone?e.menu_space_between_phone:c;"0px"!==e.menu_space_between&&(t.push([{selector:"%%order_class%% .dsm-menu li:not(:last-child)",declaration:"margin-bottom: ".concat(s,";")}]),t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu>li",declaration:"margin-top: ".concat(s,";")}])),""!==e.menu_space_between_tablet&&(t.push([{selector:"%%order_class%% .dsm-menu li:not(:last-child)",declaration:"margin-bottom: ".concat(c,";"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu>li",declaration:"margin-top: ".concat(c,";"),device:"tablet"}])),""!==e.menu_space_between_phone&&(t.push([{selector:"%%order_class%% .dsm-menu li:not(:last-child)",declaration:"margin-top: ".concat(l,";"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu>li",declaration:"margin-top: ".concat(l,";"),device:"phone"}]));var u=e.submenu_left_space_last_edited&&e.submenu_left_space_last_edited.startsWith("on"),d=e.submenu_left_space,p=u&&e.submenu_left_space_tablet?e.submenu_left_space_tablet:d,_=u&&e.submenu_left_space_phone?e.submenu_left_space_phone:p;return"20px"!==e.submenu_left_space&&t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu",declaration:"padding-left: ".concat(d,";")}]),""!==e.submenu_left_space_tablet&&t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu",declaration:"padding-left: ".concat(p,";"),device:"tablet"}]),""!==e.submenu_left_space_phone&&t.push([{selector:"%%order_class%% .dsm-menu .menu-item-has-children .sub-menu",declaration:"padding-left: ".concat(_,";"),device:"phone"}]),t}}],(a=[{key:"_renderTitle",value:function(){var e=this.props,t=""===e.header_level?"h4":"".concat(e.header_level);return e.title?void 0===e.header_level?n.a.createElement(o.Fragment,null,n.a.createElement("h4",{className:"dsm-menu-title et_pb_module_header"},e.title)):n.a.createElement(o.Fragment,null,n.a.createElement(t,{className:"dsm-menu-title et_pb_module_header"},e.title)):""}},{key:"_renderNav",value:function(){var e=this.props;if("none"!==e.menu_id){var t=e.__menu;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{dangerouslySetInnerHTML:{__html:t}}))}}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"et_pb_bg_layout_".concat(e.background_layout)},this._renderTitle(),this._renderNav()))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_menu"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(89);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];"dotted"!==e.separator_style&&t.push([{selector:"%%order_class%% .dsm-pricelist-separator",declaration:"border-bottom-style: ".concat(e.separator_style,";")}]),"2px"!==e.separator_weight&&t.push([{selector:"%%order_class%% .dsm-pricelist-separator",declaration:"border-bottom-width: ".concat(e.separator_weight,";")}]),e.separator_color&&t.push([{selector:"%%order_class%% .dsm-pricelist-separator",declaration:"border-bottom-color: ".concat(e.separator_color,";")}]),"10px"!==e.separator_gap&&t.push([{selector:"%%order_class%% .dsm-pricelist-separator",declaration:"margin-left: ".concat(e.separator_gap,"; margin-right: ").concat(e.separator_gap,";")}]);var r=e.item_bottom_gap_last_edited&&e.item_bottom_gap_last_edited.startsWith("on"),o=e.item_bottom_gap,n=r&&e.item_bottom_gap_tablet?e.item_bottom_gap_tablet:o,a=r&&e.item_bottom_gap_phone?e.item_bottom_gap_phone:n;"25px"!==e.item_bottom_gap&&t.push([{selector:"%%order_class%% .dsm_pricelist_child:not(:last-child)",declaration:"padding-bottom: ".concat(o,";")}]),e.item_bottom_gap_tablet&&t.push([{selector:"%%order_class%% .dsm_pricelist_child:not(:last-child)",declaration:"padding-bottom: ".concat(n),device:"tablet"}]),e.item_bottom_gap_phone&&t.push([{selector:"%%order_class%% .dsm_pricelist_child:not(:last-child)",declaration:"padding-bottom: ".concat(a),device:"phone"}]),"flex-start"!==e.content_orientation&&t.push([{selector:"%%order_class%% .dsm_pricelist_child>div",declaration:"align-items: ".concat(e.content_orientation,";")}]);var i=e.image_max_width_last_edited&&e.image_max_width_last_edited.startsWith("on"),s=e.image_max_width,c=i&&e.image_max_width_tablet?e.image_max_width_tablet:s,l=i&&e.image_max_width_phone?e.image_max_width_phone:c;"50%"!==e.image_max_width&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(s)}]),e.image_max_width_tablet&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(c),device:"tablet"}]),e.image_max_width_phone&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(l),device:"phone"}]);var u=e.image_spacing_last_edited&&e.image_spacing_last_edited.startsWith("on"),d=e.image_spacing,p=u&&e.image_spacing_tablet?e.image_spacing_tablet:d,_=u&&e.image_spacing_phone?e.image_spacing_phone:p;return e.image_spacing&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(d,";")}]),e.image_spacing_tablet&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(p,";"),device:"tablet"}]),e.image_spacing_phone&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(_,";"),device:"phone"}]),t}}],(a=[{key:"render",value:function(){return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm_pricelist"},this.props.content))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_pricelist"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o);function a(e){return(a="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 o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function s(e,t){return!t||"object"!==a(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}var c=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[],r=e.image_max_width_last_edited&&e.image_max_width_last_edited.startsWith("on"),o=e.image_max_width,n=r&&e.image_max_width_tablet?e.image_max_width_tablet:o,a=r&&e.image_max_width_phone?e.image_max_width_phone:n;e.image_max_width&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(o)}]),e.image_max_width_tablet&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(n),device:"tablet"}]),e.image_max_width_phone&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"max-width: ".concat(a),device:"phone"}]),"center"!==e.content_orientation&&t.push([{selector:"%%order_class%%",declaration:"align-items: ".concat(e.content_orientation,";")}]);var i=e.image_spacing_last_edited&&e.image_spacing_last_edited.startsWith("on"),s=e.image_spacing,c=i&&e.image_spacing_tablet?e.image_spacing_tablet:s,l=i&&e.image_spacing_phone?e.image_spacing_phone:c;return e.image_spacing&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(s,";")}]),e.image_spacing_tablet&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(c,";"),device:"tablet"}]),e.image_spacing_phone&&t.push([{selector:"%%order_class%% .dsm-pricelist-image",declaration:"margin-right: ".concat(l,";"),device:"phone"}]),t}}],(a=[{key:"_renderTitle",value:function(){var e=this.props;return e.title?n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm-pricelist-title et_pb_module_header"},e.title)):""}},{key:"_renderIcon",value:function(){var e=this.props,t=window.ET_Builder.API.Utils;return"off"===e.use_icon?"":n.a.createElement("div",{className:"dsm_flipbox_child_image"},n.a.createElement("span",{className:"dsm_flipbox_child_image_wrap"},n.a.createElement("span",{className:"et-pb-icon".concat("on"===this.props.use_circle?" et-pb-icon-circle":"").concat("on"===this.props.use_circle_border?" et-pb-icon-circle-border":"")},t.processFontIcon(e.font_icon))))}},{key:"_renderImage",value:function(){var e=this.props;return e.image?n.a.createElement("div",{className:"dsm-pricelist-image"},n.a.createElement("img",{src:"".concat(e.image),alt:"".concat(e.alt)})):""}},{key:"_renderButton",value:function(){var e=this.props,t=window.ET_Builder.API.Utils,r="on"===e.url_new_window?"_blank":"",o=!!e.button_icon&&t.processFontIcon(e.button_icon),a={et_pb_button:!0,et_pb_more_button:!0,et_pb_custom_button_icon:e.button_icon};return e.button_text&&e.button_url?n.a.createElement("div",{className:"et_pb_button_wrapper"},n.a.createElement("a",{className:t.classnames(a),href:e.button_url,target:r,rel:t.linkRel(e.button_rel),"data-icon":o},e.button_text)):""}},{key:"_renderPrice",value:function(){var e=this.props,t=void 0===e.price?"$8":e.price;return e.price?n.a.createElement("div",{className:"dsm-pricelist-price"},t):""}},{key:"_renderContent",value:function(){var e=this.props,t=e.content;return e.content?n.a.createElement("div",{className:"dsm-pricelist-description"},n.a.createElement(t,null)):""}},{key:"render",value:function(){return n.a.createElement(o.Fragment,null,this._renderImage(),n.a.createElement("div",{className:"dsm_pricelist_item_wrapper"},n.a.createElement("div",{className:"dsm-pricelist-header"},this._renderTitle(),n.a.createElement("div",{className:"dsm-pricelist-separator"}),this._renderPrice()),this._renderContent()))}}])&&i(r.prototype,a),c&&i(r,c),t}();Object.defineProperty(c,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_pricelist_child"}),t.a=c},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(90);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[];if("none"!==e.divider_style&&t.push([{selector:"%%order_class%% .dsm_business_hours_child:not(:last-child)",declaration:"border-bottom-style: ".concat(e.divider_style,";")}]),""!==e.divider_weight&&t.push([{selector:"%%order_class%% .dsm_business_hours_child:not(:last-child)",declaration:"border-bottom-width: ".concat(e.divider_weight,";")}]),e.divider_color&&t.push([{selector:"%%order_class%% .dsm_business_hours_child:not(:last-child)",declaration:"border-bottom-color: ".concat(e.divider_color,";")}]),"none"!==e.separator_style&&t.push([{selector:"%%order_class%% .dsm-business-hours-separator",declaration:"border-bottom-style: ".concat(e.separator_style,";")}]),"2px"!==e.separator_weight&&t.push([{selector:"%%order_class%% .dsm-business-hours-separator",declaration:"border-bottom-width: ".concat(e.separator_weight,";")}]),e.separator_color&&t.push([{selector:"%%order_class%% .dsm-business-hours-separator",declaration:"border-bottom-color: ".concat(e.separator_color,";")}]),"10px"!==e.separator_gap&&t.push([{selector:"%%order_class%% .dsm-business-hours-separator",declaration:"margin-left: ".concat(e.separator_gap,"; margin-right: ").concat(e.separator_gap,";")}]),"center"!==e.content_orientation&&t.push([{selector:"%%order_class%% .dsm_business_hours_child>div",declaration:"align-items: ".concat(e.content_orientation,";")}]),e.item_padding){var r=e.item_padding.split("|"),o=e.item_padding_last_edited,n=o&&o.startsWith("on");if(t.push([{selector:"%%order_class%% .dsm_business_hours_item_wrapper",declaration:"padding-top: ".concat(r[0],"; padding-right: ").concat(r[1]," !important; padding-bottom: ").concat(r[2],"; padding-left: ").concat(r[3]," !important;")}]),e.item_padding_tablet&&n&&e.item_padding_tablet&&""!==e.item_padding_tablet){var a=e.item_padding_tablet.split("|");t.push([{selector:"%%order_class%% .dsm_business_hours_item_wrapper",declaration:"padding-top: ".concat(a[0],"; padding-right: ").concat(a[1]," !important; padding-bottom: ").concat(a[2],"; padding-left: ").concat(a[3]," !important;"),device:"tablet"}])}if(e.item_padding_phone&&n&&e.item_padding_phone&&""!==e.item_padding_phone){var i=e.item_padding_phone.split("|");t.push([{selector:"%%order_class%% .dsm_business_hours_item_wrapper",declaration:"padding-top: ".concat(i[0],"; padding-right: ").concat(i[1]," !important; padding-bottom: ").concat(i[2],"; padding-left: ").concat(i[3]," !important;"),device:"phone"}])}}return t}}],(a=[{key:"render",value:function(){return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm_business_hours"},this.props.content))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_business_hours"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o);function a(e){return(a="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 o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function s(e,t){return!t||"object"!==a(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}var c=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[];return"center"!==e.content_orientation&&t.push([{selector:"%%order_class%%",declaration:"align-items: ".concat(e.content_orientation,";")}]),t}}],(a=[{key:"_renderTitle",value:function(){var e=this.props,t=void 0===e.title?"Monday":e.title;return t?n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm-business-hours-day"},t)):""}},{key:"_renderTime",value:function(){var e=this.props,t=void 0===e.time?"9:00 AM - 6:00 PM":e.time;return t?n.a.createElement("div",{className:"dsm-business-hours-time"},t):""}},{key:"render",value:function(){return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm_business_hours_item_wrapper"},n.a.createElement("div",{className:"dsm-business-hours-header"},this._renderTitle(),n.a.createElement("div",{className:"dsm-business-hours-separator"}),this._renderTime())))}}])&&i(r.prototype,a),c&&i(r,c),t}();Object.defineProperty(c,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_business_hours_child"}),t.a=c},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(91);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[],r=void 0===e.icon_font_size?"14px":e.icon_font_size;if("14px"!==e.icon_font_size&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_icon",declaration:"font-size: ".concat(r,";")}]),e.icon_font_size){var o=void 0!==e.icon_font_size__hover_enabled?e.icon_font_size__hover_enabled.split("|"):"",n=e.icon_font_size_last_edited,a=n&&n.startsWith("on");"on"===o[0]&&"hover"===o[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size__hover,";")}]),e.icon_font_size_tablet&&a&&e.icon_font_size_tablet&&""!==e.icon_font_size_tablet&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size_tablet,";"),device:"tablet"}]),e.icon_font_size_phone&&a&&e.icon_font_size_phone&&""!==e.icon_font_size_phone&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size_phone,";"),device:"phone"}])}e.icon_color&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color,";")}]);var i=void 0!==e.icon_color__hover_enabled?e.icon_color__hover_enabled.split("|"):"",s=e.icon_color_last_edited,c=s&&s.startsWith("on");"on"===i[0]&&"hover"===i[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color__hover,";")}]),e.icon_color_tablet&&c&&e.icon_color_tablet&&""!==e.icon_color_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color_tablet,";"),device:"tablet"}]),e.icon_color_phone&&c&&e.icon_color_phone&&""!==e.icon_color_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color_phone,";"),device:"phone"}]),e.icon_background_color&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color,";")}]);var l=void 0!==e.icon_background_color__hover_enabled?e.icon_background_color__hover_enabled.split("|"):"",u=e.icon_background_color_last_edited,d=u&&u.startsWith("on");"on"===l[0]&&"hover"===l[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color__hover,";")}]),e.icon_background_color_tablet&&d&&e.icon_background_color_tablet&&""!==e.icon_background_color_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color_tablet,";"),device:"tablet"}]),e.icon_background_color_phone&&d&&e.icon_background_color_phone&&""!==e.icon_background_color_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color_phone,";"),device:"phone"}]),e.icon_padding&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding,";")}]);var p=void 0!==e.icon_padding__hover_enabled?e.icon_padding__hover_enabled.split("|"):"",_=e.icon_padding_last_edited,f=_&&_.startsWith("on");"on"===p[0]&&"hover"===p[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding__hover,";")}]),e.icon_padding_tablet&&f&&e.icon_padding_tablet&&""!==e.icon_padding_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding_tablet,";"),device:"tablet"}]),e.icon_padding_phone&&f&&e.icon_padding_phone&&""!==e.icon_padding_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding_phone,";"),device:"phone"}]),"flex-start"!==e.list_alignment&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"justify-content: ".concat(e.list_alignment,"; ")}]);var h=e.list_alignment_last_edited,b=h&&h.startsWith("on");e.list_alignment_tablet&&b&&e.list_alignment_tablet&&""!==e.list_alignment_tablet&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"justify-content: ".concat(e.list_alignment_tablet,";"),device:"tablet"}]),e.list_alignment_phone&&b&&e.list_alignment_phone&&""!==e.list_alignment_phone&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"justify-content: ".concat(e.list_alignment_phone,";"),device:"phone"}]),e.list_vertical_alignment&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"align-items: ".concat(e.list_vertical_alignment,"; ")}]);var m=e.list_vertical_alignment_last_edited,y=m&&m.startsWith("on");e.list_vertical_alignment_tablet&&y&&e.list_vertical_alignment_tablet&&""!==e.list_vertical_alignment_tablet&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"align-items: ".concat(e.list_vertical_alignment_tablet,";"),device:"tablet"}]),e.list_vertical_alignment_phone&&y&&e.list_vertical_alignment_phone&&""!==e.list_vertical_alignment_phone&&t.push([{selector:"%%order_class%%.dsm_icon_list .dsm_icon_list_child>div, %%order_class%%.dsm_icon_list .dsm_icon_list_child>div a",declaration:"align-items: ".concat(e.list_vertical_alignment_phone,";"),device:"phone"}]),e.list_space_between&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child:not(:last-child)",declaration:"margin-bottom: ".concat(e.list_space_between," !important; ")}]);var v=void 0!==e.list_space_between__hover_enabled?e.list_space_between__hover_enabled.split("|"):"",g=e.list_space_between_last_edited,w=g&&g.startsWith("on");"on"===v[0]&&"hover"===v[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child:not(:last-child)",declaration:"margin-bottom: ".concat(e.list_space_between__hover," !important;")}]),e.list_space_between_tablet&&w&&e.list_space_between_tablet&&""!==e.list_space_between_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child:not(:last-child)",declaration:"margin-bottom: ".concat(e.list_space_between_tablet," !important;"),device:"tablet"}]),e.list_space_between_phone&&w&&e.list_space_between_phone&&""!==e.list_space_between_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child:not(:last-child)",declaration:"margin-bottom: ".concat(e.list_space_between_phone," !important;"),device:"phone"}]),e.list_background&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"background-color: ".concat(e.list_background,";")}]);var x=void 0!==e.list_background__hover_enabled?e.list_background__hover_enabled.split("|"):"",k=e.list_background_last_edited,O=k&&k.startsWith("on");"on"===x[0]&&"hover"===x[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"background-color: ".concat(e.list_background__hover,";")}]),e.list_background_tablet&&O&&e.list_background_tablet&&""!==e.list_background_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"background-color: ".concat(e.list_background_tablet,";"),device:"tablet"}]),e.list_background_phone&&O&&e.list_background_phone&&""!==e.list_background_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"background-color: ".concat(e.list_background_phone,";"),device:"phone"}]);var S=void 0!==e.list_padding?e.list_padding.split("|"):"";e.list_padding&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"padding-top: ".concat(S[0],"; padding-right: ").concat(S[1]," !important; padding-bottom: ").concat(S[2],"; padding-left: ").concat(S[3]," !important;")}]);var j=e.list_padding_last_edited,E=j&&j.startsWith("on"),P=void 0!==e.list_padding__hover_enabled?e.list_padding__hover_enabled.split("|"):"";if("on"===P[0]){var z=void 0!==e.list_padding__hover?e.list_padding__hover.split("|"):S;"hover"===P[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"padding-top: ".concat(z[0],"; padding-right: ").concat(z[1]," !important; padding-bottom: ").concat(z[2],"; padding-left: ").concat(z[3]," !important;")}])}if(e.list_padding_tablet&&E&&e.list_padding_tablet&&""!==e.list_padding_tablet){var C=e.list_padding_tablet.split("|");t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"padding-top: ".concat(C[0],"; padding-right: ").concat(C[1]," !important; padding-bottom: ").concat(C[2],"; padding-left: ").concat(C[3]," !important;"),device:"tablet"}])}if(e.list_padding_phone&&E&&e.list_padding_phone&&""!==e.list_padding_phone){var T=e.list_padding_phone.split("|");t.push([{selector:"%%order_class%% .dsm_icon_list_items .dsm_icon_list_child",declaration:"padding-top: ".concat(T[0],"; padding-right: ").concat(T[1]," !important; padding-bottom: ").concat(T[2],"; padding-left: ").concat(T[3]," !important;"),device:"phone"}])}e.text_indent&&t.push([{selector:"%%order_class%% .dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent,";")}]);var q=void 0!==e.text_indent__hover_enabled?e.text_indent__hover_enabled.split("|"):"",M=e.text_indent_last_edited,I=M&&M.startsWith("on");return"on"===q[0]&&"hover"===q[1]&&1===e.hover_enabled&&t.push([{selector:"%%order_class%% .dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent__hover,";")}]),e.text_indent_tablet&&I&&e.text_indent_tablet&&""!==e.text_indent_tablet&&t.push([{selector:"%%order_class%% .dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent_tablet,";"),device:"tablet"}]),e.text_indent_phone&&I&&e.text_indent_phone&&""!==e.text_indent_phone&&t.push([{selector:"%%order_class%% .dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent_phone,";"),device:"phone"}]),t}}],(a=[{key:"render",value:function(){return n.a.createElement("div",{className:"dsm_icon_list"},n.a.createElement("div",{className:"dsm_icon_list_items"},this.props.content))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_icon_list"}),t.a=l},function(e,t,r){"use strict";var o=r(0),n=r.n(o);function a(e){return(a="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 o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function s(e,t){return!t||"object"!==a(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}var c=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),s(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,c;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,o["Component"]),r=t,c=[{key:"css",value:function(e){var t=[];if(e.icon_font_size&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size,";")}]),e.icon_font_size){var r=void 0!==e.icon_font_size__hover_enabled?e.icon_font_size__hover_enabled.split("|"):"",o=e.icon_font_size_last_edited,n=o&&o.startsWith("on");"on"===r[0]&&"hover"===r[1]&&1===e.hover_enabled&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size__hover,";")}]),e.icon_font_size_tablet&&n&&e.icon_font_size_tablet&&""!==e.icon_font_size_tablet&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size_tablet,";"),device:"tablet"}]),e.icon_font_size_phone&&n&&e.icon_font_size_phone&&""!==e.icon_font_size_phone&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon",declaration:"font-size: ".concat(e.icon_font_size_phone,";"),device:"phone"}])}e.icon_color&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color,";")}]);var a=void 0!==e.icon_color__hover_enabled?e.icon_color__hover_enabled.split("|"):"",i=e.icon_color_last_edited,s=i&&i.startsWith("on");"on"===a[0]&&"hover"===a[1]&&1===e.hover_enabled&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color__hover," !important;")}]),e.icon_color_tablet&&s&&e.icon_color_tablet&&""!==e.icon_color_tablet&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color_tablet,";"),device:"tablet"}]),e.icon_color_phone&&s&&e.icon_color_phone&&""!==e.icon_color_phone&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"color: ".concat(e.icon_color_phone,";"),device:"phone"}]),e.icon_background_color&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color,";")}]);var c=void 0!==e.icon_background_color__hover_enabled?e.icon_background_color__hover_enabled.split("|"):"",l=e.icon_background_color_last_edited,u=l&&l.startsWith("on");"on"===c[0]&&"hover"===c[1]&&1===e.hover_enabled&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color__hover,";")}]),e.icon_background_color_tablet&&u&&e.icon_background_color_tablet&&""!==e.icon_background_color_tablet&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color_tablet,";"),device:"tablet"}]),e.icon_background_color_phone&&u&&e.icon_background_color_phone&&""!==e.icon_background_color_phone&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"background-color: ".concat(e.icon_background_color_phone,";"),device:"phone"}]),e.icon_padding&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding,";")}]);var d=void 0!==e.icon_padding__hover_enabled?e.icon_padding__hover_enabled.split("|"):"",p=e.icon_padding_last_edited,_=p&&p.startsWith("on");"on"===d[0]&&"hover"===d[1]&&1===e.hover_enabled&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding__hover,";")}]),e.icon_padding_tablet&&_&&e.icon_padding_tablet&&""!==e.icon_padding_tablet&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding_tablet,";"),device:"tablet"}]),e.icon_padding_phone&&_&&e.icon_padding_phone&&""!==e.icon_padding_phone&&t.push([{selector:".dsm_icon_list %%order_class%% .dsm_icon_list_icon",declaration:"padding: ".concat(e.icon_padding_phone,";"),device:"phone"}]),e.text_indent&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent,";")}]);var f=void 0!==e.text_indent__hover_enabled?e.text_indent__hover_enabled.split("|"):"",h=e.text_indent_last_edited,b=h&&h.startsWith("on");return"on"===f[0]&&"hover"===f[1]&&1===e.hover_enabled&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent__hover,";")}]),e.text_indent_tablet&&b&&e.text_indent_tablet&&""!==e.text_indent_tablet&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent_tablet,";"),device:"tablet"}]),e.text_indent_phone&&b&&e.text_indent_phone&&""!==e.text_indent_phone&&t.push([{selector:".dsm_icon_list %%order_class%%.dsm_icon_list_child .dsm_icon_list_icon+.dsm_icon_list_text",declaration:"padding-left: ".concat(e.text_indent_phone,";"),device:"phone"}]),t}}],(a=[{key:"_renderText",value:function(){var e=this.props,t=void 0===e.text?"Icon List Item":e.text;return t?n.a.createElement("span",{className:"dsm_icon_list_text"},t):""}},{key:"_renderIcon",value:function(){var e=this.props,t=window.ET_Builder.API.Utils,r=void 0===e.font_icon?"P":e.font_icon;if("off"!==e.use_icon&&!e.image){var o=void 0!==e.font_icon__hover_enabled?e.font_icon__hover_enabled.split("|"):"";return"on"===o[0]&&"hover"===o[1]&&1===e.hover_enabled?n.a.createElement("span",{className:"dsm_icon_list_icon"},t.processFontIcon(e.font_icon__hover)):n.a.createElement("span",{className:"dsm_icon_list_icon"},t.processFontIcon(r))}}},{key:"render",value:function(){var e="on"===this.props.url_new_window?"_blank":"";return this.props.url?n.a.createElement(o.Fragment,null,n.a.createElement("a",{href:this.props.url,target:e},this._renderIcon(),this._renderText())):n.a.createElement(o.Fragment,null,this._renderIcon(),this._renderText())}}])&&i(r.prototype,a),c&&i(r,c),t}();Object.defineProperty(c,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_icon_list_child"}),t.a=c},function(e,t,r){"use strict";var o=r(0),n=r.n(o),a=r(92);r.n(a);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 s(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function c(e,t){return!t||"object"!==i(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}var l=function(e){function t(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),c(this,(t.__proto__||Object.getPrototypeOf(t)).apply(this,arguments))}var r,a,i;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,o["Component"]),r=t,i=[{key:"css",value:function(e){var t=[],r=e.shapes_square_size_last_edited,o=r&&r.startsWith("on");if("triangle"!==e.shapes_type&&("square"===e.shapes_type&&(t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size,"px; width: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color)}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"circle"===e.shapes_type&&(t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size,"px; width: ").concat(e.shapes_square_size,"px; border-radius: 50%; background-color: ").concat(e.shape_color)}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}]))),"triangle"===e.shapes_type){t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"border-top-color: transparent !important;border-top-width: 0 !important;"}]);var n=parseFloat(e.shapes_square_size,10)/2;if(t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: 0; height: 0; border-left: ".concat(n,"px solid transparent; border-right: ").concat(n,"px solid transparent; border-bottom: ").concat(e.shapes_square_size,"px solid ").concat(e.shape_color,";")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var a=parseFloat(e.shapes_square_size_tablet,10)/2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: 0; height: 0; border-left: ".concat(a,"px solid transparent; border-right: ").concat(a,"px solid transparent; border-bottom: ").concat(e.shapes_square_size_tablet,"px solid ").concat(e.shape_color,";"),device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var i=parseFloat(e.shapes_square_size_phone,10)/2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: 0; height: 0; border-left: ".concat(i,"px solid transparent; border-right: ").concat(i,"px solid transparent; border-bottom: ").concat(e.shapes_square_size_phone,"px solid ").concat(e.shape_color,";"),device:"phone"}])}e.shapes_type&&t.push([{selector:"%%order_class%%"}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%%",device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%%",device:"phone"}])}if("rectangle"===e.shapes_type){var s=parseFloat(e.shapes_square_size,10)/2;if(t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(s,"px; background-color: ").concat(e.shape_color)}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var c=parseFloat(e.shapes_square_size_tablet,10)/2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(c,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var l=parseFloat(e.shapes_square_size_phone,10)/2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(l,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])}}if("oval"===e.shapes_type){var u=parseFloat(e.shapes_square_size,10)/2;if(t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(u,"px; border-radius: 50%; background-color: ").concat(e.shape_color)}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var d=parseFloat(e.shapes_square_size_tablet,10)/2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(d,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var p=parseFloat(e.shapes_square_size_phone,10)/2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(p,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])}}if("trapezoid"===e.shapes_type){t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"border-top-color: transparent !important;border-top-width: 0 !important;"}]);var _=parseFloat(e.shapes_square_size,10)/5,f=parseFloat(e.shapes_square_size,10)/5*2;if(t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: 0px; border-bottom: ").concat(f,"px solid ").concat(e.shape_color,";\n border-left: ").concat(_,"px solid transparent;\n border-right: ").concat(_,"px solid transparent;")}]),t.push([{selector:"%%order_class%%"}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var h=parseFloat(e.shapes_square_size_tablet,10)/5,b=parseFloat(e.shapes_square_size_tablet,10)/5*2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size_tablet,"px; height: 0px; border-bottom: ").concat(b,"px solid ").concat(e.shape_color,";\n border-left: ").concat(h,"px solid transparent;\n border-right: ").concat(h,"px solid transparent;"),device:"tablet"}]),t.push([{selector:"%%order_class%%",device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var m=parseFloat(e.shapes_square_size_phone,10)/5,y=parseFloat(e.shapes_square_size_phone,10)/5*2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size_phone,"px; height: 0px; border-bottom: ").concat(y,"px solid ").concat(e.shape_color,";\n border-left: ").concat(m,"px solid transparent;\n border-right: ").concat(m,"px solid transparent;"),device:"phone"}]),t.push([{selector:"%%order_class%%",device:"phone"}])}}if("parallelogram"===e.shapes_type){var v=parseFloat(e.shapes_square_size,10)/2;if(t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(v,"px; transform: skew(20deg); background-color: ").concat(e.shape_color)}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var g=parseFloat(e.shapes_square_size_tablet,10)/2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(g,"px;"),device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var w=parseFloat(e.shapes_square_size_phone,10)/2;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(w,"px;"),device:"phone"}])}}if("diamond_square"===e.shapes_type&&(t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color)}]),t.push([{selector:"%%order_class%%"}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"hexagon"===e.shapes_type){t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"border-width: 0 !important;"}]);var x=parseFloat(e.shapes_square_size,10)/2,k=parseFloat(e.shapes_square_size,10)/1.77,O=parseFloat(e.shapes_square_size,10)/4;if(t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"margin: ".concat(O,"px 0 !important;")}]),t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"position: relative; width: ".concat(e.shapes_square_size,"px; height: ").concat(k,"px; background-color: ").concat(e.shape_color)}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:before",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(x,"px solid transparent;\n border-right: ").concat(x,"px solid transparent; bottom: 100%; border-bottom: ").concat(O,"px solid ").concat(e.shape_color,";")}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:after",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(x,"px solid transparent;\n border-right: ").concat(x,"px solid transparent; top: 100%;\n width: 0; border-top: ").concat(O,"px solid ").concat(e.shape_color,";")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet){var S=parseFloat(e.shapes_square_size_tablet,10)/2,j=parseFloat(e.shapes_square_size_tablet,10)/1.77,E=parseFloat(e.shapes_square_size_tablet,10)/4;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"position: relative; width: ".concat(e.shapes_square_size_tablet,"px; height: ").concat(j,"px; background-color: ").concat(e.shape_color),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"margin: ".concat(E,"px 0 !important;"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:before",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(S,"px solid transparent;\n border-right: ").concat(S,"px solid transparent; bottom: 100%; border-bottom: ").concat(E,"px solid ").concat(e.shape_color,";"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:after",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(S,"px solid transparent;\n border-right: ").concat(S,"px solid transparent; top: 100%;\n width: 0; border-top: ").concat(E,"px solid ").concat(e.shape_color,";"),device:"tablet"}])}if(e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone){var P=parseFloat(e.shapes_square_size_phone,10)/2,z=parseFloat(e.shapes_square_size_phone,10)/1.77,C=parseFloat(e.shapes_square_size_phone,10)/4;t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"position: relative; width: ".concat(e.shapes_square_size_phone,"px; height: ").concat(z,"px; background-color: ").concat(e.shape_color),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"margin: ".concat(C,"px 0 !important;"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:before",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(P,"px solid transparent;\n border-right: ").concat(P,"px solid transparent; bottom: 100%; border-bottom: ").concat(C,"px solid ").concat(e.shape_color,";"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper:after",declaration:'content: "";\n position: absolute;\n width: 0; border-left: '.concat(P,"px solid transparent;\n border-right: ").concat(P,"px solid transparent; top: 100%;\n width: 0; border-top: ").concat(C,"px solid ").concat(e.shape_color,";"),device:"phone"}])}}return"blob_one"===e.shapes_type&&(t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_two"===e.shapes_type&&(t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_three"===e.shapes_type&&(t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_four"===e.shapes_type&&(t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_five"===e.shapes_type&&(t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_six"===e.shapes_type&&(t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_seven"===e.shapes_type&&(t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),"blob_eight"===e.shapes_type&&(t.push([{selector:"%%order_class%%"}]),t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"width: ".concat(e.shapes_square_size,"px; height: ").concat(e.shapes_square_size,"px; background-color: ").concat(e.shape_color,";\n ")}]),e.shapes_square_size_tablet&&o&&e.shapes_square_size_tablet&&""!==e.shapes_square_size_tablet&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_tablet,"px;width: ").concat(e.shapes_square_size_tablet,"px;"),device:"tablet"}]),e.shapes_square_size_phone&&o&&e.shapes_square_size_phone&&""!==e.shapes_square_size_phone&&t.push([{selector:"%%order_class%% .dsm_shapes_wrapper",declaration:"height: ".concat(e.shapes_square_size_phone,"px; width: ").concat(e.shapes_square_size_phone,"px;"),device:"phone"}])),t}}],(a=[{key:"_renderhexagon",value:function(){var e=this.props;if("hexagon"===e.shapes_type)return n.a.createElement("svg",{width:"175",height:"200"},n.a.createElement("polyline",{fill:e.shape_color,transform:"scale(1)",points:"87,0 174,50 174,150 87,200 0,150 0,50 87,0"}))}},{key:"render",value:function(){var e=this.props;return n.a.createElement(o.Fragment,null,n.a.createElement("div",{className:"dsm_shapes_wrapper dsm_shapes_".concat(e.shapes_type)}))}}])&&s(r.prototype,a),i&&s(r,i),t}();Object.defineProperty(l,"slug",{configurable:!0,enumerable:!0,writable:!0,value:"dsm_shapes"}),t.a=l},function(e,t,r){"use strict";(function(e){var o=r(0),n=r.n(o),a=r(22),i=r.n(a),s=r(93);r.n(s);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 l(e,t){for(var r=0;r<t.length;r++){var o=t[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}function u(e,t){return!t||"object"!==c(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}var d=function(t){function r(){return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,r),u(this,(r.__proto__||Object.getPrototypeOf(r)).apply(this,arguments))}var a,s,c;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)}(r,o["Component"]),a=r,c=[{key:"css",value:function(e){var t=[];if("off"===e.no_overlay){var r=e.overlay_color_last_edited,o=r&&r.startsWith("on");e.overlay_color&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-overlay:hover",declaration:"background-color: ".concat(e.overlay_color,";")}]),e.overlay_color_tablet&&o&&e.overlay_color_tablet&&""!==e.overlay_color_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-overlay:hover",declaration:"background-color: ".concat(e.overlay_color_tablet,";"),device:"tablet"}]),e.overlay_color_phone&&o&&e.overlay_color_phone&&""!==e.overlay_color_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-overlay:hover",declaration:"background-color: ".concat(e.overlay_color_phone,";"),device:"phone"}]);var n=e.before_label_background_color_last_edited,a=n&&n.startsWith("on");e.before_label_background_color&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-before-label:before",declaration:"background-color: ".concat(e.before_label_background_color,";")}]),e.before_label_background_color_tablet&&a&&e.before_label_background_color_tablet&&""!==e.before_label_background_color_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-before-label:before",declaration:"background-color: ".concat(e.before_label_background_color_tablet,";"),device:"tablet"}]),e.before_label_background_color_phone&&a&&e.before_label_background_color_phone&&""!==e.before_label_background_color_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-before-label:before",declaration:"background-color: ".concat(e.before_label_background_color_phone,";"),device:"phone"}]);var i=e.after_label_background_color_last_edited,s=i&&i.startsWith("on");e.after_label_background_color&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-after-label:before",declaration:"background-color: ".concat(e.after_label_background_color,";")}]),e.after_label_background_color_tablet&&s&&e.after_label_background_color_tablet&&""!==e.after_label_background_color_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-after-label:before",declaration:"background-color: ".concat(e.after_label_background_color_tablet,";"),device:"tablet"}]),e.after_label_background_color_phone&&s&&e.after_label_background_color_phone&&""!==e.after_label_background_color_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-after-label:before",declaration:"background-color: ".concat(e.after_label_background_color_phone,";"),device:"phone"}])}var c=e.handle_border_color_last_edited,l=c&&c.startsWith("on");e.handle_border_color&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:after",declaration:"background-color: ".concat(e.handle_border_color,";")}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-color: ".concat(e.handle_border_color,";")}])),e.handle_border_color_tablet&&l&&e.handle_border_color_tablet&&""!==e.handle_border_color_tablet&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:after",declaration:"background-color: ".concat(e.handle_border_color_tablet,";"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-color: ".concat(e.handle_border_color_tablet,";"),device:"tablet"}])),e.handle_border_color_phone&&l&&e.handle_border_color_phone&&""!==e.handle_border_color_phone&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-vertical .dsm-before-after-image-slider-handle:after",declaration:"background-color: ".concat(e.handle_border_color_phone,";"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-color: ".concat(e.handle_border_color_phone,";"),device:"phone"}]));var u=e.handle_border_radius_last_edited,d=u&&u.startsWith("on");e.handle_border_radius&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-radius: ".concat(e.handle_border_radius,";")}]),e.handle_border_radius_tablet&&d&&e.handle_border_radius_tablet&&""!==e.handle_border_radius_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-radius: ".concat(e.handle_border_radius_tablet,";"),device:"tablet"}]),e.handle_border_radius_phone&&d&&e.handle_border_radius_phone&&""!==e.handle_border_radius_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"border-radius: ".concat(e.handle_border_radius_phone,";"),device:"phone"}]);var p=e.handle_background_color_last_edited,_=p&&p.startsWith("on");e.handle_background_color&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"background-color: ".concat(e.handle_background_color,";")}]),e.handle_background_color_tablet&&_&&e.handle_background_color_tablet&&""!==e.handle_background_color_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"background-color: ".concat(e.handle_background_color_tablet,";"),device:"tablet"}]),e.handle_background_color_phone&&_&&e.handle_background_color_phone&&""!==e.handle_background_color_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-handle",declaration:"background-color: ".concat(e.handle_background_color_phone,";"),device:"phone"}]);var f=e.handle_arrow_color_last_edited,h=f&&f.startsWith("on");return"vertical"===e.orientation?(e.handle_arrow_color&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-down-arrow",declaration:"border-top-color: ".concat(e.handle_arrow_color,";")}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-up-arrow",declaration:"border-bottom-color: ".concat(e.handle_arrow_color,";")}])),e.handle_arrow_color_tablet&&h&&e.handle_arrow_color_tablet&&""!==e.handle_arrow_color_tablet&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-down-arrow",declaration:"border-top-color: ".concat(e.handle_arrow_color_tablet,";"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-up-arrow",declaration:"border-bottom-color: ".concat(e.handle_arrow_color_tablet,";"),device:"tablet"}])),e.handle_arrow_color_phone&&h&&e.handle_arrow_color_phone&&""!==e.handle_arrow_color_phone&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-down-arrow",declaration:"border-top-color: ".concat(e.handle_arrow_color_phone,";"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-up-arrow",declaration:"border-bottom-color: ".concat(e.handle_arrow_color_phone,";"),device:"phone"}]))):(e.handle_arrow_color&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-left-arrow",declaration:"border-right-color: ".concat(e.handle_arrow_color,";")}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-right-arrow",declaration:"border-left-color: ".concat(e.handle_arrow_color,";")}])),e.handle_arrow_color_tablet&&h&&e.handle_arrow_color_tablet&&""!==e.handle_arrow_color_tablet&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-left-arrow",declaration:"border-right-color: ".concat(e.handle_arrow_color_tablet,";"),device:"tablet"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-right-arrow",declaration:"border-left-color: ".concat(e.handle_arrow_color_tablet,";"),device:"tablet"}])),e.handle_arrow_color_phone&&h&&e.handle_arrow_color_phone&&""!==e.handle_arrow_color_phone&&(t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-left-arrow",declaration:"border-right-color: ".concat(e.handle_arrow_color_phone,";"),device:"phone"}]),t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-right-arrow",declaration:"border-left-color: ".concat(e.handle_arrow_color_phone,";"),device:"phone"}])),e.handle_border_color&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after",declaration:"box-shadow: 0 -3px 0 ".concat(e.handle_border_color,", 0px 0px 12px rgba(51, 51, 51, 0.5);")}]),e.handle_border_color_tablet&&l&&e.handle_border_color_tablet&&""!==e.handle_border_color_tablet&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after",declaration:"box-shadow: 0 -3px 0 ".concat(e.handle_border_color_tablet,", 0px 0px 12px rgba(51, 51, 51, 0.5);"),device:"tablet"}]),e.handle_border_color_phone&&l&&e.handle_border_color_phone&&""!==e.handle_border_color_phone&&t.push([{selector:"%%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:before, %%order_class%% .dsm-before-after-image-slider-horizontal .dsm-before-after-image-slider-handle:after",declaration:"box-shadow: 0 -3px 0 ".concat(e.handle_border_color_phone,", 0px 0px 12px rgba(51, 51, 51, 0.5);"),device:"phone"}])),t}}],(s=[{key:"componentDidMount",value:function(){var t,r;t=function(){var e=Object.assign||window.jQuery&&i.a.extend,t=8,r=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(e,t){return window.setTimeout(function(){e()},25)};!function(){if("function"===typeof window.CustomEvent)return!1;function e(e,t){t=t||{bubbles:!1,cancelable:!1,detail:void 0};var r=document.createEvent("CustomEvent");return r.initCustomEvent(e,t.bubbles,t.cancelable,t.detail),r}e.prototype=window.Event.prototype,window.CustomEvent=e}();var o={textarea:!0,input:!0,select:!0,button:!0},n={move:"mousemove",cancel:"mouseup dragstart",end:"mouseup"},a={move:"touchmove",cancel:"touchend",end:"touchend"},s=/\s+/,c={bubbles:!0,cancelable:!0},l="function"===typeof Symbol?Symbol("events"):{};function u(e){return e[l]||(e[l]={})}function d(e,t,r,o,n){t=t.split(s);var a,i=u(e),c=t.length;function l(e){r(e,o)}for(;c--;)(i[a=t[c]]||(i[a]=[])).push([r,l]),e.addEventListener(a,l)}function p(e,t,r,o){t=t.split(s);var n,a,i,c=u(e),l=t.length;if(c)for(;l--;)if(a=c[n=t[l]])for(i=a.length;i--;)a[i][0]===r&&(e.removeEventListener(n,a[i][1]),a.splice(i,1))}function _(t,r,o){var n=function(e){return new CustomEvent(e,c)}(r);o&&e(n,o),t.dispatchEvent(n)}function f(){}function h(e){e.preventDefault()}function b(e,t){var r,o;if(e.identifiedTouch)return e.identifiedTouch(t);for(r=-1,o=e.length;++r<o;)if(e[r].identifier===t)return e[r]}function m(e,t){var r=b(e.changedTouches,t.identifier);if(r&&(r.pageX!==t.pageX||r.pageY!==t.pageY))return r}function y(e,t){x(e,t,e,g)}function v(e,t){g()}function g(){p(document,n.move,y),p(document,n.cancel,v)}function w(e){p(document,a.move,e.touchmove),p(document,a.cancel,e.touchend)}function x(e,r,o,n){var a=o.pageX-r.pageX,i=o.pageY-r.pageY;a*a+i*i<t*t||function(e,t,r,o,n,a){var i=e.targetTouches,s=e.timeStamp-t.timeStamp,c={altKey:e.altKey,ctrlKey:e.ctrlKey,shiftKey:e.shiftKey,startX:t.pageX,startY:t.pageY,distX:o,distY:n,deltaX:o,deltaY:n,pageX:r.pageX,pageY:r.pageY,velocityX:o/s,velocityY:n/s,identifier:t.identifier,targetTouches:i,finger:i?i.length:1,enableMove:function(){this.moveEnabled=!0,this.enableMove=f,e.preventDefault()}};_(t.target,"movestart",c),a(t)}(e,r,o,a,i,n)}function k(e,t){var r=t.timer;t.touch=e,t.timeStamp=e.timeStamp,r.kick()}function O(e,t){var r=t.target,o=t.event,a=t.timer;p(document,n.move,k),p(document,n.end,O),j(r,o,a,function(){setTimeout(function(){p(r,"click",h)},0)})}function S(e,t){var r=t.target,o=t.event,n=t.timer;b(e.changedTouches,o.identifier)&&(!function(e){p(document,a.move,e.activeTouchmove),p(document,a.end,e.activeTouchend)}(t),j(r,o,n))}function j(e,t,r,o){r.end(function(){return _(e,"moveend",t),o&&o()})}if(d(document,"mousedown",function(e){(function(e){return 1===e.which&&!e.ctrlKey&&!e.altKey})(e)&&(function(e){return!!o[e.target.tagName.toLowerCase()]}(e)||(d(document,n.move,y,e),d(document,n.cancel,v,e)))}),d(document,"touchstart",function(e){if(!o[e.target.tagName.toLowerCase()]){var t=e.changedTouches[0],r={target:t.target,pageX:t.pageX,pageY:t.pageY,identifier:t.identifier,touchmove:function(e,t){!function(e,t){var r=m(e,t);r&&x(e,t,r,w)}(e,t)},touchend:function(e,t){!function(e,t){b(e.changedTouches,t.identifier)&&w(t)}(e,t)}};d(document,a.move,r.touchmove,r),d(document,a.cancel,r.touchend,r)}}),d(document,"movestart",function(e){if(!e.defaultPrevented&&e.moveEnabled){var t={startX:e.startX,startY:e.startY,pageX:e.pageX,pageY:e.pageY,distX:e.distX,distY:e.distY,deltaX:e.deltaX,deltaY:e.deltaY,velocityX:e.velocityX,velocityY:e.velocityY,identifier:e.identifier,targetTouches:e.targetTouches,finger:e.finger},o={target:e.target,event:t,timer:new function(e){var t=e,o=!1,n=!1;function a(e){o?(t(),r(a),n=!0,o=!1):n=!1}this.kick=function(e){o=!0,n||a()},this.end=function(e){var r=t;e&&(n?(t=o?function(){r(),e()}:e,o=!0):e())}}(function(e){(function(e,t,r){var o=r-e.timeStamp;e.distX=t.pageX-e.startX,e.distY=t.pageY-e.startY,e.deltaX=t.pageX-e.pageX,e.deltaY=t.pageY-e.pageY,e.velocityX=.3*e.velocityX+.7*e.deltaX/o,e.velocityY=.3*e.velocityY+.7*e.deltaY/o,e.pageX=t.pageX,e.pageY=t.pageY})(t,o.touch,o.timeStamp),_(o.target,"move",t)}),touch:void 0,timeStamp:e.timeStamp};void 0===e.identifier?(d(e.target,"click",h),d(document,n.move,k,o),d(document,n.end,O,o)):(o.activeTouchmove=function(e,t){!function(e,t){var r=t.event,o=t.timer,n=m(e,r);n&&(e.preventDefault(),r.targetTouches=e.targetTouches,t.touch=n,t.timeStamp=e.timeStamp,o.kick())}(e,t)},o.activeTouchend=function(e,t){S(e,t)},d(document,a.move,o.activeTouchmove,o),d(document,a.end,o.activeTouchend,o))}}),window.jQuery){var E="startX startY pageX pageY distX distY deltaX deltaY velocityX velocityY".split(" ");i.a.event.special.movestart={setup:function(){return d(this,"movestart",P),!1},teardown:function(){return p(this,"movestart",P),!1},add:T},i.a.event.special.move={setup:function(){return d(this,"movestart",z),!1},teardown:function(){return p(this,"movestart",z),!1},add:T},i.a.event.special.moveend={setup:function(){return d(this,"movestart",C),!1},teardown:function(){return p(this,"movestart",C),!1},add:T}}function P(e){e.enableMove()}function z(e){e.enableMove()}function C(e){e.enableMove()}function T(e){var t=e.handler;e.handler=function(e){for(var r,o=E.length;o--;)e[r=E[o]]=e.originalEvent[r];t.apply(this,arguments)}}},"undefined"!==typeof e&&null!==e&&e.exports?e.exports=t:t(),(r=i.a).fn.twentytwenty=function(e){return e=r.extend({default_offset_pct:.5,orientation:"horizontal",before_label:"Before",after_label:"After",no_overlay:!1,move_slider_on_hover:!1,move_with_handle_only:!0,click_to_move:!1},e),this.each(function(){var t=e.default_offset_pct,o=r(this),n=e.orientation,a="vertical"===n?"down":"left",i="vertical"===n?"up":"right";if(!e.no_overlay){o.children(".dsm-before-after-image-slider-overlay").length||o.append("<div class='dsm-before-after-image-slider-overlay'></div>");var s=o.find(".dsm-before-after-image-slider-overlay");s.children(".dsm-before-after-image-slider-before-label").length||s.append("<div class='dsm-before-after-image-slider-before-label' data-content='"+e.before_label+"'></div>"),s.children(".dsm-before-after-image-slider-after-label").length||s.append("<div class='dsm-before-after-image-slider-after-label' data-content='"+e.after_label+"'></div>")}var c=o.find("img:first"),l=o.find("img:last");o.children(".dsm-before-after-image-slider-handle").length||o.append("<div class='dsm-before-after-image-slider-handle'></div>");var u=o.find(".dsm-before-after-image-slider-handle");u.children(".dsm-before-after-image-slider-"+a+"-arrow").length||u.append("<span class='dsm-before-after-image-slider-"+a+"-arrow'></span>"),u.children(".dsm-before-after-image-slider-"+i+"-arrow").length||u.append("<span class='dsm-before-after-image-slider-"+i+"-arrow'></span>"),o.addClass("dsm-before-after-image-slider-container"),c.addClass("dsm-before-after-image-slider-before"),l.addClass("dsm-before-after-image-slider-after");var d=function(e){var t,r,a,i=(t=e,r=c.width(),a=c.height(),{w:r+"px",h:a+"px",cw:t*r+"px",ch:t*a+"px"});u.css("vertical"===n?"top":"left","vertical"===n?i.ch:i.cw),function(e){"vertical"===n?(c.css("clip","rect(0,"+e.w+","+e.ch+",0)"),l.css("clip","rect("+e.ch+","+e.w+","+e.h+",0)")):(c.css("clip","rect(0,"+e.cw+","+e.h+",0)"),l.css("clip","rect(0,"+e.w+","+e.h+","+e.cw+")")),o.css("height",e.h)}(i)},p=function(e,t){var r,o,a;return r="vertical"===n?(t-f)/b:(e-_)/h,o=0,a=1,Math.max(o,Math.min(a,r))};r(window).on("resize.twentytwenty",function(e){d(t)});var _=0,f=0,h=0,b=0,m=function(e){(e.distX>e.distY&&e.distX<-e.distY||e.distX<e.distY&&e.distX>-e.distY)&&"vertical"!==n?e.preventDefault():(e.distX<e.distY&&e.distX<-e.distY||e.distX>e.distY&&e.distX>-e.distY)&&"vertical"===n&&e.preventDefault(),o.addClass("active"),_=o.offset().left,f=o.offset().top,h=c.width(),b=c.height()},y=function(e){o.hasClass("active")&&(t=p(e.pageX,e.pageY),d(t))},v=function(){o.removeClass("active")},g=e.move_with_handle_only?u:o;g.on("movestart",m),g.on("move",y),g.on("moveend",v),!0===e.move_slider_on_hover?(o.on("mouseenter",m),o.on("mousemove",y),o.on("mouseleave",v)):o.unbind("mouseenter mousemove mouseleave"),u.on("touchmove",function(e){e.preventDefault()}),o.find("img").on("mousedown",function(e){e.preventDefault()}),!0===e.click_to_move?o.on("click",function(e){_=o.offset().left,f=o.offset().top,h=c.width(),b=c.height(),t=p(e.pageX,e.pageY),d(t)}):o.unbind("click"),r(window).trigger("resize.twentytwenty")})}}},{k
|