| @@ -258,10 +258,10 @@ | ||
| 258 | 258 | [ |
| 259 | 259 | 'label' => esc_html__( 'Alignment', 'elementor' ), |
| 260 | 260 | 'type' => Controls_Manager::CHOOSE, |
| 261 | 261 | 'options' => [ |
| 262 | - 'start' => [ | |
| 263 | - 'title' => esc_html__( 'Start', 'elementor' ), | |
| 262 | + 'left' => [ | |
| 263 | + 'title' => esc_html__( 'Left', 'elementor' ), | |
| 264 | 264 | 'icon' => 'eicon-h-align-left', |
| 265 | 265 | ], |
| 266 | 266 | 'center' => [ |
| 267 | 267 | 'title' => esc_html__( 'Center', 'elementor' ), |
| @@ -266,19 +266,14 @@ | ||
| 266 | 266 | 'center' => [ |
| 267 | 267 | 'title' => esc_html__( 'Center', 'elementor' ), |
| 268 | 268 | 'icon' => 'eicon-h-align-center', |
| 269 | 269 | ], |
| 270 | - 'end' => [ | |
| 271 | - 'title' => esc_html__( 'End', 'elementor' ), | |
| 270 | + 'right' => [ | |
| 271 | + 'title' => esc_html__( 'Right', 'elementor' ), | |
| 272 | 272 | 'icon' => 'eicon-h-align-right', |
| 273 | 273 | ], |
| 274 | 274 | ], |
| 275 | - 'classes_dictionary' => [ | |
| 276 | - 'left' => is_rtl() ? 'end' : 'start', | |
| 277 | - 'right' => is_rtl() ? 'start' : 'end', | |
| 278 | - ], | |
| 279 | 275 | 'prefix_class' => 'elementor%s-align-', |
| 280 | - 'classes' => 'elementor-control-start-end', | |
| 281 | 276 | ] |
| 282 | 277 | ); |
| 283 | 278 | |
| 284 | 279 | $this->add_control( |
| @@ -782,9 +777,9 @@ | ||
| 782 | 777 | <i class="<?php echo esc_attr( $item['icon'] ); ?>" aria-hidden="true"></i> |
| 783 | 778 | <?php } ?> |
| 784 | 779 | </span> |
| 785 | 780 | <?php endif; ?> |
| 786 | - <span <?php $this->print_render_attribute_string( $repeater_setting_key ); ?>><?php echo wp_kses_post( $item['text'] ); ?></span> | |
| 781 | + <span <?php $this->print_render_attribute_string( $repeater_setting_key ); ?>><?php $this->print_unescaped_setting( 'text', 'icon_list', $index ); ?></span> | |
| 787 | 782 | <?php if ( ! empty( $item['link']['url'] ) ) : ?> |
| 788 | 783 | </a> |
| 789 | 784 | <?php endif; ?> |
| 790 | 785 | </li> |
| @@ -826,10 +821,10 @@ | ||
| 826 | 821 | |
| 827 | 822 | view.addInlineEditingAttributes( iconTextKey ); #> |
| 828 | 823 | |
| 829 | 824 | <li {{{ view.getRenderAttributeString( 'list_item' ) }}}> |
| 830 | - <# if ( item.link && item.link?.url ) { #> | |
| 831 | - <a href="{{ elementor.helpers.sanitizeUrl( item.link?.url ) }}"> | |
| 825 | + <# if ( item.link && item.link.url ) { #> | |
| 826 | + <a href="{{ elementor.helpers.sanitizeUrl( item.link.url ) }}"> | |
| 832 | 827 | <# } #> |
| 833 | 828 | <# if ( item.icon || item.selected_icon.value ) { #> |
| 834 | 829 | <span class="elementor-icon-list-icon"> |
| 835 | 830 | <# |
| @@ -843,9 +838,9 @@ | ||
| 843 | 838 | #> |
| 844 | 839 | </span> |
| 845 | 840 | <# } #> |
| 846 | 841 | <span {{{ view.getRenderAttributeString( iconTextKey ) }}}>{{{ item.text }}}</span> |
| 847 | - <# if ( item.link && item.link?.url ) { #> | |
| 842 | + <# if ( item.link && item.link.url ) { #> | |
| 848 | 843 | </a> |
| 849 | 844 | <# } #> |
| 850 | 845 | </li> |
| 851 | 846 | <# |