block.json
5 months ago
index.asset.php
5 months ago
index.js
5 months ago
style-index-rtl.css
2 months ago
style-index.css
2 months ago
view.php
5 months ago
view.php
19 lines
| 1 | <input |
| 2 | <?php echo wp_kses_data( |
| 3 | get_block_wrapper_attributes( |
| 4 | [ |
| 5 | 'data-wp-bind--value' => 'context.quantity', |
| 6 | 'data-wp-on--change' => 'callbacks.onQuantityChange', |
| 7 | 'data-wp-bind--disabled' => 'state.isQuantityDisabled', |
| 8 | 'data-wp-bind--aria-disabled' => 'state.isQuantityDisabled', |
| 9 | 'min' => '1', |
| 10 | 'step' => '1', |
| 11 | 'autocomplete' => 'off', |
| 12 | 'role' => 'spinbutton', |
| 13 | 'type' => 'number', |
| 14 | 'aria-label' => esc_html__( 'Quantity', 'surecart' ), |
| 15 | ] |
| 16 | ) |
| 17 | ); ?> |
| 18 | /> |
| 19 |