@magento/venia-ui 11.7.1 → 11.7.2-alpha3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/RootComponents/Category/__tests__/__snapshots__/category.spec.js.snap +2 -0
- package/lib/RootComponents/Category/__tests__/category.spec.js +2 -1
- package/lib/RootComponents/Category/category.gql.js +2 -0
- package/lib/RootComponents/Category/category.js +23 -3
- package/lib/RootComponents/Product/__tests__/product.spec.js +2 -1
- package/lib/RootComponents/Product/product.js +14 -3
- package/lib/components/AccountInformationPage/__tests__/__snapshots__/editForm.spec.js.snap +8 -0
- package/lib/components/AccountInformationPage/__tests__/__snapshots__/editModal.spec.js.snap +6 -0
- package/lib/components/AddToCartDialog/__tests__/__snapshots__/addToCartDialog.spec.js.snap +2 -0
- package/lib/components/AddressBookPage/__tests__/__snapshots__/addressBookPage.spec.js.snap +6 -0
- package/lib/components/AddressBookPage/__tests__/__snapshots__/addressCard.spec.js.snap +18 -0
- package/lib/components/App/__tests__/__snapshots__/app.spec.js.snap +5 -0
- package/lib/components/App/__tests__/app.spec.js +14 -1
- package/lib/components/App/app.js +3 -0
- package/lib/components/CartPage/GiftCards/__tests__/__snapshots__/giftCard.spec.js.snap +3 -0
- package/lib/components/CartPage/GiftCards/__tests__/__snapshots__/giftCards.spec.js.snap +12 -0
- package/lib/components/CartPage/PriceAdjustments/CouponCode/__tests__/__snapshots__/couponCode.spec.js.snap +8 -0
- package/lib/components/CartPage/PriceAdjustments/ShippingMethods/__tests__/__snapshots__/shippingForm.spec.js.snap +7 -0
- package/lib/components/CartPage/PriceAdjustments/ShippingMethods/__tests__/__snapshots__/shippingMethods.spec.js.snap +2 -0
- package/lib/components/CartPage/PriceSummary/__tests__/__snapshots__/priceSummary.spec.js.snap +3 -0
- package/lib/components/CartPage/ProductListing/EditModal/__tests__/__snapshots__/productForm.spec.js.snap +10 -0
- package/lib/components/CartPage/ProductListing/__tests__/__snapshots__/product.spec.js.snap +8 -0
- package/lib/components/Checkout/Receipt/__tests__/__snapshots__/receipt.spec.js.snap +2 -0
- package/lib/components/Checkout/__tests__/__snapshots__/addressForm.spec.js.snap +8 -0
- package/lib/components/Checkout/__tests__/__snapshots__/checkoutButton.spec.js.snap +3 -0
- package/lib/components/Checkout/__tests__/__snapshots__/overview.spec.js.snap +9 -0
- package/lib/components/Checkout/__tests__/__snapshots__/paymentsForm.spec.js.snap +6 -0
- package/lib/components/Checkout/__tests__/__snapshots__/shippingform.spec.js.snap +8 -0
- package/lib/components/CheckoutPage/AddressBook/__tests__/__snapshots__/addressBook.spec.js.snap +10 -0
- package/lib/components/CheckoutPage/GuestSignIn/__tests__/__snapshots__/guestSignIn.spec.js.snap +6 -0
- package/lib/components/CheckoutPage/OrderConfirmationPage/__tests__/__snapshots__/createAccount.spec.js.snap +8 -0
- package/lib/components/CheckoutPage/PaymentInformation/__tests__/__snapshots__/braintreeSummary.spec.js.snap +6 -0
- package/lib/components/CheckoutPage/ShippingInformation/AddressForm/__tests__/__snapshots__/customerForm.spec.js.snap +8 -0
- package/lib/components/CheckoutPage/ShippingInformation/AddressForm/__tests__/__snapshots__/guestForm.spec.js.snap +10 -0
- package/lib/components/CheckoutPage/ShippingInformation/__tests__/__snapshots__/shippingInformation.spec.js.snap +4 -0
- package/lib/components/CheckoutPage/ShippingMethod/__tests__/__snapshots__/completedView.spec.js.snap +4 -0
- package/lib/components/CheckoutPage/ShippingMethod/__tests__/__snapshots__/shippingMethod.spec.js.snap +3 -0
- package/lib/components/CheckoutPage/ShippingMethod/__tests__/__snapshots__/updateModal.spec.js.snap +7 -0
- package/lib/components/CheckoutPage/__tests__/__snapshots__/checkoutPage.spec.js.snap +7 -0
- package/lib/components/CommunicationsPage/__tests__/__snapshots__/communicationsPage.spec.js.snap +7 -0
- package/lib/components/CreateAccount/__tests__/__snapshots__/createAccount.spec.js.snap +8 -0
- package/lib/components/Dialog/__tests__/__snapshots__/dialog.spec.js.snap +21 -0
- package/lib/components/ForgotPassword/ForgotPasswordForm/__tests__/__snapshots__/forgotPasswordForm.spec.js.snap +6 -0
- package/lib/components/Gallery/__tests__/__snapshots__/addToCartButton.spec.js.snap +5 -0
- package/lib/components/HomePage/homePage.module.css +0 -4
- package/lib/components/LegacyMiniCart/__tests__/__snapshots__/section.spec.js.snap +8 -0
- package/lib/components/MiniCart/__tests__/__snapshots__/miniCart.spec.js.snap +4 -0
- package/lib/components/MyAccount/ResetPassword/__tests__/__snapshots__/resetPassword.spec.js.snap +8 -0
- package/lib/components/OrderHistoryPage/OrderDetails/__tests__/__snapshots__/item.spec.js.snap +2 -0
- package/lib/components/OrderHistoryPage/OrderDetails/__tests__/__snapshots__/orderDetails.spec.js.snap +4 -0
- package/lib/components/OrderHistoryPage/__tests__/__snapshots__/orderHistoryPage.spec.js.snap +11 -0
- package/lib/components/Password/__tests__/__snapshots__/password.spec.js.snap +4 -0
- package/lib/components/ProductFullDetail/__tests__/__snapshots__/productFullDetail.spec.js.snap +23 -0
- package/lib/components/ProductImageCarousel/__tests__/__snapshots__/carousel.spec.js.snap +8 -0
- package/lib/components/ProductSort/__tests__/__snapshots__/productSort.spec.js.snap +2 -0
- package/lib/components/RobotsMeta/robotsMeta.gql.js +10 -0
- package/lib/components/RobotsMeta/robotsMeta.js +26 -0
- package/lib/components/SavedPaymentsPage/__tests__/__snapshots__/creditCard.spec.js.snap +9 -0
- package/lib/components/Wishlist/AddToListButton/__tests__/__snapshots__/addToListButton.ce.spec.js.snap +4 -0
- package/lib/components/Wishlist/AddToListButton/__tests__/__snapshots__/addToListButton.ee.spec.js.snap +6 -0
- package/lib/components/Wishlist/WishlistDialog/CreateWishlistForm/__tests__/__snapshots__/createWishlistForm.spec.js.snap +7 -0
- package/package.json +2 -2
|
@@ -39,6 +39,7 @@ exports[`does not render a close X button in modal mode 1`] = `
|
|
|
39
39
|
>
|
|
40
40
|
<button
|
|
41
41
|
className="root_lowPriority"
|
|
42
|
+
data-react-aria-pressable={true}
|
|
42
43
|
disabled={false}
|
|
43
44
|
onDragStart={[Function]}
|
|
44
45
|
onKeyDown={[Function]}
|
|
@@ -50,6 +51,7 @@ exports[`does not render a close X button in modal mode 1`] = `
|
|
|
50
51
|
onTouchEnd={[Function]}
|
|
51
52
|
onTouchMove={[Function]}
|
|
52
53
|
onTouchStart={[Function]}
|
|
54
|
+
tabIndex={0}
|
|
53
55
|
type="reset"
|
|
54
56
|
>
|
|
55
57
|
<span
|
|
@@ -63,6 +65,7 @@ exports[`does not render a close X button in modal mode 1`] = `
|
|
|
63
65
|
</button>
|
|
64
66
|
<button
|
|
65
67
|
className="root_highPriority"
|
|
68
|
+
data-react-aria-pressable={true}
|
|
66
69
|
disabled={false}
|
|
67
70
|
onClick={[Function]}
|
|
68
71
|
onDragStart={[Function]}
|
|
@@ -75,6 +78,7 @@ exports[`does not render a close X button in modal mode 1`] = `
|
|
|
75
78
|
onTouchEnd={[Function]}
|
|
76
79
|
onTouchMove={[Function]}
|
|
77
80
|
onTouchStart={[Function]}
|
|
81
|
+
tabIndex={0}
|
|
78
82
|
type="submit"
|
|
79
83
|
>
|
|
80
84
|
<span
|
|
@@ -168,6 +172,7 @@ exports[`renders a Dialog with disabled buttons 1`] = `
|
|
|
168
172
|
>
|
|
169
173
|
<button
|
|
170
174
|
className="root_lowPriority"
|
|
175
|
+
data-react-aria-pressable={true}
|
|
171
176
|
disabled={true}
|
|
172
177
|
onDragStart={[Function]}
|
|
173
178
|
onKeyDown={[Function]}
|
|
@@ -192,6 +197,7 @@ exports[`renders a Dialog with disabled buttons 1`] = `
|
|
|
192
197
|
</button>
|
|
193
198
|
<button
|
|
194
199
|
className="root_highPriority"
|
|
200
|
+
data-react-aria-pressable={true}
|
|
195
201
|
disabled={true}
|
|
196
202
|
onClick={[Function]}
|
|
197
203
|
onDragStart={[Function]}
|
|
@@ -373,6 +379,7 @@ exports[`renders a basic Dialog 1`] = `
|
|
|
373
379
|
>
|
|
374
380
|
<button
|
|
375
381
|
className="root_lowPriority"
|
|
382
|
+
data-react-aria-pressable={true}
|
|
376
383
|
disabled={false}
|
|
377
384
|
onDragStart={[Function]}
|
|
378
385
|
onKeyDown={[Function]}
|
|
@@ -384,6 +391,7 @@ exports[`renders a basic Dialog 1`] = `
|
|
|
384
391
|
onTouchEnd={[Function]}
|
|
385
392
|
onTouchMove={[Function]}
|
|
386
393
|
onTouchStart={[Function]}
|
|
394
|
+
tabIndex={0}
|
|
387
395
|
type="reset"
|
|
388
396
|
>
|
|
389
397
|
<span
|
|
@@ -397,6 +405,7 @@ exports[`renders a basic Dialog 1`] = `
|
|
|
397
405
|
</button>
|
|
398
406
|
<button
|
|
399
407
|
className="root_highPriority"
|
|
408
|
+
data-react-aria-pressable={true}
|
|
400
409
|
disabled={false}
|
|
401
410
|
onClick={[Function]}
|
|
402
411
|
onDragStart={[Function]}
|
|
@@ -409,6 +418,7 @@ exports[`renders a basic Dialog 1`] = `
|
|
|
409
418
|
onTouchEnd={[Function]}
|
|
410
419
|
onTouchMove={[Function]}
|
|
411
420
|
onTouchStart={[Function]}
|
|
421
|
+
tabIndex={0}
|
|
412
422
|
type="submit"
|
|
413
423
|
>
|
|
414
424
|
<span
|
|
@@ -502,6 +512,7 @@ exports[`renders a dialog with only the confirm button disabled 1`] = `
|
|
|
502
512
|
>
|
|
503
513
|
<button
|
|
504
514
|
className="root_lowPriority"
|
|
515
|
+
data-react-aria-pressable={true}
|
|
505
516
|
disabled={false}
|
|
506
517
|
onDragStart={[Function]}
|
|
507
518
|
onKeyDown={[Function]}
|
|
@@ -513,6 +524,7 @@ exports[`renders a dialog with only the confirm button disabled 1`] = `
|
|
|
513
524
|
onTouchEnd={[Function]}
|
|
514
525
|
onTouchMove={[Function]}
|
|
515
526
|
onTouchStart={[Function]}
|
|
527
|
+
tabIndex={0}
|
|
516
528
|
type="reset"
|
|
517
529
|
>
|
|
518
530
|
<span
|
|
@@ -526,6 +538,7 @@ exports[`renders a dialog with only the confirm button disabled 1`] = `
|
|
|
526
538
|
</button>
|
|
527
539
|
<button
|
|
528
540
|
className="root_highPriority"
|
|
541
|
+
data-react-aria-pressable={true}
|
|
529
542
|
disabled={true}
|
|
530
543
|
onClick={[Function]}
|
|
531
544
|
onDragStart={[Function]}
|
|
@@ -635,6 +648,7 @@ exports[`should render children even if dialog is hidden and if shouldUnmountOnH
|
|
|
635
648
|
>
|
|
636
649
|
<button
|
|
637
650
|
className="root_lowPriority"
|
|
651
|
+
data-react-aria-pressable={true}
|
|
638
652
|
disabled={false}
|
|
639
653
|
onDragStart={[Function]}
|
|
640
654
|
onKeyDown={[Function]}
|
|
@@ -646,6 +660,7 @@ exports[`should render children even if dialog is hidden and if shouldUnmountOnH
|
|
|
646
660
|
onTouchEnd={[Function]}
|
|
647
661
|
onTouchMove={[Function]}
|
|
648
662
|
onTouchStart={[Function]}
|
|
663
|
+
tabIndex={0}
|
|
649
664
|
type="reset"
|
|
650
665
|
>
|
|
651
666
|
<span
|
|
@@ -659,6 +674,7 @@ exports[`should render children even if dialog is hidden and if shouldUnmountOnH
|
|
|
659
674
|
</button>
|
|
660
675
|
<button
|
|
661
676
|
className="root_highPriority"
|
|
677
|
+
data-react-aria-pressable={true}
|
|
662
678
|
disabled={false}
|
|
663
679
|
onClick={[Function]}
|
|
664
680
|
onDragStart={[Function]}
|
|
@@ -671,6 +687,7 @@ exports[`should render children even if dialog is hidden and if shouldUnmountOnH
|
|
|
671
687
|
onTouchEnd={[Function]}
|
|
672
688
|
onTouchMove={[Function]}
|
|
673
689
|
onTouchStart={[Function]}
|
|
690
|
+
tabIndex={0}
|
|
674
691
|
type="submit"
|
|
675
692
|
>
|
|
676
693
|
<span
|
|
@@ -772,6 +789,7 @@ exports[`supports modifying title and button texts 1`] = `
|
|
|
772
789
|
>
|
|
773
790
|
<button
|
|
774
791
|
className="root_lowPriority"
|
|
792
|
+
data-react-aria-pressable={true}
|
|
775
793
|
disabled={false}
|
|
776
794
|
onDragStart={[Function]}
|
|
777
795
|
onKeyDown={[Function]}
|
|
@@ -783,6 +801,7 @@ exports[`supports modifying title and button texts 1`] = `
|
|
|
783
801
|
onTouchEnd={[Function]}
|
|
784
802
|
onTouchMove={[Function]}
|
|
785
803
|
onTouchStart={[Function]}
|
|
804
|
+
tabIndex={0}
|
|
786
805
|
type="reset"
|
|
787
806
|
>
|
|
788
807
|
<span
|
|
@@ -796,6 +815,7 @@ exports[`supports modifying title and button texts 1`] = `
|
|
|
796
815
|
</button>
|
|
797
816
|
<button
|
|
798
817
|
className="root_highPriority"
|
|
818
|
+
data-react-aria-pressable={true}
|
|
799
819
|
disabled={false}
|
|
800
820
|
onClick={[Function]}
|
|
801
821
|
onDragStart={[Function]}
|
|
@@ -808,6 +828,7 @@ exports[`supports modifying title and button texts 1`] = `
|
|
|
808
828
|
onTouchEnd={[Function]}
|
|
809
829
|
onTouchMove={[Function]}
|
|
810
830
|
onTouchStart={[Function]}
|
|
831
|
+
tabIndex={0}
|
|
811
832
|
type="submit"
|
|
812
833
|
>
|
|
813
834
|
<span
|
|
@@ -54,6 +54,7 @@ exports[`renders when busy 1`] = `
|
|
|
54
54
|
>
|
|
55
55
|
<button
|
|
56
56
|
className="cancelButton"
|
|
57
|
+
data-react-aria-pressable={true}
|
|
57
58
|
disabled={true}
|
|
58
59
|
onClick={[Function]}
|
|
59
60
|
onDragStart={[Function]}
|
|
@@ -79,6 +80,7 @@ exports[`renders when busy 1`] = `
|
|
|
79
80
|
</button>
|
|
80
81
|
<button
|
|
81
82
|
className="submitButton"
|
|
83
|
+
data-react-aria-pressable={true}
|
|
82
84
|
disabled={true}
|
|
83
85
|
onClick={[Function]}
|
|
84
86
|
onDragStart={[Function]}
|
|
@@ -160,6 +162,7 @@ exports[`renders when not busy 1`] = `
|
|
|
160
162
|
>
|
|
161
163
|
<button
|
|
162
164
|
className="cancelButton"
|
|
165
|
+
data-react-aria-pressable={true}
|
|
163
166
|
disabled={false}
|
|
164
167
|
onClick={[Function]}
|
|
165
168
|
onDragStart={[Function]}
|
|
@@ -172,6 +175,7 @@ exports[`renders when not busy 1`] = `
|
|
|
172
175
|
onTouchEnd={[Function]}
|
|
173
176
|
onTouchMove={[Function]}
|
|
174
177
|
onTouchStart={[Function]}
|
|
178
|
+
tabIndex={0}
|
|
175
179
|
type="button"
|
|
176
180
|
>
|
|
177
181
|
<span
|
|
@@ -185,6 +189,7 @@ exports[`renders when not busy 1`] = `
|
|
|
185
189
|
</button>
|
|
186
190
|
<button
|
|
187
191
|
className="submitButton"
|
|
192
|
+
data-react-aria-pressable={true}
|
|
188
193
|
disabled={false}
|
|
189
194
|
onClick={[Function]}
|
|
190
195
|
onDragStart={[Function]}
|
|
@@ -197,6 +202,7 @@ exports[`renders when not busy 1`] = `
|
|
|
197
202
|
onTouchEnd={[Function]}
|
|
198
203
|
onTouchMove={[Function]}
|
|
199
204
|
onTouchStart={[Function]}
|
|
205
|
+
tabIndex={0}
|
|
200
206
|
type="submit"
|
|
201
207
|
>
|
|
202
208
|
<span
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
exports[`should render add to cart if in stock 1`] = `
|
|
4
4
|
<button
|
|
5
5
|
aria-label="Add to cart"
|
|
6
|
+
data-react-aria-pressable={true}
|
|
6
7
|
disabled={false}
|
|
7
8
|
onClick={[Function]}
|
|
8
9
|
onDragStart={[Function]}
|
|
@@ -15,6 +16,7 @@ exports[`should render add to cart if in stock 1`] = `
|
|
|
15
16
|
onTouchEnd={[Function]}
|
|
16
17
|
onTouchMove={[Function]}
|
|
17
18
|
onTouchStart={[Function]}
|
|
19
|
+
tabIndex={0}
|
|
18
20
|
type="button"
|
|
19
21
|
>
|
|
20
22
|
<span>
|
|
@@ -57,6 +59,7 @@ exports[`should render add to cart if in stock 1`] = `
|
|
|
57
59
|
exports[`should render out of cart if not in stock 1`] = `
|
|
58
60
|
<button
|
|
59
61
|
aria-label="Out of stock"
|
|
62
|
+
data-react-aria-pressable={true}
|
|
60
63
|
disabled={true}
|
|
61
64
|
onClick={[Function]}
|
|
62
65
|
onDragStart={[Function]}
|
|
@@ -119,6 +122,7 @@ exports[`should render out of cart if not in stock 1`] = `
|
|
|
119
122
|
exports[`should render properly 1`] = `
|
|
120
123
|
<button
|
|
121
124
|
aria-label="Add to cart"
|
|
125
|
+
data-react-aria-pressable={true}
|
|
122
126
|
disabled={false}
|
|
123
127
|
onClick={[Function]}
|
|
124
128
|
onDragStart={[Function]}
|
|
@@ -131,6 +135,7 @@ exports[`should render properly 1`] = `
|
|
|
131
135
|
onTouchEnd={[Function]}
|
|
132
136
|
onTouchMove={[Function]}
|
|
133
137
|
onTouchStart={[Function]}
|
|
138
|
+
tabIndex={0}
|
|
134
139
|
type="button"
|
|
135
140
|
>
|
|
136
141
|
<span>
|
|
@@ -51,11 +51,7 @@
|
|
|
51
51
|
* Target all column groups after the slider.
|
|
52
52
|
*/
|
|
53
53
|
:global(.venia-home-slider ~ div) {
|
|
54
|
-
display: grid !important;
|
|
55
54
|
gap: 0;
|
|
56
|
-
grid-auto-columns: 1fr;
|
|
57
|
-
grid-auto-flow: column;
|
|
58
|
-
grid-template-columns: repeat(3, 1fr);
|
|
59
55
|
padding: 0 1rem;
|
|
60
56
|
z-index: 1;
|
|
61
57
|
}
|
|
@@ -4,6 +4,7 @@ exports[`it does not render an icon when not passed one 1`] = `
|
|
|
4
4
|
<li>
|
|
5
5
|
<button
|
|
6
6
|
aria-label="Unit Test Text"
|
|
7
|
+
data-react-aria-pressable={true}
|
|
7
8
|
onClick={[Function]}
|
|
8
9
|
onDragStart={[Function]}
|
|
9
10
|
onKeyDown={[Function]}
|
|
@@ -15,6 +16,7 @@ exports[`it does not render an icon when not passed one 1`] = `
|
|
|
15
16
|
onTouchEnd={[Function]}
|
|
16
17
|
onTouchMove={[Function]}
|
|
17
18
|
onTouchStart={[Function]}
|
|
19
|
+
tabIndex={0}
|
|
18
20
|
type="button"
|
|
19
21
|
>
|
|
20
22
|
<Icon
|
|
@@ -36,6 +38,7 @@ exports[`it does not render an icon when passed an invalid one 1`] = `
|
|
|
36
38
|
<li>
|
|
37
39
|
<button
|
|
38
40
|
aria-label="Unit Test Text"
|
|
41
|
+
data-react-aria-pressable={true}
|
|
39
42
|
onClick={[Function]}
|
|
40
43
|
onDragStart={[Function]}
|
|
41
44
|
onKeyDown={[Function]}
|
|
@@ -47,6 +50,7 @@ exports[`it does not render an icon when passed an invalid one 1`] = `
|
|
|
47
50
|
onTouchEnd={[Function]}
|
|
48
51
|
onTouchMove={[Function]}
|
|
49
52
|
onTouchStart={[Function]}
|
|
53
|
+
tabIndex={0}
|
|
50
54
|
type="button"
|
|
51
55
|
>
|
|
52
56
|
<Icon
|
|
@@ -68,6 +72,7 @@ exports[`it fills the icon when isFilled is true 1`] = `
|
|
|
68
72
|
<li>
|
|
69
73
|
<button
|
|
70
74
|
aria-label="Unit Test Text"
|
|
75
|
+
data-react-aria-pressable={true}
|
|
71
76
|
onClick={[Function]}
|
|
72
77
|
onDragStart={[Function]}
|
|
73
78
|
onKeyDown={[Function]}
|
|
@@ -79,6 +84,7 @@ exports[`it fills the icon when isFilled is true 1`] = `
|
|
|
79
84
|
onTouchEnd={[Function]}
|
|
80
85
|
onTouchMove={[Function]}
|
|
81
86
|
onTouchStart={[Function]}
|
|
87
|
+
tabIndex={0}
|
|
82
88
|
type="button"
|
|
83
89
|
>
|
|
84
90
|
<Icon
|
|
@@ -110,6 +116,7 @@ exports[`it renders an icon when passed a valid one 1`] = `
|
|
|
110
116
|
<li>
|
|
111
117
|
<button
|
|
112
118
|
aria-label="Unit Test Text"
|
|
119
|
+
data-react-aria-pressable={true}
|
|
113
120
|
onClick={[Function]}
|
|
114
121
|
onDragStart={[Function]}
|
|
115
122
|
onKeyDown={[Function]}
|
|
@@ -121,6 +128,7 @@ exports[`it renders an icon when passed a valid one 1`] = `
|
|
|
121
128
|
onTouchEnd={[Function]}
|
|
122
129
|
onTouchMove={[Function]}
|
|
123
130
|
onTouchStart={[Function]}
|
|
131
|
+
tabIndex={0}
|
|
124
132
|
type="button"
|
|
125
133
|
>
|
|
126
134
|
<Icon
|
|
@@ -79,6 +79,7 @@ exports[`it renders correctly 1`] = `
|
|
|
79
79
|
>
|
|
80
80
|
<button
|
|
81
81
|
className="checkoutButton"
|
|
82
|
+
data-react-aria-pressable={true}
|
|
82
83
|
disabled={false}
|
|
83
84
|
onDragStart={[Function]}
|
|
84
85
|
onKeyDown={[Function]}
|
|
@@ -90,6 +91,7 @@ exports[`it renders correctly 1`] = `
|
|
|
90
91
|
onTouchEnd={[Function]}
|
|
91
92
|
onTouchMove={[Function]}
|
|
92
93
|
onTouchStart={[Function]}
|
|
94
|
+
tabIndex={0}
|
|
93
95
|
type="button"
|
|
94
96
|
>
|
|
95
97
|
<span
|
|
@@ -131,6 +133,7 @@ exports[`it renders correctly 1`] = `
|
|
|
131
133
|
</button>
|
|
132
134
|
<button
|
|
133
135
|
className="editCartButton"
|
|
136
|
+
data-react-aria-pressable={true}
|
|
134
137
|
disabled={false}
|
|
135
138
|
onDragStart={[Function]}
|
|
136
139
|
onKeyDown={[Function]}
|
|
@@ -142,6 +145,7 @@ exports[`it renders correctly 1`] = `
|
|
|
142
145
|
onTouchEnd={[Function]}
|
|
143
146
|
onTouchMove={[Function]}
|
|
144
147
|
onTouchStart={[Function]}
|
|
148
|
+
tabIndex={0}
|
|
145
149
|
type="button"
|
|
146
150
|
>
|
|
147
151
|
<span
|
package/lib/components/MyAccount/ResetPassword/__tests__/__snapshots__/resetPassword.spec.js.snap
CHANGED
|
@@ -106,6 +106,7 @@ exports[`should render formErrors 1`] = `
|
|
|
106
106
|
aria-hidden="false"
|
|
107
107
|
>
|
|
108
108
|
<button
|
|
109
|
+
data-react-aria-pressable={true}
|
|
109
110
|
disabled={false}
|
|
110
111
|
onClick={[Function]}
|
|
111
112
|
onDragStart={[Function]}
|
|
@@ -118,6 +119,7 @@ exports[`should render formErrors 1`] = `
|
|
|
118
119
|
onTouchEnd={[Function]}
|
|
119
120
|
onTouchMove={[Function]}
|
|
120
121
|
onTouchStart={[Function]}
|
|
122
|
+
tabIndex={0}
|
|
121
123
|
type="button"
|
|
122
124
|
>
|
|
123
125
|
<span>
|
|
@@ -151,6 +153,7 @@ exports[`should render formErrors 1`] = `
|
|
|
151
153
|
</div>
|
|
152
154
|
<div>
|
|
153
155
|
<button
|
|
156
|
+
data-react-aria-pressable={true}
|
|
154
157
|
disabled={false}
|
|
155
158
|
onClick={[Function]}
|
|
156
159
|
onDragStart={[Function]}
|
|
@@ -163,6 +166,7 @@ exports[`should render formErrors 1`] = `
|
|
|
163
166
|
onTouchEnd={[Function]}
|
|
164
167
|
onTouchMove={[Function]}
|
|
165
168
|
onTouchStart={[Function]}
|
|
169
|
+
tabIndex={0}
|
|
166
170
|
type="submit"
|
|
167
171
|
>
|
|
168
172
|
<span>
|
|
@@ -260,6 +264,7 @@ exports[`should render properly 1`] = `
|
|
|
260
264
|
aria-hidden="false"
|
|
261
265
|
>
|
|
262
266
|
<button
|
|
267
|
+
data-react-aria-pressable={true}
|
|
263
268
|
disabled={false}
|
|
264
269
|
onClick={[Function]}
|
|
265
270
|
onDragStart={[Function]}
|
|
@@ -272,6 +277,7 @@ exports[`should render properly 1`] = `
|
|
|
272
277
|
onTouchEnd={[Function]}
|
|
273
278
|
onTouchMove={[Function]}
|
|
274
279
|
onTouchStart={[Function]}
|
|
280
|
+
tabIndex={0}
|
|
275
281
|
type="button"
|
|
276
282
|
>
|
|
277
283
|
<span>
|
|
@@ -305,6 +311,7 @@ exports[`should render properly 1`] = `
|
|
|
305
311
|
</div>
|
|
306
312
|
<div>
|
|
307
313
|
<button
|
|
314
|
+
data-react-aria-pressable={true}
|
|
308
315
|
disabled={false}
|
|
309
316
|
onClick={[Function]}
|
|
310
317
|
onDragStart={[Function]}
|
|
@@ -317,6 +324,7 @@ exports[`should render properly 1`] = `
|
|
|
317
324
|
onTouchEnd={[Function]}
|
|
318
325
|
onTouchMove={[Function]}
|
|
319
326
|
onTouchStart={[Function]}
|
|
327
|
+
tabIndex={0}
|
|
320
328
|
type="submit"
|
|
321
329
|
>
|
|
322
330
|
<span>
|
package/lib/components/OrderHistoryPage/OrderDetails/__tests__/__snapshots__/item.spec.js.snap
CHANGED
|
@@ -93,6 +93,7 @@ https://www.venia.com/product1-thumbnail.jpg?auto=webp&format=pjpg&width=2560&he
|
|
|
93
93
|
</span>
|
|
94
94
|
</div>
|
|
95
95
|
<button
|
|
96
|
+
data-react-aria-pressable={true}
|
|
96
97
|
disabled={false}
|
|
97
98
|
onClick={[Function]}
|
|
98
99
|
onDragStart={[Function]}
|
|
@@ -105,6 +106,7 @@ https://www.venia.com/product1-thumbnail.jpg?auto=webp&format=pjpg&width=2560&he
|
|
|
105
106
|
onTouchEnd={[Function]}
|
|
106
107
|
onTouchMove={[Function]}
|
|
107
108
|
onTouchStart={[Function]}
|
|
109
|
+
tabIndex={0}
|
|
108
110
|
type="button"
|
|
109
111
|
>
|
|
110
112
|
<span>
|
|
@@ -193,6 +193,7 @@ exports[`should render properly 1`] = `
|
|
|
193
193
|
/>
|
|
194
194
|
</div>
|
|
195
195
|
<button
|
|
196
|
+
data-react-aria-pressable={true}
|
|
196
197
|
disabled={false}
|
|
197
198
|
onClick={[Function]}
|
|
198
199
|
onDragStart={[Function]}
|
|
@@ -205,6 +206,7 @@ exports[`should render properly 1`] = `
|
|
|
205
206
|
onTouchEnd={[Function]}
|
|
206
207
|
onTouchMove={[Function]}
|
|
207
208
|
onTouchStart={[Function]}
|
|
209
|
+
tabIndex={0}
|
|
208
210
|
type="button"
|
|
209
211
|
>
|
|
210
212
|
<span>
|
|
@@ -254,6 +256,7 @@ exports[`should render with reduced order information 1`] = `
|
|
|
254
256
|
<div />
|
|
255
257
|
<div />
|
|
256
258
|
<button
|
|
259
|
+
data-react-aria-pressable={true}
|
|
257
260
|
disabled={false}
|
|
258
261
|
onClick={[Function]}
|
|
259
262
|
onDragStart={[Function]}
|
|
@@ -266,6 +269,7 @@ exports[`should render with reduced order information 1`] = `
|
|
|
266
269
|
onTouchEnd={[Function]}
|
|
267
270
|
onTouchMove={[Function]}
|
|
268
271
|
onTouchStart={[Function]}
|
|
272
|
+
tabIndex={0}
|
|
269
273
|
type="button"
|
|
270
274
|
>
|
|
271
275
|
<span>
|
package/lib/components/OrderHistoryPage/__tests__/__snapshots__/orderHistoryPage.spec.js.snap
CHANGED
|
@@ -104,6 +104,7 @@ exports[`renders correctly with data 1`] = `
|
|
|
104
104
|
<button
|
|
105
105
|
aria-label="submit"
|
|
106
106
|
className="searchButton"
|
|
107
|
+
data-react-aria-pressable={true}
|
|
107
108
|
disabled={false}
|
|
108
109
|
onClick={[Function]}
|
|
109
110
|
onDragStart={[Function]}
|
|
@@ -116,6 +117,7 @@ exports[`renders correctly with data 1`] = `
|
|
|
116
117
|
onTouchEnd={[Function]}
|
|
117
118
|
onTouchMove={[Function]}
|
|
118
119
|
onTouchStart={[Function]}
|
|
120
|
+
tabIndex={0}
|
|
119
121
|
type="submit"
|
|
120
122
|
>
|
|
121
123
|
<span
|
|
@@ -178,6 +180,7 @@ exports[`renders correctly with data 1`] = `
|
|
|
178
180
|
</ul>
|
|
179
181
|
<button
|
|
180
182
|
className="root_lowPriority"
|
|
183
|
+
data-react-aria-pressable={true}
|
|
181
184
|
disabled={false}
|
|
182
185
|
onClick={[MockFunction loadMoreOrders]}
|
|
183
186
|
onDragStart={[Function]}
|
|
@@ -190,6 +193,7 @@ exports[`renders correctly with data 1`] = `
|
|
|
190
193
|
onTouchEnd={[Function]}
|
|
191
194
|
onTouchMove={[Function]}
|
|
192
195
|
onTouchStart={[Function]}
|
|
196
|
+
tabIndex={0}
|
|
193
197
|
type="button"
|
|
194
198
|
>
|
|
195
199
|
<span
|
|
@@ -298,6 +302,7 @@ exports[`renders correctly without data 1`] = `
|
|
|
298
302
|
<button
|
|
299
303
|
aria-label="submit"
|
|
300
304
|
className="searchButton"
|
|
305
|
+
data-react-aria-pressable={true}
|
|
301
306
|
disabled={false}
|
|
302
307
|
onClick={[Function]}
|
|
303
308
|
onDragStart={[Function]}
|
|
@@ -310,6 +315,7 @@ exports[`renders correctly without data 1`] = `
|
|
|
310
315
|
onTouchEnd={[Function]}
|
|
311
316
|
onTouchMove={[Function]}
|
|
312
317
|
onTouchStart={[Function]}
|
|
318
|
+
tabIndex={0}
|
|
313
319
|
type="submit"
|
|
314
320
|
>
|
|
315
321
|
<span
|
|
@@ -519,6 +525,7 @@ exports[`renders invalid order id message if order id is wrong 1`] = `
|
|
|
519
525
|
<button
|
|
520
526
|
aria-label="submit"
|
|
521
527
|
className="searchButton"
|
|
528
|
+
data-react-aria-pressable={true}
|
|
522
529
|
disabled={false}
|
|
523
530
|
onClick={[Function]}
|
|
524
531
|
onDragStart={[Function]}
|
|
@@ -531,6 +538,7 @@ exports[`renders invalid order id message if order id is wrong 1`] = `
|
|
|
531
538
|
onTouchEnd={[Function]}
|
|
532
539
|
onTouchMove={[Function]}
|
|
533
540
|
onTouchStart={[Function]}
|
|
541
|
+
tabIndex={0}
|
|
534
542
|
type="submit"
|
|
535
543
|
>
|
|
536
544
|
<span
|
|
@@ -676,6 +684,7 @@ exports[`renders loading indicator 1`] = `
|
|
|
676
684
|
<button
|
|
677
685
|
aria-label="submit"
|
|
678
686
|
className="searchButton"
|
|
687
|
+
data-react-aria-pressable={true}
|
|
679
688
|
disabled={true}
|
|
680
689
|
onClick={[Function]}
|
|
681
690
|
onDragStart={[Function]}
|
|
@@ -892,6 +901,7 @@ exports[`renders no orders message is orders is empty 1`] = `
|
|
|
892
901
|
<button
|
|
893
902
|
aria-label="submit"
|
|
894
903
|
className="searchButton"
|
|
904
|
+
data-react-aria-pressable={true}
|
|
895
905
|
disabled={false}
|
|
896
906
|
onClick={[Function]}
|
|
897
907
|
onDragStart={[Function]}
|
|
@@ -904,6 +914,7 @@ exports[`renders no orders message is orders is empty 1`] = `
|
|
|
904
914
|
onTouchEnd={[Function]}
|
|
905
915
|
onTouchMove={[Function]}
|
|
906
916
|
onTouchStart={[Function]}
|
|
917
|
+
tabIndex={0}
|
|
907
918
|
type="submit"
|
|
908
919
|
>
|
|
909
920
|
<span
|
|
@@ -77,6 +77,7 @@ exports[`should render show button if visible is false 1`] = `
|
|
|
77
77
|
aria-hidden="false"
|
|
78
78
|
>
|
|
79
79
|
<button
|
|
80
|
+
data-react-aria-pressable={true}
|
|
80
81
|
disabled={false}
|
|
81
82
|
onClick={[MockFunction]}
|
|
82
83
|
onDragStart={[Function]}
|
|
@@ -89,6 +90,7 @@ exports[`should render show button if visible is false 1`] = `
|
|
|
89
90
|
onTouchEnd={[Function]}
|
|
90
91
|
onTouchMove={[Function]}
|
|
91
92
|
onTouchStart={[Function]}
|
|
93
|
+
tabIndex={0}
|
|
92
94
|
type="button"
|
|
93
95
|
>
|
|
94
96
|
<span>
|
|
@@ -158,6 +160,7 @@ exports[`should render toggle button if isToggleButtonHidden is false 1`] = `
|
|
|
158
160
|
aria-hidden="false"
|
|
159
161
|
>
|
|
160
162
|
<button
|
|
163
|
+
data-react-aria-pressable={true}
|
|
161
164
|
disabled={false}
|
|
162
165
|
onClick={[MockFunction]}
|
|
163
166
|
onDragStart={[Function]}
|
|
@@ -170,6 +173,7 @@ exports[`should render toggle button if isToggleButtonHidden is false 1`] = `
|
|
|
170
173
|
onTouchEnd={[Function]}
|
|
171
174
|
onTouchMove={[Function]}
|
|
172
175
|
onTouchStart={[Function]}
|
|
176
|
+
tabIndex={0}
|
|
173
177
|
type="button"
|
|
174
178
|
>
|
|
175
179
|
<span>
|