block.json
6 months ago
index-rtl.css
6 months ago
index.asset.php
6 months ago
index.css
6 months ago
index.js
6 months ago
style-index-rtl.css
6 months ago
style-index.css
6 months ago
view.php
4 months ago
view.php
19 lines
| 1 | <ul |
| 2 | <?php echo wp_kses_data( get_block_wrapper_attributes( [ 'role' => 'list' ] ) ); ?> |
| 3 | data-wp-class--has-overflow="state.hasMultipleBumps" |
| 4 | data-wp-on--scrollend="callbacks.onCarouselScroll" |
| 5 | data-wp-on--keydown="actions.handleCarouselKeydown" |
| 6 | tabindex="0" |
| 7 | data-wp-bind--aria-label="state.orderBumpsListAriaLabel" |
| 8 | aria-label="<?php esc_attr_e( 'Order bumps carousel. Use left and right arrow keys to navigate.', 'surecart' ); ?>" |
| 9 | > |
| 10 | <template |
| 11 | data-wp-each--bump="state.orderBumps" |
| 12 | data-wp-each-key="context.bump.id" |
| 13 | > |
| 14 | <li class="sc-cart-order-bump-item" role="listitem"> |
| 15 | <?php echo $content; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> |
| 16 | </li> |
| 17 | </template> |
| 18 | </ul> |
| 19 |