WooCommerce - Version 6.6.1

Version Description

2022-06-21 =

WooCommerce

  • Fix - Make sure payment gateway title is a string before sanitizing. #33434

WooCommerce Blocks 7.6.1 & 7.6.2

  • Fix - Fix error Uncaught Error: Call to undefined function Automattic\WooCommerce\Blocks\Templates\wp_is_block_theme() in WP 5.8. #6590
  • Fix - Fix PHP notice in Mini Cart when prices included taxes. #6537
  • Fix - Fix images hidden by default in Product grid blocks after WC 6.6 update. #6599
Download this release

Release Info

Developer sadowski
Plugin Icon 128x128 WooCommerce
Version 6.6.1
Comparing to
See all releases

Code changes from version 6.6.0 to 6.6.1

Files changed (74) hide show
  1. i18n/languages/woocommerce.pot +20 -20
  2. includes/abstracts/abstract-wc-payment-gateway.php +1 -1
  3. includes/abstracts/abstract-wc-settings-api.php +2 -2
  4. includes/class-woocommerce.php +1 -1
  5. packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js +8 -3
  6. packages/woocommerce-blocks/build/all-products-frontend.asset.php +1 -1
  7. packages/woocommerce-blocks/build/all-products-frontend.js +1 -1
  8. packages/woocommerce-blocks/build/blocks-checkout.asset.php +1 -1
  9. packages/woocommerce-blocks/build/cart-frontend.asset.php +1 -1
  10. packages/woocommerce-blocks/build/cart-frontend.js +1 -1
  11. packages/woocommerce-blocks/build/checkout-frontend.asset.php +1 -1
  12. packages/woocommerce-blocks/build/checkout-frontend.js +1 -1
  13. packages/woocommerce-blocks/build/handpicked-products.asset.php +1 -1
  14. packages/woocommerce-blocks/build/handpicked-products.js +1 -1
  15. packages/woocommerce-blocks/build/mini-cart-component-frontend.asset.php +1 -1
  16. packages/woocommerce-blocks/build/mini-cart-component-frontend.js +1 -1
  17. packages/woocommerce-blocks/build/price-filter-frontend.asset.php +1 -1
  18. packages/woocommerce-blocks/build/product-best-sellers.asset.php +1 -1
  19. packages/woocommerce-blocks/build/product-best-sellers.js +1 -1
  20. packages/woocommerce-blocks/build/product-category.asset.php +1 -1
  21. packages/woocommerce-blocks/build/product-category.js +1 -1
  22. packages/woocommerce-blocks/build/product-new.asset.php +1 -1
  23. packages/woocommerce-blocks/build/product-new.js +1 -1
  24. packages/woocommerce-blocks/build/product-on-sale.asset.php +1 -1
  25. packages/woocommerce-blocks/build/product-on-sale.js +1 -1
  26. packages/woocommerce-blocks/build/product-tag.asset.php +1 -1
  27. packages/woocommerce-blocks/build/product-tag.js +1 -1
  28. packages/woocommerce-blocks/build/product-top-rated.asset.php +1 -1
  29. packages/woocommerce-blocks/build/product-top-rated.js +1 -1
  30. packages/woocommerce-blocks/build/products-by-attribute.asset.php +1 -1
  31. packages/woocommerce-blocks/build/products-by-attribute.js +1 -1
  32. packages/woocommerce-blocks/build/single-product-frontend.asset.php +1 -1
  33. packages/woocommerce-blocks/build/single-product-frontend.js +1 -1
  34. packages/woocommerce-blocks/readme.txt +14 -1
  35. packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php +1 -1
  36. packages/woocommerce-blocks/src/BlockTypes/MiniCart.php +2 -3
  37. packages/woocommerce-blocks/src/Package.php +1 -1
  38. packages/woocommerce-blocks/src/Templates/ProductSearchResultsTemplate.php +1 -1
  39. packages/woocommerce-blocks/src/Utils/BlockTemplateUtils.php +1 -1
  40. packages/woocommerce-blocks/vendor/autoload.php +6 -1
  41. packages/woocommerce-blocks/vendor/autoload_packages.php +1 -1
  42. packages/woocommerce-blocks/vendor/composer/InstalledVersions.php +2 -0
  43. packages/woocommerce-blocks/vendor/composer/autoload_classmap.php +1 -1
  44. packages/woocommerce-blocks/vendor/composer/autoload_files.php +1 -1
  45. packages/woocommerce-blocks/vendor/composer/autoload_namespaces.php +1 -1
  46. packages/woocommerce-blocks/vendor/composer/autoload_psr4.php +1 -1
  47. packages/woocommerce-blocks/vendor/composer/autoload_real.php +9 -32
  48. packages/woocommerce-blocks/vendor/composer/autoload_static.php +4 -4
  49. packages/woocommerce-blocks/vendor/composer/installed.php +2 -2
  50. packages/woocommerce-blocks/vendor/composer/jetpack_autoload_filemap.php +2 -2
  51. packages/woocommerce-blocks/vendor/composer/jetpack_autoload_psr4.php +3 -3
  52. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader-handler.php +1 -1
  53. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader-locator.php +1 -1
  54. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader.php +1 -1
  55. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-container.php +1 -1
  56. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-hook-manager.php +1 -1
  57. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-latest-autoloader-guard.php +1 -1
  58. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-manifest-reader.php +1 -1
  59. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-path-processor.php +1 -1
  60. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-php-autoloader.php +1 -1
  61. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-plugin-locator.php +1 -1
  62. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-plugins-handler.php +1 -1
  63. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-shutdown-handler.php +1 -1
  64. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-version-loader.php +1 -1
  65. packages/woocommerce-blocks/vendor/jetpack-autoloader/class-version-selector.php +1 -1
  66. packages/woocommerce-blocks/woocommerce-gutenberg-products-block.php +1 -1
  67. readme.txt +13 -1
  68. vendor/autoload.php +1 -1
  69. vendor/autoload_packages.php +1 -1
  70. vendor/composer/autoload_real.php +7 -7
  71. vendor/composer/autoload_static.php +5 -5
  72. vendor/composer/installed.json +9 -9
  73. vendor/composer/installed.php +7 -7
  74. vendor/composer/jetpack_autoload_classmap.php +1776 -1766
i18n/languages/woocommerce.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WooCommerce 6.6.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-06-10T17:25:53+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: woocommerce\n"
@@ -20529,7 +20529,7 @@ msgid "Parent product"
20529
  msgstr ""
20530
 
20531
  #: includes/class-wc-post-types.php:335
20532
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:20
20533
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
20534
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
20535
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -30974,18 +30974,18 @@ msgid "Locations outside all other zones"
30974
  msgstr ""
30975
 
30976
  #. translators: %1$d is the number of products in the cart. %2$s is the cart total
30977
- #: packages/woocommerce-blocks/src/BlockTypes/MiniCart.php:358
30978
  #: packages/woocommerce-blocks/build/mini-cart-component-frontend.js:5
30979
  msgid "%1$d item in cart, total price of %2$s"
30980
  msgid_plural "%1$d items in cart, total price of %2$s"
30981
  msgstr[0] ""
30982
  msgstr[1] ""
30983
 
30984
- #: packages/woocommerce-blocks/src/BlockTypes/MiniCart.php:515
30985
  msgid "Mini Cart Empty Cart Message"
30986
  msgstr ""
30987
 
30988
- #: packages/woocommerce-blocks/src/BlockTypes/MiniCart.php:517
30989
  #: packages/woocommerce-blocks/build/cart.js:42
30990
  msgid "Your cart is currently empty!"
30991
  msgstr ""
@@ -33704,7 +33704,7 @@ msgstr ""
33704
  #: assets/client/admin/chunks/analytics-report-categories.js:1
33705
  #: assets/client/admin/chunks/analytics-report-downloads.js:1
33706
  #: assets/client/admin/chunks/analytics-report-products.js:1
33707
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:36
33708
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
33709
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
33710
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43453,7 +43453,7 @@ msgid "This block shows a list of all product reviews. Your store does not have
43453
  msgstr ""
43454
 
43455
  #: packages/woocommerce-blocks/assets/js/blocks/reviews/edit-utils.js:41
43456
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:68
43457
  #: packages/woocommerce-blocks/build/all-reviews.js:1
43458
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43459
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
@@ -43732,7 +43732,7 @@ msgstr ""
43732
  msgid "We are working on a better editing experience that will replace classic blocks. Keep an eye out for updates!"
43733
  msgstr ""
43734
 
43735
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:23
43736
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43737
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43738
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43744,7 +43744,7 @@ msgstr ""
43744
  msgid "Product image is visible."
43745
  msgstr ""
43746
 
43747
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:27
43748
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43749
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43750
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43756,7 +43756,7 @@ msgstr ""
43756
  msgid "Product image is hidden."
43757
  msgstr ""
43758
 
43759
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:39
43760
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43761
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43762
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43768,7 +43768,7 @@ msgstr ""
43768
  msgid "Product title is visible."
43769
  msgstr ""
43770
 
43771
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:43
43772
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43773
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43774
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43780,7 +43780,7 @@ msgstr ""
43780
  msgid "Product title is hidden."
43781
  msgstr ""
43782
 
43783
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:52
43784
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43785
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43786
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43792,7 +43792,7 @@ msgstr ""
43792
  msgid "Product price"
43793
  msgstr ""
43794
 
43795
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:55
43796
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43797
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43798
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43804,7 +43804,7 @@ msgstr ""
43804
  msgid "Product price is visible."
43805
  msgstr ""
43806
 
43807
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:59
43808
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43809
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43810
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43816,7 +43816,7 @@ msgstr ""
43816
  msgid "Product price is hidden."
43817
  msgstr ""
43818
 
43819
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:71
43820
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43821
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43822
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43828,7 +43828,7 @@ msgstr ""
43828
  msgid "Product rating is visible."
43829
  msgstr ""
43830
 
43831
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:75
43832
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43833
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43834
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43840,7 +43840,7 @@ msgstr ""
43840
  msgid "Product rating is hidden."
43841
  msgstr ""
43842
 
43843
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:84
43844
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43845
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43846
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43852,7 +43852,7 @@ msgstr ""
43852
  msgid "Add to Cart button"
43853
  msgstr ""
43854
 
43855
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:90
43856
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43857
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43858
  #: packages/woocommerce-blocks/build/product-category.js:5
@@ -43864,7 +43864,7 @@ msgstr ""
43864
  msgid "Add to Cart button is visible."
43865
  msgstr ""
43866
 
43867
- #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:94
43868
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43869
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43870
  #: packages/woocommerce-blocks/build/product-category.js:5
2
  # This file is distributed under the same license as the WooCommerce plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WooCommerce 6.6.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-06-20T15:03:26+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: woocommerce\n"
20529
  msgstr ""
20530
 
20531
  #: includes/class-wc-post-types.php:335
20532
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:23
20533
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
20534
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
20535
  #: packages/woocommerce-blocks/build/product-category.js:5
30974
  msgstr ""
30975
 
30976
  #. translators: %1$d is the number of products in the cart. %2$s is the cart total
30977
+ #: packages/woocommerce-blocks/src/BlockTypes/MiniCart.php:357
30978
  #: packages/woocommerce-blocks/build/mini-cart-component-frontend.js:5
30979
  msgid "%1$d item in cart, total price of %2$s"
30980
  msgid_plural "%1$d items in cart, total price of %2$s"
30981
  msgstr[0] ""
30982
  msgstr[1] ""
30983
 
30984
+ #: packages/woocommerce-blocks/src/BlockTypes/MiniCart.php:514
30985
  msgid "Mini Cart Empty Cart Message"
30986
  msgstr ""
30987
 
30988
+ #: packages/woocommerce-blocks/src/BlockTypes/MiniCart.php:516
30989
  #: packages/woocommerce-blocks/build/cart.js:42
30990
  msgid "Your cart is currently empty!"
30991
  msgstr ""
33704
  #: assets/client/admin/chunks/analytics-report-categories.js:1
33705
  #: assets/client/admin/chunks/analytics-report-downloads.js:1
33706
  #: assets/client/admin/chunks/analytics-report-products.js:1
33707
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:41
33708
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
33709
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
33710
  #: packages/woocommerce-blocks/build/product-category.js:5
43453
  msgstr ""
43454
 
43455
  #: packages/woocommerce-blocks/assets/js/blocks/reviews/edit-utils.js:41
43456
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:73
43457
  #: packages/woocommerce-blocks/build/all-reviews.js:1
43458
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43459
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43732
  msgid "We are working on a better editing experience that will replace classic blocks. Keep an eye out for updates!"
43733
  msgstr ""
43734
 
43735
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:26
43736
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43737
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43738
  #: packages/woocommerce-blocks/build/product-category.js:5
43744
  msgid "Product image is visible."
43745
  msgstr ""
43746
 
43747
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:30
43748
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43749
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43750
  #: packages/woocommerce-blocks/build/product-category.js:5
43756
  msgid "Product image is hidden."
43757
  msgstr ""
43758
 
43759
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:44
43760
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43761
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43762
  #: packages/woocommerce-blocks/build/product-category.js:5
43768
  msgid "Product title is visible."
43769
  msgstr ""
43770
 
43771
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:48
43772
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43773
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43774
  #: packages/woocommerce-blocks/build/product-category.js:5
43780
  msgid "Product title is hidden."
43781
  msgstr ""
43782
 
43783
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:57
43784
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43785
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43786
  #: packages/woocommerce-blocks/build/product-category.js:5
43792
  msgid "Product price"
43793
  msgstr ""
43794
 
43795
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:60
43796
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43797
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43798
  #: packages/woocommerce-blocks/build/product-category.js:5
43804
  msgid "Product price is visible."
43805
  msgstr ""
43806
 
43807
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:64
43808
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43809
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43810
  #: packages/woocommerce-blocks/build/product-category.js:5
43816
  msgid "Product price is hidden."
43817
  msgstr ""
43818
 
43819
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:76
43820
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43821
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43822
  #: packages/woocommerce-blocks/build/product-category.js:5
43828
  msgid "Product rating is visible."
43829
  msgstr ""
43830
 
43831
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:80
43832
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43833
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43834
  #: packages/woocommerce-blocks/build/product-category.js:5
43840
  msgid "Product rating is hidden."
43841
  msgstr ""
43842
 
43843
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:89
43844
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43845
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43846
  #: packages/woocommerce-blocks/build/product-category.js:5
43852
  msgid "Add to Cart button"
43853
  msgstr ""
43854
 
43855
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:95
43856
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43857
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43858
  #: packages/woocommerce-blocks/build/product-category.js:5
43864
  msgid "Add to Cart button is visible."
43865
  msgstr ""
43866
 
43867
+ #: packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js:99
43868
  #: packages/woocommerce-blocks/build/handpicked-products.js:7
43869
  #: packages/woocommerce-blocks/build/product-best-sellers.js:5
43870
  #: packages/woocommerce-blocks/build/product-category.js:5
includes/abstracts/abstract-wc-payment-gateway.php CHANGED
@@ -305,7 +305,7 @@ abstract class WC_Payment_Gateway extends WC_Settings_API {
305
  * @return string
306
  */
307
  public function get_title() {
308
- $title = wc_get_container()->get( HtmlSanitizer::class )->sanitize( $this->title, HtmlSanitizer::LOW_HTML_BALANCED_TAGS_NO_LINKS );
309
  return apply_filters( 'woocommerce_gateway_title', $title, $this->id );
310
  }
311
 
305
  * @return string
306
  */
307
  public function get_title() {
308
+ $title = wc_get_container()->get( HtmlSanitizer::class )->sanitize( (string) $this->title, HtmlSanitizer::LOW_HTML_BALANCED_TAGS_NO_LINKS );
309
  return apply_filters( 'woocommerce_gateway_title', $title, $this->id );
310
  }
311
 
includes/abstracts/abstract-wc-settings-api.php CHANGED
@@ -868,8 +868,8 @@ abstract class WC_Settings_API {
868
  *
869
  * @return string
870
  */
871
- public function validate_safe_text_field( string $key, string $value ): string {
872
- return wc_get_container()->get( HtmlSanitizer::class )->sanitize( $value, HtmlSanitizer::LOW_HTML_BALANCED_TAGS_NO_LINKS );
873
  }
874
 
875
  /**
868
  *
869
  * @return string
870
  */
871
+ public function validate_safe_text_field( string $key, ?string $value ): string {
872
+ return wc_get_container()->get( HtmlSanitizer::class )->sanitize( (string) $value, HtmlSanitizer::LOW_HTML_BALANCED_TAGS_NO_LINKS );
873
  }
874
 
875
  /**
includes/class-woocommerce.php CHANGED
@@ -30,7 +30,7 @@ final class WooCommerce {
30
  *
31
  * @var string
32
  */
33
- public $version = '6.6.0';
34
 
35
  /**
36
  * WooCommerce Schema version.
30
  *
31
  * @var string
32
  */
33
+ public $version = '6.6.1';
34
 
35
  /**
36
  * WooCommerce Schema version.
packages/woocommerce-blocks/assets/js/editor-components/grid-content-control/index.js CHANGED
@@ -14,12 +14,15 @@ import { ToggleControl } from '@wordpress/components';
14
  */
15
  const GridContentControl = ( { onChange, settings } ) => {
16
  const { image, button, price, rating, title } = settings;
 
 
 
17
  return (
18
  <>
19
  <ToggleControl
20
  label={ __( 'Product image', 'woocommerce' ) }
21
  help={
22
- image
23
  ? __(
24
  'Product image is visible.',
25
  'woocommerce'
@@ -29,8 +32,10 @@ const GridContentControl = ( { onChange, settings } ) => {
29
  'woocommerce'
30
  )
31
  }
32
- checked={ image }
33
- onChange={ () => onChange( { ...settings, image: ! image } ) }
 
 
34
  />
35
  <ToggleControl
36
  label={ __( 'Product title', 'woocommerce' ) }
14
  */
15
  const GridContentControl = ( { onChange, settings } ) => {
16
  const { image, button, price, rating, title } = settings;
17
+ // If `image` is undefined, that might be because it's a block that was
18
+ // created before the `image` attribute existed, so we default to true.
19
+ const imageIsVisible = image !== false;
20
  return (
21
  <>
22
  <ToggleControl
23
  label={ __( 'Product image', 'woocommerce' ) }
24
  help={
25
+ imageIsVisible
26
  ? __(
27
  'Product image is visible.',
28
  'woocommerce'
32
  'woocommerce'
33
  )
34
  }
35
+ checked={ imageIsVisible }
36
+ onChange={ () =>
37
+ onChange( { ...settings, image: ! imageIsVisible } )
38
+ }
39
  />
40
  <ToggleControl
41
  label={ __( 'Product title', 'woocommerce' ) }
packages/woocommerce-blocks/build/all-products-frontend.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-data-store', 'wc-blocks-registry', 'wc-blocks-shared-context', 'wc-blocks-shared-hocs', 'wc-price-format', 'wc-settings', 'wp-a11y', 'wp-api-fetch', 'wp-autop', 'wp-block-editor', 'wp-blocks', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning', 'wp-wordcount'), 'version' => '6eea3de907b68e7b358eb8ad23715d8b');
1
+ <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-data-store', 'wc-blocks-registry', 'wc-blocks-shared-context', 'wc-blocks-shared-hocs', 'wc-price-format', 'wc-settings', 'wp-a11y', 'wp-api-fetch', 'wp-autop', 'wp-block-editor', 'wp-blocks', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning', 'wp-wordcount'), 'version' => '4c9f8b9fb9c237f36c97860f97525b4d');
packages/woocommerce-blocks/build/all-products-frontend.js CHANGED
@@ -1,4 +1,4 @@
1
- !function(e){function t(t){for(var r,o,c=t[0],i=t[1],s=0,l=[];s<c.length;s++)o=c[s],Object.prototype.hasOwnProperty.call(n,o)&&n[o]&&l.push(n[o][0]),n[o]=0;for(r in i)Object.prototype.hasOwnProperty.call(i,r)&&(e[r]=i[r]);for(a&&a(t);l.length;)l.shift()()}var r={},n={9:0,73:0};function o(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}o.e=function(e){var t=[],r=n[e];if(0!==r)if(r)t.push(r[2]);else{var c=new Promise((function(t,o){r=n[e]=[t,o]}));t.push(r[2]=c);var i,s=document.createElement("script");s.charset="utf-8",s.timeout=120,o.nc&&s.setAttribute("nonce",o.nc),s.src=function(e){return o.p+""+({0:"vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66",1:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--decc3dc6",58:"product-add-to-cart",59:"product-button",60:"product-category-list",61:"product-image",62:"product-price",63:"product-rating",64:"product-sale-badge",65:"product-sku",66:"product-stock-indicator",67:"product-summary",68:"product-tag-list",69:"product-title",74:"vendors--product-add-to-cart"}[e]||e)+"-frontend.js?ver="+{0:"071743a9ca2cfdafd79f",1:"e2dda84269ff5f357820",58:"a1f5c37ffde9d75afc47",59:"31d91954dd894b010db7",60:"bdcd55f6a78f3780a8c9",61:"1ec1ff9f0e063d3f63ae",62:"36221c05f2759b8bd8fd",63:"09acab57fd9a8594caac",64:"c6ec41b82cb1fe4af0c7",65:"f04dd44c9314944f232b",66:"1e1f4698349331747d15",67:"d613d9c8a37c5b8d3b1a",68:"d655fde20ee518912eb5",69:"9275c1cccdfd844d56f7",74:"d4bf9e962fb49977699e"}[e]}(e);var a=new Error;i=function(t){s.onerror=s.onload=null,clearTimeout(l);var r=n[e];if(0!==r){if(r){var o=t&&("load"===t.type?"missing":t.type),c=t&&t.target&&t.target.src;a.message="Loading chunk "+e+" failed.\n("+o+": "+c+")",a.name="ChunkLoadError",a.type=o,a.request=c,r[1](a)}n[e]=void 0}};var l=setTimeout((function(){i({type:"timeout",target:s})}),12e4);s.onerror=s.onload=i,document.head.appendChild(s)}return Promise.all(t)},o.m=e,o.c=r,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)o.d(r,n,function(t){return e[t]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o.oe=function(e){throw console.error(e),e};var c=window.webpackWcBlocksJsonp=window.webpackWcBlocksJsonp||[],i=c.push.bind(c);c.push=t,c=c.slice();for(var s=0;s<c.length;s++)t(c[s]);var a=i;o(o.s=207)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wc.wcSettings},function(e,t){e.exports=window.React},function(e,t,r){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var c=typeof n;if("string"===c||"number"===c)e.push(n);else if(Array.isArray(n)){if(n.length){var i=o.apply(null,n);i&&e.push(i)}}else if("object"===c)if(n.toString===Object.prototype.toString)for(var s in n)r.call(n,s)&&n[s]&&e.push(s);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},function(e,t){e.exports=window.wc.wcBlocksData},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.data},function(e,t,r){"use strict";function n(){return(n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}r.d(t,"a",(function(){return n}))},,,function(e,t){function r(){return e.exports=r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,r.apply(this,arguments)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.isShallowEqual},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.primitives},function(e,t,r){"use strict";var n=r(19),o=r.n(n),c=r(0),i=r(3),s=r(1),a=r(44),l=e=>{let{imageUrl:t=a.l+"/block-error.svg",header:r=Object(s.__)("Oops!","woocommerce"),text:n=Object(s.__)("There was an error loading the content.","woocommerce"),errorMessage:o,errorMessagePrefix:i=Object(s.__)("Error:","woocommerce"),button:l,showErrorBlock:u=!0}=e;return u?Object(c.createElement)("div",{className:"wc-block-error wc-block-components-error"},t&&Object(c.createElement)("img",{className:"wc-block-error__image wc-block-components-error__image",src:t,alt:""}),Object(c.createElement)("div",{className:"wc-block-error__content wc-block-components-error__content"},r&&Object(c.createElement)("p",{className:"wc-block-error__header wc-block-components-error__header"},r),n&&Object(c.createElement)("p",{className:"wc-block-error__text wc-block-components-error__text"},n),o&&Object(c.createElement)("p",{className:"wc-block-error__message wc-block-components-error__message"},i?i+" ":"",o),l&&Object(c.createElement)("p",{className:"wc-block-error__button wc-block-components-error__button"},l))):null};r(33);class u extends i.Component{constructor(){super(...arguments),o()(this,"state",{errorMessage:"",hasError:!1})}static getDerivedStateFromError(e){return void 0!==e.statusText&&void 0!==e.status?{errorMessage:Object(c.createElement)(c.Fragment,null,Object(c.createElement)("strong",null,e.status),": ",e.statusText),hasError:!0}:{errorMessage:e.message,hasError:!0}}render(){const{header:e,imageUrl:t,showErrorMessage:r=!0,showErrorBlock:n=!0,text:o,errorMessagePrefix:i,renderError:s,button:a}=this.props,{errorMessage:u,hasError:d}=this.state;return d?"function"==typeof s?s({errorMessage:u}):Object(c.createElement)(l,{showErrorBlock:n,errorMessage:r?u:null,header:e,imageUrl:t,text:o,errorMessagePrefix:i,button:a}):this.props.children}}t.a=u},function(e,t){e.exports=window.wc.wcBlocksRegistry},function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.a11y},,function(e,t,r){"use strict";var n=r(0),o=r(4),c=r.n(o);t.a=e=>{let t,{label:r,screenReaderLabel:o,wrapperElement:i,wrapperProps:s={}}=e;const a=null!=r,l=null!=o;return!a&&l?(t=i||"span",s={...s,className:c()(s.className,"screen-reader-text")},Object(n.createElement)(t,s,o)):(t=i||n.Fragment,a&&l&&r!==o?Object(n.createElement)(t,s,Object(n.createElement)("span",{"aria-hidden":"true"},r),Object(n.createElement)("span",{className:"screen-reader-text"},o)):Object(n.createElement)(t,s,r))}},function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(0);const o=Object(n.createContext)("page"),c=()=>Object(n.useContext)(o);o.Provider},function(e,t,r){"use strict";(function(e){var n=r(0);r(38);const o=Object(n.createContext)({slots:{},fills:{},registerSlot:()=>{void 0!==e&&e.env},updateSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{}});t.a=o}).call(this,r(63))},function(e,t){e.exports=window.wp.apiFetch},,function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(0);r(7);const o=Object(n.createContext)({isEditor:!1,currentPostId:0,currentView:"",previewData:{},getPreviewData:()=>{}}),c=()=>Object(n.useContext)(o)},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return i}));var n=r(0),o=r(12),c=r.n(o);function i(e){const t=Object(n.useRef)(e);return c()(e,t.current)||(t.current=e),t.current}},function(e,t,r){"use strict";r.d(t,"a",(function(){return O}));var n=r(6),o=r(0),c=r(5),i=r(7),s=r(18),a=r(118),l=r(27),u=r(68);const d=e=>{const t=e.detail;t&&t.preserveCartData||Object(i.dispatch)(c.CART_STORE_KEY).invalidateResolutionForStore()},p=()=>{1===window.wcBlocksStoreCartListeners.count&&window.wcBlocksStoreCartListeners.remove(),window.wcBlocksStoreCartListeners.count--},b=()=>{Object(o.useEffect)(()=>((()=>{if(window.wcBlocksStoreCartListeners||(window.wcBlocksStoreCartListeners={count:0,remove:()=>{}}),0===window.wcBlocksStoreCartListeners.count){const e=Object(u.b)("added_to_cart","wc-blocks_added_to_cart"),t=Object(u.b)("removed_from_cart","wc-blocks_removed_from_cart");document.body.addEventListener("wc-blocks_added_to_cart",d),document.body.addEventListener("wc-blocks_removed_from_cart",d),window.wcBlocksStoreCartListeners.count=0,window.wcBlocksStoreCartListeners.remove=()=>{e(),t(),document.body.removeEventListener("wc-blocks_added_to_cart",d),document.body.removeEventListener("wc-blocks_removed_from_cart",d)}}window.wcBlocksStoreCartListeners.count++})(),p),[])},m={first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},f={...m,email:""},g={total_items:"",total_items_tax:"",total_fees:"",total_fees_tax:"",total_discount:"",total_discount_tax:"",total_shipping:"",total_shipping_tax:"",total_price:"",total_tax:"",tax_lines:c.EMPTY_TAX_LINES,currency_code:"",currency_symbol:"",currency_minor_unit:2,currency_decimal_separator:"",currency_thousand_separator:"",currency_prefix:"",currency_suffix:""},h=e=>Object.fromEntries(Object.entries(e).map(e=>{let[t,r]=e;return[t,Object(s.decodeEntities)(r)]})),E={cartCoupons:c.EMPTY_CART_COUPONS,cartItems:c.EMPTY_CART_ITEMS,cartFees:c.EMPTY_CART_FEES,cartItemsCount:0,cartItemsWeight:0,cartNeedsPayment:!0,cartNeedsShipping:!0,cartItemErrors:c.EMPTY_CART_ITEM_ERRORS,cartTotals:g,cartIsLoading:!0,cartErrors:c.EMPTY_CART_ERRORS,billingAddress:f,shippingAddress:m,shippingRates:c.EMPTY_SHIPPING_RATES,isLoadingRates:!1,cartHasCalculatedShipping:!1,paymentRequirements:c.EMPTY_PAYMENT_REQUIREMENTS,receiveCart:()=>{},extensions:c.EMPTY_EXTENSIONS},O=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{shouldSelect:!0};const{isEditor:t,previewData:r}=Object(l.a)(),s=null==r?void 0:r.previewCart,{shouldSelect:u}=e,d=Object(o.useRef)();b();const p=Object(i.useSelect)((e,r)=>{let{dispatch:n}=r;if(!u)return E;if(t)return{cartCoupons:s.coupons,cartItems:s.items,cartFees:s.fees,cartItemsCount:s.items_count,cartItemsWeight:s.items_weight,cartNeedsPayment:s.needs_payment,cartNeedsShipping:s.needs_shipping,cartItemErrors:c.EMPTY_CART_ITEM_ERRORS,cartTotals:s.totals,cartIsLoading:!1,cartErrors:c.EMPTY_CART_ERRORS,billingAddress:f,shippingAddress:m,extensions:c.EMPTY_EXTENSIONS,shippingRates:s.shipping_rates,isLoadingRates:!1,cartHasCalculatedShipping:s.has_calculated_shipping,paymentRequirements:s.paymentRequirements,receiveCart:"function"==typeof(null==s?void 0:s.receiveCart)?s.receiveCart:()=>{}};const o=e(c.CART_STORE_KEY),i=o.getCartData(),l=o.getCartErrors(),d=o.getCartTotals(),p=!o.hasFinishedResolution("getCartData"),b=o.isCustomerDataUpdating(),{receiveCart:g}=n(c.CART_STORE_KEY),O=h(i.billingAddress),w=i.needsShipping?h(i.shippingAddress):O,j=i.fees.length>0?i.fees.map(e=>h(e)):c.EMPTY_CART_FEES;return{cartCoupons:i.coupons.length>0?i.coupons.map(e=>({...e,label:e.code})):c.EMPTY_CART_COUPONS,cartItems:i.items,cartFees:j,cartItemsCount:i.itemsCount,cartItemsWeight:i.itemsWeight,cartNeedsPayment:i.needsPayment,cartNeedsShipping:i.needsShipping,cartItemErrors:i.errors,cartTotals:d,cartIsLoading:p,cartErrors:l,billingAddress:Object(a.a)(O),shippingAddress:Object(a.a)(w),extensions:i.extensions,shippingRates:i.shippingRates,isLoadingRates:b,cartHasCalculatedShipping:i.hasCalculatedShipping,paymentRequirements:i.paymentRequirements,receiveCart:g}},[u]);return d.current&&Object(n.isEqual)(d.current,p)||(d.current=p),d.current}},function(e,t){e.exports=window.wp.deprecated},function(e,t){},,function(e,t,r){"use strict";r.d(t,"a",(function(){return d})),r.d(t,"b",(function(){return p})),r.d(t,"c",(function(){return b}));var n=r(5),o=r(7),c=r(0),i=r(12),s=r.n(i),a=r(30),l=r(58),u=r(23);const d=e=>{const t=Object(u.a)();e=e||t;const r=Object(o.useSelect)(t=>t(n.QUERY_STATE_STORE_KEY).getValueForQueryContext(e,void 0),[e]),{setValueForQueryContext:i}=Object(o.useDispatch)(n.QUERY_STATE_STORE_KEY);return[r,Object(c.useCallback)(t=>{i(e,t)},[e,i])]},p=(e,t,r)=>{const i=Object(u.a)();r=r||i;const s=Object(o.useSelect)(o=>o(n.QUERY_STATE_STORE_KEY).getValueForQueryKey(r,e,t),[r,e]),{setQueryValue:a}=Object(o.useDispatch)(n.QUERY_STATE_STORE_KEY);return[s,Object(c.useCallback)(t=>{a(r,e,t)},[r,e,a])]},b=(e,t)=>{const r=Object(u.a)();t=t||r;const[n,o]=d(t),i=Object(a.a)(n),p=Object(a.a)(e),b=Object(l.a)(p),m=Object(c.useRef)(!1);return Object(c.useEffect)(()=>{s()(b,p)||(o(Object.assign({},i,p)),m.current=!0)},[i,p,b,o]),m.current?[n,o]:[e,o]}},,function(e,t){e.exports=window.wc.priceFormat},function(e,t){e.exports=window.wp.warning},function(e,t){e.exports=window.wp.hooks},function(e,t,r){"use strict";r.d(t,"a",(function(){return i}));var n=r(39),o=r(0),c=r(31);const i=()=>{const e=Object(c.a)(),t=Object(o.useRef)(e);return Object(o.useEffect)(()=>{t.current=e},[e]),{dispatchStoreEvent:Object(o.useCallback)((function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-"+e,t)}catch(e){console.error(e)}}),[]),dispatchCheckoutEvent:Object(o.useCallback)((function(e){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-checkout-"+e,{...r,storeCart:t.current})}catch(e){console.error(e)}}),[])}}},function(e,t,r){"use strict";var n=r(8),o=r(0),c=r(15),i=function({icon:e,className:t,...r}){const c=["dashicon","dashicons","dashicons-"+e,t].filter(Boolean).join(" ");return Object(o.createElement)("span",Object(n.a)({className:c},r))};t.a=function({icon:e=null,size:t=24,...r}){if("string"==typeof e)return Object(o.createElement)(i,Object(n.a)({icon:e},r));if(Object(o.isValidElement)(e)&&i===e.type)return Object(o.cloneElement)(e,{...r});if("function"==typeof e)return e.prototype instanceof o.Component?Object(o.createElement)(e,{size:t,...r}):e({size:t,...r});if(e&&("svg"===e.type||e.type===c.SVG)){const n={width:t,height:t,...e.props,...r};return Object(o.createElement)(c.SVG,n)}return Object(o.isValidElement)(e)?Object(o.cloneElement)(e,{size:t,...r}):e}},function(e,t,r){"use strict";var n=r(4),o=r.n(n),c=r(0);t.a=Object(c.forwardRef)((function({as:e="div",className:t,...r},n){return function({as:e="div",...t}){return"function"==typeof t.children?t.children(t):Object(c.createElement)(e,t)}({as:e,className:o()("components-visually-hidden",t),...r,ref:n})}))},function(e,t){e.exports=window.wc.wcBlocksSharedContext},function(e,t,r){"use strict";r.d(t,"n",(function(){return c})),r.d(t,"l",(function(){return i})),r.d(t,"k",(function(){return s})),r.d(t,"m",(function(){return a})),r.d(t,"i",(function(){return l})),r.d(t,"d",(function(){return u})),r.d(t,"f",(function(){return d})),r.d(t,"j",(function(){return p})),r.d(t,"c",(function(){return b})),r.d(t,"e",(function(){return m})),r.d(t,"g",(function(){return f})),r.d(t,"a",(function(){return g})),r.d(t,"h",(function(){return h})),r.d(t,"b",(function(){return E}));var n,o=r(2);const c=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),i=c.pluginUrl+"images/",s=c.pluginUrl+"build/",a=c.buildPhase,l=null===(n=o.STORE_PAGES.shop)||void 0===n?void 0:n.permalink,u=(o.STORE_PAGES.checkout.id,o.STORE_PAGES.checkout.permalink),d=o.STORE_PAGES.privacy.permalink,p=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),b=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id,o.STORE_PAGES.cart.permalink),m=o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),f=Object(o.getSetting)("shippingCountries",{}),g=Object(o.getSetting)("allowedCountries",{}),h=Object(o.getSetting)("shippingStates",{}),E=Object(o.getSetting)("allowedStates",{})},function(e,t,r){"use strict";var n=r(2),o=r(1),c=r(69),i=r(52);const s=Object(n.getSetting)("countryLocale",{}),a=e=>{const t={};return void 0!==e.label&&(t.label=e.label),void 0!==e.required&&(t.required=e.required),void 0!==e.hidden&&(t.hidden=e.hidden),void 0===e.label||e.optionalLabel||(t.optionalLabel=Object(o.sprintf)(
2
  /* translators: %s Field label. */
3
  Object(o.__)("%s (optional)","woocommerce"),e.label)),e.priority&&(Object(c.a)(e.priority)&&(t.index=e.priority),Object(i.a)(e.priority)&&(t.index=parseInt(e.priority,10))),e.hidden&&(t.required=!1),t},l=Object.entries(s).map(e=>{let[t,r]=e;return[t,Object.entries(r).map(e=>{let[t,r]=e;return[t,a(r)]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{})]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{});t.a=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";const o=r&&void 0!==l[r]?l[r]:{};return e.map(e=>({key:e,...n.defaultAddressFields[e]||{},...o[e]||{},...t[e]||{}})).sort((e,t)=>e.index-t.index)}},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return l}));var n=r(11),o=r.n(n),c=r(0),i=r(16);const s=[".wp-block-woocommerce-cart"],a=e=>{let{Block:t,containers:r,getProps:n=(()=>({})),getErrorBoundaryProps:s=(()=>({}))}=e;0!==r.length&&Array.prototype.forEach.call(r,(e,r)=>{const a=n(e,r),l=s(e,r),u={...e.dataset,...a.attributes||{}};(e=>{let{Block:t,container:r,attributes:n={},props:s={},errorBoundaryProps:a={}}=e;Object(c.render)(Object(c.createElement)(i.a,a,Object(c.createElement)(c.Suspense,{fallback:Object(c.createElement)("div",{className:"wc-block-placeholder"})},t&&Object(c.createElement)(t,o()({},s,{attributes:n})))),r,()=>{r.classList&&r.classList.remove("is-loading")})})({Block:t,container:e,props:a,attributes:u,errorBoundaryProps:l})})},l=e=>{const t=document.body.querySelectorAll(s.join(",")),{Block:r,getProps:n,getErrorBoundaryProps:o,selector:c}=e;(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrappers:c}=e;const i=document.body.querySelectorAll(o);c&&c.length>0&&Array.prototype.filter.call(i,e=>!((e,t)=>Array.prototype.some.call(t,t=>t.contains(e)&&!t.isSameNode(e)))(e,c)),a({Block:t,containers:i,getProps:r,getErrorBoundaryProps:n})})({Block:r,getProps:n,getErrorBoundaryProps:o,selector:c,wrappers:t}),Array.prototype.forEach.call(t,t=>{t.addEventListener("wc-blocks_render_blocks_frontend",()=>{(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrapper:c}=e;const i=c.querySelectorAll(o);a({Block:t,containers:i,getProps:r,getErrorBoundaryProps:n})})({...e,wrapper:t})})})}},,function(e,t,r){"use strict";var n=r(8),o=r(0),c=r(4),i=r.n(c),s=r(6),a=r(32),l=r.n(a),u=r(13),d=r(51),p=r(93),b=r(1);function m(e,t,r){const{defaultView:n}=t,{frameElement:o}=n;if(!o||t===r.ownerDocument)return e;const c=o.getBoundingClientRect();return new n.DOMRect(e.left+c.left,e.top+c.top,e.width,e.height)}let f=0;function g(e){const t=document.scrollingElement||document.body;e&&(f=t.scrollTop);const r=e?"add":"remove";t.classList[r]("lockscroll"),document.documentElement.classList[r]("lockscroll"),e||(t.scrollTop=f)}let h=0;function E(){return Object(o.useEffect)(()=>(0===h&&g(!0),++h,()=>{1===h&&g(!1),--h}),[]),null}var O=r(24);function w(e){const t=Object(o.useContext)(O.a),r=t.slots[e]||{},n=t.fills[e],c=Object(o.useMemo)(()=>n||[],[n]);return{...r,updateSlot:Object(o.useCallback)(r=>{t.updateSlot(e,r)},[e,t.updateSlot]),unregisterSlot:Object(o.useCallback)(r=>{t.unregisterSlot(e,r)},[e,t.unregisterSlot]),fills:c,registerFill:Object(o.useCallback)(r=>{t.registerFill(e,r)},[e,t.registerFill]),unregisterFill:Object(o.useCallback)(r=>{t.unregisterFill(e,r)},[e,t.unregisterFill])}}var j=Object(o.createContext)({registerSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},getSlot:()=>{},getFills:()=>{},subscribe:()=>{}});function v({name:e,children:t,registerFill:r,unregisterFill:n}){const c=(e=>{const{getSlot:t,subscribe:r}=Object(o.useContext)(j),[n,c]=Object(o.useState)(t(e));return Object(o.useEffect)(()=>(c(t(e)),r(()=>{c(t(e))})),[e]),n})(e),i=Object(o.useRef)({name:e,children:t});return Object(o.useLayoutEffect)(()=>(r(e,i.current),()=>n(e,i.current)),[]),Object(o.useLayoutEffect)(()=>{i.current.children=t,c&&c.forceUpdate()},[t]),Object(o.useLayoutEffect)(()=>{e!==i.current.name&&(n(i.current.name,i.current),i.current.name=e,r(e,i.current))},[e]),c&&c.node?(Object(s.isFunction)(t)&&(t=t(c.props.fillProps)),Object(o.createPortal)(t,c.node)):null}var y=e=>Object(o.createElement)(j.Consumer,null,({registerFill:t,unregisterFill:r})=>Object(o.createElement)(v,Object(n.a)({},e,{registerFill:t,unregisterFill:r})));class _ extends o.Component{constructor(){super(...arguments),this.isUnmounted=!1,this.bindNode=this.bindNode.bind(this)}componentDidMount(){const{registerSlot:e}=this.props;e(this.props.name,this)}componentWillUnmount(){const{unregisterSlot:e}=this.props;this.isUnmounted=!0,e(this.props.name,this)}componentDidUpdate(e){const{name:t,unregisterSlot:r,registerSlot:n}=this.props;e.name!==t&&(r(e.name),n(t,this))}bindNode(e){this.node=e}forceUpdate(){this.isUnmounted||super.forceUpdate()}render(){const{children:e,name:t,fillProps:r={},getFills:n}=this.props,c=Object(s.map)(n(t,this),e=>{const t=Object(s.isFunction)(e.children)?e.children(r):e.children;return o.Children.map(t,(e,t)=>{if(!e||Object(s.isString)(e))return e;const r=e.key||t;return Object(o.cloneElement)(e,{key:r})})}).filter(Object(s.negate)(o.isEmptyElement));return Object(o.createElement)(o.Fragment,null,Object(s.isFunction)(e)?e(c):c)}}var x=e=>Object(o.createElement)(j.Consumer,null,({registerSlot:t,unregisterSlot:r,getFills:c})=>Object(o.createElement)(_,Object(n.a)({},e,{registerSlot:t,unregisterSlot:r,getFills:c})));function k(){const[,e]=Object(o.useState)({}),t=Object(o.useRef)(!0);return Object(o.useEffect)(()=>()=>{t.current=!1},[]),()=>{t.current&&e({})}}function S({name:e,children:t}){const r=w(e),n=Object(o.useRef)({rerender:k()});return Object(o.useEffect)(()=>(r.registerFill(n),()=>{r.unregisterFill(n)}),[r.registerFill,r.unregisterFill]),r.ref&&r.ref.current?("function"==typeof t&&(t=t(r.fillProps)),Object(o.createPortal)(t,r.ref.current)):null}var C=Object(o.forwardRef)((function({name:e,fillProps:t={},as:r="div",...c},i){const s=Object(o.useContext)(O.a),a=Object(o.useRef)();return Object(o.useLayoutEffect)(()=>(s.registerSlot(e,a,t),()=>{s.unregisterSlot(e,a)}),[s.registerSlot,s.unregisterSlot,e]),Object(o.useLayoutEffect)(()=>{s.updateSlot(e,t)}),Object(o.createElement)(r,Object(n.a)({ref:Object(u.useMergeRefs)([i,a])},c))}));function P(e){return Object(o.createElement)(o.Fragment,null,Object(o.createElement)(y,e),Object(o.createElement)(S,e))}r(12),o.Component;const R=Object(o.forwardRef)(({bubblesVirtually:e,...t},r)=>e?Object(o.createElement)(C,Object(n.a)({},t,{ref:r})):Object(o.createElement)(x,t));function N(e){return"appear"===e?"top":"left"}function T(e,t){const{paddingTop:r,paddingBottom:n,paddingLeft:o,paddingRight:c}=(i=t).ownerDocument.defaultView.getComputedStyle(i);var i;const s=r?parseInt(r,10):0,a=n?parseInt(n,10):0,l=o?parseInt(o,10):0,u=c?parseInt(c,10):0;return{x:e.left+l,y:e.top+s,width:e.width-l-u,height:e.height-s-a,left:e.left+l,right:e.right-u,top:e.top+s,bottom:e.bottom-a}}function L(e,t,r){r?e.getAttribute(t)!==r&&e.setAttribute(t,r):e.hasAttribute(t)&&e.removeAttribute(t)}function B(e,t,r=""){e.style[t]!==r&&(e.style[t]=r)}function A(e,t,r){r?e.classList.contains(t)||e.classList.add(t):e.classList.contains(t)&&e.classList.remove(t)}const M=Object(o.forwardRef)(({headerTitle:e,onClose:t,children:r,className:c,noArrow:s=!0,isAlternate:a,position:f="bottom right",range:g,focusOnMount:h="firstElement",anchorRef:O,shouldAnchorIncludePadding:j,anchorRect:v,getAnchorRect:y,expandOnMobile:_,animate:x=!0,onClickOutside:k,onFocusOutside:S,__unstableStickyBoundaryElement:C,__unstableSlotName:R="Popover",__unstableObserveElement:M,__unstableBoundaryParent:F,__unstableForcePosition:I,__unstableForceXAlignment:D,...z},H)=>{const W=Object(o.useRef)(null),V=Object(o.useRef)(null),Y=Object(o.useRef)(),U=Object(u.useViewportMatch)("medium","<"),[q,G]=Object(o.useState)(),K=w(R),X=_&&U,[J,Z]=Object(u.useResizeObserver)();s=X||s,Object(o.useLayoutEffect)(()=>{if(X)return A(Y.current,"is-without-arrow",s),A(Y.current,"is-alternate",a),L(Y.current,"data-x-axis"),L(Y.current,"data-y-axis"),B(Y.current,"top"),B(Y.current,"left"),B(V.current,"maxHeight"),void B(V.current,"maxWidth");const e=()=>{if(!Y.current||!V.current)return;let e=function(e,t,r,n=!1,o,c){if(t)return t;if(r){if(!e.current)return;const t=r(e.current);return m(t,t.ownerDocument||e.current.ownerDocument,c)}if(!1!==n){if(!(n&&window.Range&&window.Element&&window.DOMRect))return;if("function"==typeof(null==n?void 0:n.cloneRange))return m(Object(d.getRectangleFromRange)(n),n.endContainer.ownerDocument,c);if("function"==typeof(null==n?void 0:n.getBoundingClientRect)){const e=m(n.getBoundingClientRect(),n.ownerDocument,c);return o?e:T(e,n)}const{top:e,bottom:t}=n,r=e.getBoundingClientRect(),i=t.getBoundingClientRect(),s=m(new window.DOMRect(r.left,r.top,r.width,i.bottom-r.top),e.ownerDocument,c);return o?s:T(s,n)}if(!e.current)return;const{parentNode:i}=e.current,s=i.getBoundingClientRect();return o?s:T(s,i)}(W,v,y,O,j,Y.current);if(!e)return;const{offsetParent:t,ownerDocument:r}=Y.current;let n,o=0;if(t&&t!==r.body){const r=t.getBoundingClientRect();o=r.top,e=new window.DOMRect(e.left-r.left,e.top-r.top,e.width,e.height)}var c;F&&(n=null===(c=Y.current.closest(".popover-slot"))||void 0===c?void 0:c.parentNode);const i=Z.height?Z:V.current.getBoundingClientRect(),{popoverTop:l,popoverLeft:u,xAxis:p,yAxis:g,contentHeight:h,contentWidth:E}=function(e,t,r="top",n,o,c,i,s,a){const[l,u="center",d]=r.split(" "),p=function(e,t,r,n,o,c,i,s){const{height:a}=t;if(o){const t=o.getBoundingClientRect().top+a-i;if(e.top<=t)return{yAxis:r,popoverTop:Math.min(e.bottom,t)}}let l=e.top+e.height/2;"bottom"===n?l=e.bottom:"top"===n&&(l=e.top);const u={popoverTop:l,contentHeight:(l-a/2>0?a/2:l)+(l+a/2>window.innerHeight?window.innerHeight-l:a/2)},d={popoverTop:e.top,contentHeight:e.top-10-a>0?a:e.top-10},p={popoverTop:e.bottom,contentHeight:e.bottom+10+a>window.innerHeight?window.innerHeight-10-e.bottom:a};let b,m=r,f=null;if(!o&&!s)if("middle"===r&&u.contentHeight===a)m="middle";else if("top"===r&&d.contentHeight===a)m="top";else if("bottom"===r&&p.contentHeight===a)m="bottom";else{m=d.contentHeight>p.contentHeight?"top":"bottom";const e="top"===m?d.contentHeight:p.contentHeight;f=e!==a?e:null}return b="middle"===m?u.popoverTop:"top"===m?d.popoverTop:p.popoverTop,{yAxis:m,popoverTop:b,contentHeight:f}}(e,t,l,d,n,0,c,s);return{...function(e,t,r,n,o,c,i,s,a){const{width:l}=t;"left"===r&&Object(b.isRTL)()?r="right":"right"===r&&Object(b.isRTL)()&&(r="left"),"left"===n&&Object(b.isRTL)()?n="right":"right"===n&&Object(b.isRTL)()&&(n="left");const u=Math.round(e.left+e.width/2),d={popoverLeft:u,contentWidth:(u-l/2>0?l/2:u)+(u+l/2>window.innerWidth?window.innerWidth-u:l/2)};let p=e.left;"right"===n?p=e.right:"middle"===c||a||(p=u);let m=e.right;"left"===n?m=e.left:"middle"===c||a||(m=u);const f={popoverLeft:p,contentWidth:p-l>0?l:p},g={popoverLeft:m,contentWidth:m+l>window.innerWidth?window.innerWidth-m:l};let h,E=r,O=null;if(!o&&!s)if("center"===r&&d.contentWidth===l)E="center";else if("left"===r&&f.contentWidth===l)E="left";else if("right"===r&&g.contentWidth===l)E="right";else{E=f.contentWidth>g.contentWidth?"left":"right";const e="left"===E?f.contentWidth:g.contentWidth;l>window.innerWidth&&(O=window.innerWidth),e!==l&&(E="center",d.popoverLeft=window.innerWidth/2)}if(h="center"===E?d.popoverLeft:"left"===E?f.popoverLeft:g.popoverLeft,i){const e=i.getBoundingClientRect();h=Math.min(h,e.right-l),Object(b.isRTL)()||(h=Math.max(h,0))}return{xAxis:E,popoverLeft:h,contentWidth:O}}(e,t,u,d,n,p.yAxis,i,s,a),...p}}(e,i,f,C,Y.current,o,n,I,D);"number"==typeof l&&"number"==typeof u&&(B(Y.current,"top",l+"px"),B(Y.current,"left",u+"px")),A(Y.current,"is-without-arrow",s||"center"===p&&"middle"===g),A(Y.current,"is-alternate",a),L(Y.current,"data-x-axis",p),L(Y.current,"data-y-axis",g),B(V.current,"maxHeight","number"==typeof h?h+"px":""),B(V.current,"maxWidth","number"==typeof E?E+"px":""),G(({left:"right",right:"left"}[p]||"center")+" "+({top:"bottom",bottom:"top"}[g]||"middle"))};e();const{ownerDocument:t}=Y.current,{defaultView:r}=t,n=r.setInterval(e,500);let o;const c=()=>{r.cancelAnimationFrame(o),o=r.requestAnimationFrame(e)};r.addEventListener("click",c),r.addEventListener("resize",e),r.addEventListener("scroll",e,!0);const i=function(e){if(e)return e.endContainer?e.endContainer.ownerDocument:e.top?e.top.ownerDocument:e.ownerDocument}(O);let l;return i&&i!==t&&(i.defaultView.addEventListener("resize",e),i.defaultView.addEventListener("scroll",e,!0)),M&&(l=new r.MutationObserver(e),l.observe(M,{attributes:!0})),()=>{r.clearInterval(n),r.removeEventListener("resize",e),r.removeEventListener("scroll",e,!0),r.removeEventListener("click",c),r.cancelAnimationFrame(o),i&&i!==t&&(i.defaultView.removeEventListener("resize",e),i.defaultView.removeEventListener("scroll",e,!0)),l&&l.disconnect()}},[X,v,y,O,j,f,Z,C,M,F]);const $=(e,r)=>{if("focus-outside"===e&&S)S(r);else if("focus-outside"===e&&k){const e=new window.MouseEvent("click");Object.defineProperty(e,"target",{get:()=>r.relatedTarget}),l()("Popover onClickOutside prop",{since:"5.3",alternative:"onFocusOutside"}),k(e)}else t&&t()},[ee,te]=Object(u.__experimentalUseDialog)({focusOnMount:h,__unstableOnClose:$,onClose:$}),re=Object(u.useMergeRefs)([Y,ee,H]),ne=Boolean(x&&q)&&function(e){if("loading"===e.type)return i()("components-animate__loading");const{type:t,origin:r=N(t)}=e;if("appear"===t){const[e,t="center"]=r.split(" ");return i()("components-animate__appear",{["is-from-"+t]:"center"!==t,["is-from-"+e]:"middle"!==e})}return"slide-in"===t?i()("components-animate__slide-in","is-from-"+r):void 0}({type:"appear",origin:q});let oe=Object(o.createElement)("div",Object(n.a)({className:i()("components-popover",c,ne,{"is-expanded":X,"is-without-arrow":s,"is-alternate":a})},z,{ref:re},te,{tabIndex:"-1"}),X&&Object(o.createElement)(E,null),X&&Object(o.createElement)("div",{className:"components-popover__header"},Object(o.createElement)("span",{className:"components-popover__header-title"},e),Object(o.createElement)(Q,{className:"components-popover__close",icon:p.a,onClick:t})),Object(o.createElement)("div",{ref:V,className:"components-popover__content"},Object(o.createElement)("div",{style:{position:"relative"}},J,r)));return K.ref&&(oe=Object(o.createElement)(P,{name:R},oe)),O||v?oe:Object(o.createElement)("span",{ref:W},oe)});M.Slot=Object(o.forwardRef)((function({name:e="Popover"},t){return Object(o.createElement)(R,{bubblesVirtually:!0,name:e,className:"popover-slot",ref:t})}));var F=M,I=function({shortcut:e,className:t}){if(!e)return null;let r,n;return Object(s.isString)(e)&&(r=e),Object(s.isObject)(e)&&(r=e.display,n=e.ariaLabel),Object(o.createElement)("span",{className:t,"aria-label":n},r)};const D=Object(o.createElement)("div",{className:"event-catcher"}),z=({eventHandlers:e,child:t,childrenWithPopover:r})=>Object(o.cloneElement)(Object(o.createElement)("span",{className:"disabled-element-wrapper"},Object(o.cloneElement)(D,e),Object(o.cloneElement)(t,{children:r}),","),e),H=({child:e,eventHandlers:t,childrenWithPopover:r})=>Object(o.cloneElement)(e,{...t,children:r}),W=(e,t,r)=>{if(1!==o.Children.count(e))return;const n=o.Children.only(e);"function"==typeof n.props[t]&&n.props[t](r)};var V=function({children:e,position:t,text:r,shortcut:n}){const[c,i]=Object(o.useState)(!1),[a,l]=Object(o.useState)(!1),d=Object(u.useDebounce)(l,700),p=t=>{W(e,"onMouseDown",t),document.addEventListener("mouseup",f),i(!0)},b=t=>{W(e,"onMouseUp",t),document.removeEventListener("mouseup",f),i(!1)},m=e=>"mouseUp"===e?b:"mouseDown"===e?p:void 0,f=m("mouseUp"),g=(t,r)=>n=>{if(W(e,t,n),n.currentTarget.disabled)return;if("focus"===n.type&&c)return;d.cancel();const o=Object(s.includes)(["focus","mouseenter"],n.type);o!==a&&(r?d(o):l(o))},h=()=>{d.cancel(),document.removeEventListener("mouseup",f)};if(Object(o.useEffect)(()=>h,[]),1!==o.Children.count(e))return e;const E={onMouseEnter:g("onMouseEnter",!0),onMouseLeave:g("onMouseLeave"),onClick:g("onClick"),onFocus:g("onFocus"),onBlur:g("onBlur"),onMouseDown:m("mouseDown")},O=o.Children.only(e),{children:w,disabled:j}=O.props;return(j?z:H)({child:O,eventHandlers:E,childrenWithPopover:(({grandchildren:e,isOver:t,position:r,text:n,shortcut:c})=>Object(o.concatChildren)(e,t&&Object(o.createElement)(F,{focusOnMount:!1,position:r,className:"components-tooltip","aria-hidden":"true",animate:!1,noArrow:!0},n,Object(o.createElement)(I,{className:"components-tooltip__shortcut",shortcut:c}))))({grandchildren:w,isOver:a,position:t,text:r,shortcut:n})})},Y=r(41),U=r(42);const q=["onMouseDown","onClick"];var Q=t.a=Object(o.forwardRef)((function(e,t){const{href:r,target:c,isSmall:a,isPressed:u,isBusy:d,isDestructive:p,className:b,disabled:m,icon:f,iconPosition:g="left",iconSize:h,showTooltip:E,tooltipPosition:O,shortcut:w,label:j,children:v,text:y,variant:_,__experimentalIsFocusable:x,describedBy:k,...S}=function({isDefault:e,isPrimary:t,isSecondary:r,isTertiary:n,isLink:o,variant:c,...i}){let s=c;var a,u,d,p,b;return t&&(null!==(a=s)&&void 0!==a||(s="primary")),n&&(null!==(u=s)&&void 0!==u||(s="tertiary")),r&&(null!==(d=s)&&void 0!==d||(s="secondary")),e&&(l()("Button isDefault prop",{since:"5.4",alternative:'variant="secondary"'}),null!==(p=s)&&void 0!==p||(s="secondary")),o&&(null!==(b=s)&&void 0!==b||(s="link")),{...i,variant:s}}(e),C=i()("components-button",b,{"is-secondary":"secondary"===_,"is-primary":"primary"===_,"is-small":a,"is-tertiary":"tertiary"===_,"is-pressed":u,"is-busy":d,"is-link":"link"===_,"is-destructive":p,"has-text":!!f&&!!v,"has-icon":!!f}),P=m&&!x,R=void 0===r||P?"button":"a",N="a"===R?{href:r,target:c}:{type:"button",disabled:P,"aria-pressed":u};if(m&&x){N["aria-disabled"]=!0;for(const e of q)S[e]=e=>{e.stopPropagation(),e.preventDefault()}}const T=!P&&(E&&j||w||!!j&&(!v||Object(s.isArray)(v)&&!v.length)&&!1!==E),L=k?Object(s.uniqueId)():null,B=S["aria-describedby"]||L,A=Object(o.createElement)(R,Object(n.a)({},N,S,{className:C,"aria-label":S["aria-label"]||j,"aria-describedby":B,ref:t}),f&&"left"===g&&Object(o.createElement)(Y.a,{icon:f,size:h}),y&&Object(o.createElement)(o.Fragment,null,y),f&&"right"===g&&Object(o.createElement)(Y.a,{icon:f,size:h}),v);return T?Object(o.createElement)(o.Fragment,null,Object(o.createElement)(V,{text:k||j,shortcut:w,position:O},A),k&&Object(o.createElement)(U.a,null,Object(o.createElement)("span",{id:L},k))):Object(o.createElement)(o.Fragment,null,A,k&&Object(o.createElement)(U.a,null,Object(o.createElement)("span",{id:L},k)))}))},function(e,t){e.exports=window.wp.dom},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"string"==typeof e},,,,,function(e,t,r){"use strict";r.d(t,"b",(function(){return c})),r.d(t,"a",(function(){return i}));var n=r(0);const o=Object(n.createContext)({setIsSuppressed:e=>{},isSuppressed:!1}),c=()=>Object(n.useContext)(o),i=e=>{let{children:t}=e;const[r,c]=Object(n.useState)(!1),i={setIsSuppressed:c,isSuppressed:r};return Object(n.createElement)(o.Provider,{value:i},t)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t){const r=Object(n.useRef)();return Object(n.useEffect)(()=>{r.current===e||t&&!t(e,r.current)||(r.current=e)},[e,t]),r.current}},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return a}));var n=r(5),o=r(7),c=r(0),i=r(30),s=r(72);const a=e=>{const{namespace:t,resourceName:r,resourceValues:a=[],query:l={},shouldSelect:u=!0}=e;if(!t||!r)throw new Error("The options object must have valid values for the namespace and the resource properties.");const d=Object(c.useRef)({results:[],isLoading:!0}),p=Object(i.a)(l),b=Object(i.a)(a),m=Object(s.a)(),f=Object(o.useSelect)(e=>{if(!u)return null;const o=e(n.COLLECTIONS_STORE_KEY),c=[t,r,p,b],i=o.getCollectionError(...c);if(i){if(!(i instanceof Error))throw new Error("TypeError: `error` object is not an instance of Error constructor");m(i)}return{results:o.getCollection(...c),isLoading:!o.hasFinishedResolution("getCollection",c)}},[t,r,b,p,u]);return null!==f&&(d.current=f),d.current}},function(e,t){var r,n,o=e.exports={};function c(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function s(e){if(r===setTimeout)return setTimeout(e,0);if((r===c||!r)&&setTimeout)return r=setTimeout,setTimeout(e,0);try{return r(e,0)}catch(t){try{return r.call(null,e,0)}catch(t){return r.call(this,e,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:c}catch(e){r=c}try{n="function"==typeof clearTimeout?clearTimeout:i}catch(e){n=i}}();var a,l=[],u=!1,d=-1;function p(){u&&a&&(u=!1,a.length?l=a.concat(l):d=-1,l.length&&b())}function b(){if(!u){var e=s(p);u=!0;for(var t=l.length;t;){for(a=l,l=[];++d<t;)a&&a[d].run();d=-1,t=l.length}a=null,u=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===i||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function m(e,t){this.fun=e,this.array=t}function f(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];l.push(new m(e,t)),1!==l.length||u||s(b)},m.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=f,o.addListener=f,o.once=f,o.off=f,o.removeListener=f,o.removeAllListeners=f,o.emit=f,o.prependListener=f,o.prependOnceListener=f,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"d",(function(){return i})),r.d(t,"c",(function(){return s})),r.d(t,"b",(function(){return a}));const n=window.CustomEvent||null,o=(e,t)=>{let{bubbles:r=!1,cancelable:o=!1,element:c,detail:i={}}=t;if(!n)return;c||(c=document.body);const s=new n(e,{bubbles:r,cancelable:o,detail:i});c.dispatchEvent(s)};let c;const i=()=>{c&&clearTimeout(c),c=setTimeout(()=>{o("wc_fragment_refresh",{bubbles:!0,cancelable:!0})},50)},s=e=>{let{preserveCartData:t=!1}=e;o("wc-blocks_added_to_cart",{bubbles:!0,cancelable:!0,detail:{preserveCartData:t}})},a=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof jQuery)return()=>{};const c=()=>{o(t,{bubbles:r,cancelable:n})};return jQuery(document).on(e,c),()=>jQuery(document).off(e,c)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"number"==typeof e},function(e,t){e.exports=window.wp.blockEditor},,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(0);const o=()=>{const[,e]=Object(n.useState)();return Object(n.useCallback)(t=>{e(()=>{throw t})},[])}},function(e,t,r){"use strict";var n=r(11),o=r.n(n),c=r(0);r(107);const i=e=>{if(!e)return;const t=e.getBoundingClientRect().bottom;t>=0&&t<=window.innerHeight||e.scrollIntoView()};t.a=e=>t=>{const r=Object(c.useRef)(null);return Object(c.createElement)(c.Fragment,null,Object(c.createElement)("div",{className:"with-scroll-to-top__scroll-point",ref:r,"aria-hidden":!0}),Object(c.createElement)(e,o()({},t,{scrollToTop:e=>{null!==r.current&&((e,t)=>{const{focusableSelector:r}=t||{};window&&Number.isFinite(window.innerHeight)&&(r?((e,t)=>{var r;const n=(null===(r=e.parentElement)||void 0===r?void 0:r.querySelectorAll(t))||[];if(n.length){const e=n[0];i(e),null==e||e.focus()}else i(e)})(e,r):i(e))})(r.current,e)}})))}},,,,,function(e,t){},,,,,,,,,,,,,,,function(e,t,r){"use strict";var n=r(0),o=r(15);const c=Object(n.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(n.createElement)(o.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));t.a=c},function(e,t,r){"use strict";var n=r(0),o=r(6),c=r(4),i=r.n(c),s=r(1),a=r(20),l=r(93),u=r(50);function d(e){switch(e){case"success":case"warning":case"info":return"polite";case"error":default:return"assertive"}}t.a=function({className:e,status:t="info",children:r,spokenMessage:c=r,onRemove:p=o.noop,isDismissible:b=!0,actions:m=[],politeness:f=d(t),__unstableHTML:g,onDismiss:h=o.noop}){!function(e,t){const r="string"==typeof e?e:Object(n.renderToString)(e);Object(n.useEffect)(()=>{r&&Object(a.speak)(r,t)},[r,t])}(c,f);const E=i()(e,"components-notice","is-"+t,{"is-dismissible":b});return g&&(r=Object(n.createElement)(n.RawHTML,null,r)),Object(n.createElement)("div",{className:E},Object(n.createElement)("div",{className:"components-notice__content"},r,Object(n.createElement)("div",{className:"components-notice__actions"},m.map(({className:e,label:t,isPrimary:r,variant:o,noDefaultClasses:c=!1,onClick:s,url:a},l)=>{let d=o;return"primary"===o||c||(d=a?"link":"secondary"),void 0===d&&r&&(d="primary"),Object(n.createElement)(u.a,{key:l,href:a,variant:d,onClick:a?void 0:s,className:i()("components-notice__action",e)},t)}))),b&&Object(n.createElement)(u.a,{className:"components-notice__dismiss",icon:l.a,label:Object(s.__)("Dismiss this notice"),onClick:e=>{var t;null==e||null===(t=e.preventDefault)||void 0===t||t.call(e),h(),p()},showTooltip:!1}))}},,,,,,,,,function(e,t){e.exports=window.wp.blocks},,function(e,t,r){"use strict";var n=r(0);t.a=function(e){let{icon:t,size:r=24,...o}=e;return Object(n.cloneElement)(t,{width:r,height:r,...o})}},,function(e,t){},,function(e,t,r){"use strict";var n=r(0),o=r(4),c=r.n(o),i=r(22),s=r(13);r(123),t.a=Object(s.withInstanceId)(e=>{let{className:t,instanceId:r,label:o="",onChange:s,options:a,screenReaderLabel:l,value:u}=e;const d="wc-block-components-sort-select__select-"+r;return Object(n.createElement)("div",{className:c()("wc-block-sort-select","wc-block-components-sort-select",t)},Object(n.createElement)(i.a,{label:o,screenReaderLabel:l,wrapperElement:"label",wrapperProps:{className:"wc-block-sort-select__label wc-block-components-sort-select__label",htmlFor:d}}),Object(n.createElement)("select",{id:d,className:"wc-block-sort-select__select wc-block-components-sort-select__select",onChange:s,value:u},a&&a.map(e=>Object(n.createElement)("option",{key:e.key,value:e.key},e.label))))})},,,,,,function(e,t){e.exports=window.wp.wordcount},function(e,t){e.exports=window.wp.autop},,function(e,t,r){"use strict";r.d(t,"b",(function(){return c})),r.d(t,"a",(function(){return i}));var n=r(45),o=(r(14),r(2));const c=(e,t)=>Object.keys(o.defaultAddressFields).every(r=>e[r]===t[r]),i=e=>{const t=Object.keys(o.defaultAddressFields),r=Object(n.a)(t,{},e.country),c=Object.assign({},e);return r.forEach(t=>{let{key:r="",hidden:n=!1}=t;n&&((e,t)=>e in t)(r,e)&&(c[r]="")}),c}},,function(e,t){e.exports=window.wc.wcBlocksSharedHocs},,,function(e,t){},function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(11),o=r.n(n),c=r(0),i=r(4),s=r.n(i),a=r(94),l=r(7),u=(r(78),r(57));const d=e=>{let{status:t="default"}=e;switch(t){case"error":return"woocommerce-error";case"success":return"woocommerce-message";case"info":case"warning":return"woocommerce-info"}return""},p=e=>{let{className:t,context:r="default",additionalNotices:n=[]}=e;const{isSuppressed:i}=Object(u.b)(),{notices:p}=Object(l.useSelect)(e=>({notices:e("core/notices").getNotices(r)})),{removeNotice:b}=Object(l.useDispatch)("core/notices"),m=p.filter(e=>"snackbar"!==e.type).concat(n);if(!m.length)return null;const f=s()(t,"wc-block-components-notices");return i?null:Object(c.createElement)("div",{className:f},m.map(e=>Object(c.createElement)(a.a,o()({key:"store-notice-"+e.id},e,{className:s()("wc-block-components-notices__notice",d(e)),onRemove:()=>{e.isDismissible&&b(e.id,r)}}),e.content)))}},,,,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return i}));var n=r(17),o=r(0),c=r(44);r.p=c.k,Object(n.registerBlockComponent)({blockName:"woocommerce/product-price",component:Object(o.lazy)(()=>Promise.all([r.e(0),r.e(62)]).then(r.bind(null,399)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-image",component:Object(o.lazy)(()=>r.e(61).then(r.bind(null,443)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-title",component:Object(o.lazy)(()=>r.e(69).then(r.bind(null,444)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-rating",component:Object(o.lazy)(()=>r.e(63).then(r.bind(null,400)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-button",component:Object(o.lazy)(()=>r.e(59).then(r.bind(null,401)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-summary",component:Object(o.lazy)(()=>r.e(67).then(r.bind(null,402)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-sale-badge",component:Object(o.lazy)(()=>r.e(64).then(r.bind(null,312)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-sku",component:Object(o.lazy)(()=>r.e(65).then(r.bind(null,403)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-category-list",component:Object(o.lazy)(()=>r.e(60).then(r.bind(null,404)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-tag-list",component:Object(o.lazy)(()=>r.e(68).then(r.bind(null,405)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-stock-indicator",component:Object(o.lazy)(()=>r.e(66).then(r.bind(null,406)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-add-to-cart",component:Object(o.lazy)(()=>Promise.all([r.e(1),r.e(74),r.e(58)]).then(r.bind(null,426)))});const i=e=>Object(n.getRegisteredBlockComponents)(e)},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,r){e.exports=r(235)},function(e,t){},function(e,t){},function(e,t){},,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,r){"use strict";r.r(t);var n=r(0),o=r(57),c=r(48),i=r(3),s=r(1),a=r(6),l=r(4),u=r.n(l),d=r(22);r(210);var p=e=>{let{currentPage:t,displayFirstAndLastPages:r=!0,displayNextAndPreviousArrows:o=!0,pagesToDisplay:c=3,onPageChange:i,totalPages:a}=e,{minIndex:l,maxIndex:p}=((e,t,r)=>{if(r<=2)return{minIndex:null,maxIndex:null};const n=e-1,o=Math.max(Math.floor(t-n/2),2),c=Math.min(Math.ceil(t+(n-(t-o))),r-1);return{minIndex:Math.max(Math.floor(t-(n-(c-t))),2),maxIndex:c}})(c,t,a);const b=r&&Boolean(1!==l),m=r&&Boolean(p!==a),f=r&&Boolean(l&&l>3),g=r&&Boolean(p&&p<a-2);b&&3===l&&(l-=1),m&&p===a-2&&(p+=1);const h=[];if(l&&p)for(let e=l;e<=p;e++)h.push(e);return Object(n.createElement)("div",{className:"wc-block-pagination wc-block-components-pagination"},Object(n.createElement)(d.a,{screenReaderLabel:Object(s.__)("Navigate to another page","woocommerce")}),o&&Object(n.createElement)("button",{className:"wc-block-pagination-page wc-block-components-pagination__page wc-block-components-pagination-page--arrow",onClick:()=>i(t-1),title:Object(s.__)("Previous page","woocommerce"),disabled:t<=1},Object(n.createElement)(d.a,{label:"←",screenReaderLabel:Object(s.__)("Previous page","woocommerce")})),b&&Object(n.createElement)("button",{className:u()("wc-block-pagination-page","wc-block-components-pagination__page",{"wc-block-pagination-page--active":1===t,"wc-block-components-pagination__page--active":1===t}),onClick:()=>i(1),disabled:1===t},Object(n.createElement)(d.a,{label:"1",screenReaderLabel:Object(s.sprintf)(
4
  /* translators: %d is the page number (1, 2, 3...). */
1
+ !function(e){function t(t){for(var r,o,c=t[0],i=t[1],s=0,l=[];s<c.length;s++)o=c[s],Object.prototype.hasOwnProperty.call(n,o)&&n[o]&&l.push(n[o][0]),n[o]=0;for(r in i)Object.prototype.hasOwnProperty.call(i,r)&&(e[r]=i[r]);for(a&&a(t);l.length;)l.shift()()}var r={},n={9:0,73:0};function o(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}o.e=function(e){var t=[],r=n[e];if(0!==r)if(r)t.push(r[2]);else{var c=new Promise((function(t,o){r=n[e]=[t,o]}));t.push(r[2]=c);var i,s=document.createElement("script");s.charset="utf-8",s.timeout=120,o.nc&&s.setAttribute("nonce",o.nc),s.src=function(e){return o.p+""+({0:"vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66",1:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--decc3dc6",58:"product-add-to-cart",59:"product-button",60:"product-category-list",61:"product-image",62:"product-price",63:"product-rating",64:"product-sale-badge",65:"product-sku",66:"product-stock-indicator",67:"product-summary",68:"product-tag-list",69:"product-title",74:"vendors--product-add-to-cart"}[e]||e)+"-frontend.js?ver="+{0:"1d36f73838f02eb72b0e",1:"e2dda84269ff5f357820",58:"a1f5c37ffde9d75afc47",59:"31d91954dd894b010db7",60:"bdcd55f6a78f3780a8c9",61:"1ec1ff9f0e063d3f63ae",62:"36221c05f2759b8bd8fd",63:"09acab57fd9a8594caac",64:"c6ec41b82cb1fe4af0c7",65:"f04dd44c9314944f232b",66:"1e1f4698349331747d15",67:"d613d9c8a37c5b8d3b1a",68:"d655fde20ee518912eb5",69:"9275c1cccdfd844d56f7",74:"d4bf9e962fb49977699e"}[e]}(e);var a=new Error;i=function(t){s.onerror=s.onload=null,clearTimeout(l);var r=n[e];if(0!==r){if(r){var o=t&&("load"===t.type?"missing":t.type),c=t&&t.target&&t.target.src;a.message="Loading chunk "+e+" failed.\n("+o+": "+c+")",a.name="ChunkLoadError",a.type=o,a.request=c,r[1](a)}n[e]=void 0}};var l=setTimeout((function(){i({type:"timeout",target:s})}),12e4);s.onerror=s.onload=i,document.head.appendChild(s)}return Promise.all(t)},o.m=e,o.c=r,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)o.d(r,n,function(t){return e[t]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o.oe=function(e){throw console.error(e),e};var c=window.webpackWcBlocksJsonp=window.webpackWcBlocksJsonp||[],i=c.push.bind(c);c.push=t,c=c.slice();for(var s=0;s<c.length;s++)t(c[s]);var a=i;o(o.s=207)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wc.wcSettings},function(e,t){e.exports=window.React},function(e,t,r){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var c=typeof n;if("string"===c||"number"===c)e.push(n);else if(Array.isArray(n)){if(n.length){var i=o.apply(null,n);i&&e.push(i)}}else if("object"===c)if(n.toString===Object.prototype.toString)for(var s in n)r.call(n,s)&&n[s]&&e.push(s);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},function(e,t){e.exports=window.wc.wcBlocksData},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.data},function(e,t,r){"use strict";function n(){return(n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}r.d(t,"a",(function(){return n}))},,,function(e,t){function r(){return e.exports=r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,r.apply(this,arguments)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.isShallowEqual},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.primitives},function(e,t,r){"use strict";var n=r(19),o=r.n(n),c=r(0),i=r(3),s=r(1),a=r(44),l=e=>{let{imageUrl:t=a.l+"/block-error.svg",header:r=Object(s.__)("Oops!","woocommerce"),text:n=Object(s.__)("There was an error loading the content.","woocommerce"),errorMessage:o,errorMessagePrefix:i=Object(s.__)("Error:","woocommerce"),button:l,showErrorBlock:u=!0}=e;return u?Object(c.createElement)("div",{className:"wc-block-error wc-block-components-error"},t&&Object(c.createElement)("img",{className:"wc-block-error__image wc-block-components-error__image",src:t,alt:""}),Object(c.createElement)("div",{className:"wc-block-error__content wc-block-components-error__content"},r&&Object(c.createElement)("p",{className:"wc-block-error__header wc-block-components-error__header"},r),n&&Object(c.createElement)("p",{className:"wc-block-error__text wc-block-components-error__text"},n),o&&Object(c.createElement)("p",{className:"wc-block-error__message wc-block-components-error__message"},i?i+" ":"",o),l&&Object(c.createElement)("p",{className:"wc-block-error__button wc-block-components-error__button"},l))):null};r(33);class u extends i.Component{constructor(){super(...arguments),o()(this,"state",{errorMessage:"",hasError:!1})}static getDerivedStateFromError(e){return void 0!==e.statusText&&void 0!==e.status?{errorMessage:Object(c.createElement)(c.Fragment,null,Object(c.createElement)("strong",null,e.status),": ",e.statusText),hasError:!0}:{errorMessage:e.message,hasError:!0}}render(){const{header:e,imageUrl:t,showErrorMessage:r=!0,showErrorBlock:n=!0,text:o,errorMessagePrefix:i,renderError:s,button:a}=this.props,{errorMessage:u,hasError:d}=this.state;return d?"function"==typeof s?s({errorMessage:u}):Object(c.createElement)(l,{showErrorBlock:n,errorMessage:r?u:null,header:e,imageUrl:t,text:o,errorMessagePrefix:i,button:a}):this.props.children}}t.a=u},function(e,t){e.exports=window.wc.wcBlocksRegistry},function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.a11y},,function(e,t,r){"use strict";var n=r(0),o=r(4),c=r.n(o);t.a=e=>{let t,{label:r,screenReaderLabel:o,wrapperElement:i,wrapperProps:s={}}=e;const a=null!=r,l=null!=o;return!a&&l?(t=i||"span",s={...s,className:c()(s.className,"screen-reader-text")},Object(n.createElement)(t,s,o)):(t=i||n.Fragment,a&&l&&r!==o?Object(n.createElement)(t,s,Object(n.createElement)("span",{"aria-hidden":"true"},r),Object(n.createElement)("span",{className:"screen-reader-text"},o)):Object(n.createElement)(t,s,r))}},function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(0);const o=Object(n.createContext)("page"),c=()=>Object(n.useContext)(o);o.Provider},function(e,t,r){"use strict";(function(e){var n=r(0);r(38);const o=Object(n.createContext)({slots:{},fills:{},registerSlot:()=>{void 0!==e&&e.env},updateSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{}});t.a=o}).call(this,r(63))},function(e,t){e.exports=window.wp.apiFetch},,function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(0);r(7);const o=Object(n.createContext)({isEditor:!1,currentPostId:0,currentView:"",previewData:{},getPreviewData:()=>{}}),c=()=>Object(n.useContext)(o)},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return i}));var n=r(0),o=r(12),c=r.n(o);function i(e){const t=Object(n.useRef)(e);return c()(e,t.current)||(t.current=e),t.current}},function(e,t,r){"use strict";r.d(t,"a",(function(){return O}));var n=r(6),o=r(0),c=r(5),i=r(7),s=r(18),a=r(118),l=r(27),u=r(68);const d=e=>{const t=e.detail;t&&t.preserveCartData||Object(i.dispatch)(c.CART_STORE_KEY).invalidateResolutionForStore()},p=()=>{1===window.wcBlocksStoreCartListeners.count&&window.wcBlocksStoreCartListeners.remove(),window.wcBlocksStoreCartListeners.count--},b=()=>{Object(o.useEffect)(()=>((()=>{if(window.wcBlocksStoreCartListeners||(window.wcBlocksStoreCartListeners={count:0,remove:()=>{}}),0===window.wcBlocksStoreCartListeners.count){const e=Object(u.b)("added_to_cart","wc-blocks_added_to_cart"),t=Object(u.b)("removed_from_cart","wc-blocks_removed_from_cart");document.body.addEventListener("wc-blocks_added_to_cart",d),document.body.addEventListener("wc-blocks_removed_from_cart",d),window.wcBlocksStoreCartListeners.count=0,window.wcBlocksStoreCartListeners.remove=()=>{e(),t(),document.body.removeEventListener("wc-blocks_added_to_cart",d),document.body.removeEventListener("wc-blocks_removed_from_cart",d)}}window.wcBlocksStoreCartListeners.count++})(),p),[])},m={first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},f={...m,email:""},g={total_items:"",total_items_tax:"",total_fees:"",total_fees_tax:"",total_discount:"",total_discount_tax:"",total_shipping:"",total_shipping_tax:"",total_price:"",total_tax:"",tax_lines:c.EMPTY_TAX_LINES,currency_code:"",currency_symbol:"",currency_minor_unit:2,currency_decimal_separator:"",currency_thousand_separator:"",currency_prefix:"",currency_suffix:""},h=e=>Object.fromEntries(Object.entries(e).map(e=>{let[t,r]=e;return[t,Object(s.decodeEntities)(r)]})),E={cartCoupons:c.EMPTY_CART_COUPONS,cartItems:c.EMPTY_CART_ITEMS,cartFees:c.EMPTY_CART_FEES,cartItemsCount:0,cartItemsWeight:0,cartNeedsPayment:!0,cartNeedsShipping:!0,cartItemErrors:c.EMPTY_CART_ITEM_ERRORS,cartTotals:g,cartIsLoading:!0,cartErrors:c.EMPTY_CART_ERRORS,billingAddress:f,shippingAddress:m,shippingRates:c.EMPTY_SHIPPING_RATES,isLoadingRates:!1,cartHasCalculatedShipping:!1,paymentRequirements:c.EMPTY_PAYMENT_REQUIREMENTS,receiveCart:()=>{},extensions:c.EMPTY_EXTENSIONS},O=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{shouldSelect:!0};const{isEditor:t,previewData:r}=Object(l.a)(),s=null==r?void 0:r.previewCart,{shouldSelect:u}=e,d=Object(o.useRef)();b();const p=Object(i.useSelect)((e,r)=>{let{dispatch:n}=r;if(!u)return E;if(t)return{cartCoupons:s.coupons,cartItems:s.items,cartFees:s.fees,cartItemsCount:s.items_count,cartItemsWeight:s.items_weight,cartNeedsPayment:s.needs_payment,cartNeedsShipping:s.needs_shipping,cartItemErrors:c.EMPTY_CART_ITEM_ERRORS,cartTotals:s.totals,cartIsLoading:!1,cartErrors:c.EMPTY_CART_ERRORS,billingAddress:f,shippingAddress:m,extensions:c.EMPTY_EXTENSIONS,shippingRates:s.shipping_rates,isLoadingRates:!1,cartHasCalculatedShipping:s.has_calculated_shipping,paymentRequirements:s.paymentRequirements,receiveCart:"function"==typeof(null==s?void 0:s.receiveCart)?s.receiveCart:()=>{}};const o=e(c.CART_STORE_KEY),i=o.getCartData(),l=o.getCartErrors(),d=o.getCartTotals(),p=!o.hasFinishedResolution("getCartData"),b=o.isCustomerDataUpdating(),{receiveCart:g}=n(c.CART_STORE_KEY),O=h(i.billingAddress),w=i.needsShipping?h(i.shippingAddress):O,j=i.fees.length>0?i.fees.map(e=>h(e)):c.EMPTY_CART_FEES;return{cartCoupons:i.coupons.length>0?i.coupons.map(e=>({...e,label:e.code})):c.EMPTY_CART_COUPONS,cartItems:i.items,cartFees:j,cartItemsCount:i.itemsCount,cartItemsWeight:i.itemsWeight,cartNeedsPayment:i.needsPayment,cartNeedsShipping:i.needsShipping,cartItemErrors:i.errors,cartTotals:d,cartIsLoading:p,cartErrors:l,billingAddress:Object(a.a)(O),shippingAddress:Object(a.a)(w),extensions:i.extensions,shippingRates:i.shippingRates,isLoadingRates:b,cartHasCalculatedShipping:i.hasCalculatedShipping,paymentRequirements:i.paymentRequirements,receiveCart:g}},[u]);return d.current&&Object(n.isEqual)(d.current,p)||(d.current=p),d.current}},function(e,t){e.exports=window.wp.deprecated},function(e,t){},,function(e,t,r){"use strict";r.d(t,"a",(function(){return d})),r.d(t,"b",(function(){return p})),r.d(t,"c",(function(){return b}));var n=r(5),o=r(7),c=r(0),i=r(12),s=r.n(i),a=r(30),l=r(58),u=r(23);const d=e=>{const t=Object(u.a)();e=e||t;const r=Object(o.useSelect)(t=>t(n.QUERY_STATE_STORE_KEY).getValueForQueryContext(e,void 0),[e]),{setValueForQueryContext:i}=Object(o.useDispatch)(n.QUERY_STATE_STORE_KEY);return[r,Object(c.useCallback)(t=>{i(e,t)},[e,i])]},p=(e,t,r)=>{const i=Object(u.a)();r=r||i;const s=Object(o.useSelect)(o=>o(n.QUERY_STATE_STORE_KEY).getValueForQueryKey(r,e,t),[r,e]),{setQueryValue:a}=Object(o.useDispatch)(n.QUERY_STATE_STORE_KEY);return[s,Object(c.useCallback)(t=>{a(r,e,t)},[r,e,a])]},b=(e,t)=>{const r=Object(u.a)();t=t||r;const[n,o]=d(t),i=Object(a.a)(n),p=Object(a.a)(e),b=Object(l.a)(p),m=Object(c.useRef)(!1);return Object(c.useEffect)(()=>{s()(b,p)||(o(Object.assign({},i,p)),m.current=!0)},[i,p,b,o]),m.current?[n,o]:[e,o]}},,function(e,t){e.exports=window.wc.priceFormat},function(e,t){e.exports=window.wp.warning},function(e,t){e.exports=window.wp.hooks},function(e,t,r){"use strict";r.d(t,"a",(function(){return i}));var n=r(39),o=r(0),c=r(31);const i=()=>{const e=Object(c.a)(),t=Object(o.useRef)(e);return Object(o.useEffect)(()=>{t.current=e},[e]),{dispatchStoreEvent:Object(o.useCallback)((function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-"+e,t)}catch(e){console.error(e)}}),[]),dispatchCheckoutEvent:Object(o.useCallback)((function(e){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-checkout-"+e,{...r,storeCart:t.current})}catch(e){console.error(e)}}),[])}}},function(e,t,r){"use strict";var n=r(8),o=r(0),c=r(15),i=function({icon:e,className:t,...r}){const c=["dashicon","dashicons","dashicons-"+e,t].filter(Boolean).join(" ");return Object(o.createElement)("span",Object(n.a)({className:c},r))};t.a=function({icon:e=null,size:t=24,...r}){if("string"==typeof e)return Object(o.createElement)(i,Object(n.a)({icon:e},r));if(Object(o.isValidElement)(e)&&i===e.type)return Object(o.cloneElement)(e,{...r});if("function"==typeof e)return e.prototype instanceof o.Component?Object(o.createElement)(e,{size:t,...r}):e({size:t,...r});if(e&&("svg"===e.type||e.type===c.SVG)){const n={width:t,height:t,...e.props,...r};return Object(o.createElement)(c.SVG,n)}return Object(o.isValidElement)(e)?Object(o.cloneElement)(e,{size:t,...r}):e}},function(e,t,r){"use strict";var n=r(4),o=r.n(n),c=r(0);t.a=Object(c.forwardRef)((function({as:e="div",className:t,...r},n){return function({as:e="div",...t}){return"function"==typeof t.children?t.children(t):Object(c.createElement)(e,t)}({as:e,className:o()("components-visually-hidden",t),...r,ref:n})}))},function(e,t){e.exports=window.wc.wcBlocksSharedContext},function(e,t,r){"use strict";r.d(t,"n",(function(){return c})),r.d(t,"l",(function(){return i})),r.d(t,"k",(function(){return s})),r.d(t,"m",(function(){return a})),r.d(t,"i",(function(){return l})),r.d(t,"d",(function(){return u})),r.d(t,"f",(function(){return d})),r.d(t,"j",(function(){return p})),r.d(t,"c",(function(){return b})),r.d(t,"e",(function(){return m})),r.d(t,"g",(function(){return f})),r.d(t,"a",(function(){return g})),r.d(t,"h",(function(){return h})),r.d(t,"b",(function(){return E}));var n,o=r(2);const c=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),i=c.pluginUrl+"images/",s=c.pluginUrl+"build/",a=c.buildPhase,l=null===(n=o.STORE_PAGES.shop)||void 0===n?void 0:n.permalink,u=(o.STORE_PAGES.checkout.id,o.STORE_PAGES.checkout.permalink),d=o.STORE_PAGES.privacy.permalink,p=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),b=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id,o.STORE_PAGES.cart.permalink),m=o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),f=Object(o.getSetting)("shippingCountries",{}),g=Object(o.getSetting)("allowedCountries",{}),h=Object(o.getSetting)("shippingStates",{}),E=Object(o.getSetting)("allowedStates",{})},function(e,t,r){"use strict";var n=r(2),o=r(1),c=r(69),i=r(52);const s=Object(n.getSetting)("countryLocale",{}),a=e=>{const t={};return void 0!==e.label&&(t.label=e.label),void 0!==e.required&&(t.required=e.required),void 0!==e.hidden&&(t.hidden=e.hidden),void 0===e.label||e.optionalLabel||(t.optionalLabel=Object(o.sprintf)(
2
  /* translators: %s Field label. */
3
  Object(o.__)("%s (optional)","woocommerce"),e.label)),e.priority&&(Object(c.a)(e.priority)&&(t.index=e.priority),Object(i.a)(e.priority)&&(t.index=parseInt(e.priority,10))),e.hidden&&(t.required=!1),t},l=Object.entries(s).map(e=>{let[t,r]=e;return[t,Object.entries(r).map(e=>{let[t,r]=e;return[t,a(r)]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{})]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{});t.a=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";const o=r&&void 0!==l[r]?l[r]:{};return e.map(e=>({key:e,...n.defaultAddressFields[e]||{},...o[e]||{},...t[e]||{}})).sort((e,t)=>e.index-t.index)}},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return l}));var n=r(11),o=r.n(n),c=r(0),i=r(16);const s=[".wp-block-woocommerce-cart"],a=e=>{let{Block:t,containers:r,getProps:n=(()=>({})),getErrorBoundaryProps:s=(()=>({}))}=e;0!==r.length&&Array.prototype.forEach.call(r,(e,r)=>{const a=n(e,r),l=s(e,r),u={...e.dataset,...a.attributes||{}};(e=>{let{Block:t,container:r,attributes:n={},props:s={},errorBoundaryProps:a={}}=e;Object(c.render)(Object(c.createElement)(i.a,a,Object(c.createElement)(c.Suspense,{fallback:Object(c.createElement)("div",{className:"wc-block-placeholder"})},t&&Object(c.createElement)(t,o()({},s,{attributes:n})))),r,()=>{r.classList&&r.classList.remove("is-loading")})})({Block:t,container:e,props:a,attributes:u,errorBoundaryProps:l})})},l=e=>{const t=document.body.querySelectorAll(s.join(",")),{Block:r,getProps:n,getErrorBoundaryProps:o,selector:c}=e;(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrappers:c}=e;const i=document.body.querySelectorAll(o);c&&c.length>0&&Array.prototype.filter.call(i,e=>!((e,t)=>Array.prototype.some.call(t,t=>t.contains(e)&&!t.isSameNode(e)))(e,c)),a({Block:t,containers:i,getProps:r,getErrorBoundaryProps:n})})({Block:r,getProps:n,getErrorBoundaryProps:o,selector:c,wrappers:t}),Array.prototype.forEach.call(t,t=>{t.addEventListener("wc-blocks_render_blocks_frontend",()=>{(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrapper:c}=e;const i=c.querySelectorAll(o);a({Block:t,containers:i,getProps:r,getErrorBoundaryProps:n})})({...e,wrapper:t})})})}},,function(e,t,r){"use strict";var n=r(8),o=r(0),c=r(4),i=r.n(c),s=r(6),a=r(32),l=r.n(a),u=r(13),d=r(51),p=r(93),b=r(1);function m(e,t,r){const{defaultView:n}=t,{frameElement:o}=n;if(!o||t===r.ownerDocument)return e;const c=o.getBoundingClientRect();return new n.DOMRect(e.left+c.left,e.top+c.top,e.width,e.height)}let f=0;function g(e){const t=document.scrollingElement||document.body;e&&(f=t.scrollTop);const r=e?"add":"remove";t.classList[r]("lockscroll"),document.documentElement.classList[r]("lockscroll"),e||(t.scrollTop=f)}let h=0;function E(){return Object(o.useEffect)(()=>(0===h&&g(!0),++h,()=>{1===h&&g(!1),--h}),[]),null}var O=r(24);function w(e){const t=Object(o.useContext)(O.a),r=t.slots[e]||{},n=t.fills[e],c=Object(o.useMemo)(()=>n||[],[n]);return{...r,updateSlot:Object(o.useCallback)(r=>{t.updateSlot(e,r)},[e,t.updateSlot]),unregisterSlot:Object(o.useCallback)(r=>{t.unregisterSlot(e,r)},[e,t.unregisterSlot]),fills:c,registerFill:Object(o.useCallback)(r=>{t.registerFill(e,r)},[e,t.registerFill]),unregisterFill:Object(o.useCallback)(r=>{t.unregisterFill(e,r)},[e,t.unregisterFill])}}var j=Object(o.createContext)({registerSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},getSlot:()=>{},getFills:()=>{},subscribe:()=>{}});function v({name:e,children:t,registerFill:r,unregisterFill:n}){const c=(e=>{const{getSlot:t,subscribe:r}=Object(o.useContext)(j),[n,c]=Object(o.useState)(t(e));return Object(o.useEffect)(()=>(c(t(e)),r(()=>{c(t(e))})),[e]),n})(e),i=Object(o.useRef)({name:e,children:t});return Object(o.useLayoutEffect)(()=>(r(e,i.current),()=>n(e,i.current)),[]),Object(o.useLayoutEffect)(()=>{i.current.children=t,c&&c.forceUpdate()},[t]),Object(o.useLayoutEffect)(()=>{e!==i.current.name&&(n(i.current.name,i.current),i.current.name=e,r(e,i.current))},[e]),c&&c.node?(Object(s.isFunction)(t)&&(t=t(c.props.fillProps)),Object(o.createPortal)(t,c.node)):null}var y=e=>Object(o.createElement)(j.Consumer,null,({registerFill:t,unregisterFill:r})=>Object(o.createElement)(v,Object(n.a)({},e,{registerFill:t,unregisterFill:r})));class _ extends o.Component{constructor(){super(...arguments),this.isUnmounted=!1,this.bindNode=this.bindNode.bind(this)}componentDidMount(){const{registerSlot:e}=this.props;e(this.props.name,this)}componentWillUnmount(){const{unregisterSlot:e}=this.props;this.isUnmounted=!0,e(this.props.name,this)}componentDidUpdate(e){const{name:t,unregisterSlot:r,registerSlot:n}=this.props;e.name!==t&&(r(e.name),n(t,this))}bindNode(e){this.node=e}forceUpdate(){this.isUnmounted||super.forceUpdate()}render(){const{children:e,name:t,fillProps:r={},getFills:n}=this.props,c=Object(s.map)(n(t,this),e=>{const t=Object(s.isFunction)(e.children)?e.children(r):e.children;return o.Children.map(t,(e,t)=>{if(!e||Object(s.isString)(e))return e;const r=e.key||t;return Object(o.cloneElement)(e,{key:r})})}).filter(Object(s.negate)(o.isEmptyElement));return Object(o.createElement)(o.Fragment,null,Object(s.isFunction)(e)?e(c):c)}}var x=e=>Object(o.createElement)(j.Consumer,null,({registerSlot:t,unregisterSlot:r,getFills:c})=>Object(o.createElement)(_,Object(n.a)({},e,{registerSlot:t,unregisterSlot:r,getFills:c})));function k(){const[,e]=Object(o.useState)({}),t=Object(o.useRef)(!0);return Object(o.useEffect)(()=>()=>{t.current=!1},[]),()=>{t.current&&e({})}}function S({name:e,children:t}){const r=w(e),n=Object(o.useRef)({rerender:k()});return Object(o.useEffect)(()=>(r.registerFill(n),()=>{r.unregisterFill(n)}),[r.registerFill,r.unregisterFill]),r.ref&&r.ref.current?("function"==typeof t&&(t=t(r.fillProps)),Object(o.createPortal)(t,r.ref.current)):null}var C=Object(o.forwardRef)((function({name:e,fillProps:t={},as:r="div",...c},i){const s=Object(o.useContext)(O.a),a=Object(o.useRef)();return Object(o.useLayoutEffect)(()=>(s.registerSlot(e,a,t),()=>{s.unregisterSlot(e,a)}),[s.registerSlot,s.unregisterSlot,e]),Object(o.useLayoutEffect)(()=>{s.updateSlot(e,t)}),Object(o.createElement)(r,Object(n.a)({ref:Object(u.useMergeRefs)([i,a])},c))}));function P(e){return Object(o.createElement)(o.Fragment,null,Object(o.createElement)(y,e),Object(o.createElement)(S,e))}r(12),o.Component;const R=Object(o.forwardRef)(({bubblesVirtually:e,...t},r)=>e?Object(o.createElement)(C,Object(n.a)({},t,{ref:r})):Object(o.createElement)(x,t));function N(e){return"appear"===e?"top":"left"}function T(e,t){const{paddingTop:r,paddingBottom:n,paddingLeft:o,paddingRight:c}=(i=t).ownerDocument.defaultView.getComputedStyle(i);var i;const s=r?parseInt(r,10):0,a=n?parseInt(n,10):0,l=o?parseInt(o,10):0,u=c?parseInt(c,10):0;return{x:e.left+l,y:e.top+s,width:e.width-l-u,height:e.height-s-a,left:e.left+l,right:e.right-u,top:e.top+s,bottom:e.bottom-a}}function L(e,t,r){r?e.getAttribute(t)!==r&&e.setAttribute(t,r):e.hasAttribute(t)&&e.removeAttribute(t)}function B(e,t,r=""){e.style[t]!==r&&(e.style[t]=r)}function A(e,t,r){r?e.classList.contains(t)||e.classList.add(t):e.classList.contains(t)&&e.classList.remove(t)}const M=Object(o.forwardRef)(({headerTitle:e,onClose:t,children:r,className:c,noArrow:s=!0,isAlternate:a,position:f="bottom right",range:g,focusOnMount:h="firstElement",anchorRef:O,shouldAnchorIncludePadding:j,anchorRect:v,getAnchorRect:y,expandOnMobile:_,animate:x=!0,onClickOutside:k,onFocusOutside:S,__unstableStickyBoundaryElement:C,__unstableSlotName:R="Popover",__unstableObserveElement:M,__unstableBoundaryParent:F,__unstableForcePosition:I,__unstableForceXAlignment:D,...z},H)=>{const W=Object(o.useRef)(null),V=Object(o.useRef)(null),Y=Object(o.useRef)(),U=Object(u.useViewportMatch)("medium","<"),[q,G]=Object(o.useState)(),K=w(R),X=_&&U,[J,Z]=Object(u.useResizeObserver)();s=X||s,Object(o.useLayoutEffect)(()=>{if(X)return A(Y.current,"is-without-arrow",s),A(Y.current,"is-alternate",a),L(Y.current,"data-x-axis"),L(Y.current,"data-y-axis"),B(Y.current,"top"),B(Y.current,"left"),B(V.current,"maxHeight"),void B(V.current,"maxWidth");const e=()=>{if(!Y.current||!V.current)return;let e=function(e,t,r,n=!1,o,c){if(t)return t;if(r){if(!e.current)return;const t=r(e.current);return m(t,t.ownerDocument||e.current.ownerDocument,c)}if(!1!==n){if(!(n&&window.Range&&window.Element&&window.DOMRect))return;if("function"==typeof(null==n?void 0:n.cloneRange))return m(Object(d.getRectangleFromRange)(n),n.endContainer.ownerDocument,c);if("function"==typeof(null==n?void 0:n.getBoundingClientRect)){const e=m(n.getBoundingClientRect(),n.ownerDocument,c);return o?e:T(e,n)}const{top:e,bottom:t}=n,r=e.getBoundingClientRect(),i=t.getBoundingClientRect(),s=m(new window.DOMRect(r.left,r.top,r.width,i.bottom-r.top),e.ownerDocument,c);return o?s:T(s,n)}if(!e.current)return;const{parentNode:i}=e.current,s=i.getBoundingClientRect();return o?s:T(s,i)}(W,v,y,O,j,Y.current);if(!e)return;const{offsetParent:t,ownerDocument:r}=Y.current;let n,o=0;if(t&&t!==r.body){const r=t.getBoundingClientRect();o=r.top,e=new window.DOMRect(e.left-r.left,e.top-r.top,e.width,e.height)}var c;F&&(n=null===(c=Y.current.closest(".popover-slot"))||void 0===c?void 0:c.parentNode);const i=Z.height?Z:V.current.getBoundingClientRect(),{popoverTop:l,popoverLeft:u,xAxis:p,yAxis:g,contentHeight:h,contentWidth:E}=function(e,t,r="top",n,o,c,i,s,a){const[l,u="center",d]=r.split(" "),p=function(e,t,r,n,o,c,i,s){const{height:a}=t;if(o){const t=o.getBoundingClientRect().top+a-i;if(e.top<=t)return{yAxis:r,popoverTop:Math.min(e.bottom,t)}}let l=e.top+e.height/2;"bottom"===n?l=e.bottom:"top"===n&&(l=e.top);const u={popoverTop:l,contentHeight:(l-a/2>0?a/2:l)+(l+a/2>window.innerHeight?window.innerHeight-l:a/2)},d={popoverTop:e.top,contentHeight:e.top-10-a>0?a:e.top-10},p={popoverTop:e.bottom,contentHeight:e.bottom+10+a>window.innerHeight?window.innerHeight-10-e.bottom:a};let b,m=r,f=null;if(!o&&!s)if("middle"===r&&u.contentHeight===a)m="middle";else if("top"===r&&d.contentHeight===a)m="top";else if("bottom"===r&&p.contentHeight===a)m="bottom";else{m=d.contentHeight>p.contentHeight?"top":"bottom";const e="top"===m?d.contentHeight:p.contentHeight;f=e!==a?e:null}return b="middle"===m?u.popoverTop:"top"===m?d.popoverTop:p.popoverTop,{yAxis:m,popoverTop:b,contentHeight:f}}(e,t,l,d,n,0,c,s);return{...function(e,t,r,n,o,c,i,s,a){const{width:l}=t;"left"===r&&Object(b.isRTL)()?r="right":"right"===r&&Object(b.isRTL)()&&(r="left"),"left"===n&&Object(b.isRTL)()?n="right":"right"===n&&Object(b.isRTL)()&&(n="left");const u=Math.round(e.left+e.width/2),d={popoverLeft:u,contentWidth:(u-l/2>0?l/2:u)+(u+l/2>window.innerWidth?window.innerWidth-u:l/2)};let p=e.left;"right"===n?p=e.right:"middle"===c||a||(p=u);let m=e.right;"left"===n?m=e.left:"middle"===c||a||(m=u);const f={popoverLeft:p,contentWidth:p-l>0?l:p},g={popoverLeft:m,contentWidth:m+l>window.innerWidth?window.innerWidth-m:l};let h,E=r,O=null;if(!o&&!s)if("center"===r&&d.contentWidth===l)E="center";else if("left"===r&&f.contentWidth===l)E="left";else if("right"===r&&g.contentWidth===l)E="right";else{E=f.contentWidth>g.contentWidth?"left":"right";const e="left"===E?f.contentWidth:g.contentWidth;l>window.innerWidth&&(O=window.innerWidth),e!==l&&(E="center",d.popoverLeft=window.innerWidth/2)}if(h="center"===E?d.popoverLeft:"left"===E?f.popoverLeft:g.popoverLeft,i){const e=i.getBoundingClientRect();h=Math.min(h,e.right-l),Object(b.isRTL)()||(h=Math.max(h,0))}return{xAxis:E,popoverLeft:h,contentWidth:O}}(e,t,u,d,n,p.yAxis,i,s,a),...p}}(e,i,f,C,Y.current,o,n,I,D);"number"==typeof l&&"number"==typeof u&&(B(Y.current,"top",l+"px"),B(Y.current,"left",u+"px")),A(Y.current,"is-without-arrow",s||"center"===p&&"middle"===g),A(Y.current,"is-alternate",a),L(Y.current,"data-x-axis",p),L(Y.current,"data-y-axis",g),B(V.current,"maxHeight","number"==typeof h?h+"px":""),B(V.current,"maxWidth","number"==typeof E?E+"px":""),G(({left:"right",right:"left"}[p]||"center")+" "+({top:"bottom",bottom:"top"}[g]||"middle"))};e();const{ownerDocument:t}=Y.current,{defaultView:r}=t,n=r.setInterval(e,500);let o;const c=()=>{r.cancelAnimationFrame(o),o=r.requestAnimationFrame(e)};r.addEventListener("click",c),r.addEventListener("resize",e),r.addEventListener("scroll",e,!0);const i=function(e){if(e)return e.endContainer?e.endContainer.ownerDocument:e.top?e.top.ownerDocument:e.ownerDocument}(O);let l;return i&&i!==t&&(i.defaultView.addEventListener("resize",e),i.defaultView.addEventListener("scroll",e,!0)),M&&(l=new r.MutationObserver(e),l.observe(M,{attributes:!0})),()=>{r.clearInterval(n),r.removeEventListener("resize",e),r.removeEventListener("scroll",e,!0),r.removeEventListener("click",c),r.cancelAnimationFrame(o),i&&i!==t&&(i.defaultView.removeEventListener("resize",e),i.defaultView.removeEventListener("scroll",e,!0)),l&&l.disconnect()}},[X,v,y,O,j,f,Z,C,M,F]);const $=(e,r)=>{if("focus-outside"===e&&S)S(r);else if("focus-outside"===e&&k){const e=new window.MouseEvent("click");Object.defineProperty(e,"target",{get:()=>r.relatedTarget}),l()("Popover onClickOutside prop",{since:"5.3",alternative:"onFocusOutside"}),k(e)}else t&&t()},[ee,te]=Object(u.__experimentalUseDialog)({focusOnMount:h,__unstableOnClose:$,onClose:$}),re=Object(u.useMergeRefs)([Y,ee,H]),ne=Boolean(x&&q)&&function(e){if("loading"===e.type)return i()("components-animate__loading");const{type:t,origin:r=N(t)}=e;if("appear"===t){const[e,t="center"]=r.split(" ");return i()("components-animate__appear",{["is-from-"+t]:"center"!==t,["is-from-"+e]:"middle"!==e})}return"slide-in"===t?i()("components-animate__slide-in","is-from-"+r):void 0}({type:"appear",origin:q});let oe=Object(o.createElement)("div",Object(n.a)({className:i()("components-popover",c,ne,{"is-expanded":X,"is-without-arrow":s,"is-alternate":a})},z,{ref:re},te,{tabIndex:"-1"}),X&&Object(o.createElement)(E,null),X&&Object(o.createElement)("div",{className:"components-popover__header"},Object(o.createElement)("span",{className:"components-popover__header-title"},e),Object(o.createElement)(Q,{className:"components-popover__close",icon:p.a,onClick:t})),Object(o.createElement)("div",{ref:V,className:"components-popover__content"},Object(o.createElement)("div",{style:{position:"relative"}},J,r)));return K.ref&&(oe=Object(o.createElement)(P,{name:R},oe)),O||v?oe:Object(o.createElement)("span",{ref:W},oe)});M.Slot=Object(o.forwardRef)((function({name:e="Popover"},t){return Object(o.createElement)(R,{bubblesVirtually:!0,name:e,className:"popover-slot",ref:t})}));var F=M,I=function({shortcut:e,className:t}){if(!e)return null;let r,n;return Object(s.isString)(e)&&(r=e),Object(s.isObject)(e)&&(r=e.display,n=e.ariaLabel),Object(o.createElement)("span",{className:t,"aria-label":n},r)};const D=Object(o.createElement)("div",{className:"event-catcher"}),z=({eventHandlers:e,child:t,childrenWithPopover:r})=>Object(o.cloneElement)(Object(o.createElement)("span",{className:"disabled-element-wrapper"},Object(o.cloneElement)(D,e),Object(o.cloneElement)(t,{children:r}),","),e),H=({child:e,eventHandlers:t,childrenWithPopover:r})=>Object(o.cloneElement)(e,{...t,children:r}),W=(e,t,r)=>{if(1!==o.Children.count(e))return;const n=o.Children.only(e);"function"==typeof n.props[t]&&n.props[t](r)};var V=function({children:e,position:t,text:r,shortcut:n}){const[c,i]=Object(o.useState)(!1),[a,l]=Object(o.useState)(!1),d=Object(u.useDebounce)(l,700),p=t=>{W(e,"onMouseDown",t),document.addEventListener("mouseup",f),i(!0)},b=t=>{W(e,"onMouseUp",t),document.removeEventListener("mouseup",f),i(!1)},m=e=>"mouseUp"===e?b:"mouseDown"===e?p:void 0,f=m("mouseUp"),g=(t,r)=>n=>{if(W(e,t,n),n.currentTarget.disabled)return;if("focus"===n.type&&c)return;d.cancel();const o=Object(s.includes)(["focus","mouseenter"],n.type);o!==a&&(r?d(o):l(o))},h=()=>{d.cancel(),document.removeEventListener("mouseup",f)};if(Object(o.useEffect)(()=>h,[]),1!==o.Children.count(e))return e;const E={onMouseEnter:g("onMouseEnter",!0),onMouseLeave:g("onMouseLeave"),onClick:g("onClick"),onFocus:g("onFocus"),onBlur:g("onBlur"),onMouseDown:m("mouseDown")},O=o.Children.only(e),{children:w,disabled:j}=O.props;return(j?z:H)({child:O,eventHandlers:E,childrenWithPopover:(({grandchildren:e,isOver:t,position:r,text:n,shortcut:c})=>Object(o.concatChildren)(e,t&&Object(o.createElement)(F,{focusOnMount:!1,position:r,className:"components-tooltip","aria-hidden":"true",animate:!1,noArrow:!0},n,Object(o.createElement)(I,{className:"components-tooltip__shortcut",shortcut:c}))))({grandchildren:w,isOver:a,position:t,text:r,shortcut:n})})},Y=r(41),U=r(42);const q=["onMouseDown","onClick"];var Q=t.a=Object(o.forwardRef)((function(e,t){const{href:r,target:c,isSmall:a,isPressed:u,isBusy:d,isDestructive:p,className:b,disabled:m,icon:f,iconPosition:g="left",iconSize:h,showTooltip:E,tooltipPosition:O,shortcut:w,label:j,children:v,text:y,variant:_,__experimentalIsFocusable:x,describedBy:k,...S}=function({isDefault:e,isPrimary:t,isSecondary:r,isTertiary:n,isLink:o,variant:c,...i}){let s=c;var a,u,d,p,b;return t&&(null!==(a=s)&&void 0!==a||(s="primary")),n&&(null!==(u=s)&&void 0!==u||(s="tertiary")),r&&(null!==(d=s)&&void 0!==d||(s="secondary")),e&&(l()("Button isDefault prop",{since:"5.4",alternative:'variant="secondary"'}),null!==(p=s)&&void 0!==p||(s="secondary")),o&&(null!==(b=s)&&void 0!==b||(s="link")),{...i,variant:s}}(e),C=i()("components-button",b,{"is-secondary":"secondary"===_,"is-primary":"primary"===_,"is-small":a,"is-tertiary":"tertiary"===_,"is-pressed":u,"is-busy":d,"is-link":"link"===_,"is-destructive":p,"has-text":!!f&&!!v,"has-icon":!!f}),P=m&&!x,R=void 0===r||P?"button":"a",N="a"===R?{href:r,target:c}:{type:"button",disabled:P,"aria-pressed":u};if(m&&x){N["aria-disabled"]=!0;for(const e of q)S[e]=e=>{e.stopPropagation(),e.preventDefault()}}const T=!P&&(E&&j||w||!!j&&(!v||Object(s.isArray)(v)&&!v.length)&&!1!==E),L=k?Object(s.uniqueId)():null,B=S["aria-describedby"]||L,A=Object(o.createElement)(R,Object(n.a)({},N,S,{className:C,"aria-label":S["aria-label"]||j,"aria-describedby":B,ref:t}),f&&"left"===g&&Object(o.createElement)(Y.a,{icon:f,size:h}),y&&Object(o.createElement)(o.Fragment,null,y),f&&"right"===g&&Object(o.createElement)(Y.a,{icon:f,size:h}),v);return T?Object(o.createElement)(o.Fragment,null,Object(o.createElement)(V,{text:k||j,shortcut:w,position:O},A),k&&Object(o.createElement)(U.a,null,Object(o.createElement)("span",{id:L},k))):Object(o.createElement)(o.Fragment,null,A,k&&Object(o.createElement)(U.a,null,Object(o.createElement)("span",{id:L},k)))}))},function(e,t){e.exports=window.wp.dom},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"string"==typeof e},,,,,function(e,t,r){"use strict";r.d(t,"b",(function(){return c})),r.d(t,"a",(function(){return i}));var n=r(0);const o=Object(n.createContext)({setIsSuppressed:e=>{},isSuppressed:!1}),c=()=>Object(n.useContext)(o),i=e=>{let{children:t}=e;const[r,c]=Object(n.useState)(!1),i={setIsSuppressed:c,isSuppressed:r};return Object(n.createElement)(o.Provider,{value:i},t)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t){const r=Object(n.useRef)();return Object(n.useEffect)(()=>{r.current===e||t&&!t(e,r.current)||(r.current=e)},[e,t]),r.current}},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return a}));var n=r(5),o=r(7),c=r(0),i=r(30),s=r(72);const a=e=>{const{namespace:t,resourceName:r,resourceValues:a=[],query:l={},shouldSelect:u=!0}=e;if(!t||!r)throw new Error("The options object must have valid values for the namespace and the resource properties.");const d=Object(c.useRef)({results:[],isLoading:!0}),p=Object(i.a)(l),b=Object(i.a)(a),m=Object(s.a)(),f=Object(o.useSelect)(e=>{if(!u)return null;const o=e(n.COLLECTIONS_STORE_KEY),c=[t,r,p,b],i=o.getCollectionError(...c);if(i){if(!(i instanceof Error))throw new Error("TypeError: `error` object is not an instance of Error constructor");m(i)}return{results:o.getCollection(...c),isLoading:!o.hasFinishedResolution("getCollection",c)}},[t,r,b,p,u]);return null!==f&&(d.current=f),d.current}},function(e,t){var r,n,o=e.exports={};function c(){throw new Error("setTimeout has not been defined")}function i(){throw new Error("clearTimeout has not been defined")}function s(e){if(r===setTimeout)return setTimeout(e,0);if((r===c||!r)&&setTimeout)return r=setTimeout,setTimeout(e,0);try{return r(e,0)}catch(t){try{return r.call(null,e,0)}catch(t){return r.call(this,e,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:c}catch(e){r=c}try{n="function"==typeof clearTimeout?clearTimeout:i}catch(e){n=i}}();var a,l=[],u=!1,d=-1;function p(){u&&a&&(u=!1,a.length?l=a.concat(l):d=-1,l.length&&b())}function b(){if(!u){var e=s(p);u=!0;for(var t=l.length;t;){for(a=l,l=[];++d<t;)a&&a[d].run();d=-1,t=l.length}a=null,u=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===i||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function m(e,t){this.fun=e,this.array=t}function f(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];l.push(new m(e,t)),1!==l.length||u||s(b)},m.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=f,o.addListener=f,o.once=f,o.off=f,o.removeListener=f,o.removeAllListeners=f,o.emit=f,o.prependListener=f,o.prependOnceListener=f,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"d",(function(){return i})),r.d(t,"c",(function(){return s})),r.d(t,"b",(function(){return a}));const n=window.CustomEvent||null,o=(e,t)=>{let{bubbles:r=!1,cancelable:o=!1,element:c,detail:i={}}=t;if(!n)return;c||(c=document.body);const s=new n(e,{bubbles:r,cancelable:o,detail:i});c.dispatchEvent(s)};let c;const i=()=>{c&&clearTimeout(c),c=setTimeout(()=>{o("wc_fragment_refresh",{bubbles:!0,cancelable:!0})},50)},s=e=>{let{preserveCartData:t=!1}=e;o("wc-blocks_added_to_cart",{bubbles:!0,cancelable:!0,detail:{preserveCartData:t}})},a=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof jQuery)return()=>{};const c=()=>{o(t,{bubbles:r,cancelable:n})};return jQuery(document).on(e,c),()=>jQuery(document).off(e,c)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"number"==typeof e},function(e,t){e.exports=window.wp.blockEditor},,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(0);const o=()=>{const[,e]=Object(n.useState)();return Object(n.useCallback)(t=>{e(()=>{throw t})},[])}},function(e,t,r){"use strict";var n=r(11),o=r.n(n),c=r(0);r(107);const i=e=>{if(!e)return;const t=e.getBoundingClientRect().bottom;t>=0&&t<=window.innerHeight||e.scrollIntoView()};t.a=e=>t=>{const r=Object(c.useRef)(null);return Object(c.createElement)(c.Fragment,null,Object(c.createElement)("div",{className:"with-scroll-to-top__scroll-point",ref:r,"aria-hidden":!0}),Object(c.createElement)(e,o()({},t,{scrollToTop:e=>{null!==r.current&&((e,t)=>{const{focusableSelector:r}=t||{};window&&Number.isFinite(window.innerHeight)&&(r?((e,t)=>{var r;const n=(null===(r=e.parentElement)||void 0===r?void 0:r.querySelectorAll(t))||[];if(n.length){const e=n[0];i(e),null==e||e.focus()}else i(e)})(e,r):i(e))})(r.current,e)}})))}},,,,,function(e,t){},,,,,,,,,,,,,,,function(e,t,r){"use strict";var n=r(0),o=r(15);const c=Object(n.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(n.createElement)(o.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));t.a=c},function(e,t,r){"use strict";var n=r(0),o=r(6),c=r(4),i=r.n(c),s=r(1),a=r(20),l=r(93),u=r(50);function d(e){switch(e){case"success":case"warning":case"info":return"polite";case"error":default:return"assertive"}}t.a=function({className:e,status:t="info",children:r,spokenMessage:c=r,onRemove:p=o.noop,isDismissible:b=!0,actions:m=[],politeness:f=d(t),__unstableHTML:g,onDismiss:h=o.noop}){!function(e,t){const r="string"==typeof e?e:Object(n.renderToString)(e);Object(n.useEffect)(()=>{r&&Object(a.speak)(r,t)},[r,t])}(c,f);const E=i()(e,"components-notice","is-"+t,{"is-dismissible":b});return g&&(r=Object(n.createElement)(n.RawHTML,null,r)),Object(n.createElement)("div",{className:E},Object(n.createElement)("div",{className:"components-notice__content"},r,Object(n.createElement)("div",{className:"components-notice__actions"},m.map(({className:e,label:t,isPrimary:r,variant:o,noDefaultClasses:c=!1,onClick:s,url:a},l)=>{let d=o;return"primary"===o||c||(d=a?"link":"secondary"),void 0===d&&r&&(d="primary"),Object(n.createElement)(u.a,{key:l,href:a,variant:d,onClick:a?void 0:s,className:i()("components-notice__action",e)},t)}))),b&&Object(n.createElement)(u.a,{className:"components-notice__dismiss",icon:l.a,label:Object(s.__)("Dismiss this notice"),onClick:e=>{var t;null==e||null===(t=e.preventDefault)||void 0===t||t.call(e),h(),p()},showTooltip:!1}))}},,,,,,,,,function(e,t){e.exports=window.wp.blocks},,function(e,t,r){"use strict";var n=r(0);t.a=function(e){let{icon:t,size:r=24,...o}=e;return Object(n.cloneElement)(t,{width:r,height:r,...o})}},,function(e,t){},,function(e,t,r){"use strict";var n=r(0),o=r(4),c=r.n(o),i=r(22),s=r(13);r(123),t.a=Object(s.withInstanceId)(e=>{let{className:t,instanceId:r,label:o="",onChange:s,options:a,screenReaderLabel:l,value:u}=e;const d="wc-block-components-sort-select__select-"+r;return Object(n.createElement)("div",{className:c()("wc-block-sort-select","wc-block-components-sort-select",t)},Object(n.createElement)(i.a,{label:o,screenReaderLabel:l,wrapperElement:"label",wrapperProps:{className:"wc-block-sort-select__label wc-block-components-sort-select__label",htmlFor:d}}),Object(n.createElement)("select",{id:d,className:"wc-block-sort-select__select wc-block-components-sort-select__select",onChange:s,value:u},a&&a.map(e=>Object(n.createElement)("option",{key:e.key,value:e.key},e.label))))})},,,,,,function(e,t){e.exports=window.wp.wordcount},function(e,t){e.exports=window.wp.autop},,function(e,t,r){"use strict";r.d(t,"b",(function(){return c})),r.d(t,"a",(function(){return i}));var n=r(45),o=(r(14),r(2));const c=(e,t)=>Object.keys(o.defaultAddressFields).every(r=>e[r]===t[r]),i=e=>{const t=Object.keys(o.defaultAddressFields),r=Object(n.a)(t,{},e.country),c=Object.assign({},e);return r.forEach(t=>{let{key:r="",hidden:n=!1}=t;n&&((e,t)=>e in t)(r,e)&&(c[r]="")}),c}},,function(e,t){e.exports=window.wc.wcBlocksSharedHocs},,,function(e,t){},function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(11),o=r.n(n),c=r(0),i=r(4),s=r.n(i),a=r(94),l=r(7),u=(r(78),r(57));const d=e=>{let{status:t="default"}=e;switch(t){case"error":return"woocommerce-error";case"success":return"woocommerce-message";case"info":case"warning":return"woocommerce-info"}return""},p=e=>{let{className:t,context:r="default",additionalNotices:n=[]}=e;const{isSuppressed:i}=Object(u.b)(),{notices:p}=Object(l.useSelect)(e=>({notices:e("core/notices").getNotices(r)})),{removeNotice:b}=Object(l.useDispatch)("core/notices"),m=p.filter(e=>"snackbar"!==e.type).concat(n);if(!m.length)return null;const f=s()(t,"wc-block-components-notices");return i?null:Object(c.createElement)("div",{className:f},m.map(e=>Object(c.createElement)(a.a,o()({key:"store-notice-"+e.id},e,{className:s()("wc-block-components-notices__notice",d(e)),onRemove:()=>{e.isDismissible&&b(e.id,r)}}),e.content)))}},,,,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return i}));var n=r(17),o=r(0),c=r(44);r.p=c.k,Object(n.registerBlockComponent)({blockName:"woocommerce/product-price",component:Object(o.lazy)(()=>Promise.all([r.e(0),r.e(62)]).then(r.bind(null,399)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-image",component:Object(o.lazy)(()=>r.e(61).then(r.bind(null,443)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-title",component:Object(o.lazy)(()=>r.e(69).then(r.bind(null,444)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-rating",component:Object(o.lazy)(()=>r.e(63).then(r.bind(null,400)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-button",component:Object(o.lazy)(()=>r.e(59).then(r.bind(null,401)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-summary",component:Object(o.lazy)(()=>r.e(67).then(r.bind(null,402)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-sale-badge",component:Object(o.lazy)(()=>r.e(64).then(r.bind(null,312)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-sku",component:Object(o.lazy)(()=>r.e(65).then(r.bind(null,403)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-category-list",component:Object(o.lazy)(()=>r.e(60).then(r.bind(null,404)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-tag-list",component:Object(o.lazy)(()=>r.e(68).then(r.bind(null,405)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-stock-indicator",component:Object(o.lazy)(()=>r.e(66).then(r.bind(null,406)))}),Object(n.registerBlockComponent)({blockName:"woocommerce/product-add-to-cart",component:Object(o.lazy)(()=>Promise.all([r.e(1),r.e(74),r.e(58)]).then(r.bind(null,426)))});const i=e=>Object(n.getRegisteredBlockComponents)(e)},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,r){e.exports=r(235)},function(e,t){},function(e,t){},function(e,t){},,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,r){"use strict";r.r(t);var n=r(0),o=r(57),c=r(48),i=r(3),s=r(1),a=r(6),l=r(4),u=r.n(l),d=r(22);r(210);var p=e=>{let{currentPage:t,displayFirstAndLastPages:r=!0,displayNextAndPreviousArrows:o=!0,pagesToDisplay:c=3,onPageChange:i,totalPages:a}=e,{minIndex:l,maxIndex:p}=((e,t,r)=>{if(r<=2)return{minIndex:null,maxIndex:null};const n=e-1,o=Math.max(Math.floor(t-n/2),2),c=Math.min(Math.ceil(t+(n-(t-o))),r-1);return{minIndex:Math.max(Math.floor(t-(n-(c-t))),2),maxIndex:c}})(c,t,a);const b=r&&Boolean(1!==l),m=r&&Boolean(p!==a),f=r&&Boolean(l&&l>3),g=r&&Boolean(p&&p<a-2);b&&3===l&&(l-=1),m&&p===a-2&&(p+=1);const h=[];if(l&&p)for(let e=l;e<=p;e++)h.push(e);return Object(n.createElement)("div",{className:"wc-block-pagination wc-block-components-pagination"},Object(n.createElement)(d.a,{screenReaderLabel:Object(s.__)("Navigate to another page","woocommerce")}),o&&Object(n.createElement)("button",{className:"wc-block-pagination-page wc-block-components-pagination__page wc-block-components-pagination-page--arrow",onClick:()=>i(t-1),title:Object(s.__)("Previous page","woocommerce"),disabled:t<=1},Object(n.createElement)(d.a,{label:"←",screenReaderLabel:Object(s.__)("Previous page","woocommerce")})),b&&Object(n.createElement)("button",{className:u()("wc-block-pagination-page","wc-block-components-pagination__page",{"wc-block-pagination-page--active":1===t,"wc-block-components-pagination__page--active":1===t}),onClick:()=>i(1),disabled:1===t},Object(n.createElement)(d.a,{label:"1",screenReaderLabel:Object(s.sprintf)(
4
  /* translators: %d is the page number (1, 2, 3...). */
packages/woocommerce-blocks/build/blocks-checkout.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-registry', 'wc-settings', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-i18n', 'wp-is-shallow-equal', 'wp-polyfill', 'wp-primitives', 'wp-warning'), 'version' => '6cc4f730f651342b16916c50a292828e');
1
+ <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-registry', 'wc-settings', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-i18n', 'wp-is-shallow-equal', 'wp-polyfill', 'wp-primitives', 'wp-warning'), 'version' => 'cc0d8d39094c2ca21a7e3bc6e7b92d90');
packages/woocommerce-blocks/build/cart-frontend.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-checkout', 'wc-blocks-data-store', 'wc-blocks-registry', 'wc-blocks-shared-hocs', 'wc-price-format', 'wc-settings', 'wp-a11y', 'wp-api-fetch', 'wp-autop', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning', 'wp-wordcount'), 'version' => '0190177fc679791bd041ef49fb023375');
1
+ <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-checkout', 'wc-blocks-data-store', 'wc-blocks-registry', 'wc-blocks-shared-hocs', 'wc-price-format', 'wc-settings', 'wp-a11y', 'wp-api-fetch', 'wp-autop', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning', 'wp-wordcount'), 'version' => '8919b561a4fdbe19df8dc1f353caec01');
packages/woocommerce-blocks/build/cart-frontend.js CHANGED
@@ -1,4 +1,4 @@
1
- !function(e){function t(t){for(var r,o,a=t[0],s=t[1],i=0,l=[];i<a.length;i++)o=a[i],Object.prototype.hasOwnProperty.call(n,o)&&n[o]&&l.push(n[o][0]),n[o]=0;for(r in s)Object.prototype.hasOwnProperty.call(s,r)&&(e[r]=s[r]);for(c&&c(t);l.length;)l.shift()()}var r={},n={11:0,7:0,73:0};function o(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}o.e=function(e){var t=[],r=n[e];if(0!==r)if(r)t.push(r[2]);else{var a=new Promise((function(t,o){r=n[e]=[t,o]}));t.push(r[2]=a);var s,i=document.createElement("script");i.charset="utf-8",i.timeout=120,o.nc&&i.setAttribute("nonce",o.nc),i.src=function(e){return o.p+""+({0:"vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66",1:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--decc3dc6",2:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--5b8feb0b",3:"vendors--cart-blocks/cart-line-items--checkout-blocks/order-summary-cart-items--mini-cart-contents---233ab542",4:"cart-blocks/cart-line-items--mini-cart-contents-block/products-table",5:"cart-blocks/order-summary-shipping--checkout-blocks/order-summary-shipping",12:"cart-blocks/cart-accepted-payment-methods",13:"cart-blocks/cart-express-payment",14:"cart-blocks/cart-items",15:"cart-blocks/cart-line-items",16:"cart-blocks/cart-order-summary",17:"cart-blocks/cart-totals",18:"cart-blocks/empty-cart",19:"cart-blocks/filled-cart",20:"cart-blocks/order-summary-coupon-form",21:"cart-blocks/order-summary-discount",22:"cart-blocks/order-summary-fee",23:"cart-blocks/order-summary-heading",24:"cart-blocks/order-summary-shipping",25:"cart-blocks/order-summary-subtotal",26:"cart-blocks/order-summary-taxes",27:"cart-blocks/proceed-to-checkout"}[e]||e)+"-frontend.js?ver="+{0:"071743a9ca2cfdafd79f",1:"e2dda84269ff5f357820",2:"bb568a01ffa114ca1394",3:"deab3ee0c5c13d3addc8",4:"89f09ba23bc79f34d574",5:"4633d7aaf0d614913380",12:"7346fa68956c1d3ee462",13:"5d5d2d138986a6bdc2ee",14:"497cd8ab48255af9b50d",15:"c50926eca8955679669f",16:"5acf6f9df18d8fe0570e",17:"beabb36f9afc88b4feb3",18:"f6628e966e355c915de9",19:"fd0392dda43dda02525c",20:"a0f83c5f3f9e75cd858f",21:"2fbcc787732cb9b65f30",22:"7f685f8beac3d104e331",23:"14f6290bb0565b065a38",24:"3e736b89e04324e8d78a",25:"a348afa0fb9493cb1f39",26:"7034e6f77b9b5139aafa",27:"357d370510f29a97ef5b"}[e]}(e);var c=new Error;s=function(t){i.onerror=i.onload=null,clearTimeout(l);var r=n[e];if(0!==r){if(r){var o=t&&("load"===t.type?"missing":t.type),a=t&&t.target&&t.target.src;c.message="Loading chunk "+e+" failed.\n("+o+": "+a+")",c.name="ChunkLoadError",c.type=o,c.request=a,r[1](c)}n[e]=void 0}};var l=setTimeout((function(){s({type:"timeout",target:i})}),12e4);i.onerror=i.onload=s,document.head.appendChild(i)}return Promise.all(t)},o.m=e,o.c=r,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)o.d(r,n,function(t){return e[t]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o.oe=function(e){throw console.error(e),e};var a=window.webpackWcBlocksJsonp=window.webpackWcBlocksJsonp||[],s=a.push.bind(a);a.push=t,a=a.slice();for(var i=0;i<a.length;i++)t(a[i]);var c=s;o(o.s=224)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wc.wcSettings},function(e,t){e.exports=window.React},function(e,t,r){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var a=typeof n;if("string"===a||"number"===a)e.push(n);else if(Array.isArray(n)){if(n.length){var s=o.apply(null,n);s&&e.push(s)}}else if("object"===a)if(n.toString===Object.prototype.toString)for(var i in n)r.call(n,i)&&n[i]&&e.push(i);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},function(e,t){e.exports=window.wc.wcBlocksData},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.data},function(e,t,r){"use strict";function n(){return(n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}r.d(t,"a",(function(){return n}))},,function(e,t){e.exports=window.wc.blocksCheckout},function(e,t){function r(){return e.exports=r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,r.apply(this,arguments)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.isShallowEqual},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.primitives},function(e,t,r){"use strict";var n=r(19),o=r.n(n),a=r(0),s=r(3),i=r(1),c=r(44),l=e=>{let{imageUrl:t=c.l+"/block-error.svg",header:r=Object(i.__)("Oops!","woocommerce"),text:n=Object(i.__)("There was an error loading the content.","woocommerce"),errorMessage:o,errorMessagePrefix:s=Object(i.__)("Error:","woocommerce"),button:l,showErrorBlock:u=!0}=e;return u?Object(a.createElement)("div",{className:"wc-block-error wc-block-components-error"},t&&Object(a.createElement)("img",{className:"wc-block-error__image wc-block-components-error__image",src:t,alt:""}),Object(a.createElement)("div",{className:"wc-block-error__content wc-block-components-error__content"},r&&Object(a.createElement)("p",{className:"wc-block-error__header wc-block-components-error__header"},r),n&&Object(a.createElement)("p",{className:"wc-block-error__text wc-block-components-error__text"},n),o&&Object(a.createElement)("p",{className:"wc-block-error__message wc-block-components-error__message"},s?s+" ":"",o),l&&Object(a.createElement)("p",{className:"wc-block-error__button wc-block-components-error__button"},l))):null};r(33);class u extends s.Component{constructor(){super(...arguments),o()(this,"state",{errorMessage:"",hasError:!1})}static getDerivedStateFromError(e){return void 0!==e.statusText&&void 0!==e.status?{errorMessage:Object(a.createElement)(a.Fragment,null,Object(a.createElement)("strong",null,e.status),": ",e.statusText),hasError:!0}:{errorMessage:e.message,hasError:!0}}render(){const{header:e,imageUrl:t,showErrorMessage:r=!0,showErrorBlock:n=!0,text:o,errorMessagePrefix:s,renderError:i,button:c}=this.props,{errorMessage:u,hasError:d}=this.state;return d?"function"==typeof i?i({errorMessage:u}):Object(a.createElement)(l,{showErrorBlock:n,errorMessage:r?u:null,header:e,imageUrl:t,text:o,errorMessagePrefix:s,button:c}):this.props.children}}t.a=u},function(e,t){e.exports=window.wc.wcBlocksRegistry},function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.a11y},,,,function(e,t,r){"use strict";(function(e){var n=r(0);r(38);const o=Object(n.createContext)({slots:{},fills:{},registerSlot:()=>{void 0!==e&&e.env},updateSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{}});t.a=o}).call(this,r(63))},function(e,t){e.exports=window.wp.apiFetch},,function(e,t,r){"use strict";r.d(t,"a",(function(){return a}));var n=r(0);r(7);const o=Object(n.createContext)({isEditor:!1,currentPostId:0,currentView:"",previewData:{},getPreviewData:()=>{}}),a=()=>Object(n.useContext)(o)},,function(e,t,r){"use strict";r.d(t,"c",(function(){return a})),r.d(t,"a",(function(){return c})),r.d(t,"b",(function(){return l})),r.d(t,"d",(function(){return d}));var n=r(61);let o,a;!function(e){e.SUCCESS="success",e.FAIL="failure",e.ERROR="error"}(o||(o={})),function(e){e.PAYMENTS="wc/payment-area",e.EXPRESS_PAYMENTS="wc/express-payment-area"}(a||(a={}));const s=(e,t)=>Object(n.a)(e)&&"type"in e&&e.type===t,i=e=>s(e,o.SUCCESS),c=e=>s(e,o.ERROR),l=e=>s(e,o.FAIL),u=e=>!Object(n.a)(e)||void 0===e.retry||!0===e.retry,d=()=>({responseTypes:o,noticeContexts:a,shouldRetry:u,isSuccessResponse:i,isErrorResponse:c,isFailResponse:l})},function(e,t,r){"use strict";r.d(t,"a",(function(){return s}));var n=r(0),o=r(12),a=r.n(o);function s(e){const t=Object(n.useRef)(e);return a()(e,t.current)||(t.current=e),t.current}},function(e,t,r){"use strict";r.d(t,"a",(function(){return y}));var n=r(6),o=r(0),a=r(5),s=r(7),i=r(18),c=r(118),l=r(27),u=r(68);const d=e=>{const t=e.detail;t&&t.preserveCartData||Object(s.dispatch)(a.CART_STORE_KEY).invalidateResolutionForStore()},p=()=>{1===window.wcBlocksStoreCartListeners.count&&window.wcBlocksStoreCartListeners.remove(),window.wcBlocksStoreCartListeners.count--},f=()=>{Object(o.useEffect)(()=>((()=>{if(window.wcBlocksStoreCartListeners||(window.wcBlocksStoreCartListeners={count:0,remove:()=>{}}),0===window.wcBlocksStoreCartListeners.count){const e=Object(u.b)("added_to_cart","wc-blocks_added_to_cart"),t=Object(u.b)("removed_from_cart","wc-blocks_removed_from_cart");document.body.addEventListener("wc-blocks_added_to_cart",d),document.body.addEventListener("wc-blocks_removed_from_cart",d),window.wcBlocksStoreCartListeners.count=0,window.wcBlocksStoreCartListeners.remove=()=>{e(),t(),document.body.removeEventListener("wc-blocks_added_to_cart",d),document.body.removeEventListener("wc-blocks_removed_from_cart",d)}}window.wcBlocksStoreCartListeners.count++})(),p),[])},m={first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},h={...m,email:""},b={total_items:"",total_items_tax:"",total_fees:"",total_fees_tax:"",total_discount:"",total_discount_tax:"",total_shipping:"",total_shipping_tax:"",total_price:"",total_tax:"",tax_lines:a.EMPTY_TAX_LINES,currency_code:"",currency_symbol:"",currency_minor_unit:2,currency_decimal_separator:"",currency_thousand_separator:"",currency_prefix:"",currency_suffix:""},g=e=>Object.fromEntries(Object.entries(e).map(e=>{let[t,r]=e;return[t,Object(i.decodeEntities)(r)]})),E={cartCoupons:a.EMPTY_CART_COUPONS,cartItems:a.EMPTY_CART_ITEMS,cartFees:a.EMPTY_CART_FEES,cartItemsCount:0,cartItemsWeight:0,cartNeedsPayment:!0,cartNeedsShipping:!0,cartItemErrors:a.EMPTY_CART_ITEM_ERRORS,cartTotals:b,cartIsLoading:!0,cartErrors:a.EMPTY_CART_ERRORS,billingAddress:h,shippingAddress:m,shippingRates:a.EMPTY_SHIPPING_RATES,isLoadingRates:!1,cartHasCalculatedShipping:!1,paymentRequirements:a.EMPTY_PAYMENT_REQUIREMENTS,receiveCart:()=>{},extensions:a.EMPTY_EXTENSIONS},y=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{shouldSelect:!0};const{isEditor:t,previewData:r}=Object(l.a)(),i=null==r?void 0:r.previewCart,{shouldSelect:u}=e,d=Object(o.useRef)();f();const p=Object(s.useSelect)((e,r)=>{let{dispatch:n}=r;if(!u)return E;if(t)return{cartCoupons:i.coupons,cartItems:i.items,cartFees:i.fees,cartItemsCount:i.items_count,cartItemsWeight:i.items_weight,cartNeedsPayment:i.needs_payment,cartNeedsShipping:i.needs_shipping,cartItemErrors:a.EMPTY_CART_ITEM_ERRORS,cartTotals:i.totals,cartIsLoading:!1,cartErrors:a.EMPTY_CART_ERRORS,billingAddress:h,shippingAddress:m,extensions:a.EMPTY_EXTENSIONS,shippingRates:i.shipping_rates,isLoadingRates:!1,cartHasCalculatedShipping:i.has_calculated_shipping,paymentRequirements:i.paymentRequirements,receiveCart:"function"==typeof(null==i?void 0:i.receiveCart)?i.receiveCart:()=>{}};const o=e(a.CART_STORE_KEY),s=o.getCartData(),l=o.getCartErrors(),d=o.getCartTotals(),p=!o.hasFinishedResolution("getCartData"),f=o.isCustomerDataUpdating(),{receiveCart:b}=n(a.CART_STORE_KEY),y=g(s.billingAddress),v=s.needsShipping?g(s.shippingAddress):y,O=s.fees.length>0?s.fees.map(e=>g(e)):a.EMPTY_CART_FEES;return{cartCoupons:s.coupons.length>0?s.coupons.map(e=>({...e,label:e.code})):a.EMPTY_CART_COUPONS,cartItems:s.items,cartFees:O,cartItemsCount:s.itemsCount,cartItemsWeight:s.itemsWeight,cartNeedsPayment:s.needsPayment,cartNeedsShipping:s.needsShipping,cartItemErrors:s.errors,cartTotals:d,cartIsLoading:p,cartErrors:l,billingAddress:Object(c.a)(y),shippingAddress:Object(c.a)(v),extensions:s.extensions,shippingRates:s.shippingRates,isLoadingRates:f,cartHasCalculatedShipping:s.hasCalculatedShipping,paymentRequirements:s.paymentRequirements,receiveCart:b}},[u]);return d.current&&Object(n.isEqual)(d.current,p)||(d.current=p),d.current}},function(e,t){e.exports=window.wp.deprecated},function(e,t){},function(e,t,r){"use strict";r.d(t,"b",(function(){return x})),r.d(t,"a",(function(){return P}));var n=r(0),o=r(1),a=r(58),s=r(32),i=r.n(s),c=r(52),l=r(61),u=r(7);let d;!function(e){e.SET_IDLE="set_idle",e.SET_PRISTINE="set_pristine",e.SET_REDIRECT_URL="set_redirect_url",e.SET_COMPLETE="set_checkout_complete",e.SET_BEFORE_PROCESSING="set_before_processing",e.SET_AFTER_PROCESSING="set_after_processing",e.SET_PROCESSING_RESPONSE="set_processing_response",e.SET_PROCESSING="set_checkout_is_processing",e.SET_HAS_ERROR="set_checkout_has_error",e.SET_NO_ERROR="set_checkout_no_error",e.SET_CUSTOMER_ID="set_checkout_customer_id",e.SET_ORDER_ID="set_checkout_order_id",e.SET_ORDER_NOTES="set_checkout_order_notes",e.INCREMENT_CALCULATING="increment_calculating",e.DECREMENT_CALCULATING="decrement_calculating",e.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS="set_shipping_address_as_billing_address",e.SET_SHOULD_CREATE_ACCOUNT="set_should_create_account",e.SET_EXTENSION_DATA="set_extension_data"}(d||(d={}));const p=()=>({type:d.SET_IDLE}),f=e=>({type:d.SET_REDIRECT_URL,redirectUrl:e}),m=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{type:d.SET_COMPLETE,data:e}},h=function(){let e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return{type:e?d.SET_HAS_ERROR:d.SET_NO_ERROR}};var b=r(2),g=r(118);let E;!function(e){e.PRISTINE="pristine",e.IDLE="idle",e.PROCESSING="processing",e.COMPLETE="complete",e.BEFORE_PROCESSING="before_processing",e.AFTER_PROCESSING="after_processing"}(E||(E={}));const y={order_id:0,customer_id:0,billing_address:{},shipping_address:{},...Object(b.getSetting)("checkoutData",{})||{}},v={redirectUrl:"",status:E.PRISTINE,hasError:!1,calculatingCount:0,orderId:y.order_id,orderNotes:"",customerId:y.customer_id,useShippingAsBilling:Object(g.b)(y.billing_address,y.shipping_address),shouldCreateAccount:!1,processingResponse:null,extensionData:{}},O=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:v,{redirectUrl:t,type:r,customerId:n,orderId:o,orderNotes:a,extensionData:s,useShippingAsBilling:i,shouldCreateAccount:c,data:l}=arguments.length>1?arguments[1]:void 0,u=e;switch(r){case d.SET_PRISTINE:u=v;break;case d.SET_IDLE:u=e.status!==E.IDLE?{...e,status:E.IDLE}:e;break;case d.SET_REDIRECT_URL:u=void 0!==t&&t!==e.redirectUrl?{...e,redirectUrl:t}:e;break;case d.SET_PROCESSING_RESPONSE:u={...e,processingResponse:l};break;case d.SET_COMPLETE:u=e.status!==E.COMPLETE?{...e,status:E.COMPLETE,redirectUrl:"string"==typeof(null==l?void 0:l.redirectUrl)?l.redirectUrl:e.redirectUrl}:e;break;case d.SET_PROCESSING:u=e.status!==E.PROCESSING?{...e,status:E.PROCESSING,hasError:!1}:e,u=!1===u.hasError?u:{...u,hasError:!1};break;case d.SET_BEFORE_PROCESSING:u=e.status!==E.BEFORE_PROCESSING?{...e,status:E.BEFORE_PROCESSING,hasError:!1}:e;break;case d.SET_AFTER_PROCESSING:u=e.status!==E.AFTER_PROCESSING?{...e,status:E.AFTER_PROCESSING}:e;break;case d.SET_HAS_ERROR:u=e.hasError?e:{...e,hasError:!0},u=e.status===E.PROCESSING||e.status===E.BEFORE_PROCESSING?{...u,status:E.IDLE}:u;break;case d.SET_NO_ERROR:u=e.hasError?{...e,hasError:!1}:e;break;case d.INCREMENT_CALCULATING:u={...e,calculatingCount:e.calculatingCount+1};break;case d.DECREMENT_CALCULATING:u={...e,calculatingCount:Math.max(0,e.calculatingCount-1)};break;case d.SET_CUSTOMER_ID:u=void 0!==n?{...e,customerId:n}:e;break;case d.SET_ORDER_ID:u=void 0!==o?{...e,orderId:o}:e;break;case d.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS:void 0!==i&&i!==e.useShippingAsBilling&&(u={...e,useShippingAsBilling:i});break;case d.SET_SHOULD_CREATE_ACCOUNT:void 0!==c&&c!==e.shouldCreateAccount&&(u={...e,shouldCreateAccount:c});break;case d.SET_ORDER_NOTES:void 0!==a&&e.orderNotes!==a&&(u={...e,orderNotes:a});break;case d.SET_EXTENSION_DATA:void 0!==s&&e.extensionData!==s&&(u={...e,extensionData:s})}return u!==e&&r!==d.SET_PRISTINE&&u.status===E.PRISTINE&&(u.status=E.IDLE),u};var S=r(18),_=r(91),k=r(197);var w=r(199),j=r(194),R=r(40),C=r(29),T=r(77);const A=Object(n.createContext)({dispatchActions:{resetCheckout:()=>{},setRedirectUrl:e=>{},setHasError:e=>{},setAfterProcessing:e=>{},incrementCalculating:()=>{},decrementCalculating:()=>{},setCustomerId:e=>{},setOrderId:e=>{},setOrderNotes:e=>{},setExtensionData:e=>{}},onSubmit:()=>{},isComplete:!1,isIdle:!1,isCalculating:!1,isProcessing:!1,isBeforeProcessing:!1,isAfterProcessing:!1,hasError:!1,redirectUrl:"",orderId:0,orderNotes:"",customerId:0,onCheckoutAfterProcessingWithSuccess:()=>()=>{},onCheckoutAfterProcessingWithError:()=>()=>{},onCheckoutBeforeProcessing:()=>()=>{},onCheckoutValidationBeforeProcessing:()=>()=>{},hasOrder:!1,isCart:!1,useShippingAsBilling:!1,setUseShippingAsBilling:e=>{},shouldCreateAccount:!1,setShouldCreateAccount:e=>{},extensionData:{}}),x=()=>Object(n.useContext)(A),P=e=>{let{children:t,redirectUrl:r,isCart:s=!1}=e;v.redirectUrl=r;const[b,g]=Object(n.useReducer)(O,v),{setValidationErrors:y}=Object(j.b)(),{createErrorNotice:x}=Object(u.useDispatch)("core/notices"),{dispatchCheckoutEvent:P}=Object(R.a)(),M=b.calculatingCount>0,{isSuccessResponse:N,isErrorResponse:I,isFailResponse:D,shouldRetry:L}=Object(C.d)(),{checkoutNotices:F,paymentNotices:V,expressPaymentNotices:B}=(()=>{const{noticeContexts:e}=Object(C.d)();return{checkoutNotices:Object(u.useSelect)(e=>e("core/notices").getNotices("wc/checkout"),[]),expressPaymentNotices:Object(u.useSelect)(t=>t("core/notices").getNotices(e.EXPRESS_PAYMENTS),[e.EXPRESS_PAYMENTS]),paymentNotices:Object(u.useSelect)(t=>t("core/notices").getNotices(e.PAYMENTS),[e.PAYMENTS])}})(),[U,H]=Object(n.useReducer)(_.b,{}),G=Object(n.useRef)(U),{onCheckoutAfterProcessingWithSuccess:Y,onCheckoutAfterProcessingWithError:z,onCheckoutValidationBeforeProcessing:q}=(e=>Object(n.useMemo)(()=>({onCheckoutAfterProcessingWithSuccess:Object(k.a)("checkout_after_processing_with_success",e),onCheckoutAfterProcessingWithError:Object(k.a)("checkout_after_processing_with_error",e),onCheckoutValidationBeforeProcessing:Object(k.a)("checkout_validation_before_processing",e)}),[e]))(H);Object(n.useEffect)(()=>{G.current=U},[U]);const W=Object(n.useMemo)(()=>function(){return i()("onCheckoutBeforeProcessing",{alternative:"onCheckoutValidationBeforeProcessing",plugin:"WooCommerce Blocks"}),q(...arguments)},[q]),X=Object(n.useMemo)(()=>({resetCheckout:()=>{g({type:d.SET_PRISTINE})},setRedirectUrl:e=>{g(f(e))},setHasError:e=>{g(h(e))},incrementCalculating:()=>{g({type:d.INCREMENT_CALCULATING})},decrementCalculating:()=>{g({type:d.DECREMENT_CALCULATING})},setCustomerId:e=>{var t;g((t=e,{type:d.SET_CUSTOMER_ID,customerId:t}))},setOrderId:e=>{g((e=>({type:d.SET_ORDER_ID,orderId:e}))(e))},setOrderNotes:e=>{g((e=>({type:d.SET_ORDER_NOTES,orderNotes:e}))(e))},setExtensionData:e=>{g((e=>({type:d.SET_EXTENSION_DATA,extensionData:e}))(e))},setAfterProcessing:e=>{const t=(e=>{const t={message:"",paymentStatus:"",redirectUrl:"",paymentDetails:{}};return"payment_result"in e&&(t.paymentStatus=e.payment_result.payment_status,t.redirectUrl=e.payment_result.redirect_url,e.payment_result.hasOwnProperty("payment_details")&&Array.isArray(e.payment_result.payment_details)&&e.payment_result.payment_details.forEach(e=>{let{key:r,value:n}=e;t.paymentDetails[r]=Object(S.decodeEntities)(n)})),"message"in e&&(t.message=Object(S.decodeEntities)(e.message)),!t.message&&"data"in e&&"status"in e.data&&e.data.status>299&&(t.message=Object(o.__)("Something went wrong. Please contact us to get assistance.","woocommerce")),t})(e);var r;g(f((null==t?void 0:t.redirectUrl)||"")),g((r=t,{type:d.SET_PROCESSING_RESPONSE,data:r})),g({type:d.SET_AFTER_PROCESSING})}}),[]);Object(n.useEffect)(()=>{b.status===E.BEFORE_PROCESSING&&(Object(T.b)("error"),Object(w.a)(G.current,"checkout_validation_before_processing",{}).then(e=>{!0!==e?(Array.isArray(e)&&e.forEach(e=>{let{errorMessage:t,validationErrors:r}=e;x(t,{context:"wc/checkout"}),y(r)}),g(p()),g(h())):g({type:d.SET_PROCESSING})}))},[b.status,y,x,g]);const K=Object(a.a)(b.status),$=Object(a.a)(b.hasError);Object(n.useEffect)(()=>{if((b.status!==K||b.hasError!==$)&&b.status===E.AFTER_PROCESSING){const e={redirectUrl:b.redirectUrl,orderId:b.orderId,customerId:b.customerId,orderNotes:b.orderNotes,processingResponse:b.processingResponse};b.hasError?Object(w.b)(G.current,"checkout_after_processing_with_error",e).then(t=>{const r=(e=>{let t=null;return e.forEach(e=>{if((I(e)||D(e))&&e.message&&Object(c.a)(e.message)){const r=e.messageContext&&Object(c.a)(e.messageContent)?{context:e.messageContext}:void 0;t=e,x(e.message,r)}}),t})(t);if(null!==r)L(r)?g(p()):g(m(r));else{if(!(F.some(e=>"error"===e.status)||B.some(e=>"error"===e.status)||V.some(e=>"error"===e.status))){var n;const t=(null===(n=e.processingResponse)||void 0===n?void 0:n.message)||Object(o.__)("Something went wrong. Please contact us to get assistance.","woocommerce");x(t,{id:"checkout",context:"wc/checkout"})}g(p())}}):Object(w.b)(G.current,"checkout_after_processing_with_success",e).then(e=>{let t=null,r=null;if(e.forEach(e=>{N(e)&&(t=e),(I(e)||D(e))&&(r=e)}),t&&!r)g(m(t));else if(Object(l.a)(r)){if(r.message&&Object(c.a)(r.message)){const e=r.messageContext&&Object(c.a)(r.messageContext)?{context:r.messageContext}:void 0;x(r.message,e)}L(r)?g(h(!0)):g(m(r))}else g(m())})}},[b.status,b.hasError,b.redirectUrl,b.orderId,b.customerId,b.orderNotes,b.processingResponse,K,$,X,x,I,D,N,L,F,B,V]);const J={onSubmit:Object(n.useCallback)(()=>{P("submit"),g({type:d.SET_BEFORE_PROCESSING})},[P]),isComplete:b.status===E.COMPLETE,isIdle:b.status===E.IDLE,isCalculating:M,isProcessing:b.status===E.PROCESSING,isBeforeProcessing:b.status===E.BEFORE_PROCESSING,isAfterProcessing:b.status===E.AFTER_PROCESSING,hasError:b.hasError,redirectUrl:b.redirectUrl,onCheckoutBeforeProcessing:W,onCheckoutValidationBeforeProcessing:q,onCheckoutAfterProcessingWithSuccess:Y,onCheckoutAfterProcessingWithError:z,dispatchActions:X,isCart:s,orderId:b.orderId,hasOrder:!!b.orderId,customerId:b.customerId,orderNotes:b.orderNotes,useShippingAsBilling:b.useShippingAsBilling,setUseShippingAsBilling:e=>{return g((t=e,{type:d.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS,useShippingAsBilling:t}));var t},shouldCreateAccount:b.shouldCreateAccount,setShouldCreateAccount:e=>{return g((t=e,{type:d.SET_SHOULD_CREATE_ACCOUNT,shouldCreateAccount:t}));var t},extensionData:b.extensionData};return Object(n.createElement)(A.Provider,{value:J},t)}},,,function(e,t){e.exports=window.wc.priceFormat},function(e,t){e.exports=window.wp.warning},function(e,t){e.exports=window.wp.hooks},function(e,t,r){"use strict";r.d(t,"a",(function(){return s}));var n=r(39),o=r(0),a=r(31);const s=()=>{const e=Object(a.a)(),t=Object(o.useRef)(e);return Object(o.useEffect)(()=>{t.current=e},[e]),{dispatchStoreEvent:Object(o.useCallback)((function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-"+e,t)}catch(e){console.error(e)}}),[]),dispatchCheckoutEvent:Object(o.useCallback)((function(e){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-checkout-"+e,{...r,storeCart:t.current})}catch(e){console.error(e)}}),[])}}},function(e,t,r){"use strict";var n=r(8),o=r(0),a=r(15),s=function({icon:e,className:t,...r}){const a=["dashicon","dashicons","dashicons-"+e,t].filter(Boolean).join(" ");return Object(o.createElement)("span",Object(n.a)({className:a},r))};t.a=function({icon:e=null,size:t=24,...r}){if("string"==typeof e)return Object(o.createElement)(s,Object(n.a)({icon:e},r));if(Object(o.isValidElement)(e)&&s===e.type)return Object(o.cloneElement)(e,{...r});if("function"==typeof e)return e.prototype instanceof o.Component?Object(o.createElement)(e,{size:t,...r}):e({size:t,...r});if(e&&("svg"===e.type||e.type===a.SVG)){const n={width:t,height:t,...e.props,...r};return Object(o.createElement)(a.SVG,n)}return Object(o.isValidElement)(e)?Object(o.cloneElement)(e,{size:t,...r}):e}},function(e,t,r){"use strict";var n=r(4),o=r.n(n),a=r(0);t.a=Object(a.forwardRef)((function({as:e="div",className:t,...r},n){return function({as:e="div",...t}){return"function"==typeof t.children?t.children(t):Object(a.createElement)(e,t)}({as:e,className:o()("components-visually-hidden",t),...r,ref:n})}))},,function(e,t,r){"use strict";r.d(t,"n",(function(){return a})),r.d(t,"l",(function(){return s})),r.d(t,"k",(function(){return i})),r.d(t,"m",(function(){return c})),r.d(t,"i",(function(){return l})),r.d(t,"d",(function(){return u})),r.d(t,"f",(function(){return d})),r.d(t,"j",(function(){return p})),r.d(t,"c",(function(){return f})),r.d(t,"e",(function(){return m})),r.d(t,"g",(function(){return h})),r.d(t,"a",(function(){return b})),r.d(t,"h",(function(){return g})),r.d(t,"b",(function(){return E}));var n,o=r(2);const a=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),s=a.pluginUrl+"images/",i=a.pluginUrl+"build/",c=a.buildPhase,l=null===(n=o.STORE_PAGES.shop)||void 0===n?void 0:n.permalink,u=(o.STORE_PAGES.checkout.id,o.STORE_PAGES.checkout.permalink),d=o.STORE_PAGES.privacy.permalink,p=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),f=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id,o.STORE_PAGES.cart.permalink),m=o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),h=Object(o.getSetting)("shippingCountries",{}),b=Object(o.getSetting)("allowedCountries",{}),g=Object(o.getSetting)("shippingStates",{}),E=Object(o.getSetting)("allowedStates",{})},function(e,t,r){"use strict";var n=r(2),o=r(1),a=r(69),s=r(52);const i=Object(n.getSetting)("countryLocale",{}),c=e=>{const t={};return void 0!==e.label&&(t.label=e.label),void 0!==e.required&&(t.required=e.required),void 0!==e.hidden&&(t.hidden=e.hidden),void 0===e.label||e.optionalLabel||(t.optionalLabel=Object(o.sprintf)(
2
  /* translators: %s Field label. */
3
  Object(o.__)("%s (optional)","woocommerce"),e.label)),e.priority&&(Object(a.a)(e.priority)&&(t.index=e.priority),Object(s.a)(e.priority)&&(t.index=parseInt(e.priority,10))),e.hidden&&(t.required=!1),t},l=Object.entries(i).map(e=>{let[t,r]=e;return[t,Object.entries(r).map(e=>{let[t,r]=e;return[t,c(r)]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{})]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{});t.a=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";const o=r&&void 0!==l[r]?l[r]:{};return e.map(e=>({key:e,...n.defaultAddressFields[e]||{},...o[e]||{},...t[e]||{}})).sort((e,t)=>e.index-t.index)}},function(e,t,r){"use strict";r.d(t,"b",(function(){return s})),r.d(t,"a",(function(){return i}));var n=r(0),o=r(65);const a=Object(n.createContext)({isInitialized:!1,billingData:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",email:"",phone:""},shippingAddress:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},setBillingData:()=>{},setShippingAddress:()=>{}}),s=()=>Object(n.useContext)(a),i=e=>{let{children:t}=e;const r=Object(o.a)();return Object(n.createElement)(a.Provider,{value:r},t)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t,r){var o=this,a=Object(n.useRef)(null),s=Object(n.useRef)(0),i=Object(n.useRef)(null),c=Object(n.useRef)([]),l=Object(n.useRef)(),u=Object(n.useRef)(),d=Object(n.useRef)(e),p=Object(n.useRef)(!0);d.current=e;var f=!t&&0!==t&&"undefined"!=typeof window;if("function"!=typeof e)throw new TypeError("Expected a function");t=+t||0;var m=!!(r=r||{}).leading,h=!("trailing"in r)||!!r.trailing,b="maxWait"in r,g=b?Math.max(+r.maxWait||0,t):null;return Object(n.useEffect)((function(){return p.current=!0,function(){p.current=!1}}),[]),Object(n.useMemo)((function(){var e=function(e){var t=c.current,r=l.current;return c.current=l.current=null,s.current=e,u.current=d.current.apply(r,t)},r=function(e,t){f&&cancelAnimationFrame(i.current),i.current=f?requestAnimationFrame(e):setTimeout(e,t)},n=function(e){if(!p.current)return!1;var r=e-a.current,n=e-s.current;return!a.current||r>=t||r<0||b&&n>=g},E=function(t){return i.current=null,h&&c.current?e(t):(c.current=l.current=null,u.current)},y=function(){var e=Date.now();if(n(e))return E(e);if(p.current){var o=e-a.current,i=e-s.current,c=t-o,l=b?Math.min(c,g-i):c;r(y,l)}},v=function(){for(var d=[],f=0;f<arguments.length;f++)d[f]=arguments[f];var h=Date.now(),g=n(h);if(c.current=d,l.current=o,a.current=h,g){if(!i.current&&p.current)return s.current=a.current,r(y,t),m?e(a.current):u.current;if(b)return r(y,t),e(a.current)}return i.current||r(y,t),u.current};return v.cancel=function(){i.current&&(f?cancelAnimationFrame(i.current):clearTimeout(i.current)),s.current=0,c.current=a.current=l.current=i.current=null},v.isPending=function(){return!!i.current},v.flush=function(){return i.current?E(Date.now()):u.current},v}),[m,b,t,g,h,f])}},function(e,t,r){"use strict";r.d(t,"a",(function(){return l}));var n=r(11),o=r.n(n),a=r(0),s=r(16);const i=[".wp-block-woocommerce-cart"],c=e=>{let{Block:t,containers:r,getProps:n=(()=>({})),getErrorBoundaryProps:i=(()=>({}))}=e;0!==r.length&&Array.prototype.forEach.call(r,(e,r)=>{const c=n(e,r),l=i(e,r),u={...e.dataset,...c.attributes||{}};(e=>{let{Block:t,container:r,attributes:n={},props:i={},errorBoundaryProps:c={}}=e;Object(a.render)(Object(a.createElement)(s.a,c,Object(a.createElement)(a.Suspense,{fallback:Object(a.createElement)("div",{className:"wc-block-placeholder"})},t&&Object(a.createElement)(t,o()({},i,{attributes:n})))),r,()=>{r.classList&&r.classList.remove("is-loading")})})({Block:t,container:e,props:c,attributes:u,errorBoundaryProps:l})})},l=e=>{const t=document.body.querySelectorAll(i.join(",")),{Block:r,getProps:n,getErrorBoundaryProps:o,selector:a}=e;(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrappers:a}=e;const s=document.body.querySelectorAll(o);a&&a.length>0&&Array.prototype.filter.call(s,e=>!((e,t)=>Array.prototype.some.call(t,t=>t.contains(e)&&!t.isSameNode(e)))(e,a)),c({Block:t,containers:s,getProps:r,getErrorBoundaryProps:n})})({Block:r,getProps:n,getErrorBoundaryProps:o,selector:a,wrappers:t}),Array.prototype.forEach.call(t,t=>{t.addEventListener("wc-blocks_render_blocks_frontend",()=>{(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrapper:a}=e;const s=a.querySelectorAll(o);c({Block:t,containers:s,getProps:r,getErrorBoundaryProps:n})})({...e,wrapper:t})})})}},,function(e,t,r){"use strict";var n=r(8),o=r(0),a=r(4),s=r.n(a),i=r(6),c=r(32),l=r.n(c),u=r(13),d=r(51),p=r(93),f=r(1);function m(e,t,r){const{defaultView:n}=t,{frameElement:o}=n;if(!o||t===r.ownerDocument)return e;const a=o.getBoundingClientRect();return new n.DOMRect(e.left+a.left,e.top+a.top,e.width,e.height)}let h=0;function b(e){const t=document.scrollingElement||document.body;e&&(h=t.scrollTop);const r=e?"add":"remove";t.classList[r]("lockscroll"),document.documentElement.classList[r]("lockscroll"),e||(t.scrollTop=h)}let g=0;function E(){return Object(o.useEffect)(()=>(0===g&&b(!0),++g,()=>{1===g&&b(!1),--g}),[]),null}var y=r(24);function v(e){const t=Object(o.useContext)(y.a),r=t.slots[e]||{},n=t.fills[e],a=Object(o.useMemo)(()=>n||[],[n]);return{...r,updateSlot:Object(o.useCallback)(r=>{t.updateSlot(e,r)},[e,t.updateSlot]),unregisterSlot:Object(o.useCallback)(r=>{t.unregisterSlot(e,r)},[e,t.unregisterSlot]),fills:a,registerFill:Object(o.useCallback)(r=>{t.registerFill(e,r)},[e,t.registerFill]),unregisterFill:Object(o.useCallback)(r=>{t.unregisterFill(e,r)},[e,t.unregisterFill])}}var O=Object(o.createContext)({registerSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},getSlot:()=>{},getFills:()=>{},subscribe:()=>{}});function S({name:e,children:t,registerFill:r,unregisterFill:n}){const a=(e=>{const{getSlot:t,subscribe:r}=Object(o.useContext)(O),[n,a]=Object(o.useState)(t(e));return Object(o.useEffect)(()=>(a(t(e)),r(()=>{a(t(e))})),[e]),n})(e),s=Object(o.useRef)({name:e,children:t});return Object(o.useLayoutEffect)(()=>(r(e,s.current),()=>n(e,s.current)),[]),Object(o.useLayoutEffect)(()=>{s.current.children=t,a&&a.forceUpdate()},[t]),Object(o.useLayoutEffect)(()=>{e!==s.current.name&&(n(s.current.name,s.current),s.current.name=e,r(e,s.current))},[e]),a&&a.node?(Object(i.isFunction)(t)&&(t=t(a.props.fillProps)),Object(o.createPortal)(t,a.node)):null}var _=e=>Object(o.createElement)(O.Consumer,null,({registerFill:t,unregisterFill:r})=>Object(o.createElement)(S,Object(n.a)({},e,{registerFill:t,unregisterFill:r})));class k extends o.Component{constructor(){super(...arguments),this.isUnmounted=!1,this.bindNode=this.bindNode.bind(this)}componentDidMount(){const{registerSlot:e}=this.props;e(this.props.name,this)}componentWillUnmount(){const{unregisterSlot:e}=this.props;this.isUnmounted=!0,e(this.props.name,this)}componentDidUpdate(e){const{name:t,unregisterSlot:r,registerSlot:n}=this.props;e.name!==t&&(r(e.name),n(t,this))}bindNode(e){this.node=e}forceUpdate(){this.isUnmounted||super.forceUpdate()}render(){const{children:e,name:t,fillProps:r={},getFills:n}=this.props,a=Object(i.map)(n(t,this),e=>{const t=Object(i.isFunction)(e.children)?e.children(r):e.children;return o.Children.map(t,(e,t)=>{if(!e||Object(i.isString)(e))return e;const r=e.key||t;return Object(o.cloneElement)(e,{key:r})})}).filter(Object(i.negate)(o.isEmptyElement));return Object(o.createElement)(o.Fragment,null,Object(i.isFunction)(e)?e(a):a)}}var w=e=>Object(o.createElement)(O.Consumer,null,({registerSlot:t,unregisterSlot:r,getFills:a})=>Object(o.createElement)(k,Object(n.a)({},e,{registerSlot:t,unregisterSlot:r,getFills:a})));function j(){const[,e]=Object(o.useState)({}),t=Object(o.useRef)(!0);return Object(o.useEffect)(()=>()=>{t.current=!1},[]),()=>{t.current&&e({})}}function R({name:e,children:t}){const r=v(e),n=Object(o.useRef)({rerender:j()});return Object(o.useEffect)(()=>(r.registerFill(n),()=>{r.unregisterFill(n)}),[r.registerFill,r.unregisterFill]),r.ref&&r.ref.current?("function"==typeof t&&(t=t(r.fillProps)),Object(o.createPortal)(t,r.ref.current)):null}var C=Object(o.forwardRef)((function({name:e,fillProps:t={},as:r="div",...a},s){const i=Object(o.useContext)(y.a),c=Object(o.useRef)();return Object(o.useLayoutEffect)(()=>(i.registerSlot(e,c,t),()=>{i.unregisterSlot(e,c)}),[i.registerSlot,i.unregisterSlot,e]),Object(o.useLayoutEffect)(()=>{i.updateSlot(e,t)}),Object(o.createElement)(r,Object(n.a)({ref:Object(u.useMergeRefs)([s,c])},a))}));function T(e){return Object(o.createElement)(o.Fragment,null,Object(o.createElement)(_,e),Object(o.createElement)(R,e))}r(12),o.Component;const A=Object(o.forwardRef)(({bubblesVirtually:e,...t},r)=>e?Object(o.createElement)(C,Object(n.a)({},t,{ref:r})):Object(o.createElement)(w,t));function x(e){return"appear"===e?"top":"left"}function P(e,t){const{paddingTop:r,paddingBottom:n,paddingLeft:o,paddingRight:a}=(s=t).ownerDocument.defaultView.getComputedStyle(s);var s;const i=r?parseInt(r,10):0,c=n?parseInt(n,10):0,l=o?parseInt(o,10):0,u=a?parseInt(a,10):0;return{x:e.left+l,y:e.top+i,width:e.width-l-u,height:e.height-i-c,left:e.left+l,right:e.right-u,top:e.top+i,bottom:e.bottom-c}}function M(e,t,r){r?e.getAttribute(t)!==r&&e.setAttribute(t,r):e.hasAttribute(t)&&e.removeAttribute(t)}function N(e,t,r=""){e.style[t]!==r&&(e.style[t]=r)}function I(e,t,r){r?e.classList.contains(t)||e.classList.add(t):e.classList.contains(t)&&e.classList.remove(t)}const D=Object(o.forwardRef)(({headerTitle:e,onClose:t,children:r,className:a,noArrow:i=!0,isAlternate:c,position:h="bottom right",range:b,focusOnMount:g="firstElement",anchorRef:y,shouldAnchorIncludePadding:O,anchorRect:S,getAnchorRect:_,expandOnMobile:k,animate:w=!0,onClickOutside:j,onFocusOutside:R,__unstableStickyBoundaryElement:C,__unstableSlotName:A="Popover",__unstableObserveElement:D,__unstableBoundaryParent:L,__unstableForcePosition:F,__unstableForceXAlignment:V,...B},U)=>{const H=Object(o.useRef)(null),G=Object(o.useRef)(null),Y=Object(o.useRef)(),z=Object(u.useViewportMatch)("medium","<"),[q,X]=Object(o.useState)(),K=v(A),$=k&&z,[J,Q]=Object(u.useResizeObserver)();i=$||i,Object(o.useLayoutEffect)(()=>{if($)return I(Y.current,"is-without-arrow",i),I(Y.current,"is-alternate",c),M(Y.current,"data-x-axis"),M(Y.current,"data-y-axis"),N(Y.current,"top"),N(Y.current,"left"),N(G.current,"maxHeight"),void N(G.current,"maxWidth");const e=()=>{if(!Y.current||!G.current)return;let e=function(e,t,r,n=!1,o,a){if(t)return t;if(r){if(!e.current)return;const t=r(e.current);return m(t,t.ownerDocument||e.current.ownerDocument,a)}if(!1!==n){if(!(n&&window.Range&&window.Element&&window.DOMRect))return;if("function"==typeof(null==n?void 0:n.cloneRange))return m(Object(d.getRectangleFromRange)(n),n.endContainer.ownerDocument,a);if("function"==typeof(null==n?void 0:n.getBoundingClientRect)){const e=m(n.getBoundingClientRect(),n.ownerDocument,a);return o?e:P(e,n)}const{top:e,bottom:t}=n,r=e.getBoundingClientRect(),s=t.getBoundingClientRect(),i=m(new window.DOMRect(r.left,r.top,r.width,s.bottom-r.top),e.ownerDocument,a);return o?i:P(i,n)}if(!e.current)return;const{parentNode:s}=e.current,i=s.getBoundingClientRect();return o?i:P(i,s)}(H,S,_,y,O,Y.current);if(!e)return;const{offsetParent:t,ownerDocument:r}=Y.current;let n,o=0;if(t&&t!==r.body){const r=t.getBoundingClientRect();o=r.top,e=new window.DOMRect(e.left-r.left,e.top-r.top,e.width,e.height)}var a;L&&(n=null===(a=Y.current.closest(".popover-slot"))||void 0===a?void 0:a.parentNode);const s=Q.height?Q:G.current.getBoundingClientRect(),{popoverTop:l,popoverLeft:u,xAxis:p,yAxis:b,contentHeight:g,contentWidth:E}=function(e,t,r="top",n,o,a,s,i,c){const[l,u="center",d]=r.split(" "),p=function(e,t,r,n,o,a,s,i){const{height:c}=t;if(o){const t=o.getBoundingClientRect().top+c-s;if(e.top<=t)return{yAxis:r,popoverTop:Math.min(e.bottom,t)}}let l=e.top+e.height/2;"bottom"===n?l=e.bottom:"top"===n&&(l=e.top);const u={popoverTop:l,contentHeight:(l-c/2>0?c/2:l)+(l+c/2>window.innerHeight?window.innerHeight-l:c/2)},d={popoverTop:e.top,contentHeight:e.top-10-c>0?c:e.top-10},p={popoverTop:e.bottom,contentHeight:e.bottom+10+c>window.innerHeight?window.innerHeight-10-e.bottom:c};let f,m=r,h=null;if(!o&&!i)if("middle"===r&&u.contentHeight===c)m="middle";else if("top"===r&&d.contentHeight===c)m="top";else if("bottom"===r&&p.contentHeight===c)m="bottom";else{m=d.contentHeight>p.contentHeight?"top":"bottom";const e="top"===m?d.contentHeight:p.contentHeight;h=e!==c?e:null}return f="middle"===m?u.popoverTop:"top"===m?d.popoverTop:p.popoverTop,{yAxis:m,popoverTop:f,contentHeight:h}}(e,t,l,d,n,0,a,i);return{...function(e,t,r,n,o,a,s,i,c){const{width:l}=t;"left"===r&&Object(f.isRTL)()?r="right":"right"===r&&Object(f.isRTL)()&&(r="left"),"left"===n&&Object(f.isRTL)()?n="right":"right"===n&&Object(f.isRTL)()&&(n="left");const u=Math.round(e.left+e.width/2),d={popoverLeft:u,contentWidth:(u-l/2>0?l/2:u)+(u+l/2>window.innerWidth?window.innerWidth-u:l/2)};let p=e.left;"right"===n?p=e.right:"middle"===a||c||(p=u);let m=e.right;"left"===n?m=e.left:"middle"===a||c||(m=u);const h={popoverLeft:p,contentWidth:p-l>0?l:p},b={popoverLeft:m,contentWidth:m+l>window.innerWidth?window.innerWidth-m:l};let g,E=r,y=null;if(!o&&!i)if("center"===r&&d.contentWidth===l)E="center";else if("left"===r&&h.contentWidth===l)E="left";else if("right"===r&&b.contentWidth===l)E="right";else{E=h.contentWidth>b.contentWidth?"left":"right";const e="left"===E?h.contentWidth:b.contentWidth;l>window.innerWidth&&(y=window.innerWidth),e!==l&&(E="center",d.popoverLeft=window.innerWidth/2)}if(g="center"===E?d.popoverLeft:"left"===E?h.popoverLeft:b.popoverLeft,s){const e=s.getBoundingClientRect();g=Math.min(g,e.right-l),Object(f.isRTL)()||(g=Math.max(g,0))}return{xAxis:E,popoverLeft:g,contentWidth:y}}(e,t,u,d,n,p.yAxis,s,i,c),...p}}(e,s,h,C,Y.current,o,n,F,V);"number"==typeof l&&"number"==typeof u&&(N(Y.current,"top",l+"px"),N(Y.current,"left",u+"px")),I(Y.current,"is-without-arrow",i||"center"===p&&"middle"===b),I(Y.current,"is-alternate",c),M(Y.current,"data-x-axis",p),M(Y.current,"data-y-axis",b),N(G.current,"maxHeight","number"==typeof g?g+"px":""),N(G.current,"maxWidth","number"==typeof E?E+"px":""),X(({left:"right",right:"left"}[p]||"center")+" "+({top:"bottom",bottom:"top"}[b]||"middle"))};e();const{ownerDocument:t}=Y.current,{defaultView:r}=t,n=r.setInterval(e,500);let o;const a=()=>{r.cancelAnimationFrame(o),o=r.requestAnimationFrame(e)};r.addEventListener("click",a),r.addEventListener("resize",e),r.addEventListener("scroll",e,!0);const s=function(e){if(e)return e.endContainer?e.endContainer.ownerDocument:e.top?e.top.ownerDocument:e.ownerDocument}(y);let l;return s&&s!==t&&(s.defaultView.addEventListener("resize",e),s.defaultView.addEventListener("scroll",e,!0)),D&&(l=new r.MutationObserver(e),l.observe(D,{attributes:!0})),()=>{r.clearInterval(n),r.removeEventListener("resize",e),r.removeEventListener("scroll",e,!0),r.removeEventListener("click",a),r.cancelAnimationFrame(o),s&&s!==t&&(s.defaultView.removeEventListener("resize",e),s.defaultView.removeEventListener("scroll",e,!0)),l&&l.disconnect()}},[$,S,_,y,O,h,Q,C,D,L]);const Z=(e,r)=>{if("focus-outside"===e&&R)R(r);else if("focus-outside"===e&&j){const e=new window.MouseEvent("click");Object.defineProperty(e,"target",{get:()=>r.relatedTarget}),l()("Popover onClickOutside prop",{since:"5.3",alternative:"onFocusOutside"}),j(e)}else t&&t()},[ee,te]=Object(u.__experimentalUseDialog)({focusOnMount:g,__unstableOnClose:Z,onClose:Z}),re=Object(u.useMergeRefs)([Y,ee,U]),ne=Boolean(w&&q)&&function(e){if("loading"===e.type)return s()("components-animate__loading");const{type:t,origin:r=x(t)}=e;if("appear"===t){const[e,t="center"]=r.split(" ");return s()("components-animate__appear",{["is-from-"+t]:"center"!==t,["is-from-"+e]:"middle"!==e})}return"slide-in"===t?s()("components-animate__slide-in","is-from-"+r):void 0}({type:"appear",origin:q});let oe=Object(o.createElement)("div",Object(n.a)({className:s()("components-popover",a,ne,{"is-expanded":$,"is-without-arrow":i,"is-alternate":c})},B,{ref:re},te,{tabIndex:"-1"}),$&&Object(o.createElement)(E,null),$&&Object(o.createElement)("div",{className:"components-popover__header"},Object(o.createElement)("span",{className:"components-popover__header-title"},e),Object(o.createElement)(W,{className:"components-popover__close",icon:p.a,onClick:t})),Object(o.createElement)("div",{ref:G,className:"components-popover__content"},Object(o.createElement)("div",{style:{position:"relative"}},J,r)));return K.ref&&(oe=Object(o.createElement)(T,{name:A},oe)),y||S?oe:Object(o.createElement)("span",{ref:H},oe)});D.Slot=Object(o.forwardRef)((function({name:e="Popover"},t){return Object(o.createElement)(A,{bubblesVirtually:!0,name:e,className:"popover-slot",ref:t})}));var L=D,F=function({shortcut:e,className:t}){if(!e)return null;let r,n;return Object(i.isString)(e)&&(r=e),Object(i.isObject)(e)&&(r=e.display,n=e.ariaLabel),Object(o.createElement)("span",{className:t,"aria-label":n},r)};const V=Object(o.createElement)("div",{className:"event-catcher"}),B=({eventHandlers:e,child:t,childrenWithPopover:r})=>Object(o.cloneElement)(Object(o.createElement)("span",{className:"disabled-element-wrapper"},Object(o.cloneElement)(V,e),Object(o.cloneElement)(t,{children:r}),","),e),U=({child:e,eventHandlers:t,childrenWithPopover:r})=>Object(o.cloneElement)(e,{...t,children:r}),H=(e,t,r)=>{if(1!==o.Children.count(e))return;const n=o.Children.only(e);"function"==typeof n.props[t]&&n.props[t](r)};var G=function({children:e,position:t,text:r,shortcut:n}){const[a,s]=Object(o.useState)(!1),[c,l]=Object(o.useState)(!1),d=Object(u.useDebounce)(l,700),p=t=>{H(e,"onMouseDown",t),document.addEventListener("mouseup",h),s(!0)},f=t=>{H(e,"onMouseUp",t),document.removeEventListener("mouseup",h),s(!1)},m=e=>"mouseUp"===e?f:"mouseDown"===e?p:void 0,h=m("mouseUp"),b=(t,r)=>n=>{if(H(e,t,n),n.currentTarget.disabled)return;if("focus"===n.type&&a)return;d.cancel();const o=Object(i.includes)(["focus","mouseenter"],n.type);o!==c&&(r?d(o):l(o))},g=()=>{d.cancel(),document.removeEventListener("mouseup",h)};if(Object(o.useEffect)(()=>g,[]),1!==o.Children.count(e))return e;const E={onMouseEnter:b("onMouseEnter",!0),onMouseLeave:b("onMouseLeave"),onClick:b("onClick"),onFocus:b("onFocus"),onBlur:b("onBlur"),onMouseDown:m("mouseDown")},y=o.Children.only(e),{children:v,disabled:O}=y.props;return(O?B:U)({child:y,eventHandlers:E,childrenWithPopover:(({grandchildren:e,isOver:t,position:r,text:n,shortcut:a})=>Object(o.concatChildren)(e,t&&Object(o.createElement)(L,{focusOnMount:!1,position:r,className:"components-tooltip","aria-hidden":"true",animate:!1,noArrow:!0},n,Object(o.createElement)(F,{className:"components-tooltip__shortcut",shortcut:a}))))({grandchildren:v,isOver:c,position:t,text:r,shortcut:n})})},Y=r(41),z=r(42);const q=["onMouseDown","onClick"];var W=t.a=Object(o.forwardRef)((function(e,t){const{href:r,target:a,isSmall:c,isPressed:u,isBusy:d,isDestructive:p,className:f,disabled:m,icon:h,iconPosition:b="left",iconSize:g,showTooltip:E,tooltipPosition:y,shortcut:v,label:O,children:S,text:_,variant:k,__experimentalIsFocusable:w,describedBy:j,...R}=function({isDefault:e,isPrimary:t,isSecondary:r,isTertiary:n,isLink:o,variant:a,...s}){let i=a;var c,u,d,p,f;return t&&(null!==(c=i)&&void 0!==c||(i="primary")),n&&(null!==(u=i)&&void 0!==u||(i="tertiary")),r&&(null!==(d=i)&&void 0!==d||(i="secondary")),e&&(l()("Button isDefault prop",{since:"5.4",alternative:'variant="secondary"'}),null!==(p=i)&&void 0!==p||(i="secondary")),o&&(null!==(f=i)&&void 0!==f||(i="link")),{...s,variant:i}}(e),C=s()("components-button",f,{"is-secondary":"secondary"===k,"is-primary":"primary"===k,"is-small":c,"is-tertiary":"tertiary"===k,"is-pressed":u,"is-busy":d,"is-link":"link"===k,"is-destructive":p,"has-text":!!h&&!!S,"has-icon":!!h}),T=m&&!w,A=void 0===r||T?"button":"a",x="a"===A?{href:r,target:a}:{type:"button",disabled:T,"aria-pressed":u};if(m&&w){x["aria-disabled"]=!0;for(const e of q)R[e]=e=>{e.stopPropagation(),e.preventDefault()}}const P=!T&&(E&&O||v||!!O&&(!S||Object(i.isArray)(S)&&!S.length)&&!1!==E),M=j?Object(i.uniqueId)():null,N=R["aria-describedby"]||M,I=Object(o.createElement)(A,Object(n.a)({},x,R,{className:C,"aria-label":R["aria-label"]||O,"aria-describedby":N,ref:t}),h&&"left"===b&&Object(o.createElement)(Y.a,{icon:h,size:g}),_&&Object(o.createElement)(o.Fragment,null,_),h&&"right"===b&&Object(o.createElement)(Y.a,{icon:h,size:g}),S);return P?Object(o.createElement)(o.Fragment,null,Object(o.createElement)(G,{text:j||O,shortcut:v,position:y},I),j&&Object(o.createElement)(z.a,null,Object(o.createElement)("span",{id:M},j))):Object(o.createElement)(o.Fragment,null,I,j&&Object(o.createElement)(z.a,null,Object(o.createElement)("span",{id:M},j)))}))},function(e,t){e.exports=window.wp.dom},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"string"==typeof e},,function(e,t,r){var n=r(80),o=r(55),a=o.setStyleProp,s=n.html,i=n.svg,c=n.isCustomAttribute,l=Object.prototype.hasOwnProperty;e.exports=function(e){var t,r,n,u;e=e||{};var d={};for(t in e)n=e[t],c(t)?d[t]=n:(r=t.toLowerCase(),l.call(s,r)?d[(u=s[r]).propertyName]=!!(u.hasBooleanValue||u.hasOverloadedBooleanValue&&!n)||n:l.call(i,t)?d[(u=i[t]).propertyName]=n:o.PRESERVE_CUSTOM_ATTRIBUTES&&(d[t]=n));return a(e.style,d),d}},function(e,t,r){var n=r(3),o=r(84).default,a={reactCompat:!0},s=n.version.split(".")[0]>=16;e.exports={PRESERVE_CUSTOM_ATTRIBUTES:s,invertObject:function(e,t){if(!e||"object"!=typeof e)throw new TypeError("First argument must be an object");var r,n,o="function"==typeof t,a={},s={};for(r in e)n=e[r],o&&(a=t(r,n))&&2===a.length?s[a[0]]=a[1]:"string"==typeof n&&(s[n]=r);return s},isCustomComponent:function(e,t){if(-1===e.indexOf("-"))return t&&"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}},setStyleProp:function(e,t){null!=e&&(t.style=o(e,a))}}},function(e,t,r){for(var n,o=r(90).CASE_SENSITIVE_TAG_NAMES,a={},s=0,i=o.length;s<i;s++)n=o[s],a[n.toLowerCase()]=n;function c(e){for(var t,r={},n=0,o=e.length;n<o;n++)r[(t=e[n]).name]=t.value;return r}function l(e){return function(e){return a[e]}(e=e.toLowerCase())||e}e.exports={formatAttributes:c,formatDOM:function e(t,r,n){r=r||null;for(var o,a,s,i=[],u=0,d=t.length;u<d;u++){switch(o=t[u],s={next:null,prev:i[u-1]||null,parent:r},(a=i[u-1])&&(a.next=s),"#"!==o.nodeName[0]&&(s.name=l(o.nodeName),s.attribs={},o.attributes&&o.attributes.length&&(s.attribs=c(o.attributes))),o.nodeType){case 1:"script"===s.name||"style"===s.name?s.type=s.name:s.type="tag",s.children=e(o.childNodes,s);break;case 3:s.type="text",s.data=o.nodeValue;break;case 8:s.type="comment",s.data=o.nodeValue}i.push(s)}return n&&(i.unshift({name:n.substring(0,n.indexOf(" ")).toLowerCase(),data:n,type:"directive",next:i[0]?i[0]:null,prev:null,parent:r}),i[1]&&(i[1].prev=i[0])),i},isIE:function(e){return e?document.documentMode===e:/(MSIE |Trident\/|Edge\/)/.test(navigator.userAgent)}}},function(e,t,r){"use strict";r.d(t,"b",(function(){return a})),r.d(t,"a",(function(){return s}));var n=r(0);const o=Object(n.createContext)({setIsSuppressed:e=>{},isSuppressed:!1}),a=()=>Object(n.useContext)(o),s=e=>{let{children:t}=e;const[r,a]=Object(n.useState)(!1),s={setIsSuppressed:a,isSuppressed:r};return Object(n.createElement)(o.Provider,{value:s},t)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t){const r=Object(n.useRef)();return Object(n.useEffect)(()=>{r.current===e||t&&!t(e,r.current)||(r.current=e)},[e,t]),r.current}},function(e,t,r){var n=r(79),o=r(54),a=r(88),s={decodeEntities:!0,lowerCaseAttributeNames:!1};function i(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");return""===e?[]:n(a(e,(t=t||{}).htmlparser2||s),t)}i.domToReact=n,i.htmlToDOM=a,i.attributesToProps=o,e.exports=i,e.exports.default=i},,function(e,t,r){"use strict";r.d(t,"a",(function(){return n})),r.d(t,"b",(function(){return o}));const n=e=>!(e=>null===e)(e)&&e instanceof Object&&e.constructor===Object;function o(e,t){return n(e)&&t in e}},,function(e,t){var r,n,o=e.exports={};function a(){throw new Error("setTimeout has not been defined")}function s(){throw new Error("clearTimeout has not been defined")}function i(e){if(r===setTimeout)return setTimeout(e,0);if((r===a||!r)&&setTimeout)return r=setTimeout,setTimeout(e,0);try{return r(e,0)}catch(t){try{return r.call(null,e,0)}catch(t){return r.call(this,e,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:a}catch(e){r=a}try{n="function"==typeof clearTimeout?clearTimeout:s}catch(e){n=s}}();var c,l=[],u=!1,d=-1;function p(){u&&c&&(u=!1,c.length?l=c.concat(l):d=-1,l.length&&f())}function f(){if(!u){var e=i(p);u=!0;for(var t=l.length;t;){for(c=l,l=[];++d<t;)c&&c[d].run();d=-1,t=l.length}c=null,u=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===s||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function m(e,t){this.fun=e,this.array=t}function h(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];l.push(new m(e,t)),1!==l.length||u||i(f)},m.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=h,o.addListener=h,o.once=h,o.off=h,o.removeListener=h,o.removeAllListeners=h,o.emit=h,o.prependListener=h,o.prependOnceListener=h,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},function(e,t,r){"use strict";r.d(t,"a",(function(){return u}));var n=r(5),o=r(7),a=r(0),s=r(12),i=r.n(s),c=r(61),l=r(67);const u=()=>{const{shippingRates:e,needsShipping:t,hasCalculatedShipping:r,isLoadingRates:s}=Object(o.useSelect)(e=>{const t=e(n.CART_STORE_KEY);return{shippingRates:t.getShippingRates(),needsShipping:t.getNeedsShipping(),hasCalculatedShipping:t.getHasCalculatedShipping(),isLoadingRates:t.isCustomerDataUpdating()}}),{isSelectingRate:u,selectShippingRate:d}=Object(l.a)(),p=Object(a.useRef)({});return Object(a.useEffect)(()=>{const t=(e=>Object.fromEntries(e.map(e=>{var t;let{package_id:r,shipping_rates:n}=e;return[r,null===(t=n.find(e=>e.selected))||void 0===t?void 0:t.rate_id]})))(e);Object(c.a)(t)&&!i()(p.current,t)&&(p.current=t)},[e]),{isSelectingRate:u,selectedRates:p.current,selectShippingRate:d,shippingRates:e,needsShipping:t,hasCalculatedShipping:r,isLoadingRates:s}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return a}));var n=r(7),o=r(5);const a=()=>{const{customerData:e,isInitialized:t}=Object(n.useSelect)(e=>{const t=e(o.CART_STORE_KEY);return{customerData:t.getCustomerData(),isInitialized:t.hasFinishedResolution("getCartData")}}),{setShippingAddress:r,setBillingData:a}=Object(n.useDispatch)(o.CART_STORE_KEY);return{isInitialized:t,billingData:e.billingData,shippingAddress:e.shippingAddress,setBillingData:a,setShippingAddress:r}}},function(e,t,r){"use strict";r.d(t,"b",(function(){return v})),r.d(t,"a",(function(){return O}));var n=r(0);const o={NONE:"none",INVALID_ADDRESS:"invalid_address",UNKNOWN:"unknown_error"},a={INVALID_COUNTRY:"woocommerce_rest_cart_shipping_rates_invalid_country",MISSING_COUNTRY:"woocommerce_rest_cart_shipping_rates_missing_country",INVALID_STATE:"woocommerce_rest_cart_shipping_rates_invalid_state"},s={shippingErrorStatus:{isPristine:!0,isValid:!1,hasInvalidAddress:!1,hasError:!1},dispatchErrorStatus:()=>null,shippingErrorTypes:o,shippingRates:[],isLoadingRates:!1,selectedRates:[],setSelectedRates:()=>null,shippingAddress:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:""},setShippingAddress:()=>null,onShippingRateSuccess:()=>null,onShippingRateFail:()=>null,onShippingRateSelectSuccess:()=>null,onShippingRateSelectFail:()=>null,needsShipping:!1},i=(e,t)=>{let{type:r}=t;return Object.values(o).includes(r)?r:e};var c=r(91),l=r(197);const u=e=>({onSuccess:Object(l.a)("shipping_rates_success",e),onFail:Object(l.a)("shipping_rates_fail",e),onSelectSuccess:Object(l.a)("shipping_rate_select_success",e),onSelectFail:Object(l.a)("shipping_rate_select_fail",e)});var d=r(199),p=r(34),f=r(31),m=r(67),h=r(64);const{NONE:b,INVALID_ADDRESS:g,UNKNOWN:E}=o,y=Object(n.createContext)(s),v=()=>Object(n.useContext)(y),O=e=>{let{children:t}=e;const{dispatchActions:r}=Object(p.b)(),{shippingRates:s,isLoadingRates:l,cartErrors:v}=Object(f.a)(),{isSelectingRate:O}=Object(m.a)(),{selectedRates:S}=Object(h.a)(),[_,k]=Object(n.useReducer)(i,b),[w,j]=Object(n.useReducer)(c.b,{}),R=Object(n.useRef)(w),C=Object(n.useMemo)(()=>({onShippingRateSuccess:u(j).onSuccess,onShippingRateFail:u(j).onFail,onShippingRateSelectSuccess:u(j).onSelectSuccess,onShippingRateSelectFail:u(j).onSelectFail}),[j]);Object(n.useEffect)(()=>{R.current=w},[w]),Object(n.useEffect)(()=>{l?r.incrementCalculating():r.decrementCalculating()},[l,r]),Object(n.useEffect)(()=>{O?r.incrementCalculating():r.decrementCalculating()},[O,r]),Object(n.useEffect)(()=>{v.length>0&&v.some(e=>!(!e.code||!Object.values(a).includes(e.code)))?k({type:g}):k({type:b})},[v]);const T=Object(n.useMemo)(()=>({isPristine:_===b,isValid:_===b,hasInvalidAddress:_===g,hasError:_===E||_===g}),[_]);Object(n.useEffect)(()=>{l||0!==s.length&&!T.hasError||Object(d.a)(R.current,"shipping_rates_fail",{hasInvalidAddress:T.hasInvalidAddress,hasError:T.hasError})},[s,l,T.hasError,T.hasInvalidAddress]),Object(n.useEffect)(()=>{!l&&s.length>0&&!T.hasError&&Object(d.a)(R.current,"shipping_rates_success",s)},[s,l,T.hasError]),Object(n.useEffect)(()=>{O||(T.hasError?Object(d.a)(R.current,"shipping_rate_select_fail",{hasError:T.hasError,hasInvalidAddress:T.hasInvalidAddress}):Object(d.a)(R.current,"shipping_rate_select_success",S.current))},[S,O,T.hasError,T.hasInvalidAddress]);const A={shippingErrorStatus:T,dispatchErrorStatus:k,shippingErrorTypes:o,...C};return Object(n.createElement)(n.Fragment,null,Object(n.createElement)(y.Provider,{value:A},t))}},function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(7),o=r(0),a=r(5),s=r(72),i=r(40);const c=()=>{const e=Object(s.a)(),{dispatchCheckoutEvent:t}=Object(i.a)(),{selectShippingRate:r}=Object(n.useDispatch)(a.CART_STORE_KEY);return{selectShippingRate:Object(o.useCallback)((n,o)=>{r(n,o).then(()=>{t("set-selected-shipping-rate",{shippingRateId:n})}).catch(t=>{e(t)})},[r,t,e]),isSelectingRate:Object(n.useSelect)(e=>e(a.CART_STORE_KEY).isShippingRateBeingSelected(),[])}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"d",(function(){return s})),r.d(t,"c",(function(){return i})),r.d(t,"b",(function(){return c}));const n=window.CustomEvent||null,o=(e,t)=>{let{bubbles:r=!1,cancelable:o=!1,element:a,detail:s={}}=t;if(!n)return;a||(a=document.body);const i=new n(e,{bubbles:r,cancelable:o,detail:s});a.dispatchEvent(i)};let a;const s=()=>{a&&clearTimeout(a),a=setTimeout(()=>{o("wc_fragment_refresh",{bubbles:!0,cancelable:!0})},50)},i=e=>{let{preserveCartData:t=!1}=e;o("wc-blocks_added_to_cart",{bubbles:!0,cancelable:!0,detail:{preserveCartData:t}})},c=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof jQuery)return()=>{};const a=()=>{o(t,{bubbles:r,cancelable:n})};return jQuery(document).on(e,a),()=>jQuery(document).off(e,a)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"number"==typeof e},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(0);const o=()=>{const[,e]=Object(n.useState)();return Object(n.useCallback)(t=>{e(()=>{throw t})},[])}},function(e,t,r){"use strict";var n=r(11),o=r.n(n),a=r(0);r(107);const s=e=>{if(!e)return;const t=e.getBoundingClientRect().bottom;t>=0&&t<=window.innerHeight||e.scrollIntoView()};t.a=e=>t=>{const r=Object(a.useRef)(null);return Object(a.createElement)(a.Fragment,null,Object(a.createElement)("div",{className:"with-scroll-to-top__scroll-point",ref:r,"aria-hidden":!0}),Object(a.createElement)(e,o()({},t,{scrollToTop:e=>{null!==r.current&&((e,t)=>{const{focusableSelector:r}=t||{};window&&Number.isFinite(window.innerHeight)&&(r?((e,t)=>{var r;const n=(null===(r=e.parentElement)||void 0===r?void 0:r.querySelectorAll(t))||[];if(n.length){const e=n[0];s(e),null==e||e.focus()}else s(e)})(e,r):s(e))})(r.current,e)}})))}},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"b",(function(){return a}));var n=r(7);const o=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0;const r=Object(n.select)("core/notices").getNotices(e);return r.some(e=>e.type===t)},a=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";const r=Object(n.select)("core/notices").getNotices(),{removeNotice:o}=Object(n.dispatch)("core/notices"),a=r.filter(t=>t.status===e);a.forEach(e=>o(e.id,t))}},function(e,t){},function(e,t,r){var n=r(3),o=r(54),a=r(55),s=a.setStyleProp;function i(e){return a.PRESERVE_CUSTOM_ATTRIBUTES&&"tag"===e.type&&a.isCustomComponent(e.name,e.attribs)}e.exports=function e(t,r){for(var a,c,l,u,d=(r=r||{}).library||n,p=d.cloneElement,f=d.createElement,m=d.isValidElement,h=[],b="function"==typeof r.replace,g=r.trim,E=0,y=t.length;E<y;E++)if(a=t[E],b&&m(c=r.replace(a)))y>1&&(c=p(c,{key:c.key||E})),h.push(c);else if("text"!==a.type){switch(l=a.attribs,i(a)?s(l.style,l):l&&(l=o(l)),u=null,a.type){case"script":case"style":a.children[0]&&(l.dangerouslySetInnerHTML={__html:a.children[0].data});break;case"tag":"textarea"===a.name&&a.children[0]?l.defaultValue=a.children[0].data:a.children&&a.children.length&&(u=e(a.children,r));break;default:continue}y>1&&(l.key=E),h.push(f(a.name,l,u))}else g?a.data.trim()&&h.push(a.data):h.push(a.data);return 1===h.length?h[0]:h}},function(e,t,r){var n=r(81),o=r(82),a=r(83),s=a.MUST_USE_PROPERTY,i=a.HAS_BOOLEAN_VALUE,c=a.HAS_NUMERIC_VALUE,l=a.HAS_POSITIVE_NUMERIC_VALUE,u=a.HAS_OVERLOADED_BOOLEAN_VALUE;function d(e,t){return(e&t)===t}function p(e,t,r){var n,o,a,p=e.Properties,f=e.DOMAttributeNames;for(o in p)n=f[o]||(r?o:o.toLowerCase()),a=p[o],t[n]={attributeName:n,propertyName:o,mustUseProperty:d(a,s),hasBooleanValue:d(a,i),hasNumericValue:d(a,c),hasPositiveNumericValue:d(a,l),hasOverloadedBooleanValue:d(a,u)}}var f={};p(n,f);var m={};p(o,m,!0);var h={};p(n,h),p(o,h,!0),e.exports={html:f,svg:m,properties:h,isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"))}},function(e,t){e.exports={Properties:{autoFocus:4,accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:4,allowTransparency:0,alt:0,as:0,async:4,autoComplete:0,autoPlay:4,capture:4,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:5,cite:0,classID:0,className:0,cols:24,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:4,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:4,defer:4,dir:0,disabled:4,download:32,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:4,formTarget:0,frameBorder:0,headers:0,height:0,hidden:4,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:4,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:5,muted:5,name:0,nonce:0,noValidate:4,open:4,optimum:0,pattern:0,placeholder:0,playsInline:4,poster:0,preload:0,profile:0,radioGroup:0,readOnly:4,referrerPolicy:0,rel:0,required:4,reversed:4,role:0,rows:24,rowSpan:8,sandbox:0,scope:0,scoped:4,scrolling:0,seamless:4,selected:5,shape:0,size:24,sizes:0,span:24,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:8,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:4,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"}}},function(e,t){e.exports={Properties:{accentHeight:0,accumulate:0,additive:0,alignmentBaseline:0,allowReorder:0,alphabetic:0,amplitude:0,arabicForm:0,ascent:0,attributeName:0,attributeType:0,autoReverse:0,azimuth:0,baseFrequency:0,baseProfile:0,baselineShift:0,bbox:0,begin:0,bias:0,by:0,calcMode:0,capHeight:0,clip:0,clipPath:0,clipRule:0,clipPathUnits:0,colorInterpolation:0,colorInterpolationFilters:0,colorProfile:0,colorRendering:0,contentScriptType:0,contentStyleType:0,cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:0,direction:0,display:0,divisor:0,dominantBaseline:0,dur:0,dx:0,dy:0,edgeMode:0,elevation:0,enableBackground:0,end:0,exponent:0,externalResourcesRequired:0,fill:0,fillOpacity:0,fillRule:0,filter:0,filterRes:0,filterUnits:0,floodColor:0,floodOpacity:0,focusable:0,fontFamily:0,fontSize:0,fontSizeAdjust:0,fontStretch:0,fontStyle:0,fontVariant:0,fontWeight:0,format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:0,glyphOrientationHorizontal:0,glyphOrientationVertical:0,glyphRef:0,gradientTransform:0,gradientUnits:0,hanging:0,horizAdvX:0,horizOriginX:0,ideographic:0,imageRendering:0,in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:0,kernelUnitLength:0,kerning:0,keyPoints:0,keySplines:0,keyTimes:0,lengthAdjust:0,letterSpacing:0,lightingColor:0,limitingConeAngle:0,local:0,markerEnd:0,markerMid:0,markerStart:0,markerHeight:0,markerUnits:0,markerWidth:0,mask:0,maskContentUnits:0,maskUnits:0,mathematical:0,mode:0,numOctaves:0,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:0,overlineThickness:0,paintOrder:0,panose1:0,pathLength:0,patternContentUnits:0,patternTransform:0,patternUnits:0,pointerEvents:0,points:0,pointsAtX:0,pointsAtY:0,pointsAtZ:0,preserveAlpha:0,preserveAspectRatio:0,primitiveUnits:0,r:0,radius:0,refX:0,refY:0,renderingIntent:0,repeatCount:0,repeatDur:0,requiredExtensions:0,requiredFeatures:0,restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:0,slope:0,spacing:0,specularConstant:0,specularExponent:0,speed:0,spreadMethod:0,startOffset:0,stdDeviation:0,stemh:0,stemv:0,stitchTiles:0,stopColor:0,stopOpacity:0,strikethroughPosition:0,strikethroughThickness:0,string:0,stroke:0,strokeDasharray:0,strokeDashoffset:0,strokeLinecap:0,strokeLinejoin:0,strokeMiterlimit:0,strokeOpacity:0,strokeWidth:0,surfaceScale:0,systemLanguage:0,tableValues:0,targetX:0,targetY:0,textAnchor:0,textDecoration:0,textRendering:0,textLength:0,to:0,transform:0,u1:0,u2:0,underlinePosition:0,underlineThickness:0,unicode:0,unicodeBidi:0,unicodeRange:0,unitsPerEm:0,vAlphabetic:0,vHanging:0,vIdeographic:0,vMathematical:0,values:0,vectorEffect:0,version:0,vertAdvY:0,vertOriginX:0,vertOriginY:0,viewBox:0,viewTarget:0,visibility:0,widths:0,wordSpacing:0,writingMode:0,x:0,xHeight:0,x1:0,x2:0,xChannelSelector:0,xlinkActuate:0,xlinkArcrole:0,xlinkHref:0,xlinkRole:0,xlinkShow:0,xlinkTitle:0,xlinkType:0,xmlBase:0,xmlns:0,xmlnsXlink:0,xmlLang:0,xmlSpace:0,y:0,y1:0,y2:0,yChannelSelector:0,z:0,zoomAndPan:0},DOMAttributeNames:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space"}}},function(e,t){e.exports={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32}},function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};t.__esModule=!0;var o=n(r(85)),a=r(87);t.default=function(e,t){var r={};return e&&"string"==typeof e?(o.default(e,(function(e,n){e&&n&&(r[a.camelCase(e,t)]=n)})),r):r}},function(e,t,r){var n=r(86);e.exports=function(e,t){var r,o=null;if(!e||"string"!=typeof e)return o;for(var a,s,i=n(e),c="function"==typeof t,l=0,u=i.length;l<u;l++)a=(r=i[l]).property,s=r.value,c?t(a,s,r):s&&(o||(o={}),o[a]=s);return o}},function(e,t){var r=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,n=/\n/g,o=/^\s*/,a=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,s=/^:\s*/,i=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,c=/^[;\s]*/,l=/^\s+|\s+$/g;function u(e){return e?e.replace(l,""):""}e.exports=function(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];t=t||{};var l=1,d=1;function p(e){var t=e.match(n);t&&(l+=t.length);var r=e.lastIndexOf("\n");d=~r?e.length-r:d+e.length}function f(){var e={line:l,column:d};return function(t){return t.position=new m(e),E(),t}}function m(e){this.start=e,this.end={line:l,column:d},this.source=t.source}m.prototype.content=e;var h=[];function b(r){var n=new Error(t.source+":"+l+":"+d+": "+r);if(n.reason=r,n.filename=t.source,n.line=l,n.column=d,n.source=e,!t.silent)throw n;h.push(n)}function g(t){var r=t.exec(e);if(r){var n=r[0];return p(n),e=e.slice(n.length),r}}function E(){g(o)}function y(e){var t;for(e=e||[];t=v();)!1!==t&&e.push(t);return e}function v(){var t=f();if("/"==e.charAt(0)&&"*"==e.charAt(1)){for(var r=2;""!=e.charAt(r)&&("*"!=e.charAt(r)||"/"!=e.charAt(r+1));)++r;if(r+=2,""===e.charAt(r-1))return b("End of comment missing");var n=e.slice(2,r-2);return d+=2,p(n),e=e.slice(r),d+=2,t({type:"comment",comment:n})}}function O(){var e=f(),t=g(a);if(t){if(v(),!g(s))return b("property missing ':'");var n=g(i),o=e({type:"declaration",property:u(t[0].replace(r,"")),value:n?u(n[0].replace(r,"")):""});return g(c),o}}return E(),function(){var e,t=[];for(y(t);e=O();)!1!==e&&(t.push(e),y(t));return t}()}},function(e,t,r){"use strict";t.__esModule=!0,t.camelCase=void 0;var n=/^--[a-zA-Z0-9-]+$/,o=/-([a-z])/g,a=/^[^-]+$/,s=/^-(webkit|moz|ms|o|khtml)-/,i=function(e,t){return t.toUpperCase()},c=function(e,t){return t+"-"};t.camelCase=function(e,t){return void 0===t&&(t={}),function(e){return!e||a.test(e)||n.test(e)}(e)?e:(e=e.toLowerCase(),t.reactCompat||(e=e.replace(s,c)),e.replace(o,i))}},function(e,t,r){var n=r(89),o=r(56),a=o.formatDOM,s=o.isIE(9),i=/<(![a-zA-Z\s]+)>/;e.exports=function(e){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];var t,r=e.match(i);return r&&r[1]&&(t=r[1],s&&(e=e.replace(r[0],""))),a(n(e),null,t)}},function(e,t,r){var n=r(56),o=/<([a-zA-Z]+[0-9]?)/,a=/<head.*>/i,s=/<body.*>/i,i=/<(area|base|br|col|embed|hr|img|input|keygen|link|menuitem|meta|param|source|track|wbr)(.*?)\/?>/gi,c=n.isIE(9),l=c||n.isIE(),u=function(){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},d=function(){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")};if("function"==typeof window.DOMParser){var p=new window.DOMParser,f=c?"text/xml":"text/html";u=d=function(e,t){return t&&(e="<"+t+">"+e+"</"+t+">"),c&&(e=e.replace(i,"<$1$2$3/>")),p.parseFromString(e,f)}}if(document.implementation){var m=document.implementation.createHTMLDocument(l?"html-dom-parser":void 0);u=function(e,t){if(t)return m.documentElement.getElementsByTagName(t)[0].innerHTML=e,m;try{return m.documentElement.innerHTML=e,m}catch(t){if(d)return d(e)}}}var h,b=document.createElement("template");b.content&&(h=function(e){return b.innerHTML=e,b.content.childNodes}),e.exports=function(e){var t,r,n,i,c=e.match(o);switch(c&&c[1]&&(t=c[1].toLowerCase()),t){case"html":return r=d(e),a.test(e)||(n=r.getElementsByTagName("head")[0])&&n.parentNode.removeChild(n),s.test(e)||(n=r.getElementsByTagName("body")[0])&&n.parentNode.removeChild(n),r.getElementsByTagName("html");case"head":case"body":return i=u(e).getElementsByTagName(t),s.test(e)&&a.test(e)?i[0].parentNode.childNodes:i;default:return h?h(e):u(e,"body").getElementsByTagName("body")[0].childNodes}}},function(e,t){e.exports={CASE_SENSITIVE_TAG_NAMES:["animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussainBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","linearGradient","radialGradient","textPath"]}},function(e,t,r){"use strict";r.d(t,"a",(function(){return a})),r.d(t,"b",(function(){return i}));var n=r(6);let o;!function(e){e.ADD_EVENT_CALLBACK="add_event_callback",e.REMOVE_EVENT_CALLBACK="remove_event_callback"}(o||(o={}));const a={addEventCallback:function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10;return{id:Object(n.uniqueId)(),type:o.ADD_EVENT_CALLBACK,eventType:e,callback:t,priority:r}},removeEventCallback:(e,t)=>({id:t,type:o.REMOVE_EVENT_CALLBACK,eventType:e})},s={},i=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:s,{type:t,eventType:r,id:n,callback:a,priority:i}=arguments.length>1?arguments[1]:void 0;const c=e.hasOwnProperty(r)?new Map(e[r]):new Map;switch(t){case o.ADD_EVENT_CALLBACK:return c.set(n,{priority:i,callback:a}),{...e,[r]:c};case o.REMOVE_EVENT_CALLBACK:return c.delete(n),{...e,[r]:c}}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return a})),r.d(t,"b",(function(){return s}));var n=r(1),o=r(18);const a=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},s=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(o.decodeEntities)(e.message):Object(n.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},function(e,t,r){"use strict";var n=r(0),o=r(15);const a=Object(n.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(n.createElement)(o.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));t.a=a},function(e,t,r){"use strict";var n=r(0),o=r(6),a=r(4),s=r.n(a),i=r(1),c=r(20),l=r(93),u=r(50);function d(e){switch(e){case"success":case"warning":case"info":return"polite";case"error":default:return"assertive"}}t.a=function({className:e,status:t="info",children:r,spokenMessage:a=r,onRemove:p=o.noop,isDismissible:f=!0,actions:m=[],politeness:h=d(t),__unstableHTML:b,onDismiss:g=o.noop}){!function(e,t){const r="string"==typeof e?e:Object(n.renderToString)(e);Object(n.useEffect)(()=>{r&&Object(c.speak)(r,t)},[r,t])}(a,h);const E=s()(e,"components-notice","is-"+t,{"is-dismissible":f});return b&&(r=Object(n.createElement)(n.RawHTML,null,r)),Object(n.createElement)("div",{className:E},Object(n.createElement)("div",{className:"components-notice__content"},r,Object(n.createElement)("div",{className:"components-notice__actions"},m.map(({className:e,label:t,isPrimary:r,variant:o,noDefaultClasses:a=!1,onClick:i,url:c},l)=>{let d=o;return"primary"===o||a||(d=c?"link":"secondary"),void 0===d&&r&&(d="primary"),Object(n.createElement)(u.a,{key:l,href:c,variant:d,onClick:c?void 0:i,className:s()("components-notice__action",e)},t)}))),f&&Object(n.createElement)(u.a,{className:"components-notice__dismiss",icon:l.a,label:Object(i.__)("Dismiss this notice"),onClick:e=>{var t;null==e||null===(t=e.preventDefault)||void 0===t||t.call(e),g(),p()},showTooltip:!1}))}},function(e,t,r){"use strict";function n(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(t,"__esModule",{value:!0});var o=n(r(11)),a=n(r(128)),s=r(3),i=n(s),c=n(r(129)),l=n(r(131)),u={arr:Array.isArray,obj:function(e){return"[object Object]"===Object.prototype.toString.call(e)},fun:function(e){return"function"==typeof e},str:function(e){return"string"==typeof e},num:function(e){return"number"==typeof e},und:function(e){return void 0===e},nul:function(e){return null===e},set:function(e){return e instanceof Set},map:function(e){return e instanceof Map},equ:function(e,t){if(typeof e!=typeof t)return!1;if(u.str(e)||u.num(e))return e===t;if(u.obj(e)&&u.obj(t)&&Object.keys(e).length+Object.keys(t).length===0)return!0;var r;for(r in e)if(!(r in t))return!1;for(r in t)if(e[r]!==t[r])return!1;return!u.und(r)||e===t}};function d(){var e=s.useState(!1)[1];return s.useCallback((function(){return e((function(e){return!e}))}),[])}function p(e,t){return u.und(e)||u.nul(e)?t:e}function f(e){return u.und(e)?[]:u.arr(e)?e:[e]}function m(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return u.fun(e)?e.apply(void 0,r):e}function h(e){var t=function(e){return e.to,e.from,e.config,e.onStart,e.onRest,e.onFrame,e.children,e.reset,e.reverse,e.force,e.immediate,e.delay,e.attach,e.destroyed,e.interpolateTo,e.ref,e.lazy,a(e,["to","from","config","onStart","onRest","onFrame","children","reset","reverse","force","immediate","delay","attach","destroyed","interpolateTo","ref","lazy"])}(e);if(u.und(t))return o({to:t},e);var r=Object.keys(e).reduce((function(r,n){var a;return u.und(t[n])?o({},r,((a={})[n]=e[n],a)):r}),{});return o({to:t},r)}var b,g,E=function(){function e(){this.payload=void 0,this.children=[]}var t=e.prototype;return t.getAnimatedValue=function(){return this.getValue()},t.getPayload=function(){return this.payload||this},t.attach=function(){},t.detach=function(){},t.getChildren=function(){return this.children},t.addChild=function(e){0===this.children.length&&this.attach(),this.children.push(e)},t.removeChild=function(e){var t=this.children.indexOf(e);this.children.splice(t,1),0===this.children.length&&this.detach()},e}(),y=function(e){function t(){for(var t,r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];return(t=e.call.apply(e,[this].concat(n))||this).payload=[],t.attach=function(){return t.payload.forEach((function(e){return e instanceof E&&e.addChild(l(t))}))},t.detach=function(){return t.payload.forEach((function(e){return e instanceof E&&e.removeChild(l(t))}))},t}return c(t,e),t}(E),v=function(e){function t(){for(var t,r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];return(t=e.call.apply(e,[this].concat(n))||this).payload={},t.attach=function(){return Object.values(t.payload).forEach((function(e){return e instanceof E&&e.addChild(l(t))}))},t.detach=function(){return Object.values(t.payload).forEach((function(e){return e instanceof E&&e.removeChild(l(t))}))},t}c(t,e);var r=t.prototype;return r.getValue=function(e){void 0===e&&(e=!1);var t={};for(var r in this.payload){var n=this.payload[r];(!e||n instanceof E)&&(t[r]=n instanceof E?n[e?"getAnimatedValue":"getValue"]():n)}return t},r.getAnimatedValue=function(){return this.getValue(!0)},t}(E);function O(e,t){b={fn:e,transform:t}}function S(e){g=e}var _,k=function(e){return"undefined"!=typeof window?window.requestAnimationFrame(e):-1},w=function(e){"undefined"!=typeof window&&window.cancelAnimationFrame(e)};function j(e){_=e}var R,C=function(){return Date.now()};function T(e){R=e}var A,x,P=function(e){return e.current};function M(e){A=e}var N=Object.freeze({get applyAnimatedValues(){return b},injectApplyAnimatedValues:O,get colorNames(){return g},injectColorNames:S,get requestFrame(){return k},get cancelFrame(){return w},injectFrame:function(e,t){k=e,w=t},get interpolation(){return _},injectStringInterpolator:j,get now(){return C},injectNow:function(e){C=e},get defaultElement(){return R},injectDefaultElement:T,get animatedApi(){return P},injectAnimatedApi:function(e){P=e},get createAnimatedStyle(){return A},injectCreateAnimatedStyle:M,get manualFrameloop(){return x},injectManualFrameloop:function(e){x=e}}),I=function(e){function t(t,r){var n;return(n=e.call(this)||this).update=void 0,n.payload=t.style?o({},t,{style:A(t.style)}):t,n.update=r,n.attach(),n}return c(t,e),t}(v),D=!1,L=new Set,F=function e(){if(!D)return!1;var t=C(),r=L,n=Array.isArray(r),o=0;for(r=n?r:r[Symbol.iterator]();;){var a;if(n){if(o>=r.length)break;a=r[o++]}else{if((o=r.next()).done)break;a=o.value}for(var s=a,i=!1,c=0;c<s.configs.length;c++){for(var l=s.configs[c],u=void 0,d=void 0,p=0;p<l.animatedValues.length;p++){var f=l.animatedValues[p];if(!f.done){var m=l.fromValues[p],h=l.toValues[p],b=f.lastPosition,g=h instanceof E,y=Array.isArray(l.initialVelocity)?l.initialVelocity[p]:l.initialVelocity;if(g&&(h=h.getValue()),l.immediate)f.setValue(h),f.done=!0;else if("string"!=typeof m&&"string"!=typeof h){if(void 0!==l.duration)b=m+l.easing((t-f.startTime)/l.duration)*(h-m),u=t>=f.startTime+l.duration;else if(l.decay)b=m+y/(1-.998)*(1-Math.exp(-(1-.998)*(t-f.startTime))),(u=Math.abs(f.lastPosition-b)<.1)&&(h=b);else{d=void 0!==f.lastTime?f.lastTime:t,y=void 0!==f.lastVelocity?f.lastVelocity:l.initialVelocity,t>d+64&&(d=t);for(var v=Math.floor(t-d),O=0;O<v;++O)b+=1*(y+=(-l.tension*(b-h)+-l.friction*y)/l.mass*1/1e3)/1e3;var S=!(!l.clamp||0===l.tension)&&(m<h?b>h:b<h),_=Math.abs(y)<=l.precision,w=0===l.tension||Math.abs(h-b)<=l.precision;u=S||_&&w,f.lastVelocity=y,f.lastTime=t}g&&!l.toValues[p].done&&(u=!1),u?(f.value!==h&&(b=h),f.done=!0):i=!0,f.setValue(b),f.lastPosition=b}else f.setValue(h),f.done=!0}}s.props.onFrame&&(s.values[l.name]=l.interpolation.getValue())}s.props.onFrame&&s.props.onFrame(s.values),i||(L.delete(s),s.stop(!0))}return L.size?x?x():k(e):D=!1,D};function V(e,t,r){if("function"==typeof e)return e;if(Array.isArray(e))return V({range:e,output:t,extrapolate:r});if(_&&"string"==typeof e.output[0])return _(e);var n=e,o=n.output,a=n.range||[0,1],s=n.extrapolateLeft||n.extrapolate||"extend",i=n.extrapolateRight||n.extrapolate||"extend",c=n.easing||function(e){return e};return function(e){var t=function(e,t){for(var r=1;r<t.length-1&&!(t[r]>=e);++r);return r-1}(e,a);return function(e,t,r,n,o,a,s,i,c){var l=c?c(e):e;if(l<t){if("identity"===s)return l;"clamp"===s&&(l=t)}if(l>r){if("identity"===i)return l;"clamp"===i&&(l=r)}return n===o?n:t===r?e<=t?n:o:(t===-1/0?l=-l:r===1/0?l-=t:l=(l-t)/(r-t),l=a(l),n===-1/0?l=-l:o===1/0?l+=n:l=l*(o-n)+n,l)}(e,a[t],a[t+1],o[t],o[t+1],c,s,i,n.map)}}var B=function(e){function t(r,n,o,a){var s;return(s=e.call(this)||this).calc=void 0,s.payload=r instanceof y&&!(r instanceof t)?r.getPayload():Array.isArray(r)?r:[r],s.calc=V(n,o,a),s}c(t,e);var r=t.prototype;return r.getValue=function(){return this.calc.apply(this,this.payload.map((function(e){return e.getValue()})))},r.updateConfig=function(e,t,r){this.calc=V(e,t,r)},r.interpolate=function(e,r,n){return new t(this,e,r,n)},t}(y),U=function(e){function t(t){var r;return(r=e.call(this)||this).animatedStyles=new Set,r.value=void 0,r.startPosition=void 0,r.lastPosition=void 0,r.lastVelocity=void 0,r.startTime=void 0,r.lastTime=void 0,r.done=!1,r.setValue=function(e,t){void 0===t&&(t=!0),r.value=e,t&&r.flush()},r.value=t,r.startPosition=t,r.lastPosition=t,r}c(t,e);var r=t.prototype;return r.flush=function(){0===this.animatedStyles.size&&function e(t,r){"update"in t?r.add(t):t.getChildren().forEach((function(t){return e(t,r)}))}(this,this.animatedStyles),this.animatedStyles.forEach((function(e){return e.update()}))},r.clearStyles=function(){this.animatedStyles.clear()},r.getValue=function(){return this.value},r.interpolate=function(e,t,r){return new B(this,e,t,r)},t}(E),H=function(e){function t(t){var r;return(r=e.call(this)||this).payload=t.map((function(e){return new U(e)})),r}c(t,e);var r=t.prototype;return r.setValue=function(e,t){var r=this;void 0===t&&(t=!0),Array.isArray(e)?e.length===this.payload.length&&e.forEach((function(e,n){return r.payload[n].setValue(e,t)})):this.payload.forEach((function(r){return r.setValue(e,t)}))},r.getValue=function(){return this.payload.map((function(e){return e.getValue()}))},r.interpolate=function(e,t){return new B(this,e,t)},t}(y),G=0,Y=function(){function e(){var e=this;this.id=void 0,this.idle=!0,this.hasChanged=!1,this.guid=0,this.local=0,this.props={},this.merged={},this.animations={},this.interpolations={},this.values={},this.configs=[],this.listeners=[],this.queue=[],this.localQueue=void 0,this.getValues=function(){return e.interpolations},this.id=G++}var t=e.prototype;return t.update=function(e){if(!e)return this;var t=h(e),r=t.delay,n=void 0===r?0:r,s=t.to,i=a(t,["delay","to"]);if(u.arr(s)||u.fun(s))this.queue.push(o({},i,{delay:n,to:s}));else if(s){var c={};Object.entries(s).forEach((function(e){var t,r=e[0],a=e[1],s=o({to:(t={},t[r]=a,t),delay:m(n,r)},i),l=c[s.delay]&&c[s.delay].to;c[s.delay]=o({},c[s.delay],s,{to:o({},l,s.to)})})),this.queue=Object.values(c)}return this.queue=this.queue.sort((function(e,t){return e.delay-t.delay})),this.diff(i),this},t.start=function(e){var t=this;if(this.queue.length){this.idle=!1,this.localQueue&&this.localQueue.forEach((function(e){var r=e.from,n=void 0===r?{}:r,a=e.to,s=void 0===a?{}:a;u.obj(n)&&(t.merged=o({},n,t.merged)),u.obj(s)&&(t.merged=o({},t.merged,s))}));var r=this.local=++this.guid,n=this.localQueue=this.queue;this.queue=[],n.forEach((function(o,s){var i=o.delay,c=a(o,["delay"]),l=function(o){s===n.length-1&&r===t.guid&&o&&(t.idle=!0,t.props.onRest&&t.props.onRest(t.merged)),e&&e()},d=u.arr(c.to)||u.fun(c.to);i?setTimeout((function(){r===t.guid&&(d?t.runAsync(c,l):t.diff(c).start(l))}),i):d?t.runAsync(c,l):t.diff(c).start(l)}))}else u.fun(e)&&this.listeners.push(e),this.props.onStart&&this.props.onStart(),this,L.has(this)||L.add(this),D||(D=!0,k(x||F));return this},t.stop=function(e){return this.listeners.forEach((function(t){return t(e)})),this.listeners=[],this},t.pause=function(e){return this.stop(!0),e&&(this,L.has(this)&&L.delete(this)),this},t.runAsync=function(e,t){var r=this,n=(e.delay,a(e,["delay"])),s=this.local,i=Promise.resolve(void 0);if(u.arr(n.to))for(var c=function(e){var t=e,a=o({},n,h(n.to[t]));u.arr(a.config)&&(a.config=a.config[t]),i=i.then((function(){if(s===r.guid)return new Promise((function(e){return r.diff(a).start(e)}))}))},l=0;l<n.to.length;l++)c(l);else if(u.fun(n.to)){var d,p=0;i=i.then((function(){return n.to((function(e){var t=o({},n,h(e));if(u.arr(t.config)&&(t.config=t.config[p]),p++,s===r.guid)return d=new Promise((function(e){return r.diff(t).start(e)}))}),(function(e){return void 0===e&&(e=!0),r.stop(e)})).then((function(){return d}))}))}i.then(t)},t.diff=function(e){var t=this;this.props=o({},this.props,e);var r=this.props,n=r.from,a=void 0===n?{}:n,s=r.to,i=void 0===s?{}:s,c=r.config,l=void 0===c?{}:c,d=r.reverse,h=r.attach,b=r.reset,E=r.immediate;if(d){var y=[i,a];a=y[0],i=y[1]}this.merged=o({},a,this.merged,i),this.hasChanged=!1;var v=h&&h(this);if(this.animations=Object.entries(this.merged).reduce((function(e,r){var n=r[0],s=r[1],i=e[n]||{},c=u.num(s),d=u.str(s)&&!s.startsWith("#")&&!/\d/.test(s)&&!g[s],h=u.arr(s),y=!c&&!h&&!d,O=u.und(a[n])?s:a[n],S=c||h||d?s:1,k=m(l,n);v&&(S=v.animations[n].parent);var w,j=i.parent,R=i.interpolation,T=f(v?S.getPayload():S),A=s;y&&(A=_({range:[0,1],output:[s,s]})(1));var x,P=R&&R.getValue(),M=!u.und(j)&&i.animatedValues.some((function(e){return!e.done})),N=!u.equ(A,P),I=!u.equ(A,i.previous),D=!u.equ(k,i.config);if(b||I&&N||D){var L;if(c||d)j=R=i.parent||new U(O);else if(h)j=R=i.parent||new H(O);else if(y){var F=i.interpolation&&i.interpolation.calc(i.parent.value);F=void 0===F||b?O:F,i.parent?(j=i.parent).setValue(0,!1):j=new U(0);var V={output:[F,s]};i.interpolation?(R=i.interpolation,i.interpolation.updateConfig(V)):R=j.interpolate(V)}return T=f(v?S.getPayload():S),w=f(j.getPayload()),b&&!y&&j.setValue(O,!1),t.hasChanged=!0,w.forEach((function(e){e.startPosition=e.value,e.lastPosition=e.value,e.lastVelocity=M?e.lastVelocity:void 0,e.lastTime=M?e.lastTime:void 0,e.startTime=C(),e.done=!1,e.animatedStyles.clear()})),m(E,n)&&j.setValue(y?S:s,!1),o({},e,((L={})[n]=o({},i,{name:n,parent:j,interpolation:R,animatedValues:w,toValues:T,previous:A,config:k,fromValues:f(j.getValue()),immediate:m(E,n),initialVelocity:p(k.velocity,0),clamp:p(k.clamp,!1),precision:p(k.precision,.01),tension:p(k.tension,170),friction:p(k.friction,26),mass:p(k.mass,1),duration:k.duration,easing:p(k.easing,(function(e){return e})),decay:k.decay}),L))}return N?e:(y&&(j.setValue(1,!1),R.updateConfig({output:[A,A]})),j.done=!0,t.hasChanged=!0,o({},e,((x={})[n]=o({},e[n],{previous:A}),x)))}),this.animations),this.hasChanged)for(var O in this.configs=Object.values(this.animations),this.values={},this.interpolations={},this.animations)this.interpolations[O]=this.animations[O].interpolation,this.values[O]=this.animations[O].interpolation.getValue();return this},t.destroy=function(){this.stop(),this.props={},this.merged={},this.animations={},this.interpolations={},this.values={},this.configs=[],this.local=0},e}(),z=function(e,t){var r=s.useRef(!1),n=s.useRef(),o=u.fun(t),a=s.useMemo((function(){var r;return n.current&&(n.current.map((function(e){return e.destroy()})),n.current=void 0),[new Array(e).fill().map((function(e,n){var a=new Y,s=o?m(t,n,a):t[n];return 0===n&&(r=s.ref),a.update(s),r||a.start(),a})),r]}),[e]),i=a[0],c=a[1];n.current=i,s.useImperativeHandle(c,(function(){return{start:function(){return Promise.all(n.current.map((function(e){return new Promise((function(t){return e.start(t)}))})))},stop:function(e){return n.current.forEach((function(t){return t.stop(e)}))},get controllers(){return n.current}}}));var l=s.useMemo((function(){return function(e){return n.current.map((function(t,r){t.update(o?m(e,r,t):e[r]),c||t.start()}))}}),[e]);s.useEffect((function(){r.current?o||l(t):c||n.current.forEach((function(e){return e.start()}))})),s.useEffect((function(){return r.current=!0,function(){return n.current.forEach((function(e){return e.destroy()}))}}),[]);var d=n.current.map((function(e){return e.getValues()}));return o?[d,l,function(e){return n.current.forEach((function(t){return t.pause(e)}))}]:d},q=0,W=function(e,t){return("function"==typeof t?e.map(t):f(t)).map(String)},X=function(e){var t=e.items,r=e.keys,n=void 0===r?function(e){return e}:r,s=a(e,["items","keys"]);return t=f(void 0!==t?t:null),o({items:t,keys:W(t,n)},s)};function K(e,t){var r=function(){if(o){if(a>=n.length)return"break";s=n[a++]}else{if((a=n.next()).done)return"break";s=a.value}var r=s.key,i=function(e){return e.key!==r};(u.und(t)||t===r)&&(e.current.instances.delete(r),e.current.transitions=e.current.transitions.filter(i),e.current.deleted=e.current.deleted.filter(i))},n=e.current.deleted,o=Array.isArray(n),a=0;for(n=o?n:n[Symbol.iterator]();;){var s;if("break"===r())break}e.current.forceUpdate()}var $=function(e){function t(t){var r;return void 0===t&&(t={}),r=e.call(this)||this,!t.transform||t.transform instanceof E||(t=b.transform(t)),r.payload=t,r}return c(t,e),t}(v),J={transparent:0,aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,burntsienna:3934150143,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199},Q="[-+]?\\d*\\.?\\d+";function Z(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return"\\(\\s*("+t.join(")\\s*,\\s*(")+")\\s*\\)"}var ee=new RegExp("rgb"+Z(Q,Q,Q)),te=new RegExp("rgba"+Z(Q,Q,Q,Q)),re=new RegExp("hsl"+Z(Q,"[-+]?\\d*\\.?\\d+%","[-+]?\\d*\\.?\\d+%")),ne=new RegExp("hsla"+Z(Q,"[-+]?\\d*\\.?\\d+%","[-+]?\\d*\\.?\\d+%",Q)),oe=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,ae=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,se=/^#([0-9a-fA-F]{6})$/,ie=/^#([0-9a-fA-F]{8})$/;function ce(e,t,r){return r<0&&(r+=1),r>1&&(r-=1),r<1/6?e+6*(t-e)*r:r<.5?t:r<2/3?e+(t-e)*(2/3-r)*6:e}function le(e,t,r){var n=r<.5?r*(1+t):r+t-r*t,o=2*r-n,a=ce(o,n,e+1/3),s=ce(o,n,e),i=ce(o,n,e-1/3);return Math.round(255*a)<<24|Math.round(255*s)<<16|Math.round(255*i)<<8}function ue(e){var t=parseInt(e,10);return t<0?0:t>255?255:t}function de(e){return(parseFloat(e)%360+360)%360/360}function pe(e){var t=parseFloat(e);return t<0?0:t>1?255:Math.round(255*t)}function fe(e){var t=parseFloat(e);return t<0?0:t>100?1:t/100}function me(e){var t,r,n="number"==typeof(t=e)?t>>>0===t&&t>=0&&t<=4294967295?t:null:(r=se.exec(t))?parseInt(r[1]+"ff",16)>>>0:J.hasOwnProperty(t)?J[t]:(r=ee.exec(t))?(ue(r[1])<<24|ue(r[2])<<16|ue(r[3])<<8|255)>>>0:(r=te.exec(t))?(ue(r[1])<<24|ue(r[2])<<16|ue(r[3])<<8|pe(r[4]))>>>0:(r=oe.exec(t))?parseInt(r[1]+r[1]+r[2]+r[2]+r[3]+r[3]+"ff",16)>>>0:(r=ie.exec(t))?parseInt(r[1],16)>>>0:(r=ae.exec(t))?parseInt(r[1]+r[1]+r[2]+r[2]+r[3]+r[3]+r[4]+r[4],16)>>>0:(r=re.exec(t))?(255|le(de(r[1]),fe(r[2]),fe(r[3])))>>>0:(r=ne.exec(t))?(le(de(r[1]),fe(r[2]),fe(r[3]))|pe(r[4]))>>>0:null;return null===n?e:"rgba("+((4278190080&(n=n||0))>>>24)+", "+((16711680&n)>>>16)+", "+((65280&n)>>>8)+", "+(255&n)/255+")"}var he=/[+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,be=/(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\((-?\d+%?[,\s]+){2,3}\s*[\d\.]+%?\))/gi,ge=new RegExp("("+Object.keys(J).join("|")+")","g"),Ee={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ye=["Webkit","Ms","Moz","O"];function ve(e,t,r){return null==t||"boolean"==typeof t||""===t?"":r||"number"!=typeof t||0===t||Ee.hasOwnProperty(e)&&Ee[e]?(""+t).trim():t+"px"}Ee=Object.keys(Ee).reduce((function(e,t){return ye.forEach((function(r){return e[function(e,t){return e+t.charAt(0).toUpperCase()+t.substring(1)}(r,t)]=e[t]})),e}),Ee);var Oe={};M((function(e){return new $(e)})),T("div"),j((function(e){var t=e.output.map((function(e){return e.replace(be,me)})).map((function(e){return e.replace(ge,me)})),r=t[0].match(he).map((function(){return[]}));t.forEach((function(e){e.match(he).forEach((function(e,t){return r[t].push(+e)}))}));var n=t[0].match(he).map((function(t,n){return V(o({},e,{output:r[n]}))}));return function(e){var r=0;return t[0].replace(he,(function(){return n[r++](e)})).replace(/rgba\(([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+)\)/gi,(function(e,t,r,n,o){return"rgba("+Math.round(t)+", "+Math.round(r)+", "+Math.round(n)+", "+o+")"}))}})),S(J),O((function(e,t){if(!e.nodeType||void 0===e.setAttribute)return!1;var r=t.style,n=t.children,o=t.scrollTop,s=t.scrollLeft,i=a(t,["style","children","scrollTop","scrollLeft"]),c="filter"===e.nodeName||e.parentNode&&"filter"===e.parentNode.nodeName;for(var l in void 0!==o&&(e.scrollTop=o),void 0!==s&&(e.scrollLeft=s),void 0!==n&&(e.textContent=n),r)if(r.hasOwnProperty(l)){var u=0===l.indexOf("--"),d=ve(l,r[l],u);"float"===l&&(l="cssFloat"),u?e.style.setProperty(l,d):e.style[l]=d}for(var p in i){var f=c?p:Oe[p]||(Oe[p]=p.replace(/([A-Z])/g,(function(e){return"-"+e.toLowerCase()})));void 0!==e.getAttribute(f)&&e.setAttribute(f,i[p])}}),(function(e){return e}));var Se,_e,ke=(Se=function(e){return s.forwardRef((function(t,r){var n=d(),c=s.useRef(!0),l=s.useRef(null),p=s.useRef(null),f=s.useCallback((function(e){var t=l.current;l.current=new I(e,(function(){var e=!1;p.current&&(e=b.fn(p.current,l.current.getAnimatedValue())),p.current&&!1!==e||n()})),t&&t.detach()}),[]);s.useEffect((function(){return function(){c.current=!1,l.current&&l.current.detach()}}),[]),s.useImperativeHandle(r,(function(){return P(p,c,n)})),f(t);var m,h=l.current.getValue(),g=(h.scrollTop,h.scrollLeft,a(h,["scrollTop","scrollLeft"])),E=(m=e,!u.fun(m)||m.prototype instanceof i.Component?function(e){return p.current=function(e,t){return t&&(u.fun(t)?t(e):u.obj(t)&&(t.current=e)),e}(e,r)}:void 0);return i.createElement(e,o({},g,{ref:E}))}))},void 0===(_e=!1)&&(_e=!0),function(e){return(u.arr(e)?e:Object.keys(e)).reduce((function(e,t){var r=_e?t[0].toLowerCase()+t.substring(1):t;return e[r]=Se(r),e}),Se)}),we=ke(["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"]);t.apply=ke,t.config={default:{tension:170,friction:26},gentle:{tension:120,friction:14},wobbly:{tension:180,friction:12},stiff:{tension:210,friction:20},slow:{tension:280,friction:60},molasses:{tension:280,friction:120}},t.update=F,t.animated=we,t.a=we,t.interpolate=function(e,t,r){return e&&new B(e,t,r)},t.Globals=N,t.useSpring=function(e){var t=u.fun(e),r=z(1,t?e:[e]),n=r[0],o=r[1],a=r[2];return t?[n[0],o,a]:n},t.useTrail=function(e,t){var r=s.useRef(!1),n=u.fun(t),a=m(t),i=s.useRef(),c=z(e,(function(e,t){return 0===e&&(i.current=[]),i.current.push(t),o({},a,{config:m(a.config,e),attach:e>0&&function(){return i.current[e-1]}})})),l=c[0],d=c[1],p=c[2],f=s.useMemo((function(){return function(e){return d((function(t,r){e.reverse;var n=e.reverse?t+1:t-1,s=i.current[n];return o({},e,{config:m(e.config||a.config,t),attach:s&&function(){return s}})}))}}),[e,a.reverse]);return s.useEffect((function(){r.current&&!n&&f(t)})),s.useEffect((function(){r.current=!0}),[]),n?[l,f,p]:l},t.useTransition=function(e,t,r){var n=o({items:e,keys:t||function(e){return e}},r),i=X(n),c=i.lazy,l=void 0!==c&&c,u=(i.unique,i.reset),p=void 0!==u&&u,f=(i.enter,i.leave,i.update,i.onDestroyed),h=(i.keys,i.items,i.onFrame),b=i.onRest,g=i.onStart,E=i.ref,y=a(i,["lazy","unique","reset","enter","leave","update","onDestroyed","keys","items","onFrame","onRest","onStart","ref"]),v=d(),O=s.useRef(!1),S=s.useRef({mounted:!1,first:!0,deleted:[],current:{},transitions:[],prevProps:{},paused:!!n.ref,instances:!O.current&&new Map,forceUpdate:v});return s.useImperativeHandle(n.ref,(function(){return{start:function(){return Promise.all(Array.from(S.current.instances).map((function(e){var t=e[1];return new Promise((function(e){return t.start(e)}))})))},stop:function(e){return Array.from(S.current.instances).forEach((function(t){return t[1].stop(e)}))},get controllers(){return Array.from(S.current.instances).map((function(e){return e[1]}))}}})),S.current=function(e,t){for(var r=e.first,n=e.prevProps,s=a(e,["first","prevProps"]),i=X(t),c=i.items,l=i.keys,u=i.initial,d=i.from,p=i.enter,f=i.leave,h=i.update,b=i.trail,g=void 0===b?0:b,E=i.unique,y=i.config,v=i.order,O=void 0===v?["enter","leave","update"]:v,S=X(n),_=S.keys,k=S.items,w=o({},s.current),j=[].concat(s.deleted),R=Object.keys(w),C=new Set(R),T=new Set(l),A=l.filter((function(e){return!C.has(e)})),x=s.transitions.filter((function(e){return!e.destroyed&&!T.has(e.originalKey)})).map((function(e){return e.originalKey})),P=l.filter((function(e){return C.has(e)})),M=-g;O.length;)switch(O.shift()){case"enter":A.forEach((function(e,t){E&&j.find((function(t){return t.originalKey===e}))&&(j=j.filter((function(t){return t.originalKey!==e})));var n=l.indexOf(e),o=c[n],a=r&&void 0!==u?"initial":"enter";w[e]={slot:a,originalKey:e,key:E?String(e):q++,item:o,trail:M+=g,config:m(y,o,a),from:m(r&&void 0!==u?u||{}:d,o),to:m(p,o)}}));break;case"leave":x.forEach((function(e){var t=_.indexOf(e),r=k[t];j.unshift(o({},w[e],{slot:"leave",destroyed:!0,left:_[Math.max(0,t-1)],right:_[Math.min(_.length,t+1)],trail:M+=g,config:m(y,r,"leave"),to:m(f,r)})),delete w[e]}));break;case"update":P.forEach((function(e){var t=l.indexOf(e),r=c[t];w[e]=o({},w[e],{item:r,slot:"update",trail:M+=g,config:m(y,r,"update"),to:m(h,r)})}))}var N=l.map((function(e){return w[e]}));return j.forEach((function(e){var t,r=e.left,n=(e.right,a(e,["left","right"]));-1!==(t=N.findIndex((function(e){return e.originalKey===r})))&&(t+=1),t=Math.max(0,t),N=[].concat(N.slice(0,t),[n],N.slice(t))})),o({},s,{changed:A.length||x.length||P.length,first:r&&0===A.length,transitions:N,current:w,deleted:j,prevProps:t})}(S.current,n),S.current.changed&&S.current.transitions.forEach((function(e){var t=e.slot,r=e.from,n=e.to,a=e.config,s=e.trail,i=e.key,c=e.item;S.current.instances.has(i)||S.current.instances.set(i,new Y);var u=S.current.instances.get(i),d=o({},y,{to:n,from:r,config:a,ref:E,onRest:function(r){S.current.mounted&&(e.destroyed&&(E||l||K(S,i),f&&f(c)),!Array.from(S.current.instances).some((function(e){return!e[1].idle}))&&(E||l)&&S.current.deleted.length>0&&K(S),b&&b(c,t,r))},onStart:g&&function(){return g(c,t)},onFrame:h&&function(e){return h(c,t,e)},delay:s,reset:p&&"enter"===t});u.update(d),S.current.paused||u.start()})),s.useEffect((function(){return S.current.mounted=O.current=!0,function(){S.current.mounted=O.current=!1,Array.from(S.current.instances).map((function(e){return e[1].destroy()})),S.current.instances.clear()}}),[]),S.current.transitions.map((function(e){var t=e.item,r=e.slot,n=e.key;return{item:t,key:n,state:r,props:S.current.instances.get(n).getValues()}}))},t.useChain=function(e,t,r){void 0===r&&(r=1e3);var n=s.useRef();s.useEffect((function(){u.equ(e,n.current)?e.forEach((function(e){var t=e.current;return t&&t.start()})):t?e.forEach((function(e,n){var a=e.current;if(a){var s=a.controllers;if(s.length){var i=r*t[n];s.forEach((function(e){e.queue=e.queue.map((function(e){return o({},e,{delay:e.delay+i})})),e.start()}))}}})):e.reduce((function(e,t,r){var n=t.current;return e.then((function(){return n.start()}))}),Promise.resolve()),n.current=e}))},t.useSprings=z},,,,,,,,,,,,function(e,t){},,,,,function(e,t,r){"use strict";(function(e){var n=r(0),o=r(6),a=r(4),s=r.n(a),i=r(20),c=r(1),l=(r(38),r(50));t.a=Object(n.forwardRef)((function({className:t,children:r,spokenMessage:a=r,politeness:u="polite",actions:d=[],onRemove:p=o.noop,icon:f=null,explicitDismiss:m=!1,onDismiss:h=o.noop},b){function g(e){e&&e.preventDefault&&e.preventDefault(),h(),p()}h=h||o.noop,function(e,t){const r="string"==typeof e?e:Object(n.renderToString)(e);Object(n.useEffect)(()=>{r&&Object(i.speak)(r,t)},[r,t])}(a,u),Object(n.useEffect)(()=>{const e=setTimeout(()=>{m||(h(),p())},1e4);return()=>clearTimeout(e)},[h,p]);const E=s()(t,"components-snackbar",{"components-snackbar-explicit-dismiss":!!m});d&&d.length>1&&(void 0!==e&&e.env,d=[d[0]]);const y=s()("components-snackbar__content",{"components-snackbar__content-with-icon":!!f});return Object(n.createElement)("div",{ref:b,className:E,onClick:m?o.noop:g,tabIndex:"0",role:m?"":"button",onKeyPress:m?o.noop:g,"aria-label":m?"":Object(c.__)("Dismiss this notice")},Object(n.createElement)("div",{className:y},f&&Object(n.createElement)("div",{className:"components-snackbar__icon"},f),r,d.map(({label:e,onClick:t,url:r},o)=>Object(n.createElement)(l.a,{key:o,href:r,variant:"tertiary",onClick:e=>function(e,t){e.stopPropagation(),p(),t&&t(e)}(e,t),className:"components-snackbar__action"},e)),m&&Object(n.createElement)("span",{role:"button","aria-label":"Dismiss this notice",tabIndex:"0",className:"components-snackbar__dismiss-button",onClick:g,onKeyPress:g},"✕")))}))}).call(this,r(63))},function(e,t){e.exports=window.wp.plugins},,function(e,t){e.exports=window.wp.wordcount},function(e,t){e.exports=window.wp.autop},,function(e,t,r){"use strict";r.d(t,"b",(function(){return a})),r.d(t,"a",(function(){return s}));var n=r(45),o=(r(14),r(2));const a=(e,t)=>Object.keys(o.defaultAddressFields).every(r=>e[r]===t[r]),s=e=>{const t=Object.keys(o.defaultAddressFields),r=Object(n.a)(t,{},e.country),a=Object.assign({},e);return r.forEach(t=>{let{key:r="",hidden:n=!1}=t;n&&((e,t)=>e in t)(r,e)&&(a[r]="")}),a}},,function(e,t){e.exports=window.wc.wcBlocksSharedHocs},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(11),o=r.n(n),a=r(0),s=r(4),i=r.n(s),c=r(94),l=r(7),u=(r(78),r(57));const d=e=>{let{status:t="default"}=e;switch(t){case"error":return"woocommerce-error";case"success":return"woocommerce-message";case"info":case"warning":return"woocommerce-info"}return""},p=e=>{let{className:t,context:r="default",additionalNotices:n=[]}=e;const{isSuppressed:s}=Object(u.b)(),{notices:p}=Object(l.useSelect)(e=>({notices:e("core/notices").getNotices(r)})),{removeNotice:f}=Object(l.useDispatch)("core/notices"),m=p.filter(e=>"snackbar"!==e.type).concat(n);if(!m.length)return null;const h=i()(t,"wc-block-components-notices");return s?null:Object(a.createElement)("div",{className:h},m.map(e=>Object(a.createElement)(c.a,o()({key:"store-notice-"+e.id},e,{className:i()("wc-block-components-notices__notice",d(e)),onRemove:()=>{e.isDismissible&&f(e.id,r)}}),e.content)))}},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(0),o=r(48),a=r(2),s=r(59),i=r.n(s),c=r(10),l=r(16);const u=(e,t)=>e&&t[e]?t[e]:null,d=e=>{let{block:t,blockMap:r,blockWrapper:o,children:s,depth:p=1}=e;return s&&0!==s.length?Array.from(s).map((e,s)=>{const{blockName:f="",...m}={key:`${t}_${p}_${s}`,...e instanceof HTMLElement?e.dataset:{},className:e instanceof Element?null==e?void 0:e.className:""},h=u(f,r);if(!h){const a=i()(e instanceof Element&&(null==e?void 0:e.outerHTML)||(null==e?void 0:e.textContent)||"");if("string"==typeof a&&a)return a;if(!Object(n.isValidElement)(a))return null;const s=e.childNodes.length?d({block:t,blockMap:r,children:e.childNodes,depth:p+1,blockWrapper:o}):void 0;return s?Object(n.cloneElement)(a,m,s):Object(n.cloneElement)(a,m)}const b=o||n.Fragment;return Object(n.createElement)(n.Suspense,{key:`${t}_${p}_${s}_suspense`,fallback:Object(n.createElement)("div",{className:"wc-block-placeholder"})},Object(n.createElement)(l.a,{text:"Unexpected error in: "+f,showErrorBlock:a.CURRENT_USER_IS_ADMIN},Object(n.createElement)(b,null,Object(n.createElement)(h,m,d({block:t,blockMap:r,children:e.childNodes,depth:p+1,blockWrapper:o}),((e,t,r,o)=>{if(!Object(c.hasInnerBlocks)(e))return null;const s=r?Array.from(r).map(e=>e instanceof HTMLElement&&(null==e?void 0:e.dataset.blockName)||null).filter(Boolean):[],i=Object(c.getRegisteredBlocks)(e).filter(e=>{let{blockName:t,force:r}=e;return!0===r&&!s.includes(t)}),d=o||n.Fragment;return Object(n.createElement)(n.Fragment,null,i.map((e,r)=>{let{blockName:o,component:s}=e;const i=s||u(o,t);return i?Object(n.createElement)(l.a,{text:"Unexpected error in: "+o,showErrorBlock:a.CURRENT_USER_IS_ADMIN},Object(n.createElement)(d,null,Object(n.createElement)(i,{key:`${o}_forced_${r}`}))):null}))})(f,r,e.childNodes,o)))))}):null},p=e=>{let{Block:t,selector:r,blockName:n,getProps:a=(()=>({})),blockMap:s,blockWrapper:i}=e;Object(o.a)({Block:t,selector:r,getProps:(e,t)=>{const r=d({block:n,blockMap:s,children:e.children||[],blockWrapper:i});return{...a(e,t),children:r}}})}},function(e,t){e.exports=function(e,t){if(null==e)return{};var r,n,o={},a=Object.keys(e);for(n=0;n<a.length;n++)r=a[n],t.indexOf(r)>=0||(o[r]=e[r]);return o},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){var n=r(130);e.exports=function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,n(e,t)},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){function r(t,n){return e.exports=r=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},e.exports.__esModule=!0,e.exports.default=e.exports,r(t,n)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){"use strict";r.d(t,"a",(function(){return _}));var n=r(0),o=r(113),a=r(2),s=r(16),i=r(201),c=r(66),l=r(46),u=r(34),d=r(1),p=r(25),f=r.n(p),m=r(118),h=r(92),b=r(7);const g=(e,t,r)=>{const n=Object.keys(e).map(t=>({key:t,value:e[t]}),[]),o=`wc-${r}-new-payment-method`;return n.push({key:o,value:t}),n},E=(e,t)=>{f.a.setNonce&&"function"==typeof f.a.setNonce&&f.a.setNonce(e),null!=e&&e.get("User-ID")&&t.setCustomerId(parseInt(e.get("User-ID")||"0",10))};var y=r(194),v=r(31),O=r(57),S=()=>{const{hasError:e,onCheckoutValidationBeforeProcessing:t,dispatchActions:r,redirectUrl:o,isProcessing:a,isBeforeProcessing:s,isComplete:p,orderNotes:S,shouldCreateAccount:_,extensionData:k}=Object(u.b)(),{hasValidationErrors:w}=Object(y.b)(),{shippingErrorStatus:j}=Object(c.b)(),{billingData:R,shippingAddress:C}=Object(l.b)(),{cartNeedsPayment:T,cartNeedsShipping:A,receiveCart:x}=Object(v.a)(),{activePaymentMethod:P,isExpressPaymentMethodActive:M,currentStatus:N,paymentMethodData:I,expressPaymentMethods:D,paymentMethods:L,shouldSavePayment:F}=Object(i.b)(),{setIsSuppressed:V}=Object(O.b)(),{createErrorNotice:B,removeNotice:U}=Object(b.useDispatch)("core/notices"),H=Object(n.useRef)(R),G=Object(n.useRef)(C),Y=Object(n.useRef)(o),[z,q]=Object(n.useState)(!1),W=Object(n.useMemo)(()=>{var e;const t={...D,...L};return null==t||null===(e=t[P])||void 0===e?void 0:e.paymentMethodId},[P,D,L]),X=w&&!M||N.hasError||j.hasError,K=!e&&!X&&(N.isSuccessful||!T)&&a;Object(n.useEffect)(()=>{V(M)},[M,V]),Object(n.useEffect)(()=>{X===e||!a&&!s||M||r.setHasError(X)},[X,e,a,s,M,r]),Object(n.useEffect)(()=>{H.current=R,G.current=C,Y.current=o},[R,C,o]);const $=Object(n.useCallback)(()=>!w&&(N.hasError?{errorMessage:Object(d.__)("There was a problem with your payment option.","woocommerce")}:!j.hasError||{errorMessage:Object(d.__)("There was a problem with your shipping option.","woocommerce")}),[w,N.hasError,j.hasError]);Object(n.useEffect)(()=>{let e;return M||(e=t($,0)),()=>{M||e()}},[t,$,M]),Object(n.useEffect)(()=>{Y.current&&(window.location.href=Y.current)},[p]);const J=Object(n.useCallback)(async()=>{if(z)return;q(!0),U("checkout");const e=T?{payment_method:W,payment_data:g(I,F,P)}:{},t={billing_address:Object(m.a)(H.current),customer_note:S,create_account:_,...e,extensions:{...k}};A&&(t.shipping_address=Object(m.a)(G.current)),f()({path:"/wc/store/v1/checkout",method:"POST",data:t,cache:"no-store",parse:!1}).then(e=>{if(E(e.headers,r),!e.ok)throw new Error(e);return e.json()}).then(e=>{r.setAfterProcessing(e),q(!1)}).catch(e=>{try{null!=e&&e.headers&&E(e.headers,r),e.json().then(e=>{var t,n,o;null!==(t=e.data)&&void 0!==t&&t.cart&&x(e.data.cart),B(Object(h.b)(e),{id:"checkout",context:"wc/checkout"}),null==e||null===(n=e.additional_errors)||void 0===n||null===(o=n.forEach)||void 0===o||o.call(n,e=>{B(e.message,{id:e.error_code,context:"wc/checkout"})}),r.setAfterProcessing(e)})}catch{var t;B(Object(d.sprintf)(// Translators: %s Error text.
4
  Object(d.__)("%s Please try placing your order again.","woocommerce"),null!==(t=null==e?void 0:e.message)&&void 0!==t?t:Object(d.__)("Something went wrong.","woocommerce")),{id:"checkout",context:"wc/checkout"})}r.setHasError(!0),q(!1)})},[z,U,T,W,I,F,P,S,_,k,A,r,B,x]);return Object(n.useEffect)(()=>{K&&!z&&J()},[J,K,z]),null};const _=e=>{let{children:t,isCart:r=!1,redirectUrl:d}=e;return Object(n.createElement)(u.a,{redirectUrl:d,isCart:r},Object(n.createElement)(l.a,null,Object(n.createElement)(c.a,null,Object(n.createElement)(i.a,null,t,Object(n.createElement)(s.a,{renderError:a.CURRENT_USER_IS_ADMIN?null:()=>null},Object(n.createElement)(o.PluginArea,{scope:"woocommerce-checkout"})),Object(n.createElement)(S,null)))))}},,,function(e,t,r){"use strict";var n=r(0);r(191),t.a=()=>Object(n.createElement)("span",{className:"wc-block-components-spinner","aria-hidden":"true"})},,function(e,t,r){"use strict";var n=r(0),o=r(1),a=r(4),s=r.n(a),i=(r(193),r(135));t.a=e=>{let{children:t,className:r,screenReaderLabel:a,showSpinner:c=!1,isLoading:l=!0}=e;return Object(n.createElement)("div",{className:s()(r,{"wc-block-components-loading-mask":l})},l&&c&&Object(n.createElement)(i.a,null),Object(n.createElement)("div",{className:s()({"wc-block-components-loading-mask__children":l}),"aria-hidden":l},t),l&&Object(n.createElement)("span",{className:"screen-reader-text"},a||Object(o.__)("Loading…","woocommerce")))}},,,,,function(e,t){e.exports=window.wp.keycodes},,function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=(e,t)=>{const r=[];return Object.keys(e).forEach(n=>{if(void 0!==t[n])switch(e[n].type){case"boolean":r[n]="false"!==t[n]&&!1!==t[n];break;case"number":r[n]=parseInt(t[n],10);break;case"array":case"object":r[n]=JSON.parse(t[n]);break;default:r[n]=t[n]}else r[n]=e[n].default}),r}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"b",(function(){return a}));var n=r(0);const o=Object(n.createContext)({hasDarkControls:!1}),a=()=>Object(n.useContext)(o)},,,function(e){e.exports=JSON.parse('{"name":"woocommerce/filled-cart-block","version":"1.0.0","title":"Filled Cart","description":"Contains blocks that are displayed when the cart contains products.","category":"woocommerce","supports":{"align":["wide"],"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/cart"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/empty-cart-block","version":"1.0.0","title":"Empty Cart","description":"Contains blocks that are displayed when the cart is empty.","category":"woocommerce","supports":{"align":["wide"],"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/cart"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-items-block","version":"1.0.0","title":"Cart Items block","description":"Column containing cart items.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/filled-cart-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-express-payment-block","version":"1.0.0","title":"Express Checkout","description":"Provide an express payment option for your customers.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/cart-totals-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-line-items-block","version":"1.0.0","title":"Cart Line Items","description":"Block containing current line items in Cart.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/cart-items-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-totals-block","version":"1.0.0","title":"Cart Totals","description":"Column containing the cart totals.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"checkbox":{"type":"boolean","default":false},"text":{"type":"string","required":false},"lock":{"type":"object","default":{"remove":true}}},"parent":["woocommerce/filled-cart-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/proceed-to-checkout-block","version":"1.0.0","title":"Proceed to checkout","description":"Allow customers proceed to Checkout.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"default":{"remove":true,"move":true}}},"parent":["woocommerce/cart-totals-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-accepted-payment-methods-block","version":"1.0.0","title":"Accepted Payment Methods","description":"Display accepted payment methods.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":true},"parent":["woocommerce/cart-totals-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-block","version":"1.0.0","title":"Order Summary","description":"Show customers a summary of their order.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/cart-totals-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-subtotal-block","version":"1.0.0","title":"Subtotal","description":"Shows the cart subtotal row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-fee-block","version":"1.0.0","title":"Fees","description":"Shows the cart fee row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-discount-block","version":"1.0.0","title":"Discount","description":"Shows the cart discount row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-shipping-block","version":"1.0.0","title":"Shipping","description":"Shows the cart shipping row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-coupon-form-block","version":"1.0.0","title":"Coupon Form","description":"Shows the apply coupon form.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":false,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-taxes-block","version":"1.0.0","title":"Taxes","description":"Shows the cart taxes row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-heading-block","version":"1.0.0","title":"Heading","description":"Shows the heading row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"content":{"type":"string","default":"Cart totals"},"lock":{"type":"object","default":{"remove":false,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){},,function(e,t){},function(e,t,r){"use strict";r.d(t,"b",(function(){return c})),r.d(t,"a",(function(){return l}));var n=r(0),o=r(6),a=r(12),s=r.n(a);const i=Object(n.createContext)({getValidationError:()=>"",setValidationErrors:e=>{},clearValidationError:e=>{},clearAllValidationErrors:()=>{},hideValidationError:()=>{},showValidationError:()=>{},showAllValidationErrors:()=>{},hasValidationErrors:!1,getValidationErrorId:e=>e}),c=()=>Object(n.useContext)(i),l=e=>{let{children:t}=e;const[r,a]=Object(n.useState)({}),c=Object(n.useCallback)(e=>r[e],[r]),l=Object(n.useCallback)(e=>{const t=r[e];return!t||t.hidden?"":"validate-error-"+e},[r]),u=Object(n.useCallback)(e=>{a(t=>{if(!t[e])return t;const{[e]:r,...n}=t;return n})},[]),d=Object(n.useCallback)(()=>{a({})},[]),p=Object(n.useCallback)(e=>{e&&a(t=>(e=Object(o.pickBy)(e,(e,r)=>!("string"!=typeof e.message||t.hasOwnProperty(r)&&s()(t[r],e))),0===Object.values(e).length?t:{...t,...e}))},[]),f=Object(n.useCallback)((e,t)=>{a(r=>{if(!r.hasOwnProperty(e))return r;const n={...r[e],...t};return s()(r[e],n)?r:{...r,[e]:n}})},[]),m={getValidationError:c,setValidationErrors:p,clearValidationError:u,clearAllValidationErrors:d,hideValidationError:Object(n.useCallback)(e=>{f(e,{hidden:!0})},[f]),showValidationError:Object(n.useCallback)(e=>{f(e,{hidden:!1})},[f]),showAllValidationErrors:Object(n.useCallback)(()=>{a(e=>{const t={};return Object.keys(e).forEach(r=>{e[r].hidden&&(t[r]={...e[r],hidden:!1})}),0===Object.values(t).length?e:{...e,...t}})},[]),hasValidationErrors:Object.keys(r).length>0,getValidationErrorId:l};return Object(n.createElement)(i.Provider,{value:m},t)}},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(91);const o=(e,t)=>function(r){let o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10;const a=n.a.addEventCallback(e,r,o);return t(a),()=>{t(n.a.removeEventCallback(e,a.id))}}},,function(e,t,r){"use strict";r.d(t,"a",(function(){return a})),r.d(t,"b",(function(){return s}));const n=(e,t)=>e[t]?Array.from(e[t].values()).sort((e,t)=>e.priority-t.priority):[];var o=r(29);const a=async(e,t,r)=>{const o=n(e,t),a=[];for(const e of o)try{const t=await Promise.resolve(e.callback(r));"object"==typeof t&&a.push(t)}catch(e){console.error(e)}return!a.length||a},s=async(e,t,r)=>{const a=[],s=n(e,t);for(const e of s)try{const t=await Promise.resolve(e.callback(r));if("object"!=typeof t||null===t)continue;if(!t.hasOwnProperty("type"))throw new Error("Returned objects from event emitter observers must return an object with a type property");if(Object(o.a)(t)||Object(o.b)(t))return a.push(t),a;a.push(t)}catch(e){return console.error(e),a.push({type:"error"}),a}return a}},,function(e,t,r){"use strict";r.d(t,"b",(function(){return L})),r.d(t,"a",(function(){return F}));var n=r(0),o=r(61),a=r(7);let s,i;!function(e){e.PRISTINE="pristine",e.STARTED="started",e.PROCESSING="processing",e.ERROR="has_error",e.FAILED="failed",e.SUCCESS="success",e.COMPLETE="complete"}(s||(s={})),function(e){e.SET_REGISTERED_PAYMENT_METHODS="set_registered_payment_methods",e.SET_REGISTERED_EXPRESS_PAYMENT_METHODS="set_registered_express_payment_methods",e.SET_SHOULD_SAVE_PAYMENT_METHOD="set_should_save_payment_method",e.SET_ACTIVE_PAYMENT_METHOD="set_active_payment_method"}(i||(i={}));const c={currentStatus:s.PRISTINE,shouldSavePaymentMethod:!1,activePaymentMethod:"",paymentMethodData:{payment_method:""},errorMessage:"",paymentMethods:{},expressPaymentMethods:{}},l={setPaymentStatus:()=>({pristine:()=>{},started:()=>{},processing:()=>{},completed:()=>{},error:e=>{},failed:(e,t)=>{},success:(e,t)=>{}}),currentStatus:{isPristine:!0,isStarted:!1,isProcessing:!1,isFinished:!1,hasError:!1,hasFailed:!1,isSuccessful:!1,isDoingExpressPayment:!1},paymentStatuses:s,paymentMethodData:{},errorMessage:"",activePaymentMethod:"",activeSavedToken:"",setActivePaymentMethod:()=>{},customerPaymentMethods:{},paymentMethods:{},expressPaymentMethods:{},paymentMethodsInitialized:!1,expressPaymentMethodsInitialized:!1,onPaymentProcessing:()=>()=>()=>{},setExpressPaymentError:()=>{},isExpressPaymentMethodActive:!1,setShouldSavePayment:()=>{},shouldSavePayment:!1};var u=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:c,{type:t,paymentMethodData:r,shouldSavePaymentMethod:n=!1,errorMessage:o="",paymentMethods:a={},paymentMethod:l=""}=arguments.length>1?arguments[1]:void 0;switch(t){case s.PRISTINE:return{...c,...e,errorMessage:"",currentStatus:s.PRISTINE};case s.STARTED:return{...e,currentStatus:s.STARTED};case s.ERROR:return e.currentStatus!==s.ERROR?{...e,currentStatus:s.ERROR,errorMessage:o||e.errorMessage}:e;case s.FAILED:return e.currentStatus!==s.FAILED?{...e,currentStatus:s.FAILED,paymentMethodData:r||e.paymentMethodData,errorMessage:o||e.errorMessage}:e;case s.SUCCESS:return e.currentStatus!==s.SUCCESS?{...e,currentStatus:s.SUCCESS,paymentMethodData:r||e.paymentMethodData}:e;case s.PROCESSING:return e.currentStatus!==s.PROCESSING?{...e,currentStatus:s.PROCESSING,errorMessage:""}:e;case s.COMPLETE:return e.currentStatus!==s.COMPLETE?{...e,currentStatus:s.COMPLETE}:e;case i.SET_REGISTERED_PAYMENT_METHODS:return{...e,paymentMethods:a};case i.SET_REGISTERED_EXPRESS_PAYMENT_METHODS:return{...e,expressPaymentMethods:a};case i.SET_SHOULD_SAVE_PAYMENT_METHOD:return{...e,shouldSavePaymentMethod:n};case i.SET_ACTIVE_PAYMENT_METHOD:return{...e,activePaymentMethod:l,paymentMethodData:r||e.paymentMethodData}}},d=r(1),p=r(17),f=r(30),m=r(2),h=r(47),b=r(27),g=r(46),E=r(31),y=r(29),v=r(64);const O=(e,t,r,o)=>{const[s,i]=Object(n.useState)(!1),{isEditor:c}=Object(b.a)(),{selectedRates:l}=Object(v.a)(),{billingData:u,shippingAddress:p}=Object(g.b)(),y=Object(f.a)(l),O=Object(f.a)(r),S=Object(E.a)(),{cartTotals:_,cartIsLoading:k,cartNeedsShipping:w,paymentRequirements:j}=S,R=Object(n.useRef)({cart:S,cartTotals:_,cartNeedsShipping:w,billingData:u,shippingAddress:p,selectedShippingMethods:y,paymentRequirements:j}),{createErrorNotice:C}=Object(a.useDispatch)("core/notices");Object(n.useEffect)(()=>{R.current={cart:S,cartTotals:_,cartNeedsShipping:w,billingData:u,shippingAddress:p,selectedShippingMethods:y,paymentRequirements:j}},[S,_,w,u,p,y,j]);const T=Object(n.useCallback)(async()=>{let r={};const n=e=>{r={...r,[e.name]:e}};for(let e=0;e<O.length;e++){const r=O[e],a=t[r];if(a)try{const e=!!c||await Promise.resolve(a.canMakePayment(R.current));if(e){if("object"==typeof e&&null!==e&&e.error)throw new Error(e.error.message);n(a)}}catch(e){if(m.CURRENT_USER_IS_ADMIN||c){const t=Object(d.sprintf)(
1
+ !function(e){function t(t){for(var r,o,a=t[0],s=t[1],i=0,l=[];i<a.length;i++)o=a[i],Object.prototype.hasOwnProperty.call(n,o)&&n[o]&&l.push(n[o][0]),n[o]=0;for(r in s)Object.prototype.hasOwnProperty.call(s,r)&&(e[r]=s[r]);for(c&&c(t);l.length;)l.shift()()}var r={},n={11:0,7:0,73:0};function o(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}o.e=function(e){var t=[],r=n[e];if(0!==r)if(r)t.push(r[2]);else{var a=new Promise((function(t,o){r=n[e]=[t,o]}));t.push(r[2]=a);var s,i=document.createElement("script");i.charset="utf-8",i.timeout=120,o.nc&&i.setAttribute("nonce",o.nc),i.src=function(e){return o.p+""+({0:"vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66",1:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--decc3dc6",2:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--5b8feb0b",3:"vendors--cart-blocks/cart-line-items--checkout-blocks/order-summary-cart-items--mini-cart-contents---233ab542",4:"cart-blocks/cart-line-items--mini-cart-contents-block/products-table",5:"cart-blocks/order-summary-shipping--checkout-blocks/order-summary-shipping",12:"cart-blocks/cart-accepted-payment-methods",13:"cart-blocks/cart-express-payment",14:"cart-blocks/cart-items",15:"cart-blocks/cart-line-items",16:"cart-blocks/cart-order-summary",17:"cart-blocks/cart-totals",18:"cart-blocks/empty-cart",19:"cart-blocks/filled-cart",20:"cart-blocks/order-summary-coupon-form",21:"cart-blocks/order-summary-discount",22:"cart-blocks/order-summary-fee",23:"cart-blocks/order-summary-heading",24:"cart-blocks/order-summary-shipping",25:"cart-blocks/order-summary-subtotal",26:"cart-blocks/order-summary-taxes",27:"cart-blocks/proceed-to-checkout"}[e]||e)+"-frontend.js?ver="+{0:"1d36f73838f02eb72b0e",1:"e2dda84269ff5f357820",2:"bb568a01ffa114ca1394",3:"deab3ee0c5c13d3addc8",4:"89f09ba23bc79f34d574",5:"4633d7aaf0d614913380",12:"7346fa68956c1d3ee462",13:"5d5d2d138986a6bdc2ee",14:"497cd8ab48255af9b50d",15:"c50926eca8955679669f",16:"5acf6f9df18d8fe0570e",17:"beabb36f9afc88b4feb3",18:"f6628e966e355c915de9",19:"fd0392dda43dda02525c",20:"a0f83c5f3f9e75cd858f",21:"2fbcc787732cb9b65f30",22:"7f685f8beac3d104e331",23:"14f6290bb0565b065a38",24:"3e736b89e04324e8d78a",25:"a348afa0fb9493cb1f39",26:"7034e6f77b9b5139aafa",27:"357d370510f29a97ef5b"}[e]}(e);var c=new Error;s=function(t){i.onerror=i.onload=null,clearTimeout(l);var r=n[e];if(0!==r){if(r){var o=t&&("load"===t.type?"missing":t.type),a=t&&t.target&&t.target.src;c.message="Loading chunk "+e+" failed.\n("+o+": "+a+")",c.name="ChunkLoadError",c.type=o,c.request=a,r[1](c)}n[e]=void 0}};var l=setTimeout((function(){s({type:"timeout",target:i})}),12e4);i.onerror=i.onload=s,document.head.appendChild(i)}return Promise.all(t)},o.m=e,o.c=r,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)o.d(r,n,function(t){return e[t]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o.oe=function(e){throw console.error(e),e};var a=window.webpackWcBlocksJsonp=window.webpackWcBlocksJsonp||[],s=a.push.bind(a);a.push=t,a=a.slice();for(var i=0;i<a.length;i++)t(a[i]);var c=s;o(o.s=224)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wc.wcSettings},function(e,t){e.exports=window.React},function(e,t,r){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var a=typeof n;if("string"===a||"number"===a)e.push(n);else if(Array.isArray(n)){if(n.length){var s=o.apply(null,n);s&&e.push(s)}}else if("object"===a)if(n.toString===Object.prototype.toString)for(var i in n)r.call(n,i)&&n[i]&&e.push(i);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},function(e,t){e.exports=window.wc.wcBlocksData},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.data},function(e,t,r){"use strict";function n(){return(n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}r.d(t,"a",(function(){return n}))},,function(e,t){e.exports=window.wc.blocksCheckout},function(e,t){function r(){return e.exports=r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,r.apply(this,arguments)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.isShallowEqual},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.primitives},function(e,t,r){"use strict";var n=r(19),o=r.n(n),a=r(0),s=r(3),i=r(1),c=r(44),l=e=>{let{imageUrl:t=c.l+"/block-error.svg",header:r=Object(i.__)("Oops!","woocommerce"),text:n=Object(i.__)("There was an error loading the content.","woocommerce"),errorMessage:o,errorMessagePrefix:s=Object(i.__)("Error:","woocommerce"),button:l,showErrorBlock:u=!0}=e;return u?Object(a.createElement)("div",{className:"wc-block-error wc-block-components-error"},t&&Object(a.createElement)("img",{className:"wc-block-error__image wc-block-components-error__image",src:t,alt:""}),Object(a.createElement)("div",{className:"wc-block-error__content wc-block-components-error__content"},r&&Object(a.createElement)("p",{className:"wc-block-error__header wc-block-components-error__header"},r),n&&Object(a.createElement)("p",{className:"wc-block-error__text wc-block-components-error__text"},n),o&&Object(a.createElement)("p",{className:"wc-block-error__message wc-block-components-error__message"},s?s+" ":"",o),l&&Object(a.createElement)("p",{className:"wc-block-error__button wc-block-components-error__button"},l))):null};r(33);class u extends s.Component{constructor(){super(...arguments),o()(this,"state",{errorMessage:"",hasError:!1})}static getDerivedStateFromError(e){return void 0!==e.statusText&&void 0!==e.status?{errorMessage:Object(a.createElement)(a.Fragment,null,Object(a.createElement)("strong",null,e.status),": ",e.statusText),hasError:!0}:{errorMessage:e.message,hasError:!0}}render(){const{header:e,imageUrl:t,showErrorMessage:r=!0,showErrorBlock:n=!0,text:o,errorMessagePrefix:s,renderError:i,button:c}=this.props,{errorMessage:u,hasError:d}=this.state;return d?"function"==typeof i?i({errorMessage:u}):Object(a.createElement)(l,{showErrorBlock:n,errorMessage:r?u:null,header:e,imageUrl:t,text:o,errorMessagePrefix:s,button:c}):this.props.children}}t.a=u},function(e,t){e.exports=window.wc.wcBlocksRegistry},function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.a11y},,,,function(e,t,r){"use strict";(function(e){var n=r(0);r(38);const o=Object(n.createContext)({slots:{},fills:{},registerSlot:()=>{void 0!==e&&e.env},updateSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{}});t.a=o}).call(this,r(63))},function(e,t){e.exports=window.wp.apiFetch},,function(e,t,r){"use strict";r.d(t,"a",(function(){return a}));var n=r(0);r(7);const o=Object(n.createContext)({isEditor:!1,currentPostId:0,currentView:"",previewData:{},getPreviewData:()=>{}}),a=()=>Object(n.useContext)(o)},,function(e,t,r){"use strict";r.d(t,"c",(function(){return a})),r.d(t,"a",(function(){return c})),r.d(t,"b",(function(){return l})),r.d(t,"d",(function(){return d}));var n=r(61);let o,a;!function(e){e.SUCCESS="success",e.FAIL="failure",e.ERROR="error"}(o||(o={})),function(e){e.PAYMENTS="wc/payment-area",e.EXPRESS_PAYMENTS="wc/express-payment-area"}(a||(a={}));const s=(e,t)=>Object(n.a)(e)&&"type"in e&&e.type===t,i=e=>s(e,o.SUCCESS),c=e=>s(e,o.ERROR),l=e=>s(e,o.FAIL),u=e=>!Object(n.a)(e)||void 0===e.retry||!0===e.retry,d=()=>({responseTypes:o,noticeContexts:a,shouldRetry:u,isSuccessResponse:i,isErrorResponse:c,isFailResponse:l})},function(e,t,r){"use strict";r.d(t,"a",(function(){return s}));var n=r(0),o=r(12),a=r.n(o);function s(e){const t=Object(n.useRef)(e);return a()(e,t.current)||(t.current=e),t.current}},function(e,t,r){"use strict";r.d(t,"a",(function(){return y}));var n=r(6),o=r(0),a=r(5),s=r(7),i=r(18),c=r(118),l=r(27),u=r(68);const d=e=>{const t=e.detail;t&&t.preserveCartData||Object(s.dispatch)(a.CART_STORE_KEY).invalidateResolutionForStore()},p=()=>{1===window.wcBlocksStoreCartListeners.count&&window.wcBlocksStoreCartListeners.remove(),window.wcBlocksStoreCartListeners.count--},f=()=>{Object(o.useEffect)(()=>((()=>{if(window.wcBlocksStoreCartListeners||(window.wcBlocksStoreCartListeners={count:0,remove:()=>{}}),0===window.wcBlocksStoreCartListeners.count){const e=Object(u.b)("added_to_cart","wc-blocks_added_to_cart"),t=Object(u.b)("removed_from_cart","wc-blocks_removed_from_cart");document.body.addEventListener("wc-blocks_added_to_cart",d),document.body.addEventListener("wc-blocks_removed_from_cart",d),window.wcBlocksStoreCartListeners.count=0,window.wcBlocksStoreCartListeners.remove=()=>{e(),t(),document.body.removeEventListener("wc-blocks_added_to_cart",d),document.body.removeEventListener("wc-blocks_removed_from_cart",d)}}window.wcBlocksStoreCartListeners.count++})(),p),[])},m={first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},h={...m,email:""},b={total_items:"",total_items_tax:"",total_fees:"",total_fees_tax:"",total_discount:"",total_discount_tax:"",total_shipping:"",total_shipping_tax:"",total_price:"",total_tax:"",tax_lines:a.EMPTY_TAX_LINES,currency_code:"",currency_symbol:"",currency_minor_unit:2,currency_decimal_separator:"",currency_thousand_separator:"",currency_prefix:"",currency_suffix:""},g=e=>Object.fromEntries(Object.entries(e).map(e=>{let[t,r]=e;return[t,Object(i.decodeEntities)(r)]})),E={cartCoupons:a.EMPTY_CART_COUPONS,cartItems:a.EMPTY_CART_ITEMS,cartFees:a.EMPTY_CART_FEES,cartItemsCount:0,cartItemsWeight:0,cartNeedsPayment:!0,cartNeedsShipping:!0,cartItemErrors:a.EMPTY_CART_ITEM_ERRORS,cartTotals:b,cartIsLoading:!0,cartErrors:a.EMPTY_CART_ERRORS,billingAddress:h,shippingAddress:m,shippingRates:a.EMPTY_SHIPPING_RATES,isLoadingRates:!1,cartHasCalculatedShipping:!1,paymentRequirements:a.EMPTY_PAYMENT_REQUIREMENTS,receiveCart:()=>{},extensions:a.EMPTY_EXTENSIONS},y=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{shouldSelect:!0};const{isEditor:t,previewData:r}=Object(l.a)(),i=null==r?void 0:r.previewCart,{shouldSelect:u}=e,d=Object(o.useRef)();f();const p=Object(s.useSelect)((e,r)=>{let{dispatch:n}=r;if(!u)return E;if(t)return{cartCoupons:i.coupons,cartItems:i.items,cartFees:i.fees,cartItemsCount:i.items_count,cartItemsWeight:i.items_weight,cartNeedsPayment:i.needs_payment,cartNeedsShipping:i.needs_shipping,cartItemErrors:a.EMPTY_CART_ITEM_ERRORS,cartTotals:i.totals,cartIsLoading:!1,cartErrors:a.EMPTY_CART_ERRORS,billingAddress:h,shippingAddress:m,extensions:a.EMPTY_EXTENSIONS,shippingRates:i.shipping_rates,isLoadingRates:!1,cartHasCalculatedShipping:i.has_calculated_shipping,paymentRequirements:i.paymentRequirements,receiveCart:"function"==typeof(null==i?void 0:i.receiveCart)?i.receiveCart:()=>{}};const o=e(a.CART_STORE_KEY),s=o.getCartData(),l=o.getCartErrors(),d=o.getCartTotals(),p=!o.hasFinishedResolution("getCartData"),f=o.isCustomerDataUpdating(),{receiveCart:b}=n(a.CART_STORE_KEY),y=g(s.billingAddress),v=s.needsShipping?g(s.shippingAddress):y,O=s.fees.length>0?s.fees.map(e=>g(e)):a.EMPTY_CART_FEES;return{cartCoupons:s.coupons.length>0?s.coupons.map(e=>({...e,label:e.code})):a.EMPTY_CART_COUPONS,cartItems:s.items,cartFees:O,cartItemsCount:s.itemsCount,cartItemsWeight:s.itemsWeight,cartNeedsPayment:s.needsPayment,cartNeedsShipping:s.needsShipping,cartItemErrors:s.errors,cartTotals:d,cartIsLoading:p,cartErrors:l,billingAddress:Object(c.a)(y),shippingAddress:Object(c.a)(v),extensions:s.extensions,shippingRates:s.shippingRates,isLoadingRates:f,cartHasCalculatedShipping:s.hasCalculatedShipping,paymentRequirements:s.paymentRequirements,receiveCart:b}},[u]);return d.current&&Object(n.isEqual)(d.current,p)||(d.current=p),d.current}},function(e,t){e.exports=window.wp.deprecated},function(e,t){},function(e,t,r){"use strict";r.d(t,"b",(function(){return x})),r.d(t,"a",(function(){return P}));var n=r(0),o=r(1),a=r(58),s=r(32),i=r.n(s),c=r(52),l=r(61),u=r(7);let d;!function(e){e.SET_IDLE="set_idle",e.SET_PRISTINE="set_pristine",e.SET_REDIRECT_URL="set_redirect_url",e.SET_COMPLETE="set_checkout_complete",e.SET_BEFORE_PROCESSING="set_before_processing",e.SET_AFTER_PROCESSING="set_after_processing",e.SET_PROCESSING_RESPONSE="set_processing_response",e.SET_PROCESSING="set_checkout_is_processing",e.SET_HAS_ERROR="set_checkout_has_error",e.SET_NO_ERROR="set_checkout_no_error",e.SET_CUSTOMER_ID="set_checkout_customer_id",e.SET_ORDER_ID="set_checkout_order_id",e.SET_ORDER_NOTES="set_checkout_order_notes",e.INCREMENT_CALCULATING="increment_calculating",e.DECREMENT_CALCULATING="decrement_calculating",e.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS="set_shipping_address_as_billing_address",e.SET_SHOULD_CREATE_ACCOUNT="set_should_create_account",e.SET_EXTENSION_DATA="set_extension_data"}(d||(d={}));const p=()=>({type:d.SET_IDLE}),f=e=>({type:d.SET_REDIRECT_URL,redirectUrl:e}),m=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{type:d.SET_COMPLETE,data:e}},h=function(){let e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return{type:e?d.SET_HAS_ERROR:d.SET_NO_ERROR}};var b=r(2),g=r(118);let E;!function(e){e.PRISTINE="pristine",e.IDLE="idle",e.PROCESSING="processing",e.COMPLETE="complete",e.BEFORE_PROCESSING="before_processing",e.AFTER_PROCESSING="after_processing"}(E||(E={}));const y={order_id:0,customer_id:0,billing_address:{},shipping_address:{},...Object(b.getSetting)("checkoutData",{})||{}},v={redirectUrl:"",status:E.PRISTINE,hasError:!1,calculatingCount:0,orderId:y.order_id,orderNotes:"",customerId:y.customer_id,useShippingAsBilling:Object(g.b)(y.billing_address,y.shipping_address),shouldCreateAccount:!1,processingResponse:null,extensionData:{}},O=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:v,{redirectUrl:t,type:r,customerId:n,orderId:o,orderNotes:a,extensionData:s,useShippingAsBilling:i,shouldCreateAccount:c,data:l}=arguments.length>1?arguments[1]:void 0,u=e;switch(r){case d.SET_PRISTINE:u=v;break;case d.SET_IDLE:u=e.status!==E.IDLE?{...e,status:E.IDLE}:e;break;case d.SET_REDIRECT_URL:u=void 0!==t&&t!==e.redirectUrl?{...e,redirectUrl:t}:e;break;case d.SET_PROCESSING_RESPONSE:u={...e,processingResponse:l};break;case d.SET_COMPLETE:u=e.status!==E.COMPLETE?{...e,status:E.COMPLETE,redirectUrl:"string"==typeof(null==l?void 0:l.redirectUrl)?l.redirectUrl:e.redirectUrl}:e;break;case d.SET_PROCESSING:u=e.status!==E.PROCESSING?{...e,status:E.PROCESSING,hasError:!1}:e,u=!1===u.hasError?u:{...u,hasError:!1};break;case d.SET_BEFORE_PROCESSING:u=e.status!==E.BEFORE_PROCESSING?{...e,status:E.BEFORE_PROCESSING,hasError:!1}:e;break;case d.SET_AFTER_PROCESSING:u=e.status!==E.AFTER_PROCESSING?{...e,status:E.AFTER_PROCESSING}:e;break;case d.SET_HAS_ERROR:u=e.hasError?e:{...e,hasError:!0},u=e.status===E.PROCESSING||e.status===E.BEFORE_PROCESSING?{...u,status:E.IDLE}:u;break;case d.SET_NO_ERROR:u=e.hasError?{...e,hasError:!1}:e;break;case d.INCREMENT_CALCULATING:u={...e,calculatingCount:e.calculatingCount+1};break;case d.DECREMENT_CALCULATING:u={...e,calculatingCount:Math.max(0,e.calculatingCount-1)};break;case d.SET_CUSTOMER_ID:u=void 0!==n?{...e,customerId:n}:e;break;case d.SET_ORDER_ID:u=void 0!==o?{...e,orderId:o}:e;break;case d.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS:void 0!==i&&i!==e.useShippingAsBilling&&(u={...e,useShippingAsBilling:i});break;case d.SET_SHOULD_CREATE_ACCOUNT:void 0!==c&&c!==e.shouldCreateAccount&&(u={...e,shouldCreateAccount:c});break;case d.SET_ORDER_NOTES:void 0!==a&&e.orderNotes!==a&&(u={...e,orderNotes:a});break;case d.SET_EXTENSION_DATA:void 0!==s&&e.extensionData!==s&&(u={...e,extensionData:s})}return u!==e&&r!==d.SET_PRISTINE&&u.status===E.PRISTINE&&(u.status=E.IDLE),u};var S=r(18),_=r(91),k=r(197);var w=r(199),j=r(194),R=r(40),C=r(29),T=r(77);const A=Object(n.createContext)({dispatchActions:{resetCheckout:()=>{},setRedirectUrl:e=>{},setHasError:e=>{},setAfterProcessing:e=>{},incrementCalculating:()=>{},decrementCalculating:()=>{},setCustomerId:e=>{},setOrderId:e=>{},setOrderNotes:e=>{},setExtensionData:e=>{}},onSubmit:()=>{},isComplete:!1,isIdle:!1,isCalculating:!1,isProcessing:!1,isBeforeProcessing:!1,isAfterProcessing:!1,hasError:!1,redirectUrl:"",orderId:0,orderNotes:"",customerId:0,onCheckoutAfterProcessingWithSuccess:()=>()=>{},onCheckoutAfterProcessingWithError:()=>()=>{},onCheckoutBeforeProcessing:()=>()=>{},onCheckoutValidationBeforeProcessing:()=>()=>{},hasOrder:!1,isCart:!1,useShippingAsBilling:!1,setUseShippingAsBilling:e=>{},shouldCreateAccount:!1,setShouldCreateAccount:e=>{},extensionData:{}}),x=()=>Object(n.useContext)(A),P=e=>{let{children:t,redirectUrl:r,isCart:s=!1}=e;v.redirectUrl=r;const[b,g]=Object(n.useReducer)(O,v),{setValidationErrors:y}=Object(j.b)(),{createErrorNotice:x}=Object(u.useDispatch)("core/notices"),{dispatchCheckoutEvent:P}=Object(R.a)(),M=b.calculatingCount>0,{isSuccessResponse:N,isErrorResponse:I,isFailResponse:D,shouldRetry:L}=Object(C.d)(),{checkoutNotices:F,paymentNotices:V,expressPaymentNotices:B}=(()=>{const{noticeContexts:e}=Object(C.d)();return{checkoutNotices:Object(u.useSelect)(e=>e("core/notices").getNotices("wc/checkout"),[]),expressPaymentNotices:Object(u.useSelect)(t=>t("core/notices").getNotices(e.EXPRESS_PAYMENTS),[e.EXPRESS_PAYMENTS]),paymentNotices:Object(u.useSelect)(t=>t("core/notices").getNotices(e.PAYMENTS),[e.PAYMENTS])}})(),[U,H]=Object(n.useReducer)(_.b,{}),G=Object(n.useRef)(U),{onCheckoutAfterProcessingWithSuccess:Y,onCheckoutAfterProcessingWithError:z,onCheckoutValidationBeforeProcessing:q}=(e=>Object(n.useMemo)(()=>({onCheckoutAfterProcessingWithSuccess:Object(k.a)("checkout_after_processing_with_success",e),onCheckoutAfterProcessingWithError:Object(k.a)("checkout_after_processing_with_error",e),onCheckoutValidationBeforeProcessing:Object(k.a)("checkout_validation_before_processing",e)}),[e]))(H);Object(n.useEffect)(()=>{G.current=U},[U]);const W=Object(n.useMemo)(()=>function(){return i()("onCheckoutBeforeProcessing",{alternative:"onCheckoutValidationBeforeProcessing",plugin:"WooCommerce Blocks"}),q(...arguments)},[q]),X=Object(n.useMemo)(()=>({resetCheckout:()=>{g({type:d.SET_PRISTINE})},setRedirectUrl:e=>{g(f(e))},setHasError:e=>{g(h(e))},incrementCalculating:()=>{g({type:d.INCREMENT_CALCULATING})},decrementCalculating:()=>{g({type:d.DECREMENT_CALCULATING})},setCustomerId:e=>{var t;g((t=e,{type:d.SET_CUSTOMER_ID,customerId:t}))},setOrderId:e=>{g((e=>({type:d.SET_ORDER_ID,orderId:e}))(e))},setOrderNotes:e=>{g((e=>({type:d.SET_ORDER_NOTES,orderNotes:e}))(e))},setExtensionData:e=>{g((e=>({type:d.SET_EXTENSION_DATA,extensionData:e}))(e))},setAfterProcessing:e=>{const t=(e=>{const t={message:"",paymentStatus:"",redirectUrl:"",paymentDetails:{}};return"payment_result"in e&&(t.paymentStatus=e.payment_result.payment_status,t.redirectUrl=e.payment_result.redirect_url,e.payment_result.hasOwnProperty("payment_details")&&Array.isArray(e.payment_result.payment_details)&&e.payment_result.payment_details.forEach(e=>{let{key:r,value:n}=e;t.paymentDetails[r]=Object(S.decodeEntities)(n)})),"message"in e&&(t.message=Object(S.decodeEntities)(e.message)),!t.message&&"data"in e&&"status"in e.data&&e.data.status>299&&(t.message=Object(o.__)("Something went wrong. Please contact us to get assistance.","woocommerce")),t})(e);var r;g(f((null==t?void 0:t.redirectUrl)||"")),g((r=t,{type:d.SET_PROCESSING_RESPONSE,data:r})),g({type:d.SET_AFTER_PROCESSING})}}),[]);Object(n.useEffect)(()=>{b.status===E.BEFORE_PROCESSING&&(Object(T.b)("error"),Object(w.a)(G.current,"checkout_validation_before_processing",{}).then(e=>{!0!==e?(Array.isArray(e)&&e.forEach(e=>{let{errorMessage:t,validationErrors:r}=e;x(t,{context:"wc/checkout"}),y(r)}),g(p()),g(h())):g({type:d.SET_PROCESSING})}))},[b.status,y,x,g]);const K=Object(a.a)(b.status),$=Object(a.a)(b.hasError);Object(n.useEffect)(()=>{if((b.status!==K||b.hasError!==$)&&b.status===E.AFTER_PROCESSING){const e={redirectUrl:b.redirectUrl,orderId:b.orderId,customerId:b.customerId,orderNotes:b.orderNotes,processingResponse:b.processingResponse};b.hasError?Object(w.b)(G.current,"checkout_after_processing_with_error",e).then(t=>{const r=(e=>{let t=null;return e.forEach(e=>{if((I(e)||D(e))&&e.message&&Object(c.a)(e.message)){const r=e.messageContext&&Object(c.a)(e.messageContent)?{context:e.messageContext}:void 0;t=e,x(e.message,r)}}),t})(t);if(null!==r)L(r)?g(p()):g(m(r));else{if(!(F.some(e=>"error"===e.status)||B.some(e=>"error"===e.status)||V.some(e=>"error"===e.status))){var n;const t=(null===(n=e.processingResponse)||void 0===n?void 0:n.message)||Object(o.__)("Something went wrong. Please contact us to get assistance.","woocommerce");x(t,{id:"checkout",context:"wc/checkout"})}g(p())}}):Object(w.b)(G.current,"checkout_after_processing_with_success",e).then(e=>{let t=null,r=null;if(e.forEach(e=>{N(e)&&(t=e),(I(e)||D(e))&&(r=e)}),t&&!r)g(m(t));else if(Object(l.a)(r)){if(r.message&&Object(c.a)(r.message)){const e=r.messageContext&&Object(c.a)(r.messageContext)?{context:r.messageContext}:void 0;x(r.message,e)}L(r)?g(h(!0)):g(m(r))}else g(m())})}},[b.status,b.hasError,b.redirectUrl,b.orderId,b.customerId,b.orderNotes,b.processingResponse,K,$,X,x,I,D,N,L,F,B,V]);const J={onSubmit:Object(n.useCallback)(()=>{P("submit"),g({type:d.SET_BEFORE_PROCESSING})},[P]),isComplete:b.status===E.COMPLETE,isIdle:b.status===E.IDLE,isCalculating:M,isProcessing:b.status===E.PROCESSING,isBeforeProcessing:b.status===E.BEFORE_PROCESSING,isAfterProcessing:b.status===E.AFTER_PROCESSING,hasError:b.hasError,redirectUrl:b.redirectUrl,onCheckoutBeforeProcessing:W,onCheckoutValidationBeforeProcessing:q,onCheckoutAfterProcessingWithSuccess:Y,onCheckoutAfterProcessingWithError:z,dispatchActions:X,isCart:s,orderId:b.orderId,hasOrder:!!b.orderId,customerId:b.customerId,orderNotes:b.orderNotes,useShippingAsBilling:b.useShippingAsBilling,setUseShippingAsBilling:e=>{return g((t=e,{type:d.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS,useShippingAsBilling:t}));var t},shouldCreateAccount:b.shouldCreateAccount,setShouldCreateAccount:e=>{return g((t=e,{type:d.SET_SHOULD_CREATE_ACCOUNT,shouldCreateAccount:t}));var t},extensionData:b.extensionData};return Object(n.createElement)(A.Provider,{value:J},t)}},,,function(e,t){e.exports=window.wc.priceFormat},function(e,t){e.exports=window.wp.warning},function(e,t){e.exports=window.wp.hooks},function(e,t,r){"use strict";r.d(t,"a",(function(){return s}));var n=r(39),o=r(0),a=r(31);const s=()=>{const e=Object(a.a)(),t=Object(o.useRef)(e);return Object(o.useEffect)(()=>{t.current=e},[e]),{dispatchStoreEvent:Object(o.useCallback)((function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-"+e,t)}catch(e){console.error(e)}}),[]),dispatchCheckoutEvent:Object(o.useCallback)((function(e){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-checkout-"+e,{...r,storeCart:t.current})}catch(e){console.error(e)}}),[])}}},function(e,t,r){"use strict";var n=r(8),o=r(0),a=r(15),s=function({icon:e,className:t,...r}){const a=["dashicon","dashicons","dashicons-"+e,t].filter(Boolean).join(" ");return Object(o.createElement)("span",Object(n.a)({className:a},r))};t.a=function({icon:e=null,size:t=24,...r}){if("string"==typeof e)return Object(o.createElement)(s,Object(n.a)({icon:e},r));if(Object(o.isValidElement)(e)&&s===e.type)return Object(o.cloneElement)(e,{...r});if("function"==typeof e)return e.prototype instanceof o.Component?Object(o.createElement)(e,{size:t,...r}):e({size:t,...r});if(e&&("svg"===e.type||e.type===a.SVG)){const n={width:t,height:t,...e.props,...r};return Object(o.createElement)(a.SVG,n)}return Object(o.isValidElement)(e)?Object(o.cloneElement)(e,{size:t,...r}):e}},function(e,t,r){"use strict";var n=r(4),o=r.n(n),a=r(0);t.a=Object(a.forwardRef)((function({as:e="div",className:t,...r},n){return function({as:e="div",...t}){return"function"==typeof t.children?t.children(t):Object(a.createElement)(e,t)}({as:e,className:o()("components-visually-hidden",t),...r,ref:n})}))},,function(e,t,r){"use strict";r.d(t,"n",(function(){return a})),r.d(t,"l",(function(){return s})),r.d(t,"k",(function(){return i})),r.d(t,"m",(function(){return c})),r.d(t,"i",(function(){return l})),r.d(t,"d",(function(){return u})),r.d(t,"f",(function(){return d})),r.d(t,"j",(function(){return p})),r.d(t,"c",(function(){return f})),r.d(t,"e",(function(){return m})),r.d(t,"g",(function(){return h})),r.d(t,"a",(function(){return b})),r.d(t,"h",(function(){return g})),r.d(t,"b",(function(){return E}));var n,o=r(2);const a=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),s=a.pluginUrl+"images/",i=a.pluginUrl+"build/",c=a.buildPhase,l=null===(n=o.STORE_PAGES.shop)||void 0===n?void 0:n.permalink,u=(o.STORE_PAGES.checkout.id,o.STORE_PAGES.checkout.permalink),d=o.STORE_PAGES.privacy.permalink,p=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),f=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id,o.STORE_PAGES.cart.permalink),m=o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),h=Object(o.getSetting)("shippingCountries",{}),b=Object(o.getSetting)("allowedCountries",{}),g=Object(o.getSetting)("shippingStates",{}),E=Object(o.getSetting)("allowedStates",{})},function(e,t,r){"use strict";var n=r(2),o=r(1),a=r(69),s=r(52);const i=Object(n.getSetting)("countryLocale",{}),c=e=>{const t={};return void 0!==e.label&&(t.label=e.label),void 0!==e.required&&(t.required=e.required),void 0!==e.hidden&&(t.hidden=e.hidden),void 0===e.label||e.optionalLabel||(t.optionalLabel=Object(o.sprintf)(
2
  /* translators: %s Field label. */
3
  Object(o.__)("%s (optional)","woocommerce"),e.label)),e.priority&&(Object(a.a)(e.priority)&&(t.index=e.priority),Object(s.a)(e.priority)&&(t.index=parseInt(e.priority,10))),e.hidden&&(t.required=!1),t},l=Object.entries(i).map(e=>{let[t,r]=e;return[t,Object.entries(r).map(e=>{let[t,r]=e;return[t,c(r)]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{})]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{});t.a=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";const o=r&&void 0!==l[r]?l[r]:{};return e.map(e=>({key:e,...n.defaultAddressFields[e]||{},...o[e]||{},...t[e]||{}})).sort((e,t)=>e.index-t.index)}},function(e,t,r){"use strict";r.d(t,"b",(function(){return s})),r.d(t,"a",(function(){return i}));var n=r(0),o=r(65);const a=Object(n.createContext)({isInitialized:!1,billingData:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",email:"",phone:""},shippingAddress:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},setBillingData:()=>{},setShippingAddress:()=>{}}),s=()=>Object(n.useContext)(a),i=e=>{let{children:t}=e;const r=Object(o.a)();return Object(n.createElement)(a.Provider,{value:r},t)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t,r){var o=this,a=Object(n.useRef)(null),s=Object(n.useRef)(0),i=Object(n.useRef)(null),c=Object(n.useRef)([]),l=Object(n.useRef)(),u=Object(n.useRef)(),d=Object(n.useRef)(e),p=Object(n.useRef)(!0);d.current=e;var f=!t&&0!==t&&"undefined"!=typeof window;if("function"!=typeof e)throw new TypeError("Expected a function");t=+t||0;var m=!!(r=r||{}).leading,h=!("trailing"in r)||!!r.trailing,b="maxWait"in r,g=b?Math.max(+r.maxWait||0,t):null;return Object(n.useEffect)((function(){return p.current=!0,function(){p.current=!1}}),[]),Object(n.useMemo)((function(){var e=function(e){var t=c.current,r=l.current;return c.current=l.current=null,s.current=e,u.current=d.current.apply(r,t)},r=function(e,t){f&&cancelAnimationFrame(i.current),i.current=f?requestAnimationFrame(e):setTimeout(e,t)},n=function(e){if(!p.current)return!1;var r=e-a.current,n=e-s.current;return!a.current||r>=t||r<0||b&&n>=g},E=function(t){return i.current=null,h&&c.current?e(t):(c.current=l.current=null,u.current)},y=function(){var e=Date.now();if(n(e))return E(e);if(p.current){var o=e-a.current,i=e-s.current,c=t-o,l=b?Math.min(c,g-i):c;r(y,l)}},v=function(){for(var d=[],f=0;f<arguments.length;f++)d[f]=arguments[f];var h=Date.now(),g=n(h);if(c.current=d,l.current=o,a.current=h,g){if(!i.current&&p.current)return s.current=a.current,r(y,t),m?e(a.current):u.current;if(b)return r(y,t),e(a.current)}return i.current||r(y,t),u.current};return v.cancel=function(){i.current&&(f?cancelAnimationFrame(i.current):clearTimeout(i.current)),s.current=0,c.current=a.current=l.current=i.current=null},v.isPending=function(){return!!i.current},v.flush=function(){return i.current?E(Date.now()):u.current},v}),[m,b,t,g,h,f])}},function(e,t,r){"use strict";r.d(t,"a",(function(){return l}));var n=r(11),o=r.n(n),a=r(0),s=r(16);const i=[".wp-block-woocommerce-cart"],c=e=>{let{Block:t,containers:r,getProps:n=(()=>({})),getErrorBoundaryProps:i=(()=>({}))}=e;0!==r.length&&Array.prototype.forEach.call(r,(e,r)=>{const c=n(e,r),l=i(e,r),u={...e.dataset,...c.attributes||{}};(e=>{let{Block:t,container:r,attributes:n={},props:i={},errorBoundaryProps:c={}}=e;Object(a.render)(Object(a.createElement)(s.a,c,Object(a.createElement)(a.Suspense,{fallback:Object(a.createElement)("div",{className:"wc-block-placeholder"})},t&&Object(a.createElement)(t,o()({},i,{attributes:n})))),r,()=>{r.classList&&r.classList.remove("is-loading")})})({Block:t,container:e,props:c,attributes:u,errorBoundaryProps:l})})},l=e=>{const t=document.body.querySelectorAll(i.join(",")),{Block:r,getProps:n,getErrorBoundaryProps:o,selector:a}=e;(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrappers:a}=e;const s=document.body.querySelectorAll(o);a&&a.length>0&&Array.prototype.filter.call(s,e=>!((e,t)=>Array.prototype.some.call(t,t=>t.contains(e)&&!t.isSameNode(e)))(e,a)),c({Block:t,containers:s,getProps:r,getErrorBoundaryProps:n})})({Block:r,getProps:n,getErrorBoundaryProps:o,selector:a,wrappers:t}),Array.prototype.forEach.call(t,t=>{t.addEventListener("wc-blocks_render_blocks_frontend",()=>{(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrapper:a}=e;const s=a.querySelectorAll(o);c({Block:t,containers:s,getProps:r,getErrorBoundaryProps:n})})({...e,wrapper:t})})})}},,function(e,t,r){"use strict";var n=r(8),o=r(0),a=r(4),s=r.n(a),i=r(6),c=r(32),l=r.n(c),u=r(13),d=r(51),p=r(93),f=r(1);function m(e,t,r){const{defaultView:n}=t,{frameElement:o}=n;if(!o||t===r.ownerDocument)return e;const a=o.getBoundingClientRect();return new n.DOMRect(e.left+a.left,e.top+a.top,e.width,e.height)}let h=0;function b(e){const t=document.scrollingElement||document.body;e&&(h=t.scrollTop);const r=e?"add":"remove";t.classList[r]("lockscroll"),document.documentElement.classList[r]("lockscroll"),e||(t.scrollTop=h)}let g=0;function E(){return Object(o.useEffect)(()=>(0===g&&b(!0),++g,()=>{1===g&&b(!1),--g}),[]),null}var y=r(24);function v(e){const t=Object(o.useContext)(y.a),r=t.slots[e]||{},n=t.fills[e],a=Object(o.useMemo)(()=>n||[],[n]);return{...r,updateSlot:Object(o.useCallback)(r=>{t.updateSlot(e,r)},[e,t.updateSlot]),unregisterSlot:Object(o.useCallback)(r=>{t.unregisterSlot(e,r)},[e,t.unregisterSlot]),fills:a,registerFill:Object(o.useCallback)(r=>{t.registerFill(e,r)},[e,t.registerFill]),unregisterFill:Object(o.useCallback)(r=>{t.unregisterFill(e,r)},[e,t.unregisterFill])}}var O=Object(o.createContext)({registerSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},getSlot:()=>{},getFills:()=>{},subscribe:()=>{}});function S({name:e,children:t,registerFill:r,unregisterFill:n}){const a=(e=>{const{getSlot:t,subscribe:r}=Object(o.useContext)(O),[n,a]=Object(o.useState)(t(e));return Object(o.useEffect)(()=>(a(t(e)),r(()=>{a(t(e))})),[e]),n})(e),s=Object(o.useRef)({name:e,children:t});return Object(o.useLayoutEffect)(()=>(r(e,s.current),()=>n(e,s.current)),[]),Object(o.useLayoutEffect)(()=>{s.current.children=t,a&&a.forceUpdate()},[t]),Object(o.useLayoutEffect)(()=>{e!==s.current.name&&(n(s.current.name,s.current),s.current.name=e,r(e,s.current))},[e]),a&&a.node?(Object(i.isFunction)(t)&&(t=t(a.props.fillProps)),Object(o.createPortal)(t,a.node)):null}var _=e=>Object(o.createElement)(O.Consumer,null,({registerFill:t,unregisterFill:r})=>Object(o.createElement)(S,Object(n.a)({},e,{registerFill:t,unregisterFill:r})));class k extends o.Component{constructor(){super(...arguments),this.isUnmounted=!1,this.bindNode=this.bindNode.bind(this)}componentDidMount(){const{registerSlot:e}=this.props;e(this.props.name,this)}componentWillUnmount(){const{unregisterSlot:e}=this.props;this.isUnmounted=!0,e(this.props.name,this)}componentDidUpdate(e){const{name:t,unregisterSlot:r,registerSlot:n}=this.props;e.name!==t&&(r(e.name),n(t,this))}bindNode(e){this.node=e}forceUpdate(){this.isUnmounted||super.forceUpdate()}render(){const{children:e,name:t,fillProps:r={},getFills:n}=this.props,a=Object(i.map)(n(t,this),e=>{const t=Object(i.isFunction)(e.children)?e.children(r):e.children;return o.Children.map(t,(e,t)=>{if(!e||Object(i.isString)(e))return e;const r=e.key||t;return Object(o.cloneElement)(e,{key:r})})}).filter(Object(i.negate)(o.isEmptyElement));return Object(o.createElement)(o.Fragment,null,Object(i.isFunction)(e)?e(a):a)}}var w=e=>Object(o.createElement)(O.Consumer,null,({registerSlot:t,unregisterSlot:r,getFills:a})=>Object(o.createElement)(k,Object(n.a)({},e,{registerSlot:t,unregisterSlot:r,getFills:a})));function j(){const[,e]=Object(o.useState)({}),t=Object(o.useRef)(!0);return Object(o.useEffect)(()=>()=>{t.current=!1},[]),()=>{t.current&&e({})}}function R({name:e,children:t}){const r=v(e),n=Object(o.useRef)({rerender:j()});return Object(o.useEffect)(()=>(r.registerFill(n),()=>{r.unregisterFill(n)}),[r.registerFill,r.unregisterFill]),r.ref&&r.ref.current?("function"==typeof t&&(t=t(r.fillProps)),Object(o.createPortal)(t,r.ref.current)):null}var C=Object(o.forwardRef)((function({name:e,fillProps:t={},as:r="div",...a},s){const i=Object(o.useContext)(y.a),c=Object(o.useRef)();return Object(o.useLayoutEffect)(()=>(i.registerSlot(e,c,t),()=>{i.unregisterSlot(e,c)}),[i.registerSlot,i.unregisterSlot,e]),Object(o.useLayoutEffect)(()=>{i.updateSlot(e,t)}),Object(o.createElement)(r,Object(n.a)({ref:Object(u.useMergeRefs)([s,c])},a))}));function T(e){return Object(o.createElement)(o.Fragment,null,Object(o.createElement)(_,e),Object(o.createElement)(R,e))}r(12),o.Component;const A=Object(o.forwardRef)(({bubblesVirtually:e,...t},r)=>e?Object(o.createElement)(C,Object(n.a)({},t,{ref:r})):Object(o.createElement)(w,t));function x(e){return"appear"===e?"top":"left"}function P(e,t){const{paddingTop:r,paddingBottom:n,paddingLeft:o,paddingRight:a}=(s=t).ownerDocument.defaultView.getComputedStyle(s);var s;const i=r?parseInt(r,10):0,c=n?parseInt(n,10):0,l=o?parseInt(o,10):0,u=a?parseInt(a,10):0;return{x:e.left+l,y:e.top+i,width:e.width-l-u,height:e.height-i-c,left:e.left+l,right:e.right-u,top:e.top+i,bottom:e.bottom-c}}function M(e,t,r){r?e.getAttribute(t)!==r&&e.setAttribute(t,r):e.hasAttribute(t)&&e.removeAttribute(t)}function N(e,t,r=""){e.style[t]!==r&&(e.style[t]=r)}function I(e,t,r){r?e.classList.contains(t)||e.classList.add(t):e.classList.contains(t)&&e.classList.remove(t)}const D=Object(o.forwardRef)(({headerTitle:e,onClose:t,children:r,className:a,noArrow:i=!0,isAlternate:c,position:h="bottom right",range:b,focusOnMount:g="firstElement",anchorRef:y,shouldAnchorIncludePadding:O,anchorRect:S,getAnchorRect:_,expandOnMobile:k,animate:w=!0,onClickOutside:j,onFocusOutside:R,__unstableStickyBoundaryElement:C,__unstableSlotName:A="Popover",__unstableObserveElement:D,__unstableBoundaryParent:L,__unstableForcePosition:F,__unstableForceXAlignment:V,...B},U)=>{const H=Object(o.useRef)(null),G=Object(o.useRef)(null),Y=Object(o.useRef)(),z=Object(u.useViewportMatch)("medium","<"),[q,X]=Object(o.useState)(),K=v(A),$=k&&z,[J,Q]=Object(u.useResizeObserver)();i=$||i,Object(o.useLayoutEffect)(()=>{if($)return I(Y.current,"is-without-arrow",i),I(Y.current,"is-alternate",c),M(Y.current,"data-x-axis"),M(Y.current,"data-y-axis"),N(Y.current,"top"),N(Y.current,"left"),N(G.current,"maxHeight"),void N(G.current,"maxWidth");const e=()=>{if(!Y.current||!G.current)return;let e=function(e,t,r,n=!1,o,a){if(t)return t;if(r){if(!e.current)return;const t=r(e.current);return m(t,t.ownerDocument||e.current.ownerDocument,a)}if(!1!==n){if(!(n&&window.Range&&window.Element&&window.DOMRect))return;if("function"==typeof(null==n?void 0:n.cloneRange))return m(Object(d.getRectangleFromRange)(n),n.endContainer.ownerDocument,a);if("function"==typeof(null==n?void 0:n.getBoundingClientRect)){const e=m(n.getBoundingClientRect(),n.ownerDocument,a);return o?e:P(e,n)}const{top:e,bottom:t}=n,r=e.getBoundingClientRect(),s=t.getBoundingClientRect(),i=m(new window.DOMRect(r.left,r.top,r.width,s.bottom-r.top),e.ownerDocument,a);return o?i:P(i,n)}if(!e.current)return;const{parentNode:s}=e.current,i=s.getBoundingClientRect();return o?i:P(i,s)}(H,S,_,y,O,Y.current);if(!e)return;const{offsetParent:t,ownerDocument:r}=Y.current;let n,o=0;if(t&&t!==r.body){const r=t.getBoundingClientRect();o=r.top,e=new window.DOMRect(e.left-r.left,e.top-r.top,e.width,e.height)}var a;L&&(n=null===(a=Y.current.closest(".popover-slot"))||void 0===a?void 0:a.parentNode);const s=Q.height?Q:G.current.getBoundingClientRect(),{popoverTop:l,popoverLeft:u,xAxis:p,yAxis:b,contentHeight:g,contentWidth:E}=function(e,t,r="top",n,o,a,s,i,c){const[l,u="center",d]=r.split(" "),p=function(e,t,r,n,o,a,s,i){const{height:c}=t;if(o){const t=o.getBoundingClientRect().top+c-s;if(e.top<=t)return{yAxis:r,popoverTop:Math.min(e.bottom,t)}}let l=e.top+e.height/2;"bottom"===n?l=e.bottom:"top"===n&&(l=e.top);const u={popoverTop:l,contentHeight:(l-c/2>0?c/2:l)+(l+c/2>window.innerHeight?window.innerHeight-l:c/2)},d={popoverTop:e.top,contentHeight:e.top-10-c>0?c:e.top-10},p={popoverTop:e.bottom,contentHeight:e.bottom+10+c>window.innerHeight?window.innerHeight-10-e.bottom:c};let f,m=r,h=null;if(!o&&!i)if("middle"===r&&u.contentHeight===c)m="middle";else if("top"===r&&d.contentHeight===c)m="top";else if("bottom"===r&&p.contentHeight===c)m="bottom";else{m=d.contentHeight>p.contentHeight?"top":"bottom";const e="top"===m?d.contentHeight:p.contentHeight;h=e!==c?e:null}return f="middle"===m?u.popoverTop:"top"===m?d.popoverTop:p.popoverTop,{yAxis:m,popoverTop:f,contentHeight:h}}(e,t,l,d,n,0,a,i);return{...function(e,t,r,n,o,a,s,i,c){const{width:l}=t;"left"===r&&Object(f.isRTL)()?r="right":"right"===r&&Object(f.isRTL)()&&(r="left"),"left"===n&&Object(f.isRTL)()?n="right":"right"===n&&Object(f.isRTL)()&&(n="left");const u=Math.round(e.left+e.width/2),d={popoverLeft:u,contentWidth:(u-l/2>0?l/2:u)+(u+l/2>window.innerWidth?window.innerWidth-u:l/2)};let p=e.left;"right"===n?p=e.right:"middle"===a||c||(p=u);let m=e.right;"left"===n?m=e.left:"middle"===a||c||(m=u);const h={popoverLeft:p,contentWidth:p-l>0?l:p},b={popoverLeft:m,contentWidth:m+l>window.innerWidth?window.innerWidth-m:l};let g,E=r,y=null;if(!o&&!i)if("center"===r&&d.contentWidth===l)E="center";else if("left"===r&&h.contentWidth===l)E="left";else if("right"===r&&b.contentWidth===l)E="right";else{E=h.contentWidth>b.contentWidth?"left":"right";const e="left"===E?h.contentWidth:b.contentWidth;l>window.innerWidth&&(y=window.innerWidth),e!==l&&(E="center",d.popoverLeft=window.innerWidth/2)}if(g="center"===E?d.popoverLeft:"left"===E?h.popoverLeft:b.popoverLeft,s){const e=s.getBoundingClientRect();g=Math.min(g,e.right-l),Object(f.isRTL)()||(g=Math.max(g,0))}return{xAxis:E,popoverLeft:g,contentWidth:y}}(e,t,u,d,n,p.yAxis,s,i,c),...p}}(e,s,h,C,Y.current,o,n,F,V);"number"==typeof l&&"number"==typeof u&&(N(Y.current,"top",l+"px"),N(Y.current,"left",u+"px")),I(Y.current,"is-without-arrow",i||"center"===p&&"middle"===b),I(Y.current,"is-alternate",c),M(Y.current,"data-x-axis",p),M(Y.current,"data-y-axis",b),N(G.current,"maxHeight","number"==typeof g?g+"px":""),N(G.current,"maxWidth","number"==typeof E?E+"px":""),X(({left:"right",right:"left"}[p]||"center")+" "+({top:"bottom",bottom:"top"}[b]||"middle"))};e();const{ownerDocument:t}=Y.current,{defaultView:r}=t,n=r.setInterval(e,500);let o;const a=()=>{r.cancelAnimationFrame(o),o=r.requestAnimationFrame(e)};r.addEventListener("click",a),r.addEventListener("resize",e),r.addEventListener("scroll",e,!0);const s=function(e){if(e)return e.endContainer?e.endContainer.ownerDocument:e.top?e.top.ownerDocument:e.ownerDocument}(y);let l;return s&&s!==t&&(s.defaultView.addEventListener("resize",e),s.defaultView.addEventListener("scroll",e,!0)),D&&(l=new r.MutationObserver(e),l.observe(D,{attributes:!0})),()=>{r.clearInterval(n),r.removeEventListener("resize",e),r.removeEventListener("scroll",e,!0),r.removeEventListener("click",a),r.cancelAnimationFrame(o),s&&s!==t&&(s.defaultView.removeEventListener("resize",e),s.defaultView.removeEventListener("scroll",e,!0)),l&&l.disconnect()}},[$,S,_,y,O,h,Q,C,D,L]);const Z=(e,r)=>{if("focus-outside"===e&&R)R(r);else if("focus-outside"===e&&j){const e=new window.MouseEvent("click");Object.defineProperty(e,"target",{get:()=>r.relatedTarget}),l()("Popover onClickOutside prop",{since:"5.3",alternative:"onFocusOutside"}),j(e)}else t&&t()},[ee,te]=Object(u.__experimentalUseDialog)({focusOnMount:g,__unstableOnClose:Z,onClose:Z}),re=Object(u.useMergeRefs)([Y,ee,U]),ne=Boolean(w&&q)&&function(e){if("loading"===e.type)return s()("components-animate__loading");const{type:t,origin:r=x(t)}=e;if("appear"===t){const[e,t="center"]=r.split(" ");return s()("components-animate__appear",{["is-from-"+t]:"center"!==t,["is-from-"+e]:"middle"!==e})}return"slide-in"===t?s()("components-animate__slide-in","is-from-"+r):void 0}({type:"appear",origin:q});let oe=Object(o.createElement)("div",Object(n.a)({className:s()("components-popover",a,ne,{"is-expanded":$,"is-without-arrow":i,"is-alternate":c})},B,{ref:re},te,{tabIndex:"-1"}),$&&Object(o.createElement)(E,null),$&&Object(o.createElement)("div",{className:"components-popover__header"},Object(o.createElement)("span",{className:"components-popover__header-title"},e),Object(o.createElement)(W,{className:"components-popover__close",icon:p.a,onClick:t})),Object(o.createElement)("div",{ref:G,className:"components-popover__content"},Object(o.createElement)("div",{style:{position:"relative"}},J,r)));return K.ref&&(oe=Object(o.createElement)(T,{name:A},oe)),y||S?oe:Object(o.createElement)("span",{ref:H},oe)});D.Slot=Object(o.forwardRef)((function({name:e="Popover"},t){return Object(o.createElement)(A,{bubblesVirtually:!0,name:e,className:"popover-slot",ref:t})}));var L=D,F=function({shortcut:e,className:t}){if(!e)return null;let r,n;return Object(i.isString)(e)&&(r=e),Object(i.isObject)(e)&&(r=e.display,n=e.ariaLabel),Object(o.createElement)("span",{className:t,"aria-label":n},r)};const V=Object(o.createElement)("div",{className:"event-catcher"}),B=({eventHandlers:e,child:t,childrenWithPopover:r})=>Object(o.cloneElement)(Object(o.createElement)("span",{className:"disabled-element-wrapper"},Object(o.cloneElement)(V,e),Object(o.cloneElement)(t,{children:r}),","),e),U=({child:e,eventHandlers:t,childrenWithPopover:r})=>Object(o.cloneElement)(e,{...t,children:r}),H=(e,t,r)=>{if(1!==o.Children.count(e))return;const n=o.Children.only(e);"function"==typeof n.props[t]&&n.props[t](r)};var G=function({children:e,position:t,text:r,shortcut:n}){const[a,s]=Object(o.useState)(!1),[c,l]=Object(o.useState)(!1),d=Object(u.useDebounce)(l,700),p=t=>{H(e,"onMouseDown",t),document.addEventListener("mouseup",h),s(!0)},f=t=>{H(e,"onMouseUp",t),document.removeEventListener("mouseup",h),s(!1)},m=e=>"mouseUp"===e?f:"mouseDown"===e?p:void 0,h=m("mouseUp"),b=(t,r)=>n=>{if(H(e,t,n),n.currentTarget.disabled)return;if("focus"===n.type&&a)return;d.cancel();const o=Object(i.includes)(["focus","mouseenter"],n.type);o!==c&&(r?d(o):l(o))},g=()=>{d.cancel(),document.removeEventListener("mouseup",h)};if(Object(o.useEffect)(()=>g,[]),1!==o.Children.count(e))return e;const E={onMouseEnter:b("onMouseEnter",!0),onMouseLeave:b("onMouseLeave"),onClick:b("onClick"),onFocus:b("onFocus"),onBlur:b("onBlur"),onMouseDown:m("mouseDown")},y=o.Children.only(e),{children:v,disabled:O}=y.props;return(O?B:U)({child:y,eventHandlers:E,childrenWithPopover:(({grandchildren:e,isOver:t,position:r,text:n,shortcut:a})=>Object(o.concatChildren)(e,t&&Object(o.createElement)(L,{focusOnMount:!1,position:r,className:"components-tooltip","aria-hidden":"true",animate:!1,noArrow:!0},n,Object(o.createElement)(F,{className:"components-tooltip__shortcut",shortcut:a}))))({grandchildren:v,isOver:c,position:t,text:r,shortcut:n})})},Y=r(41),z=r(42);const q=["onMouseDown","onClick"];var W=t.a=Object(o.forwardRef)((function(e,t){const{href:r,target:a,isSmall:c,isPressed:u,isBusy:d,isDestructive:p,className:f,disabled:m,icon:h,iconPosition:b="left",iconSize:g,showTooltip:E,tooltipPosition:y,shortcut:v,label:O,children:S,text:_,variant:k,__experimentalIsFocusable:w,describedBy:j,...R}=function({isDefault:e,isPrimary:t,isSecondary:r,isTertiary:n,isLink:o,variant:a,...s}){let i=a;var c,u,d,p,f;return t&&(null!==(c=i)&&void 0!==c||(i="primary")),n&&(null!==(u=i)&&void 0!==u||(i="tertiary")),r&&(null!==(d=i)&&void 0!==d||(i="secondary")),e&&(l()("Button isDefault prop",{since:"5.4",alternative:'variant="secondary"'}),null!==(p=i)&&void 0!==p||(i="secondary")),o&&(null!==(f=i)&&void 0!==f||(i="link")),{...s,variant:i}}(e),C=s()("components-button",f,{"is-secondary":"secondary"===k,"is-primary":"primary"===k,"is-small":c,"is-tertiary":"tertiary"===k,"is-pressed":u,"is-busy":d,"is-link":"link"===k,"is-destructive":p,"has-text":!!h&&!!S,"has-icon":!!h}),T=m&&!w,A=void 0===r||T?"button":"a",x="a"===A?{href:r,target:a}:{type:"button",disabled:T,"aria-pressed":u};if(m&&w){x["aria-disabled"]=!0;for(const e of q)R[e]=e=>{e.stopPropagation(),e.preventDefault()}}const P=!T&&(E&&O||v||!!O&&(!S||Object(i.isArray)(S)&&!S.length)&&!1!==E),M=j?Object(i.uniqueId)():null,N=R["aria-describedby"]||M,I=Object(o.createElement)(A,Object(n.a)({},x,R,{className:C,"aria-label":R["aria-label"]||O,"aria-describedby":N,ref:t}),h&&"left"===b&&Object(o.createElement)(Y.a,{icon:h,size:g}),_&&Object(o.createElement)(o.Fragment,null,_),h&&"right"===b&&Object(o.createElement)(Y.a,{icon:h,size:g}),S);return P?Object(o.createElement)(o.Fragment,null,Object(o.createElement)(G,{text:j||O,shortcut:v,position:y},I),j&&Object(o.createElement)(z.a,null,Object(o.createElement)("span",{id:M},j))):Object(o.createElement)(o.Fragment,null,I,j&&Object(o.createElement)(z.a,null,Object(o.createElement)("span",{id:M},j)))}))},function(e,t){e.exports=window.wp.dom},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"string"==typeof e},,function(e,t,r){var n=r(80),o=r(55),a=o.setStyleProp,s=n.html,i=n.svg,c=n.isCustomAttribute,l=Object.prototype.hasOwnProperty;e.exports=function(e){var t,r,n,u;e=e||{};var d={};for(t in e)n=e[t],c(t)?d[t]=n:(r=t.toLowerCase(),l.call(s,r)?d[(u=s[r]).propertyName]=!!(u.hasBooleanValue||u.hasOverloadedBooleanValue&&!n)||n:l.call(i,t)?d[(u=i[t]).propertyName]=n:o.PRESERVE_CUSTOM_ATTRIBUTES&&(d[t]=n));return a(e.style,d),d}},function(e,t,r){var n=r(3),o=r(84).default,a={reactCompat:!0},s=n.version.split(".")[0]>=16;e.exports={PRESERVE_CUSTOM_ATTRIBUTES:s,invertObject:function(e,t){if(!e||"object"!=typeof e)throw new TypeError("First argument must be an object");var r,n,o="function"==typeof t,a={},s={};for(r in e)n=e[r],o&&(a=t(r,n))&&2===a.length?s[a[0]]=a[1]:"string"==typeof n&&(s[n]=r);return s},isCustomComponent:function(e,t){if(-1===e.indexOf("-"))return t&&"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}},setStyleProp:function(e,t){null!=e&&(t.style=o(e,a))}}},function(e,t,r){for(var n,o=r(90).CASE_SENSITIVE_TAG_NAMES,a={},s=0,i=o.length;s<i;s++)n=o[s],a[n.toLowerCase()]=n;function c(e){for(var t,r={},n=0,o=e.length;n<o;n++)r[(t=e[n]).name]=t.value;return r}function l(e){return function(e){return a[e]}(e=e.toLowerCase())||e}e.exports={formatAttributes:c,formatDOM:function e(t,r,n){r=r||null;for(var o,a,s,i=[],u=0,d=t.length;u<d;u++){switch(o=t[u],s={next:null,prev:i[u-1]||null,parent:r},(a=i[u-1])&&(a.next=s),"#"!==o.nodeName[0]&&(s.name=l(o.nodeName),s.attribs={},o.attributes&&o.attributes.length&&(s.attribs=c(o.attributes))),o.nodeType){case 1:"script"===s.name||"style"===s.name?s.type=s.name:s.type="tag",s.children=e(o.childNodes,s);break;case 3:s.type="text",s.data=o.nodeValue;break;case 8:s.type="comment",s.data=o.nodeValue}i.push(s)}return n&&(i.unshift({name:n.substring(0,n.indexOf(" ")).toLowerCase(),data:n,type:"directive",next:i[0]?i[0]:null,prev:null,parent:r}),i[1]&&(i[1].prev=i[0])),i},isIE:function(e){return e?document.documentMode===e:/(MSIE |Trident\/|Edge\/)/.test(navigator.userAgent)}}},function(e,t,r){"use strict";r.d(t,"b",(function(){return a})),r.d(t,"a",(function(){return s}));var n=r(0);const o=Object(n.createContext)({setIsSuppressed:e=>{},isSuppressed:!1}),a=()=>Object(n.useContext)(o),s=e=>{let{children:t}=e;const[r,a]=Object(n.useState)(!1),s={setIsSuppressed:a,isSuppressed:r};return Object(n.createElement)(o.Provider,{value:s},t)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t){const r=Object(n.useRef)();return Object(n.useEffect)(()=>{r.current===e||t&&!t(e,r.current)||(r.current=e)},[e,t]),r.current}},function(e,t,r){var n=r(79),o=r(54),a=r(88),s={decodeEntities:!0,lowerCaseAttributeNames:!1};function i(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");return""===e?[]:n(a(e,(t=t||{}).htmlparser2||s),t)}i.domToReact=n,i.htmlToDOM=a,i.attributesToProps=o,e.exports=i,e.exports.default=i},,function(e,t,r){"use strict";r.d(t,"a",(function(){return n})),r.d(t,"b",(function(){return o}));const n=e=>!(e=>null===e)(e)&&e instanceof Object&&e.constructor===Object;function o(e,t){return n(e)&&t in e}},,function(e,t){var r,n,o=e.exports={};function a(){throw new Error("setTimeout has not been defined")}function s(){throw new Error("clearTimeout has not been defined")}function i(e){if(r===setTimeout)return setTimeout(e,0);if((r===a||!r)&&setTimeout)return r=setTimeout,setTimeout(e,0);try{return r(e,0)}catch(t){try{return r.call(null,e,0)}catch(t){return r.call(this,e,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:a}catch(e){r=a}try{n="function"==typeof clearTimeout?clearTimeout:s}catch(e){n=s}}();var c,l=[],u=!1,d=-1;function p(){u&&c&&(u=!1,c.length?l=c.concat(l):d=-1,l.length&&f())}function f(){if(!u){var e=i(p);u=!0;for(var t=l.length;t;){for(c=l,l=[];++d<t;)c&&c[d].run();d=-1,t=l.length}c=null,u=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===s||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function m(e,t){this.fun=e,this.array=t}function h(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];l.push(new m(e,t)),1!==l.length||u||i(f)},m.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=h,o.addListener=h,o.once=h,o.off=h,o.removeListener=h,o.removeAllListeners=h,o.emit=h,o.prependListener=h,o.prependOnceListener=h,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},function(e,t,r){"use strict";r.d(t,"a",(function(){return u}));var n=r(5),o=r(7),a=r(0),s=r(12),i=r.n(s),c=r(61),l=r(67);const u=()=>{const{shippingRates:e,needsShipping:t,hasCalculatedShipping:r,isLoadingRates:s}=Object(o.useSelect)(e=>{const t=e(n.CART_STORE_KEY);return{shippingRates:t.getShippingRates(),needsShipping:t.getNeedsShipping(),hasCalculatedShipping:t.getHasCalculatedShipping(),isLoadingRates:t.isCustomerDataUpdating()}}),{isSelectingRate:u,selectShippingRate:d}=Object(l.a)(),p=Object(a.useRef)({});return Object(a.useEffect)(()=>{const t=(e=>Object.fromEntries(e.map(e=>{var t;let{package_id:r,shipping_rates:n}=e;return[r,null===(t=n.find(e=>e.selected))||void 0===t?void 0:t.rate_id]})))(e);Object(c.a)(t)&&!i()(p.current,t)&&(p.current=t)},[e]),{isSelectingRate:u,selectedRates:p.current,selectShippingRate:d,shippingRates:e,needsShipping:t,hasCalculatedShipping:r,isLoadingRates:s}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return a}));var n=r(7),o=r(5);const a=()=>{const{customerData:e,isInitialized:t}=Object(n.useSelect)(e=>{const t=e(o.CART_STORE_KEY);return{customerData:t.getCustomerData(),isInitialized:t.hasFinishedResolution("getCartData")}}),{setShippingAddress:r,setBillingData:a}=Object(n.useDispatch)(o.CART_STORE_KEY);return{isInitialized:t,billingData:e.billingData,shippingAddress:e.shippingAddress,setBillingData:a,setShippingAddress:r}}},function(e,t,r){"use strict";r.d(t,"b",(function(){return v})),r.d(t,"a",(function(){return O}));var n=r(0);const o={NONE:"none",INVALID_ADDRESS:"invalid_address",UNKNOWN:"unknown_error"},a={INVALID_COUNTRY:"woocommerce_rest_cart_shipping_rates_invalid_country",MISSING_COUNTRY:"woocommerce_rest_cart_shipping_rates_missing_country",INVALID_STATE:"woocommerce_rest_cart_shipping_rates_invalid_state"},s={shippingErrorStatus:{isPristine:!0,isValid:!1,hasInvalidAddress:!1,hasError:!1},dispatchErrorStatus:()=>null,shippingErrorTypes:o,shippingRates:[],isLoadingRates:!1,selectedRates:[],setSelectedRates:()=>null,shippingAddress:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:""},setShippingAddress:()=>null,onShippingRateSuccess:()=>null,onShippingRateFail:()=>null,onShippingRateSelectSuccess:()=>null,onShippingRateSelectFail:()=>null,needsShipping:!1},i=(e,t)=>{let{type:r}=t;return Object.values(o).includes(r)?r:e};var c=r(91),l=r(197);const u=e=>({onSuccess:Object(l.a)("shipping_rates_success",e),onFail:Object(l.a)("shipping_rates_fail",e),onSelectSuccess:Object(l.a)("shipping_rate_select_success",e),onSelectFail:Object(l.a)("shipping_rate_select_fail",e)});var d=r(199),p=r(34),f=r(31),m=r(67),h=r(64);const{NONE:b,INVALID_ADDRESS:g,UNKNOWN:E}=o,y=Object(n.createContext)(s),v=()=>Object(n.useContext)(y),O=e=>{let{children:t}=e;const{dispatchActions:r}=Object(p.b)(),{shippingRates:s,isLoadingRates:l,cartErrors:v}=Object(f.a)(),{isSelectingRate:O}=Object(m.a)(),{selectedRates:S}=Object(h.a)(),[_,k]=Object(n.useReducer)(i,b),[w,j]=Object(n.useReducer)(c.b,{}),R=Object(n.useRef)(w),C=Object(n.useMemo)(()=>({onShippingRateSuccess:u(j).onSuccess,onShippingRateFail:u(j).onFail,onShippingRateSelectSuccess:u(j).onSelectSuccess,onShippingRateSelectFail:u(j).onSelectFail}),[j]);Object(n.useEffect)(()=>{R.current=w},[w]),Object(n.useEffect)(()=>{l?r.incrementCalculating():r.decrementCalculating()},[l,r]),Object(n.useEffect)(()=>{O?r.incrementCalculating():r.decrementCalculating()},[O,r]),Object(n.useEffect)(()=>{v.length>0&&v.some(e=>!(!e.code||!Object.values(a).includes(e.code)))?k({type:g}):k({type:b})},[v]);const T=Object(n.useMemo)(()=>({isPristine:_===b,isValid:_===b,hasInvalidAddress:_===g,hasError:_===E||_===g}),[_]);Object(n.useEffect)(()=>{l||0!==s.length&&!T.hasError||Object(d.a)(R.current,"shipping_rates_fail",{hasInvalidAddress:T.hasInvalidAddress,hasError:T.hasError})},[s,l,T.hasError,T.hasInvalidAddress]),Object(n.useEffect)(()=>{!l&&s.length>0&&!T.hasError&&Object(d.a)(R.current,"shipping_rates_success",s)},[s,l,T.hasError]),Object(n.useEffect)(()=>{O||(T.hasError?Object(d.a)(R.current,"shipping_rate_select_fail",{hasError:T.hasError,hasInvalidAddress:T.hasInvalidAddress}):Object(d.a)(R.current,"shipping_rate_select_success",S.current))},[S,O,T.hasError,T.hasInvalidAddress]);const A={shippingErrorStatus:T,dispatchErrorStatus:k,shippingErrorTypes:o,...C};return Object(n.createElement)(n.Fragment,null,Object(n.createElement)(y.Provider,{value:A},t))}},function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(7),o=r(0),a=r(5),s=r(72),i=r(40);const c=()=>{const e=Object(s.a)(),{dispatchCheckoutEvent:t}=Object(i.a)(),{selectShippingRate:r}=Object(n.useDispatch)(a.CART_STORE_KEY);return{selectShippingRate:Object(o.useCallback)((n,o)=>{r(n,o).then(()=>{t("set-selected-shipping-rate",{shippingRateId:n})}).catch(t=>{e(t)})},[r,t,e]),isSelectingRate:Object(n.useSelect)(e=>e(a.CART_STORE_KEY).isShippingRateBeingSelected(),[])}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"d",(function(){return s})),r.d(t,"c",(function(){return i})),r.d(t,"b",(function(){return c}));const n=window.CustomEvent||null,o=(e,t)=>{let{bubbles:r=!1,cancelable:o=!1,element:a,detail:s={}}=t;if(!n)return;a||(a=document.body);const i=new n(e,{bubbles:r,cancelable:o,detail:s});a.dispatchEvent(i)};let a;const s=()=>{a&&clearTimeout(a),a=setTimeout(()=>{o("wc_fragment_refresh",{bubbles:!0,cancelable:!0})},50)},i=e=>{let{preserveCartData:t=!1}=e;o("wc-blocks_added_to_cart",{bubbles:!0,cancelable:!0,detail:{preserveCartData:t}})},c=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof jQuery)return()=>{};const a=()=>{o(t,{bubbles:r,cancelable:n})};return jQuery(document).on(e,a),()=>jQuery(document).off(e,a)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"number"==typeof e},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(0);const o=()=>{const[,e]=Object(n.useState)();return Object(n.useCallback)(t=>{e(()=>{throw t})},[])}},function(e,t,r){"use strict";var n=r(11),o=r.n(n),a=r(0);r(107);const s=e=>{if(!e)return;const t=e.getBoundingClientRect().bottom;t>=0&&t<=window.innerHeight||e.scrollIntoView()};t.a=e=>t=>{const r=Object(a.useRef)(null);return Object(a.createElement)(a.Fragment,null,Object(a.createElement)("div",{className:"with-scroll-to-top__scroll-point",ref:r,"aria-hidden":!0}),Object(a.createElement)(e,o()({},t,{scrollToTop:e=>{null!==r.current&&((e,t)=>{const{focusableSelector:r}=t||{};window&&Number.isFinite(window.innerHeight)&&(r?((e,t)=>{var r;const n=(null===(r=e.parentElement)||void 0===r?void 0:r.querySelectorAll(t))||[];if(n.length){const e=n[0];s(e),null==e||e.focus()}else s(e)})(e,r):s(e))})(r.current,e)}})))}},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"b",(function(){return a}));var n=r(7);const o=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0;const r=Object(n.select)("core/notices").getNotices(e);return r.some(e=>e.type===t)},a=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";const r=Object(n.select)("core/notices").getNotices(),{removeNotice:o}=Object(n.dispatch)("core/notices"),a=r.filter(t=>t.status===e);a.forEach(e=>o(e.id,t))}},function(e,t){},function(e,t,r){var n=r(3),o=r(54),a=r(55),s=a.setStyleProp;function i(e){return a.PRESERVE_CUSTOM_ATTRIBUTES&&"tag"===e.type&&a.isCustomComponent(e.name,e.attribs)}e.exports=function e(t,r){for(var a,c,l,u,d=(r=r||{}).library||n,p=d.cloneElement,f=d.createElement,m=d.isValidElement,h=[],b="function"==typeof r.replace,g=r.trim,E=0,y=t.length;E<y;E++)if(a=t[E],b&&m(c=r.replace(a)))y>1&&(c=p(c,{key:c.key||E})),h.push(c);else if("text"!==a.type){switch(l=a.attribs,i(a)?s(l.style,l):l&&(l=o(l)),u=null,a.type){case"script":case"style":a.children[0]&&(l.dangerouslySetInnerHTML={__html:a.children[0].data});break;case"tag":"textarea"===a.name&&a.children[0]?l.defaultValue=a.children[0].data:a.children&&a.children.length&&(u=e(a.children,r));break;default:continue}y>1&&(l.key=E),h.push(f(a.name,l,u))}else g?a.data.trim()&&h.push(a.data):h.push(a.data);return 1===h.length?h[0]:h}},function(e,t,r){var n=r(81),o=r(82),a=r(83),s=a.MUST_USE_PROPERTY,i=a.HAS_BOOLEAN_VALUE,c=a.HAS_NUMERIC_VALUE,l=a.HAS_POSITIVE_NUMERIC_VALUE,u=a.HAS_OVERLOADED_BOOLEAN_VALUE;function d(e,t){return(e&t)===t}function p(e,t,r){var n,o,a,p=e.Properties,f=e.DOMAttributeNames;for(o in p)n=f[o]||(r?o:o.toLowerCase()),a=p[o],t[n]={attributeName:n,propertyName:o,mustUseProperty:d(a,s),hasBooleanValue:d(a,i),hasNumericValue:d(a,c),hasPositiveNumericValue:d(a,l),hasOverloadedBooleanValue:d(a,u)}}var f={};p(n,f);var m={};p(o,m,!0);var h={};p(n,h),p(o,h,!0),e.exports={html:f,svg:m,properties:h,isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"))}},function(e,t){e.exports={Properties:{autoFocus:4,accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:4,allowTransparency:0,alt:0,as:0,async:4,autoComplete:0,autoPlay:4,capture:4,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:5,cite:0,classID:0,className:0,cols:24,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:4,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:4,defer:4,dir:0,disabled:4,download:32,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:4,formTarget:0,frameBorder:0,headers:0,height:0,hidden:4,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:4,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:5,muted:5,name:0,nonce:0,noValidate:4,open:4,optimum:0,pattern:0,placeholder:0,playsInline:4,poster:0,preload:0,profile:0,radioGroup:0,readOnly:4,referrerPolicy:0,rel:0,required:4,reversed:4,role:0,rows:24,rowSpan:8,sandbox:0,scope:0,scoped:4,scrolling:0,seamless:4,selected:5,shape:0,size:24,sizes:0,span:24,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:8,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:4,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"}}},function(e,t){e.exports={Properties:{accentHeight:0,accumulate:0,additive:0,alignmentBaseline:0,allowReorder:0,alphabetic:0,amplitude:0,arabicForm:0,ascent:0,attributeName:0,attributeType:0,autoReverse:0,azimuth:0,baseFrequency:0,baseProfile:0,baselineShift:0,bbox:0,begin:0,bias:0,by:0,calcMode:0,capHeight:0,clip:0,clipPath:0,clipRule:0,clipPathUnits:0,colorInterpolation:0,colorInterpolationFilters:0,colorProfile:0,colorRendering:0,contentScriptType:0,contentStyleType:0,cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:0,direction:0,display:0,divisor:0,dominantBaseline:0,dur:0,dx:0,dy:0,edgeMode:0,elevation:0,enableBackground:0,end:0,exponent:0,externalResourcesRequired:0,fill:0,fillOpacity:0,fillRule:0,filter:0,filterRes:0,filterUnits:0,floodColor:0,floodOpacity:0,focusable:0,fontFamily:0,fontSize:0,fontSizeAdjust:0,fontStretch:0,fontStyle:0,fontVariant:0,fontWeight:0,format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:0,glyphOrientationHorizontal:0,glyphOrientationVertical:0,glyphRef:0,gradientTransform:0,gradientUnits:0,hanging:0,horizAdvX:0,horizOriginX:0,ideographic:0,imageRendering:0,in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:0,kernelUnitLength:0,kerning:0,keyPoints:0,keySplines:0,keyTimes:0,lengthAdjust:0,letterSpacing:0,lightingColor:0,limitingConeAngle:0,local:0,markerEnd:0,markerMid:0,markerStart:0,markerHeight:0,markerUnits:0,markerWidth:0,mask:0,maskContentUnits:0,maskUnits:0,mathematical:0,mode:0,numOctaves:0,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:0,overlineThickness:0,paintOrder:0,panose1:0,pathLength:0,patternContentUnits:0,patternTransform:0,patternUnits:0,pointerEvents:0,points:0,pointsAtX:0,pointsAtY:0,pointsAtZ:0,preserveAlpha:0,preserveAspectRatio:0,primitiveUnits:0,r:0,radius:0,refX:0,refY:0,renderingIntent:0,repeatCount:0,repeatDur:0,requiredExtensions:0,requiredFeatures:0,restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:0,slope:0,spacing:0,specularConstant:0,specularExponent:0,speed:0,spreadMethod:0,startOffset:0,stdDeviation:0,stemh:0,stemv:0,stitchTiles:0,stopColor:0,stopOpacity:0,strikethroughPosition:0,strikethroughThickness:0,string:0,stroke:0,strokeDasharray:0,strokeDashoffset:0,strokeLinecap:0,strokeLinejoin:0,strokeMiterlimit:0,strokeOpacity:0,strokeWidth:0,surfaceScale:0,systemLanguage:0,tableValues:0,targetX:0,targetY:0,textAnchor:0,textDecoration:0,textRendering:0,textLength:0,to:0,transform:0,u1:0,u2:0,underlinePosition:0,underlineThickness:0,unicode:0,unicodeBidi:0,unicodeRange:0,unitsPerEm:0,vAlphabetic:0,vHanging:0,vIdeographic:0,vMathematical:0,values:0,vectorEffect:0,version:0,vertAdvY:0,vertOriginX:0,vertOriginY:0,viewBox:0,viewTarget:0,visibility:0,widths:0,wordSpacing:0,writingMode:0,x:0,xHeight:0,x1:0,x2:0,xChannelSelector:0,xlinkActuate:0,xlinkArcrole:0,xlinkHref:0,xlinkRole:0,xlinkShow:0,xlinkTitle:0,xlinkType:0,xmlBase:0,xmlns:0,xmlnsXlink:0,xmlLang:0,xmlSpace:0,y:0,y1:0,y2:0,yChannelSelector:0,z:0,zoomAndPan:0},DOMAttributeNames:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space"}}},function(e,t){e.exports={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32}},function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};t.__esModule=!0;var o=n(r(85)),a=r(87);t.default=function(e,t){var r={};return e&&"string"==typeof e?(o.default(e,(function(e,n){e&&n&&(r[a.camelCase(e,t)]=n)})),r):r}},function(e,t,r){var n=r(86);e.exports=function(e,t){var r,o=null;if(!e||"string"!=typeof e)return o;for(var a,s,i=n(e),c="function"==typeof t,l=0,u=i.length;l<u;l++)a=(r=i[l]).property,s=r.value,c?t(a,s,r):s&&(o||(o={}),o[a]=s);return o}},function(e,t){var r=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,n=/\n/g,o=/^\s*/,a=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,s=/^:\s*/,i=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,c=/^[;\s]*/,l=/^\s+|\s+$/g;function u(e){return e?e.replace(l,""):""}e.exports=function(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];t=t||{};var l=1,d=1;function p(e){var t=e.match(n);t&&(l+=t.length);var r=e.lastIndexOf("\n");d=~r?e.length-r:d+e.length}function f(){var e={line:l,column:d};return function(t){return t.position=new m(e),E(),t}}function m(e){this.start=e,this.end={line:l,column:d},this.source=t.source}m.prototype.content=e;var h=[];function b(r){var n=new Error(t.source+":"+l+":"+d+": "+r);if(n.reason=r,n.filename=t.source,n.line=l,n.column=d,n.source=e,!t.silent)throw n;h.push(n)}function g(t){var r=t.exec(e);if(r){var n=r[0];return p(n),e=e.slice(n.length),r}}function E(){g(o)}function y(e){var t;for(e=e||[];t=v();)!1!==t&&e.push(t);return e}function v(){var t=f();if("/"==e.charAt(0)&&"*"==e.charAt(1)){for(var r=2;""!=e.charAt(r)&&("*"!=e.charAt(r)||"/"!=e.charAt(r+1));)++r;if(r+=2,""===e.charAt(r-1))return b("End of comment missing");var n=e.slice(2,r-2);return d+=2,p(n),e=e.slice(r),d+=2,t({type:"comment",comment:n})}}function O(){var e=f(),t=g(a);if(t){if(v(),!g(s))return b("property missing ':'");var n=g(i),o=e({type:"declaration",property:u(t[0].replace(r,"")),value:n?u(n[0].replace(r,"")):""});return g(c),o}}return E(),function(){var e,t=[];for(y(t);e=O();)!1!==e&&(t.push(e),y(t));return t}()}},function(e,t,r){"use strict";t.__esModule=!0,t.camelCase=void 0;var n=/^--[a-zA-Z0-9-]+$/,o=/-([a-z])/g,a=/^[^-]+$/,s=/^-(webkit|moz|ms|o|khtml)-/,i=function(e,t){return t.toUpperCase()},c=function(e,t){return t+"-"};t.camelCase=function(e,t){return void 0===t&&(t={}),function(e){return!e||a.test(e)||n.test(e)}(e)?e:(e=e.toLowerCase(),t.reactCompat||(e=e.replace(s,c)),e.replace(o,i))}},function(e,t,r){var n=r(89),o=r(56),a=o.formatDOM,s=o.isIE(9),i=/<(![a-zA-Z\s]+)>/;e.exports=function(e){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];var t,r=e.match(i);return r&&r[1]&&(t=r[1],s&&(e=e.replace(r[0],""))),a(n(e),null,t)}},function(e,t,r){var n=r(56),o=/<([a-zA-Z]+[0-9]?)/,a=/<head.*>/i,s=/<body.*>/i,i=/<(area|base|br|col|embed|hr|img|input|keygen|link|menuitem|meta|param|source|track|wbr)(.*?)\/?>/gi,c=n.isIE(9),l=c||n.isIE(),u=function(){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},d=function(){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")};if("function"==typeof window.DOMParser){var p=new window.DOMParser,f=c?"text/xml":"text/html";u=d=function(e,t){return t&&(e="<"+t+">"+e+"</"+t+">"),c&&(e=e.replace(i,"<$1$2$3/>")),p.parseFromString(e,f)}}if(document.implementation){var m=document.implementation.createHTMLDocument(l?"html-dom-parser":void 0);u=function(e,t){if(t)return m.documentElement.getElementsByTagName(t)[0].innerHTML=e,m;try{return m.documentElement.innerHTML=e,m}catch(t){if(d)return d(e)}}}var h,b=document.createElement("template");b.content&&(h=function(e){return b.innerHTML=e,b.content.childNodes}),e.exports=function(e){var t,r,n,i,c=e.match(o);switch(c&&c[1]&&(t=c[1].toLowerCase()),t){case"html":return r=d(e),a.test(e)||(n=r.getElementsByTagName("head")[0])&&n.parentNode.removeChild(n),s.test(e)||(n=r.getElementsByTagName("body")[0])&&n.parentNode.removeChild(n),r.getElementsByTagName("html");case"head":case"body":return i=u(e).getElementsByTagName(t),s.test(e)&&a.test(e)?i[0].parentNode.childNodes:i;default:return h?h(e):u(e,"body").getElementsByTagName("body")[0].childNodes}}},function(e,t){e.exports={CASE_SENSITIVE_TAG_NAMES:["animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussainBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","linearGradient","radialGradient","textPath"]}},function(e,t,r){"use strict";r.d(t,"a",(function(){return a})),r.d(t,"b",(function(){return i}));var n=r(6);let o;!function(e){e.ADD_EVENT_CALLBACK="add_event_callback",e.REMOVE_EVENT_CALLBACK="remove_event_callback"}(o||(o={}));const a={addEventCallback:function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10;return{id:Object(n.uniqueId)(),type:o.ADD_EVENT_CALLBACK,eventType:e,callback:t,priority:r}},removeEventCallback:(e,t)=>({id:t,type:o.REMOVE_EVENT_CALLBACK,eventType:e})},s={},i=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:s,{type:t,eventType:r,id:n,callback:a,priority:i}=arguments.length>1?arguments[1]:void 0;const c=e.hasOwnProperty(r)?new Map(e[r]):new Map;switch(t){case o.ADD_EVENT_CALLBACK:return c.set(n,{priority:i,callback:a}),{...e,[r]:c};case o.REMOVE_EVENT_CALLBACK:return c.delete(n),{...e,[r]:c}}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return a})),r.d(t,"b",(function(){return s}));var n=r(1),o=r(18);const a=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},s=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(o.decodeEntities)(e.message):Object(n.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},function(e,t,r){"use strict";var n=r(0),o=r(15);const a=Object(n.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(n.createElement)(o.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));t.a=a},function(e,t,r){"use strict";var n=r(0),o=r(6),a=r(4),s=r.n(a),i=r(1),c=r(20),l=r(93),u=r(50);function d(e){switch(e){case"success":case"warning":case"info":return"polite";case"error":default:return"assertive"}}t.a=function({className:e,status:t="info",children:r,spokenMessage:a=r,onRemove:p=o.noop,isDismissible:f=!0,actions:m=[],politeness:h=d(t),__unstableHTML:b,onDismiss:g=o.noop}){!function(e,t){const r="string"==typeof e?e:Object(n.renderToString)(e);Object(n.useEffect)(()=>{r&&Object(c.speak)(r,t)},[r,t])}(a,h);const E=s()(e,"components-notice","is-"+t,{"is-dismissible":f});return b&&(r=Object(n.createElement)(n.RawHTML,null,r)),Object(n.createElement)("div",{className:E},Object(n.createElement)("div",{className:"components-notice__content"},r,Object(n.createElement)("div",{className:"components-notice__actions"},m.map(({className:e,label:t,isPrimary:r,variant:o,noDefaultClasses:a=!1,onClick:i,url:c},l)=>{let d=o;return"primary"===o||a||(d=c?"link":"secondary"),void 0===d&&r&&(d="primary"),Object(n.createElement)(u.a,{key:l,href:c,variant:d,onClick:c?void 0:i,className:s()("components-notice__action",e)},t)}))),f&&Object(n.createElement)(u.a,{className:"components-notice__dismiss",icon:l.a,label:Object(i.__)("Dismiss this notice"),onClick:e=>{var t;null==e||null===(t=e.preventDefault)||void 0===t||t.call(e),g(),p()},showTooltip:!1}))}},function(e,t,r){"use strict";function n(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(t,"__esModule",{value:!0});var o=n(r(11)),a=n(r(128)),s=r(3),i=n(s),c=n(r(129)),l=n(r(131)),u={arr:Array.isArray,obj:function(e){return"[object Object]"===Object.prototype.toString.call(e)},fun:function(e){return"function"==typeof e},str:function(e){return"string"==typeof e},num:function(e){return"number"==typeof e},und:function(e){return void 0===e},nul:function(e){return null===e},set:function(e){return e instanceof Set},map:function(e){return e instanceof Map},equ:function(e,t){if(typeof e!=typeof t)return!1;if(u.str(e)||u.num(e))return e===t;if(u.obj(e)&&u.obj(t)&&Object.keys(e).length+Object.keys(t).length===0)return!0;var r;for(r in e)if(!(r in t))return!1;for(r in t)if(e[r]!==t[r])return!1;return!u.und(r)||e===t}};function d(){var e=s.useState(!1)[1];return s.useCallback((function(){return e((function(e){return!e}))}),[])}function p(e,t){return u.und(e)||u.nul(e)?t:e}function f(e){return u.und(e)?[]:u.arr(e)?e:[e]}function m(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return u.fun(e)?e.apply(void 0,r):e}function h(e){var t=function(e){return e.to,e.from,e.config,e.onStart,e.onRest,e.onFrame,e.children,e.reset,e.reverse,e.force,e.immediate,e.delay,e.attach,e.destroyed,e.interpolateTo,e.ref,e.lazy,a(e,["to","from","config","onStart","onRest","onFrame","children","reset","reverse","force","immediate","delay","attach","destroyed","interpolateTo","ref","lazy"])}(e);if(u.und(t))return o({to:t},e);var r=Object.keys(e).reduce((function(r,n){var a;return u.und(t[n])?o({},r,((a={})[n]=e[n],a)):r}),{});return o({to:t},r)}var b,g,E=function(){function e(){this.payload=void 0,this.children=[]}var t=e.prototype;return t.getAnimatedValue=function(){return this.getValue()},t.getPayload=function(){return this.payload||this},t.attach=function(){},t.detach=function(){},t.getChildren=function(){return this.children},t.addChild=function(e){0===this.children.length&&this.attach(),this.children.push(e)},t.removeChild=function(e){var t=this.children.indexOf(e);this.children.splice(t,1),0===this.children.length&&this.detach()},e}(),y=function(e){function t(){for(var t,r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];return(t=e.call.apply(e,[this].concat(n))||this).payload=[],t.attach=function(){return t.payload.forEach((function(e){return e instanceof E&&e.addChild(l(t))}))},t.detach=function(){return t.payload.forEach((function(e){return e instanceof E&&e.removeChild(l(t))}))},t}return c(t,e),t}(E),v=function(e){function t(){for(var t,r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];return(t=e.call.apply(e,[this].concat(n))||this).payload={},t.attach=function(){return Object.values(t.payload).forEach((function(e){return e instanceof E&&e.addChild(l(t))}))},t.detach=function(){return Object.values(t.payload).forEach((function(e){return e instanceof E&&e.removeChild(l(t))}))},t}c(t,e);var r=t.prototype;return r.getValue=function(e){void 0===e&&(e=!1);var t={};for(var r in this.payload){var n=this.payload[r];(!e||n instanceof E)&&(t[r]=n instanceof E?n[e?"getAnimatedValue":"getValue"]():n)}return t},r.getAnimatedValue=function(){return this.getValue(!0)},t}(E);function O(e,t){b={fn:e,transform:t}}function S(e){g=e}var _,k=function(e){return"undefined"!=typeof window?window.requestAnimationFrame(e):-1},w=function(e){"undefined"!=typeof window&&window.cancelAnimationFrame(e)};function j(e){_=e}var R,C=function(){return Date.now()};function T(e){R=e}var A,x,P=function(e){return e.current};function M(e){A=e}var N=Object.freeze({get applyAnimatedValues(){return b},injectApplyAnimatedValues:O,get colorNames(){return g},injectColorNames:S,get requestFrame(){return k},get cancelFrame(){return w},injectFrame:function(e,t){k=e,w=t},get interpolation(){return _},injectStringInterpolator:j,get now(){return C},injectNow:function(e){C=e},get defaultElement(){return R},injectDefaultElement:T,get animatedApi(){return P},injectAnimatedApi:function(e){P=e},get createAnimatedStyle(){return A},injectCreateAnimatedStyle:M,get manualFrameloop(){return x},injectManualFrameloop:function(e){x=e}}),I=function(e){function t(t,r){var n;return(n=e.call(this)||this).update=void 0,n.payload=t.style?o({},t,{style:A(t.style)}):t,n.update=r,n.attach(),n}return c(t,e),t}(v),D=!1,L=new Set,F=function e(){if(!D)return!1;var t=C(),r=L,n=Array.isArray(r),o=0;for(r=n?r:r[Symbol.iterator]();;){var a;if(n){if(o>=r.length)break;a=r[o++]}else{if((o=r.next()).done)break;a=o.value}for(var s=a,i=!1,c=0;c<s.configs.length;c++){for(var l=s.configs[c],u=void 0,d=void 0,p=0;p<l.animatedValues.length;p++){var f=l.animatedValues[p];if(!f.done){var m=l.fromValues[p],h=l.toValues[p],b=f.lastPosition,g=h instanceof E,y=Array.isArray(l.initialVelocity)?l.initialVelocity[p]:l.initialVelocity;if(g&&(h=h.getValue()),l.immediate)f.setValue(h),f.done=!0;else if("string"!=typeof m&&"string"!=typeof h){if(void 0!==l.duration)b=m+l.easing((t-f.startTime)/l.duration)*(h-m),u=t>=f.startTime+l.duration;else if(l.decay)b=m+y/(1-.998)*(1-Math.exp(-(1-.998)*(t-f.startTime))),(u=Math.abs(f.lastPosition-b)<.1)&&(h=b);else{d=void 0!==f.lastTime?f.lastTime:t,y=void 0!==f.lastVelocity?f.lastVelocity:l.initialVelocity,t>d+64&&(d=t);for(var v=Math.floor(t-d),O=0;O<v;++O)b+=1*(y+=(-l.tension*(b-h)+-l.friction*y)/l.mass*1/1e3)/1e3;var S=!(!l.clamp||0===l.tension)&&(m<h?b>h:b<h),_=Math.abs(y)<=l.precision,w=0===l.tension||Math.abs(h-b)<=l.precision;u=S||_&&w,f.lastVelocity=y,f.lastTime=t}g&&!l.toValues[p].done&&(u=!1),u?(f.value!==h&&(b=h),f.done=!0):i=!0,f.setValue(b),f.lastPosition=b}else f.setValue(h),f.done=!0}}s.props.onFrame&&(s.values[l.name]=l.interpolation.getValue())}s.props.onFrame&&s.props.onFrame(s.values),i||(L.delete(s),s.stop(!0))}return L.size?x?x():k(e):D=!1,D};function V(e,t,r){if("function"==typeof e)return e;if(Array.isArray(e))return V({range:e,output:t,extrapolate:r});if(_&&"string"==typeof e.output[0])return _(e);var n=e,o=n.output,a=n.range||[0,1],s=n.extrapolateLeft||n.extrapolate||"extend",i=n.extrapolateRight||n.extrapolate||"extend",c=n.easing||function(e){return e};return function(e){var t=function(e,t){for(var r=1;r<t.length-1&&!(t[r]>=e);++r);return r-1}(e,a);return function(e,t,r,n,o,a,s,i,c){var l=c?c(e):e;if(l<t){if("identity"===s)return l;"clamp"===s&&(l=t)}if(l>r){if("identity"===i)return l;"clamp"===i&&(l=r)}return n===o?n:t===r?e<=t?n:o:(t===-1/0?l=-l:r===1/0?l-=t:l=(l-t)/(r-t),l=a(l),n===-1/0?l=-l:o===1/0?l+=n:l=l*(o-n)+n,l)}(e,a[t],a[t+1],o[t],o[t+1],c,s,i,n.map)}}var B=function(e){function t(r,n,o,a){var s;return(s=e.call(this)||this).calc=void 0,s.payload=r instanceof y&&!(r instanceof t)?r.getPayload():Array.isArray(r)?r:[r],s.calc=V(n,o,a),s}c(t,e);var r=t.prototype;return r.getValue=function(){return this.calc.apply(this,this.payload.map((function(e){return e.getValue()})))},r.updateConfig=function(e,t,r){this.calc=V(e,t,r)},r.interpolate=function(e,r,n){return new t(this,e,r,n)},t}(y),U=function(e){function t(t){var r;return(r=e.call(this)||this).animatedStyles=new Set,r.value=void 0,r.startPosition=void 0,r.lastPosition=void 0,r.lastVelocity=void 0,r.startTime=void 0,r.lastTime=void 0,r.done=!1,r.setValue=function(e,t){void 0===t&&(t=!0),r.value=e,t&&r.flush()},r.value=t,r.startPosition=t,r.lastPosition=t,r}c(t,e);var r=t.prototype;return r.flush=function(){0===this.animatedStyles.size&&function e(t,r){"update"in t?r.add(t):t.getChildren().forEach((function(t){return e(t,r)}))}(this,this.animatedStyles),this.animatedStyles.forEach((function(e){return e.update()}))},r.clearStyles=function(){this.animatedStyles.clear()},r.getValue=function(){return this.value},r.interpolate=function(e,t,r){return new B(this,e,t,r)},t}(E),H=function(e){function t(t){var r;return(r=e.call(this)||this).payload=t.map((function(e){return new U(e)})),r}c(t,e);var r=t.prototype;return r.setValue=function(e,t){var r=this;void 0===t&&(t=!0),Array.isArray(e)?e.length===this.payload.length&&e.forEach((function(e,n){return r.payload[n].setValue(e,t)})):this.payload.forEach((function(r){return r.setValue(e,t)}))},r.getValue=function(){return this.payload.map((function(e){return e.getValue()}))},r.interpolate=function(e,t){return new B(this,e,t)},t}(y),G=0,Y=function(){function e(){var e=this;this.id=void 0,this.idle=!0,this.hasChanged=!1,this.guid=0,this.local=0,this.props={},this.merged={},this.animations={},this.interpolations={},this.values={},this.configs=[],this.listeners=[],this.queue=[],this.localQueue=void 0,this.getValues=function(){return e.interpolations},this.id=G++}var t=e.prototype;return t.update=function(e){if(!e)return this;var t=h(e),r=t.delay,n=void 0===r?0:r,s=t.to,i=a(t,["delay","to"]);if(u.arr(s)||u.fun(s))this.queue.push(o({},i,{delay:n,to:s}));else if(s){var c={};Object.entries(s).forEach((function(e){var t,r=e[0],a=e[1],s=o({to:(t={},t[r]=a,t),delay:m(n,r)},i),l=c[s.delay]&&c[s.delay].to;c[s.delay]=o({},c[s.delay],s,{to:o({},l,s.to)})})),this.queue=Object.values(c)}return this.queue=this.queue.sort((function(e,t){return e.delay-t.delay})),this.diff(i),this},t.start=function(e){var t=this;if(this.queue.length){this.idle=!1,this.localQueue&&this.localQueue.forEach((function(e){var r=e.from,n=void 0===r?{}:r,a=e.to,s=void 0===a?{}:a;u.obj(n)&&(t.merged=o({},n,t.merged)),u.obj(s)&&(t.merged=o({},t.merged,s))}));var r=this.local=++this.guid,n=this.localQueue=this.queue;this.queue=[],n.forEach((function(o,s){var i=o.delay,c=a(o,["delay"]),l=function(o){s===n.length-1&&r===t.guid&&o&&(t.idle=!0,t.props.onRest&&t.props.onRest(t.merged)),e&&e()},d=u.arr(c.to)||u.fun(c.to);i?setTimeout((function(){r===t.guid&&(d?t.runAsync(c,l):t.diff(c).start(l))}),i):d?t.runAsync(c,l):t.diff(c).start(l)}))}else u.fun(e)&&this.listeners.push(e),this.props.onStart&&this.props.onStart(),this,L.has(this)||L.add(this),D||(D=!0,k(x||F));return this},t.stop=function(e){return this.listeners.forEach((function(t){return t(e)})),this.listeners=[],this},t.pause=function(e){return this.stop(!0),e&&(this,L.has(this)&&L.delete(this)),this},t.runAsync=function(e,t){var r=this,n=(e.delay,a(e,["delay"])),s=this.local,i=Promise.resolve(void 0);if(u.arr(n.to))for(var c=function(e){var t=e,a=o({},n,h(n.to[t]));u.arr(a.config)&&(a.config=a.config[t]),i=i.then((function(){if(s===r.guid)return new Promise((function(e){return r.diff(a).start(e)}))}))},l=0;l<n.to.length;l++)c(l);else if(u.fun(n.to)){var d,p=0;i=i.then((function(){return n.to((function(e){var t=o({},n,h(e));if(u.arr(t.config)&&(t.config=t.config[p]),p++,s===r.guid)return d=new Promise((function(e){return r.diff(t).start(e)}))}),(function(e){return void 0===e&&(e=!0),r.stop(e)})).then((function(){return d}))}))}i.then(t)},t.diff=function(e){var t=this;this.props=o({},this.props,e);var r=this.props,n=r.from,a=void 0===n?{}:n,s=r.to,i=void 0===s?{}:s,c=r.config,l=void 0===c?{}:c,d=r.reverse,h=r.attach,b=r.reset,E=r.immediate;if(d){var y=[i,a];a=y[0],i=y[1]}this.merged=o({},a,this.merged,i),this.hasChanged=!1;var v=h&&h(this);if(this.animations=Object.entries(this.merged).reduce((function(e,r){var n=r[0],s=r[1],i=e[n]||{},c=u.num(s),d=u.str(s)&&!s.startsWith("#")&&!/\d/.test(s)&&!g[s],h=u.arr(s),y=!c&&!h&&!d,O=u.und(a[n])?s:a[n],S=c||h||d?s:1,k=m(l,n);v&&(S=v.animations[n].parent);var w,j=i.parent,R=i.interpolation,T=f(v?S.getPayload():S),A=s;y&&(A=_({range:[0,1],output:[s,s]})(1));var x,P=R&&R.getValue(),M=!u.und(j)&&i.animatedValues.some((function(e){return!e.done})),N=!u.equ(A,P),I=!u.equ(A,i.previous),D=!u.equ(k,i.config);if(b||I&&N||D){var L;if(c||d)j=R=i.parent||new U(O);else if(h)j=R=i.parent||new H(O);else if(y){var F=i.interpolation&&i.interpolation.calc(i.parent.value);F=void 0===F||b?O:F,i.parent?(j=i.parent).setValue(0,!1):j=new U(0);var V={output:[F,s]};i.interpolation?(R=i.interpolation,i.interpolation.updateConfig(V)):R=j.interpolate(V)}return T=f(v?S.getPayload():S),w=f(j.getPayload()),b&&!y&&j.setValue(O,!1),t.hasChanged=!0,w.forEach((function(e){e.startPosition=e.value,e.lastPosition=e.value,e.lastVelocity=M?e.lastVelocity:void 0,e.lastTime=M?e.lastTime:void 0,e.startTime=C(),e.done=!1,e.animatedStyles.clear()})),m(E,n)&&j.setValue(y?S:s,!1),o({},e,((L={})[n]=o({},i,{name:n,parent:j,interpolation:R,animatedValues:w,toValues:T,previous:A,config:k,fromValues:f(j.getValue()),immediate:m(E,n),initialVelocity:p(k.velocity,0),clamp:p(k.clamp,!1),precision:p(k.precision,.01),tension:p(k.tension,170),friction:p(k.friction,26),mass:p(k.mass,1),duration:k.duration,easing:p(k.easing,(function(e){return e})),decay:k.decay}),L))}return N?e:(y&&(j.setValue(1,!1),R.updateConfig({output:[A,A]})),j.done=!0,t.hasChanged=!0,o({},e,((x={})[n]=o({},e[n],{previous:A}),x)))}),this.animations),this.hasChanged)for(var O in this.configs=Object.values(this.animations),this.values={},this.interpolations={},this.animations)this.interpolations[O]=this.animations[O].interpolation,this.values[O]=this.animations[O].interpolation.getValue();return this},t.destroy=function(){this.stop(),this.props={},this.merged={},this.animations={},this.interpolations={},this.values={},this.configs=[],this.local=0},e}(),z=function(e,t){var r=s.useRef(!1),n=s.useRef(),o=u.fun(t),a=s.useMemo((function(){var r;return n.current&&(n.current.map((function(e){return e.destroy()})),n.current=void 0),[new Array(e).fill().map((function(e,n){var a=new Y,s=o?m(t,n,a):t[n];return 0===n&&(r=s.ref),a.update(s),r||a.start(),a})),r]}),[e]),i=a[0],c=a[1];n.current=i,s.useImperativeHandle(c,(function(){return{start:function(){return Promise.all(n.current.map((function(e){return new Promise((function(t){return e.start(t)}))})))},stop:function(e){return n.current.forEach((function(t){return t.stop(e)}))},get controllers(){return n.current}}}));var l=s.useMemo((function(){return function(e){return n.current.map((function(t,r){t.update(o?m(e,r,t):e[r]),c||t.start()}))}}),[e]);s.useEffect((function(){r.current?o||l(t):c||n.current.forEach((function(e){return e.start()}))})),s.useEffect((function(){return r.current=!0,function(){return n.current.forEach((function(e){return e.destroy()}))}}),[]);var d=n.current.map((function(e){return e.getValues()}));return o?[d,l,function(e){return n.current.forEach((function(t){return t.pause(e)}))}]:d},q=0,W=function(e,t){return("function"==typeof t?e.map(t):f(t)).map(String)},X=function(e){var t=e.items,r=e.keys,n=void 0===r?function(e){return e}:r,s=a(e,["items","keys"]);return t=f(void 0!==t?t:null),o({items:t,keys:W(t,n)},s)};function K(e,t){var r=function(){if(o){if(a>=n.length)return"break";s=n[a++]}else{if((a=n.next()).done)return"break";s=a.value}var r=s.key,i=function(e){return e.key!==r};(u.und(t)||t===r)&&(e.current.instances.delete(r),e.current.transitions=e.current.transitions.filter(i),e.current.deleted=e.current.deleted.filter(i))},n=e.current.deleted,o=Array.isArray(n),a=0;for(n=o?n:n[Symbol.iterator]();;){var s;if("break"===r())break}e.current.forceUpdate()}var $=function(e){function t(t){var r;return void 0===t&&(t={}),r=e.call(this)||this,!t.transform||t.transform instanceof E||(t=b.transform(t)),r.payload=t,r}return c(t,e),t}(v),J={transparent:0,aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,burntsienna:3934150143,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199},Q="[-+]?\\d*\\.?\\d+";function Z(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return"\\(\\s*("+t.join(")\\s*,\\s*(")+")\\s*\\)"}var ee=new RegExp("rgb"+Z(Q,Q,Q)),te=new RegExp("rgba"+Z(Q,Q,Q,Q)),re=new RegExp("hsl"+Z(Q,"[-+]?\\d*\\.?\\d+%","[-+]?\\d*\\.?\\d+%")),ne=new RegExp("hsla"+Z(Q,"[-+]?\\d*\\.?\\d+%","[-+]?\\d*\\.?\\d+%",Q)),oe=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,ae=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,se=/^#([0-9a-fA-F]{6})$/,ie=/^#([0-9a-fA-F]{8})$/;function ce(e,t,r){return r<0&&(r+=1),r>1&&(r-=1),r<1/6?e+6*(t-e)*r:r<.5?t:r<2/3?e+(t-e)*(2/3-r)*6:e}function le(e,t,r){var n=r<.5?r*(1+t):r+t-r*t,o=2*r-n,a=ce(o,n,e+1/3),s=ce(o,n,e),i=ce(o,n,e-1/3);return Math.round(255*a)<<24|Math.round(255*s)<<16|Math.round(255*i)<<8}function ue(e){var t=parseInt(e,10);return t<0?0:t>255?255:t}function de(e){return(parseFloat(e)%360+360)%360/360}function pe(e){var t=parseFloat(e);return t<0?0:t>1?255:Math.round(255*t)}function fe(e){var t=parseFloat(e);return t<0?0:t>100?1:t/100}function me(e){var t,r,n="number"==typeof(t=e)?t>>>0===t&&t>=0&&t<=4294967295?t:null:(r=se.exec(t))?parseInt(r[1]+"ff",16)>>>0:J.hasOwnProperty(t)?J[t]:(r=ee.exec(t))?(ue(r[1])<<24|ue(r[2])<<16|ue(r[3])<<8|255)>>>0:(r=te.exec(t))?(ue(r[1])<<24|ue(r[2])<<16|ue(r[3])<<8|pe(r[4]))>>>0:(r=oe.exec(t))?parseInt(r[1]+r[1]+r[2]+r[2]+r[3]+r[3]+"ff",16)>>>0:(r=ie.exec(t))?parseInt(r[1],16)>>>0:(r=ae.exec(t))?parseInt(r[1]+r[1]+r[2]+r[2]+r[3]+r[3]+r[4]+r[4],16)>>>0:(r=re.exec(t))?(255|le(de(r[1]),fe(r[2]),fe(r[3])))>>>0:(r=ne.exec(t))?(le(de(r[1]),fe(r[2]),fe(r[3]))|pe(r[4]))>>>0:null;return null===n?e:"rgba("+((4278190080&(n=n||0))>>>24)+", "+((16711680&n)>>>16)+", "+((65280&n)>>>8)+", "+(255&n)/255+")"}var he=/[+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,be=/(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\((-?\d+%?[,\s]+){2,3}\s*[\d\.]+%?\))/gi,ge=new RegExp("("+Object.keys(J).join("|")+")","g"),Ee={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ye=["Webkit","Ms","Moz","O"];function ve(e,t,r){return null==t||"boolean"==typeof t||""===t?"":r||"number"!=typeof t||0===t||Ee.hasOwnProperty(e)&&Ee[e]?(""+t).trim():t+"px"}Ee=Object.keys(Ee).reduce((function(e,t){return ye.forEach((function(r){return e[function(e,t){return e+t.charAt(0).toUpperCase()+t.substring(1)}(r,t)]=e[t]})),e}),Ee);var Oe={};M((function(e){return new $(e)})),T("div"),j((function(e){var t=e.output.map((function(e){return e.replace(be,me)})).map((function(e){return e.replace(ge,me)})),r=t[0].match(he).map((function(){return[]}));t.forEach((function(e){e.match(he).forEach((function(e,t){return r[t].push(+e)}))}));var n=t[0].match(he).map((function(t,n){return V(o({},e,{output:r[n]}))}));return function(e){var r=0;return t[0].replace(he,(function(){return n[r++](e)})).replace(/rgba\(([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+)\)/gi,(function(e,t,r,n,o){return"rgba("+Math.round(t)+", "+Math.round(r)+", "+Math.round(n)+", "+o+")"}))}})),S(J),O((function(e,t){if(!e.nodeType||void 0===e.setAttribute)return!1;var r=t.style,n=t.children,o=t.scrollTop,s=t.scrollLeft,i=a(t,["style","children","scrollTop","scrollLeft"]),c="filter"===e.nodeName||e.parentNode&&"filter"===e.parentNode.nodeName;for(var l in void 0!==o&&(e.scrollTop=o),void 0!==s&&(e.scrollLeft=s),void 0!==n&&(e.textContent=n),r)if(r.hasOwnProperty(l)){var u=0===l.indexOf("--"),d=ve(l,r[l],u);"float"===l&&(l="cssFloat"),u?e.style.setProperty(l,d):e.style[l]=d}for(var p in i){var f=c?p:Oe[p]||(Oe[p]=p.replace(/([A-Z])/g,(function(e){return"-"+e.toLowerCase()})));void 0!==e.getAttribute(f)&&e.setAttribute(f,i[p])}}),(function(e){return e}));var Se,_e,ke=(Se=function(e){return s.forwardRef((function(t,r){var n=d(),c=s.useRef(!0),l=s.useRef(null),p=s.useRef(null),f=s.useCallback((function(e){var t=l.current;l.current=new I(e,(function(){var e=!1;p.current&&(e=b.fn(p.current,l.current.getAnimatedValue())),p.current&&!1!==e||n()})),t&&t.detach()}),[]);s.useEffect((function(){return function(){c.current=!1,l.current&&l.current.detach()}}),[]),s.useImperativeHandle(r,(function(){return P(p,c,n)})),f(t);var m,h=l.current.getValue(),g=(h.scrollTop,h.scrollLeft,a(h,["scrollTop","scrollLeft"])),E=(m=e,!u.fun(m)||m.prototype instanceof i.Component?function(e){return p.current=function(e,t){return t&&(u.fun(t)?t(e):u.obj(t)&&(t.current=e)),e}(e,r)}:void 0);return i.createElement(e,o({},g,{ref:E}))}))},void 0===(_e=!1)&&(_e=!0),function(e){return(u.arr(e)?e:Object.keys(e)).reduce((function(e,t){var r=_e?t[0].toLowerCase()+t.substring(1):t;return e[r]=Se(r),e}),Se)}),we=ke(["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"]);t.apply=ke,t.config={default:{tension:170,friction:26},gentle:{tension:120,friction:14},wobbly:{tension:180,friction:12},stiff:{tension:210,friction:20},slow:{tension:280,friction:60},molasses:{tension:280,friction:120}},t.update=F,t.animated=we,t.a=we,t.interpolate=function(e,t,r){return e&&new B(e,t,r)},t.Globals=N,t.useSpring=function(e){var t=u.fun(e),r=z(1,t?e:[e]),n=r[0],o=r[1],a=r[2];return t?[n[0],o,a]:n},t.useTrail=function(e,t){var r=s.useRef(!1),n=u.fun(t),a=m(t),i=s.useRef(),c=z(e,(function(e,t){return 0===e&&(i.current=[]),i.current.push(t),o({},a,{config:m(a.config,e),attach:e>0&&function(){return i.current[e-1]}})})),l=c[0],d=c[1],p=c[2],f=s.useMemo((function(){return function(e){return d((function(t,r){e.reverse;var n=e.reverse?t+1:t-1,s=i.current[n];return o({},e,{config:m(e.config||a.config,t),attach:s&&function(){return s}})}))}}),[e,a.reverse]);return s.useEffect((function(){r.current&&!n&&f(t)})),s.useEffect((function(){r.current=!0}),[]),n?[l,f,p]:l},t.useTransition=function(e,t,r){var n=o({items:e,keys:t||function(e){return e}},r),i=X(n),c=i.lazy,l=void 0!==c&&c,u=(i.unique,i.reset),p=void 0!==u&&u,f=(i.enter,i.leave,i.update,i.onDestroyed),h=(i.keys,i.items,i.onFrame),b=i.onRest,g=i.onStart,E=i.ref,y=a(i,["lazy","unique","reset","enter","leave","update","onDestroyed","keys","items","onFrame","onRest","onStart","ref"]),v=d(),O=s.useRef(!1),S=s.useRef({mounted:!1,first:!0,deleted:[],current:{},transitions:[],prevProps:{},paused:!!n.ref,instances:!O.current&&new Map,forceUpdate:v});return s.useImperativeHandle(n.ref,(function(){return{start:function(){return Promise.all(Array.from(S.current.instances).map((function(e){var t=e[1];return new Promise((function(e){return t.start(e)}))})))},stop:function(e){return Array.from(S.current.instances).forEach((function(t){return t[1].stop(e)}))},get controllers(){return Array.from(S.current.instances).map((function(e){return e[1]}))}}})),S.current=function(e,t){for(var r=e.first,n=e.prevProps,s=a(e,["first","prevProps"]),i=X(t),c=i.items,l=i.keys,u=i.initial,d=i.from,p=i.enter,f=i.leave,h=i.update,b=i.trail,g=void 0===b?0:b,E=i.unique,y=i.config,v=i.order,O=void 0===v?["enter","leave","update"]:v,S=X(n),_=S.keys,k=S.items,w=o({},s.current),j=[].concat(s.deleted),R=Object.keys(w),C=new Set(R),T=new Set(l),A=l.filter((function(e){return!C.has(e)})),x=s.transitions.filter((function(e){return!e.destroyed&&!T.has(e.originalKey)})).map((function(e){return e.originalKey})),P=l.filter((function(e){return C.has(e)})),M=-g;O.length;)switch(O.shift()){case"enter":A.forEach((function(e,t){E&&j.find((function(t){return t.originalKey===e}))&&(j=j.filter((function(t){return t.originalKey!==e})));var n=l.indexOf(e),o=c[n],a=r&&void 0!==u?"initial":"enter";w[e]={slot:a,originalKey:e,key:E?String(e):q++,item:o,trail:M+=g,config:m(y,o,a),from:m(r&&void 0!==u?u||{}:d,o),to:m(p,o)}}));break;case"leave":x.forEach((function(e){var t=_.indexOf(e),r=k[t];j.unshift(o({},w[e],{slot:"leave",destroyed:!0,left:_[Math.max(0,t-1)],right:_[Math.min(_.length,t+1)],trail:M+=g,config:m(y,r,"leave"),to:m(f,r)})),delete w[e]}));break;case"update":P.forEach((function(e){var t=l.indexOf(e),r=c[t];w[e]=o({},w[e],{item:r,slot:"update",trail:M+=g,config:m(y,r,"update"),to:m(h,r)})}))}var N=l.map((function(e){return w[e]}));return j.forEach((function(e){var t,r=e.left,n=(e.right,a(e,["left","right"]));-1!==(t=N.findIndex((function(e){return e.originalKey===r})))&&(t+=1),t=Math.max(0,t),N=[].concat(N.slice(0,t),[n],N.slice(t))})),o({},s,{changed:A.length||x.length||P.length,first:r&&0===A.length,transitions:N,current:w,deleted:j,prevProps:t})}(S.current,n),S.current.changed&&S.current.transitions.forEach((function(e){var t=e.slot,r=e.from,n=e.to,a=e.config,s=e.trail,i=e.key,c=e.item;S.current.instances.has(i)||S.current.instances.set(i,new Y);var u=S.current.instances.get(i),d=o({},y,{to:n,from:r,config:a,ref:E,onRest:function(r){S.current.mounted&&(e.destroyed&&(E||l||K(S,i),f&&f(c)),!Array.from(S.current.instances).some((function(e){return!e[1].idle}))&&(E||l)&&S.current.deleted.length>0&&K(S),b&&b(c,t,r))},onStart:g&&function(){return g(c,t)},onFrame:h&&function(e){return h(c,t,e)},delay:s,reset:p&&"enter"===t});u.update(d),S.current.paused||u.start()})),s.useEffect((function(){return S.current.mounted=O.current=!0,function(){S.current.mounted=O.current=!1,Array.from(S.current.instances).map((function(e){return e[1].destroy()})),S.current.instances.clear()}}),[]),S.current.transitions.map((function(e){var t=e.item,r=e.slot,n=e.key;return{item:t,key:n,state:r,props:S.current.instances.get(n).getValues()}}))},t.useChain=function(e,t,r){void 0===r&&(r=1e3);var n=s.useRef();s.useEffect((function(){u.equ(e,n.current)?e.forEach((function(e){var t=e.current;return t&&t.start()})):t?e.forEach((function(e,n){var a=e.current;if(a){var s=a.controllers;if(s.length){var i=r*t[n];s.forEach((function(e){e.queue=e.queue.map((function(e){return o({},e,{delay:e.delay+i})})),e.start()}))}}})):e.reduce((function(e,t,r){var n=t.current;return e.then((function(){return n.start()}))}),Promise.resolve()),n.current=e}))},t.useSprings=z},,,,,,,,,,,,function(e,t){},,,,,function(e,t,r){"use strict";(function(e){var n=r(0),o=r(6),a=r(4),s=r.n(a),i=r(20),c=r(1),l=(r(38),r(50));t.a=Object(n.forwardRef)((function({className:t,children:r,spokenMessage:a=r,politeness:u="polite",actions:d=[],onRemove:p=o.noop,icon:f=null,explicitDismiss:m=!1,onDismiss:h=o.noop},b){function g(e){e&&e.preventDefault&&e.preventDefault(),h(),p()}h=h||o.noop,function(e,t){const r="string"==typeof e?e:Object(n.renderToString)(e);Object(n.useEffect)(()=>{r&&Object(i.speak)(r,t)},[r,t])}(a,u),Object(n.useEffect)(()=>{const e=setTimeout(()=>{m||(h(),p())},1e4);return()=>clearTimeout(e)},[h,p]);const E=s()(t,"components-snackbar",{"components-snackbar-explicit-dismiss":!!m});d&&d.length>1&&(void 0!==e&&e.env,d=[d[0]]);const y=s()("components-snackbar__content",{"components-snackbar__content-with-icon":!!f});return Object(n.createElement)("div",{ref:b,className:E,onClick:m?o.noop:g,tabIndex:"0",role:m?"":"button",onKeyPress:m?o.noop:g,"aria-label":m?"":Object(c.__)("Dismiss this notice")},Object(n.createElement)("div",{className:y},f&&Object(n.createElement)("div",{className:"components-snackbar__icon"},f),r,d.map(({label:e,onClick:t,url:r},o)=>Object(n.createElement)(l.a,{key:o,href:r,variant:"tertiary",onClick:e=>function(e,t){e.stopPropagation(),p(),t&&t(e)}(e,t),className:"components-snackbar__action"},e)),m&&Object(n.createElement)("span",{role:"button","aria-label":"Dismiss this notice",tabIndex:"0",className:"components-snackbar__dismiss-button",onClick:g,onKeyPress:g},"✕")))}))}).call(this,r(63))},function(e,t){e.exports=window.wp.plugins},,function(e,t){e.exports=window.wp.wordcount},function(e,t){e.exports=window.wp.autop},,function(e,t,r){"use strict";r.d(t,"b",(function(){return a})),r.d(t,"a",(function(){return s}));var n=r(45),o=(r(14),r(2));const a=(e,t)=>Object.keys(o.defaultAddressFields).every(r=>e[r]===t[r]),s=e=>{const t=Object.keys(o.defaultAddressFields),r=Object(n.a)(t,{},e.country),a=Object.assign({},e);return r.forEach(t=>{let{key:r="",hidden:n=!1}=t;n&&((e,t)=>e in t)(r,e)&&(a[r]="")}),a}},,function(e,t){e.exports=window.wc.wcBlocksSharedHocs},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(11),o=r.n(n),a=r(0),s=r(4),i=r.n(s),c=r(94),l=r(7),u=(r(78),r(57));const d=e=>{let{status:t="default"}=e;switch(t){case"error":return"woocommerce-error";case"success":return"woocommerce-message";case"info":case"warning":return"woocommerce-info"}return""},p=e=>{let{className:t,context:r="default",additionalNotices:n=[]}=e;const{isSuppressed:s}=Object(u.b)(),{notices:p}=Object(l.useSelect)(e=>({notices:e("core/notices").getNotices(r)})),{removeNotice:f}=Object(l.useDispatch)("core/notices"),m=p.filter(e=>"snackbar"!==e.type).concat(n);if(!m.length)return null;const h=i()(t,"wc-block-components-notices");return s?null:Object(a.createElement)("div",{className:h},m.map(e=>Object(a.createElement)(c.a,o()({key:"store-notice-"+e.id},e,{className:i()("wc-block-components-notices__notice",d(e)),onRemove:()=>{e.isDismissible&&f(e.id,r)}}),e.content)))}},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(0),o=r(48),a=r(2),s=r(59),i=r.n(s),c=r(10),l=r(16);const u=(e,t)=>e&&t[e]?t[e]:null,d=e=>{let{block:t,blockMap:r,blockWrapper:o,children:s,depth:p=1}=e;return s&&0!==s.length?Array.from(s).map((e,s)=>{const{blockName:f="",...m}={key:`${t}_${p}_${s}`,...e instanceof HTMLElement?e.dataset:{},className:e instanceof Element?null==e?void 0:e.className:""},h=u(f,r);if(!h){const a=i()(e instanceof Element&&(null==e?void 0:e.outerHTML)||(null==e?void 0:e.textContent)||"");if("string"==typeof a&&a)return a;if(!Object(n.isValidElement)(a))return null;const s=e.childNodes.length?d({block:t,blockMap:r,children:e.childNodes,depth:p+1,blockWrapper:o}):void 0;return s?Object(n.cloneElement)(a,m,s):Object(n.cloneElement)(a,m)}const b=o||n.Fragment;return Object(n.createElement)(n.Suspense,{key:`${t}_${p}_${s}_suspense`,fallback:Object(n.createElement)("div",{className:"wc-block-placeholder"})},Object(n.createElement)(l.a,{text:"Unexpected error in: "+f,showErrorBlock:a.CURRENT_USER_IS_ADMIN},Object(n.createElement)(b,null,Object(n.createElement)(h,m,d({block:t,blockMap:r,children:e.childNodes,depth:p+1,blockWrapper:o}),((e,t,r,o)=>{if(!Object(c.hasInnerBlocks)(e))return null;const s=r?Array.from(r).map(e=>e instanceof HTMLElement&&(null==e?void 0:e.dataset.blockName)||null).filter(Boolean):[],i=Object(c.getRegisteredBlocks)(e).filter(e=>{let{blockName:t,force:r}=e;return!0===r&&!s.includes(t)}),d=o||n.Fragment;return Object(n.createElement)(n.Fragment,null,i.map((e,r)=>{let{blockName:o,component:s}=e;const i=s||u(o,t);return i?Object(n.createElement)(l.a,{text:"Unexpected error in: "+o,showErrorBlock:a.CURRENT_USER_IS_ADMIN},Object(n.createElement)(d,null,Object(n.createElement)(i,{key:`${o}_forced_${r}`}))):null}))})(f,r,e.childNodes,o)))))}):null},p=e=>{let{Block:t,selector:r,blockName:n,getProps:a=(()=>({})),blockMap:s,blockWrapper:i}=e;Object(o.a)({Block:t,selector:r,getProps:(e,t)=>{const r=d({block:n,blockMap:s,children:e.children||[],blockWrapper:i});return{...a(e,t),children:r}}})}},function(e,t){e.exports=function(e,t){if(null==e)return{};var r,n,o={},a=Object.keys(e);for(n=0;n<a.length;n++)r=a[n],t.indexOf(r)>=0||(o[r]=e[r]);return o},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){var n=r(130);e.exports=function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,n(e,t)},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){function r(t,n){return e.exports=r=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},e.exports.__esModule=!0,e.exports.default=e.exports,r(t,n)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){"use strict";r.d(t,"a",(function(){return _}));var n=r(0),o=r(113),a=r(2),s=r(16),i=r(201),c=r(66),l=r(46),u=r(34),d=r(1),p=r(25),f=r.n(p),m=r(118),h=r(92),b=r(7);const g=(e,t,r)=>{const n=Object.keys(e).map(t=>({key:t,value:e[t]}),[]),o=`wc-${r}-new-payment-method`;return n.push({key:o,value:t}),n},E=(e,t)=>{f.a.setNonce&&"function"==typeof f.a.setNonce&&f.a.setNonce(e),null!=e&&e.get("User-ID")&&t.setCustomerId(parseInt(e.get("User-ID")||"0",10))};var y=r(194),v=r(31),O=r(57),S=()=>{const{hasError:e,onCheckoutValidationBeforeProcessing:t,dispatchActions:r,redirectUrl:o,isProcessing:a,isBeforeProcessing:s,isComplete:p,orderNotes:S,shouldCreateAccount:_,extensionData:k}=Object(u.b)(),{hasValidationErrors:w}=Object(y.b)(),{shippingErrorStatus:j}=Object(c.b)(),{billingData:R,shippingAddress:C}=Object(l.b)(),{cartNeedsPayment:T,cartNeedsShipping:A,receiveCart:x}=Object(v.a)(),{activePaymentMethod:P,isExpressPaymentMethodActive:M,currentStatus:N,paymentMethodData:I,expressPaymentMethods:D,paymentMethods:L,shouldSavePayment:F}=Object(i.b)(),{setIsSuppressed:V}=Object(O.b)(),{createErrorNotice:B,removeNotice:U}=Object(b.useDispatch)("core/notices"),H=Object(n.useRef)(R),G=Object(n.useRef)(C),Y=Object(n.useRef)(o),[z,q]=Object(n.useState)(!1),W=Object(n.useMemo)(()=>{var e;const t={...D,...L};return null==t||null===(e=t[P])||void 0===e?void 0:e.paymentMethodId},[P,D,L]),X=w&&!M||N.hasError||j.hasError,K=!e&&!X&&(N.isSuccessful||!T)&&a;Object(n.useEffect)(()=>{V(M)},[M,V]),Object(n.useEffect)(()=>{X===e||!a&&!s||M||r.setHasError(X)},[X,e,a,s,M,r]),Object(n.useEffect)(()=>{H.current=R,G.current=C,Y.current=o},[R,C,o]);const $=Object(n.useCallback)(()=>!w&&(N.hasError?{errorMessage:Object(d.__)("There was a problem with your payment option.","woocommerce")}:!j.hasError||{errorMessage:Object(d.__)("There was a problem with your shipping option.","woocommerce")}),[w,N.hasError,j.hasError]);Object(n.useEffect)(()=>{let e;return M||(e=t($,0)),()=>{M||e()}},[t,$,M]),Object(n.useEffect)(()=>{Y.current&&(window.location.href=Y.current)},[p]);const J=Object(n.useCallback)(async()=>{if(z)return;q(!0),U("checkout");const e=T?{payment_method:W,payment_data:g(I,F,P)}:{},t={billing_address:Object(m.a)(H.current),customer_note:S,create_account:_,...e,extensions:{...k}};A&&(t.shipping_address=Object(m.a)(G.current)),f()({path:"/wc/store/v1/checkout",method:"POST",data:t,cache:"no-store",parse:!1}).then(e=>{if(E(e.headers,r),!e.ok)throw new Error(e);return e.json()}).then(e=>{r.setAfterProcessing(e),q(!1)}).catch(e=>{try{null!=e&&e.headers&&E(e.headers,r),e.json().then(e=>{var t,n,o;null!==(t=e.data)&&void 0!==t&&t.cart&&x(e.data.cart),B(Object(h.b)(e),{id:"checkout",context:"wc/checkout"}),null==e||null===(n=e.additional_errors)||void 0===n||null===(o=n.forEach)||void 0===o||o.call(n,e=>{B(e.message,{id:e.error_code,context:"wc/checkout"})}),r.setAfterProcessing(e)})}catch{var t;B(Object(d.sprintf)(// Translators: %s Error text.
4
  Object(d.__)("%s Please try placing your order again.","woocommerce"),null!==(t=null==e?void 0:e.message)&&void 0!==t?t:Object(d.__)("Something went wrong.","woocommerce")),{id:"checkout",context:"wc/checkout"})}r.setHasError(!0),q(!1)})},[z,U,T,W,I,F,P,S,_,k,A,r,B,x]);return Object(n.useEffect)(()=>{K&&!z&&J()},[J,K,z]),null};const _=e=>{let{children:t,isCart:r=!1,redirectUrl:d}=e;return Object(n.createElement)(u.a,{redirectUrl:d,isCart:r},Object(n.createElement)(l.a,null,Object(n.createElement)(c.a,null,Object(n.createElement)(i.a,null,t,Object(n.createElement)(s.a,{renderError:a.CURRENT_USER_IS_ADMIN?null:()=>null},Object(n.createElement)(o.PluginArea,{scope:"woocommerce-checkout"})),Object(n.createElement)(S,null)))))}},,,function(e,t,r){"use strict";var n=r(0);r(191),t.a=()=>Object(n.createElement)("span",{className:"wc-block-components-spinner","aria-hidden":"true"})},,function(e,t,r){"use strict";var n=r(0),o=r(1),a=r(4),s=r.n(a),i=(r(193),r(135));t.a=e=>{let{children:t,className:r,screenReaderLabel:a,showSpinner:c=!1,isLoading:l=!0}=e;return Object(n.createElement)("div",{className:s()(r,{"wc-block-components-loading-mask":l})},l&&c&&Object(n.createElement)(i.a,null),Object(n.createElement)("div",{className:s()({"wc-block-components-loading-mask__children":l}),"aria-hidden":l},t),l&&Object(n.createElement)("span",{className:"screen-reader-text"},a||Object(o.__)("Loading…","woocommerce")))}},,,,,function(e,t){e.exports=window.wp.keycodes},,function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=(e,t)=>{const r=[];return Object.keys(e).forEach(n=>{if(void 0!==t[n])switch(e[n].type){case"boolean":r[n]="false"!==t[n]&&!1!==t[n];break;case"number":r[n]=parseInt(t[n],10);break;case"array":case"object":r[n]=JSON.parse(t[n]);break;default:r[n]=t[n]}else r[n]=e[n].default}),r}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"b",(function(){return a}));var n=r(0);const o=Object(n.createContext)({hasDarkControls:!1}),a=()=>Object(n.useContext)(o)},,,function(e){e.exports=JSON.parse('{"name":"woocommerce/filled-cart-block","version":"1.0.0","title":"Filled Cart","description":"Contains blocks that are displayed when the cart contains products.","category":"woocommerce","supports":{"align":["wide"],"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/cart"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/empty-cart-block","version":"1.0.0","title":"Empty Cart","description":"Contains blocks that are displayed when the cart is empty.","category":"woocommerce","supports":{"align":["wide"],"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/cart"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-items-block","version":"1.0.0","title":"Cart Items block","description":"Column containing cart items.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/filled-cart-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-express-payment-block","version":"1.0.0","title":"Express Checkout","description":"Provide an express payment option for your customers.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/cart-totals-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-line-items-block","version":"1.0.0","title":"Cart Line Items","description":"Block containing current line items in Cart.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/cart-items-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-totals-block","version":"1.0.0","title":"Cart Totals","description":"Column containing the cart totals.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"checkbox":{"type":"boolean","default":false},"text":{"type":"string","required":false},"lock":{"type":"object","default":{"remove":true}}},"parent":["woocommerce/filled-cart-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/proceed-to-checkout-block","version":"1.0.0","title":"Proceed to checkout","description":"Allow customers proceed to Checkout.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"default":{"remove":true,"move":true}}},"parent":["woocommerce/cart-totals-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-accepted-payment-methods-block","version":"1.0.0","title":"Accepted Payment Methods","description":"Display accepted payment methods.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":true},"parent":["woocommerce/cart-totals-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-block","version":"1.0.0","title":"Order Summary","description":"Show customers a summary of their order.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/cart-totals-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-subtotal-block","version":"1.0.0","title":"Subtotal","description":"Shows the cart subtotal row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-fee-block","version":"1.0.0","title":"Fees","description":"Shows the cart fee row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-discount-block","version":"1.0.0","title":"Discount","description":"Shows the cart discount row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-shipping-block","version":"1.0.0","title":"Shipping","description":"Shows the cart shipping row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-coupon-form-block","version":"1.0.0","title":"Coupon Form","description":"Shows the apply coupon form.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":false,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-taxes-block","version":"1.0.0","title":"Taxes","description":"Shows the cart taxes row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/cart-order-summary-heading-block","version":"1.0.0","title":"Heading","description":"Shows the heading row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"content":{"type":"string","default":"Cart totals"},"lock":{"type":"object","default":{"remove":false,"move":false}}},"parent":["woocommerce/cart-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){},,function(e,t){},function(e,t,r){"use strict";r.d(t,"b",(function(){return c})),r.d(t,"a",(function(){return l}));var n=r(0),o=r(6),a=r(12),s=r.n(a);const i=Object(n.createContext)({getValidationError:()=>"",setValidationErrors:e=>{},clearValidationError:e=>{},clearAllValidationErrors:()=>{},hideValidationError:()=>{},showValidationError:()=>{},showAllValidationErrors:()=>{},hasValidationErrors:!1,getValidationErrorId:e=>e}),c=()=>Object(n.useContext)(i),l=e=>{let{children:t}=e;const[r,a]=Object(n.useState)({}),c=Object(n.useCallback)(e=>r[e],[r]),l=Object(n.useCallback)(e=>{const t=r[e];return!t||t.hidden?"":"validate-error-"+e},[r]),u=Object(n.useCallback)(e=>{a(t=>{if(!t[e])return t;const{[e]:r,...n}=t;return n})},[]),d=Object(n.useCallback)(()=>{a({})},[]),p=Object(n.useCallback)(e=>{e&&a(t=>(e=Object(o.pickBy)(e,(e,r)=>!("string"!=typeof e.message||t.hasOwnProperty(r)&&s()(t[r],e))),0===Object.values(e).length?t:{...t,...e}))},[]),f=Object(n.useCallback)((e,t)=>{a(r=>{if(!r.hasOwnProperty(e))return r;const n={...r[e],...t};return s()(r[e],n)?r:{...r,[e]:n}})},[]),m={getValidationError:c,setValidationErrors:p,clearValidationError:u,clearAllValidationErrors:d,hideValidationError:Object(n.useCallback)(e=>{f(e,{hidden:!0})},[f]),showValidationError:Object(n.useCallback)(e=>{f(e,{hidden:!1})},[f]),showAllValidationErrors:Object(n.useCallback)(()=>{a(e=>{const t={};return Object.keys(e).forEach(r=>{e[r].hidden&&(t[r]={...e[r],hidden:!1})}),0===Object.values(t).length?e:{...e,...t}})},[]),hasValidationErrors:Object.keys(r).length>0,getValidationErrorId:l};return Object(n.createElement)(i.Provider,{value:m},t)}},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(91);const o=(e,t)=>function(r){let o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10;const a=n.a.addEventCallback(e,r,o);return t(a),()=>{t(n.a.removeEventCallback(e,a.id))}}},,function(e,t,r){"use strict";r.d(t,"a",(function(){return a})),r.d(t,"b",(function(){return s}));const n=(e,t)=>e[t]?Array.from(e[t].values()).sort((e,t)=>e.priority-t.priority):[];var o=r(29);const a=async(e,t,r)=>{const o=n(e,t),a=[];for(const e of o)try{const t=await Promise.resolve(e.callback(r));"object"==typeof t&&a.push(t)}catch(e){console.error(e)}return!a.length||a},s=async(e,t,r)=>{const a=[],s=n(e,t);for(const e of s)try{const t=await Promise.resolve(e.callback(r));if("object"!=typeof t||null===t)continue;if(!t.hasOwnProperty("type"))throw new Error("Returned objects from event emitter observers must return an object with a type property");if(Object(o.a)(t)||Object(o.b)(t))return a.push(t),a;a.push(t)}catch(e){return console.error(e),a.push({type:"error"}),a}return a}},,function(e,t,r){"use strict";r.d(t,"b",(function(){return L})),r.d(t,"a",(function(){return F}));var n=r(0),o=r(61),a=r(7);let s,i;!function(e){e.PRISTINE="pristine",e.STARTED="started",e.PROCESSING="processing",e.ERROR="has_error",e.FAILED="failed",e.SUCCESS="success",e.COMPLETE="complete"}(s||(s={})),function(e){e.SET_REGISTERED_PAYMENT_METHODS="set_registered_payment_methods",e.SET_REGISTERED_EXPRESS_PAYMENT_METHODS="set_registered_express_payment_methods",e.SET_SHOULD_SAVE_PAYMENT_METHOD="set_should_save_payment_method",e.SET_ACTIVE_PAYMENT_METHOD="set_active_payment_method"}(i||(i={}));const c={currentStatus:s.PRISTINE,shouldSavePaymentMethod:!1,activePaymentMethod:"",paymentMethodData:{payment_method:""},errorMessage:"",paymentMethods:{},expressPaymentMethods:{}},l={setPaymentStatus:()=>({pristine:()=>{},started:()=>{},processing:()=>{},completed:()=>{},error:e=>{},failed:(e,t)=>{},success:(e,t)=>{}}),currentStatus:{isPristine:!0,isStarted:!1,isProcessing:!1,isFinished:!1,hasError:!1,hasFailed:!1,isSuccessful:!1,isDoingExpressPayment:!1},paymentStatuses:s,paymentMethodData:{},errorMessage:"",activePaymentMethod:"",activeSavedToken:"",setActivePaymentMethod:()=>{},customerPaymentMethods:{},paymentMethods:{},expressPaymentMethods:{},paymentMethodsInitialized:!1,expressPaymentMethodsInitialized:!1,onPaymentProcessing:()=>()=>()=>{},setExpressPaymentError:()=>{},isExpressPaymentMethodActive:!1,setShouldSavePayment:()=>{},shouldSavePayment:!1};var u=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:c,{type:t,paymentMethodData:r,shouldSavePaymentMethod:n=!1,errorMessage:o="",paymentMethods:a={},paymentMethod:l=""}=arguments.length>1?arguments[1]:void 0;switch(t){case s.PRISTINE:return{...c,...e,errorMessage:"",currentStatus:s.PRISTINE};case s.STARTED:return{...e,currentStatus:s.STARTED};case s.ERROR:return e.currentStatus!==s.ERROR?{...e,currentStatus:s.ERROR,errorMessage:o||e.errorMessage}:e;case s.FAILED:return e.currentStatus!==s.FAILED?{...e,currentStatus:s.FAILED,paymentMethodData:r||e.paymentMethodData,errorMessage:o||e.errorMessage}:e;case s.SUCCESS:return e.currentStatus!==s.SUCCESS?{...e,currentStatus:s.SUCCESS,paymentMethodData:r||e.paymentMethodData}:e;case s.PROCESSING:return e.currentStatus!==s.PROCESSING?{...e,currentStatus:s.PROCESSING,errorMessage:""}:e;case s.COMPLETE:return e.currentStatus!==s.COMPLETE?{...e,currentStatus:s.COMPLETE}:e;case i.SET_REGISTERED_PAYMENT_METHODS:return{...e,paymentMethods:a};case i.SET_REGISTERED_EXPRESS_PAYMENT_METHODS:return{...e,expressPaymentMethods:a};case i.SET_SHOULD_SAVE_PAYMENT_METHOD:return{...e,shouldSavePaymentMethod:n};case i.SET_ACTIVE_PAYMENT_METHOD:return{...e,activePaymentMethod:l,paymentMethodData:r||e.paymentMethodData}}},d=r(1),p=r(17),f=r(30),m=r(2),h=r(47),b=r(27),g=r(46),E=r(31),y=r(29),v=r(64);const O=(e,t,r,o)=>{const[s,i]=Object(n.useState)(!1),{isEditor:c}=Object(b.a)(),{selectedRates:l}=Object(v.a)(),{billingData:u,shippingAddress:p}=Object(g.b)(),y=Object(f.a)(l),O=Object(f.a)(r),S=Object(E.a)(),{cartTotals:_,cartIsLoading:k,cartNeedsShipping:w,paymentRequirements:j}=S,R=Object(n.useRef)({cart:S,cartTotals:_,cartNeedsShipping:w,billingData:u,shippingAddress:p,selectedShippingMethods:y,paymentRequirements:j}),{createErrorNotice:C}=Object(a.useDispatch)("core/notices");Object(n.useEffect)(()=>{R.current={cart:S,cartTotals:_,cartNeedsShipping:w,billingData:u,shippingAddress:p,selectedShippingMethods:y,paymentRequirements:j}},[S,_,w,u,p,y,j]);const T=Object(n.useCallback)(async()=>{let r={};const n=e=>{r={...r,[e.name]:e}};for(let e=0;e<O.length;e++){const r=O[e],a=t[r];if(a)try{const e=!!c||await Promise.resolve(a.canMakePayment(R.current));if(e){if("object"==typeof e&&null!==e&&e.error)throw new Error(e.error.message);n(a)}}catch(e){if(m.CURRENT_USER_IS_ADMIN||c){const t=Object(d.sprintf)(
packages/woocommerce-blocks/build/checkout-frontend.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-checkout', 'wc-blocks-data-store', 'wc-blocks-registry', 'wc-blocks-shared-hocs', 'wc-price-format', 'wc-settings', 'wp-a11y', 'wp-api-fetch', 'wp-autop', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning', 'wp-wordcount'), 'version' => '86324fd5aa1e0593f7490aaf4c5bcc83');
1
+ <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-checkout', 'wc-blocks-data-store', 'wc-blocks-registry', 'wc-blocks-shared-hocs', 'wc-price-format', 'wc-settings', 'wp-a11y', 'wp-api-fetch', 'wp-autop', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning', 'wp-wordcount'), 'version' => '4408df8befd6b9079b62a693e629e686');
packages/woocommerce-blocks/build/checkout-frontend.js CHANGED
@@ -1,4 +1,4 @@
1
- !function(e){function t(t){for(var r,o,s=t[0],c=t[1],a=0,l=[];a<s.length;a++)o=s[a],Object.prototype.hasOwnProperty.call(n,o)&&n[o]&&l.push(n[o][0]),n[o]=0;for(r in c)Object.prototype.hasOwnProperty.call(c,r)&&(e[r]=c[r]);for(i&&i(t);l.length;)l.shift()()}var r={},n={28:0,7:0,73:0};function o(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}o.e=function(e){var t=[],r=n[e];if(0!==r)if(r)t.push(r[2]);else{var s=new Promise((function(t,o){r=n[e]=[t,o]}));t.push(r[2]=s);var c,a=document.createElement("script");a.charset="utf-8",a.timeout=120,o.nc&&a.setAttribute("nonce",o.nc),a.src=function(e){return o.p+""+({0:"vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66",1:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--decc3dc6",2:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--5b8feb0b",3:"vendors--cart-blocks/cart-line-items--checkout-blocks/order-summary-cart-items--mini-cart-contents---233ab542",5:"cart-blocks/order-summary-shipping--checkout-blocks/order-summary-shipping",6:"checkout-blocks/billing-address--checkout-blocks/shipping-address",29:"checkout-blocks/actions",30:"checkout-blocks/billing-address",31:"checkout-blocks/contact-information",32:"checkout-blocks/express-payment",33:"checkout-blocks/fields",34:"checkout-blocks/order-note",35:"checkout-blocks/order-summary",36:"checkout-blocks/order-summary-cart-items",37:"checkout-blocks/order-summary-coupon-form",38:"checkout-blocks/order-summary-discount",39:"checkout-blocks/order-summary-fee",40:"checkout-blocks/order-summary-shipping",41:"checkout-blocks/order-summary-subtotal",42:"checkout-blocks/order-summary-taxes",43:"checkout-blocks/payment",44:"checkout-blocks/shipping-address",45:"checkout-blocks/shipping-methods",46:"checkout-blocks/terms",47:"checkout-blocks/totals"}[e]||e)+"-frontend.js?ver="+{0:"071743a9ca2cfdafd79f",1:"e2dda84269ff5f357820",2:"bb568a01ffa114ca1394",3:"deab3ee0c5c13d3addc8",5:"4633d7aaf0d614913380",6:"b7e8e209f19b2dfc3f1a",29:"c70761df36c347744b7f",30:"8ade0643c2f8f6de39d7",31:"8e4a9e779ef986c851d1",32:"75cfc5089e37e6cea18a",33:"6c417856716e619d4eab",34:"00a8ffe40a8def4d59cd",35:"42fdf72f019377ecb9e2",36:"55380a01ec0ddc85d3e2",37:"e42d25e24158d480f753",38:"f727192ff1741d60fbbe",39:"129decb8cde927bf3a98",40:"4b4e4e6e20e654221c32",41:"03e865ea44e97b8bcd21",42:"1d64fdc9d75c199baace",43:"a6e82aea2ef27e29541f",44:"f760b5a5731985515963",45:"4249c8f1e34e087b4e95",46:"4145417370f868268ffc",47:"2c6124e92a358fa89656"}[e]}(e);var i=new Error;c=function(t){a.onerror=a.onload=null,clearTimeout(l);var r=n[e];if(0!==r){if(r){var o=t&&("load"===t.type?"missing":t.type),s=t&&t.target&&t.target.src;i.message="Loading chunk "+e+" failed.\n("+o+": "+s+")",i.name="ChunkLoadError",i.type=o,i.request=s,r[1](i)}n[e]=void 0}};var l=setTimeout((function(){c({type:"timeout",target:a})}),12e4);a.onerror=a.onload=c,document.head.appendChild(a)}return Promise.all(t)},o.m=e,o.c=r,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)o.d(r,n,function(t){return e[t]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o.oe=function(e){throw console.error(e),e};var s=window.webpackWcBlocksJsonp=window.webpackWcBlocksJsonp||[],c=s.push.bind(s);s.push=t,s=s.slice();for(var a=0;a<s.length;a++)t(s[a]);var i=c;o(o.s=226)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wc.wcSettings},function(e,t){e.exports=window.React},function(e,t,r){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var s=typeof n;if("string"===s||"number"===s)e.push(n);else if(Array.isArray(n)){if(n.length){var c=o.apply(null,n);c&&e.push(c)}}else if("object"===s)if(n.toString===Object.prototype.toString)for(var a in n)r.call(n,a)&&n[a]&&e.push(a);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},function(e,t){e.exports=window.wc.wcBlocksData},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.data},function(e,t,r){"use strict";function n(){return(n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}r.d(t,"a",(function(){return n}))},,function(e,t){e.exports=window.wc.blocksCheckout},function(e,t){function r(){return e.exports=r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,r.apply(this,arguments)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.isShallowEqual},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.primitives},function(e,t,r){"use strict";var n=r(19),o=r.n(n),s=r(0),c=r(3),a=r(1),i=r(44),l=e=>{let{imageUrl:t=i.l+"/block-error.svg",header:r=Object(a.__)("Oops!","woocommerce"),text:n=Object(a.__)("There was an error loading the content.","woocommerce"),errorMessage:o,errorMessagePrefix:c=Object(a.__)("Error:","woocommerce"),button:l,showErrorBlock:u=!0}=e;return u?Object(s.createElement)("div",{className:"wc-block-error wc-block-components-error"},t&&Object(s.createElement)("img",{className:"wc-block-error__image wc-block-components-error__image",src:t,alt:""}),Object(s.createElement)("div",{className:"wc-block-error__content wc-block-components-error__content"},r&&Object(s.createElement)("p",{className:"wc-block-error__header wc-block-components-error__header"},r),n&&Object(s.createElement)("p",{className:"wc-block-error__text wc-block-components-error__text"},n),o&&Object(s.createElement)("p",{className:"wc-block-error__message wc-block-components-error__message"},c?c+" ":"",o),l&&Object(s.createElement)("p",{className:"wc-block-error__button wc-block-components-error__button"},l))):null};r(33);class u extends c.Component{constructor(){super(...arguments),o()(this,"state",{errorMessage:"",hasError:!1})}static getDerivedStateFromError(e){return void 0!==e.statusText&&void 0!==e.status?{errorMessage:Object(s.createElement)(s.Fragment,null,Object(s.createElement)("strong",null,e.status),": ",e.statusText),hasError:!0}:{errorMessage:e.message,hasError:!0}}render(){const{header:e,imageUrl:t,showErrorMessage:r=!0,showErrorBlock:n=!0,text:o,errorMessagePrefix:c,renderError:a,button:i}=this.props,{errorMessage:u,hasError:d}=this.state;return d?"function"==typeof a?a({errorMessage:u}):Object(s.createElement)(l,{showErrorBlock:n,errorMessage:r?u:null,header:e,imageUrl:t,text:o,errorMessagePrefix:c,button:i}):this.props.children}}t.a=u},function(e,t){e.exports=window.wc.wcBlocksRegistry},function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.a11y},,,,function(e,t,r){"use strict";(function(e){var n=r(0);r(38);const o=Object(n.createContext)({slots:{},fills:{},registerSlot:()=>{void 0!==e&&e.env},updateSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{}});t.a=o}).call(this,r(63))},function(e,t){e.exports=window.wp.apiFetch},,function(e,t,r){"use strict";r.d(t,"a",(function(){return s}));var n=r(0);r(7);const o=Object(n.createContext)({isEditor:!1,currentPostId:0,currentView:"",previewData:{},getPreviewData:()=>{}}),s=()=>Object(n.useContext)(o)},,function(e,t,r){"use strict";r.d(t,"c",(function(){return s})),r.d(t,"a",(function(){return i})),r.d(t,"b",(function(){return l})),r.d(t,"d",(function(){return d}));var n=r(61);let o,s;!function(e){e.SUCCESS="success",e.FAIL="failure",e.ERROR="error"}(o||(o={})),function(e){e.PAYMENTS="wc/payment-area",e.EXPRESS_PAYMENTS="wc/express-payment-area"}(s||(s={}));const c=(e,t)=>Object(n.a)(e)&&"type"in e&&e.type===t,a=e=>c(e,o.SUCCESS),i=e=>c(e,o.ERROR),l=e=>c(e,o.FAIL),u=e=>!Object(n.a)(e)||void 0===e.retry||!0===e.retry,d=()=>({responseTypes:o,noticeContexts:s,shouldRetry:u,isSuccessResponse:a,isErrorResponse:i,isFailResponse:l})},function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(0),o=r(12),s=r.n(o);function c(e){const t=Object(n.useRef)(e);return s()(e,t.current)||(t.current=e),t.current}},function(e,t,r){"use strict";r.d(t,"a",(function(){return y}));var n=r(6),o=r(0),s=r(5),c=r(7),a=r(18),i=r(118),l=r(27),u=r(68);const d=e=>{const t=e.detail;t&&t.preserveCartData||Object(c.dispatch)(s.CART_STORE_KEY).invalidateResolutionForStore()},p=()=>{1===window.wcBlocksStoreCartListeners.count&&window.wcBlocksStoreCartListeners.remove(),window.wcBlocksStoreCartListeners.count--},m=()=>{Object(o.useEffect)(()=>((()=>{if(window.wcBlocksStoreCartListeners||(window.wcBlocksStoreCartListeners={count:0,remove:()=>{}}),0===window.wcBlocksStoreCartListeners.count){const e=Object(u.b)("added_to_cart","wc-blocks_added_to_cart"),t=Object(u.b)("removed_from_cart","wc-blocks_removed_from_cart");document.body.addEventListener("wc-blocks_added_to_cart",d),document.body.addEventListener("wc-blocks_removed_from_cart",d),window.wcBlocksStoreCartListeners.count=0,window.wcBlocksStoreCartListeners.remove=()=>{e(),t(),document.body.removeEventListener("wc-blocks_added_to_cart",d),document.body.removeEventListener("wc-blocks_removed_from_cart",d)}}window.wcBlocksStoreCartListeners.count++})(),p),[])},f={first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},h={...f,email:""},b={total_items:"",total_items_tax:"",total_fees:"",total_fees_tax:"",total_discount:"",total_discount_tax:"",total_shipping:"",total_shipping_tax:"",total_price:"",total_tax:"",tax_lines:s.EMPTY_TAX_LINES,currency_code:"",currency_symbol:"",currency_minor_unit:2,currency_decimal_separator:"",currency_thousand_separator:"",currency_prefix:"",currency_suffix:""},g=e=>Object.fromEntries(Object.entries(e).map(e=>{let[t,r]=e;return[t,Object(a.decodeEntities)(r)]})),E={cartCoupons:s.EMPTY_CART_COUPONS,cartItems:s.EMPTY_CART_ITEMS,cartFees:s.EMPTY_CART_FEES,cartItemsCount:0,cartItemsWeight:0,cartNeedsPayment:!0,cartNeedsShipping:!0,cartItemErrors:s.EMPTY_CART_ITEM_ERRORS,cartTotals:b,cartIsLoading:!0,cartErrors:s.EMPTY_CART_ERRORS,billingAddress:h,shippingAddress:f,shippingRates:s.EMPTY_SHIPPING_RATES,isLoadingRates:!1,cartHasCalculatedShipping:!1,paymentRequirements:s.EMPTY_PAYMENT_REQUIREMENTS,receiveCart:()=>{},extensions:s.EMPTY_EXTENSIONS},y=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{shouldSelect:!0};const{isEditor:t,previewData:r}=Object(l.a)(),a=null==r?void 0:r.previewCart,{shouldSelect:u}=e,d=Object(o.useRef)();m();const p=Object(c.useSelect)((e,r)=>{let{dispatch:n}=r;if(!u)return E;if(t)return{cartCoupons:a.coupons,cartItems:a.items,cartFees:a.fees,cartItemsCount:a.items_count,cartItemsWeight:a.items_weight,cartNeedsPayment:a.needs_payment,cartNeedsShipping:a.needs_shipping,cartItemErrors:s.EMPTY_CART_ITEM_ERRORS,cartTotals:a.totals,cartIsLoading:!1,cartErrors:s.EMPTY_CART_ERRORS,billingAddress:h,shippingAddress:f,extensions:s.EMPTY_EXTENSIONS,shippingRates:a.shipping_rates,isLoadingRates:!1,cartHasCalculatedShipping:a.has_calculated_shipping,paymentRequirements:a.paymentRequirements,receiveCart:"function"==typeof(null==a?void 0:a.receiveCart)?a.receiveCart:()=>{}};const o=e(s.CART_STORE_KEY),c=o.getCartData(),l=o.getCartErrors(),d=o.getCartTotals(),p=!o.hasFinishedResolution("getCartData"),m=o.isCustomerDataUpdating(),{receiveCart:b}=n(s.CART_STORE_KEY),y=g(c.billingAddress),O=c.needsShipping?g(c.shippingAddress):y,v=c.fees.length>0?c.fees.map(e=>g(e)):s.EMPTY_CART_FEES;return{cartCoupons:c.coupons.length>0?c.coupons.map(e=>({...e,label:e.code})):s.EMPTY_CART_COUPONS,cartItems:c.items,cartFees:v,cartItemsCount:c.itemsCount,cartItemsWeight:c.itemsWeight,cartNeedsPayment:c.needsPayment,cartNeedsShipping:c.needsShipping,cartItemErrors:c.errors,cartTotals:d,cartIsLoading:p,cartErrors:l,billingAddress:Object(i.a)(y),shippingAddress:Object(i.a)(O),extensions:c.extensions,shippingRates:c.shippingRates,isLoadingRates:m,cartHasCalculatedShipping:c.hasCalculatedShipping,paymentRequirements:c.paymentRequirements,receiveCart:b}},[u]);return d.current&&Object(n.isEqual)(d.current,p)||(d.current=p),d.current}},function(e,t){e.exports=window.wp.deprecated},function(e,t){},function(e,t,r){"use strict";r.d(t,"b",(function(){return A})),r.d(t,"a",(function(){return P}));var n=r(0),o=r(1),s=r(58),c=r(32),a=r.n(c),i=r(52),l=r(61),u=r(7);let d;!function(e){e.SET_IDLE="set_idle",e.SET_PRISTINE="set_pristine",e.SET_REDIRECT_URL="set_redirect_url",e.SET_COMPLETE="set_checkout_complete",e.SET_BEFORE_PROCESSING="set_before_processing",e.SET_AFTER_PROCESSING="set_after_processing",e.SET_PROCESSING_RESPONSE="set_processing_response",e.SET_PROCESSING="set_checkout_is_processing",e.SET_HAS_ERROR="set_checkout_has_error",e.SET_NO_ERROR="set_checkout_no_error",e.SET_CUSTOMER_ID="set_checkout_customer_id",e.SET_ORDER_ID="set_checkout_order_id",e.SET_ORDER_NOTES="set_checkout_order_notes",e.INCREMENT_CALCULATING="increment_calculating",e.DECREMENT_CALCULATING="decrement_calculating",e.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS="set_shipping_address_as_billing_address",e.SET_SHOULD_CREATE_ACCOUNT="set_should_create_account",e.SET_EXTENSION_DATA="set_extension_data"}(d||(d={}));const p=()=>({type:d.SET_IDLE}),m=e=>({type:d.SET_REDIRECT_URL,redirectUrl:e}),f=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{type:d.SET_COMPLETE,data:e}},h=function(){let e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return{type:e?d.SET_HAS_ERROR:d.SET_NO_ERROR}};var b=r(2),g=r(118);let E;!function(e){e.PRISTINE="pristine",e.IDLE="idle",e.PROCESSING="processing",e.COMPLETE="complete",e.BEFORE_PROCESSING="before_processing",e.AFTER_PROCESSING="after_processing"}(E||(E={}));const y={order_id:0,customer_id:0,billing_address:{},shipping_address:{},...Object(b.getSetting)("checkoutData",{})||{}},O={redirectUrl:"",status:E.PRISTINE,hasError:!1,calculatingCount:0,orderId:y.order_id,orderNotes:"",customerId:y.customer_id,useShippingAsBilling:Object(g.b)(y.billing_address,y.shipping_address),shouldCreateAccount:!1,processingResponse:null,extensionData:{}},v=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:O,{redirectUrl:t,type:r,customerId:n,orderId:o,orderNotes:s,extensionData:c,useShippingAsBilling:a,shouldCreateAccount:i,data:l}=arguments.length>1?arguments[1]:void 0,u=e;switch(r){case d.SET_PRISTINE:u=O;break;case d.SET_IDLE:u=e.status!==E.IDLE?{...e,status:E.IDLE}:e;break;case d.SET_REDIRECT_URL:u=void 0!==t&&t!==e.redirectUrl?{...e,redirectUrl:t}:e;break;case d.SET_PROCESSING_RESPONSE:u={...e,processingResponse:l};break;case d.SET_COMPLETE:u=e.status!==E.COMPLETE?{...e,status:E.COMPLETE,redirectUrl:"string"==typeof(null==l?void 0:l.redirectUrl)?l.redirectUrl:e.redirectUrl}:e;break;case d.SET_PROCESSING:u=e.status!==E.PROCESSING?{...e,status:E.PROCESSING,hasError:!1}:e,u=!1===u.hasError?u:{...u,hasError:!1};break;case d.SET_BEFORE_PROCESSING:u=e.status!==E.BEFORE_PROCESSING?{...e,status:E.BEFORE_PROCESSING,hasError:!1}:e;break;case d.SET_AFTER_PROCESSING:u=e.status!==E.AFTER_PROCESSING?{...e,status:E.AFTER_PROCESSING}:e;break;case d.SET_HAS_ERROR:u=e.hasError?e:{...e,hasError:!0},u=e.status===E.PROCESSING||e.status===E.BEFORE_PROCESSING?{...u,status:E.IDLE}:u;break;case d.SET_NO_ERROR:u=e.hasError?{...e,hasError:!1}:e;break;case d.INCREMENT_CALCULATING:u={...e,calculatingCount:e.calculatingCount+1};break;case d.DECREMENT_CALCULATING:u={...e,calculatingCount:Math.max(0,e.calculatingCount-1)};break;case d.SET_CUSTOMER_ID:u=void 0!==n?{...e,customerId:n}:e;break;case d.SET_ORDER_ID:u=void 0!==o?{...e,orderId:o}:e;break;case d.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS:void 0!==a&&a!==e.useShippingAsBilling&&(u={...e,useShippingAsBilling:a});break;case d.SET_SHOULD_CREATE_ACCOUNT:void 0!==i&&i!==e.shouldCreateAccount&&(u={...e,shouldCreateAccount:i});break;case d.SET_ORDER_NOTES:void 0!==s&&e.orderNotes!==s&&(u={...e,orderNotes:s});break;case d.SET_EXTENSION_DATA:void 0!==c&&e.extensionData!==c&&(u={...e,extensionData:c})}return u!==e&&r!==d.SET_PRISTINE&&u.status===E.PRISTINE&&(u.status=E.IDLE),u};var _=r(18),S=r(91),k=r(197);var w=r(199),j=r(194),C=r(40),R=r(29),T=r(77);const x=Object(n.createContext)({dispatchActions:{resetCheckout:()=>{},setRedirectUrl:e=>{},setHasError:e=>{},setAfterProcessing:e=>{},incrementCalculating:()=>{},decrementCalculating:()=>{},setCustomerId:e=>{},setOrderId:e=>{},setOrderNotes:e=>{},setExtensionData:e=>{}},onSubmit:()=>{},isComplete:!1,isIdle:!1,isCalculating:!1,isProcessing:!1,isBeforeProcessing:!1,isAfterProcessing:!1,hasError:!1,redirectUrl:"",orderId:0,orderNotes:"",customerId:0,onCheckoutAfterProcessingWithSuccess:()=>()=>{},onCheckoutAfterProcessingWithError:()=>()=>{},onCheckoutBeforeProcessing:()=>()=>{},onCheckoutValidationBeforeProcessing:()=>()=>{},hasOrder:!1,isCart:!1,useShippingAsBilling:!1,setUseShippingAsBilling:e=>{},shouldCreateAccount:!1,setShouldCreateAccount:e=>{},extensionData:{}}),A=()=>Object(n.useContext)(x),P=e=>{let{children:t,redirectUrl:r,isCart:c=!1}=e;O.redirectUrl=r;const[b,g]=Object(n.useReducer)(v,O),{setValidationErrors:y}=Object(j.b)(),{createErrorNotice:A}=Object(u.useDispatch)("core/notices"),{dispatchCheckoutEvent:P}=Object(C.a)(),N=b.calculatingCount>0,{isSuccessResponse:M,isErrorResponse:I,isFailResponse:D,shouldRetry:L}=Object(R.d)(),{checkoutNotices:F,paymentNotices:U,expressPaymentNotices:V}=(()=>{const{noticeContexts:e}=Object(R.d)();return{checkoutNotices:Object(u.useSelect)(e=>e("core/notices").getNotices("wc/checkout"),[]),expressPaymentNotices:Object(u.useSelect)(t=>t("core/notices").getNotices(e.EXPRESS_PAYMENTS),[e.EXPRESS_PAYMENTS]),paymentNotices:Object(u.useSelect)(t=>t("core/notices").getNotices(e.PAYMENTS),[e.PAYMENTS])}})(),[B,H]=Object(n.useReducer)(S.b,{}),z=Object(n.useRef)(B),{onCheckoutAfterProcessingWithSuccess:G,onCheckoutAfterProcessingWithError:Y,onCheckoutValidationBeforeProcessing:q}=(e=>Object(n.useMemo)(()=>({onCheckoutAfterProcessingWithSuccess:Object(k.a)("checkout_after_processing_with_success",e),onCheckoutAfterProcessingWithError:Object(k.a)("checkout_after_processing_with_error",e),onCheckoutValidationBeforeProcessing:Object(k.a)("checkout_validation_before_processing",e)}),[e]))(H);Object(n.useEffect)(()=>{z.current=B},[B]);const W=Object(n.useMemo)(()=>function(){return a()("onCheckoutBeforeProcessing",{alternative:"onCheckoutValidationBeforeProcessing",plugin:"WooCommerce Blocks"}),q(...arguments)},[q]),K=Object(n.useMemo)(()=>({resetCheckout:()=>{g({type:d.SET_PRISTINE})},setRedirectUrl:e=>{g(m(e))},setHasError:e=>{g(h(e))},incrementCalculating:()=>{g({type:d.INCREMENT_CALCULATING})},decrementCalculating:()=>{g({type:d.DECREMENT_CALCULATING})},setCustomerId:e=>{var t;g((t=e,{type:d.SET_CUSTOMER_ID,customerId:t}))},setOrderId:e=>{g((e=>({type:d.SET_ORDER_ID,orderId:e}))(e))},setOrderNotes:e=>{g((e=>({type:d.SET_ORDER_NOTES,orderNotes:e}))(e))},setExtensionData:e=>{g((e=>({type:d.SET_EXTENSION_DATA,extensionData:e}))(e))},setAfterProcessing:e=>{const t=(e=>{const t={message:"",paymentStatus:"",redirectUrl:"",paymentDetails:{}};return"payment_result"in e&&(t.paymentStatus=e.payment_result.payment_status,t.redirectUrl=e.payment_result.redirect_url,e.payment_result.hasOwnProperty("payment_details")&&Array.isArray(e.payment_result.payment_details)&&e.payment_result.payment_details.forEach(e=>{let{key:r,value:n}=e;t.paymentDetails[r]=Object(_.decodeEntities)(n)})),"message"in e&&(t.message=Object(_.decodeEntities)(e.message)),!t.message&&"data"in e&&"status"in e.data&&e.data.status>299&&(t.message=Object(o.__)("Something went wrong. Please contact us to get assistance.","woocommerce")),t})(e);var r;g(m((null==t?void 0:t.redirectUrl)||"")),g((r=t,{type:d.SET_PROCESSING_RESPONSE,data:r})),g({type:d.SET_AFTER_PROCESSING})}}),[]);Object(n.useEffect)(()=>{b.status===E.BEFORE_PROCESSING&&(Object(T.b)("error"),Object(w.a)(z.current,"checkout_validation_before_processing",{}).then(e=>{!0!==e?(Array.isArray(e)&&e.forEach(e=>{let{errorMessage:t,validationErrors:r}=e;A(t,{context:"wc/checkout"}),y(r)}),g(p()),g(h())):g({type:d.SET_PROCESSING})}))},[b.status,y,A,g]);const $=Object(s.a)(b.status),X=Object(s.a)(b.hasError);Object(n.useEffect)(()=>{if((b.status!==$||b.hasError!==X)&&b.status===E.AFTER_PROCESSING){const e={redirectUrl:b.redirectUrl,orderId:b.orderId,customerId:b.customerId,orderNotes:b.orderNotes,processingResponse:b.processingResponse};b.hasError?Object(w.b)(z.current,"checkout_after_processing_with_error",e).then(t=>{const r=(e=>{let t=null;return e.forEach(e=>{if((I(e)||D(e))&&e.message&&Object(i.a)(e.message)){const r=e.messageContext&&Object(i.a)(e.messageContent)?{context:e.messageContext}:void 0;t=e,A(e.message,r)}}),t})(t);if(null!==r)L(r)?g(p()):g(f(r));else{if(!(F.some(e=>"error"===e.status)||V.some(e=>"error"===e.status)||U.some(e=>"error"===e.status))){var n;const t=(null===(n=e.processingResponse)||void 0===n?void 0:n.message)||Object(o.__)("Something went wrong. Please contact us to get assistance.","woocommerce");A(t,{id:"checkout",context:"wc/checkout"})}g(p())}}):Object(w.b)(z.current,"checkout_after_processing_with_success",e).then(e=>{let t=null,r=null;if(e.forEach(e=>{M(e)&&(t=e),(I(e)||D(e))&&(r=e)}),t&&!r)g(f(t));else if(Object(l.a)(r)){if(r.message&&Object(i.a)(r.message)){const e=r.messageContext&&Object(i.a)(r.messageContext)?{context:r.messageContext}:void 0;A(r.message,e)}L(r)?g(h(!0)):g(f(r))}else g(f())})}},[b.status,b.hasError,b.redirectUrl,b.orderId,b.customerId,b.orderNotes,b.processingResponse,$,X,K,A,I,D,M,L,F,V,U]);const J={onSubmit:Object(n.useCallback)(()=>{P("submit"),g({type:d.SET_BEFORE_PROCESSING})},[P]),isComplete:b.status===E.COMPLETE,isIdle:b.status===E.IDLE,isCalculating:N,isProcessing:b.status===E.PROCESSING,isBeforeProcessing:b.status===E.BEFORE_PROCESSING,isAfterProcessing:b.status===E.AFTER_PROCESSING,hasError:b.hasError,redirectUrl:b.redirectUrl,onCheckoutBeforeProcessing:W,onCheckoutValidationBeforeProcessing:q,onCheckoutAfterProcessingWithSuccess:G,onCheckoutAfterProcessingWithError:Y,dispatchActions:K,isCart:c,orderId:b.orderId,hasOrder:!!b.orderId,customerId:b.customerId,orderNotes:b.orderNotes,useShippingAsBilling:b.useShippingAsBilling,setUseShippingAsBilling:e=>{return g((t=e,{type:d.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS,useShippingAsBilling:t}));var t},shouldCreateAccount:b.shouldCreateAccount,setShouldCreateAccount:e=>{return g((t=e,{type:d.SET_SHOULD_CREATE_ACCOUNT,shouldCreateAccount:t}));var t},extensionData:b.extensionData};return Object(n.createElement)(x.Provider,{value:J},t)}},,,function(e,t){e.exports=window.wc.priceFormat},function(e,t){e.exports=window.wp.warning},function(e,t){e.exports=window.wp.hooks},function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(39),o=r(0),s=r(31);const c=()=>{const e=Object(s.a)(),t=Object(o.useRef)(e);return Object(o.useEffect)(()=>{t.current=e},[e]),{dispatchStoreEvent:Object(o.useCallback)((function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-"+e,t)}catch(e){console.error(e)}}),[]),dispatchCheckoutEvent:Object(o.useCallback)((function(e){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-checkout-"+e,{...r,storeCart:t.current})}catch(e){console.error(e)}}),[])}}},function(e,t,r){"use strict";var n=r(8),o=r(0),s=r(15),c=function({icon:e,className:t,...r}){const s=["dashicon","dashicons","dashicons-"+e,t].filter(Boolean).join(" ");return Object(o.createElement)("span",Object(n.a)({className:s},r))};t.a=function({icon:e=null,size:t=24,...r}){if("string"==typeof e)return Object(o.createElement)(c,Object(n.a)({icon:e},r));if(Object(o.isValidElement)(e)&&c===e.type)return Object(o.cloneElement)(e,{...r});if("function"==typeof e)return e.prototype instanceof o.Component?Object(o.createElement)(e,{size:t,...r}):e({size:t,...r});if(e&&("svg"===e.type||e.type===s.SVG)){const n={width:t,height:t,...e.props,...r};return Object(o.createElement)(s.SVG,n)}return Object(o.isValidElement)(e)?Object(o.cloneElement)(e,{size:t,...r}):e}},function(e,t,r){"use strict";var n=r(4),o=r.n(n),s=r(0);t.a=Object(s.forwardRef)((function({as:e="div",className:t,...r},n){return function({as:e="div",...t}){return"function"==typeof t.children?t.children(t):Object(s.createElement)(e,t)}({as:e,className:o()("components-visually-hidden",t),...r,ref:n})}))},,function(e,t,r){"use strict";r.d(t,"n",(function(){return s})),r.d(t,"l",(function(){return c})),r.d(t,"k",(function(){return a})),r.d(t,"m",(function(){return i})),r.d(t,"i",(function(){return l})),r.d(t,"d",(function(){return u})),r.d(t,"f",(function(){return d})),r.d(t,"j",(function(){return p})),r.d(t,"c",(function(){return m})),r.d(t,"e",(function(){return f})),r.d(t,"g",(function(){return h})),r.d(t,"a",(function(){return b})),r.d(t,"h",(function(){return g})),r.d(t,"b",(function(){return E}));var n,o=r(2);const s=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),c=s.pluginUrl+"images/",a=s.pluginUrl+"build/",i=s.buildPhase,l=null===(n=o.STORE_PAGES.shop)||void 0===n?void 0:n.permalink,u=(o.STORE_PAGES.checkout.id,o.STORE_PAGES.checkout.permalink),d=o.STORE_PAGES.privacy.permalink,p=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),m=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id,o.STORE_PAGES.cart.permalink),f=o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),h=Object(o.getSetting)("shippingCountries",{}),b=Object(o.getSetting)("allowedCountries",{}),g=Object(o.getSetting)("shippingStates",{}),E=Object(o.getSetting)("allowedStates",{})},function(e,t,r){"use strict";var n=r(2),o=r(1),s=r(69),c=r(52);const a=Object(n.getSetting)("countryLocale",{}),i=e=>{const t={};return void 0!==e.label&&(t.label=e.label),void 0!==e.required&&(t.required=e.required),void 0!==e.hidden&&(t.hidden=e.hidden),void 0===e.label||e.optionalLabel||(t.optionalLabel=Object(o.sprintf)(
2
  /* translators: %s Field label. */
3
  Object(o.__)("%s (optional)","woocommerce"),e.label)),e.priority&&(Object(s.a)(e.priority)&&(t.index=e.priority),Object(c.a)(e.priority)&&(t.index=parseInt(e.priority,10))),e.hidden&&(t.required=!1),t},l=Object.entries(a).map(e=>{let[t,r]=e;return[t,Object.entries(r).map(e=>{let[t,r]=e;return[t,i(r)]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{})]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{});t.a=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";const o=r&&void 0!==l[r]?l[r]:{};return e.map(e=>({key:e,...n.defaultAddressFields[e]||{},...o[e]||{},...t[e]||{}})).sort((e,t)=>e.index-t.index)}},function(e,t,r){"use strict";r.d(t,"b",(function(){return c})),r.d(t,"a",(function(){return a}));var n=r(0),o=r(65);const s=Object(n.createContext)({isInitialized:!1,billingData:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",email:"",phone:""},shippingAddress:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},setBillingData:()=>{},setShippingAddress:()=>{}}),c=()=>Object(n.useContext)(s),a=e=>{let{children:t}=e;const r=Object(o.a)();return Object(n.createElement)(s.Provider,{value:r},t)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t,r){var o=this,s=Object(n.useRef)(null),c=Object(n.useRef)(0),a=Object(n.useRef)(null),i=Object(n.useRef)([]),l=Object(n.useRef)(),u=Object(n.useRef)(),d=Object(n.useRef)(e),p=Object(n.useRef)(!0);d.current=e;var m=!t&&0!==t&&"undefined"!=typeof window;if("function"!=typeof e)throw new TypeError("Expected a function");t=+t||0;var f=!!(r=r||{}).leading,h=!("trailing"in r)||!!r.trailing,b="maxWait"in r,g=b?Math.max(+r.maxWait||0,t):null;return Object(n.useEffect)((function(){return p.current=!0,function(){p.current=!1}}),[]),Object(n.useMemo)((function(){var e=function(e){var t=i.current,r=l.current;return i.current=l.current=null,c.current=e,u.current=d.current.apply(r,t)},r=function(e,t){m&&cancelAnimationFrame(a.current),a.current=m?requestAnimationFrame(e):setTimeout(e,t)},n=function(e){if(!p.current)return!1;var r=e-s.current,n=e-c.current;return!s.current||r>=t||r<0||b&&n>=g},E=function(t){return a.current=null,h&&i.current?e(t):(i.current=l.current=null,u.current)},y=function(){var e=Date.now();if(n(e))return E(e);if(p.current){var o=e-s.current,a=e-c.current,i=t-o,l=b?Math.min(i,g-a):i;r(y,l)}},O=function(){for(var d=[],m=0;m<arguments.length;m++)d[m]=arguments[m];var h=Date.now(),g=n(h);if(i.current=d,l.current=o,s.current=h,g){if(!a.current&&p.current)return c.current=s.current,r(y,t),f?e(s.current):u.current;if(b)return r(y,t),e(s.current)}return a.current||r(y,t),u.current};return O.cancel=function(){a.current&&(m?cancelAnimationFrame(a.current):clearTimeout(a.current)),c.current=0,i.current=s.current=l.current=a.current=null},O.isPending=function(){return!!a.current},O.flush=function(){return a.current?E(Date.now()):u.current},O}),[f,b,t,g,h,m])}},function(e,t,r){"use strict";r.d(t,"a",(function(){return l}));var n=r(11),o=r.n(n),s=r(0),c=r(16);const a=[".wp-block-woocommerce-cart"],i=e=>{let{Block:t,containers:r,getProps:n=(()=>({})),getErrorBoundaryProps:a=(()=>({}))}=e;0!==r.length&&Array.prototype.forEach.call(r,(e,r)=>{const i=n(e,r),l=a(e,r),u={...e.dataset,...i.attributes||{}};(e=>{let{Block:t,container:r,attributes:n={},props:a={},errorBoundaryProps:i={}}=e;Object(s.render)(Object(s.createElement)(c.a,i,Object(s.createElement)(s.Suspense,{fallback:Object(s.createElement)("div",{className:"wc-block-placeholder"})},t&&Object(s.createElement)(t,o()({},a,{attributes:n})))),r,()=>{r.classList&&r.classList.remove("is-loading")})})({Block:t,container:e,props:i,attributes:u,errorBoundaryProps:l})})},l=e=>{const t=document.body.querySelectorAll(a.join(",")),{Block:r,getProps:n,getErrorBoundaryProps:o,selector:s}=e;(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrappers:s}=e;const c=document.body.querySelectorAll(o);s&&s.length>0&&Array.prototype.filter.call(c,e=>!((e,t)=>Array.prototype.some.call(t,t=>t.contains(e)&&!t.isSameNode(e)))(e,s)),i({Block:t,containers:c,getProps:r,getErrorBoundaryProps:n})})({Block:r,getProps:n,getErrorBoundaryProps:o,selector:s,wrappers:t}),Array.prototype.forEach.call(t,t=>{t.addEventListener("wc-blocks_render_blocks_frontend",()=>{(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrapper:s}=e;const c=s.querySelectorAll(o);i({Block:t,containers:c,getProps:r,getErrorBoundaryProps:n})})({...e,wrapper:t})})})}},,function(e,t,r){"use strict";var n=r(8),o=r(0),s=r(4),c=r.n(s),a=r(6),i=r(32),l=r.n(i),u=r(13),d=r(51),p=r(93),m=r(1);function f(e,t,r){const{defaultView:n}=t,{frameElement:o}=n;if(!o||t===r.ownerDocument)return e;const s=o.getBoundingClientRect();return new n.DOMRect(e.left+s.left,e.top+s.top,e.width,e.height)}let h=0;function b(e){const t=document.scrollingElement||document.body;e&&(h=t.scrollTop);const r=e?"add":"remove";t.classList[r]("lockscroll"),document.documentElement.classList[r]("lockscroll"),e||(t.scrollTop=h)}let g=0;function E(){return Object(o.useEffect)(()=>(0===g&&b(!0),++g,()=>{1===g&&b(!1),--g}),[]),null}var y=r(24);function O(e){const t=Object(o.useContext)(y.a),r=t.slots[e]||{},n=t.fills[e],s=Object(o.useMemo)(()=>n||[],[n]);return{...r,updateSlot:Object(o.useCallback)(r=>{t.updateSlot(e,r)},[e,t.updateSlot]),unregisterSlot:Object(o.useCallback)(r=>{t.unregisterSlot(e,r)},[e,t.unregisterSlot]),fills:s,registerFill:Object(o.useCallback)(r=>{t.registerFill(e,r)},[e,t.registerFill]),unregisterFill:Object(o.useCallback)(r=>{t.unregisterFill(e,r)},[e,t.unregisterFill])}}var v=Object(o.createContext)({registerSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},getSlot:()=>{},getFills:()=>{},subscribe:()=>{}});function _({name:e,children:t,registerFill:r,unregisterFill:n}){const s=(e=>{const{getSlot:t,subscribe:r}=Object(o.useContext)(v),[n,s]=Object(o.useState)(t(e));return Object(o.useEffect)(()=>(s(t(e)),r(()=>{s(t(e))})),[e]),n})(e),c=Object(o.useRef)({name:e,children:t});return Object(o.useLayoutEffect)(()=>(r(e,c.current),()=>n(e,c.current)),[]),Object(o.useLayoutEffect)(()=>{c.current.children=t,s&&s.forceUpdate()},[t]),Object(o.useLayoutEffect)(()=>{e!==c.current.name&&(n(c.current.name,c.current),c.current.name=e,r(e,c.current))},[e]),s&&s.node?(Object(a.isFunction)(t)&&(t=t(s.props.fillProps)),Object(o.createPortal)(t,s.node)):null}var S=e=>Object(o.createElement)(v.Consumer,null,({registerFill:t,unregisterFill:r})=>Object(o.createElement)(_,Object(n.a)({},e,{registerFill:t,unregisterFill:r})));class k extends o.Component{constructor(){super(...arguments),this.isUnmounted=!1,this.bindNode=this.bindNode.bind(this)}componentDidMount(){const{registerSlot:e}=this.props;e(this.props.name,this)}componentWillUnmount(){const{unregisterSlot:e}=this.props;this.isUnmounted=!0,e(this.props.name,this)}componentDidUpdate(e){const{name:t,unregisterSlot:r,registerSlot:n}=this.props;e.name!==t&&(r(e.name),n(t,this))}bindNode(e){this.node=e}forceUpdate(){this.isUnmounted||super.forceUpdate()}render(){const{children:e,name:t,fillProps:r={},getFills:n}=this.props,s=Object(a.map)(n(t,this),e=>{const t=Object(a.isFunction)(e.children)?e.children(r):e.children;return o.Children.map(t,(e,t)=>{if(!e||Object(a.isString)(e))return e;const r=e.key||t;return Object(o.cloneElement)(e,{key:r})})}).filter(Object(a.negate)(o.isEmptyElement));return Object(o.createElement)(o.Fragment,null,Object(a.isFunction)(e)?e(s):s)}}var w=e=>Object(o.createElement)(v.Consumer,null,({registerSlot:t,unregisterSlot:r,getFills:s})=>Object(o.createElement)(k,Object(n.a)({},e,{registerSlot:t,unregisterSlot:r,getFills:s})));function j(){const[,e]=Object(o.useState)({}),t=Object(o.useRef)(!0);return Object(o.useEffect)(()=>()=>{t.current=!1},[]),()=>{t.current&&e({})}}function C({name:e,children:t}){const r=O(e),n=Object(o.useRef)({rerender:j()});return Object(o.useEffect)(()=>(r.registerFill(n),()=>{r.unregisterFill(n)}),[r.registerFill,r.unregisterFill]),r.ref&&r.ref.current?("function"==typeof t&&(t=t(r.fillProps)),Object(o.createPortal)(t,r.ref.current)):null}var R=Object(o.forwardRef)((function({name:e,fillProps:t={},as:r="div",...s},c){const a=Object(o.useContext)(y.a),i=Object(o.useRef)();return Object(o.useLayoutEffect)(()=>(a.registerSlot(e,i,t),()=>{a.unregisterSlot(e,i)}),[a.registerSlot,a.unregisterSlot,e]),Object(o.useLayoutEffect)(()=>{a.updateSlot(e,t)}),Object(o.createElement)(r,Object(n.a)({ref:Object(u.useMergeRefs)([c,i])},s))}));function T(e){return Object(o.createElement)(o.Fragment,null,Object(o.createElement)(S,e),Object(o.createElement)(C,e))}r(12),o.Component;const x=Object(o.forwardRef)(({bubblesVirtually:e,...t},r)=>e?Object(o.createElement)(R,Object(n.a)({},t,{ref:r})):Object(o.createElement)(w,t));function A(e){return"appear"===e?"top":"left"}function P(e,t){const{paddingTop:r,paddingBottom:n,paddingLeft:o,paddingRight:s}=(c=t).ownerDocument.defaultView.getComputedStyle(c);var c;const a=r?parseInt(r,10):0,i=n?parseInt(n,10):0,l=o?parseInt(o,10):0,u=s?parseInt(s,10):0;return{x:e.left+l,y:e.top+a,width:e.width-l-u,height:e.height-a-i,left:e.left+l,right:e.right-u,top:e.top+a,bottom:e.bottom-i}}function N(e,t,r){r?e.getAttribute(t)!==r&&e.setAttribute(t,r):e.hasAttribute(t)&&e.removeAttribute(t)}function M(e,t,r=""){e.style[t]!==r&&(e.style[t]=r)}function I(e,t,r){r?e.classList.contains(t)||e.classList.add(t):e.classList.contains(t)&&e.classList.remove(t)}const D=Object(o.forwardRef)(({headerTitle:e,onClose:t,children:r,className:s,noArrow:a=!0,isAlternate:i,position:h="bottom right",range:b,focusOnMount:g="firstElement",anchorRef:y,shouldAnchorIncludePadding:v,anchorRect:_,getAnchorRect:S,expandOnMobile:k,animate:w=!0,onClickOutside:j,onFocusOutside:C,__unstableStickyBoundaryElement:R,__unstableSlotName:x="Popover",__unstableObserveElement:D,__unstableBoundaryParent:L,__unstableForcePosition:F,__unstableForceXAlignment:U,...V},B)=>{const H=Object(o.useRef)(null),z=Object(o.useRef)(null),G=Object(o.useRef)(),Y=Object(u.useViewportMatch)("medium","<"),[q,K]=Object(o.useState)(),$=O(x),X=k&&Y,[J,Q]=Object(u.useResizeObserver)();a=X||a,Object(o.useLayoutEffect)(()=>{if(X)return I(G.current,"is-without-arrow",a),I(G.current,"is-alternate",i),N(G.current,"data-x-axis"),N(G.current,"data-y-axis"),M(G.current,"top"),M(G.current,"left"),M(z.current,"maxHeight"),void M(z.current,"maxWidth");const e=()=>{if(!G.current||!z.current)return;let e=function(e,t,r,n=!1,o,s){if(t)return t;if(r){if(!e.current)return;const t=r(e.current);return f(t,t.ownerDocument||e.current.ownerDocument,s)}if(!1!==n){if(!(n&&window.Range&&window.Element&&window.DOMRect))return;if("function"==typeof(null==n?void 0:n.cloneRange))return f(Object(d.getRectangleFromRange)(n),n.endContainer.ownerDocument,s);if("function"==typeof(null==n?void 0:n.getBoundingClientRect)){const e=f(n.getBoundingClientRect(),n.ownerDocument,s);return o?e:P(e,n)}const{top:e,bottom:t}=n,r=e.getBoundingClientRect(),c=t.getBoundingClientRect(),a=f(new window.DOMRect(r.left,r.top,r.width,c.bottom-r.top),e.ownerDocument,s);return o?a:P(a,n)}if(!e.current)return;const{parentNode:c}=e.current,a=c.getBoundingClientRect();return o?a:P(a,c)}(H,_,S,y,v,G.current);if(!e)return;const{offsetParent:t,ownerDocument:r}=G.current;let n,o=0;if(t&&t!==r.body){const r=t.getBoundingClientRect();o=r.top,e=new window.DOMRect(e.left-r.left,e.top-r.top,e.width,e.height)}var s;L&&(n=null===(s=G.current.closest(".popover-slot"))||void 0===s?void 0:s.parentNode);const c=Q.height?Q:z.current.getBoundingClientRect(),{popoverTop:l,popoverLeft:u,xAxis:p,yAxis:b,contentHeight:g,contentWidth:E}=function(e,t,r="top",n,o,s,c,a,i){const[l,u="center",d]=r.split(" "),p=function(e,t,r,n,o,s,c,a){const{height:i}=t;if(o){const t=o.getBoundingClientRect().top+i-c;if(e.top<=t)return{yAxis:r,popoverTop:Math.min(e.bottom,t)}}let l=e.top+e.height/2;"bottom"===n?l=e.bottom:"top"===n&&(l=e.top);const u={popoverTop:l,contentHeight:(l-i/2>0?i/2:l)+(l+i/2>window.innerHeight?window.innerHeight-l:i/2)},d={popoverTop:e.top,contentHeight:e.top-10-i>0?i:e.top-10},p={popoverTop:e.bottom,contentHeight:e.bottom+10+i>window.innerHeight?window.innerHeight-10-e.bottom:i};let m,f=r,h=null;if(!o&&!a)if("middle"===r&&u.contentHeight===i)f="middle";else if("top"===r&&d.contentHeight===i)f="top";else if("bottom"===r&&p.contentHeight===i)f="bottom";else{f=d.contentHeight>p.contentHeight?"top":"bottom";const e="top"===f?d.contentHeight:p.contentHeight;h=e!==i?e:null}return m="middle"===f?u.popoverTop:"top"===f?d.popoverTop:p.popoverTop,{yAxis:f,popoverTop:m,contentHeight:h}}(e,t,l,d,n,0,s,a);return{...function(e,t,r,n,o,s,c,a,i){const{width:l}=t;"left"===r&&Object(m.isRTL)()?r="right":"right"===r&&Object(m.isRTL)()&&(r="left"),"left"===n&&Object(m.isRTL)()?n="right":"right"===n&&Object(m.isRTL)()&&(n="left");const u=Math.round(e.left+e.width/2),d={popoverLeft:u,contentWidth:(u-l/2>0?l/2:u)+(u+l/2>window.innerWidth?window.innerWidth-u:l/2)};let p=e.left;"right"===n?p=e.right:"middle"===s||i||(p=u);let f=e.right;"left"===n?f=e.left:"middle"===s||i||(f=u);const h={popoverLeft:p,contentWidth:p-l>0?l:p},b={popoverLeft:f,contentWidth:f+l>window.innerWidth?window.innerWidth-f:l};let g,E=r,y=null;if(!o&&!a)if("center"===r&&d.contentWidth===l)E="center";else if("left"===r&&h.contentWidth===l)E="left";else if("right"===r&&b.contentWidth===l)E="right";else{E=h.contentWidth>b.contentWidth?"left":"right";const e="left"===E?h.contentWidth:b.contentWidth;l>window.innerWidth&&(y=window.innerWidth),e!==l&&(E="center",d.popoverLeft=window.innerWidth/2)}if(g="center"===E?d.popoverLeft:"left"===E?h.popoverLeft:b.popoverLeft,c){const e=c.getBoundingClientRect();g=Math.min(g,e.right-l),Object(m.isRTL)()||(g=Math.max(g,0))}return{xAxis:E,popoverLeft:g,contentWidth:y}}(e,t,u,d,n,p.yAxis,c,a,i),...p}}(e,c,h,R,G.current,o,n,F,U);"number"==typeof l&&"number"==typeof u&&(M(G.current,"top",l+"px"),M(G.current,"left",u+"px")),I(G.current,"is-without-arrow",a||"center"===p&&"middle"===b),I(G.current,"is-alternate",i),N(G.current,"data-x-axis",p),N(G.current,"data-y-axis",b),M(z.current,"maxHeight","number"==typeof g?g+"px":""),M(z.current,"maxWidth","number"==typeof E?E+"px":""),K(({left:"right",right:"left"}[p]||"center")+" "+({top:"bottom",bottom:"top"}[b]||"middle"))};e();const{ownerDocument:t}=G.current,{defaultView:r}=t,n=r.setInterval(e,500);let o;const s=()=>{r.cancelAnimationFrame(o),o=r.requestAnimationFrame(e)};r.addEventListener("click",s),r.addEventListener("resize",e),r.addEventListener("scroll",e,!0);const c=function(e){if(e)return e.endContainer?e.endContainer.ownerDocument:e.top?e.top.ownerDocument:e.ownerDocument}(y);let l;return c&&c!==t&&(c.defaultView.addEventListener("resize",e),c.defaultView.addEventListener("scroll",e,!0)),D&&(l=new r.MutationObserver(e),l.observe(D,{attributes:!0})),()=>{r.clearInterval(n),r.removeEventListener("resize",e),r.removeEventListener("scroll",e,!0),r.removeEventListener("click",s),r.cancelAnimationFrame(o),c&&c!==t&&(c.defaultView.removeEventListener("resize",e),c.defaultView.removeEventListener("scroll",e,!0)),l&&l.disconnect()}},[X,_,S,y,v,h,Q,R,D,L]);const Z=(e,r)=>{if("focus-outside"===e&&C)C(r);else if("focus-outside"===e&&j){const e=new window.MouseEvent("click");Object.defineProperty(e,"target",{get:()=>r.relatedTarget}),l()("Popover onClickOutside prop",{since:"5.3",alternative:"onFocusOutside"}),j(e)}else t&&t()},[ee,te]=Object(u.__experimentalUseDialog)({focusOnMount:g,__unstableOnClose:Z,onClose:Z}),re=Object(u.useMergeRefs)([G,ee,B]),ne=Boolean(w&&q)&&function(e){if("loading"===e.type)return c()("components-animate__loading");const{type:t,origin:r=A(t)}=e;if("appear"===t){const[e,t="center"]=r.split(" ");return c()("components-animate__appear",{["is-from-"+t]:"center"!==t,["is-from-"+e]:"middle"!==e})}return"slide-in"===t?c()("components-animate__slide-in","is-from-"+r):void 0}({type:"appear",origin:q});let oe=Object(o.createElement)("div",Object(n.a)({className:c()("components-popover",s,ne,{"is-expanded":X,"is-without-arrow":a,"is-alternate":i})},V,{ref:re},te,{tabIndex:"-1"}),X&&Object(o.createElement)(E,null),X&&Object(o.createElement)("div",{className:"components-popover__header"},Object(o.createElement)("span",{className:"components-popover__header-title"},e),Object(o.createElement)(W,{className:"components-popover__close",icon:p.a,onClick:t})),Object(o.createElement)("div",{ref:z,className:"components-popover__content"},Object(o.createElement)("div",{style:{position:"relative"}},J,r)));return $.ref&&(oe=Object(o.createElement)(T,{name:x},oe)),y||_?oe:Object(o.createElement)("span",{ref:H},oe)});D.Slot=Object(o.forwardRef)((function({name:e="Popover"},t){return Object(o.createElement)(x,{bubblesVirtually:!0,name:e,className:"popover-slot",ref:t})}));var L=D,F=function({shortcut:e,className:t}){if(!e)return null;let r,n;return Object(a.isString)(e)&&(r=e),Object(a.isObject)(e)&&(r=e.display,n=e.ariaLabel),Object(o.createElement)("span",{className:t,"aria-label":n},r)};const U=Object(o.createElement)("div",{className:"event-catcher"}),V=({eventHandlers:e,child:t,childrenWithPopover:r})=>Object(o.cloneElement)(Object(o.createElement)("span",{className:"disabled-element-wrapper"},Object(o.cloneElement)(U,e),Object(o.cloneElement)(t,{children:r}),","),e),B=({child:e,eventHandlers:t,childrenWithPopover:r})=>Object(o.cloneElement)(e,{...t,children:r}),H=(e,t,r)=>{if(1!==o.Children.count(e))return;const n=o.Children.only(e);"function"==typeof n.props[t]&&n.props[t](r)};var z=function({children:e,position:t,text:r,shortcut:n}){const[s,c]=Object(o.useState)(!1),[i,l]=Object(o.useState)(!1),d=Object(u.useDebounce)(l,700),p=t=>{H(e,"onMouseDown",t),document.addEventListener("mouseup",h),c(!0)},m=t=>{H(e,"onMouseUp",t),document.removeEventListener("mouseup",h),c(!1)},f=e=>"mouseUp"===e?m:"mouseDown"===e?p:void 0,h=f("mouseUp"),b=(t,r)=>n=>{if(H(e,t,n),n.currentTarget.disabled)return;if("focus"===n.type&&s)return;d.cancel();const o=Object(a.includes)(["focus","mouseenter"],n.type);o!==i&&(r?d(o):l(o))},g=()=>{d.cancel(),document.removeEventListener("mouseup",h)};if(Object(o.useEffect)(()=>g,[]),1!==o.Children.count(e))return e;const E={onMouseEnter:b("onMouseEnter",!0),onMouseLeave:b("onMouseLeave"),onClick:b("onClick"),onFocus:b("onFocus"),onBlur:b("onBlur"),onMouseDown:f("mouseDown")},y=o.Children.only(e),{children:O,disabled:v}=y.props;return(v?V:B)({child:y,eventHandlers:E,childrenWithPopover:(({grandchildren:e,isOver:t,position:r,text:n,shortcut:s})=>Object(o.concatChildren)(e,t&&Object(o.createElement)(L,{focusOnMount:!1,position:r,className:"components-tooltip","aria-hidden":"true",animate:!1,noArrow:!0},n,Object(o.createElement)(F,{className:"components-tooltip__shortcut",shortcut:s}))))({grandchildren:O,isOver:i,position:t,text:r,shortcut:n})})},G=r(41),Y=r(42);const q=["onMouseDown","onClick"];var W=t.a=Object(o.forwardRef)((function(e,t){const{href:r,target:s,isSmall:i,isPressed:u,isBusy:d,isDestructive:p,className:m,disabled:f,icon:h,iconPosition:b="left",iconSize:g,showTooltip:E,tooltipPosition:y,shortcut:O,label:v,children:_,text:S,variant:k,__experimentalIsFocusable:w,describedBy:j,...C}=function({isDefault:e,isPrimary:t,isSecondary:r,isTertiary:n,isLink:o,variant:s,...c}){let a=s;var i,u,d,p,m;return t&&(null!==(i=a)&&void 0!==i||(a="primary")),n&&(null!==(u=a)&&void 0!==u||(a="tertiary")),r&&(null!==(d=a)&&void 0!==d||(a="secondary")),e&&(l()("Button isDefault prop",{since:"5.4",alternative:'variant="secondary"'}),null!==(p=a)&&void 0!==p||(a="secondary")),o&&(null!==(m=a)&&void 0!==m||(a="link")),{...c,variant:a}}(e),R=c()("components-button",m,{"is-secondary":"secondary"===k,"is-primary":"primary"===k,"is-small":i,"is-tertiary":"tertiary"===k,"is-pressed":u,"is-busy":d,"is-link":"link"===k,"is-destructive":p,"has-text":!!h&&!!_,"has-icon":!!h}),T=f&&!w,x=void 0===r||T?"button":"a",A="a"===x?{href:r,target:s}:{type:"button",disabled:T,"aria-pressed":u};if(f&&w){A["aria-disabled"]=!0;for(const e of q)C[e]=e=>{e.stopPropagation(),e.preventDefault()}}const P=!T&&(E&&v||O||!!v&&(!_||Object(a.isArray)(_)&&!_.length)&&!1!==E),N=j?Object(a.uniqueId)():null,M=C["aria-describedby"]||N,I=Object(o.createElement)(x,Object(n.a)({},A,C,{className:R,"aria-label":C["aria-label"]||v,"aria-describedby":M,ref:t}),h&&"left"===b&&Object(o.createElement)(G.a,{icon:h,size:g}),S&&Object(o.createElement)(o.Fragment,null,S),h&&"right"===b&&Object(o.createElement)(G.a,{icon:h,size:g}),_);return P?Object(o.createElement)(o.Fragment,null,Object(o.createElement)(z,{text:j||v,shortcut:O,position:y},I),j&&Object(o.createElement)(Y.a,null,Object(o.createElement)("span",{id:N},j))):Object(o.createElement)(o.Fragment,null,I,j&&Object(o.createElement)(Y.a,null,Object(o.createElement)("span",{id:N},j)))}))},function(e,t){e.exports=window.wp.dom},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"string"==typeof e},,function(e,t,r){var n=r(80),o=r(55),s=o.setStyleProp,c=n.html,a=n.svg,i=n.isCustomAttribute,l=Object.prototype.hasOwnProperty;e.exports=function(e){var t,r,n,u;e=e||{};var d={};for(t in e)n=e[t],i(t)?d[t]=n:(r=t.toLowerCase(),l.call(c,r)?d[(u=c[r]).propertyName]=!!(u.hasBooleanValue||u.hasOverloadedBooleanValue&&!n)||n:l.call(a,t)?d[(u=a[t]).propertyName]=n:o.PRESERVE_CUSTOM_ATTRIBUTES&&(d[t]=n));return s(e.style,d),d}},function(e,t,r){var n=r(3),o=r(84).default,s={reactCompat:!0},c=n.version.split(".")[0]>=16;e.exports={PRESERVE_CUSTOM_ATTRIBUTES:c,invertObject:function(e,t){if(!e||"object"!=typeof e)throw new TypeError("First argument must be an object");var r,n,o="function"==typeof t,s={},c={};for(r in e)n=e[r],o&&(s=t(r,n))&&2===s.length?c[s[0]]=s[1]:"string"==typeof n&&(c[n]=r);return c},isCustomComponent:function(e,t){if(-1===e.indexOf("-"))return t&&"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}},setStyleProp:function(e,t){null!=e&&(t.style=o(e,s))}}},function(e,t,r){for(var n,o=r(90).CASE_SENSITIVE_TAG_NAMES,s={},c=0,a=o.length;c<a;c++)n=o[c],s[n.toLowerCase()]=n;function i(e){for(var t,r={},n=0,o=e.length;n<o;n++)r[(t=e[n]).name]=t.value;return r}function l(e){return function(e){return s[e]}(e=e.toLowerCase())||e}e.exports={formatAttributes:i,formatDOM:function e(t,r,n){r=r||null;for(var o,s,c,a=[],u=0,d=t.length;u<d;u++){switch(o=t[u],c={next:null,prev:a[u-1]||null,parent:r},(s=a[u-1])&&(s.next=c),"#"!==o.nodeName[0]&&(c.name=l(o.nodeName),c.attribs={},o.attributes&&o.attributes.length&&(c.attribs=i(o.attributes))),o.nodeType){case 1:"script"===c.name||"style"===c.name?c.type=c.name:c.type="tag",c.children=e(o.childNodes,c);break;case 3:c.type="text",c.data=o.nodeValue;break;case 8:c.type="comment",c.data=o.nodeValue}a.push(c)}return n&&(a.unshift({name:n.substring(0,n.indexOf(" ")).toLowerCase(),data:n,type:"directive",next:a[0]?a[0]:null,prev:null,parent:r}),a[1]&&(a[1].prev=a[0])),a},isIE:function(e){return e?document.documentMode===e:/(MSIE |Trident\/|Edge\/)/.test(navigator.userAgent)}}},function(e,t,r){"use strict";r.d(t,"b",(function(){return s})),r.d(t,"a",(function(){return c}));var n=r(0);const o=Object(n.createContext)({setIsSuppressed:e=>{},isSuppressed:!1}),s=()=>Object(n.useContext)(o),c=e=>{let{children:t}=e;const[r,s]=Object(n.useState)(!1),c={setIsSuppressed:s,isSuppressed:r};return Object(n.createElement)(o.Provider,{value:c},t)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t){const r=Object(n.useRef)();return Object(n.useEffect)(()=>{r.current===e||t&&!t(e,r.current)||(r.current=e)},[e,t]),r.current}},function(e,t,r){var n=r(79),o=r(54),s=r(88),c={decodeEntities:!0,lowerCaseAttributeNames:!1};function a(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");return""===e?[]:n(s(e,(t=t||{}).htmlparser2||c),t)}a.domToReact=n,a.htmlToDOM=s,a.attributesToProps=o,e.exports=a,e.exports.default=a},,function(e,t,r){"use strict";r.d(t,"a",(function(){return n})),r.d(t,"b",(function(){return o}));const n=e=>!(e=>null===e)(e)&&e instanceof Object&&e.constructor===Object;function o(e,t){return n(e)&&t in e}},,function(e,t){var r,n,o=e.exports={};function s(){throw new Error("setTimeout has not been defined")}function c(){throw new Error("clearTimeout has not been defined")}function a(e){if(r===setTimeout)return setTimeout(e,0);if((r===s||!r)&&setTimeout)return r=setTimeout,setTimeout(e,0);try{return r(e,0)}catch(t){try{return r.call(null,e,0)}catch(t){return r.call(this,e,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:s}catch(e){r=s}try{n="function"==typeof clearTimeout?clearTimeout:c}catch(e){n=c}}();var i,l=[],u=!1,d=-1;function p(){u&&i&&(u=!1,i.length?l=i.concat(l):d=-1,l.length&&m())}function m(){if(!u){var e=a(p);u=!0;for(var t=l.length;t;){for(i=l,l=[];++d<t;)i&&i[d].run();d=-1,t=l.length}i=null,u=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===c||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function f(e,t){this.fun=e,this.array=t}function h(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];l.push(new f(e,t)),1!==l.length||u||a(m)},f.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=h,o.addListener=h,o.once=h,o.off=h,o.removeListener=h,o.removeAllListeners=h,o.emit=h,o.prependListener=h,o.prependOnceListener=h,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},function(e,t,r){"use strict";r.d(t,"a",(function(){return u}));var n=r(5),o=r(7),s=r(0),c=r(12),a=r.n(c),i=r(61),l=r(67);const u=()=>{const{shippingRates:e,needsShipping:t,hasCalculatedShipping:r,isLoadingRates:c}=Object(o.useSelect)(e=>{const t=e(n.CART_STORE_KEY);return{shippingRates:t.getShippingRates(),needsShipping:t.getNeedsShipping(),hasCalculatedShipping:t.getHasCalculatedShipping(),isLoadingRates:t.isCustomerDataUpdating()}}),{isSelectingRate:u,selectShippingRate:d}=Object(l.a)(),p=Object(s.useRef)({});return Object(s.useEffect)(()=>{const t=(e=>Object.fromEntries(e.map(e=>{var t;let{package_id:r,shipping_rates:n}=e;return[r,null===(t=n.find(e=>e.selected))||void 0===t?void 0:t.rate_id]})))(e);Object(i.a)(t)&&!a()(p.current,t)&&(p.current=t)},[e]),{isSelectingRate:u,selectedRates:p.current,selectShippingRate:d,shippingRates:e,needsShipping:t,hasCalculatedShipping:r,isLoadingRates:c}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return s}));var n=r(7),o=r(5);const s=()=>{const{customerData:e,isInitialized:t}=Object(n.useSelect)(e=>{const t=e(o.CART_STORE_KEY);return{customerData:t.getCustomerData(),isInitialized:t.hasFinishedResolution("getCartData")}}),{setShippingAddress:r,setBillingData:s}=Object(n.useDispatch)(o.CART_STORE_KEY);return{isInitialized:t,billingData:e.billingData,shippingAddress:e.shippingAddress,setBillingData:s,setShippingAddress:r}}},function(e,t,r){"use strict";r.d(t,"b",(function(){return O})),r.d(t,"a",(function(){return v}));var n=r(0);const o={NONE:"none",INVALID_ADDRESS:"invalid_address",UNKNOWN:"unknown_error"},s={INVALID_COUNTRY:"woocommerce_rest_cart_shipping_rates_invalid_country",MISSING_COUNTRY:"woocommerce_rest_cart_shipping_rates_missing_country",INVALID_STATE:"woocommerce_rest_cart_shipping_rates_invalid_state"},c={shippingErrorStatus:{isPristine:!0,isValid:!1,hasInvalidAddress:!1,hasError:!1},dispatchErrorStatus:()=>null,shippingErrorTypes:o,shippingRates:[],isLoadingRates:!1,selectedRates:[],setSelectedRates:()=>null,shippingAddress:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:""},setShippingAddress:()=>null,onShippingRateSuccess:()=>null,onShippingRateFail:()=>null,onShippingRateSelectSuccess:()=>null,onShippingRateSelectFail:()=>null,needsShipping:!1},a=(e,t)=>{let{type:r}=t;return Object.values(o).includes(r)?r:e};var i=r(91),l=r(197);const u=e=>({onSuccess:Object(l.a)("shipping_rates_success",e),onFail:Object(l.a)("shipping_rates_fail",e),onSelectSuccess:Object(l.a)("shipping_rate_select_success",e),onSelectFail:Object(l.a)("shipping_rate_select_fail",e)});var d=r(199),p=r(34),m=r(31),f=r(67),h=r(64);const{NONE:b,INVALID_ADDRESS:g,UNKNOWN:E}=o,y=Object(n.createContext)(c),O=()=>Object(n.useContext)(y),v=e=>{let{children:t}=e;const{dispatchActions:r}=Object(p.b)(),{shippingRates:c,isLoadingRates:l,cartErrors:O}=Object(m.a)(),{isSelectingRate:v}=Object(f.a)(),{selectedRates:_}=Object(h.a)(),[S,k]=Object(n.useReducer)(a,b),[w,j]=Object(n.useReducer)(i.b,{}),C=Object(n.useRef)(w),R=Object(n.useMemo)(()=>({onShippingRateSuccess:u(j).onSuccess,onShippingRateFail:u(j).onFail,onShippingRateSelectSuccess:u(j).onSelectSuccess,onShippingRateSelectFail:u(j).onSelectFail}),[j]);Object(n.useEffect)(()=>{C.current=w},[w]),Object(n.useEffect)(()=>{l?r.incrementCalculating():r.decrementCalculating()},[l,r]),Object(n.useEffect)(()=>{v?r.incrementCalculating():r.decrementCalculating()},[v,r]),Object(n.useEffect)(()=>{O.length>0&&O.some(e=>!(!e.code||!Object.values(s).includes(e.code)))?k({type:g}):k({type:b})},[O]);const T=Object(n.useMemo)(()=>({isPristine:S===b,isValid:S===b,hasInvalidAddress:S===g,hasError:S===E||S===g}),[S]);Object(n.useEffect)(()=>{l||0!==c.length&&!T.hasError||Object(d.a)(C.current,"shipping_rates_fail",{hasInvalidAddress:T.hasInvalidAddress,hasError:T.hasError})},[c,l,T.hasError,T.hasInvalidAddress]),Object(n.useEffect)(()=>{!l&&c.length>0&&!T.hasError&&Object(d.a)(C.current,"shipping_rates_success",c)},[c,l,T.hasError]),Object(n.useEffect)(()=>{v||(T.hasError?Object(d.a)(C.current,"shipping_rate_select_fail",{hasError:T.hasError,hasInvalidAddress:T.hasInvalidAddress}):Object(d.a)(C.current,"shipping_rate_select_success",_.current))},[_,v,T.hasError,T.hasInvalidAddress]);const x={shippingErrorStatus:T,dispatchErrorStatus:k,shippingErrorTypes:o,...R};return Object(n.createElement)(n.Fragment,null,Object(n.createElement)(y.Provider,{value:x},t))}},function(e,t,r){"use strict";r.d(t,"a",(function(){return i}));var n=r(7),o=r(0),s=r(5),c=r(72),a=r(40);const i=()=>{const e=Object(c.a)(),{dispatchCheckoutEvent:t}=Object(a.a)(),{selectShippingRate:r}=Object(n.useDispatch)(s.CART_STORE_KEY);return{selectShippingRate:Object(o.useCallback)((n,o)=>{r(n,o).then(()=>{t("set-selected-shipping-rate",{shippingRateId:n})}).catch(t=>{e(t)})},[r,t,e]),isSelectingRate:Object(n.useSelect)(e=>e(s.CART_STORE_KEY).isShippingRateBeingSelected(),[])}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"d",(function(){return c})),r.d(t,"c",(function(){return a})),r.d(t,"b",(function(){return i}));const n=window.CustomEvent||null,o=(e,t)=>{let{bubbles:r=!1,cancelable:o=!1,element:s,detail:c={}}=t;if(!n)return;s||(s=document.body);const a=new n(e,{bubbles:r,cancelable:o,detail:c});s.dispatchEvent(a)};let s;const c=()=>{s&&clearTimeout(s),s=setTimeout(()=>{o("wc_fragment_refresh",{bubbles:!0,cancelable:!0})},50)},a=e=>{let{preserveCartData:t=!1}=e;o("wc-blocks_added_to_cart",{bubbles:!0,cancelable:!0,detail:{preserveCartData:t}})},i=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof jQuery)return()=>{};const s=()=>{o(t,{bubbles:r,cancelable:n})};return jQuery(document).on(e,s),()=>jQuery(document).off(e,s)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"number"==typeof e},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(0);const o=()=>{const[,e]=Object(n.useState)();return Object(n.useCallback)(t=>{e(()=>{throw t})},[])}},function(e,t,r){"use strict";var n=r(11),o=r.n(n),s=r(0);r(107);const c=e=>{if(!e)return;const t=e.getBoundingClientRect().bottom;t>=0&&t<=window.innerHeight||e.scrollIntoView()};t.a=e=>t=>{const r=Object(s.useRef)(null);return Object(s.createElement)(s.Fragment,null,Object(s.createElement)("div",{className:"with-scroll-to-top__scroll-point",ref:r,"aria-hidden":!0}),Object(s.createElement)(e,o()({},t,{scrollToTop:e=>{null!==r.current&&((e,t)=>{const{focusableSelector:r}=t||{};window&&Number.isFinite(window.innerHeight)&&(r?((e,t)=>{var r;const n=(null===(r=e.parentElement)||void 0===r?void 0:r.querySelectorAll(t))||[];if(n.length){const e=n[0];c(e),null==e||e.focus()}else c(e)})(e,r):c(e))})(r.current,e)}})))}},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"b",(function(){return s}));var n=r(7);const o=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0;const r=Object(n.select)("core/notices").getNotices(e);return r.some(e=>e.type===t)},s=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";const r=Object(n.select)("core/notices").getNotices(),{removeNotice:o}=Object(n.dispatch)("core/notices"),s=r.filter(t=>t.status===e);s.forEach(e=>o(e.id,t))}},function(e,t){},function(e,t,r){var n=r(3),o=r(54),s=r(55),c=s.setStyleProp;function a(e){return s.PRESERVE_CUSTOM_ATTRIBUTES&&"tag"===e.type&&s.isCustomComponent(e.name,e.attribs)}e.exports=function e(t,r){for(var s,i,l,u,d=(r=r||{}).library||n,p=d.cloneElement,m=d.createElement,f=d.isValidElement,h=[],b="function"==typeof r.replace,g=r.trim,E=0,y=t.length;E<y;E++)if(s=t[E],b&&f(i=r.replace(s)))y>1&&(i=p(i,{key:i.key||E})),h.push(i);else if("text"!==s.type){switch(l=s.attribs,a(s)?c(l.style,l):l&&(l=o(l)),u=null,s.type){case"script":case"style":s.children[0]&&(l.dangerouslySetInnerHTML={__html:s.children[0].data});break;case"tag":"textarea"===s.name&&s.children[0]?l.defaultValue=s.children[0].data:s.children&&s.children.length&&(u=e(s.children,r));break;default:continue}y>1&&(l.key=E),h.push(m(s.name,l,u))}else g?s.data.trim()&&h.push(s.data):h.push(s.data);return 1===h.length?h[0]:h}},function(e,t,r){var n=r(81),o=r(82),s=r(83),c=s.MUST_USE_PROPERTY,a=s.HAS_BOOLEAN_VALUE,i=s.HAS_NUMERIC_VALUE,l=s.HAS_POSITIVE_NUMERIC_VALUE,u=s.HAS_OVERLOADED_BOOLEAN_VALUE;function d(e,t){return(e&t)===t}function p(e,t,r){var n,o,s,p=e.Properties,m=e.DOMAttributeNames;for(o in p)n=m[o]||(r?o:o.toLowerCase()),s=p[o],t[n]={attributeName:n,propertyName:o,mustUseProperty:d(s,c),hasBooleanValue:d(s,a),hasNumericValue:d(s,i),hasPositiveNumericValue:d(s,l),hasOverloadedBooleanValue:d(s,u)}}var m={};p(n,m);var f={};p(o,f,!0);var h={};p(n,h),p(o,h,!0),e.exports={html:m,svg:f,properties:h,isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"))}},function(e,t){e.exports={Properties:{autoFocus:4,accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:4,allowTransparency:0,alt:0,as:0,async:4,autoComplete:0,autoPlay:4,capture:4,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:5,cite:0,classID:0,className:0,cols:24,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:4,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:4,defer:4,dir:0,disabled:4,download:32,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:4,formTarget:0,frameBorder:0,headers:0,height:0,hidden:4,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:4,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:5,muted:5,name:0,nonce:0,noValidate:4,open:4,optimum:0,pattern:0,placeholder:0,playsInline:4,poster:0,preload:0,profile:0,radioGroup:0,readOnly:4,referrerPolicy:0,rel:0,required:4,reversed:4,role:0,rows:24,rowSpan:8,sandbox:0,scope:0,scoped:4,scrolling:0,seamless:4,selected:5,shape:0,size:24,sizes:0,span:24,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:8,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:4,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"}}},function(e,t){e.exports={Properties:{accentHeight:0,accumulate:0,additive:0,alignmentBaseline:0,allowReorder:0,alphabetic:0,amplitude:0,arabicForm:0,ascent:0,attributeName:0,attributeType:0,autoReverse:0,azimuth:0,baseFrequency:0,baseProfile:0,baselineShift:0,bbox:0,begin:0,bias:0,by:0,calcMode:0,capHeight:0,clip:0,clipPath:0,clipRule:0,clipPathUnits:0,colorInterpolation:0,colorInterpolationFilters:0,colorProfile:0,colorRendering:0,contentScriptType:0,contentStyleType:0,cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:0,direction:0,display:0,divisor:0,dominantBaseline:0,dur:0,dx:0,dy:0,edgeMode:0,elevation:0,enableBackground:0,end:0,exponent:0,externalResourcesRequired:0,fill:0,fillOpacity:0,fillRule:0,filter:0,filterRes:0,filterUnits:0,floodColor:0,floodOpacity:0,focusable:0,fontFamily:0,fontSize:0,fontSizeAdjust:0,fontStretch:0,fontStyle:0,fontVariant:0,fontWeight:0,format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:0,glyphOrientationHorizontal:0,glyphOrientationVertical:0,glyphRef:0,gradientTransform:0,gradientUnits:0,hanging:0,horizAdvX:0,horizOriginX:0,ideographic:0,imageRendering:0,in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:0,kernelUnitLength:0,kerning:0,keyPoints:0,keySplines:0,keyTimes:0,lengthAdjust:0,letterSpacing:0,lightingColor:0,limitingConeAngle:0,local:0,markerEnd:0,markerMid:0,markerStart:0,markerHeight:0,markerUnits:0,markerWidth:0,mask:0,maskContentUnits:0,maskUnits:0,mathematical:0,mode:0,numOctaves:0,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:0,overlineThickness:0,paintOrder:0,panose1:0,pathLength:0,patternContentUnits:0,patternTransform:0,patternUnits:0,pointerEvents:0,points:0,pointsAtX:0,pointsAtY:0,pointsAtZ:0,preserveAlpha:0,preserveAspectRatio:0,primitiveUnits:0,r:0,radius:0,refX:0,refY:0,renderingIntent:0,repeatCount:0,repeatDur:0,requiredExtensions:0,requiredFeatures:0,restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:0,slope:0,spacing:0,specularConstant:0,specularExponent:0,speed:0,spreadMethod:0,startOffset:0,stdDeviation:0,stemh:0,stemv:0,stitchTiles:0,stopColor:0,stopOpacity:0,strikethroughPosition:0,strikethroughThickness:0,string:0,stroke:0,strokeDasharray:0,strokeDashoffset:0,strokeLinecap:0,strokeLinejoin:0,strokeMiterlimit:0,strokeOpacity:0,strokeWidth:0,surfaceScale:0,systemLanguage:0,tableValues:0,targetX:0,targetY:0,textAnchor:0,textDecoration:0,textRendering:0,textLength:0,to:0,transform:0,u1:0,u2:0,underlinePosition:0,underlineThickness:0,unicode:0,unicodeBidi:0,unicodeRange:0,unitsPerEm:0,vAlphabetic:0,vHanging:0,vIdeographic:0,vMathematical:0,values:0,vectorEffect:0,version:0,vertAdvY:0,vertOriginX:0,vertOriginY:0,viewBox:0,viewTarget:0,visibility:0,widths:0,wordSpacing:0,writingMode:0,x:0,xHeight:0,x1:0,x2:0,xChannelSelector:0,xlinkActuate:0,xlinkArcrole:0,xlinkHref:0,xlinkRole:0,xlinkShow:0,xlinkTitle:0,xlinkType:0,xmlBase:0,xmlns:0,xmlnsXlink:0,xmlLang:0,xmlSpace:0,y:0,y1:0,y2:0,yChannelSelector:0,z:0,zoomAndPan:0},DOMAttributeNames:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space"}}},function(e,t){e.exports={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32}},function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};t.__esModule=!0;var o=n(r(85)),s=r(87);t.default=function(e,t){var r={};return e&&"string"==typeof e?(o.default(e,(function(e,n){e&&n&&(r[s.camelCase(e,t)]=n)})),r):r}},function(e,t,r){var n=r(86);e.exports=function(e,t){var r,o=null;if(!e||"string"!=typeof e)return o;for(var s,c,a=n(e),i="function"==typeof t,l=0,u=a.length;l<u;l++)s=(r=a[l]).property,c=r.value,i?t(s,c,r):c&&(o||(o={}),o[s]=c);return o}},function(e,t){var r=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,n=/\n/g,o=/^\s*/,s=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,c=/^:\s*/,a=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,i=/^[;\s]*/,l=/^\s+|\s+$/g;function u(e){return e?e.replace(l,""):""}e.exports=function(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];t=t||{};var l=1,d=1;function p(e){var t=e.match(n);t&&(l+=t.length);var r=e.lastIndexOf("\n");d=~r?e.length-r:d+e.length}function m(){var e={line:l,column:d};return function(t){return t.position=new f(e),E(),t}}function f(e){this.start=e,this.end={line:l,column:d},this.source=t.source}f.prototype.content=e;var h=[];function b(r){var n=new Error(t.source+":"+l+":"+d+": "+r);if(n.reason=r,n.filename=t.source,n.line=l,n.column=d,n.source=e,!t.silent)throw n;h.push(n)}function g(t){var r=t.exec(e);if(r){var n=r[0];return p(n),e=e.slice(n.length),r}}function E(){g(o)}function y(e){var t;for(e=e||[];t=O();)!1!==t&&e.push(t);return e}function O(){var t=m();if("/"==e.charAt(0)&&"*"==e.charAt(1)){for(var r=2;""!=e.charAt(r)&&("*"!=e.charAt(r)||"/"!=e.charAt(r+1));)++r;if(r+=2,""===e.charAt(r-1))return b("End of comment missing");var n=e.slice(2,r-2);return d+=2,p(n),e=e.slice(r),d+=2,t({type:"comment",comment:n})}}function v(){var e=m(),t=g(s);if(t){if(O(),!g(c))return b("property missing ':'");var n=g(a),o=e({type:"declaration",property:u(t[0].replace(r,"")),value:n?u(n[0].replace(r,"")):""});return g(i),o}}return E(),function(){var e,t=[];for(y(t);e=v();)!1!==e&&(t.push(e),y(t));return t}()}},function(e,t,r){"use strict";t.__esModule=!0,t.camelCase=void 0;var n=/^--[a-zA-Z0-9-]+$/,o=/-([a-z])/g,s=/^[^-]+$/,c=/^-(webkit|moz|ms|o|khtml)-/,a=function(e,t){return t.toUpperCase()},i=function(e,t){return t+"-"};t.camelCase=function(e,t){return void 0===t&&(t={}),function(e){return!e||s.test(e)||n.test(e)}(e)?e:(e=e.toLowerCase(),t.reactCompat||(e=e.replace(c,i)),e.replace(o,a))}},function(e,t,r){var n=r(89),o=r(56),s=o.formatDOM,c=o.isIE(9),a=/<(![a-zA-Z\s]+)>/;e.exports=function(e){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];var t,r=e.match(a);return r&&r[1]&&(t=r[1],c&&(e=e.replace(r[0],""))),s(n(e),null,t)}},function(e,t,r){var n=r(56),o=/<([a-zA-Z]+[0-9]?)/,s=/<head.*>/i,c=/<body.*>/i,a=/<(area|base|br|col|embed|hr|img|input|keygen|link|menuitem|meta|param|source|track|wbr)(.*?)\/?>/gi,i=n.isIE(9),l=i||n.isIE(),u=function(){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},d=function(){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")};if("function"==typeof window.DOMParser){var p=new window.DOMParser,m=i?"text/xml":"text/html";u=d=function(e,t){return t&&(e="<"+t+">"+e+"</"+t+">"),i&&(e=e.replace(a,"<$1$2$3/>")),p.parseFromString(e,m)}}if(document.implementation){var f=document.implementation.createHTMLDocument(l?"html-dom-parser":void 0);u=function(e,t){if(t)return f.documentElement.getElementsByTagName(t)[0].innerHTML=e,f;try{return f.documentElement.innerHTML=e,f}catch(t){if(d)return d(e)}}}var h,b=document.createElement("template");b.content&&(h=function(e){return b.innerHTML=e,b.content.childNodes}),e.exports=function(e){var t,r,n,a,i=e.match(o);switch(i&&i[1]&&(t=i[1].toLowerCase()),t){case"html":return r=d(e),s.test(e)||(n=r.getElementsByTagName("head")[0])&&n.parentNode.removeChild(n),c.test(e)||(n=r.getElementsByTagName("body")[0])&&n.parentNode.removeChild(n),r.getElementsByTagName("html");case"head":case"body":return a=u(e).getElementsByTagName(t),c.test(e)&&s.test(e)?a[0].parentNode.childNodes:a;default:return h?h(e):u(e,"body").getElementsByTagName("body")[0].childNodes}}},function(e,t){e.exports={CASE_SENSITIVE_TAG_NAMES:["animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussainBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","linearGradient","radialGradient","textPath"]}},function(e,t,r){"use strict";r.d(t,"a",(function(){return s})),r.d(t,"b",(function(){return a}));var n=r(6);let o;!function(e){e.ADD_EVENT_CALLBACK="add_event_callback",e.REMOVE_EVENT_CALLBACK="remove_event_callback"}(o||(o={}));const s={addEventCallback:function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10;return{id:Object(n.uniqueId)(),type:o.ADD_EVENT_CALLBACK,eventType:e,callback:t,priority:r}},removeEventCallback:(e,t)=>({id:t,type:o.REMOVE_EVENT_CALLBACK,eventType:e})},c={},a=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:c,{type:t,eventType:r,id:n,callback:s,priority:a}=arguments.length>1?arguments[1]:void 0;const i=e.hasOwnProperty(r)?new Map(e[r]):new Map;switch(t){case o.ADD_EVENT_CALLBACK:return i.set(n,{priority:a,callback:s}),{...e,[r]:i};case o.REMOVE_EVENT_CALLBACK:return i.delete(n),{...e,[r]:i}}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return s})),r.d(t,"b",(function(){return c}));var n=r(1),o=r(18);const s=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},c=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(o.decodeEntities)(e.message):Object(n.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},function(e,t,r){"use strict";var n=r(0),o=r(15);const s=Object(n.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(n.createElement)(o.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));t.a=s},function(e,t,r){"use strict";var n=r(0),o=r(6),s=r(4),c=r.n(s),a=r(1),i=r(20),l=r(93),u=r(50);function d(e){switch(e){case"success":case"warning":case"info":return"polite";case"error":default:return"assertive"}}t.a=function({className:e,status:t="info",children:r,spokenMessage:s=r,onRemove:p=o.noop,isDismissible:m=!0,actions:f=[],politeness:h=d(t),__unstableHTML:b,onDismiss:g=o.noop}){!function(e,t){const r="string"==typeof e?e:Object(n.renderToString)(e);Object(n.useEffect)(()=>{r&&Object(i.speak)(r,t)},[r,t])}(s,h);const E=c()(e,"components-notice","is-"+t,{"is-dismissible":m});return b&&(r=Object(n.createElement)(n.RawHTML,null,r)),Object(n.createElement)("div",{className:E},Object(n.createElement)("div",{className:"components-notice__content"},r,Object(n.createElement)("div",{className:"components-notice__actions"},f.map(({className:e,label:t,isPrimary:r,variant:o,noDefaultClasses:s=!1,onClick:a,url:i},l)=>{let d=o;return"primary"===o||s||(d=i?"link":"secondary"),void 0===d&&r&&(d="primary"),Object(n.createElement)(u.a,{key:l,href:i,variant:d,onClick:i?void 0:a,className:c()("components-notice__action",e)},t)}))),m&&Object(n.createElement)(u.a,{className:"components-notice__dismiss",icon:l.a,label:Object(a.__)("Dismiss this notice"),onClick:e=>{var t;null==e||null===(t=e.preventDefault)||void 0===t||t.call(e),g(),p()},showTooltip:!1}))}},function(e,t,r){"use strict";function n(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(t,"__esModule",{value:!0});var o=n(r(11)),s=n(r(128)),c=r(3),a=n(c),i=n(r(129)),l=n(r(131)),u={arr:Array.isArray,obj:function(e){return"[object Object]"===Object.prototype.toString.call(e)},fun:function(e){return"function"==typeof e},str:function(e){return"string"==typeof e},num:function(e){return"number"==typeof e},und:function(e){return void 0===e},nul:function(e){return null===e},set:function(e){return e instanceof Set},map:function(e){return e instanceof Map},equ:function(e,t){if(typeof e!=typeof t)return!1;if(u.str(e)||u.num(e))return e===t;if(u.obj(e)&&u.obj(t)&&Object.keys(e).length+Object.keys(t).length===0)return!0;var r;for(r in e)if(!(r in t))return!1;for(r in t)if(e[r]!==t[r])return!1;return!u.und(r)||e===t}};function d(){var e=c.useState(!1)[1];return c.useCallback((function(){return e((function(e){return!e}))}),[])}function p(e,t){return u.und(e)||u.nul(e)?t:e}function m(e){return u.und(e)?[]:u.arr(e)?e:[e]}function f(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return u.fun(e)?e.apply(void 0,r):e}function h(e){var t=function(e){return e.to,e.from,e.config,e.onStart,e.onRest,e.onFrame,e.children,e.reset,e.reverse,e.force,e.immediate,e.delay,e.attach,e.destroyed,e.interpolateTo,e.ref,e.lazy,s(e,["to","from","config","onStart","onRest","onFrame","children","reset","reverse","force","immediate","delay","attach","destroyed","interpolateTo","ref","lazy"])}(e);if(u.und(t))return o({to:t},e);var r=Object.keys(e).reduce((function(r,n){var s;return u.und(t[n])?o({},r,((s={})[n]=e[n],s)):r}),{});return o({to:t},r)}var b,g,E=function(){function e(){this.payload=void 0,this.children=[]}var t=e.prototype;return t.getAnimatedValue=function(){return this.getValue()},t.getPayload=function(){return this.payload||this},t.attach=function(){},t.detach=function(){},t.getChildren=function(){return this.children},t.addChild=function(e){0===this.children.length&&this.attach(),this.children.push(e)},t.removeChild=function(e){var t=this.children.indexOf(e);this.children.splice(t,1),0===this.children.length&&this.detach()},e}(),y=function(e){function t(){for(var t,r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];return(t=e.call.apply(e,[this].concat(n))||this).payload=[],t.attach=function(){return t.payload.forEach((function(e){return e instanceof E&&e.addChild(l(t))}))},t.detach=function(){return t.payload.forEach((function(e){return e instanceof E&&e.removeChild(l(t))}))},t}return i(t,e),t}(E),O=function(e){function t(){for(var t,r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];return(t=e.call.apply(e,[this].concat(n))||this).payload={},t.attach=function(){return Object.values(t.payload).forEach((function(e){return e instanceof E&&e.addChild(l(t))}))},t.detach=function(){return Object.values(t.payload).forEach((function(e){return e instanceof E&&e.removeChild(l(t))}))},t}i(t,e);var r=t.prototype;return r.getValue=function(e){void 0===e&&(e=!1);var t={};for(var r in this.payload){var n=this.payload[r];(!e||n instanceof E)&&(t[r]=n instanceof E?n[e?"getAnimatedValue":"getValue"]():n)}return t},r.getAnimatedValue=function(){return this.getValue(!0)},t}(E);function v(e,t){b={fn:e,transform:t}}function _(e){g=e}var S,k=function(e){return"undefined"!=typeof window?window.requestAnimationFrame(e):-1},w=function(e){"undefined"!=typeof window&&window.cancelAnimationFrame(e)};function j(e){S=e}var C,R=function(){return Date.now()};function T(e){C=e}var x,A,P=function(e){return e.current};function N(e){x=e}var M=Object.freeze({get applyAnimatedValues(){return b},injectApplyAnimatedValues:v,get colorNames(){return g},injectColorNames:_,get requestFrame(){return k},get cancelFrame(){return w},injectFrame:function(e,t){k=e,w=t},get interpolation(){return S},injectStringInterpolator:j,get now(){return R},injectNow:function(e){R=e},get defaultElement(){return C},injectDefaultElement:T,get animatedApi(){return P},injectAnimatedApi:function(e){P=e},get createAnimatedStyle(){return x},injectCreateAnimatedStyle:N,get manualFrameloop(){return A},injectManualFrameloop:function(e){A=e}}),I=function(e){function t(t,r){var n;return(n=e.call(this)||this).update=void 0,n.payload=t.style?o({},t,{style:x(t.style)}):t,n.update=r,n.attach(),n}return i(t,e),t}(O),D=!1,L=new Set,F=function e(){if(!D)return!1;var t=R(),r=L,n=Array.isArray(r),o=0;for(r=n?r:r[Symbol.iterator]();;){var s;if(n){if(o>=r.length)break;s=r[o++]}else{if((o=r.next()).done)break;s=o.value}for(var c=s,a=!1,i=0;i<c.configs.length;i++){for(var l=c.configs[i],u=void 0,d=void 0,p=0;p<l.animatedValues.length;p++){var m=l.animatedValues[p];if(!m.done){var f=l.fromValues[p],h=l.toValues[p],b=m.lastPosition,g=h instanceof E,y=Array.isArray(l.initialVelocity)?l.initialVelocity[p]:l.initialVelocity;if(g&&(h=h.getValue()),l.immediate)m.setValue(h),m.done=!0;else if("string"!=typeof f&&"string"!=typeof h){if(void 0!==l.duration)b=f+l.easing((t-m.startTime)/l.duration)*(h-f),u=t>=m.startTime+l.duration;else if(l.decay)b=f+y/(1-.998)*(1-Math.exp(-(1-.998)*(t-m.startTime))),(u=Math.abs(m.lastPosition-b)<.1)&&(h=b);else{d=void 0!==m.lastTime?m.lastTime:t,y=void 0!==m.lastVelocity?m.lastVelocity:l.initialVelocity,t>d+64&&(d=t);for(var O=Math.floor(t-d),v=0;v<O;++v)b+=1*(y+=(-l.tension*(b-h)+-l.friction*y)/l.mass*1/1e3)/1e3;var _=!(!l.clamp||0===l.tension)&&(f<h?b>h:b<h),S=Math.abs(y)<=l.precision,w=0===l.tension||Math.abs(h-b)<=l.precision;u=_||S&&w,m.lastVelocity=y,m.lastTime=t}g&&!l.toValues[p].done&&(u=!1),u?(m.value!==h&&(b=h),m.done=!0):a=!0,m.setValue(b),m.lastPosition=b}else m.setValue(h),m.done=!0}}c.props.onFrame&&(c.values[l.name]=l.interpolation.getValue())}c.props.onFrame&&c.props.onFrame(c.values),a||(L.delete(c),c.stop(!0))}return L.size?A?A():k(e):D=!1,D};function U(e,t,r){if("function"==typeof e)return e;if(Array.isArray(e))return U({range:e,output:t,extrapolate:r});if(S&&"string"==typeof e.output[0])return S(e);var n=e,o=n.output,s=n.range||[0,1],c=n.extrapolateLeft||n.extrapolate||"extend",a=n.extrapolateRight||n.extrapolate||"extend",i=n.easing||function(e){return e};return function(e){var t=function(e,t){for(var r=1;r<t.length-1&&!(t[r]>=e);++r);return r-1}(e,s);return function(e,t,r,n,o,s,c,a,i){var l=i?i(e):e;if(l<t){if("identity"===c)return l;"clamp"===c&&(l=t)}if(l>r){if("identity"===a)return l;"clamp"===a&&(l=r)}return n===o?n:t===r?e<=t?n:o:(t===-1/0?l=-l:r===1/0?l-=t:l=(l-t)/(r-t),l=s(l),n===-1/0?l=-l:o===1/0?l+=n:l=l*(o-n)+n,l)}(e,s[t],s[t+1],o[t],o[t+1],i,c,a,n.map)}}var V=function(e){function t(r,n,o,s){var c;return(c=e.call(this)||this).calc=void 0,c.payload=r instanceof y&&!(r instanceof t)?r.getPayload():Array.isArray(r)?r:[r],c.calc=U(n,o,s),c}i(t,e);var r=t.prototype;return r.getValue=function(){return this.calc.apply(this,this.payload.map((function(e){return e.getValue()})))},r.updateConfig=function(e,t,r){this.calc=U(e,t,r)},r.interpolate=function(e,r,n){return new t(this,e,r,n)},t}(y),B=function(e){function t(t){var r;return(r=e.call(this)||this).animatedStyles=new Set,r.value=void 0,r.startPosition=void 0,r.lastPosition=void 0,r.lastVelocity=void 0,r.startTime=void 0,r.lastTime=void 0,r.done=!1,r.setValue=function(e,t){void 0===t&&(t=!0),r.value=e,t&&r.flush()},r.value=t,r.startPosition=t,r.lastPosition=t,r}i(t,e);var r=t.prototype;return r.flush=function(){0===this.animatedStyles.size&&function e(t,r){"update"in t?r.add(t):t.getChildren().forEach((function(t){return e(t,r)}))}(this,this.animatedStyles),this.animatedStyles.forEach((function(e){return e.update()}))},r.clearStyles=function(){this.animatedStyles.clear()},r.getValue=function(){return this.value},r.interpolate=function(e,t,r){return new V(this,e,t,r)},t}(E),H=function(e){function t(t){var r;return(r=e.call(this)||this).payload=t.map((function(e){return new B(e)})),r}i(t,e);var r=t.prototype;return r.setValue=function(e,t){var r=this;void 0===t&&(t=!0),Array.isArray(e)?e.length===this.payload.length&&e.forEach((function(e,n){return r.payload[n].setValue(e,t)})):this.payload.forEach((function(r){return r.setValue(e,t)}))},r.getValue=function(){return this.payload.map((function(e){return e.getValue()}))},r.interpolate=function(e,t){return new V(this,e,t)},t}(y),z=0,G=function(){function e(){var e=this;this.id=void 0,this.idle=!0,this.hasChanged=!1,this.guid=0,this.local=0,this.props={},this.merged={},this.animations={},this.interpolations={},this.values={},this.configs=[],this.listeners=[],this.queue=[],this.localQueue=void 0,this.getValues=function(){return e.interpolations},this.id=z++}var t=e.prototype;return t.update=function(e){if(!e)return this;var t=h(e),r=t.delay,n=void 0===r?0:r,c=t.to,a=s(t,["delay","to"]);if(u.arr(c)||u.fun(c))this.queue.push(o({},a,{delay:n,to:c}));else if(c){var i={};Object.entries(c).forEach((function(e){var t,r=e[0],s=e[1],c=o({to:(t={},t[r]=s,t),delay:f(n,r)},a),l=i[c.delay]&&i[c.delay].to;i[c.delay]=o({},i[c.delay],c,{to:o({},l,c.to)})})),this.queue=Object.values(i)}return this.queue=this.queue.sort((function(e,t){return e.delay-t.delay})),this.diff(a),this},t.start=function(e){var t=this;if(this.queue.length){this.idle=!1,this.localQueue&&this.localQueue.forEach((function(e){var r=e.from,n=void 0===r?{}:r,s=e.to,c=void 0===s?{}:s;u.obj(n)&&(t.merged=o({},n,t.merged)),u.obj(c)&&(t.merged=o({},t.merged,c))}));var r=this.local=++this.guid,n=this.localQueue=this.queue;this.queue=[],n.forEach((function(o,c){var a=o.delay,i=s(o,["delay"]),l=function(o){c===n.length-1&&r===t.guid&&o&&(t.idle=!0,t.props.onRest&&t.props.onRest(t.merged)),e&&e()},d=u.arr(i.to)||u.fun(i.to);a?setTimeout((function(){r===t.guid&&(d?t.runAsync(i,l):t.diff(i).start(l))}),a):d?t.runAsync(i,l):t.diff(i).start(l)}))}else u.fun(e)&&this.listeners.push(e),this.props.onStart&&this.props.onStart(),this,L.has(this)||L.add(this),D||(D=!0,k(A||F));return this},t.stop=function(e){return this.listeners.forEach((function(t){return t(e)})),this.listeners=[],this},t.pause=function(e){return this.stop(!0),e&&(this,L.has(this)&&L.delete(this)),this},t.runAsync=function(e,t){var r=this,n=(e.delay,s(e,["delay"])),c=this.local,a=Promise.resolve(void 0);if(u.arr(n.to))for(var i=function(e){var t=e,s=o({},n,h(n.to[t]));u.arr(s.config)&&(s.config=s.config[t]),a=a.then((function(){if(c===r.guid)return new Promise((function(e){return r.diff(s).start(e)}))}))},l=0;l<n.to.length;l++)i(l);else if(u.fun(n.to)){var d,p=0;a=a.then((function(){return n.to((function(e){var t=o({},n,h(e));if(u.arr(t.config)&&(t.config=t.config[p]),p++,c===r.guid)return d=new Promise((function(e){return r.diff(t).start(e)}))}),(function(e){return void 0===e&&(e=!0),r.stop(e)})).then((function(){return d}))}))}a.then(t)},t.diff=function(e){var t=this;this.props=o({},this.props,e);var r=this.props,n=r.from,s=void 0===n?{}:n,c=r.to,a=void 0===c?{}:c,i=r.config,l=void 0===i?{}:i,d=r.reverse,h=r.attach,b=r.reset,E=r.immediate;if(d){var y=[a,s];s=y[0],a=y[1]}this.merged=o({},s,this.merged,a),this.hasChanged=!1;var O=h&&h(this);if(this.animations=Object.entries(this.merged).reduce((function(e,r){var n=r[0],c=r[1],a=e[n]||{},i=u.num(c),d=u.str(c)&&!c.startsWith("#")&&!/\d/.test(c)&&!g[c],h=u.arr(c),y=!i&&!h&&!d,v=u.und(s[n])?c:s[n],_=i||h||d?c:1,k=f(l,n);O&&(_=O.animations[n].parent);var w,j=a.parent,C=a.interpolation,T=m(O?_.getPayload():_),x=c;y&&(x=S({range:[0,1],output:[c,c]})(1));var A,P=C&&C.getValue(),N=!u.und(j)&&a.animatedValues.some((function(e){return!e.done})),M=!u.equ(x,P),I=!u.equ(x,a.previous),D=!u.equ(k,a.config);if(b||I&&M||D){var L;if(i||d)j=C=a.parent||new B(v);else if(h)j=C=a.parent||new H(v);else if(y){var F=a.interpolation&&a.interpolation.calc(a.parent.value);F=void 0===F||b?v:F,a.parent?(j=a.parent).setValue(0,!1):j=new B(0);var U={output:[F,c]};a.interpolation?(C=a.interpolation,a.interpolation.updateConfig(U)):C=j.interpolate(U)}return T=m(O?_.getPayload():_),w=m(j.getPayload()),b&&!y&&j.setValue(v,!1),t.hasChanged=!0,w.forEach((function(e){e.startPosition=e.value,e.lastPosition=e.value,e.lastVelocity=N?e.lastVelocity:void 0,e.lastTime=N?e.lastTime:void 0,e.startTime=R(),e.done=!1,e.animatedStyles.clear()})),f(E,n)&&j.setValue(y?_:c,!1),o({},e,((L={})[n]=o({},a,{name:n,parent:j,interpolation:C,animatedValues:w,toValues:T,previous:x,config:k,fromValues:m(j.getValue()),immediate:f(E,n),initialVelocity:p(k.velocity,0),clamp:p(k.clamp,!1),precision:p(k.precision,.01),tension:p(k.tension,170),friction:p(k.friction,26),mass:p(k.mass,1),duration:k.duration,easing:p(k.easing,(function(e){return e})),decay:k.decay}),L))}return M?e:(y&&(j.setValue(1,!1),C.updateConfig({output:[x,x]})),j.done=!0,t.hasChanged=!0,o({},e,((A={})[n]=o({},e[n],{previous:x}),A)))}),this.animations),this.hasChanged)for(var v in this.configs=Object.values(this.animations),this.values={},this.interpolations={},this.animations)this.interpolations[v]=this.animations[v].interpolation,this.values[v]=this.animations[v].interpolation.getValue();return this},t.destroy=function(){this.stop(),this.props={},this.merged={},this.animations={},this.interpolations={},this.values={},this.configs=[],this.local=0},e}(),Y=function(e,t){var r=c.useRef(!1),n=c.useRef(),o=u.fun(t),s=c.useMemo((function(){var r;return n.current&&(n.current.map((function(e){return e.destroy()})),n.current=void 0),[new Array(e).fill().map((function(e,n){var s=new G,c=o?f(t,n,s):t[n];return 0===n&&(r=c.ref),s.update(c),r||s.start(),s})),r]}),[e]),a=s[0],i=s[1];n.current=a,c.useImperativeHandle(i,(function(){return{start:function(){return Promise.all(n.current.map((function(e){return new Promise((function(t){return e.start(t)}))})))},stop:function(e){return n.current.forEach((function(t){return t.stop(e)}))},get controllers(){return n.current}}}));var l=c.useMemo((function(){return function(e){return n.current.map((function(t,r){t.update(o?f(e,r,t):e[r]),i||t.start()}))}}),[e]);c.useEffect((function(){r.current?o||l(t):i||n.current.forEach((function(e){return e.start()}))})),c.useEffect((function(){return r.current=!0,function(){return n.current.forEach((function(e){return e.destroy()}))}}),[]);var d=n.current.map((function(e){return e.getValues()}));return o?[d,l,function(e){return n.current.forEach((function(t){return t.pause(e)}))}]:d},q=0,W=function(e,t){return("function"==typeof t?e.map(t):m(t)).map(String)},K=function(e){var t=e.items,r=e.keys,n=void 0===r?function(e){return e}:r,c=s(e,["items","keys"]);return t=m(void 0!==t?t:null),o({items:t,keys:W(t,n)},c)};function $(e,t){var r=function(){if(o){if(s>=n.length)return"break";c=n[s++]}else{if((s=n.next()).done)return"break";c=s.value}var r=c.key,a=function(e){return e.key!==r};(u.und(t)||t===r)&&(e.current.instances.delete(r),e.current.transitions=e.current.transitions.filter(a),e.current.deleted=e.current.deleted.filter(a))},n=e.current.deleted,o=Array.isArray(n),s=0;for(n=o?n:n[Symbol.iterator]();;){var c;if("break"===r())break}e.current.forceUpdate()}var X=function(e){function t(t){var r;return void 0===t&&(t={}),r=e.call(this)||this,!t.transform||t.transform instanceof E||(t=b.transform(t)),r.payload=t,r}return i(t,e),t}(O),J={transparent:0,aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,burntsienna:3934150143,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199},Q="[-+]?\\d*\\.?\\d+";function Z(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return"\\(\\s*("+t.join(")\\s*,\\s*(")+")\\s*\\)"}var ee=new RegExp("rgb"+Z(Q,Q,Q)),te=new RegExp("rgba"+Z(Q,Q,Q,Q)),re=new RegExp("hsl"+Z(Q,"[-+]?\\d*\\.?\\d+%","[-+]?\\d*\\.?\\d+%")),ne=new RegExp("hsla"+Z(Q,"[-+]?\\d*\\.?\\d+%","[-+]?\\d*\\.?\\d+%",Q)),oe=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,se=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,ce=/^#([0-9a-fA-F]{6})$/,ae=/^#([0-9a-fA-F]{8})$/;function ie(e,t,r){return r<0&&(r+=1),r>1&&(r-=1),r<1/6?e+6*(t-e)*r:r<.5?t:r<2/3?e+(t-e)*(2/3-r)*6:e}function le(e,t,r){var n=r<.5?r*(1+t):r+t-r*t,o=2*r-n,s=ie(o,n,e+1/3),c=ie(o,n,e),a=ie(o,n,e-1/3);return Math.round(255*s)<<24|Math.round(255*c)<<16|Math.round(255*a)<<8}function ue(e){var t=parseInt(e,10);return t<0?0:t>255?255:t}function de(e){return(parseFloat(e)%360+360)%360/360}function pe(e){var t=parseFloat(e);return t<0?0:t>1?255:Math.round(255*t)}function me(e){var t=parseFloat(e);return t<0?0:t>100?1:t/100}function fe(e){var t,r,n="number"==typeof(t=e)?t>>>0===t&&t>=0&&t<=4294967295?t:null:(r=ce.exec(t))?parseInt(r[1]+"ff",16)>>>0:J.hasOwnProperty(t)?J[t]:(r=ee.exec(t))?(ue(r[1])<<24|ue(r[2])<<16|ue(r[3])<<8|255)>>>0:(r=te.exec(t))?(ue(r[1])<<24|ue(r[2])<<16|ue(r[3])<<8|pe(r[4]))>>>0:(r=oe.exec(t))?parseInt(r[1]+r[1]+r[2]+r[2]+r[3]+r[3]+"ff",16)>>>0:(r=ae.exec(t))?parseInt(r[1],16)>>>0:(r=se.exec(t))?parseInt(r[1]+r[1]+r[2]+r[2]+r[3]+r[3]+r[4]+r[4],16)>>>0:(r=re.exec(t))?(255|le(de(r[1]),me(r[2]),me(r[3])))>>>0:(r=ne.exec(t))?(le(de(r[1]),me(r[2]),me(r[3]))|pe(r[4]))>>>0:null;return null===n?e:"rgba("+((4278190080&(n=n||0))>>>24)+", "+((16711680&n)>>>16)+", "+((65280&n)>>>8)+", "+(255&n)/255+")"}var he=/[+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,be=/(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\((-?\d+%?[,\s]+){2,3}\s*[\d\.]+%?\))/gi,ge=new RegExp("("+Object.keys(J).join("|")+")","g"),Ee={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ye=["Webkit","Ms","Moz","O"];function Oe(e,t,r){return null==t||"boolean"==typeof t||""===t?"":r||"number"!=typeof t||0===t||Ee.hasOwnProperty(e)&&Ee[e]?(""+t).trim():t+"px"}Ee=Object.keys(Ee).reduce((function(e,t){return ye.forEach((function(r){return e[function(e,t){return e+t.charAt(0).toUpperCase()+t.substring(1)}(r,t)]=e[t]})),e}),Ee);var ve={};N((function(e){return new X(e)})),T("div"),j((function(e){var t=e.output.map((function(e){return e.replace(be,fe)})).map((function(e){return e.replace(ge,fe)})),r=t[0].match(he).map((function(){return[]}));t.forEach((function(e){e.match(he).forEach((function(e,t){return r[t].push(+e)}))}));var n=t[0].match(he).map((function(t,n){return U(o({},e,{output:r[n]}))}));return function(e){var r=0;return t[0].replace(he,(function(){return n[r++](e)})).replace(/rgba\(([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+)\)/gi,(function(e,t,r,n,o){return"rgba("+Math.round(t)+", "+Math.round(r)+", "+Math.round(n)+", "+o+")"}))}})),_(J),v((function(e,t){if(!e.nodeType||void 0===e.setAttribute)return!1;var r=t.style,n=t.children,o=t.scrollTop,c=t.scrollLeft,a=s(t,["style","children","scrollTop","scrollLeft"]),i="filter"===e.nodeName||e.parentNode&&"filter"===e.parentNode.nodeName;for(var l in void 0!==o&&(e.scrollTop=o),void 0!==c&&(e.scrollLeft=c),void 0!==n&&(e.textContent=n),r)if(r.hasOwnProperty(l)){var u=0===l.indexOf("--"),d=Oe(l,r[l],u);"float"===l&&(l="cssFloat"),u?e.style.setProperty(l,d):e.style[l]=d}for(var p in a){var m=i?p:ve[p]||(ve[p]=p.replace(/([A-Z])/g,(function(e){return"-"+e.toLowerCase()})));void 0!==e.getAttribute(m)&&e.setAttribute(m,a[p])}}),(function(e){return e}));var _e,Se,ke=(_e=function(e){return c.forwardRef((function(t,r){var n=d(),i=c.useRef(!0),l=c.useRef(null),p=c.useRef(null),m=c.useCallback((function(e){var t=l.current;l.current=new I(e,(function(){var e=!1;p.current&&(e=b.fn(p.current,l.current.getAnimatedValue())),p.current&&!1!==e||n()})),t&&t.detach()}),[]);c.useEffect((function(){return function(){i.current=!1,l.current&&l.current.detach()}}),[]),c.useImperativeHandle(r,(function(){return P(p,i,n)})),m(t);var f,h=l.current.getValue(),g=(h.scrollTop,h.scrollLeft,s(h,["scrollTop","scrollLeft"])),E=(f=e,!u.fun(f)||f.prototype instanceof a.Component?function(e){return p.current=function(e,t){return t&&(u.fun(t)?t(e):u.obj(t)&&(t.current=e)),e}(e,r)}:void 0);return a.createElement(e,o({},g,{ref:E}))}))},void 0===(Se=!1)&&(Se=!0),function(e){return(u.arr(e)?e:Object.keys(e)).reduce((function(e,t){var r=Se?t[0].toLowerCase()+t.substring(1):t;return e[r]=_e(r),e}),_e)}),we=ke(["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"]);t.apply=ke,t.config={default:{tension:170,friction:26},gentle:{tension:120,friction:14},wobbly:{tension:180,friction:12},stiff:{tension:210,friction:20},slow:{tension:280,friction:60},molasses:{tension:280,friction:120}},t.update=F,t.animated=we,t.a=we,t.interpolate=function(e,t,r){return e&&new V(e,t,r)},t.Globals=M,t.useSpring=function(e){var t=u.fun(e),r=Y(1,t?e:[e]),n=r[0],o=r[1],s=r[2];return t?[n[0],o,s]:n},t.useTrail=function(e,t){var r=c.useRef(!1),n=u.fun(t),s=f(t),a=c.useRef(),i=Y(e,(function(e,t){return 0===e&&(a.current=[]),a.current.push(t),o({},s,{config:f(s.config,e),attach:e>0&&function(){return a.current[e-1]}})})),l=i[0],d=i[1],p=i[2],m=c.useMemo((function(){return function(e){return d((function(t,r){e.reverse;var n=e.reverse?t+1:t-1,c=a.current[n];return o({},e,{config:f(e.config||s.config,t),attach:c&&function(){return c}})}))}}),[e,s.reverse]);return c.useEffect((function(){r.current&&!n&&m(t)})),c.useEffect((function(){r.current=!0}),[]),n?[l,m,p]:l},t.useTransition=function(e,t,r){var n=o({items:e,keys:t||function(e){return e}},r),a=K(n),i=a.lazy,l=void 0!==i&&i,u=(a.unique,a.reset),p=void 0!==u&&u,m=(a.enter,a.leave,a.update,a.onDestroyed),h=(a.keys,a.items,a.onFrame),b=a.onRest,g=a.onStart,E=a.ref,y=s(a,["lazy","unique","reset","enter","leave","update","onDestroyed","keys","items","onFrame","onRest","onStart","ref"]),O=d(),v=c.useRef(!1),_=c.useRef({mounted:!1,first:!0,deleted:[],current:{},transitions:[],prevProps:{},paused:!!n.ref,instances:!v.current&&new Map,forceUpdate:O});return c.useImperativeHandle(n.ref,(function(){return{start:function(){return Promise.all(Array.from(_.current.instances).map((function(e){var t=e[1];return new Promise((function(e){return t.start(e)}))})))},stop:function(e){return Array.from(_.current.instances).forEach((function(t){return t[1].stop(e)}))},get controllers(){return Array.from(_.current.instances).map((function(e){return e[1]}))}}})),_.current=function(e,t){for(var r=e.first,n=e.prevProps,c=s(e,["first","prevProps"]),a=K(t),i=a.items,l=a.keys,u=a.initial,d=a.from,p=a.enter,m=a.leave,h=a.update,b=a.trail,g=void 0===b?0:b,E=a.unique,y=a.config,O=a.order,v=void 0===O?["enter","leave","update"]:O,_=K(n),S=_.keys,k=_.items,w=o({},c.current),j=[].concat(c.deleted),C=Object.keys(w),R=new Set(C),T=new Set(l),x=l.filter((function(e){return!R.has(e)})),A=c.transitions.filter((function(e){return!e.destroyed&&!T.has(e.originalKey)})).map((function(e){return e.originalKey})),P=l.filter((function(e){return R.has(e)})),N=-g;v.length;)switch(v.shift()){case"enter":x.forEach((function(e,t){E&&j.find((function(t){return t.originalKey===e}))&&(j=j.filter((function(t){return t.originalKey!==e})));var n=l.indexOf(e),o=i[n],s=r&&void 0!==u?"initial":"enter";w[e]={slot:s,originalKey:e,key:E?String(e):q++,item:o,trail:N+=g,config:f(y,o,s),from:f(r&&void 0!==u?u||{}:d,o),to:f(p,o)}}));break;case"leave":A.forEach((function(e){var t=S.indexOf(e),r=k[t];j.unshift(o({},w[e],{slot:"leave",destroyed:!0,left:S[Math.max(0,t-1)],right:S[Math.min(S.length,t+1)],trail:N+=g,config:f(y,r,"leave"),to:f(m,r)})),delete w[e]}));break;case"update":P.forEach((function(e){var t=l.indexOf(e),r=i[t];w[e]=o({},w[e],{item:r,slot:"update",trail:N+=g,config:f(y,r,"update"),to:f(h,r)})}))}var M=l.map((function(e){return w[e]}));return j.forEach((function(e){var t,r=e.left,n=(e.right,s(e,["left","right"]));-1!==(t=M.findIndex((function(e){return e.originalKey===r})))&&(t+=1),t=Math.max(0,t),M=[].concat(M.slice(0,t),[n],M.slice(t))})),o({},c,{changed:x.length||A.length||P.length,first:r&&0===x.length,transitions:M,current:w,deleted:j,prevProps:t})}(_.current,n),_.current.changed&&_.current.transitions.forEach((function(e){var t=e.slot,r=e.from,n=e.to,s=e.config,c=e.trail,a=e.key,i=e.item;_.current.instances.has(a)||_.current.instances.set(a,new G);var u=_.current.instances.get(a),d=o({},y,{to:n,from:r,config:s,ref:E,onRest:function(r){_.current.mounted&&(e.destroyed&&(E||l||$(_,a),m&&m(i)),!Array.from(_.current.instances).some((function(e){return!e[1].idle}))&&(E||l)&&_.current.deleted.length>0&&$(_),b&&b(i,t,r))},onStart:g&&function(){return g(i,t)},onFrame:h&&function(e){return h(i,t,e)},delay:c,reset:p&&"enter"===t});u.update(d),_.current.paused||u.start()})),c.useEffect((function(){return _.current.mounted=v.current=!0,function(){_.current.mounted=v.current=!1,Array.from(_.current.instances).map((function(e){return e[1].destroy()})),_.current.instances.clear()}}),[]),_.current.transitions.map((function(e){var t=e.item,r=e.slot,n=e.key;return{item:t,key:n,state:r,props:_.current.instances.get(n).getValues()}}))},t.useChain=function(e,t,r){void 0===r&&(r=1e3);var n=c.useRef();c.useEffect((function(){u.equ(e,n.current)?e.forEach((function(e){var t=e.current;return t&&t.start()})):t?e.forEach((function(e,n){var s=e.current;if(s){var c=s.controllers;if(c.length){var a=r*t[n];c.forEach((function(e){e.queue=e.queue.map((function(e){return o({},e,{delay:e.delay+a})})),e.start()}))}}})):e.reduce((function(e,t,r){var n=t.current;return e.then((function(){return n.start()}))}),Promise.resolve()),n.current=e}))},t.useSprings=Y},,,,,,,,,,function(e,t,r){"use strict";var n=r(0);t.a=function(e){let{icon:t,size:r=24,...o}=e;return Object(n.cloneElement)(t,{width:r,height:r,...o})}},,function(e,t){},,,,,function(e,t,r){"use strict";(function(e){var n=r(0),o=r(6),s=r(4),c=r.n(s),a=r(20),i=r(1),l=(r(38),r(50));t.a=Object(n.forwardRef)((function({className:t,children:r,spokenMessage:s=r,politeness:u="polite",actions:d=[],onRemove:p=o.noop,icon:m=null,explicitDismiss:f=!1,onDismiss:h=o.noop},b){function g(e){e&&e.preventDefault&&e.preventDefault(),h(),p()}h=h||o.noop,function(e,t){const r="string"==typeof e?e:Object(n.renderToString)(e);Object(n.useEffect)(()=>{r&&Object(a.speak)(r,t)},[r,t])}(s,u),Object(n.useEffect)(()=>{const e=setTimeout(()=>{f||(h(),p())},1e4);return()=>clearTimeout(e)},[h,p]);const E=c()(t,"components-snackbar",{"components-snackbar-explicit-dismiss":!!f});d&&d.length>1&&(void 0!==e&&e.env,d=[d[0]]);const y=c()("components-snackbar__content",{"components-snackbar__content-with-icon":!!m});return Object(n.createElement)("div",{ref:b,className:E,onClick:f?o.noop:g,tabIndex:"0",role:f?"":"button",onKeyPress:f?o.noop:g,"aria-label":f?"":Object(i.__)("Dismiss this notice")},Object(n.createElement)("div",{className:y},m&&Object(n.createElement)("div",{className:"components-snackbar__icon"},m),r,d.map(({label:e,onClick:t,url:r},o)=>Object(n.createElement)(l.a,{key:o,href:r,variant:"tertiary",onClick:e=>function(e,t){e.stopPropagation(),p(),t&&t(e)}(e,t),className:"components-snackbar__action"},e)),f&&Object(n.createElement)("span",{role:"button","aria-label":"Dismiss this notice",tabIndex:"0",className:"components-snackbar__dismiss-button",onClick:g,onKeyPress:g},"✕")))}))}).call(this,r(63))},function(e,t){e.exports=window.wp.plugins},,function(e,t){e.exports=window.wp.wordcount},function(e,t){e.exports=window.wp.autop},,function(e,t,r){"use strict";r.d(t,"b",(function(){return s})),r.d(t,"a",(function(){return c}));var n=r(45),o=(r(14),r(2));const s=(e,t)=>Object.keys(o.defaultAddressFields).every(r=>e[r]===t[r]),c=e=>{const t=Object.keys(o.defaultAddressFields),r=Object(n.a)(t,{},e.country),s=Object.assign({},e);return r.forEach(t=>{let{key:r="",hidden:n=!1}=t;n&&((e,t)=>e in t)(r,e)&&(s[r]="")}),s}},,function(e,t){e.exports=window.wc.wcBlocksSharedHocs},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(11),o=r.n(n),s=r(0),c=r(4),a=r.n(c),i=r(94),l=r(7),u=(r(78),r(57));const d=e=>{let{status:t="default"}=e;switch(t){case"error":return"woocommerce-error";case"success":return"woocommerce-message";case"info":case"warning":return"woocommerce-info"}return""},p=e=>{let{className:t,context:r="default",additionalNotices:n=[]}=e;const{isSuppressed:c}=Object(u.b)(),{notices:p}=Object(l.useSelect)(e=>({notices:e("core/notices").getNotices(r)})),{removeNotice:m}=Object(l.useDispatch)("core/notices"),f=p.filter(e=>"snackbar"!==e.type).concat(n);if(!f.length)return null;const h=a()(t,"wc-block-components-notices");return c?null:Object(s.createElement)("div",{className:h},f.map(e=>Object(s.createElement)(i.a,o()({key:"store-notice-"+e.id},e,{className:a()("wc-block-components-notices__notice",d(e)),onRemove:()=>{e.isDismissible&&m(e.id,r)}}),e.content)))}},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(0),o=r(48),s=r(2),c=r(59),a=r.n(c),i=r(10),l=r(16);const u=(e,t)=>e&&t[e]?t[e]:null,d=e=>{let{block:t,blockMap:r,blockWrapper:o,children:c,depth:p=1}=e;return c&&0!==c.length?Array.from(c).map((e,c)=>{const{blockName:m="",...f}={key:`${t}_${p}_${c}`,...e instanceof HTMLElement?e.dataset:{},className:e instanceof Element?null==e?void 0:e.className:""},h=u(m,r);if(!h){const s=a()(e instanceof Element&&(null==e?void 0:e.outerHTML)||(null==e?void 0:e.textContent)||"");if("string"==typeof s&&s)return s;if(!Object(n.isValidElement)(s))return null;const c=e.childNodes.length?d({block:t,blockMap:r,children:e.childNodes,depth:p+1,blockWrapper:o}):void 0;return c?Object(n.cloneElement)(s,f,c):Object(n.cloneElement)(s,f)}const b=o||n.Fragment;return Object(n.createElement)(n.Suspense,{key:`${t}_${p}_${c}_suspense`,fallback:Object(n.createElement)("div",{className:"wc-block-placeholder"})},Object(n.createElement)(l.a,{text:"Unexpected error in: "+m,showErrorBlock:s.CURRENT_USER_IS_ADMIN},Object(n.createElement)(b,null,Object(n.createElement)(h,f,d({block:t,blockMap:r,children:e.childNodes,depth:p+1,blockWrapper:o}),((e,t,r,o)=>{if(!Object(i.hasInnerBlocks)(e))return null;const c=r?Array.from(r).map(e=>e instanceof HTMLElement&&(null==e?void 0:e.dataset.blockName)||null).filter(Boolean):[],a=Object(i.getRegisteredBlocks)(e).filter(e=>{let{blockName:t,force:r}=e;return!0===r&&!c.includes(t)}),d=o||n.Fragment;return Object(n.createElement)(n.Fragment,null,a.map((e,r)=>{let{blockName:o,component:c}=e;const a=c||u(o,t);return a?Object(n.createElement)(l.a,{text:"Unexpected error in: "+o,showErrorBlock:s.CURRENT_USER_IS_ADMIN},Object(n.createElement)(d,null,Object(n.createElement)(a,{key:`${o}_forced_${r}`}))):null}))})(m,r,e.childNodes,o)))))}):null},p=e=>{let{Block:t,selector:r,blockName:n,getProps:s=(()=>({})),blockMap:c,blockWrapper:a}=e;Object(o.a)({Block:t,selector:r,getProps:(e,t)=>{const r=d({block:n,blockMap:c,children:e.children||[],blockWrapper:a});return{...s(e,t),children:r}}})}},function(e,t){e.exports=function(e,t){if(null==e)return{};var r,n,o={},s=Object.keys(e);for(n=0;n<s.length;n++)r=s[n],t.indexOf(r)>=0||(o[r]=e[r]);return o},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){var n=r(130);e.exports=function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,n(e,t)},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){function r(t,n){return e.exports=r=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},e.exports.__esModule=!0,e.exports.default=e.exports,r(t,n)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){"use strict";r.d(t,"a",(function(){return S}));var n=r(0),o=r(113),s=r(2),c=r(16),a=r(201),i=r(66),l=r(46),u=r(34),d=r(1),p=r(25),m=r.n(p),f=r(118),h=r(92),b=r(7);const g=(e,t,r)=>{const n=Object.keys(e).map(t=>({key:t,value:e[t]}),[]),o=`wc-${r}-new-payment-method`;return n.push({key:o,value:t}),n},E=(e,t)=>{m.a.setNonce&&"function"==typeof m.a.setNonce&&m.a.setNonce(e),null!=e&&e.get("User-ID")&&t.setCustomerId(parseInt(e.get("User-ID")||"0",10))};var y=r(194),O=r(31),v=r(57),_=()=>{const{hasError:e,onCheckoutValidationBeforeProcessing:t,dispatchActions:r,redirectUrl:o,isProcessing:s,isBeforeProcessing:c,isComplete:p,orderNotes:_,shouldCreateAccount:S,extensionData:k}=Object(u.b)(),{hasValidationErrors:w}=Object(y.b)(),{shippingErrorStatus:j}=Object(i.b)(),{billingData:C,shippingAddress:R}=Object(l.b)(),{cartNeedsPayment:T,cartNeedsShipping:x,receiveCart:A}=Object(O.a)(),{activePaymentMethod:P,isExpressPaymentMethodActive:N,currentStatus:M,paymentMethodData:I,expressPaymentMethods:D,paymentMethods:L,shouldSavePayment:F}=Object(a.b)(),{setIsSuppressed:U}=Object(v.b)(),{createErrorNotice:V,removeNotice:B}=Object(b.useDispatch)("core/notices"),H=Object(n.useRef)(C),z=Object(n.useRef)(R),G=Object(n.useRef)(o),[Y,q]=Object(n.useState)(!1),W=Object(n.useMemo)(()=>{var e;const t={...D,...L};return null==t||null===(e=t[P])||void 0===e?void 0:e.paymentMethodId},[P,D,L]),K=w&&!N||M.hasError||j.hasError,$=!e&&!K&&(M.isSuccessful||!T)&&s;Object(n.useEffect)(()=>{U(N)},[N,U]),Object(n.useEffect)(()=>{K===e||!s&&!c||N||r.setHasError(K)},[K,e,s,c,N,r]),Object(n.useEffect)(()=>{H.current=C,z.current=R,G.current=o},[C,R,o]);const X=Object(n.useCallback)(()=>!w&&(M.hasError?{errorMessage:Object(d.__)("There was a problem with your payment option.","woocommerce")}:!j.hasError||{errorMessage:Object(d.__)("There was a problem with your shipping option.","woocommerce")}),[w,M.hasError,j.hasError]);Object(n.useEffect)(()=>{let e;return N||(e=t(X,0)),()=>{N||e()}},[t,X,N]),Object(n.useEffect)(()=>{G.current&&(window.location.href=G.current)},[p]);const J=Object(n.useCallback)(async()=>{if(Y)return;q(!0),B("checkout");const e=T?{payment_method:W,payment_data:g(I,F,P)}:{},t={billing_address:Object(f.a)(H.current),customer_note:_,create_account:S,...e,extensions:{...k}};x&&(t.shipping_address=Object(f.a)(z.current)),m()({path:"/wc/store/v1/checkout",method:"POST",data:t,cache:"no-store",parse:!1}).then(e=>{if(E(e.headers,r),!e.ok)throw new Error(e);return e.json()}).then(e=>{r.setAfterProcessing(e),q(!1)}).catch(e=>{try{null!=e&&e.headers&&E(e.headers,r),e.json().then(e=>{var t,n,o;null!==(t=e.data)&&void 0!==t&&t.cart&&A(e.data.cart),V(Object(h.b)(e),{id:"checkout",context:"wc/checkout"}),null==e||null===(n=e.additional_errors)||void 0===n||null===(o=n.forEach)||void 0===o||o.call(n,e=>{V(e.message,{id:e.error_code,context:"wc/checkout"})}),r.setAfterProcessing(e)})}catch{var t;V(Object(d.sprintf)(// Translators: %s Error text.
4
  Object(d.__)("%s Please try placing your order again.","woocommerce"),null!==(t=null==e?void 0:e.message)&&void 0!==t?t:Object(d.__)("Something went wrong.","woocommerce")),{id:"checkout",context:"wc/checkout"})}r.setHasError(!0),q(!1)})},[Y,B,T,W,I,F,P,_,S,k,x,r,V,A]);return Object(n.useEffect)(()=>{$&&!Y&&J()},[J,$,Y]),null};const S=e=>{let{children:t,isCart:r=!1,redirectUrl:d}=e;return Object(n.createElement)(u.a,{redirectUrl:d,isCart:r},Object(n.createElement)(l.a,null,Object(n.createElement)(i.a,null,Object(n.createElement)(a.a,null,t,Object(n.createElement)(c.a,{renderError:s.CURRENT_USER_IS_ADMIN?null:()=>null},Object(n.createElement)(o.PluginArea,{scope:"woocommerce-checkout"})),Object(n.createElement)(_,null)))))}},,,,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"b",(function(){return s}));var n=r(0);const o=Object(n.createContext)({allowCreateAccount:!1,showCompanyField:!1,showApartmentField:!1,showPhoneField:!1,requireCompanyField:!1,requirePhoneField:!1,showOrderNotes:!0,showPolicyLinks:!0,showReturnToCart:!0,cartPageId:0,showRateAfterTaxName:!1}),s=(Object(n.createContext)({addressFieldControls:()=>null,accountControls:()=>null}),()=>Object(n.useContext)(o))},function(e,t){e.exports=window.wp.keycodes},,function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=(e,t)=>{const r=[];return Object.keys(e).forEach(n=>{if(void 0!==t[n])switch(e[n].type){case"boolean":r[n]="false"!==t[n]&&!1!==t[n];break;case"number":r[n]=parseInt(t[n],10);break;case"array":case"object":r[n]=JSON.parse(t[n]);break;default:r[n]=t[n]}else r[n]=e[n].default}),r}},,,,,,,,,,,,,,,,,,,,function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-actions-block","version":"1.0.0","title":"Actions","description":"Allow customers to place their order.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-billing-address-block","version":"1.0.0","title":"Billing Address","description":"Collect your customer\'s billing address.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-contact-information-block","version":"1.0.0","title":"Contact Information","description":"Collect your customer\'s contact information.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-express-payment-block","version":"1.0.0","title":"Express Checkout","description":"Provide an express payment option for your customers.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-fields-block","version":"1.0.0","title":"Checkout Fields","description":"Column containing checkout address fields.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-note-block","version":"1.0.0","title":"Order Note","description":"Allow customers to add a note to their order.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":false,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-payment-block","version":"1.0.0","title":"Payment Options","description":"Payment options for your store.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-shipping-address-block","version":"1.0.0","title":"Shipping Address","description":"Collect your customer\'s shipping address.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-shipping-methods-block","version":"1.0.0","title":"Shipping Options","description":"Shipping options for your store.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-terms-block","version":"1.0.0","title":"Terms and Conditions","description":"Ensure customers agree to your terms and conditions and privacy policy.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"checkbox":{"type":"boolean","default":false},"text":{"type":"string","required":false}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-totals-block","version":"1.0.0","title":"Checkout Totals","description":"Column containing the checkout totals.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"className":{"type":"string","default":""},"checkbox":{"type":"boolean","default":false},"text":{"type":"string","required":false}},"parent":["woocommerce/checkout"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-block","version":"1.0.0","title":"Order Summary","description":"Show customers a summary of their order.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true}}},"parent":["woocommerce/checkout-totals-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-subtotal-block","version":"1.0.0","title":"Subtotal","description":"Shows the cart subtotal row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-fee-block","version":"1.0.0","title":"Fees","description":"Shows the cart fee row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-discount-block","version":"1.0.0","title":"Discount","description":"Shows the cart discount row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-shipping-block","version":"1.0.0","title":"Shipping","description":"Shows the cart shipping row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-coupon-form-block","version":"1.0.0","title":"Coupon Form","description":"Shows the apply coupon form.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":false,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-taxes-block","version":"1.0.0","title":"Taxes","description":"Shows the cart taxes row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-cart-items-block","version":"1.0.0","title":"Cart Items","description":"Shows cart items.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout","version":"1.0.0","title":"Checkout","description":"Display a checkout form so your customers can submit orders.","category":"woocommerce","keywords":["WooCommerce"],"supports":{"align":["wide"],"html":false,"multiple":false},"attributes":{"isPreview":{"type":"boolean","default":false,"save":false},"showCompanyField":{"type":"boolean","default":false},"requireCompanyField":{"type":"boolean","default":false},"allowCreateAccount":{"type":"boolean","default":false},"showApartmentField":{"type":"boolean","default":true},"showPhoneField":{"type":"boolean","default":true},"requirePhoneField":{"type":"boolean","default":false}},"textdomain":"woocommerce","apiVersion":2}')},,,,,,,,,,,function(e,t,r){"use strict";r.d(t,"b",(function(){return i})),r.d(t,"a",(function(){return l}));var n=r(0),o=r(6),s=r(12),c=r.n(s);const a=Object(n.createContext)({getValidationError:()=>"",setValidationErrors:e=>{},clearValidationError:e=>{},clearAllValidationErrors:()=>{},hideValidationError:()=>{},showValidationError:()=>{},showAllValidationErrors:()=>{},hasValidationErrors:!1,getValidationErrorId:e=>e}),i=()=>Object(n.useContext)(a),l=e=>{let{children:t}=e;const[r,s]=Object(n.useState)({}),i=Object(n.useCallback)(e=>r[e],[r]),l=Object(n.useCallback)(e=>{const t=r[e];return!t||t.hidden?"":"validate-error-"+e},[r]),u=Object(n.useCallback)(e=>{s(t=>{if(!t[e])return t;const{[e]:r,...n}=t;return n})},[]),d=Object(n.useCallback)(()=>{s({})},[]),p=Object(n.useCallback)(e=>{e&&s(t=>(e=Object(o.pickBy)(e,(e,r)=>!("string"!=typeof e.message||t.hasOwnProperty(r)&&c()(t[r],e))),0===Object.values(e).length?t:{...t,...e}))},[]),m=Object(n.useCallback)((e,t)=>{s(r=>{if(!r.hasOwnProperty(e))return r;const n={...r[e],...t};return c()(r[e],n)?r:{...r,[e]:n}})},[]),f={getValidationError:i,setValidationErrors:p,clearValidationError:u,clearAllValidationErrors:d,hideValidationError:Object(n.useCallback)(e=>{m(e,{hidden:!0})},[m]),showValidationError:Object(n.useCallback)(e=>{m(e,{hidden:!1})},[m]),showAllValidationErrors:Object(n.useCallback)(()=>{s(e=>{const t={};return Object.keys(e).forEach(r=>{e[r].hidden&&(t[r]={...e[r],hidden:!1})}),0===Object.values(t).length?e:{...e,...t}})},[]),hasValidationErrors:Object.keys(r).length>0,getValidationErrorId:l};return Object(n.createElement)(a.Provider,{value:f},t)}},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(91);const o=(e,t)=>function(r){let o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10;const s=n.a.addEventCallback(e,r,o);return t(s),()=>{t(n.a.removeEventCallback(e,s.id))}}},function(e,t){},function(e,t,r){"use strict";r.d(t,"a",(function(){return s})),r.d(t,"b",(function(){return c}));const n=(e,t)=>e[t]?Array.from(e[t].values()).sort((e,t)=>e.priority-t.priority):[];var o=r(29);const s=async(e,t,r)=>{const o=n(e,t),s=[];for(const e of o)try{const t=await Promise.resolve(e.callback(r));"object"==typeof t&&s.push(t)}catch(e){console.error(e)}return!s.length||s},c=async(e,t,r)=>{const s=[],c=n(e,t);for(const e of c)try{const t=await Promise.resolve(e.callback(r));if("object"!=typeof t||null===t)continue;if(!t.hasOwnProperty("type"))throw new Error("Returned objects from event emitter observers must return an object with a type property");if(Object(o.a)(t)||Object(o.b)(t))return s.push(t),s;s.push(t)}catch(e){return console.error(e),s.push({type:"error"}),s}return s}},,function(e,t,r){"use strict";r.d(t,"b",(function(){return L})),r.d(t,"a",(function(){return F}));var n=r(0),o=r(61),s=r(7);let c,a;!function(e){e.PRISTINE="pristine",e.STARTED="started",e.PROCESSING="processing",e.ERROR="has_error",e.FAILED="failed",e.SUCCESS="success",e.COMPLETE="complete"}(c||(c={})),function(e){e.SET_REGISTERED_PAYMENT_METHODS="set_registered_payment_methods",e.SET_REGISTERED_EXPRESS_PAYMENT_METHODS="set_registered_express_payment_methods",e.SET_SHOULD_SAVE_PAYMENT_METHOD="set_should_save_payment_method",e.SET_ACTIVE_PAYMENT_METHOD="set_active_payment_method"}(a||(a={}));const i={currentStatus:c.PRISTINE,shouldSavePaymentMethod:!1,activePaymentMethod:"",paymentMethodData:{payment_method:""},errorMessage:"",paymentMethods:{},expressPaymentMethods:{}},l={setPaymentStatus:()=>({pristine:()=>{},started:()=>{},processing:()=>{},completed:()=>{},error:e=>{},failed:(e,t)=>{},success:(e,t)=>{}}),currentStatus:{isPristine:!0,isStarted:!1,isProcessing:!1,isFinished:!1,hasError:!1,hasFailed:!1,isSuccessful:!1,isDoingExpressPayment:!1},paymentStatuses:c,paymentMethodData:{},errorMessage:"",activePaymentMethod:"",activeSavedToken:"",setActivePaymentMethod:()=>{},customerPaymentMethods:{},paymentMethods:{},expressPaymentMethods:{},paymentMethodsInitialized:!1,expressPaymentMethodsInitialized:!1,onPaymentProcessing:()=>()=>()=>{},setExpressPaymentError:()=>{},isExpressPaymentMethodActive:!1,setShouldSavePayment:()=>{},shouldSavePayment:!1};var u=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i,{type:t,paymentMethodData:r,shouldSavePaymentMethod:n=!1,errorMessage:o="",paymentMethods:s={},paymentMethod:l=""}=arguments.length>1?arguments[1]:void 0;switch(t){case c.PRISTINE:return{...i,...e,errorMessage:"",currentStatus:c.PRISTINE};case c.STARTED:return{...e,currentStatus:c.STARTED};case c.ERROR:return e.currentStatus!==c.ERROR?{...e,currentStatus:c.ERROR,errorMessage:o||e.errorMessage}:e;case c.FAILED:return e.currentStatus!==c.FAILED?{...e,currentStatus:c.FAILED,paymentMethodData:r||e.paymentMethodData,errorMessage:o||e.errorMessage}:e;case c.SUCCESS:return e.currentStatus!==c.SUCCESS?{...e,currentStatus:c.SUCCESS,paymentMethodData:r||e.paymentMethodData}:e;case c.PROCESSING:return e.currentStatus!==c.PROCESSING?{...e,currentStatus:c.PROCESSING,errorMessage:""}:e;case c.COMPLETE:return e.currentStatus!==c.COMPLETE?{...e,currentStatus:c.COMPLETE}:e;case a.SET_REGISTERED_PAYMENT_METHODS:return{...e,paymentMethods:s};case a.SET_REGISTERED_EXPRESS_PAYMENT_METHODS:return{...e,expressPaymentMethods:s};case a.SET_SHOULD_SAVE_PAYMENT_METHOD:return{...e,shouldSavePaymentMethod:n};case a.SET_ACTIVE_PAYMENT_METHOD:return{...e,activePaymentMethod:l,paymentMethodData:r||e.paymentMethodData}}},d=r(1),p=r(17),m=r(30),f=r(2),h=r(47),b=r(27),g=r(46),E=r(31),y=r(29),O=r(64);const v=(e,t,r,o)=>{const[c,a]=Object(n.useState)(!1),{isEditor:i}=Object(b.a)(),{selectedRates:l}=Object(O.a)(),{billingData:u,shippingAddress:p}=Object(g.b)(),y=Object(m.a)(l),v=Object(m.a)(r),_=Object(E.a)(),{cartTotals:S,cartIsLoading:k,cartNeedsShipping:w,paymentRequirements:j}=_,C=Object(n.useRef)({cart:_,cartTotals:S,cartNeedsShipping:w,billingData:u,shippingAddress:p,selectedShippingMethods:y,paymentRequirements:j}),{createErrorNotice:R}=Object(s.useDispatch)("core/notices");Object(n.useEffect)(()=>{C.current={cart:_,cartTotals:S,cartNeedsShipping:w,billingData:u,shippingAddress:p,selectedShippingMethods:y,paymentRequirements:j}},[_,S,w,u,p,y,j]);const T=Object(n.useCallback)(async()=>{let r={};const n=e=>{r={...r,[e.name]:e}};for(let e=0;e<v.length;e++){const r=v[e],s=t[r];if(s)try{const e=!!i||await Promise.resolve(s.canMakePayment(C.current));if(e){if("object"==typeof e&&null!==e&&e.error)throw new Error(e.error.message);n(s)}}catch(e){if(f.CURRENT_USER_IS_ADMIN||i){const t=Object(d.sprintf)(
1
+ !function(e){function t(t){for(var r,o,s=t[0],c=t[1],a=0,l=[];a<s.length;a++)o=s[a],Object.prototype.hasOwnProperty.call(n,o)&&n[o]&&l.push(n[o][0]),n[o]=0;for(r in c)Object.prototype.hasOwnProperty.call(c,r)&&(e[r]=c[r]);for(i&&i(t);l.length;)l.shift()()}var r={},n={28:0,7:0,73:0};function o(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}o.e=function(e){var t=[],r=n[e];if(0!==r)if(r)t.push(r[2]);else{var s=new Promise((function(t,o){r=n[e]=[t,o]}));t.push(r[2]=s);var c,a=document.createElement("script");a.charset="utf-8",a.timeout=120,o.nc&&a.setAttribute("nonce",o.nc),a.src=function(e){return o.p+""+({0:"vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66",1:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--decc3dc6",2:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--5b8feb0b",3:"vendors--cart-blocks/cart-line-items--checkout-blocks/order-summary-cart-items--mini-cart-contents---233ab542",5:"cart-blocks/order-summary-shipping--checkout-blocks/order-summary-shipping",6:"checkout-blocks/billing-address--checkout-blocks/shipping-address",29:"checkout-blocks/actions",30:"checkout-blocks/billing-address",31:"checkout-blocks/contact-information",32:"checkout-blocks/express-payment",33:"checkout-blocks/fields",34:"checkout-blocks/order-note",35:"checkout-blocks/order-summary",36:"checkout-blocks/order-summary-cart-items",37:"checkout-blocks/order-summary-coupon-form",38:"checkout-blocks/order-summary-discount",39:"checkout-blocks/order-summary-fee",40:"checkout-blocks/order-summary-shipping",41:"checkout-blocks/order-summary-subtotal",42:"checkout-blocks/order-summary-taxes",43:"checkout-blocks/payment",44:"checkout-blocks/shipping-address",45:"checkout-blocks/shipping-methods",46:"checkout-blocks/terms",47:"checkout-blocks/totals"}[e]||e)+"-frontend.js?ver="+{0:"1d36f73838f02eb72b0e",1:"e2dda84269ff5f357820",2:"bb568a01ffa114ca1394",3:"deab3ee0c5c13d3addc8",5:"4633d7aaf0d614913380",6:"b7e8e209f19b2dfc3f1a",29:"c70761df36c347744b7f",30:"8ade0643c2f8f6de39d7",31:"8e4a9e779ef986c851d1",32:"75cfc5089e37e6cea18a",33:"6c417856716e619d4eab",34:"00a8ffe40a8def4d59cd",35:"42fdf72f019377ecb9e2",36:"55380a01ec0ddc85d3e2",37:"e42d25e24158d480f753",38:"f727192ff1741d60fbbe",39:"129decb8cde927bf3a98",40:"4b4e4e6e20e654221c32",41:"03e865ea44e97b8bcd21",42:"1d64fdc9d75c199baace",43:"a6e82aea2ef27e29541f",44:"f760b5a5731985515963",45:"4249c8f1e34e087b4e95",46:"4145417370f868268ffc",47:"2c6124e92a358fa89656"}[e]}(e);var i=new Error;c=function(t){a.onerror=a.onload=null,clearTimeout(l);var r=n[e];if(0!==r){if(r){var o=t&&("load"===t.type?"missing":t.type),s=t&&t.target&&t.target.src;i.message="Loading chunk "+e+" failed.\n("+o+": "+s+")",i.name="ChunkLoadError",i.type=o,i.request=s,r[1](i)}n[e]=void 0}};var l=setTimeout((function(){c({type:"timeout",target:a})}),12e4);a.onerror=a.onload=c,document.head.appendChild(a)}return Promise.all(t)},o.m=e,o.c=r,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)o.d(r,n,function(t){return e[t]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o.oe=function(e){throw console.error(e),e};var s=window.webpackWcBlocksJsonp=window.webpackWcBlocksJsonp||[],c=s.push.bind(s);s.push=t,s=s.slice();for(var a=0;a<s.length;a++)t(s[a]);var i=c;o(o.s=226)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wc.wcSettings},function(e,t){e.exports=window.React},function(e,t,r){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var s=typeof n;if("string"===s||"number"===s)e.push(n);else if(Array.isArray(n)){if(n.length){var c=o.apply(null,n);c&&e.push(c)}}else if("object"===s)if(n.toString===Object.prototype.toString)for(var a in n)r.call(n,a)&&n[a]&&e.push(a);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},function(e,t){e.exports=window.wc.wcBlocksData},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.data},function(e,t,r){"use strict";function n(){return(n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}r.d(t,"a",(function(){return n}))},,function(e,t){e.exports=window.wc.blocksCheckout},function(e,t){function r(){return e.exports=r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,r.apply(this,arguments)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.isShallowEqual},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.primitives},function(e,t,r){"use strict";var n=r(19),o=r.n(n),s=r(0),c=r(3),a=r(1),i=r(44),l=e=>{let{imageUrl:t=i.l+"/block-error.svg",header:r=Object(a.__)("Oops!","woocommerce"),text:n=Object(a.__)("There was an error loading the content.","woocommerce"),errorMessage:o,errorMessagePrefix:c=Object(a.__)("Error:","woocommerce"),button:l,showErrorBlock:u=!0}=e;return u?Object(s.createElement)("div",{className:"wc-block-error wc-block-components-error"},t&&Object(s.createElement)("img",{className:"wc-block-error__image wc-block-components-error__image",src:t,alt:""}),Object(s.createElement)("div",{className:"wc-block-error__content wc-block-components-error__content"},r&&Object(s.createElement)("p",{className:"wc-block-error__header wc-block-components-error__header"},r),n&&Object(s.createElement)("p",{className:"wc-block-error__text wc-block-components-error__text"},n),o&&Object(s.createElement)("p",{className:"wc-block-error__message wc-block-components-error__message"},c?c+" ":"",o),l&&Object(s.createElement)("p",{className:"wc-block-error__button wc-block-components-error__button"},l))):null};r(33);class u extends c.Component{constructor(){super(...arguments),o()(this,"state",{errorMessage:"",hasError:!1})}static getDerivedStateFromError(e){return void 0!==e.statusText&&void 0!==e.status?{errorMessage:Object(s.createElement)(s.Fragment,null,Object(s.createElement)("strong",null,e.status),": ",e.statusText),hasError:!0}:{errorMessage:e.message,hasError:!0}}render(){const{header:e,imageUrl:t,showErrorMessage:r=!0,showErrorBlock:n=!0,text:o,errorMessagePrefix:c,renderError:a,button:i}=this.props,{errorMessage:u,hasError:d}=this.state;return d?"function"==typeof a?a({errorMessage:u}):Object(s.createElement)(l,{showErrorBlock:n,errorMessage:r?u:null,header:e,imageUrl:t,text:o,errorMessagePrefix:c,button:i}):this.props.children}}t.a=u},function(e,t){e.exports=window.wc.wcBlocksRegistry},function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.a11y},,,,function(e,t,r){"use strict";(function(e){var n=r(0);r(38);const o=Object(n.createContext)({slots:{},fills:{},registerSlot:()=>{void 0!==e&&e.env},updateSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{}});t.a=o}).call(this,r(63))},function(e,t){e.exports=window.wp.apiFetch},,function(e,t,r){"use strict";r.d(t,"a",(function(){return s}));var n=r(0);r(7);const o=Object(n.createContext)({isEditor:!1,currentPostId:0,currentView:"",previewData:{},getPreviewData:()=>{}}),s=()=>Object(n.useContext)(o)},,function(e,t,r){"use strict";r.d(t,"c",(function(){return s})),r.d(t,"a",(function(){return i})),r.d(t,"b",(function(){return l})),r.d(t,"d",(function(){return d}));var n=r(61);let o,s;!function(e){e.SUCCESS="success",e.FAIL="failure",e.ERROR="error"}(o||(o={})),function(e){e.PAYMENTS="wc/payment-area",e.EXPRESS_PAYMENTS="wc/express-payment-area"}(s||(s={}));const c=(e,t)=>Object(n.a)(e)&&"type"in e&&e.type===t,a=e=>c(e,o.SUCCESS),i=e=>c(e,o.ERROR),l=e=>c(e,o.FAIL),u=e=>!Object(n.a)(e)||void 0===e.retry||!0===e.retry,d=()=>({responseTypes:o,noticeContexts:s,shouldRetry:u,isSuccessResponse:a,isErrorResponse:i,isFailResponse:l})},function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(0),o=r(12),s=r.n(o);function c(e){const t=Object(n.useRef)(e);return s()(e,t.current)||(t.current=e),t.current}},function(e,t,r){"use strict";r.d(t,"a",(function(){return y}));var n=r(6),o=r(0),s=r(5),c=r(7),a=r(18),i=r(118),l=r(27),u=r(68);const d=e=>{const t=e.detail;t&&t.preserveCartData||Object(c.dispatch)(s.CART_STORE_KEY).invalidateResolutionForStore()},p=()=>{1===window.wcBlocksStoreCartListeners.count&&window.wcBlocksStoreCartListeners.remove(),window.wcBlocksStoreCartListeners.count--},m=()=>{Object(o.useEffect)(()=>((()=>{if(window.wcBlocksStoreCartListeners||(window.wcBlocksStoreCartListeners={count:0,remove:()=>{}}),0===window.wcBlocksStoreCartListeners.count){const e=Object(u.b)("added_to_cart","wc-blocks_added_to_cart"),t=Object(u.b)("removed_from_cart","wc-blocks_removed_from_cart");document.body.addEventListener("wc-blocks_added_to_cart",d),document.body.addEventListener("wc-blocks_removed_from_cart",d),window.wcBlocksStoreCartListeners.count=0,window.wcBlocksStoreCartListeners.remove=()=>{e(),t(),document.body.removeEventListener("wc-blocks_added_to_cart",d),document.body.removeEventListener("wc-blocks_removed_from_cart",d)}}window.wcBlocksStoreCartListeners.count++})(),p),[])},f={first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},h={...f,email:""},b={total_items:"",total_items_tax:"",total_fees:"",total_fees_tax:"",total_discount:"",total_discount_tax:"",total_shipping:"",total_shipping_tax:"",total_price:"",total_tax:"",tax_lines:s.EMPTY_TAX_LINES,currency_code:"",currency_symbol:"",currency_minor_unit:2,currency_decimal_separator:"",currency_thousand_separator:"",currency_prefix:"",currency_suffix:""},g=e=>Object.fromEntries(Object.entries(e).map(e=>{let[t,r]=e;return[t,Object(a.decodeEntities)(r)]})),E={cartCoupons:s.EMPTY_CART_COUPONS,cartItems:s.EMPTY_CART_ITEMS,cartFees:s.EMPTY_CART_FEES,cartItemsCount:0,cartItemsWeight:0,cartNeedsPayment:!0,cartNeedsShipping:!0,cartItemErrors:s.EMPTY_CART_ITEM_ERRORS,cartTotals:b,cartIsLoading:!0,cartErrors:s.EMPTY_CART_ERRORS,billingAddress:h,shippingAddress:f,shippingRates:s.EMPTY_SHIPPING_RATES,isLoadingRates:!1,cartHasCalculatedShipping:!1,paymentRequirements:s.EMPTY_PAYMENT_REQUIREMENTS,receiveCart:()=>{},extensions:s.EMPTY_EXTENSIONS},y=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{shouldSelect:!0};const{isEditor:t,previewData:r}=Object(l.a)(),a=null==r?void 0:r.previewCart,{shouldSelect:u}=e,d=Object(o.useRef)();m();const p=Object(c.useSelect)((e,r)=>{let{dispatch:n}=r;if(!u)return E;if(t)return{cartCoupons:a.coupons,cartItems:a.items,cartFees:a.fees,cartItemsCount:a.items_count,cartItemsWeight:a.items_weight,cartNeedsPayment:a.needs_payment,cartNeedsShipping:a.needs_shipping,cartItemErrors:s.EMPTY_CART_ITEM_ERRORS,cartTotals:a.totals,cartIsLoading:!1,cartErrors:s.EMPTY_CART_ERRORS,billingAddress:h,shippingAddress:f,extensions:s.EMPTY_EXTENSIONS,shippingRates:a.shipping_rates,isLoadingRates:!1,cartHasCalculatedShipping:a.has_calculated_shipping,paymentRequirements:a.paymentRequirements,receiveCart:"function"==typeof(null==a?void 0:a.receiveCart)?a.receiveCart:()=>{}};const o=e(s.CART_STORE_KEY),c=o.getCartData(),l=o.getCartErrors(),d=o.getCartTotals(),p=!o.hasFinishedResolution("getCartData"),m=o.isCustomerDataUpdating(),{receiveCart:b}=n(s.CART_STORE_KEY),y=g(c.billingAddress),O=c.needsShipping?g(c.shippingAddress):y,v=c.fees.length>0?c.fees.map(e=>g(e)):s.EMPTY_CART_FEES;return{cartCoupons:c.coupons.length>0?c.coupons.map(e=>({...e,label:e.code})):s.EMPTY_CART_COUPONS,cartItems:c.items,cartFees:v,cartItemsCount:c.itemsCount,cartItemsWeight:c.itemsWeight,cartNeedsPayment:c.needsPayment,cartNeedsShipping:c.needsShipping,cartItemErrors:c.errors,cartTotals:d,cartIsLoading:p,cartErrors:l,billingAddress:Object(i.a)(y),shippingAddress:Object(i.a)(O),extensions:c.extensions,shippingRates:c.shippingRates,isLoadingRates:m,cartHasCalculatedShipping:c.hasCalculatedShipping,paymentRequirements:c.paymentRequirements,receiveCart:b}},[u]);return d.current&&Object(n.isEqual)(d.current,p)||(d.current=p),d.current}},function(e,t){e.exports=window.wp.deprecated},function(e,t){},function(e,t,r){"use strict";r.d(t,"b",(function(){return A})),r.d(t,"a",(function(){return P}));var n=r(0),o=r(1),s=r(58),c=r(32),a=r.n(c),i=r(52),l=r(61),u=r(7);let d;!function(e){e.SET_IDLE="set_idle",e.SET_PRISTINE="set_pristine",e.SET_REDIRECT_URL="set_redirect_url",e.SET_COMPLETE="set_checkout_complete",e.SET_BEFORE_PROCESSING="set_before_processing",e.SET_AFTER_PROCESSING="set_after_processing",e.SET_PROCESSING_RESPONSE="set_processing_response",e.SET_PROCESSING="set_checkout_is_processing",e.SET_HAS_ERROR="set_checkout_has_error",e.SET_NO_ERROR="set_checkout_no_error",e.SET_CUSTOMER_ID="set_checkout_customer_id",e.SET_ORDER_ID="set_checkout_order_id",e.SET_ORDER_NOTES="set_checkout_order_notes",e.INCREMENT_CALCULATING="increment_calculating",e.DECREMENT_CALCULATING="decrement_calculating",e.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS="set_shipping_address_as_billing_address",e.SET_SHOULD_CREATE_ACCOUNT="set_should_create_account",e.SET_EXTENSION_DATA="set_extension_data"}(d||(d={}));const p=()=>({type:d.SET_IDLE}),m=e=>({type:d.SET_REDIRECT_URL,redirectUrl:e}),f=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return{type:d.SET_COMPLETE,data:e}},h=function(){let e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];return{type:e?d.SET_HAS_ERROR:d.SET_NO_ERROR}};var b=r(2),g=r(118);let E;!function(e){e.PRISTINE="pristine",e.IDLE="idle",e.PROCESSING="processing",e.COMPLETE="complete",e.BEFORE_PROCESSING="before_processing",e.AFTER_PROCESSING="after_processing"}(E||(E={}));const y={order_id:0,customer_id:0,billing_address:{},shipping_address:{},...Object(b.getSetting)("checkoutData",{})||{}},O={redirectUrl:"",status:E.PRISTINE,hasError:!1,calculatingCount:0,orderId:y.order_id,orderNotes:"",customerId:y.customer_id,useShippingAsBilling:Object(g.b)(y.billing_address,y.shipping_address),shouldCreateAccount:!1,processingResponse:null,extensionData:{}},v=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:O,{redirectUrl:t,type:r,customerId:n,orderId:o,orderNotes:s,extensionData:c,useShippingAsBilling:a,shouldCreateAccount:i,data:l}=arguments.length>1?arguments[1]:void 0,u=e;switch(r){case d.SET_PRISTINE:u=O;break;case d.SET_IDLE:u=e.status!==E.IDLE?{...e,status:E.IDLE}:e;break;case d.SET_REDIRECT_URL:u=void 0!==t&&t!==e.redirectUrl?{...e,redirectUrl:t}:e;break;case d.SET_PROCESSING_RESPONSE:u={...e,processingResponse:l};break;case d.SET_COMPLETE:u=e.status!==E.COMPLETE?{...e,status:E.COMPLETE,redirectUrl:"string"==typeof(null==l?void 0:l.redirectUrl)?l.redirectUrl:e.redirectUrl}:e;break;case d.SET_PROCESSING:u=e.status!==E.PROCESSING?{...e,status:E.PROCESSING,hasError:!1}:e,u=!1===u.hasError?u:{...u,hasError:!1};break;case d.SET_BEFORE_PROCESSING:u=e.status!==E.BEFORE_PROCESSING?{...e,status:E.BEFORE_PROCESSING,hasError:!1}:e;break;case d.SET_AFTER_PROCESSING:u=e.status!==E.AFTER_PROCESSING?{...e,status:E.AFTER_PROCESSING}:e;break;case d.SET_HAS_ERROR:u=e.hasError?e:{...e,hasError:!0},u=e.status===E.PROCESSING||e.status===E.BEFORE_PROCESSING?{...u,status:E.IDLE}:u;break;case d.SET_NO_ERROR:u=e.hasError?{...e,hasError:!1}:e;break;case d.INCREMENT_CALCULATING:u={...e,calculatingCount:e.calculatingCount+1};break;case d.DECREMENT_CALCULATING:u={...e,calculatingCount:Math.max(0,e.calculatingCount-1)};break;case d.SET_CUSTOMER_ID:u=void 0!==n?{...e,customerId:n}:e;break;case d.SET_ORDER_ID:u=void 0!==o?{...e,orderId:o}:e;break;case d.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS:void 0!==a&&a!==e.useShippingAsBilling&&(u={...e,useShippingAsBilling:a});break;case d.SET_SHOULD_CREATE_ACCOUNT:void 0!==i&&i!==e.shouldCreateAccount&&(u={...e,shouldCreateAccount:i});break;case d.SET_ORDER_NOTES:void 0!==s&&e.orderNotes!==s&&(u={...e,orderNotes:s});break;case d.SET_EXTENSION_DATA:void 0!==c&&e.extensionData!==c&&(u={...e,extensionData:c})}return u!==e&&r!==d.SET_PRISTINE&&u.status===E.PRISTINE&&(u.status=E.IDLE),u};var _=r(18),S=r(91),k=r(197);var w=r(199),j=r(194),C=r(40),R=r(29),T=r(77);const x=Object(n.createContext)({dispatchActions:{resetCheckout:()=>{},setRedirectUrl:e=>{},setHasError:e=>{},setAfterProcessing:e=>{},incrementCalculating:()=>{},decrementCalculating:()=>{},setCustomerId:e=>{},setOrderId:e=>{},setOrderNotes:e=>{},setExtensionData:e=>{}},onSubmit:()=>{},isComplete:!1,isIdle:!1,isCalculating:!1,isProcessing:!1,isBeforeProcessing:!1,isAfterProcessing:!1,hasError:!1,redirectUrl:"",orderId:0,orderNotes:"",customerId:0,onCheckoutAfterProcessingWithSuccess:()=>()=>{},onCheckoutAfterProcessingWithError:()=>()=>{},onCheckoutBeforeProcessing:()=>()=>{},onCheckoutValidationBeforeProcessing:()=>()=>{},hasOrder:!1,isCart:!1,useShippingAsBilling:!1,setUseShippingAsBilling:e=>{},shouldCreateAccount:!1,setShouldCreateAccount:e=>{},extensionData:{}}),A=()=>Object(n.useContext)(x),P=e=>{let{children:t,redirectUrl:r,isCart:c=!1}=e;O.redirectUrl=r;const[b,g]=Object(n.useReducer)(v,O),{setValidationErrors:y}=Object(j.b)(),{createErrorNotice:A}=Object(u.useDispatch)("core/notices"),{dispatchCheckoutEvent:P}=Object(C.a)(),N=b.calculatingCount>0,{isSuccessResponse:M,isErrorResponse:I,isFailResponse:D,shouldRetry:L}=Object(R.d)(),{checkoutNotices:F,paymentNotices:U,expressPaymentNotices:V}=(()=>{const{noticeContexts:e}=Object(R.d)();return{checkoutNotices:Object(u.useSelect)(e=>e("core/notices").getNotices("wc/checkout"),[]),expressPaymentNotices:Object(u.useSelect)(t=>t("core/notices").getNotices(e.EXPRESS_PAYMENTS),[e.EXPRESS_PAYMENTS]),paymentNotices:Object(u.useSelect)(t=>t("core/notices").getNotices(e.PAYMENTS),[e.PAYMENTS])}})(),[B,H]=Object(n.useReducer)(S.b,{}),z=Object(n.useRef)(B),{onCheckoutAfterProcessingWithSuccess:G,onCheckoutAfterProcessingWithError:Y,onCheckoutValidationBeforeProcessing:q}=(e=>Object(n.useMemo)(()=>({onCheckoutAfterProcessingWithSuccess:Object(k.a)("checkout_after_processing_with_success",e),onCheckoutAfterProcessingWithError:Object(k.a)("checkout_after_processing_with_error",e),onCheckoutValidationBeforeProcessing:Object(k.a)("checkout_validation_before_processing",e)}),[e]))(H);Object(n.useEffect)(()=>{z.current=B},[B]);const W=Object(n.useMemo)(()=>function(){return a()("onCheckoutBeforeProcessing",{alternative:"onCheckoutValidationBeforeProcessing",plugin:"WooCommerce Blocks"}),q(...arguments)},[q]),K=Object(n.useMemo)(()=>({resetCheckout:()=>{g({type:d.SET_PRISTINE})},setRedirectUrl:e=>{g(m(e))},setHasError:e=>{g(h(e))},incrementCalculating:()=>{g({type:d.INCREMENT_CALCULATING})},decrementCalculating:()=>{g({type:d.DECREMENT_CALCULATING})},setCustomerId:e=>{var t;g((t=e,{type:d.SET_CUSTOMER_ID,customerId:t}))},setOrderId:e=>{g((e=>({type:d.SET_ORDER_ID,orderId:e}))(e))},setOrderNotes:e=>{g((e=>({type:d.SET_ORDER_NOTES,orderNotes:e}))(e))},setExtensionData:e=>{g((e=>({type:d.SET_EXTENSION_DATA,extensionData:e}))(e))},setAfterProcessing:e=>{const t=(e=>{const t={message:"",paymentStatus:"",redirectUrl:"",paymentDetails:{}};return"payment_result"in e&&(t.paymentStatus=e.payment_result.payment_status,t.redirectUrl=e.payment_result.redirect_url,e.payment_result.hasOwnProperty("payment_details")&&Array.isArray(e.payment_result.payment_details)&&e.payment_result.payment_details.forEach(e=>{let{key:r,value:n}=e;t.paymentDetails[r]=Object(_.decodeEntities)(n)})),"message"in e&&(t.message=Object(_.decodeEntities)(e.message)),!t.message&&"data"in e&&"status"in e.data&&e.data.status>299&&(t.message=Object(o.__)("Something went wrong. Please contact us to get assistance.","woocommerce")),t})(e);var r;g(m((null==t?void 0:t.redirectUrl)||"")),g((r=t,{type:d.SET_PROCESSING_RESPONSE,data:r})),g({type:d.SET_AFTER_PROCESSING})}}),[]);Object(n.useEffect)(()=>{b.status===E.BEFORE_PROCESSING&&(Object(T.b)("error"),Object(w.a)(z.current,"checkout_validation_before_processing",{}).then(e=>{!0!==e?(Array.isArray(e)&&e.forEach(e=>{let{errorMessage:t,validationErrors:r}=e;A(t,{context:"wc/checkout"}),y(r)}),g(p()),g(h())):g({type:d.SET_PROCESSING})}))},[b.status,y,A,g]);const $=Object(s.a)(b.status),X=Object(s.a)(b.hasError);Object(n.useEffect)(()=>{if((b.status!==$||b.hasError!==X)&&b.status===E.AFTER_PROCESSING){const e={redirectUrl:b.redirectUrl,orderId:b.orderId,customerId:b.customerId,orderNotes:b.orderNotes,processingResponse:b.processingResponse};b.hasError?Object(w.b)(z.current,"checkout_after_processing_with_error",e).then(t=>{const r=(e=>{let t=null;return e.forEach(e=>{if((I(e)||D(e))&&e.message&&Object(i.a)(e.message)){const r=e.messageContext&&Object(i.a)(e.messageContent)?{context:e.messageContext}:void 0;t=e,A(e.message,r)}}),t})(t);if(null!==r)L(r)?g(p()):g(f(r));else{if(!(F.some(e=>"error"===e.status)||V.some(e=>"error"===e.status)||U.some(e=>"error"===e.status))){var n;const t=(null===(n=e.processingResponse)||void 0===n?void 0:n.message)||Object(o.__)("Something went wrong. Please contact us to get assistance.","woocommerce");A(t,{id:"checkout",context:"wc/checkout"})}g(p())}}):Object(w.b)(z.current,"checkout_after_processing_with_success",e).then(e=>{let t=null,r=null;if(e.forEach(e=>{M(e)&&(t=e),(I(e)||D(e))&&(r=e)}),t&&!r)g(f(t));else if(Object(l.a)(r)){if(r.message&&Object(i.a)(r.message)){const e=r.messageContext&&Object(i.a)(r.messageContext)?{context:r.messageContext}:void 0;A(r.message,e)}L(r)?g(h(!0)):g(f(r))}else g(f())})}},[b.status,b.hasError,b.redirectUrl,b.orderId,b.customerId,b.orderNotes,b.processingResponse,$,X,K,A,I,D,M,L,F,V,U]);const J={onSubmit:Object(n.useCallback)(()=>{P("submit"),g({type:d.SET_BEFORE_PROCESSING})},[P]),isComplete:b.status===E.COMPLETE,isIdle:b.status===E.IDLE,isCalculating:N,isProcessing:b.status===E.PROCESSING,isBeforeProcessing:b.status===E.BEFORE_PROCESSING,isAfterProcessing:b.status===E.AFTER_PROCESSING,hasError:b.hasError,redirectUrl:b.redirectUrl,onCheckoutBeforeProcessing:W,onCheckoutValidationBeforeProcessing:q,onCheckoutAfterProcessingWithSuccess:G,onCheckoutAfterProcessingWithError:Y,dispatchActions:K,isCart:c,orderId:b.orderId,hasOrder:!!b.orderId,customerId:b.customerId,orderNotes:b.orderNotes,useShippingAsBilling:b.useShippingAsBilling,setUseShippingAsBilling:e=>{return g((t=e,{type:d.SET_SHIPPING_ADDRESS_AS_BILLING_ADDRESS,useShippingAsBilling:t}));var t},shouldCreateAccount:b.shouldCreateAccount,setShouldCreateAccount:e=>{return g((t=e,{type:d.SET_SHOULD_CREATE_ACCOUNT,shouldCreateAccount:t}));var t},extensionData:b.extensionData};return Object(n.createElement)(x.Provider,{value:J},t)}},,,function(e,t){e.exports=window.wc.priceFormat},function(e,t){e.exports=window.wp.warning},function(e,t){e.exports=window.wp.hooks},function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(39),o=r(0),s=r(31);const c=()=>{const e=Object(s.a)(),t=Object(o.useRef)(e);return Object(o.useEffect)(()=>{t.current=e},[e]),{dispatchStoreEvent:Object(o.useCallback)((function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-"+e,t)}catch(e){console.error(e)}}),[]),dispatchCheckoutEvent:Object(o.useCallback)((function(e){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(n.doAction)("experimental__woocommerce_blocks-checkout-"+e,{...r,storeCart:t.current})}catch(e){console.error(e)}}),[])}}},function(e,t,r){"use strict";var n=r(8),o=r(0),s=r(15),c=function({icon:e,className:t,...r}){const s=["dashicon","dashicons","dashicons-"+e,t].filter(Boolean).join(" ");return Object(o.createElement)("span",Object(n.a)({className:s},r))};t.a=function({icon:e=null,size:t=24,...r}){if("string"==typeof e)return Object(o.createElement)(c,Object(n.a)({icon:e},r));if(Object(o.isValidElement)(e)&&c===e.type)return Object(o.cloneElement)(e,{...r});if("function"==typeof e)return e.prototype instanceof o.Component?Object(o.createElement)(e,{size:t,...r}):e({size:t,...r});if(e&&("svg"===e.type||e.type===s.SVG)){const n={width:t,height:t,...e.props,...r};return Object(o.createElement)(s.SVG,n)}return Object(o.isValidElement)(e)?Object(o.cloneElement)(e,{size:t,...r}):e}},function(e,t,r){"use strict";var n=r(4),o=r.n(n),s=r(0);t.a=Object(s.forwardRef)((function({as:e="div",className:t,...r},n){return function({as:e="div",...t}){return"function"==typeof t.children?t.children(t):Object(s.createElement)(e,t)}({as:e,className:o()("components-visually-hidden",t),...r,ref:n})}))},,function(e,t,r){"use strict";r.d(t,"n",(function(){return s})),r.d(t,"l",(function(){return c})),r.d(t,"k",(function(){return a})),r.d(t,"m",(function(){return i})),r.d(t,"i",(function(){return l})),r.d(t,"d",(function(){return u})),r.d(t,"f",(function(){return d})),r.d(t,"j",(function(){return p})),r.d(t,"c",(function(){return m})),r.d(t,"e",(function(){return f})),r.d(t,"g",(function(){return h})),r.d(t,"a",(function(){return b})),r.d(t,"h",(function(){return g})),r.d(t,"b",(function(){return E}));var n,o=r(2);const s=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),c=s.pluginUrl+"images/",a=s.pluginUrl+"build/",i=s.buildPhase,l=null===(n=o.STORE_PAGES.shop)||void 0===n?void 0:n.permalink,u=(o.STORE_PAGES.checkout.id,o.STORE_PAGES.checkout.permalink),d=o.STORE_PAGES.privacy.permalink,p=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),m=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id,o.STORE_PAGES.cart.permalink),f=o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),h=Object(o.getSetting)("shippingCountries",{}),b=Object(o.getSetting)("allowedCountries",{}),g=Object(o.getSetting)("shippingStates",{}),E=Object(o.getSetting)("allowedStates",{})},function(e,t,r){"use strict";var n=r(2),o=r(1),s=r(69),c=r(52);const a=Object(n.getSetting)("countryLocale",{}),i=e=>{const t={};return void 0!==e.label&&(t.label=e.label),void 0!==e.required&&(t.required=e.required),void 0!==e.hidden&&(t.hidden=e.hidden),void 0===e.label||e.optionalLabel||(t.optionalLabel=Object(o.sprintf)(
2
  /* translators: %s Field label. */
3
  Object(o.__)("%s (optional)","woocommerce"),e.label)),e.priority&&(Object(s.a)(e.priority)&&(t.index=e.priority),Object(c.a)(e.priority)&&(t.index=parseInt(e.priority,10))),e.hidden&&(t.required=!1),t},l=Object.entries(a).map(e=>{let[t,r]=e;return[t,Object.entries(r).map(e=>{let[t,r]=e;return[t,i(r)]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{})]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{});t.a=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";const o=r&&void 0!==l[r]?l[r]:{};return e.map(e=>({key:e,...n.defaultAddressFields[e]||{},...o[e]||{},...t[e]||{}})).sort((e,t)=>e.index-t.index)}},function(e,t,r){"use strict";r.d(t,"b",(function(){return c})),r.d(t,"a",(function(){return a}));var n=r(0),o=r(65);const s=Object(n.createContext)({isInitialized:!1,billingData:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",email:"",phone:""},shippingAddress:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},setBillingData:()=>{},setShippingAddress:()=>{}}),c=()=>Object(n.useContext)(s),a=e=>{let{children:t}=e;const r=Object(o.a)();return Object(n.createElement)(s.Provider,{value:r},t)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t,r){var o=this,s=Object(n.useRef)(null),c=Object(n.useRef)(0),a=Object(n.useRef)(null),i=Object(n.useRef)([]),l=Object(n.useRef)(),u=Object(n.useRef)(),d=Object(n.useRef)(e),p=Object(n.useRef)(!0);d.current=e;var m=!t&&0!==t&&"undefined"!=typeof window;if("function"!=typeof e)throw new TypeError("Expected a function");t=+t||0;var f=!!(r=r||{}).leading,h=!("trailing"in r)||!!r.trailing,b="maxWait"in r,g=b?Math.max(+r.maxWait||0,t):null;return Object(n.useEffect)((function(){return p.current=!0,function(){p.current=!1}}),[]),Object(n.useMemo)((function(){var e=function(e){var t=i.current,r=l.current;return i.current=l.current=null,c.current=e,u.current=d.current.apply(r,t)},r=function(e,t){m&&cancelAnimationFrame(a.current),a.current=m?requestAnimationFrame(e):setTimeout(e,t)},n=function(e){if(!p.current)return!1;var r=e-s.current,n=e-c.current;return!s.current||r>=t||r<0||b&&n>=g},E=function(t){return a.current=null,h&&i.current?e(t):(i.current=l.current=null,u.current)},y=function(){var e=Date.now();if(n(e))return E(e);if(p.current){var o=e-s.current,a=e-c.current,i=t-o,l=b?Math.min(i,g-a):i;r(y,l)}},O=function(){for(var d=[],m=0;m<arguments.length;m++)d[m]=arguments[m];var h=Date.now(),g=n(h);if(i.current=d,l.current=o,s.current=h,g){if(!a.current&&p.current)return c.current=s.current,r(y,t),f?e(s.current):u.current;if(b)return r(y,t),e(s.current)}return a.current||r(y,t),u.current};return O.cancel=function(){a.current&&(m?cancelAnimationFrame(a.current):clearTimeout(a.current)),c.current=0,i.current=s.current=l.current=a.current=null},O.isPending=function(){return!!a.current},O.flush=function(){return a.current?E(Date.now()):u.current},O}),[f,b,t,g,h,m])}},function(e,t,r){"use strict";r.d(t,"a",(function(){return l}));var n=r(11),o=r.n(n),s=r(0),c=r(16);const a=[".wp-block-woocommerce-cart"],i=e=>{let{Block:t,containers:r,getProps:n=(()=>({})),getErrorBoundaryProps:a=(()=>({}))}=e;0!==r.length&&Array.prototype.forEach.call(r,(e,r)=>{const i=n(e,r),l=a(e,r),u={...e.dataset,...i.attributes||{}};(e=>{let{Block:t,container:r,attributes:n={},props:a={},errorBoundaryProps:i={}}=e;Object(s.render)(Object(s.createElement)(c.a,i,Object(s.createElement)(s.Suspense,{fallback:Object(s.createElement)("div",{className:"wc-block-placeholder"})},t&&Object(s.createElement)(t,o()({},a,{attributes:n})))),r,()=>{r.classList&&r.classList.remove("is-loading")})})({Block:t,container:e,props:i,attributes:u,errorBoundaryProps:l})})},l=e=>{const t=document.body.querySelectorAll(a.join(",")),{Block:r,getProps:n,getErrorBoundaryProps:o,selector:s}=e;(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrappers:s}=e;const c=document.body.querySelectorAll(o);s&&s.length>0&&Array.prototype.filter.call(c,e=>!((e,t)=>Array.prototype.some.call(t,t=>t.contains(e)&&!t.isSameNode(e)))(e,s)),i({Block:t,containers:c,getProps:r,getErrorBoundaryProps:n})})({Block:r,getProps:n,getErrorBoundaryProps:o,selector:s,wrappers:t}),Array.prototype.forEach.call(t,t=>{t.addEventListener("wc-blocks_render_blocks_frontend",()=>{(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrapper:s}=e;const c=s.querySelectorAll(o);i({Block:t,containers:c,getProps:r,getErrorBoundaryProps:n})})({...e,wrapper:t})})})}},,function(e,t,r){"use strict";var n=r(8),o=r(0),s=r(4),c=r.n(s),a=r(6),i=r(32),l=r.n(i),u=r(13),d=r(51),p=r(93),m=r(1);function f(e,t,r){const{defaultView:n}=t,{frameElement:o}=n;if(!o||t===r.ownerDocument)return e;const s=o.getBoundingClientRect();return new n.DOMRect(e.left+s.left,e.top+s.top,e.width,e.height)}let h=0;function b(e){const t=document.scrollingElement||document.body;e&&(h=t.scrollTop);const r=e?"add":"remove";t.classList[r]("lockscroll"),document.documentElement.classList[r]("lockscroll"),e||(t.scrollTop=h)}let g=0;function E(){return Object(o.useEffect)(()=>(0===g&&b(!0),++g,()=>{1===g&&b(!1),--g}),[]),null}var y=r(24);function O(e){const t=Object(o.useContext)(y.a),r=t.slots[e]||{},n=t.fills[e],s=Object(o.useMemo)(()=>n||[],[n]);return{...r,updateSlot:Object(o.useCallback)(r=>{t.updateSlot(e,r)},[e,t.updateSlot]),unregisterSlot:Object(o.useCallback)(r=>{t.unregisterSlot(e,r)},[e,t.unregisterSlot]),fills:s,registerFill:Object(o.useCallback)(r=>{t.registerFill(e,r)},[e,t.registerFill]),unregisterFill:Object(o.useCallback)(r=>{t.unregisterFill(e,r)},[e,t.unregisterFill])}}var v=Object(o.createContext)({registerSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},getSlot:()=>{},getFills:()=>{},subscribe:()=>{}});function _({name:e,children:t,registerFill:r,unregisterFill:n}){const s=(e=>{const{getSlot:t,subscribe:r}=Object(o.useContext)(v),[n,s]=Object(o.useState)(t(e));return Object(o.useEffect)(()=>(s(t(e)),r(()=>{s(t(e))})),[e]),n})(e),c=Object(o.useRef)({name:e,children:t});return Object(o.useLayoutEffect)(()=>(r(e,c.current),()=>n(e,c.current)),[]),Object(o.useLayoutEffect)(()=>{c.current.children=t,s&&s.forceUpdate()},[t]),Object(o.useLayoutEffect)(()=>{e!==c.current.name&&(n(c.current.name,c.current),c.current.name=e,r(e,c.current))},[e]),s&&s.node?(Object(a.isFunction)(t)&&(t=t(s.props.fillProps)),Object(o.createPortal)(t,s.node)):null}var S=e=>Object(o.createElement)(v.Consumer,null,({registerFill:t,unregisterFill:r})=>Object(o.createElement)(_,Object(n.a)({},e,{registerFill:t,unregisterFill:r})));class k extends o.Component{constructor(){super(...arguments),this.isUnmounted=!1,this.bindNode=this.bindNode.bind(this)}componentDidMount(){const{registerSlot:e}=this.props;e(this.props.name,this)}componentWillUnmount(){const{unregisterSlot:e}=this.props;this.isUnmounted=!0,e(this.props.name,this)}componentDidUpdate(e){const{name:t,unregisterSlot:r,registerSlot:n}=this.props;e.name!==t&&(r(e.name),n(t,this))}bindNode(e){this.node=e}forceUpdate(){this.isUnmounted||super.forceUpdate()}render(){const{children:e,name:t,fillProps:r={},getFills:n}=this.props,s=Object(a.map)(n(t,this),e=>{const t=Object(a.isFunction)(e.children)?e.children(r):e.children;return o.Children.map(t,(e,t)=>{if(!e||Object(a.isString)(e))return e;const r=e.key||t;return Object(o.cloneElement)(e,{key:r})})}).filter(Object(a.negate)(o.isEmptyElement));return Object(o.createElement)(o.Fragment,null,Object(a.isFunction)(e)?e(s):s)}}var w=e=>Object(o.createElement)(v.Consumer,null,({registerSlot:t,unregisterSlot:r,getFills:s})=>Object(o.createElement)(k,Object(n.a)({},e,{registerSlot:t,unregisterSlot:r,getFills:s})));function j(){const[,e]=Object(o.useState)({}),t=Object(o.useRef)(!0);return Object(o.useEffect)(()=>()=>{t.current=!1},[]),()=>{t.current&&e({})}}function C({name:e,children:t}){const r=O(e),n=Object(o.useRef)({rerender:j()});return Object(o.useEffect)(()=>(r.registerFill(n),()=>{r.unregisterFill(n)}),[r.registerFill,r.unregisterFill]),r.ref&&r.ref.current?("function"==typeof t&&(t=t(r.fillProps)),Object(o.createPortal)(t,r.ref.current)):null}var R=Object(o.forwardRef)((function({name:e,fillProps:t={},as:r="div",...s},c){const a=Object(o.useContext)(y.a),i=Object(o.useRef)();return Object(o.useLayoutEffect)(()=>(a.registerSlot(e,i,t),()=>{a.unregisterSlot(e,i)}),[a.registerSlot,a.unregisterSlot,e]),Object(o.useLayoutEffect)(()=>{a.updateSlot(e,t)}),Object(o.createElement)(r,Object(n.a)({ref:Object(u.useMergeRefs)([c,i])},s))}));function T(e){return Object(o.createElement)(o.Fragment,null,Object(o.createElement)(S,e),Object(o.createElement)(C,e))}r(12),o.Component;const x=Object(o.forwardRef)(({bubblesVirtually:e,...t},r)=>e?Object(o.createElement)(R,Object(n.a)({},t,{ref:r})):Object(o.createElement)(w,t));function A(e){return"appear"===e?"top":"left"}function P(e,t){const{paddingTop:r,paddingBottom:n,paddingLeft:o,paddingRight:s}=(c=t).ownerDocument.defaultView.getComputedStyle(c);var c;const a=r?parseInt(r,10):0,i=n?parseInt(n,10):0,l=o?parseInt(o,10):0,u=s?parseInt(s,10):0;return{x:e.left+l,y:e.top+a,width:e.width-l-u,height:e.height-a-i,left:e.left+l,right:e.right-u,top:e.top+a,bottom:e.bottom-i}}function N(e,t,r){r?e.getAttribute(t)!==r&&e.setAttribute(t,r):e.hasAttribute(t)&&e.removeAttribute(t)}function M(e,t,r=""){e.style[t]!==r&&(e.style[t]=r)}function I(e,t,r){r?e.classList.contains(t)||e.classList.add(t):e.classList.contains(t)&&e.classList.remove(t)}const D=Object(o.forwardRef)(({headerTitle:e,onClose:t,children:r,className:s,noArrow:a=!0,isAlternate:i,position:h="bottom right",range:b,focusOnMount:g="firstElement",anchorRef:y,shouldAnchorIncludePadding:v,anchorRect:_,getAnchorRect:S,expandOnMobile:k,animate:w=!0,onClickOutside:j,onFocusOutside:C,__unstableStickyBoundaryElement:R,__unstableSlotName:x="Popover",__unstableObserveElement:D,__unstableBoundaryParent:L,__unstableForcePosition:F,__unstableForceXAlignment:U,...V},B)=>{const H=Object(o.useRef)(null),z=Object(o.useRef)(null),G=Object(o.useRef)(),Y=Object(u.useViewportMatch)("medium","<"),[q,K]=Object(o.useState)(),$=O(x),X=k&&Y,[J,Q]=Object(u.useResizeObserver)();a=X||a,Object(o.useLayoutEffect)(()=>{if(X)return I(G.current,"is-without-arrow",a),I(G.current,"is-alternate",i),N(G.current,"data-x-axis"),N(G.current,"data-y-axis"),M(G.current,"top"),M(G.current,"left"),M(z.current,"maxHeight"),void M(z.current,"maxWidth");const e=()=>{if(!G.current||!z.current)return;let e=function(e,t,r,n=!1,o,s){if(t)return t;if(r){if(!e.current)return;const t=r(e.current);return f(t,t.ownerDocument||e.current.ownerDocument,s)}if(!1!==n){if(!(n&&window.Range&&window.Element&&window.DOMRect))return;if("function"==typeof(null==n?void 0:n.cloneRange))return f(Object(d.getRectangleFromRange)(n),n.endContainer.ownerDocument,s);if("function"==typeof(null==n?void 0:n.getBoundingClientRect)){const e=f(n.getBoundingClientRect(),n.ownerDocument,s);return o?e:P(e,n)}const{top:e,bottom:t}=n,r=e.getBoundingClientRect(),c=t.getBoundingClientRect(),a=f(new window.DOMRect(r.left,r.top,r.width,c.bottom-r.top),e.ownerDocument,s);return o?a:P(a,n)}if(!e.current)return;const{parentNode:c}=e.current,a=c.getBoundingClientRect();return o?a:P(a,c)}(H,_,S,y,v,G.current);if(!e)return;const{offsetParent:t,ownerDocument:r}=G.current;let n,o=0;if(t&&t!==r.body){const r=t.getBoundingClientRect();o=r.top,e=new window.DOMRect(e.left-r.left,e.top-r.top,e.width,e.height)}var s;L&&(n=null===(s=G.current.closest(".popover-slot"))||void 0===s?void 0:s.parentNode);const c=Q.height?Q:z.current.getBoundingClientRect(),{popoverTop:l,popoverLeft:u,xAxis:p,yAxis:b,contentHeight:g,contentWidth:E}=function(e,t,r="top",n,o,s,c,a,i){const[l,u="center",d]=r.split(" "),p=function(e,t,r,n,o,s,c,a){const{height:i}=t;if(o){const t=o.getBoundingClientRect().top+i-c;if(e.top<=t)return{yAxis:r,popoverTop:Math.min(e.bottom,t)}}let l=e.top+e.height/2;"bottom"===n?l=e.bottom:"top"===n&&(l=e.top);const u={popoverTop:l,contentHeight:(l-i/2>0?i/2:l)+(l+i/2>window.innerHeight?window.innerHeight-l:i/2)},d={popoverTop:e.top,contentHeight:e.top-10-i>0?i:e.top-10},p={popoverTop:e.bottom,contentHeight:e.bottom+10+i>window.innerHeight?window.innerHeight-10-e.bottom:i};let m,f=r,h=null;if(!o&&!a)if("middle"===r&&u.contentHeight===i)f="middle";else if("top"===r&&d.contentHeight===i)f="top";else if("bottom"===r&&p.contentHeight===i)f="bottom";else{f=d.contentHeight>p.contentHeight?"top":"bottom";const e="top"===f?d.contentHeight:p.contentHeight;h=e!==i?e:null}return m="middle"===f?u.popoverTop:"top"===f?d.popoverTop:p.popoverTop,{yAxis:f,popoverTop:m,contentHeight:h}}(e,t,l,d,n,0,s,a);return{...function(e,t,r,n,o,s,c,a,i){const{width:l}=t;"left"===r&&Object(m.isRTL)()?r="right":"right"===r&&Object(m.isRTL)()&&(r="left"),"left"===n&&Object(m.isRTL)()?n="right":"right"===n&&Object(m.isRTL)()&&(n="left");const u=Math.round(e.left+e.width/2),d={popoverLeft:u,contentWidth:(u-l/2>0?l/2:u)+(u+l/2>window.innerWidth?window.innerWidth-u:l/2)};let p=e.left;"right"===n?p=e.right:"middle"===s||i||(p=u);let f=e.right;"left"===n?f=e.left:"middle"===s||i||(f=u);const h={popoverLeft:p,contentWidth:p-l>0?l:p},b={popoverLeft:f,contentWidth:f+l>window.innerWidth?window.innerWidth-f:l};let g,E=r,y=null;if(!o&&!a)if("center"===r&&d.contentWidth===l)E="center";else if("left"===r&&h.contentWidth===l)E="left";else if("right"===r&&b.contentWidth===l)E="right";else{E=h.contentWidth>b.contentWidth?"left":"right";const e="left"===E?h.contentWidth:b.contentWidth;l>window.innerWidth&&(y=window.innerWidth),e!==l&&(E="center",d.popoverLeft=window.innerWidth/2)}if(g="center"===E?d.popoverLeft:"left"===E?h.popoverLeft:b.popoverLeft,c){const e=c.getBoundingClientRect();g=Math.min(g,e.right-l),Object(m.isRTL)()||(g=Math.max(g,0))}return{xAxis:E,popoverLeft:g,contentWidth:y}}(e,t,u,d,n,p.yAxis,c,a,i),...p}}(e,c,h,R,G.current,o,n,F,U);"number"==typeof l&&"number"==typeof u&&(M(G.current,"top",l+"px"),M(G.current,"left",u+"px")),I(G.current,"is-without-arrow",a||"center"===p&&"middle"===b),I(G.current,"is-alternate",i),N(G.current,"data-x-axis",p),N(G.current,"data-y-axis",b),M(z.current,"maxHeight","number"==typeof g?g+"px":""),M(z.current,"maxWidth","number"==typeof E?E+"px":""),K(({left:"right",right:"left"}[p]||"center")+" "+({top:"bottom",bottom:"top"}[b]||"middle"))};e();const{ownerDocument:t}=G.current,{defaultView:r}=t,n=r.setInterval(e,500);let o;const s=()=>{r.cancelAnimationFrame(o),o=r.requestAnimationFrame(e)};r.addEventListener("click",s),r.addEventListener("resize",e),r.addEventListener("scroll",e,!0);const c=function(e){if(e)return e.endContainer?e.endContainer.ownerDocument:e.top?e.top.ownerDocument:e.ownerDocument}(y);let l;return c&&c!==t&&(c.defaultView.addEventListener("resize",e),c.defaultView.addEventListener("scroll",e,!0)),D&&(l=new r.MutationObserver(e),l.observe(D,{attributes:!0})),()=>{r.clearInterval(n),r.removeEventListener("resize",e),r.removeEventListener("scroll",e,!0),r.removeEventListener("click",s),r.cancelAnimationFrame(o),c&&c!==t&&(c.defaultView.removeEventListener("resize",e),c.defaultView.removeEventListener("scroll",e,!0)),l&&l.disconnect()}},[X,_,S,y,v,h,Q,R,D,L]);const Z=(e,r)=>{if("focus-outside"===e&&C)C(r);else if("focus-outside"===e&&j){const e=new window.MouseEvent("click");Object.defineProperty(e,"target",{get:()=>r.relatedTarget}),l()("Popover onClickOutside prop",{since:"5.3",alternative:"onFocusOutside"}),j(e)}else t&&t()},[ee,te]=Object(u.__experimentalUseDialog)({focusOnMount:g,__unstableOnClose:Z,onClose:Z}),re=Object(u.useMergeRefs)([G,ee,B]),ne=Boolean(w&&q)&&function(e){if("loading"===e.type)return c()("components-animate__loading");const{type:t,origin:r=A(t)}=e;if("appear"===t){const[e,t="center"]=r.split(" ");return c()("components-animate__appear",{["is-from-"+t]:"center"!==t,["is-from-"+e]:"middle"!==e})}return"slide-in"===t?c()("components-animate__slide-in","is-from-"+r):void 0}({type:"appear",origin:q});let oe=Object(o.createElement)("div",Object(n.a)({className:c()("components-popover",s,ne,{"is-expanded":X,"is-without-arrow":a,"is-alternate":i})},V,{ref:re},te,{tabIndex:"-1"}),X&&Object(o.createElement)(E,null),X&&Object(o.createElement)("div",{className:"components-popover__header"},Object(o.createElement)("span",{className:"components-popover__header-title"},e),Object(o.createElement)(W,{className:"components-popover__close",icon:p.a,onClick:t})),Object(o.createElement)("div",{ref:z,className:"components-popover__content"},Object(o.createElement)("div",{style:{position:"relative"}},J,r)));return $.ref&&(oe=Object(o.createElement)(T,{name:x},oe)),y||_?oe:Object(o.createElement)("span",{ref:H},oe)});D.Slot=Object(o.forwardRef)((function({name:e="Popover"},t){return Object(o.createElement)(x,{bubblesVirtually:!0,name:e,className:"popover-slot",ref:t})}));var L=D,F=function({shortcut:e,className:t}){if(!e)return null;let r,n;return Object(a.isString)(e)&&(r=e),Object(a.isObject)(e)&&(r=e.display,n=e.ariaLabel),Object(o.createElement)("span",{className:t,"aria-label":n},r)};const U=Object(o.createElement)("div",{className:"event-catcher"}),V=({eventHandlers:e,child:t,childrenWithPopover:r})=>Object(o.cloneElement)(Object(o.createElement)("span",{className:"disabled-element-wrapper"},Object(o.cloneElement)(U,e),Object(o.cloneElement)(t,{children:r}),","),e),B=({child:e,eventHandlers:t,childrenWithPopover:r})=>Object(o.cloneElement)(e,{...t,children:r}),H=(e,t,r)=>{if(1!==o.Children.count(e))return;const n=o.Children.only(e);"function"==typeof n.props[t]&&n.props[t](r)};var z=function({children:e,position:t,text:r,shortcut:n}){const[s,c]=Object(o.useState)(!1),[i,l]=Object(o.useState)(!1),d=Object(u.useDebounce)(l,700),p=t=>{H(e,"onMouseDown",t),document.addEventListener("mouseup",h),c(!0)},m=t=>{H(e,"onMouseUp",t),document.removeEventListener("mouseup",h),c(!1)},f=e=>"mouseUp"===e?m:"mouseDown"===e?p:void 0,h=f("mouseUp"),b=(t,r)=>n=>{if(H(e,t,n),n.currentTarget.disabled)return;if("focus"===n.type&&s)return;d.cancel();const o=Object(a.includes)(["focus","mouseenter"],n.type);o!==i&&(r?d(o):l(o))},g=()=>{d.cancel(),document.removeEventListener("mouseup",h)};if(Object(o.useEffect)(()=>g,[]),1!==o.Children.count(e))return e;const E={onMouseEnter:b("onMouseEnter",!0),onMouseLeave:b("onMouseLeave"),onClick:b("onClick"),onFocus:b("onFocus"),onBlur:b("onBlur"),onMouseDown:f("mouseDown")},y=o.Children.only(e),{children:O,disabled:v}=y.props;return(v?V:B)({child:y,eventHandlers:E,childrenWithPopover:(({grandchildren:e,isOver:t,position:r,text:n,shortcut:s})=>Object(o.concatChildren)(e,t&&Object(o.createElement)(L,{focusOnMount:!1,position:r,className:"components-tooltip","aria-hidden":"true",animate:!1,noArrow:!0},n,Object(o.createElement)(F,{className:"components-tooltip__shortcut",shortcut:s}))))({grandchildren:O,isOver:i,position:t,text:r,shortcut:n})})},G=r(41),Y=r(42);const q=["onMouseDown","onClick"];var W=t.a=Object(o.forwardRef)((function(e,t){const{href:r,target:s,isSmall:i,isPressed:u,isBusy:d,isDestructive:p,className:m,disabled:f,icon:h,iconPosition:b="left",iconSize:g,showTooltip:E,tooltipPosition:y,shortcut:O,label:v,children:_,text:S,variant:k,__experimentalIsFocusable:w,describedBy:j,...C}=function({isDefault:e,isPrimary:t,isSecondary:r,isTertiary:n,isLink:o,variant:s,...c}){let a=s;var i,u,d,p,m;return t&&(null!==(i=a)&&void 0!==i||(a="primary")),n&&(null!==(u=a)&&void 0!==u||(a="tertiary")),r&&(null!==(d=a)&&void 0!==d||(a="secondary")),e&&(l()("Button isDefault prop",{since:"5.4",alternative:'variant="secondary"'}),null!==(p=a)&&void 0!==p||(a="secondary")),o&&(null!==(m=a)&&void 0!==m||(a="link")),{...c,variant:a}}(e),R=c()("components-button",m,{"is-secondary":"secondary"===k,"is-primary":"primary"===k,"is-small":i,"is-tertiary":"tertiary"===k,"is-pressed":u,"is-busy":d,"is-link":"link"===k,"is-destructive":p,"has-text":!!h&&!!_,"has-icon":!!h}),T=f&&!w,x=void 0===r||T?"button":"a",A="a"===x?{href:r,target:s}:{type:"button",disabled:T,"aria-pressed":u};if(f&&w){A["aria-disabled"]=!0;for(const e of q)C[e]=e=>{e.stopPropagation(),e.preventDefault()}}const P=!T&&(E&&v||O||!!v&&(!_||Object(a.isArray)(_)&&!_.length)&&!1!==E),N=j?Object(a.uniqueId)():null,M=C["aria-describedby"]||N,I=Object(o.createElement)(x,Object(n.a)({},A,C,{className:R,"aria-label":C["aria-label"]||v,"aria-describedby":M,ref:t}),h&&"left"===b&&Object(o.createElement)(G.a,{icon:h,size:g}),S&&Object(o.createElement)(o.Fragment,null,S),h&&"right"===b&&Object(o.createElement)(G.a,{icon:h,size:g}),_);return P?Object(o.createElement)(o.Fragment,null,Object(o.createElement)(z,{text:j||v,shortcut:O,position:y},I),j&&Object(o.createElement)(Y.a,null,Object(o.createElement)("span",{id:N},j))):Object(o.createElement)(o.Fragment,null,I,j&&Object(o.createElement)(Y.a,null,Object(o.createElement)("span",{id:N},j)))}))},function(e,t){e.exports=window.wp.dom},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"string"==typeof e},,function(e,t,r){var n=r(80),o=r(55),s=o.setStyleProp,c=n.html,a=n.svg,i=n.isCustomAttribute,l=Object.prototype.hasOwnProperty;e.exports=function(e){var t,r,n,u;e=e||{};var d={};for(t in e)n=e[t],i(t)?d[t]=n:(r=t.toLowerCase(),l.call(c,r)?d[(u=c[r]).propertyName]=!!(u.hasBooleanValue||u.hasOverloadedBooleanValue&&!n)||n:l.call(a,t)?d[(u=a[t]).propertyName]=n:o.PRESERVE_CUSTOM_ATTRIBUTES&&(d[t]=n));return s(e.style,d),d}},function(e,t,r){var n=r(3),o=r(84).default,s={reactCompat:!0},c=n.version.split(".")[0]>=16;e.exports={PRESERVE_CUSTOM_ATTRIBUTES:c,invertObject:function(e,t){if(!e||"object"!=typeof e)throw new TypeError("First argument must be an object");var r,n,o="function"==typeof t,s={},c={};for(r in e)n=e[r],o&&(s=t(r,n))&&2===s.length?c[s[0]]=s[1]:"string"==typeof n&&(c[n]=r);return c},isCustomComponent:function(e,t){if(-1===e.indexOf("-"))return t&&"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}},setStyleProp:function(e,t){null!=e&&(t.style=o(e,s))}}},function(e,t,r){for(var n,o=r(90).CASE_SENSITIVE_TAG_NAMES,s={},c=0,a=o.length;c<a;c++)n=o[c],s[n.toLowerCase()]=n;function i(e){for(var t,r={},n=0,o=e.length;n<o;n++)r[(t=e[n]).name]=t.value;return r}function l(e){return function(e){return s[e]}(e=e.toLowerCase())||e}e.exports={formatAttributes:i,formatDOM:function e(t,r,n){r=r||null;for(var o,s,c,a=[],u=0,d=t.length;u<d;u++){switch(o=t[u],c={next:null,prev:a[u-1]||null,parent:r},(s=a[u-1])&&(s.next=c),"#"!==o.nodeName[0]&&(c.name=l(o.nodeName),c.attribs={},o.attributes&&o.attributes.length&&(c.attribs=i(o.attributes))),o.nodeType){case 1:"script"===c.name||"style"===c.name?c.type=c.name:c.type="tag",c.children=e(o.childNodes,c);break;case 3:c.type="text",c.data=o.nodeValue;break;case 8:c.type="comment",c.data=o.nodeValue}a.push(c)}return n&&(a.unshift({name:n.substring(0,n.indexOf(" ")).toLowerCase(),data:n,type:"directive",next:a[0]?a[0]:null,prev:null,parent:r}),a[1]&&(a[1].prev=a[0])),a},isIE:function(e){return e?document.documentMode===e:/(MSIE |Trident\/|Edge\/)/.test(navigator.userAgent)}}},function(e,t,r){"use strict";r.d(t,"b",(function(){return s})),r.d(t,"a",(function(){return c}));var n=r(0);const o=Object(n.createContext)({setIsSuppressed:e=>{},isSuppressed:!1}),s=()=>Object(n.useContext)(o),c=e=>{let{children:t}=e;const[r,s]=Object(n.useState)(!1),c={setIsSuppressed:s,isSuppressed:r};return Object(n.createElement)(o.Provider,{value:c},t)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t){const r=Object(n.useRef)();return Object(n.useEffect)(()=>{r.current===e||t&&!t(e,r.current)||(r.current=e)},[e,t]),r.current}},function(e,t,r){var n=r(79),o=r(54),s=r(88),c={decodeEntities:!0,lowerCaseAttributeNames:!1};function a(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");return""===e?[]:n(s(e,(t=t||{}).htmlparser2||c),t)}a.domToReact=n,a.htmlToDOM=s,a.attributesToProps=o,e.exports=a,e.exports.default=a},,function(e,t,r){"use strict";r.d(t,"a",(function(){return n})),r.d(t,"b",(function(){return o}));const n=e=>!(e=>null===e)(e)&&e instanceof Object&&e.constructor===Object;function o(e,t){return n(e)&&t in e}},,function(e,t){var r,n,o=e.exports={};function s(){throw new Error("setTimeout has not been defined")}function c(){throw new Error("clearTimeout has not been defined")}function a(e){if(r===setTimeout)return setTimeout(e,0);if((r===s||!r)&&setTimeout)return r=setTimeout,setTimeout(e,0);try{return r(e,0)}catch(t){try{return r.call(null,e,0)}catch(t){return r.call(this,e,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:s}catch(e){r=s}try{n="function"==typeof clearTimeout?clearTimeout:c}catch(e){n=c}}();var i,l=[],u=!1,d=-1;function p(){u&&i&&(u=!1,i.length?l=i.concat(l):d=-1,l.length&&m())}function m(){if(!u){var e=a(p);u=!0;for(var t=l.length;t;){for(i=l,l=[];++d<t;)i&&i[d].run();d=-1,t=l.length}i=null,u=!1,function(e){if(n===clearTimeout)return clearTimeout(e);if((n===c||!n)&&clearTimeout)return n=clearTimeout,clearTimeout(e);try{n(e)}catch(t){try{return n.call(null,e)}catch(t){return n.call(this,e)}}}(e)}}function f(e,t){this.fun=e,this.array=t}function h(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)t[r-1]=arguments[r];l.push(new f(e,t)),1!==l.length||u||a(m)},f.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=h,o.addListener=h,o.once=h,o.off=h,o.removeListener=h,o.removeAllListeners=h,o.emit=h,o.prependListener=h,o.prependOnceListener=h,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},function(e,t,r){"use strict";r.d(t,"a",(function(){return u}));var n=r(5),o=r(7),s=r(0),c=r(12),a=r.n(c),i=r(61),l=r(67);const u=()=>{const{shippingRates:e,needsShipping:t,hasCalculatedShipping:r,isLoadingRates:c}=Object(o.useSelect)(e=>{const t=e(n.CART_STORE_KEY);return{shippingRates:t.getShippingRates(),needsShipping:t.getNeedsShipping(),hasCalculatedShipping:t.getHasCalculatedShipping(),isLoadingRates:t.isCustomerDataUpdating()}}),{isSelectingRate:u,selectShippingRate:d}=Object(l.a)(),p=Object(s.useRef)({});return Object(s.useEffect)(()=>{const t=(e=>Object.fromEntries(e.map(e=>{var t;let{package_id:r,shipping_rates:n}=e;return[r,null===(t=n.find(e=>e.selected))||void 0===t?void 0:t.rate_id]})))(e);Object(i.a)(t)&&!a()(p.current,t)&&(p.current=t)},[e]),{isSelectingRate:u,selectedRates:p.current,selectShippingRate:d,shippingRates:e,needsShipping:t,hasCalculatedShipping:r,isLoadingRates:c}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return s}));var n=r(7),o=r(5);const s=()=>{const{customerData:e,isInitialized:t}=Object(n.useSelect)(e=>{const t=e(o.CART_STORE_KEY);return{customerData:t.getCustomerData(),isInitialized:t.hasFinishedResolution("getCartData")}}),{setShippingAddress:r,setBillingData:s}=Object(n.useDispatch)(o.CART_STORE_KEY);return{isInitialized:t,billingData:e.billingData,shippingAddress:e.shippingAddress,setBillingData:s,setShippingAddress:r}}},function(e,t,r){"use strict";r.d(t,"b",(function(){return O})),r.d(t,"a",(function(){return v}));var n=r(0);const o={NONE:"none",INVALID_ADDRESS:"invalid_address",UNKNOWN:"unknown_error"},s={INVALID_COUNTRY:"woocommerce_rest_cart_shipping_rates_invalid_country",MISSING_COUNTRY:"woocommerce_rest_cart_shipping_rates_missing_country",INVALID_STATE:"woocommerce_rest_cart_shipping_rates_invalid_state"},c={shippingErrorStatus:{isPristine:!0,isValid:!1,hasInvalidAddress:!1,hasError:!1},dispatchErrorStatus:()=>null,shippingErrorTypes:o,shippingRates:[],isLoadingRates:!1,selectedRates:[],setSelectedRates:()=>null,shippingAddress:{first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:""},setShippingAddress:()=>null,onShippingRateSuccess:()=>null,onShippingRateFail:()=>null,onShippingRateSelectSuccess:()=>null,onShippingRateSelectFail:()=>null,needsShipping:!1},a=(e,t)=>{let{type:r}=t;return Object.values(o).includes(r)?r:e};var i=r(91),l=r(197);const u=e=>({onSuccess:Object(l.a)("shipping_rates_success",e),onFail:Object(l.a)("shipping_rates_fail",e),onSelectSuccess:Object(l.a)("shipping_rate_select_success",e),onSelectFail:Object(l.a)("shipping_rate_select_fail",e)});var d=r(199),p=r(34),m=r(31),f=r(67),h=r(64);const{NONE:b,INVALID_ADDRESS:g,UNKNOWN:E}=o,y=Object(n.createContext)(c),O=()=>Object(n.useContext)(y),v=e=>{let{children:t}=e;const{dispatchActions:r}=Object(p.b)(),{shippingRates:c,isLoadingRates:l,cartErrors:O}=Object(m.a)(),{isSelectingRate:v}=Object(f.a)(),{selectedRates:_}=Object(h.a)(),[S,k]=Object(n.useReducer)(a,b),[w,j]=Object(n.useReducer)(i.b,{}),C=Object(n.useRef)(w),R=Object(n.useMemo)(()=>({onShippingRateSuccess:u(j).onSuccess,onShippingRateFail:u(j).onFail,onShippingRateSelectSuccess:u(j).onSelectSuccess,onShippingRateSelectFail:u(j).onSelectFail}),[j]);Object(n.useEffect)(()=>{C.current=w},[w]),Object(n.useEffect)(()=>{l?r.incrementCalculating():r.decrementCalculating()},[l,r]),Object(n.useEffect)(()=>{v?r.incrementCalculating():r.decrementCalculating()},[v,r]),Object(n.useEffect)(()=>{O.length>0&&O.some(e=>!(!e.code||!Object.values(s).includes(e.code)))?k({type:g}):k({type:b})},[O]);const T=Object(n.useMemo)(()=>({isPristine:S===b,isValid:S===b,hasInvalidAddress:S===g,hasError:S===E||S===g}),[S]);Object(n.useEffect)(()=>{l||0!==c.length&&!T.hasError||Object(d.a)(C.current,"shipping_rates_fail",{hasInvalidAddress:T.hasInvalidAddress,hasError:T.hasError})},[c,l,T.hasError,T.hasInvalidAddress]),Object(n.useEffect)(()=>{!l&&c.length>0&&!T.hasError&&Object(d.a)(C.current,"shipping_rates_success",c)},[c,l,T.hasError]),Object(n.useEffect)(()=>{v||(T.hasError?Object(d.a)(C.current,"shipping_rate_select_fail",{hasError:T.hasError,hasInvalidAddress:T.hasInvalidAddress}):Object(d.a)(C.current,"shipping_rate_select_success",_.current))},[_,v,T.hasError,T.hasInvalidAddress]);const x={shippingErrorStatus:T,dispatchErrorStatus:k,shippingErrorTypes:o,...R};return Object(n.createElement)(n.Fragment,null,Object(n.createElement)(y.Provider,{value:x},t))}},function(e,t,r){"use strict";r.d(t,"a",(function(){return i}));var n=r(7),o=r(0),s=r(5),c=r(72),a=r(40);const i=()=>{const e=Object(c.a)(),{dispatchCheckoutEvent:t}=Object(a.a)(),{selectShippingRate:r}=Object(n.useDispatch)(s.CART_STORE_KEY);return{selectShippingRate:Object(o.useCallback)((n,o)=>{r(n,o).then(()=>{t("set-selected-shipping-rate",{shippingRateId:n})}).catch(t=>{e(t)})},[r,t,e]),isSelectingRate:Object(n.useSelect)(e=>e(s.CART_STORE_KEY).isShippingRateBeingSelected(),[])}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"d",(function(){return c})),r.d(t,"c",(function(){return a})),r.d(t,"b",(function(){return i}));const n=window.CustomEvent||null,o=(e,t)=>{let{bubbles:r=!1,cancelable:o=!1,element:s,detail:c={}}=t;if(!n)return;s||(s=document.body);const a=new n(e,{bubbles:r,cancelable:o,detail:c});s.dispatchEvent(a)};let s;const c=()=>{s&&clearTimeout(s),s=setTimeout(()=>{o("wc_fragment_refresh",{bubbles:!0,cancelable:!0})},50)},a=e=>{let{preserveCartData:t=!1}=e;o("wc-blocks_added_to_cart",{bubbles:!0,cancelable:!0,detail:{preserveCartData:t}})},i=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof jQuery)return()=>{};const s=()=>{o(t,{bubbles:r,cancelable:n})};return jQuery(document).on(e,s),()=>jQuery(document).off(e,s)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"number"==typeof e},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(0);const o=()=>{const[,e]=Object(n.useState)();return Object(n.useCallback)(t=>{e(()=>{throw t})},[])}},function(e,t,r){"use strict";var n=r(11),o=r.n(n),s=r(0);r(107);const c=e=>{if(!e)return;const t=e.getBoundingClientRect().bottom;t>=0&&t<=window.innerHeight||e.scrollIntoView()};t.a=e=>t=>{const r=Object(s.useRef)(null);return Object(s.createElement)(s.Fragment,null,Object(s.createElement)("div",{className:"with-scroll-to-top__scroll-point",ref:r,"aria-hidden":!0}),Object(s.createElement)(e,o()({},t,{scrollToTop:e=>{null!==r.current&&((e,t)=>{const{focusableSelector:r}=t||{};window&&Number.isFinite(window.innerHeight)&&(r?((e,t)=>{var r;const n=(null===(r=e.parentElement)||void 0===r?void 0:r.querySelectorAll(t))||[];if(n.length){const e=n[0];c(e),null==e||e.focus()}else c(e)})(e,r):c(e))})(r.current,e)}})))}},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"b",(function(){return s}));var n=r(7);const o=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0;const r=Object(n.select)("core/notices").getNotices(e);return r.some(e=>e.type===t)},s=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";const r=Object(n.select)("core/notices").getNotices(),{removeNotice:o}=Object(n.dispatch)("core/notices"),s=r.filter(t=>t.status===e);s.forEach(e=>o(e.id,t))}},function(e,t){},function(e,t,r){var n=r(3),o=r(54),s=r(55),c=s.setStyleProp;function a(e){return s.PRESERVE_CUSTOM_ATTRIBUTES&&"tag"===e.type&&s.isCustomComponent(e.name,e.attribs)}e.exports=function e(t,r){for(var s,i,l,u,d=(r=r||{}).library||n,p=d.cloneElement,m=d.createElement,f=d.isValidElement,h=[],b="function"==typeof r.replace,g=r.trim,E=0,y=t.length;E<y;E++)if(s=t[E],b&&f(i=r.replace(s)))y>1&&(i=p(i,{key:i.key||E})),h.push(i);else if("text"!==s.type){switch(l=s.attribs,a(s)?c(l.style,l):l&&(l=o(l)),u=null,s.type){case"script":case"style":s.children[0]&&(l.dangerouslySetInnerHTML={__html:s.children[0].data});break;case"tag":"textarea"===s.name&&s.children[0]?l.defaultValue=s.children[0].data:s.children&&s.children.length&&(u=e(s.children,r));break;default:continue}y>1&&(l.key=E),h.push(m(s.name,l,u))}else g?s.data.trim()&&h.push(s.data):h.push(s.data);return 1===h.length?h[0]:h}},function(e,t,r){var n=r(81),o=r(82),s=r(83),c=s.MUST_USE_PROPERTY,a=s.HAS_BOOLEAN_VALUE,i=s.HAS_NUMERIC_VALUE,l=s.HAS_POSITIVE_NUMERIC_VALUE,u=s.HAS_OVERLOADED_BOOLEAN_VALUE;function d(e,t){return(e&t)===t}function p(e,t,r){var n,o,s,p=e.Properties,m=e.DOMAttributeNames;for(o in p)n=m[o]||(r?o:o.toLowerCase()),s=p[o],t[n]={attributeName:n,propertyName:o,mustUseProperty:d(s,c),hasBooleanValue:d(s,a),hasNumericValue:d(s,i),hasPositiveNumericValue:d(s,l),hasOverloadedBooleanValue:d(s,u)}}var m={};p(n,m);var f={};p(o,f,!0);var h={};p(n,h),p(o,h,!0),e.exports={html:m,svg:f,properties:h,isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"))}},function(e,t){e.exports={Properties:{autoFocus:4,accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:4,allowTransparency:0,alt:0,as:0,async:4,autoComplete:0,autoPlay:4,capture:4,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:5,cite:0,classID:0,className:0,cols:24,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:4,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:4,defer:4,dir:0,disabled:4,download:32,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:4,formTarget:0,frameBorder:0,headers:0,height:0,hidden:4,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:4,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:5,muted:5,name:0,nonce:0,noValidate:4,open:4,optimum:0,pattern:0,placeholder:0,playsInline:4,poster:0,preload:0,profile:0,radioGroup:0,readOnly:4,referrerPolicy:0,rel:0,required:4,reversed:4,role:0,rows:24,rowSpan:8,sandbox:0,scope:0,scoped:4,scrolling:0,seamless:4,selected:5,shape:0,size:24,sizes:0,span:24,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:8,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:4,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"}}},function(e,t){e.exports={Properties:{accentHeight:0,accumulate:0,additive:0,alignmentBaseline:0,allowReorder:0,alphabetic:0,amplitude:0,arabicForm:0,ascent:0,attributeName:0,attributeType:0,autoReverse:0,azimuth:0,baseFrequency:0,baseProfile:0,baselineShift:0,bbox:0,begin:0,bias:0,by:0,calcMode:0,capHeight:0,clip:0,clipPath:0,clipRule:0,clipPathUnits:0,colorInterpolation:0,colorInterpolationFilters:0,colorProfile:0,colorRendering:0,contentScriptType:0,contentStyleType:0,cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:0,direction:0,display:0,divisor:0,dominantBaseline:0,dur:0,dx:0,dy:0,edgeMode:0,elevation:0,enableBackground:0,end:0,exponent:0,externalResourcesRequired:0,fill:0,fillOpacity:0,fillRule:0,filter:0,filterRes:0,filterUnits:0,floodColor:0,floodOpacity:0,focusable:0,fontFamily:0,fontSize:0,fontSizeAdjust:0,fontStretch:0,fontStyle:0,fontVariant:0,fontWeight:0,format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:0,glyphOrientationHorizontal:0,glyphOrientationVertical:0,glyphRef:0,gradientTransform:0,gradientUnits:0,hanging:0,horizAdvX:0,horizOriginX:0,ideographic:0,imageRendering:0,in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:0,kernelUnitLength:0,kerning:0,keyPoints:0,keySplines:0,keyTimes:0,lengthAdjust:0,letterSpacing:0,lightingColor:0,limitingConeAngle:0,local:0,markerEnd:0,markerMid:0,markerStart:0,markerHeight:0,markerUnits:0,markerWidth:0,mask:0,maskContentUnits:0,maskUnits:0,mathematical:0,mode:0,numOctaves:0,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:0,overlineThickness:0,paintOrder:0,panose1:0,pathLength:0,patternContentUnits:0,patternTransform:0,patternUnits:0,pointerEvents:0,points:0,pointsAtX:0,pointsAtY:0,pointsAtZ:0,preserveAlpha:0,preserveAspectRatio:0,primitiveUnits:0,r:0,radius:0,refX:0,refY:0,renderingIntent:0,repeatCount:0,repeatDur:0,requiredExtensions:0,requiredFeatures:0,restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:0,slope:0,spacing:0,specularConstant:0,specularExponent:0,speed:0,spreadMethod:0,startOffset:0,stdDeviation:0,stemh:0,stemv:0,stitchTiles:0,stopColor:0,stopOpacity:0,strikethroughPosition:0,strikethroughThickness:0,string:0,stroke:0,strokeDasharray:0,strokeDashoffset:0,strokeLinecap:0,strokeLinejoin:0,strokeMiterlimit:0,strokeOpacity:0,strokeWidth:0,surfaceScale:0,systemLanguage:0,tableValues:0,targetX:0,targetY:0,textAnchor:0,textDecoration:0,textRendering:0,textLength:0,to:0,transform:0,u1:0,u2:0,underlinePosition:0,underlineThickness:0,unicode:0,unicodeBidi:0,unicodeRange:0,unitsPerEm:0,vAlphabetic:0,vHanging:0,vIdeographic:0,vMathematical:0,values:0,vectorEffect:0,version:0,vertAdvY:0,vertOriginX:0,vertOriginY:0,viewBox:0,viewTarget:0,visibility:0,widths:0,wordSpacing:0,writingMode:0,x:0,xHeight:0,x1:0,x2:0,xChannelSelector:0,xlinkActuate:0,xlinkArcrole:0,xlinkHref:0,xlinkRole:0,xlinkShow:0,xlinkTitle:0,xlinkType:0,xmlBase:0,xmlns:0,xmlnsXlink:0,xmlLang:0,xmlSpace:0,y:0,y1:0,y2:0,yChannelSelector:0,z:0,zoomAndPan:0},DOMAttributeNames:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space"}}},function(e,t){e.exports={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32}},function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};t.__esModule=!0;var o=n(r(85)),s=r(87);t.default=function(e,t){var r={};return e&&"string"==typeof e?(o.default(e,(function(e,n){e&&n&&(r[s.camelCase(e,t)]=n)})),r):r}},function(e,t,r){var n=r(86);e.exports=function(e,t){var r,o=null;if(!e||"string"!=typeof e)return o;for(var s,c,a=n(e),i="function"==typeof t,l=0,u=a.length;l<u;l++)s=(r=a[l]).property,c=r.value,i?t(s,c,r):c&&(o||(o={}),o[s]=c);return o}},function(e,t){var r=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,n=/\n/g,o=/^\s*/,s=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,c=/^:\s*/,a=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,i=/^[;\s]*/,l=/^\s+|\s+$/g;function u(e){return e?e.replace(l,""):""}e.exports=function(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];t=t||{};var l=1,d=1;function p(e){var t=e.match(n);t&&(l+=t.length);var r=e.lastIndexOf("\n");d=~r?e.length-r:d+e.length}function m(){var e={line:l,column:d};return function(t){return t.position=new f(e),E(),t}}function f(e){this.start=e,this.end={line:l,column:d},this.source=t.source}f.prototype.content=e;var h=[];function b(r){var n=new Error(t.source+":"+l+":"+d+": "+r);if(n.reason=r,n.filename=t.source,n.line=l,n.column=d,n.source=e,!t.silent)throw n;h.push(n)}function g(t){var r=t.exec(e);if(r){var n=r[0];return p(n),e=e.slice(n.length),r}}function E(){g(o)}function y(e){var t;for(e=e||[];t=O();)!1!==t&&e.push(t);return e}function O(){var t=m();if("/"==e.charAt(0)&&"*"==e.charAt(1)){for(var r=2;""!=e.charAt(r)&&("*"!=e.charAt(r)||"/"!=e.charAt(r+1));)++r;if(r+=2,""===e.charAt(r-1))return b("End of comment missing");var n=e.slice(2,r-2);return d+=2,p(n),e=e.slice(r),d+=2,t({type:"comment",comment:n})}}function v(){var e=m(),t=g(s);if(t){if(O(),!g(c))return b("property missing ':'");var n=g(a),o=e({type:"declaration",property:u(t[0].replace(r,"")),value:n?u(n[0].replace(r,"")):""});return g(i),o}}return E(),function(){var e,t=[];for(y(t);e=v();)!1!==e&&(t.push(e),y(t));return t}()}},function(e,t,r){"use strict";t.__esModule=!0,t.camelCase=void 0;var n=/^--[a-zA-Z0-9-]+$/,o=/-([a-z])/g,s=/^[^-]+$/,c=/^-(webkit|moz|ms|o|khtml)-/,a=function(e,t){return t.toUpperCase()},i=function(e,t){return t+"-"};t.camelCase=function(e,t){return void 0===t&&(t={}),function(e){return!e||s.test(e)||n.test(e)}(e)?e:(e=e.toLowerCase(),t.reactCompat||(e=e.replace(c,i)),e.replace(o,a))}},function(e,t,r){var n=r(89),o=r(56),s=o.formatDOM,c=o.isIE(9),a=/<(![a-zA-Z\s]+)>/;e.exports=function(e){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];var t,r=e.match(a);return r&&r[1]&&(t=r[1],c&&(e=e.replace(r[0],""))),s(n(e),null,t)}},function(e,t,r){var n=r(56),o=/<([a-zA-Z]+[0-9]?)/,s=/<head.*>/i,c=/<body.*>/i,a=/<(area|base|br|col|embed|hr|img|input|keygen|link|menuitem|meta|param|source|track|wbr)(.*?)\/?>/gi,i=n.isIE(9),l=i||n.isIE(),u=function(){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},d=function(){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")};if("function"==typeof window.DOMParser){var p=new window.DOMParser,m=i?"text/xml":"text/html";u=d=function(e,t){return t&&(e="<"+t+">"+e+"</"+t+">"),i&&(e=e.replace(a,"<$1$2$3/>")),p.parseFromString(e,m)}}if(document.implementation){var f=document.implementation.createHTMLDocument(l?"html-dom-parser":void 0);u=function(e,t){if(t)return f.documentElement.getElementsByTagName(t)[0].innerHTML=e,f;try{return f.documentElement.innerHTML=e,f}catch(t){if(d)return d(e)}}}var h,b=document.createElement("template");b.content&&(h=function(e){return b.innerHTML=e,b.content.childNodes}),e.exports=function(e){var t,r,n,a,i=e.match(o);switch(i&&i[1]&&(t=i[1].toLowerCase()),t){case"html":return r=d(e),s.test(e)||(n=r.getElementsByTagName("head")[0])&&n.parentNode.removeChild(n),c.test(e)||(n=r.getElementsByTagName("body")[0])&&n.parentNode.removeChild(n),r.getElementsByTagName("html");case"head":case"body":return a=u(e).getElementsByTagName(t),c.test(e)&&s.test(e)?a[0].parentNode.childNodes:a;default:return h?h(e):u(e,"body").getElementsByTagName("body")[0].childNodes}}},function(e,t){e.exports={CASE_SENSITIVE_TAG_NAMES:["animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussainBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","linearGradient","radialGradient","textPath"]}},function(e,t,r){"use strict";r.d(t,"a",(function(){return s})),r.d(t,"b",(function(){return a}));var n=r(6);let o;!function(e){e.ADD_EVENT_CALLBACK="add_event_callback",e.REMOVE_EVENT_CALLBACK="remove_event_callback"}(o||(o={}));const s={addEventCallback:function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10;return{id:Object(n.uniqueId)(),type:o.ADD_EVENT_CALLBACK,eventType:e,callback:t,priority:r}},removeEventCallback:(e,t)=>({id:t,type:o.REMOVE_EVENT_CALLBACK,eventType:e})},c={},a=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:c,{type:t,eventType:r,id:n,callback:s,priority:a}=arguments.length>1?arguments[1]:void 0;const i=e.hasOwnProperty(r)?new Map(e[r]):new Map;switch(t){case o.ADD_EVENT_CALLBACK:return i.set(n,{priority:a,callback:s}),{...e,[r]:i};case o.REMOVE_EVENT_CALLBACK:return i.delete(n),{...e,[r]:i}}}},function(e,t,r){"use strict";r.d(t,"a",(function(){return s})),r.d(t,"b",(function(){return c}));var n=r(1),o=r(18);const s=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},c=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(o.decodeEntities)(e.message):Object(n.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},function(e,t,r){"use strict";var n=r(0),o=r(15);const s=Object(n.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(n.createElement)(o.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));t.a=s},function(e,t,r){"use strict";var n=r(0),o=r(6),s=r(4),c=r.n(s),a=r(1),i=r(20),l=r(93),u=r(50);function d(e){switch(e){case"success":case"warning":case"info":return"polite";case"error":default:return"assertive"}}t.a=function({className:e,status:t="info",children:r,spokenMessage:s=r,onRemove:p=o.noop,isDismissible:m=!0,actions:f=[],politeness:h=d(t),__unstableHTML:b,onDismiss:g=o.noop}){!function(e,t){const r="string"==typeof e?e:Object(n.renderToString)(e);Object(n.useEffect)(()=>{r&&Object(i.speak)(r,t)},[r,t])}(s,h);const E=c()(e,"components-notice","is-"+t,{"is-dismissible":m});return b&&(r=Object(n.createElement)(n.RawHTML,null,r)),Object(n.createElement)("div",{className:E},Object(n.createElement)("div",{className:"components-notice__content"},r,Object(n.createElement)("div",{className:"components-notice__actions"},f.map(({className:e,label:t,isPrimary:r,variant:o,noDefaultClasses:s=!1,onClick:a,url:i},l)=>{let d=o;return"primary"===o||s||(d=i?"link":"secondary"),void 0===d&&r&&(d="primary"),Object(n.createElement)(u.a,{key:l,href:i,variant:d,onClick:i?void 0:a,className:c()("components-notice__action",e)},t)}))),m&&Object(n.createElement)(u.a,{className:"components-notice__dismiss",icon:l.a,label:Object(a.__)("Dismiss this notice"),onClick:e=>{var t;null==e||null===(t=e.preventDefault)||void 0===t||t.call(e),g(),p()},showTooltip:!1}))}},function(e,t,r){"use strict";function n(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(t,"__esModule",{value:!0});var o=n(r(11)),s=n(r(128)),c=r(3),a=n(c),i=n(r(129)),l=n(r(131)),u={arr:Array.isArray,obj:function(e){return"[object Object]"===Object.prototype.toString.call(e)},fun:function(e){return"function"==typeof e},str:function(e){return"string"==typeof e},num:function(e){return"number"==typeof e},und:function(e){return void 0===e},nul:function(e){return null===e},set:function(e){return e instanceof Set},map:function(e){return e instanceof Map},equ:function(e,t){if(typeof e!=typeof t)return!1;if(u.str(e)||u.num(e))return e===t;if(u.obj(e)&&u.obj(t)&&Object.keys(e).length+Object.keys(t).length===0)return!0;var r;for(r in e)if(!(r in t))return!1;for(r in t)if(e[r]!==t[r])return!1;return!u.und(r)||e===t}};function d(){var e=c.useState(!1)[1];return c.useCallback((function(){return e((function(e){return!e}))}),[])}function p(e,t){return u.und(e)||u.nul(e)?t:e}function m(e){return u.und(e)?[]:u.arr(e)?e:[e]}function f(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return u.fun(e)?e.apply(void 0,r):e}function h(e){var t=function(e){return e.to,e.from,e.config,e.onStart,e.onRest,e.onFrame,e.children,e.reset,e.reverse,e.force,e.immediate,e.delay,e.attach,e.destroyed,e.interpolateTo,e.ref,e.lazy,s(e,["to","from","config","onStart","onRest","onFrame","children","reset","reverse","force","immediate","delay","attach","destroyed","interpolateTo","ref","lazy"])}(e);if(u.und(t))return o({to:t},e);var r=Object.keys(e).reduce((function(r,n){var s;return u.und(t[n])?o({},r,((s={})[n]=e[n],s)):r}),{});return o({to:t},r)}var b,g,E=function(){function e(){this.payload=void 0,this.children=[]}var t=e.prototype;return t.getAnimatedValue=function(){return this.getValue()},t.getPayload=function(){return this.payload||this},t.attach=function(){},t.detach=function(){},t.getChildren=function(){return this.children},t.addChild=function(e){0===this.children.length&&this.attach(),this.children.push(e)},t.removeChild=function(e){var t=this.children.indexOf(e);this.children.splice(t,1),0===this.children.length&&this.detach()},e}(),y=function(e){function t(){for(var t,r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];return(t=e.call.apply(e,[this].concat(n))||this).payload=[],t.attach=function(){return t.payload.forEach((function(e){return e instanceof E&&e.addChild(l(t))}))},t.detach=function(){return t.payload.forEach((function(e){return e instanceof E&&e.removeChild(l(t))}))},t}return i(t,e),t}(E),O=function(e){function t(){for(var t,r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];return(t=e.call.apply(e,[this].concat(n))||this).payload={},t.attach=function(){return Object.values(t.payload).forEach((function(e){return e instanceof E&&e.addChild(l(t))}))},t.detach=function(){return Object.values(t.payload).forEach((function(e){return e instanceof E&&e.removeChild(l(t))}))},t}i(t,e);var r=t.prototype;return r.getValue=function(e){void 0===e&&(e=!1);var t={};for(var r in this.payload){var n=this.payload[r];(!e||n instanceof E)&&(t[r]=n instanceof E?n[e?"getAnimatedValue":"getValue"]():n)}return t},r.getAnimatedValue=function(){return this.getValue(!0)},t}(E);function v(e,t){b={fn:e,transform:t}}function _(e){g=e}var S,k=function(e){return"undefined"!=typeof window?window.requestAnimationFrame(e):-1},w=function(e){"undefined"!=typeof window&&window.cancelAnimationFrame(e)};function j(e){S=e}var C,R=function(){return Date.now()};function T(e){C=e}var x,A,P=function(e){return e.current};function N(e){x=e}var M=Object.freeze({get applyAnimatedValues(){return b},injectApplyAnimatedValues:v,get colorNames(){return g},injectColorNames:_,get requestFrame(){return k},get cancelFrame(){return w},injectFrame:function(e,t){k=e,w=t},get interpolation(){return S},injectStringInterpolator:j,get now(){return R},injectNow:function(e){R=e},get defaultElement(){return C},injectDefaultElement:T,get animatedApi(){return P},injectAnimatedApi:function(e){P=e},get createAnimatedStyle(){return x},injectCreateAnimatedStyle:N,get manualFrameloop(){return A},injectManualFrameloop:function(e){A=e}}),I=function(e){function t(t,r){var n;return(n=e.call(this)||this).update=void 0,n.payload=t.style?o({},t,{style:x(t.style)}):t,n.update=r,n.attach(),n}return i(t,e),t}(O),D=!1,L=new Set,F=function e(){if(!D)return!1;var t=R(),r=L,n=Array.isArray(r),o=0;for(r=n?r:r[Symbol.iterator]();;){var s;if(n){if(o>=r.length)break;s=r[o++]}else{if((o=r.next()).done)break;s=o.value}for(var c=s,a=!1,i=0;i<c.configs.length;i++){for(var l=c.configs[i],u=void 0,d=void 0,p=0;p<l.animatedValues.length;p++){var m=l.animatedValues[p];if(!m.done){var f=l.fromValues[p],h=l.toValues[p],b=m.lastPosition,g=h instanceof E,y=Array.isArray(l.initialVelocity)?l.initialVelocity[p]:l.initialVelocity;if(g&&(h=h.getValue()),l.immediate)m.setValue(h),m.done=!0;else if("string"!=typeof f&&"string"!=typeof h){if(void 0!==l.duration)b=f+l.easing((t-m.startTime)/l.duration)*(h-f),u=t>=m.startTime+l.duration;else if(l.decay)b=f+y/(1-.998)*(1-Math.exp(-(1-.998)*(t-m.startTime))),(u=Math.abs(m.lastPosition-b)<.1)&&(h=b);else{d=void 0!==m.lastTime?m.lastTime:t,y=void 0!==m.lastVelocity?m.lastVelocity:l.initialVelocity,t>d+64&&(d=t);for(var O=Math.floor(t-d),v=0;v<O;++v)b+=1*(y+=(-l.tension*(b-h)+-l.friction*y)/l.mass*1/1e3)/1e3;var _=!(!l.clamp||0===l.tension)&&(f<h?b>h:b<h),S=Math.abs(y)<=l.precision,w=0===l.tension||Math.abs(h-b)<=l.precision;u=_||S&&w,m.lastVelocity=y,m.lastTime=t}g&&!l.toValues[p].done&&(u=!1),u?(m.value!==h&&(b=h),m.done=!0):a=!0,m.setValue(b),m.lastPosition=b}else m.setValue(h),m.done=!0}}c.props.onFrame&&(c.values[l.name]=l.interpolation.getValue())}c.props.onFrame&&c.props.onFrame(c.values),a||(L.delete(c),c.stop(!0))}return L.size?A?A():k(e):D=!1,D};function U(e,t,r){if("function"==typeof e)return e;if(Array.isArray(e))return U({range:e,output:t,extrapolate:r});if(S&&"string"==typeof e.output[0])return S(e);var n=e,o=n.output,s=n.range||[0,1],c=n.extrapolateLeft||n.extrapolate||"extend",a=n.extrapolateRight||n.extrapolate||"extend",i=n.easing||function(e){return e};return function(e){var t=function(e,t){for(var r=1;r<t.length-1&&!(t[r]>=e);++r);return r-1}(e,s);return function(e,t,r,n,o,s,c,a,i){var l=i?i(e):e;if(l<t){if("identity"===c)return l;"clamp"===c&&(l=t)}if(l>r){if("identity"===a)return l;"clamp"===a&&(l=r)}return n===o?n:t===r?e<=t?n:o:(t===-1/0?l=-l:r===1/0?l-=t:l=(l-t)/(r-t),l=s(l),n===-1/0?l=-l:o===1/0?l+=n:l=l*(o-n)+n,l)}(e,s[t],s[t+1],o[t],o[t+1],i,c,a,n.map)}}var V=function(e){function t(r,n,o,s){var c;return(c=e.call(this)||this).calc=void 0,c.payload=r instanceof y&&!(r instanceof t)?r.getPayload():Array.isArray(r)?r:[r],c.calc=U(n,o,s),c}i(t,e);var r=t.prototype;return r.getValue=function(){return this.calc.apply(this,this.payload.map((function(e){return e.getValue()})))},r.updateConfig=function(e,t,r){this.calc=U(e,t,r)},r.interpolate=function(e,r,n){return new t(this,e,r,n)},t}(y),B=function(e){function t(t){var r;return(r=e.call(this)||this).animatedStyles=new Set,r.value=void 0,r.startPosition=void 0,r.lastPosition=void 0,r.lastVelocity=void 0,r.startTime=void 0,r.lastTime=void 0,r.done=!1,r.setValue=function(e,t){void 0===t&&(t=!0),r.value=e,t&&r.flush()},r.value=t,r.startPosition=t,r.lastPosition=t,r}i(t,e);var r=t.prototype;return r.flush=function(){0===this.animatedStyles.size&&function e(t,r){"update"in t?r.add(t):t.getChildren().forEach((function(t){return e(t,r)}))}(this,this.animatedStyles),this.animatedStyles.forEach((function(e){return e.update()}))},r.clearStyles=function(){this.animatedStyles.clear()},r.getValue=function(){return this.value},r.interpolate=function(e,t,r){return new V(this,e,t,r)},t}(E),H=function(e){function t(t){var r;return(r=e.call(this)||this).payload=t.map((function(e){return new B(e)})),r}i(t,e);var r=t.prototype;return r.setValue=function(e,t){var r=this;void 0===t&&(t=!0),Array.isArray(e)?e.length===this.payload.length&&e.forEach((function(e,n){return r.payload[n].setValue(e,t)})):this.payload.forEach((function(r){return r.setValue(e,t)}))},r.getValue=function(){return this.payload.map((function(e){return e.getValue()}))},r.interpolate=function(e,t){return new V(this,e,t)},t}(y),z=0,G=function(){function e(){var e=this;this.id=void 0,this.idle=!0,this.hasChanged=!1,this.guid=0,this.local=0,this.props={},this.merged={},this.animations={},this.interpolations={},this.values={},this.configs=[],this.listeners=[],this.queue=[],this.localQueue=void 0,this.getValues=function(){return e.interpolations},this.id=z++}var t=e.prototype;return t.update=function(e){if(!e)return this;var t=h(e),r=t.delay,n=void 0===r?0:r,c=t.to,a=s(t,["delay","to"]);if(u.arr(c)||u.fun(c))this.queue.push(o({},a,{delay:n,to:c}));else if(c){var i={};Object.entries(c).forEach((function(e){var t,r=e[0],s=e[1],c=o({to:(t={},t[r]=s,t),delay:f(n,r)},a),l=i[c.delay]&&i[c.delay].to;i[c.delay]=o({},i[c.delay],c,{to:o({},l,c.to)})})),this.queue=Object.values(i)}return this.queue=this.queue.sort((function(e,t){return e.delay-t.delay})),this.diff(a),this},t.start=function(e){var t=this;if(this.queue.length){this.idle=!1,this.localQueue&&this.localQueue.forEach((function(e){var r=e.from,n=void 0===r?{}:r,s=e.to,c=void 0===s?{}:s;u.obj(n)&&(t.merged=o({},n,t.merged)),u.obj(c)&&(t.merged=o({},t.merged,c))}));var r=this.local=++this.guid,n=this.localQueue=this.queue;this.queue=[],n.forEach((function(o,c){var a=o.delay,i=s(o,["delay"]),l=function(o){c===n.length-1&&r===t.guid&&o&&(t.idle=!0,t.props.onRest&&t.props.onRest(t.merged)),e&&e()},d=u.arr(i.to)||u.fun(i.to);a?setTimeout((function(){r===t.guid&&(d?t.runAsync(i,l):t.diff(i).start(l))}),a):d?t.runAsync(i,l):t.diff(i).start(l)}))}else u.fun(e)&&this.listeners.push(e),this.props.onStart&&this.props.onStart(),this,L.has(this)||L.add(this),D||(D=!0,k(A||F));return this},t.stop=function(e){return this.listeners.forEach((function(t){return t(e)})),this.listeners=[],this},t.pause=function(e){return this.stop(!0),e&&(this,L.has(this)&&L.delete(this)),this},t.runAsync=function(e,t){var r=this,n=(e.delay,s(e,["delay"])),c=this.local,a=Promise.resolve(void 0);if(u.arr(n.to))for(var i=function(e){var t=e,s=o({},n,h(n.to[t]));u.arr(s.config)&&(s.config=s.config[t]),a=a.then((function(){if(c===r.guid)return new Promise((function(e){return r.diff(s).start(e)}))}))},l=0;l<n.to.length;l++)i(l);else if(u.fun(n.to)){var d,p=0;a=a.then((function(){return n.to((function(e){var t=o({},n,h(e));if(u.arr(t.config)&&(t.config=t.config[p]),p++,c===r.guid)return d=new Promise((function(e){return r.diff(t).start(e)}))}),(function(e){return void 0===e&&(e=!0),r.stop(e)})).then((function(){return d}))}))}a.then(t)},t.diff=function(e){var t=this;this.props=o({},this.props,e);var r=this.props,n=r.from,s=void 0===n?{}:n,c=r.to,a=void 0===c?{}:c,i=r.config,l=void 0===i?{}:i,d=r.reverse,h=r.attach,b=r.reset,E=r.immediate;if(d){var y=[a,s];s=y[0],a=y[1]}this.merged=o({},s,this.merged,a),this.hasChanged=!1;var O=h&&h(this);if(this.animations=Object.entries(this.merged).reduce((function(e,r){var n=r[0],c=r[1],a=e[n]||{},i=u.num(c),d=u.str(c)&&!c.startsWith("#")&&!/\d/.test(c)&&!g[c],h=u.arr(c),y=!i&&!h&&!d,v=u.und(s[n])?c:s[n],_=i||h||d?c:1,k=f(l,n);O&&(_=O.animations[n].parent);var w,j=a.parent,C=a.interpolation,T=m(O?_.getPayload():_),x=c;y&&(x=S({range:[0,1],output:[c,c]})(1));var A,P=C&&C.getValue(),N=!u.und(j)&&a.animatedValues.some((function(e){return!e.done})),M=!u.equ(x,P),I=!u.equ(x,a.previous),D=!u.equ(k,a.config);if(b||I&&M||D){var L;if(i||d)j=C=a.parent||new B(v);else if(h)j=C=a.parent||new H(v);else if(y){var F=a.interpolation&&a.interpolation.calc(a.parent.value);F=void 0===F||b?v:F,a.parent?(j=a.parent).setValue(0,!1):j=new B(0);var U={output:[F,c]};a.interpolation?(C=a.interpolation,a.interpolation.updateConfig(U)):C=j.interpolate(U)}return T=m(O?_.getPayload():_),w=m(j.getPayload()),b&&!y&&j.setValue(v,!1),t.hasChanged=!0,w.forEach((function(e){e.startPosition=e.value,e.lastPosition=e.value,e.lastVelocity=N?e.lastVelocity:void 0,e.lastTime=N?e.lastTime:void 0,e.startTime=R(),e.done=!1,e.animatedStyles.clear()})),f(E,n)&&j.setValue(y?_:c,!1),o({},e,((L={})[n]=o({},a,{name:n,parent:j,interpolation:C,animatedValues:w,toValues:T,previous:x,config:k,fromValues:m(j.getValue()),immediate:f(E,n),initialVelocity:p(k.velocity,0),clamp:p(k.clamp,!1),precision:p(k.precision,.01),tension:p(k.tension,170),friction:p(k.friction,26),mass:p(k.mass,1),duration:k.duration,easing:p(k.easing,(function(e){return e})),decay:k.decay}),L))}return M?e:(y&&(j.setValue(1,!1),C.updateConfig({output:[x,x]})),j.done=!0,t.hasChanged=!0,o({},e,((A={})[n]=o({},e[n],{previous:x}),A)))}),this.animations),this.hasChanged)for(var v in this.configs=Object.values(this.animations),this.values={},this.interpolations={},this.animations)this.interpolations[v]=this.animations[v].interpolation,this.values[v]=this.animations[v].interpolation.getValue();return this},t.destroy=function(){this.stop(),this.props={},this.merged={},this.animations={},this.interpolations={},this.values={},this.configs=[],this.local=0},e}(),Y=function(e,t){var r=c.useRef(!1),n=c.useRef(),o=u.fun(t),s=c.useMemo((function(){var r;return n.current&&(n.current.map((function(e){return e.destroy()})),n.current=void 0),[new Array(e).fill().map((function(e,n){var s=new G,c=o?f(t,n,s):t[n];return 0===n&&(r=c.ref),s.update(c),r||s.start(),s})),r]}),[e]),a=s[0],i=s[1];n.current=a,c.useImperativeHandle(i,(function(){return{start:function(){return Promise.all(n.current.map((function(e){return new Promise((function(t){return e.start(t)}))})))},stop:function(e){return n.current.forEach((function(t){return t.stop(e)}))},get controllers(){return n.current}}}));var l=c.useMemo((function(){return function(e){return n.current.map((function(t,r){t.update(o?f(e,r,t):e[r]),i||t.start()}))}}),[e]);c.useEffect((function(){r.current?o||l(t):i||n.current.forEach((function(e){return e.start()}))})),c.useEffect((function(){return r.current=!0,function(){return n.current.forEach((function(e){return e.destroy()}))}}),[]);var d=n.current.map((function(e){return e.getValues()}));return o?[d,l,function(e){return n.current.forEach((function(t){return t.pause(e)}))}]:d},q=0,W=function(e,t){return("function"==typeof t?e.map(t):m(t)).map(String)},K=function(e){var t=e.items,r=e.keys,n=void 0===r?function(e){return e}:r,c=s(e,["items","keys"]);return t=m(void 0!==t?t:null),o({items:t,keys:W(t,n)},c)};function $(e,t){var r=function(){if(o){if(s>=n.length)return"break";c=n[s++]}else{if((s=n.next()).done)return"break";c=s.value}var r=c.key,a=function(e){return e.key!==r};(u.und(t)||t===r)&&(e.current.instances.delete(r),e.current.transitions=e.current.transitions.filter(a),e.current.deleted=e.current.deleted.filter(a))},n=e.current.deleted,o=Array.isArray(n),s=0;for(n=o?n:n[Symbol.iterator]();;){var c;if("break"===r())break}e.current.forceUpdate()}var X=function(e){function t(t){var r;return void 0===t&&(t={}),r=e.call(this)||this,!t.transform||t.transform instanceof E||(t=b.transform(t)),r.payload=t,r}return i(t,e),t}(O),J={transparent:0,aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,burntsienna:3934150143,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199},Q="[-+]?\\d*\\.?\\d+";function Z(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return"\\(\\s*("+t.join(")\\s*,\\s*(")+")\\s*\\)"}var ee=new RegExp("rgb"+Z(Q,Q,Q)),te=new RegExp("rgba"+Z(Q,Q,Q,Q)),re=new RegExp("hsl"+Z(Q,"[-+]?\\d*\\.?\\d+%","[-+]?\\d*\\.?\\d+%")),ne=new RegExp("hsla"+Z(Q,"[-+]?\\d*\\.?\\d+%","[-+]?\\d*\\.?\\d+%",Q)),oe=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,se=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,ce=/^#([0-9a-fA-F]{6})$/,ae=/^#([0-9a-fA-F]{8})$/;function ie(e,t,r){return r<0&&(r+=1),r>1&&(r-=1),r<1/6?e+6*(t-e)*r:r<.5?t:r<2/3?e+(t-e)*(2/3-r)*6:e}function le(e,t,r){var n=r<.5?r*(1+t):r+t-r*t,o=2*r-n,s=ie(o,n,e+1/3),c=ie(o,n,e),a=ie(o,n,e-1/3);return Math.round(255*s)<<24|Math.round(255*c)<<16|Math.round(255*a)<<8}function ue(e){var t=parseInt(e,10);return t<0?0:t>255?255:t}function de(e){return(parseFloat(e)%360+360)%360/360}function pe(e){var t=parseFloat(e);return t<0?0:t>1?255:Math.round(255*t)}function me(e){var t=parseFloat(e);return t<0?0:t>100?1:t/100}function fe(e){var t,r,n="number"==typeof(t=e)?t>>>0===t&&t>=0&&t<=4294967295?t:null:(r=ce.exec(t))?parseInt(r[1]+"ff",16)>>>0:J.hasOwnProperty(t)?J[t]:(r=ee.exec(t))?(ue(r[1])<<24|ue(r[2])<<16|ue(r[3])<<8|255)>>>0:(r=te.exec(t))?(ue(r[1])<<24|ue(r[2])<<16|ue(r[3])<<8|pe(r[4]))>>>0:(r=oe.exec(t))?parseInt(r[1]+r[1]+r[2]+r[2]+r[3]+r[3]+"ff",16)>>>0:(r=ae.exec(t))?parseInt(r[1],16)>>>0:(r=se.exec(t))?parseInt(r[1]+r[1]+r[2]+r[2]+r[3]+r[3]+r[4]+r[4],16)>>>0:(r=re.exec(t))?(255|le(de(r[1]),me(r[2]),me(r[3])))>>>0:(r=ne.exec(t))?(le(de(r[1]),me(r[2]),me(r[3]))|pe(r[4]))>>>0:null;return null===n?e:"rgba("+((4278190080&(n=n||0))>>>24)+", "+((16711680&n)>>>16)+", "+((65280&n)>>>8)+", "+(255&n)/255+")"}var he=/[+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,be=/(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\((-?\d+%?[,\s]+){2,3}\s*[\d\.]+%?\))/gi,ge=new RegExp("("+Object.keys(J).join("|")+")","g"),Ee={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ye=["Webkit","Ms","Moz","O"];function Oe(e,t,r){return null==t||"boolean"==typeof t||""===t?"":r||"number"!=typeof t||0===t||Ee.hasOwnProperty(e)&&Ee[e]?(""+t).trim():t+"px"}Ee=Object.keys(Ee).reduce((function(e,t){return ye.forEach((function(r){return e[function(e,t){return e+t.charAt(0).toUpperCase()+t.substring(1)}(r,t)]=e[t]})),e}),Ee);var ve={};N((function(e){return new X(e)})),T("div"),j((function(e){var t=e.output.map((function(e){return e.replace(be,fe)})).map((function(e){return e.replace(ge,fe)})),r=t[0].match(he).map((function(){return[]}));t.forEach((function(e){e.match(he).forEach((function(e,t){return r[t].push(+e)}))}));var n=t[0].match(he).map((function(t,n){return U(o({},e,{output:r[n]}))}));return function(e){var r=0;return t[0].replace(he,(function(){return n[r++](e)})).replace(/rgba\(([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+)\)/gi,(function(e,t,r,n,o){return"rgba("+Math.round(t)+", "+Math.round(r)+", "+Math.round(n)+", "+o+")"}))}})),_(J),v((function(e,t){if(!e.nodeType||void 0===e.setAttribute)return!1;var r=t.style,n=t.children,o=t.scrollTop,c=t.scrollLeft,a=s(t,["style","children","scrollTop","scrollLeft"]),i="filter"===e.nodeName||e.parentNode&&"filter"===e.parentNode.nodeName;for(var l in void 0!==o&&(e.scrollTop=o),void 0!==c&&(e.scrollLeft=c),void 0!==n&&(e.textContent=n),r)if(r.hasOwnProperty(l)){var u=0===l.indexOf("--"),d=Oe(l,r[l],u);"float"===l&&(l="cssFloat"),u?e.style.setProperty(l,d):e.style[l]=d}for(var p in a){var m=i?p:ve[p]||(ve[p]=p.replace(/([A-Z])/g,(function(e){return"-"+e.toLowerCase()})));void 0!==e.getAttribute(m)&&e.setAttribute(m,a[p])}}),(function(e){return e}));var _e,Se,ke=(_e=function(e){return c.forwardRef((function(t,r){var n=d(),i=c.useRef(!0),l=c.useRef(null),p=c.useRef(null),m=c.useCallback((function(e){var t=l.current;l.current=new I(e,(function(){var e=!1;p.current&&(e=b.fn(p.current,l.current.getAnimatedValue())),p.current&&!1!==e||n()})),t&&t.detach()}),[]);c.useEffect((function(){return function(){i.current=!1,l.current&&l.current.detach()}}),[]),c.useImperativeHandle(r,(function(){return P(p,i,n)})),m(t);var f,h=l.current.getValue(),g=(h.scrollTop,h.scrollLeft,s(h,["scrollTop","scrollLeft"])),E=(f=e,!u.fun(f)||f.prototype instanceof a.Component?function(e){return p.current=function(e,t){return t&&(u.fun(t)?t(e):u.obj(t)&&(t.current=e)),e}(e,r)}:void 0);return a.createElement(e,o({},g,{ref:E}))}))},void 0===(Se=!1)&&(Se=!0),function(e){return(u.arr(e)?e:Object.keys(e)).reduce((function(e,t){var r=Se?t[0].toLowerCase()+t.substring(1):t;return e[r]=_e(r),e}),_e)}),we=ke(["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"]);t.apply=ke,t.config={default:{tension:170,friction:26},gentle:{tension:120,friction:14},wobbly:{tension:180,friction:12},stiff:{tension:210,friction:20},slow:{tension:280,friction:60},molasses:{tension:280,friction:120}},t.update=F,t.animated=we,t.a=we,t.interpolate=function(e,t,r){return e&&new V(e,t,r)},t.Globals=M,t.useSpring=function(e){var t=u.fun(e),r=Y(1,t?e:[e]),n=r[0],o=r[1],s=r[2];return t?[n[0],o,s]:n},t.useTrail=function(e,t){var r=c.useRef(!1),n=u.fun(t),s=f(t),a=c.useRef(),i=Y(e,(function(e,t){return 0===e&&(a.current=[]),a.current.push(t),o({},s,{config:f(s.config,e),attach:e>0&&function(){return a.current[e-1]}})})),l=i[0],d=i[1],p=i[2],m=c.useMemo((function(){return function(e){return d((function(t,r){e.reverse;var n=e.reverse?t+1:t-1,c=a.current[n];return o({},e,{config:f(e.config||s.config,t),attach:c&&function(){return c}})}))}}),[e,s.reverse]);return c.useEffect((function(){r.current&&!n&&m(t)})),c.useEffect((function(){r.current=!0}),[]),n?[l,m,p]:l},t.useTransition=function(e,t,r){var n=o({items:e,keys:t||function(e){return e}},r),a=K(n),i=a.lazy,l=void 0!==i&&i,u=(a.unique,a.reset),p=void 0!==u&&u,m=(a.enter,a.leave,a.update,a.onDestroyed),h=(a.keys,a.items,a.onFrame),b=a.onRest,g=a.onStart,E=a.ref,y=s(a,["lazy","unique","reset","enter","leave","update","onDestroyed","keys","items","onFrame","onRest","onStart","ref"]),O=d(),v=c.useRef(!1),_=c.useRef({mounted:!1,first:!0,deleted:[],current:{},transitions:[],prevProps:{},paused:!!n.ref,instances:!v.current&&new Map,forceUpdate:O});return c.useImperativeHandle(n.ref,(function(){return{start:function(){return Promise.all(Array.from(_.current.instances).map((function(e){var t=e[1];return new Promise((function(e){return t.start(e)}))})))},stop:function(e){return Array.from(_.current.instances).forEach((function(t){return t[1].stop(e)}))},get controllers(){return Array.from(_.current.instances).map((function(e){return e[1]}))}}})),_.current=function(e,t){for(var r=e.first,n=e.prevProps,c=s(e,["first","prevProps"]),a=K(t),i=a.items,l=a.keys,u=a.initial,d=a.from,p=a.enter,m=a.leave,h=a.update,b=a.trail,g=void 0===b?0:b,E=a.unique,y=a.config,O=a.order,v=void 0===O?["enter","leave","update"]:O,_=K(n),S=_.keys,k=_.items,w=o({},c.current),j=[].concat(c.deleted),C=Object.keys(w),R=new Set(C),T=new Set(l),x=l.filter((function(e){return!R.has(e)})),A=c.transitions.filter((function(e){return!e.destroyed&&!T.has(e.originalKey)})).map((function(e){return e.originalKey})),P=l.filter((function(e){return R.has(e)})),N=-g;v.length;)switch(v.shift()){case"enter":x.forEach((function(e,t){E&&j.find((function(t){return t.originalKey===e}))&&(j=j.filter((function(t){return t.originalKey!==e})));var n=l.indexOf(e),o=i[n],s=r&&void 0!==u?"initial":"enter";w[e]={slot:s,originalKey:e,key:E?String(e):q++,item:o,trail:N+=g,config:f(y,o,s),from:f(r&&void 0!==u?u||{}:d,o),to:f(p,o)}}));break;case"leave":A.forEach((function(e){var t=S.indexOf(e),r=k[t];j.unshift(o({},w[e],{slot:"leave",destroyed:!0,left:S[Math.max(0,t-1)],right:S[Math.min(S.length,t+1)],trail:N+=g,config:f(y,r,"leave"),to:f(m,r)})),delete w[e]}));break;case"update":P.forEach((function(e){var t=l.indexOf(e),r=i[t];w[e]=o({},w[e],{item:r,slot:"update",trail:N+=g,config:f(y,r,"update"),to:f(h,r)})}))}var M=l.map((function(e){return w[e]}));return j.forEach((function(e){var t,r=e.left,n=(e.right,s(e,["left","right"]));-1!==(t=M.findIndex((function(e){return e.originalKey===r})))&&(t+=1),t=Math.max(0,t),M=[].concat(M.slice(0,t),[n],M.slice(t))})),o({},c,{changed:x.length||A.length||P.length,first:r&&0===x.length,transitions:M,current:w,deleted:j,prevProps:t})}(_.current,n),_.current.changed&&_.current.transitions.forEach((function(e){var t=e.slot,r=e.from,n=e.to,s=e.config,c=e.trail,a=e.key,i=e.item;_.current.instances.has(a)||_.current.instances.set(a,new G);var u=_.current.instances.get(a),d=o({},y,{to:n,from:r,config:s,ref:E,onRest:function(r){_.current.mounted&&(e.destroyed&&(E||l||$(_,a),m&&m(i)),!Array.from(_.current.instances).some((function(e){return!e[1].idle}))&&(E||l)&&_.current.deleted.length>0&&$(_),b&&b(i,t,r))},onStart:g&&function(){return g(i,t)},onFrame:h&&function(e){return h(i,t,e)},delay:c,reset:p&&"enter"===t});u.update(d),_.current.paused||u.start()})),c.useEffect((function(){return _.current.mounted=v.current=!0,function(){_.current.mounted=v.current=!1,Array.from(_.current.instances).map((function(e){return e[1].destroy()})),_.current.instances.clear()}}),[]),_.current.transitions.map((function(e){var t=e.item,r=e.slot,n=e.key;return{item:t,key:n,state:r,props:_.current.instances.get(n).getValues()}}))},t.useChain=function(e,t,r){void 0===r&&(r=1e3);var n=c.useRef();c.useEffect((function(){u.equ(e,n.current)?e.forEach((function(e){var t=e.current;return t&&t.start()})):t?e.forEach((function(e,n){var s=e.current;if(s){var c=s.controllers;if(c.length){var a=r*t[n];c.forEach((function(e){e.queue=e.queue.map((function(e){return o({},e,{delay:e.delay+a})})),e.start()}))}}})):e.reduce((function(e,t,r){var n=t.current;return e.then((function(){return n.start()}))}),Promise.resolve()),n.current=e}))},t.useSprings=Y},,,,,,,,,,function(e,t,r){"use strict";var n=r(0);t.a=function(e){let{icon:t,size:r=24,...o}=e;return Object(n.cloneElement)(t,{width:r,height:r,...o})}},,function(e,t){},,,,,function(e,t,r){"use strict";(function(e){var n=r(0),o=r(6),s=r(4),c=r.n(s),a=r(20),i=r(1),l=(r(38),r(50));t.a=Object(n.forwardRef)((function({className:t,children:r,spokenMessage:s=r,politeness:u="polite",actions:d=[],onRemove:p=o.noop,icon:m=null,explicitDismiss:f=!1,onDismiss:h=o.noop},b){function g(e){e&&e.preventDefault&&e.preventDefault(),h(),p()}h=h||o.noop,function(e,t){const r="string"==typeof e?e:Object(n.renderToString)(e);Object(n.useEffect)(()=>{r&&Object(a.speak)(r,t)},[r,t])}(s,u),Object(n.useEffect)(()=>{const e=setTimeout(()=>{f||(h(),p())},1e4);return()=>clearTimeout(e)},[h,p]);const E=c()(t,"components-snackbar",{"components-snackbar-explicit-dismiss":!!f});d&&d.length>1&&(void 0!==e&&e.env,d=[d[0]]);const y=c()("components-snackbar__content",{"components-snackbar__content-with-icon":!!m});return Object(n.createElement)("div",{ref:b,className:E,onClick:f?o.noop:g,tabIndex:"0",role:f?"":"button",onKeyPress:f?o.noop:g,"aria-label":f?"":Object(i.__)("Dismiss this notice")},Object(n.createElement)("div",{className:y},m&&Object(n.createElement)("div",{className:"components-snackbar__icon"},m),r,d.map(({label:e,onClick:t,url:r},o)=>Object(n.createElement)(l.a,{key:o,href:r,variant:"tertiary",onClick:e=>function(e,t){e.stopPropagation(),p(),t&&t(e)}(e,t),className:"components-snackbar__action"},e)),f&&Object(n.createElement)("span",{role:"button","aria-label":"Dismiss this notice",tabIndex:"0",className:"components-snackbar__dismiss-button",onClick:g,onKeyPress:g},"✕")))}))}).call(this,r(63))},function(e,t){e.exports=window.wp.plugins},,function(e,t){e.exports=window.wp.wordcount},function(e,t){e.exports=window.wp.autop},,function(e,t,r){"use strict";r.d(t,"b",(function(){return s})),r.d(t,"a",(function(){return c}));var n=r(45),o=(r(14),r(2));const s=(e,t)=>Object.keys(o.defaultAddressFields).every(r=>e[r]===t[r]),c=e=>{const t=Object.keys(o.defaultAddressFields),r=Object(n.a)(t,{},e.country),s=Object.assign({},e);return r.forEach(t=>{let{key:r="",hidden:n=!1}=t;n&&((e,t)=>e in t)(r,e)&&(s[r]="")}),s}},,function(e,t){e.exports=window.wc.wcBlocksSharedHocs},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(11),o=r.n(n),s=r(0),c=r(4),a=r.n(c),i=r(94),l=r(7),u=(r(78),r(57));const d=e=>{let{status:t="default"}=e;switch(t){case"error":return"woocommerce-error";case"success":return"woocommerce-message";case"info":case"warning":return"woocommerce-info"}return""},p=e=>{let{className:t,context:r="default",additionalNotices:n=[]}=e;const{isSuppressed:c}=Object(u.b)(),{notices:p}=Object(l.useSelect)(e=>({notices:e("core/notices").getNotices(r)})),{removeNotice:m}=Object(l.useDispatch)("core/notices"),f=p.filter(e=>"snackbar"!==e.type).concat(n);if(!f.length)return null;const h=a()(t,"wc-block-components-notices");return c?null:Object(s.createElement)("div",{className:h},f.map(e=>Object(s.createElement)(i.a,o()({key:"store-notice-"+e.id},e,{className:a()("wc-block-components-notices__notice",d(e)),onRemove:()=>{e.isDismissible&&m(e.id,r)}}),e.content)))}},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return p}));var n=r(0),o=r(48),s=r(2),c=r(59),a=r.n(c),i=r(10),l=r(16);const u=(e,t)=>e&&t[e]?t[e]:null,d=e=>{let{block:t,blockMap:r,blockWrapper:o,children:c,depth:p=1}=e;return c&&0!==c.length?Array.from(c).map((e,c)=>{const{blockName:m="",...f}={key:`${t}_${p}_${c}`,...e instanceof HTMLElement?e.dataset:{},className:e instanceof Element?null==e?void 0:e.className:""},h=u(m,r);if(!h){const s=a()(e instanceof Element&&(null==e?void 0:e.outerHTML)||(null==e?void 0:e.textContent)||"");if("string"==typeof s&&s)return s;if(!Object(n.isValidElement)(s))return null;const c=e.childNodes.length?d({block:t,blockMap:r,children:e.childNodes,depth:p+1,blockWrapper:o}):void 0;return c?Object(n.cloneElement)(s,f,c):Object(n.cloneElement)(s,f)}const b=o||n.Fragment;return Object(n.createElement)(n.Suspense,{key:`${t}_${p}_${c}_suspense`,fallback:Object(n.createElement)("div",{className:"wc-block-placeholder"})},Object(n.createElement)(l.a,{text:"Unexpected error in: "+m,showErrorBlock:s.CURRENT_USER_IS_ADMIN},Object(n.createElement)(b,null,Object(n.createElement)(h,f,d({block:t,blockMap:r,children:e.childNodes,depth:p+1,blockWrapper:o}),((e,t,r,o)=>{if(!Object(i.hasInnerBlocks)(e))return null;const c=r?Array.from(r).map(e=>e instanceof HTMLElement&&(null==e?void 0:e.dataset.blockName)||null).filter(Boolean):[],a=Object(i.getRegisteredBlocks)(e).filter(e=>{let{blockName:t,force:r}=e;return!0===r&&!c.includes(t)}),d=o||n.Fragment;return Object(n.createElement)(n.Fragment,null,a.map((e,r)=>{let{blockName:o,component:c}=e;const a=c||u(o,t);return a?Object(n.createElement)(l.a,{text:"Unexpected error in: "+o,showErrorBlock:s.CURRENT_USER_IS_ADMIN},Object(n.createElement)(d,null,Object(n.createElement)(a,{key:`${o}_forced_${r}`}))):null}))})(m,r,e.childNodes,o)))))}):null},p=e=>{let{Block:t,selector:r,blockName:n,getProps:s=(()=>({})),blockMap:c,blockWrapper:a}=e;Object(o.a)({Block:t,selector:r,getProps:(e,t)=>{const r=d({block:n,blockMap:c,children:e.children||[],blockWrapper:a});return{...s(e,t),children:r}}})}},function(e,t){e.exports=function(e,t){if(null==e)return{};var r,n,o={},s=Object.keys(e);for(n=0;n<s.length;n++)r=s[n],t.indexOf(r)>=0||(o[r]=e[r]);return o},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){var n=r(130);e.exports=function(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,n(e,t)},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){function r(t,n){return e.exports=r=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},e.exports.__esModule=!0,e.exports.default=e.exports,r(t,n)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,r){"use strict";r.d(t,"a",(function(){return S}));var n=r(0),o=r(113),s=r(2),c=r(16),a=r(201),i=r(66),l=r(46),u=r(34),d=r(1),p=r(25),m=r.n(p),f=r(118),h=r(92),b=r(7);const g=(e,t,r)=>{const n=Object.keys(e).map(t=>({key:t,value:e[t]}),[]),o=`wc-${r}-new-payment-method`;return n.push({key:o,value:t}),n},E=(e,t)=>{m.a.setNonce&&"function"==typeof m.a.setNonce&&m.a.setNonce(e),null!=e&&e.get("User-ID")&&t.setCustomerId(parseInt(e.get("User-ID")||"0",10))};var y=r(194),O=r(31),v=r(57),_=()=>{const{hasError:e,onCheckoutValidationBeforeProcessing:t,dispatchActions:r,redirectUrl:o,isProcessing:s,isBeforeProcessing:c,isComplete:p,orderNotes:_,shouldCreateAccount:S,extensionData:k}=Object(u.b)(),{hasValidationErrors:w}=Object(y.b)(),{shippingErrorStatus:j}=Object(i.b)(),{billingData:C,shippingAddress:R}=Object(l.b)(),{cartNeedsPayment:T,cartNeedsShipping:x,receiveCart:A}=Object(O.a)(),{activePaymentMethod:P,isExpressPaymentMethodActive:N,currentStatus:M,paymentMethodData:I,expressPaymentMethods:D,paymentMethods:L,shouldSavePayment:F}=Object(a.b)(),{setIsSuppressed:U}=Object(v.b)(),{createErrorNotice:V,removeNotice:B}=Object(b.useDispatch)("core/notices"),H=Object(n.useRef)(C),z=Object(n.useRef)(R),G=Object(n.useRef)(o),[Y,q]=Object(n.useState)(!1),W=Object(n.useMemo)(()=>{var e;const t={...D,...L};return null==t||null===(e=t[P])||void 0===e?void 0:e.paymentMethodId},[P,D,L]),K=w&&!N||M.hasError||j.hasError,$=!e&&!K&&(M.isSuccessful||!T)&&s;Object(n.useEffect)(()=>{U(N)},[N,U]),Object(n.useEffect)(()=>{K===e||!s&&!c||N||r.setHasError(K)},[K,e,s,c,N,r]),Object(n.useEffect)(()=>{H.current=C,z.current=R,G.current=o},[C,R,o]);const X=Object(n.useCallback)(()=>!w&&(M.hasError?{errorMessage:Object(d.__)("There was a problem with your payment option.","woocommerce")}:!j.hasError||{errorMessage:Object(d.__)("There was a problem with your shipping option.","woocommerce")}),[w,M.hasError,j.hasError]);Object(n.useEffect)(()=>{let e;return N||(e=t(X,0)),()=>{N||e()}},[t,X,N]),Object(n.useEffect)(()=>{G.current&&(window.location.href=G.current)},[p]);const J=Object(n.useCallback)(async()=>{if(Y)return;q(!0),B("checkout");const e=T?{payment_method:W,payment_data:g(I,F,P)}:{},t={billing_address:Object(f.a)(H.current),customer_note:_,create_account:S,...e,extensions:{...k}};x&&(t.shipping_address=Object(f.a)(z.current)),m()({path:"/wc/store/v1/checkout",method:"POST",data:t,cache:"no-store",parse:!1}).then(e=>{if(E(e.headers,r),!e.ok)throw new Error(e);return e.json()}).then(e=>{r.setAfterProcessing(e),q(!1)}).catch(e=>{try{null!=e&&e.headers&&E(e.headers,r),e.json().then(e=>{var t,n,o;null!==(t=e.data)&&void 0!==t&&t.cart&&A(e.data.cart),V(Object(h.b)(e),{id:"checkout",context:"wc/checkout"}),null==e||null===(n=e.additional_errors)||void 0===n||null===(o=n.forEach)||void 0===o||o.call(n,e=>{V(e.message,{id:e.error_code,context:"wc/checkout"})}),r.setAfterProcessing(e)})}catch{var t;V(Object(d.sprintf)(// Translators: %s Error text.
4
  Object(d.__)("%s Please try placing your order again.","woocommerce"),null!==(t=null==e?void 0:e.message)&&void 0!==t?t:Object(d.__)("Something went wrong.","woocommerce")),{id:"checkout",context:"wc/checkout"})}r.setHasError(!0),q(!1)})},[Y,B,T,W,I,F,P,_,S,k,x,r,V,A]);return Object(n.useEffect)(()=>{$&&!Y&&J()},[J,$,Y]),null};const S=e=>{let{children:t,isCart:r=!1,redirectUrl:d}=e;return Object(n.createElement)(u.a,{redirectUrl:d,isCart:r},Object(n.createElement)(l.a,null,Object(n.createElement)(i.a,null,Object(n.createElement)(a.a,null,t,Object(n.createElement)(c.a,{renderError:s.CURRENT_USER_IS_ADMIN?null:()=>null},Object(n.createElement)(o.PluginArea,{scope:"woocommerce-checkout"})),Object(n.createElement)(_,null)))))}},,,,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"b",(function(){return s}));var n=r(0);const o=Object(n.createContext)({allowCreateAccount:!1,showCompanyField:!1,showApartmentField:!1,showPhoneField:!1,requireCompanyField:!1,requirePhoneField:!1,showOrderNotes:!0,showPolicyLinks:!0,showReturnToCart:!0,cartPageId:0,showRateAfterTaxName:!1}),s=(Object(n.createContext)({addressFieldControls:()=>null,accountControls:()=>null}),()=>Object(n.useContext)(o))},function(e,t){e.exports=window.wp.keycodes},,function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=(e,t)=>{const r=[];return Object.keys(e).forEach(n=>{if(void 0!==t[n])switch(e[n].type){case"boolean":r[n]="false"!==t[n]&&!1!==t[n];break;case"number":r[n]=parseInt(t[n],10);break;case"array":case"object":r[n]=JSON.parse(t[n]);break;default:r[n]=t[n]}else r[n]=e[n].default}),r}},,,,,,,,,,,,,,,,,,,,function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-actions-block","version":"1.0.0","title":"Actions","description":"Allow customers to place their order.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-billing-address-block","version":"1.0.0","title":"Billing Address","description":"Collect your customer\'s billing address.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-contact-information-block","version":"1.0.0","title":"Contact Information","description":"Collect your customer\'s contact information.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-express-payment-block","version":"1.0.0","title":"Express Checkout","description":"Provide an express payment option for your customers.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-fields-block","version":"1.0.0","title":"Checkout Fields","description":"Column containing checkout address fields.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-note-block","version":"1.0.0","title":"Order Note","description":"Allow customers to add a note to their order.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":false,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-payment-block","version":"1.0.0","title":"Payment Options","description":"Payment options for your store.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-shipping-address-block","version":"1.0.0","title":"Shipping Address","description":"Collect your customer\'s shipping address.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-shipping-methods-block","version":"1.0.0","title":"Shipping Options","description":"Shipping options for your store.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-terms-block","version":"1.0.0","title":"Terms and Conditions","description":"Ensure customers agree to your terms and conditions and privacy policy.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"checkbox":{"type":"boolean","default":false},"text":{"type":"string","required":false}},"parent":["woocommerce/checkout-fields-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-totals-block","version":"1.0.0","title":"Checkout Totals","description":"Column containing the checkout totals.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"className":{"type":"string","default":""},"checkbox":{"type":"boolean","default":false},"text":{"type":"string","required":false}},"parent":["woocommerce/checkout"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-block","version":"1.0.0","title":"Order Summary","description":"Show customers a summary of their order.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false},"attributes":{"lock":{"type":"object","default":{"remove":true}}},"parent":["woocommerce/checkout-totals-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-subtotal-block","version":"1.0.0","title":"Subtotal","description":"Shows the cart subtotal row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-fee-block","version":"1.0.0","title":"Fees","description":"Shows the cart fee row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-discount-block","version":"1.0.0","title":"Discount","description":"Shows the cart discount row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-shipping-block","version":"1.0.0","title":"Shipping","description":"Shows the cart shipping row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-coupon-form-block","version":"1.0.0","title":"Coupon Form","description":"Shows the apply coupon form.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":false,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-taxes-block","version":"1.0.0","title":"Taxes","description":"Shows the cart taxes row.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout-order-summary-cart-items-block","version":"1.0.0","title":"Cart Items","description":"Shows cart items.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false},"attributes":{"className":{"type":"string","default":""},"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/checkout-order-summary-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/checkout","version":"1.0.0","title":"Checkout","description":"Display a checkout form so your customers can submit orders.","category":"woocommerce","keywords":["WooCommerce"],"supports":{"align":["wide"],"html":false,"multiple":false},"attributes":{"isPreview":{"type":"boolean","default":false,"save":false},"showCompanyField":{"type":"boolean","default":false},"requireCompanyField":{"type":"boolean","default":false},"allowCreateAccount":{"type":"boolean","default":false},"showApartmentField":{"type":"boolean","default":true},"showPhoneField":{"type":"boolean","default":true},"requirePhoneField":{"type":"boolean","default":false}},"textdomain":"woocommerce","apiVersion":2}')},,,,,,,,,,,function(e,t,r){"use strict";r.d(t,"b",(function(){return i})),r.d(t,"a",(function(){return l}));var n=r(0),o=r(6),s=r(12),c=r.n(s);const a=Object(n.createContext)({getValidationError:()=>"",setValidationErrors:e=>{},clearValidationError:e=>{},clearAllValidationErrors:()=>{},hideValidationError:()=>{},showValidationError:()=>{},showAllValidationErrors:()=>{},hasValidationErrors:!1,getValidationErrorId:e=>e}),i=()=>Object(n.useContext)(a),l=e=>{let{children:t}=e;const[r,s]=Object(n.useState)({}),i=Object(n.useCallback)(e=>r[e],[r]),l=Object(n.useCallback)(e=>{const t=r[e];return!t||t.hidden?"":"validate-error-"+e},[r]),u=Object(n.useCallback)(e=>{s(t=>{if(!t[e])return t;const{[e]:r,...n}=t;return n})},[]),d=Object(n.useCallback)(()=>{s({})},[]),p=Object(n.useCallback)(e=>{e&&s(t=>(e=Object(o.pickBy)(e,(e,r)=>!("string"!=typeof e.message||t.hasOwnProperty(r)&&c()(t[r],e))),0===Object.values(e).length?t:{...t,...e}))},[]),m=Object(n.useCallback)((e,t)=>{s(r=>{if(!r.hasOwnProperty(e))return r;const n={...r[e],...t};return c()(r[e],n)?r:{...r,[e]:n}})},[]),f={getValidationError:i,setValidationErrors:p,clearValidationError:u,clearAllValidationErrors:d,hideValidationError:Object(n.useCallback)(e=>{m(e,{hidden:!0})},[m]),showValidationError:Object(n.useCallback)(e=>{m(e,{hidden:!1})},[m]),showAllValidationErrors:Object(n.useCallback)(()=>{s(e=>{const t={};return Object.keys(e).forEach(r=>{e[r].hidden&&(t[r]={...e[r],hidden:!1})}),0===Object.values(t).length?e:{...e,...t}})},[]),hasValidationErrors:Object.keys(r).length>0,getValidationErrorId:l};return Object(n.createElement)(a.Provider,{value:f},t)}},,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(91);const o=(e,t)=>function(r){let o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:10;const s=n.a.addEventCallback(e,r,o);return t(s),()=>{t(n.a.removeEventCallback(e,s.id))}}},function(e,t){},function(e,t,r){"use strict";r.d(t,"a",(function(){return s})),r.d(t,"b",(function(){return c}));const n=(e,t)=>e[t]?Array.from(e[t].values()).sort((e,t)=>e.priority-t.priority):[];var o=r(29);const s=async(e,t,r)=>{const o=n(e,t),s=[];for(const e of o)try{const t=await Promise.resolve(e.callback(r));"object"==typeof t&&s.push(t)}catch(e){console.error(e)}return!s.length||s},c=async(e,t,r)=>{const s=[],c=n(e,t);for(const e of c)try{const t=await Promise.resolve(e.callback(r));if("object"!=typeof t||null===t)continue;if(!t.hasOwnProperty("type"))throw new Error("Returned objects from event emitter observers must return an object with a type property");if(Object(o.a)(t)||Object(o.b)(t))return s.push(t),s;s.push(t)}catch(e){return console.error(e),s.push({type:"error"}),s}return s}},,function(e,t,r){"use strict";r.d(t,"b",(function(){return L})),r.d(t,"a",(function(){return F}));var n=r(0),o=r(61),s=r(7);let c,a;!function(e){e.PRISTINE="pristine",e.STARTED="started",e.PROCESSING="processing",e.ERROR="has_error",e.FAILED="failed",e.SUCCESS="success",e.COMPLETE="complete"}(c||(c={})),function(e){e.SET_REGISTERED_PAYMENT_METHODS="set_registered_payment_methods",e.SET_REGISTERED_EXPRESS_PAYMENT_METHODS="set_registered_express_payment_methods",e.SET_SHOULD_SAVE_PAYMENT_METHOD="set_should_save_payment_method",e.SET_ACTIVE_PAYMENT_METHOD="set_active_payment_method"}(a||(a={}));const i={currentStatus:c.PRISTINE,shouldSavePaymentMethod:!1,activePaymentMethod:"",paymentMethodData:{payment_method:""},errorMessage:"",paymentMethods:{},expressPaymentMethods:{}},l={setPaymentStatus:()=>({pristine:()=>{},started:()=>{},processing:()=>{},completed:()=>{},error:e=>{},failed:(e,t)=>{},success:(e,t)=>{}}),currentStatus:{isPristine:!0,isStarted:!1,isProcessing:!1,isFinished:!1,hasError:!1,hasFailed:!1,isSuccessful:!1,isDoingExpressPayment:!1},paymentStatuses:c,paymentMethodData:{},errorMessage:"",activePaymentMethod:"",activeSavedToken:"",setActivePaymentMethod:()=>{},customerPaymentMethods:{},paymentMethods:{},expressPaymentMethods:{},paymentMethodsInitialized:!1,expressPaymentMethodsInitialized:!1,onPaymentProcessing:()=>()=>()=>{},setExpressPaymentError:()=>{},isExpressPaymentMethodActive:!1,setShouldSavePayment:()=>{},shouldSavePayment:!1};var u=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i,{type:t,paymentMethodData:r,shouldSavePaymentMethod:n=!1,errorMessage:o="",paymentMethods:s={},paymentMethod:l=""}=arguments.length>1?arguments[1]:void 0;switch(t){case c.PRISTINE:return{...i,...e,errorMessage:"",currentStatus:c.PRISTINE};case c.STARTED:return{...e,currentStatus:c.STARTED};case c.ERROR:return e.currentStatus!==c.ERROR?{...e,currentStatus:c.ERROR,errorMessage:o||e.errorMessage}:e;case c.FAILED:return e.currentStatus!==c.FAILED?{...e,currentStatus:c.FAILED,paymentMethodData:r||e.paymentMethodData,errorMessage:o||e.errorMessage}:e;case c.SUCCESS:return e.currentStatus!==c.SUCCESS?{...e,currentStatus:c.SUCCESS,paymentMethodData:r||e.paymentMethodData}:e;case c.PROCESSING:return e.currentStatus!==c.PROCESSING?{...e,currentStatus:c.PROCESSING,errorMessage:""}:e;case c.COMPLETE:return e.currentStatus!==c.COMPLETE?{...e,currentStatus:c.COMPLETE}:e;case a.SET_REGISTERED_PAYMENT_METHODS:return{...e,paymentMethods:s};case a.SET_REGISTERED_EXPRESS_PAYMENT_METHODS:return{...e,expressPaymentMethods:s};case a.SET_SHOULD_SAVE_PAYMENT_METHOD:return{...e,shouldSavePaymentMethod:n};case a.SET_ACTIVE_PAYMENT_METHOD:return{...e,activePaymentMethod:l,paymentMethodData:r||e.paymentMethodData}}},d=r(1),p=r(17),m=r(30),f=r(2),h=r(47),b=r(27),g=r(46),E=r(31),y=r(29),O=r(64);const v=(e,t,r,o)=>{const[c,a]=Object(n.useState)(!1),{isEditor:i}=Object(b.a)(),{selectedRates:l}=Object(O.a)(),{billingData:u,shippingAddress:p}=Object(g.b)(),y=Object(m.a)(l),v=Object(m.a)(r),_=Object(E.a)(),{cartTotals:S,cartIsLoading:k,cartNeedsShipping:w,paymentRequirements:j}=_,C=Object(n.useRef)({cart:_,cartTotals:S,cartNeedsShipping:w,billingData:u,shippingAddress:p,selectedShippingMethods:y,paymentRequirements:j}),{createErrorNotice:R}=Object(s.useDispatch)("core/notices");Object(n.useEffect)(()=>{C.current={cart:_,cartTotals:S,cartNeedsShipping:w,billingData:u,shippingAddress:p,selectedShippingMethods:y,paymentRequirements:j}},[_,S,w,u,p,y,j]);const T=Object(n.useCallback)(async()=>{let r={};const n=e=>{r={...r,[e.name]:e}};for(let e=0;e<v.length;e++){const r=v[e],s=t[r];if(s)try{const e=!!i||await Promise.resolve(s.canMakePayment(C.current));if(e){if("object"==typeof e&&null!==e&&e.error)throw new Error(e.error.message);n(s)}}catch(e){if(f.CURRENT_USER_IS_ADMIN||i){const t=Object(d.sprintf)(
packages/woocommerce-blocks/build/handpicked-products.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'react', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => 'b0b50f4eb47531141f8574d0a50aeefc');
1
+ <?php return array('dependencies' => array('lodash', 'react', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => '21d5ad90c84c52efe2b6f076a48bd864');
packages/woocommerce-blocks/build/handpicked-products.js CHANGED
@@ -4,5 +4,5 @@ noResults:Object(o.__)("No results for %s","woocommerce"),search:Object(o.__)("S
4
  /* translators: Number of items selected from list. */
5
  Object(o._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(o.__)("Search results updated.","woocommerce")},i=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(n.groupBy)(e,"parent"),r=Object(n.keyBy)(t,"id"),o=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},i=e=>e.map(e=>{const t=c[e.id];return o.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?i(t):[]}}),s=i(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;o.includes(t)||s.push(...i(c||[]))}),s},s=(e,t,c)=>{if(!t)return c?i(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),n=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?i(n,e):n},a=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return o})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return i})),c.d(t,"n",(function(){return s})),c.d(t,"j",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return d})),c.d(t,"g",(function(){return b})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return p})),c.d(t,"d",(function(){return m})),c.d(t,"h",(function(){return h})),c.d(t,"a",(function(){return E})),c.d(t,"i",(function(){return O})),c.d(t,"b",(function(){return j}));var r,n=c(2);const o=Object(n.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=o.pluginUrl+"images/",i=o.pluginUrl+"build/",s=o.buildPhase,a=null===(r=n.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=n.STORE_PAGES.checkout.id,d=n.STORE_PAGES.checkout.permalink,b=n.STORE_PAGES.privacy.permalink,g=(n.STORE_PAGES.privacy.title,n.STORE_PAGES.terms.permalink),p=(n.STORE_PAGES.terms.title,n.STORE_PAGES.cart.id),m=n.STORE_PAGES.cart.permalink,h=(n.STORE_PAGES.myaccount.permalink?n.STORE_PAGES.myaccount.permalink:Object(n.getSetting)("wpLoginUrl","/wp-login.php"),Object(n.getSetting)("shippingCountries",{})),E=Object(n.getSetting)("allowedCountries",{}),O=Object(n.getSetting)("shippingStates",{}),j=Object(n.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return d})),c.d(t,"i",(function(){return b})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return p})),c.d(t,"d",(function(){return m})),c.d(t,"g",(function(){return h})),c.d(t,"a",(function(){return E}));var r=c(16),n=c(15),o=c.n(n),l=c(7),i=c(2),s=c(24);const a=e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const i=(e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const o=s.o.productCount>100,l={per_page:o?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},i=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...n})];return o&&t.length&&i.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),i})({selected:t,search:c,queryArgs:n});return Promise.all(i.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>o()({path:"/wc/store/v1/products/"+e}),d=()=>o()({path:"wc/store/v1/products/attributes"}),b=e=>o()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const n=(e=>{let{selected:t=[],search:c}=e;const n=Object(i.getSetting)("limitTags",!1),o=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:n?100:0,orderby:n?"count":"name",order:n?"desc":"asc",search:c})];return n&&t.length&&o.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),o})({selected:t,search:c});return Promise.all(n.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},p=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),m=e=>o()({path:"wc/store/v1/products/categories/"+e}),h=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),E=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return o})),c.d(t,"b",(function(){return l}));var r=c(1),n=c(14);const o=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(n.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):t:Object(n.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return i}));var r=c(6),n=c.n(r),o=c(0),l=c(21);const i=e=>{let{countLabel:t,className:c,depth:r=0,controlId:i="",item:s,isSelected:a,isSingle:u,onSelect:d,search:b="",...g}=e;const p=null!=t&&void 0!==s.count&&null!==s.count,m=[c,"woocommerce-search-list__item"];m.push("depth-"+r),u&&m.push("is-radio-button"),p&&m.push("has-count");const h=s.breadcrumbs&&s.breadcrumbs.length,E=g.name||"search-list-item-"+i,O=`${E}-${s.id}`;return Object(o.createElement)("label",{htmlFor:O,className:m.join(" ")},u?Object(o.createElement)("input",n()({type:"radio",id:O,name:E,value:s.value,onChange:d(s),checked:a,className:"woocommerce-search-list__item-input"},g)):Object(o.createElement)("input",n()({type:"checkbox",id:O,name:E,value:s.value,onChange:d(s),checked:a,className:"woocommerce-search-list__item-input"},g)),Object(o.createElement)("span",{className:"woocommerce-search-list__item-label"},h?Object(o.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(s.breadcrumbs)):null,Object(o.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(s.name,b))),!!p&&Object(o.createElement)("span",{className:"woocommerce-search-list__item-count"},t||s.count))};t.b=i},360:function(e,t,c){e.exports=c(488)},361:function(e,t){},488:function(e,t,c){"use strict";c.r(t);var r=c(0),n=c(1),o=c(13),l=c(2),i=c(110),s=c(516),a=(c(361),c(5)),u=c(53),d=c.n(u),b=c(3),g=c(60),p=c(96),m=c(175),h=c(33);const E=e=>{let{error:t,onChange:c,onSearch:o,selected:l,products:i,isLoading:s,isCompact:a}=e;const u={clear:Object(n.__)("Clear all products","woocommerce"),list:Object(n.__)("Products","woocommerce"),noItems:Object(n.__)("Your store doesn't have any products.","woocommerce"),search:Object(n.__)("Search for products to display","woocommerce"),selected:e=>Object(n.sprintf)(
6
  /* translators: %d is the number of selected products. */
7
- Object(n._n)("%d product selected","%d products selected",e,"woocommerce"),e),updated:Object(n.__)("Product search results updated.","woocommerce")};return t?Object(r.createElement)(h.a,{error:t}):Object(r.createElement)(p.a,{className:"woocommerce-products",list:i.map(e=>{const t=e.sku?" ("+e.sku+")":"";return{...e,name:`${e.name}${t}`}}),isCompact:a,isLoading:s,selected:i.filter(e=>{let{id:t}=e;return l.includes(t)}),onSearch:o,onChange:c,messages:u})};E.defaultProps={selected:[],products:[],isCompact:!1,isLoading:!0};var O=Object(m.a)(E),j=c(97),w=c(137);class f extends r.Component{getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{columns:c,contentVisibility:o,orderby:i,alignButtons:s}=e;return Object(r.createElement)(a.InspectorControls,{key:"inspector"},Object(r.createElement)(b.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(b.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:c,onChange:e=>t({columns:e}),min:Object(l.getSetting)("min_columns",1),max:Object(l.getSetting)("max_columns",6)}),Object(r.createElement)(b.ToggleControl,{label:Object(n.__)("Align Buttons","woocommerce"),help:s?Object(n.__)("Buttons are aligned vertically.","woocommerce"):Object(n.__)("Buttons follow content.","woocommerce"),checked:s,onChange:()=>t({alignButtons:!s})})),Object(r.createElement)(b.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{settings:o,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(b.PanelBody,{title:Object(n.__)("Order By","woocommerce"),initialOpen:!1},Object(r.createElement)(j.a,{setAttributes:t,value:i})),Object(r.createElement)(b.PanelBody,{title:Object(n.__)("Products","woocommerce"),initialOpen:!1},Object(r.createElement)(O,{selected:e.products,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({products:c})},isCompact:!0})))}renderEditMode(){const{attributes:e,debouncedSpeak:t,setAttributes:c}=this.props;return Object(r.createElement)(b.Placeholder,{icon:Object(r.createElement)(i.a,{icon:s.a}),label:Object(n.__)("Hand-picked Products","woocommerce"),className:"wc-block-products-grid wc-block-handpicked-products"},Object(n.__)("Display a selection of hand-picked products in a grid.","woocommerce"),Object(r.createElement)("div",{className:"wc-block-handpicked-products__selection"},Object(r.createElement)(O,{selected:e.products,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const t=e.map(e=>{let{id:t}=e;return t});c({products:t})}}),Object(r.createElement)(b.Button,{isPrimary:!0,onClick:()=>{c({editMode:!1}),t(Object(n.__)("Showing Hand-picked Products block preview.","woocommerce"))}},Object(n.__)("Done","woocommerce"))))}render(){const{attributes:e,name:t,setAttributes:c}=this.props,{editMode:o}=e;return e.isPreview?w.a:Object(r.createElement)(r.Fragment,null,Object(r.createElement)(a.BlockControls,null,Object(r.createElement)(b.ToolbarGroup,{controls:[{icon:"edit",title:Object(n.__)("Edit selected products","woocommerce"),onClick:()=>c({editMode:!o}),isActive:o}]})),this.getInspectorControls(),o?this.renderEditMode():Object(r.createElement)(b.Disabled,null,Object(r.createElement)(d.a,{block:t,attributes:e})))}}var _=Object(b.withSpokenMessages)(f);Object(o.registerBlockType)("woocommerce/handpicked-products",{title:Object(n.__)("Hand-picked Products","woocommerce"),icon:{src:Object(r.createElement)(i.a,{icon:s.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("Handpicked Products","woocommerce"),Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a selection of hand-picked products in a grid.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{align:{type:"string"},columns:{type:"number",default:Object(l.getSetting)("default_columns",3)},editMode:{type:"boolean",default:!0},contentVisibility:{type:"object",default:{image:!0,title:!0,price:!0,rating:!0,button:!0}},orderby:{type:"string",default:"date"},products:{type:"array",default:[]},alignButtons:{type:"boolean",default:!1},isPreview:{type:"boolean",default:!1}},edit:e=>Object(r.createElement)(_,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:i,price:s,rating:a,title:u}=c;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:l?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:l,onChange:()=>t({...c,image:!l})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:s?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,price:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:a?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,rating:!a})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:i?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,button:!i})}))}},7:function(e,t){e.exports=window.lodash},8:function(e,t){e.exports=window.React},96:function(e,t,c){"use strict";c.d(t,"a",(function(){return y}));var r=c(6),n=c.n(r),o=c(0),l=c(1),i=c(3),s=c(110),a=c(518),u=c(4),d=c.n(u),b=c(10),g=c(21),p=c(34),m=c(517),h=c(14);const E=e=>{let{id:t,label:c,popoverContents:r,remove:n,screenReaderLabel:a,className:u=""}=e;const[g,p]=Object(o.useState)(!1),O=Object(b.useInstanceId)(E);if(a=a||c,!c)return null;c=Object(h.decodeEntities)(c);const j=d()("woocommerce-tag",u,{"has-remove":!!n}),w="woocommerce-tag__label-"+O,f=Object(o.createElement)(o.Fragment,null,Object(o.createElement)("span",{className:"screen-reader-text"},a),Object(o.createElement)("span",{"aria-hidden":"true"},c));return Object(o.createElement)("span",{className:j},r?Object(o.createElement)(i.Button,{className:"woocommerce-tag__text",id:w,onClick:()=>p(!0)},f):Object(o.createElement)("span",{className:"woocommerce-tag__text",id:w},f),r&&g&&Object(o.createElement)(i.Popover,{onClose:()=>p(!1)},r),n&&Object(o.createElement)(i.Button,{className:"woocommerce-tag__remove",onClick:n(t),label:Object(l.sprintf)(// Translators: %s label.
8
  Object(l.__)("Remove %s","woocommerce"),c),"aria-describedby":w},Object(o.createElement)(s.a,{icon:m.a,size:20,className:"clear-icon"})))};var O=E;const j=e=>Object(o.createElement)(p.b,e),w=e=>{const{list:t,selected:c,renderItem:r,depth:l=0,onSelect:i,instanceId:s,isSingle:a,search:u}=e;return t?Object(o.createElement)(o.Fragment,null,t.map(t=>{const d=-1!==c.findIndex(e=>{let{id:c}=e;return c===t.id});return Object(o.createElement)(o.Fragment,{key:t.id},Object(o.createElement)("li",null,r({item:t,isSelected:d,onSelect:i,isSingle:a,search:u,depth:l,controlId:s})),Object(o.createElement)(w,n()({},e,{list:t.children,depth:l+1})))})):null},f=e=>{let{isLoading:t,isSingle:c,selected:r,messages:n,onChange:s,onRemove:a}=e;if(t||c||!r)return null;const u=r.length;return Object(o.createElement)("div",{className:"woocommerce-search-list__selected"},Object(o.createElement)("div",{className:"woocommerce-search-list__selected-header"},Object(o.createElement)("strong",null,n.selected(u)),u>0?Object(o.createElement)(i.Button,{isLink:!0,isDestructive:!0,onClick:()=>s([]),"aria-label":n.clear},Object(l.__)("Clear all","woocommerce")):null),u>0?Object(o.createElement)("ul",null,r.map((e,t)=>Object(o.createElement)("li",{key:t},Object(o.createElement)(O,{label:e.name,id:e.id,remove:a})))):null)},_=e=>{let{filteredList:t,search:c,onSelect:r,instanceId:n,...i}=e;const{messages:u,renderItem:d,selected:b,isSingle:g}=i,p=d||j;return 0===t.length?Object(o.createElement)("div",{className:"woocommerce-search-list__list is-not-found"},Object(o.createElement)("span",{className:"woocommerce-search-list__not-found-icon"},Object(o.createElement)(s.a,{icon:a.a})),Object(o.createElement)("span",{className:"woocommerce-search-list__not-found-text"},c?Object(l.sprintf)(u.noResults,c):u.noItems)):Object(o.createElement)("ul",{className:"woocommerce-search-list__list"},Object(o.createElement)(w,{list:t,selected:b,renderItem:p,onSelect:r,instanceId:n,isSingle:g,search:c}))},y=e=>{const{className:t="",isCompact:c,isHierarchical:r,isLoading:l,isSingle:s,list:a,messages:u=g.a,onChange:p,onSearch:m,selected:h,debouncedSpeak:E}=e,[O,j]=Object(o.useState)(""),w=Object(b.useInstanceId)(y),x=Object(o.useMemo)(()=>({...g.a,...u}),[u]),k=Object(o.useMemo)(()=>Object(g.c)(a,O,r),[a,O,r]);Object(o.useEffect)(()=>{E&&E(x.updated)},[E,x]),Object(o.useEffect)(()=>{"function"==typeof m&&m(O)},[O,m]);const v=Object(o.useCallback)(e=>()=>{s&&p([]);const t=h.findIndex(t=>{let{id:c}=t;return c===e});p([...h.slice(0,t),...h.slice(t+1)])},[s,h,p]),S=Object(o.useCallback)(e=>()=>{-1===h.findIndex(t=>{let{id:c}=t;return c===e.id})?p(s?[e]:[...h,e]):v(e.id)()},[s,v,p,h]);return Object(o.createElement)("div",{className:d()("woocommerce-search-list",t,{"is-compact":c})},Object(o.createElement)(f,n()({},e,{onRemove:v,messages:x})),Object(o.createElement)("div",{className:"woocommerce-search-list__search"},Object(o.createElement)(i.TextControl,{label:x.search,type:"search",value:O,onChange:e=>j(e)})),l?Object(o.createElement)("div",{className:"woocommerce-search-list__list is-loading"},Object(o.createElement)(i.Spinner,null)):Object(o.createElement)(_,n()({},e,{search:O,filteredList:k,messages:x,onSelect:S,instanceId:w})))};Object(i.withSpokenMessages)(y)},97:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{value:t,setAttributes:c}=e;return Object(r.createElement)(o.SelectControl,{label:Object(n.__)("Order products by","woocommerce"),value:t,options:[{label:Object(n.__)("Newness - newest first","woocommerce"),value:"date"},{label:Object(n.__)("Price - low to high","woocommerce"),value:"price_asc"},{label:Object(n.__)("Price - high to low","woocommerce"),value:"price_desc"},{label:Object(n.__)("Rating - highest first","woocommerce"),value:"rating"},{label:Object(n.__)("Sales - most first","woocommerce"),value:"popularity"},{label:Object(n.__)("Title - alphabetical","woocommerce"),value:"title"},{label:Object(n.__)("Menu Order","woocommerce"),value:"menu_order"}],onChange:e=>c({orderby:e})})}}});
4
  /* translators: Number of items selected from list. */
5
  Object(o._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(o.__)("Search results updated.","woocommerce")},i=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(n.groupBy)(e,"parent"),r=Object(n.keyBy)(t,"id"),o=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},i=e=>e.map(e=>{const t=c[e.id];return o.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?i(t):[]}}),s=i(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;o.includes(t)||s.push(...i(c||[]))}),s},s=(e,t,c)=>{if(!t)return c?i(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),n=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?i(n,e):n},a=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return o})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return i})),c.d(t,"n",(function(){return s})),c.d(t,"j",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return d})),c.d(t,"g",(function(){return b})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return p})),c.d(t,"d",(function(){return m})),c.d(t,"h",(function(){return h})),c.d(t,"a",(function(){return E})),c.d(t,"i",(function(){return O})),c.d(t,"b",(function(){return j}));var r,n=c(2);const o=Object(n.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=o.pluginUrl+"images/",i=o.pluginUrl+"build/",s=o.buildPhase,a=null===(r=n.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=n.STORE_PAGES.checkout.id,d=n.STORE_PAGES.checkout.permalink,b=n.STORE_PAGES.privacy.permalink,g=(n.STORE_PAGES.privacy.title,n.STORE_PAGES.terms.permalink),p=(n.STORE_PAGES.terms.title,n.STORE_PAGES.cart.id),m=n.STORE_PAGES.cart.permalink,h=(n.STORE_PAGES.myaccount.permalink?n.STORE_PAGES.myaccount.permalink:Object(n.getSetting)("wpLoginUrl","/wp-login.php"),Object(n.getSetting)("shippingCountries",{})),E=Object(n.getSetting)("allowedCountries",{}),O=Object(n.getSetting)("shippingStates",{}),j=Object(n.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return d})),c.d(t,"i",(function(){return b})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return p})),c.d(t,"d",(function(){return m})),c.d(t,"g",(function(){return h})),c.d(t,"a",(function(){return E}));var r=c(16),n=c(15),o=c.n(n),l=c(7),i=c(2),s=c(24);const a=e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const i=(e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const o=s.o.productCount>100,l={per_page:o?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},i=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...n})];return o&&t.length&&i.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),i})({selected:t,search:c,queryArgs:n});return Promise.all(i.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>o()({path:"/wc/store/v1/products/"+e}),d=()=>o()({path:"wc/store/v1/products/attributes"}),b=e=>o()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const n=(e=>{let{selected:t=[],search:c}=e;const n=Object(i.getSetting)("limitTags",!1),o=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:n?100:0,orderby:n?"count":"name",order:n?"desc":"asc",search:c})];return n&&t.length&&o.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),o})({selected:t,search:c});return Promise.all(n.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},p=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),m=e=>o()({path:"wc/store/v1/products/categories/"+e}),h=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),E=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return o})),c.d(t,"b",(function(){return l}));var r=c(1),n=c(14);const o=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(n.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):t:Object(n.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return i}));var r=c(6),n=c.n(r),o=c(0),l=c(21);const i=e=>{let{countLabel:t,className:c,depth:r=0,controlId:i="",item:s,isSelected:a,isSingle:u,onSelect:d,search:b="",...g}=e;const p=null!=t&&void 0!==s.count&&null!==s.count,m=[c,"woocommerce-search-list__item"];m.push("depth-"+r),u&&m.push("is-radio-button"),p&&m.push("has-count");const h=s.breadcrumbs&&s.breadcrumbs.length,E=g.name||"search-list-item-"+i,O=`${E}-${s.id}`;return Object(o.createElement)("label",{htmlFor:O,className:m.join(" ")},u?Object(o.createElement)("input",n()({type:"radio",id:O,name:E,value:s.value,onChange:d(s),checked:a,className:"woocommerce-search-list__item-input"},g)):Object(o.createElement)("input",n()({type:"checkbox",id:O,name:E,value:s.value,onChange:d(s),checked:a,className:"woocommerce-search-list__item-input"},g)),Object(o.createElement)("span",{className:"woocommerce-search-list__item-label"},h?Object(o.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(s.breadcrumbs)):null,Object(o.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(s.name,b))),!!p&&Object(o.createElement)("span",{className:"woocommerce-search-list__item-count"},t||s.count))};t.b=i},360:function(e,t,c){e.exports=c(488)},361:function(e,t){},488:function(e,t,c){"use strict";c.r(t);var r=c(0),n=c(1),o=c(13),l=c(2),i=c(110),s=c(516),a=(c(361),c(5)),u=c(53),d=c.n(u),b=c(3),g=c(60),p=c(96),m=c(175),h=c(33);const E=e=>{let{error:t,onChange:c,onSearch:o,selected:l,products:i,isLoading:s,isCompact:a}=e;const u={clear:Object(n.__)("Clear all products","woocommerce"),list:Object(n.__)("Products","woocommerce"),noItems:Object(n.__)("Your store doesn't have any products.","woocommerce"),search:Object(n.__)("Search for products to display","woocommerce"),selected:e=>Object(n.sprintf)(
6
  /* translators: %d is the number of selected products. */
7
+ Object(n._n)("%d product selected","%d products selected",e,"woocommerce"),e),updated:Object(n.__)("Product search results updated.","woocommerce")};return t?Object(r.createElement)(h.a,{error:t}):Object(r.createElement)(p.a,{className:"woocommerce-products",list:i.map(e=>{const t=e.sku?" ("+e.sku+")":"";return{...e,name:`${e.name}${t}`}}),isCompact:a,isLoading:s,selected:i.filter(e=>{let{id:t}=e;return l.includes(t)}),onSearch:o,onChange:c,messages:u})};E.defaultProps={selected:[],products:[],isCompact:!1,isLoading:!0};var O=Object(m.a)(E),j=c(97),w=c(137);class f extends r.Component{getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{columns:c,contentVisibility:o,orderby:i,alignButtons:s}=e;return Object(r.createElement)(a.InspectorControls,{key:"inspector"},Object(r.createElement)(b.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(b.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:c,onChange:e=>t({columns:e}),min:Object(l.getSetting)("min_columns",1),max:Object(l.getSetting)("max_columns",6)}),Object(r.createElement)(b.ToggleControl,{label:Object(n.__)("Align Buttons","woocommerce"),help:s?Object(n.__)("Buttons are aligned vertically.","woocommerce"):Object(n.__)("Buttons follow content.","woocommerce"),checked:s,onChange:()=>t({alignButtons:!s})})),Object(r.createElement)(b.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{settings:o,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(b.PanelBody,{title:Object(n.__)("Order By","woocommerce"),initialOpen:!1},Object(r.createElement)(j.a,{setAttributes:t,value:i})),Object(r.createElement)(b.PanelBody,{title:Object(n.__)("Products","woocommerce"),initialOpen:!1},Object(r.createElement)(O,{selected:e.products,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({products:c})},isCompact:!0})))}renderEditMode(){const{attributes:e,debouncedSpeak:t,setAttributes:c}=this.props;return Object(r.createElement)(b.Placeholder,{icon:Object(r.createElement)(i.a,{icon:s.a}),label:Object(n.__)("Hand-picked Products","woocommerce"),className:"wc-block-products-grid wc-block-handpicked-products"},Object(n.__)("Display a selection of hand-picked products in a grid.","woocommerce"),Object(r.createElement)("div",{className:"wc-block-handpicked-products__selection"},Object(r.createElement)(O,{selected:e.products,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const t=e.map(e=>{let{id:t}=e;return t});c({products:t})}}),Object(r.createElement)(b.Button,{isPrimary:!0,onClick:()=>{c({editMode:!1}),t(Object(n.__)("Showing Hand-picked Products block preview.","woocommerce"))}},Object(n.__)("Done","woocommerce"))))}render(){const{attributes:e,name:t,setAttributes:c}=this.props,{editMode:o}=e;return e.isPreview?w.a:Object(r.createElement)(r.Fragment,null,Object(r.createElement)(a.BlockControls,null,Object(r.createElement)(b.ToolbarGroup,{controls:[{icon:"edit",title:Object(n.__)("Edit selected products","woocommerce"),onClick:()=>c({editMode:!o}),isActive:o}]})),this.getInspectorControls(),o?this.renderEditMode():Object(r.createElement)(b.Disabled,null,Object(r.createElement)(d.a,{block:t,attributes:e})))}}var _=Object(b.withSpokenMessages)(f);Object(o.registerBlockType)("woocommerce/handpicked-products",{title:Object(n.__)("Hand-picked Products","woocommerce"),icon:{src:Object(r.createElement)(i.a,{icon:s.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("Handpicked Products","woocommerce"),Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a selection of hand-picked products in a grid.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{align:{type:"string"},columns:{type:"number",default:Object(l.getSetting)("default_columns",3)},editMode:{type:"boolean",default:!0},contentVisibility:{type:"object",default:{image:!0,title:!0,price:!0,rating:!0,button:!0}},orderby:{type:"string",default:"date"},products:{type:"array",default:[]},alignButtons:{type:"boolean",default:!1},isPreview:{type:"boolean",default:!1}},edit:e=>Object(r.createElement)(_,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:i,price:s,rating:a,title:u}=c,d=!1!==l;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:d?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:d,onChange:()=>t({...c,image:!d})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:s?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,price:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:a?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,rating:!a})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:i?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,button:!i})}))}},7:function(e,t){e.exports=window.lodash},8:function(e,t){e.exports=window.React},96:function(e,t,c){"use strict";c.d(t,"a",(function(){return y}));var r=c(6),n=c.n(r),o=c(0),l=c(1),i=c(3),s=c(110),a=c(518),u=c(4),d=c.n(u),b=c(10),g=c(21),p=c(34),m=c(517),h=c(14);const E=e=>{let{id:t,label:c,popoverContents:r,remove:n,screenReaderLabel:a,className:u=""}=e;const[g,p]=Object(o.useState)(!1),O=Object(b.useInstanceId)(E);if(a=a||c,!c)return null;c=Object(h.decodeEntities)(c);const j=d()("woocommerce-tag",u,{"has-remove":!!n}),w="woocommerce-tag__label-"+O,f=Object(o.createElement)(o.Fragment,null,Object(o.createElement)("span",{className:"screen-reader-text"},a),Object(o.createElement)("span",{"aria-hidden":"true"},c));return Object(o.createElement)("span",{className:j},r?Object(o.createElement)(i.Button,{className:"woocommerce-tag__text",id:w,onClick:()=>p(!0)},f):Object(o.createElement)("span",{className:"woocommerce-tag__text",id:w},f),r&&g&&Object(o.createElement)(i.Popover,{onClose:()=>p(!1)},r),n&&Object(o.createElement)(i.Button,{className:"woocommerce-tag__remove",onClick:n(t),label:Object(l.sprintf)(// Translators: %s label.
8
  Object(l.__)("Remove %s","woocommerce"),c),"aria-describedby":w},Object(o.createElement)(s.a,{icon:m.a,size:20,className:"clear-icon"})))};var O=E;const j=e=>Object(o.createElement)(p.b,e),w=e=>{const{list:t,selected:c,renderItem:r,depth:l=0,onSelect:i,instanceId:s,isSingle:a,search:u}=e;return t?Object(o.createElement)(o.Fragment,null,t.map(t=>{const d=-1!==c.findIndex(e=>{let{id:c}=e;return c===t.id});return Object(o.createElement)(o.Fragment,{key:t.id},Object(o.createElement)("li",null,r({item:t,isSelected:d,onSelect:i,isSingle:a,search:u,depth:l,controlId:s})),Object(o.createElement)(w,n()({},e,{list:t.children,depth:l+1})))})):null},f=e=>{let{isLoading:t,isSingle:c,selected:r,messages:n,onChange:s,onRemove:a}=e;if(t||c||!r)return null;const u=r.length;return Object(o.createElement)("div",{className:"woocommerce-search-list__selected"},Object(o.createElement)("div",{className:"woocommerce-search-list__selected-header"},Object(o.createElement)("strong",null,n.selected(u)),u>0?Object(o.createElement)(i.Button,{isLink:!0,isDestructive:!0,onClick:()=>s([]),"aria-label":n.clear},Object(l.__)("Clear all","woocommerce")):null),u>0?Object(o.createElement)("ul",null,r.map((e,t)=>Object(o.createElement)("li",{key:t},Object(o.createElement)(O,{label:e.name,id:e.id,remove:a})))):null)},_=e=>{let{filteredList:t,search:c,onSelect:r,instanceId:n,...i}=e;const{messages:u,renderItem:d,selected:b,isSingle:g}=i,p=d||j;return 0===t.length?Object(o.createElement)("div",{className:"woocommerce-search-list__list is-not-found"},Object(o.createElement)("span",{className:"woocommerce-search-list__not-found-icon"},Object(o.createElement)(s.a,{icon:a.a})),Object(o.createElement)("span",{className:"woocommerce-search-list__not-found-text"},c?Object(l.sprintf)(u.noResults,c):u.noItems)):Object(o.createElement)("ul",{className:"woocommerce-search-list__list"},Object(o.createElement)(w,{list:t,selected:b,renderItem:p,onSelect:r,instanceId:n,isSingle:g,search:c}))},y=e=>{const{className:t="",isCompact:c,isHierarchical:r,isLoading:l,isSingle:s,list:a,messages:u=g.a,onChange:p,onSearch:m,selected:h,debouncedSpeak:E}=e,[O,j]=Object(o.useState)(""),w=Object(b.useInstanceId)(y),x=Object(o.useMemo)(()=>({...g.a,...u}),[u]),k=Object(o.useMemo)(()=>Object(g.c)(a,O,r),[a,O,r]);Object(o.useEffect)(()=>{E&&E(x.updated)},[E,x]),Object(o.useEffect)(()=>{"function"==typeof m&&m(O)},[O,m]);const v=Object(o.useCallback)(e=>()=>{s&&p([]);const t=h.findIndex(t=>{let{id:c}=t;return c===e});p([...h.slice(0,t),...h.slice(t+1)])},[s,h,p]),S=Object(o.useCallback)(e=>()=>{-1===h.findIndex(t=>{let{id:c}=t;return c===e.id})?p(s?[e]:[...h,e]):v(e.id)()},[s,v,p,h]);return Object(o.createElement)("div",{className:d()("woocommerce-search-list",t,{"is-compact":c})},Object(o.createElement)(f,n()({},e,{onRemove:v,messages:x})),Object(o.createElement)("div",{className:"woocommerce-search-list__search"},Object(o.createElement)(i.TextControl,{label:x.search,type:"search",value:O,onChange:e=>j(e)})),l?Object(o.createElement)("div",{className:"woocommerce-search-list__list is-loading"},Object(o.createElement)(i.Spinner,null)):Object(o.createElement)(_,n()({},e,{search:O,filteredList:k,messages:x,onSelect:S,instanceId:w})))};Object(i.withSpokenMessages)(y)},97:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{value:t,setAttributes:c}=e;return Object(r.createElement)(o.SelectControl,{label:Object(n.__)("Order products by","woocommerce"),value:t,options:[{label:Object(n.__)("Newness - newest first","woocommerce"),value:"date"},{label:Object(n.__)("Price - low to high","woocommerce"),value:"price_asc"},{label:Object(n.__)("Price - high to low","woocommerce"),value:"price_desc"},{label:Object(n.__)("Rating - highest first","woocommerce"),value:"rating"},{label:Object(n.__)("Sales - most first","woocommerce"),value:"popularity"},{label:Object(n.__)("Title - alphabetical","woocommerce"),value:"title"},{label:Object(n.__)("Menu Order","woocommerce"),value:"menu_order"}],onChange:e=>c({orderby:e})})}}});
packages/woocommerce-blocks/build/mini-cart-component-frontend.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-checkout', 'wc-blocks-data-store', 'wc-blocks-registry', 'wc-price-format', 'wc-settings', 'wp-a11y', 'wp-autop', 'wp-components', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning', 'wp-wordcount'), 'version' => '0351b8c002b770038e79663b88ee975f');
1
+ <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-checkout', 'wc-blocks-data-store', 'wc-blocks-registry', 'wc-price-format', 'wc-settings', 'wp-a11y', 'wp-autop', 'wp-components', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-keycodes', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning', 'wp-wordcount'), 'version' => 'f9cb0dcfc67bfa8c78fcaf79d0c9db82');
packages/woocommerce-blocks/build/mini-cart-component-frontend.js CHANGED
@@ -1,4 +1,4 @@
1
- !function(e){function t(t){for(var r,o,c=t[0],a=t[1],i=0,l=[];i<c.length;i++)o=c[i],Object.prototype.hasOwnProperty.call(n,o)&&n[o]&&l.push(n[o][0]),n[o]=0;for(r in a)Object.prototype.hasOwnProperty.call(a,r)&&(e[r]=a[r]);for(s&&s(t);l.length;)l.shift()()}var r={},n={49:0};function o(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}o.e=function(e){var t=[],r=n[e];if(0!==r)if(r)t.push(r[2]);else{var c=new Promise((function(t,o){r=n[e]=[t,o]}));t.push(r[2]=c);var a,i=document.createElement("script");i.charset="utf-8",i.timeout=120,o.nc&&i.setAttribute("nonce",o.nc),i.src=function(e){return o.p+""+({0:"vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66",3:"vendors--cart-blocks/cart-line-items--checkout-blocks/order-summary-cart-items--mini-cart-contents---233ab542",4:"cart-blocks/cart-line-items--mini-cart-contents-block/products-table",7:"mini-cart-contents-block/footer--mini-cart-contents-block/products-table",50:"mini-cart-contents-block/empty-cart",51:"mini-cart-contents-block/filled-cart",52:"mini-cart-contents-block/footer",53:"mini-cart-contents-block/items",54:"mini-cart-contents-block/products-table",55:"mini-cart-contents-block/shopping-button",56:"mini-cart-contents-block/title",73:"vendors--mini-cart-contents-block/footer"}[e]||e)+"-frontend.js?ver="+{0:"071743a9ca2cfdafd79f",3:"deab3ee0c5c13d3addc8",4:"89f09ba23bc79f34d574",7:"c754bab3adab68fdf4dc",50:"98cf9e41cc15d5ec2eee",51:"12fc82a1027b0c2b8996",52:"ef5452ba0d385cb14aba",53:"4ce5781219a9d7881da9",54:"73478d330ea9f31f9262",55:"c980bc80a2bfb99977ba",56:"1270fc9979c0646c8ba9",73:"93c4a83ab00e9821a689"}[e]}(e);var s=new Error;a=function(t){i.onerror=i.onload=null,clearTimeout(l);var r=n[e];if(0!==r){if(r){var o=t&&("load"===t.type?"missing":t.type),c=t&&t.target&&t.target.src;s.message="Loading chunk "+e+" failed.\n("+o+": "+c+")",s.name="ChunkLoadError",s.type=o,s.request=c,r[1](s)}n[e]=void 0}};var l=setTimeout((function(){a({type:"timeout",target:i})}),12e4);i.onerror=i.onload=a,document.head.appendChild(i)}return Promise.all(t)},o.m=e,o.c=r,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)o.d(r,n,function(t){return e[t]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o.oe=function(e){throw console.error(e),e};var c=window.webpackWcBlocksJsonp=window.webpackWcBlocksJsonp||[],a=c.push.bind(c);c.push=t,c=c.slice();for(var i=0;i<c.length;i++)t(c[i]);var s=a;o(o.s=238)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wc.wcSettings},function(e,t){e.exports=window.React},function(e,t,r){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var c=typeof n;if("string"===c||"number"===c)e.push(n);else if(Array.isArray(n)){if(n.length){var a=o.apply(null,n);a&&e.push(a)}}else if("object"===c)if(n.toString===Object.prototype.toString)for(var i in n)r.call(n,i)&&n[i]&&e.push(i);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},function(e,t){e.exports=window.wc.wcBlocksData},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.data},,,function(e,t){e.exports=window.wc.blocksCheckout},function(e,t){function r(){return e.exports=r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,r.apply(this,arguments)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.isShallowEqual},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.primitives},function(e,t,r){"use strict";var n=r(19),o=r.n(n),c=r(0),a=r(3),i=r(1),s=r(44),l=e=>{let{imageUrl:t=s.l+"/block-error.svg",header:r=Object(i.__)("Oops!","woocommerce"),text:n=Object(i.__)("There was an error loading the content.","woocommerce"),errorMessage:o,errorMessagePrefix:a=Object(i.__)("Error:","woocommerce"),button:l,showErrorBlock:u=!0}=e;return u?Object(c.createElement)("div",{className:"wc-block-error wc-block-components-error"},t&&Object(c.createElement)("img",{className:"wc-block-error__image wc-block-components-error__image",src:t,alt:""}),Object(c.createElement)("div",{className:"wc-block-error__content wc-block-components-error__content"},r&&Object(c.createElement)("p",{className:"wc-block-error__header wc-block-components-error__header"},r),n&&Object(c.createElement)("p",{className:"wc-block-error__text wc-block-components-error__text"},n),o&&Object(c.createElement)("p",{className:"wc-block-error__message wc-block-components-error__message"},a?a+" ":"",o),l&&Object(c.createElement)("p",{className:"wc-block-error__button wc-block-components-error__button"},l))):null};r(33);class u extends a.Component{constructor(){super(...arguments),o()(this,"state",{errorMessage:"",hasError:!1})}static getDerivedStateFromError(e){return void 0!==e.statusText&&void 0!==e.status?{errorMessage:Object(c.createElement)(c.Fragment,null,Object(c.createElement)("strong",null,e.status),": ",e.statusText),hasError:!0}:{errorMessage:e.message,hasError:!0}}render(){const{header:e,imageUrl:t,showErrorMessage:r=!0,showErrorBlock:n=!0,text:o,errorMessagePrefix:a,renderError:i,button:s}=this.props,{errorMessage:u,hasError:p}=this.state;return p?"function"==typeof i?i({errorMessage:u}):Object(c.createElement)(l,{showErrorBlock:n,errorMessage:r?u:null,header:e,imageUrl:t,text:o,errorMessagePrefix:a,button:s}):this.props.children}}t.a=u},function(e,t){e.exports=window.wc.wcBlocksRegistry},function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.a11y},,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(0);r(7);const o=Object(n.createContext)({isEditor:!1,currentPostId:0,currentView:"",previewData:{},getPreviewData:()=>{}}),c=()=>Object(n.useContext)(o)},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return k}));var n=r(6),o=r(0),c=r(5),a=r(7),i=r(18),s=r(118),l=r(27),u=r(68);const p=e=>{const t=e.detail;t&&t.preserveCartData||Object(a.dispatch)(c.CART_STORE_KEY).invalidateResolutionForStore()},d=()=>{1===window.wcBlocksStoreCartListeners.count&&window.wcBlocksStoreCartListeners.remove(),window.wcBlocksStoreCartListeners.count--},m=()=>{Object(o.useEffect)(()=>((()=>{if(window.wcBlocksStoreCartListeners||(window.wcBlocksStoreCartListeners={count:0,remove:()=>{}}),0===window.wcBlocksStoreCartListeners.count){const e=Object(u.b)("added_to_cart","wc-blocks_added_to_cart"),t=Object(u.b)("removed_from_cart","wc-blocks_removed_from_cart");document.body.addEventListener("wc-blocks_added_to_cart",p),document.body.addEventListener("wc-blocks_removed_from_cart",p),window.wcBlocksStoreCartListeners.count=0,window.wcBlocksStoreCartListeners.remove=()=>{e(),t(),document.body.removeEventListener("wc-blocks_added_to_cart",p),document.body.removeEventListener("wc-blocks_removed_from_cart",p)}}window.wcBlocksStoreCartListeners.count++})(),d),[])},f={first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},b={...f,email:""},g={total_items:"",total_items_tax:"",total_fees:"",total_fees_tax:"",total_discount:"",total_discount_tax:"",total_shipping:"",total_shipping_tax:"",total_price:"",total_tax:"",tax_lines:c.EMPTY_TAX_LINES,currency_code:"",currency_symbol:"",currency_minor_unit:2,currency_decimal_separator:"",currency_thousand_separator:"",currency_prefix:"",currency_suffix:""},h=e=>Object.fromEntries(Object.entries(e).map(e=>{let[t,r]=e;return[t,Object(i.decodeEntities)(r)]})),y={cartCoupons:c.EMPTY_CART_COUPONS,cartItems:c.EMPTY_CART_ITEMS,cartFees:c.EMPTY_CART_FEES,cartItemsCount:0,cartItemsWeight:0,cartNeedsPayment:!0,cartNeedsShipping:!0,cartItemErrors:c.EMPTY_CART_ITEM_ERRORS,cartTotals:g,cartIsLoading:!0,cartErrors:c.EMPTY_CART_ERRORS,billingAddress:b,shippingAddress:f,shippingRates:c.EMPTY_SHIPPING_RATES,isLoadingRates:!1,cartHasCalculatedShipping:!1,paymentRequirements:c.EMPTY_PAYMENT_REQUIREMENTS,receiveCart:()=>{},extensions:c.EMPTY_EXTENSIONS},k=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{shouldSelect:!0};const{isEditor:t,previewData:r}=Object(l.a)(),i=null==r?void 0:r.previewCart,{shouldSelect:u}=e,p=Object(o.useRef)();m();const d=Object(a.useSelect)((e,r)=>{let{dispatch:n}=r;if(!u)return y;if(t)return{cartCoupons:i.coupons,cartItems:i.items,cartFees:i.fees,cartItemsCount:i.items_count,cartItemsWeight:i.items_weight,cartNeedsPayment:i.needs_payment,cartNeedsShipping:i.needs_shipping,cartItemErrors:c.EMPTY_CART_ITEM_ERRORS,cartTotals:i.totals,cartIsLoading:!1,cartErrors:c.EMPTY_CART_ERRORS,billingAddress:b,shippingAddress:f,extensions:c.EMPTY_EXTENSIONS,shippingRates:i.shipping_rates,isLoadingRates:!1,cartHasCalculatedShipping:i.has_calculated_shipping,paymentRequirements:i.paymentRequirements,receiveCart:"function"==typeof(null==i?void 0:i.receiveCart)?i.receiveCart:()=>{}};const o=e(c.CART_STORE_KEY),a=o.getCartData(),l=o.getCartErrors(),p=o.getCartTotals(),d=!o.hasFinishedResolution("getCartData"),m=o.isCustomerDataUpdating(),{receiveCart:g}=n(c.CART_STORE_KEY),k=h(a.billingAddress),w=a.needsShipping?h(a.shippingAddress):k,v=a.fees.length>0?a.fees.map(e=>h(e)):c.EMPTY_CART_FEES;return{cartCoupons:a.coupons.length>0?a.coupons.map(e=>({...e,label:e.code})):c.EMPTY_CART_COUPONS,cartItems:a.items,cartFees:v,cartItemsCount:a.itemsCount,cartItemsWeight:a.itemsWeight,cartNeedsPayment:a.needsPayment,cartNeedsShipping:a.needsShipping,cartItemErrors:a.errors,cartTotals:p,cartIsLoading:d,cartErrors:l,billingAddress:Object(s.a)(k),shippingAddress:Object(s.a)(w),extensions:a.extensions,shippingRates:a.shippingRates,isLoadingRates:m,cartHasCalculatedShipping:a.hasCalculatedShipping,paymentRequirements:a.paymentRequirements,receiveCart:g}},[u]);return p.current&&Object(n.isEqual)(p.current,d)||(p.current=d),p.current}},function(e,t){e.exports=window.wp.deprecated},function(e,t){},,,,function(e,t){e.exports=window.wc.priceFormat},function(e,t){e.exports=window.wp.warning},function(e,t){e.exports=window.wp.hooks},,,,,function(e,t,r){"use strict";r.d(t,"n",(function(){return c})),r.d(t,"l",(function(){return a})),r.d(t,"k",(function(){return i})),r.d(t,"m",(function(){return s})),r.d(t,"i",(function(){return l})),r.d(t,"d",(function(){return u})),r.d(t,"f",(function(){return p})),r.d(t,"j",(function(){return d})),r.d(t,"c",(function(){return m})),r.d(t,"e",(function(){return f})),r.d(t,"g",(function(){return b})),r.d(t,"a",(function(){return g})),r.d(t,"h",(function(){return h})),r.d(t,"b",(function(){return y}));var n,o=r(2);const c=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),a=c.pluginUrl+"images/",i=c.pluginUrl+"build/",s=c.buildPhase,l=null===(n=o.STORE_PAGES.shop)||void 0===n?void 0:n.permalink,u=(o.STORE_PAGES.checkout.id,o.STORE_PAGES.checkout.permalink),p=o.STORE_PAGES.privacy.permalink,d=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),m=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id,o.STORE_PAGES.cart.permalink),f=o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),b=Object(o.getSetting)("shippingCountries",{}),g=Object(o.getSetting)("allowedCountries",{}),h=Object(o.getSetting)("shippingStates",{}),y=Object(o.getSetting)("allowedStates",{})},function(e,t,r){"use strict";var n=r(2),o=r(1),c=r(69),a=r(52);const i=Object(n.getSetting)("countryLocale",{}),s=e=>{const t={};return void 0!==e.label&&(t.label=e.label),void 0!==e.required&&(t.required=e.required),void 0!==e.hidden&&(t.hidden=e.hidden),void 0===e.label||e.optionalLabel||(t.optionalLabel=Object(o.sprintf)(
2
  /* translators: %s Field label. */
3
  Object(o.__)("%s (optional)","woocommerce"),e.label)),e.priority&&(Object(c.a)(e.priority)&&(t.index=e.priority),Object(a.a)(e.priority)&&(t.index=parseInt(e.priority,10))),e.hidden&&(t.required=!1),t},l=Object.entries(i).map(e=>{let[t,r]=e;return[t,Object.entries(r).map(e=>{let[t,r]=e;return[t,s(r)]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{})]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{});t.a=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";const o=r&&void 0!==l[r]?l[r]:{};return e.map(e=>({key:e,...n.defaultAddressFields[e]||{},...o[e]||{},...t[e]||{}})).sort((e,t)=>e.index-t.index)}},,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t,r){var o=this,c=Object(n.useRef)(null),a=Object(n.useRef)(0),i=Object(n.useRef)(null),s=Object(n.useRef)([]),l=Object(n.useRef)(),u=Object(n.useRef)(),p=Object(n.useRef)(e),d=Object(n.useRef)(!0);p.current=e;var m=!t&&0!==t&&"undefined"!=typeof window;if("function"!=typeof e)throw new TypeError("Expected a function");t=+t||0;var f=!!(r=r||{}).leading,b=!("trailing"in r)||!!r.trailing,g="maxWait"in r,h=g?Math.max(+r.maxWait||0,t):null;return Object(n.useEffect)((function(){return d.current=!0,function(){d.current=!1}}),[]),Object(n.useMemo)((function(){var e=function(e){var t=s.current,r=l.current;return s.current=l.current=null,a.current=e,u.current=p.current.apply(r,t)},r=function(e,t){m&&cancelAnimationFrame(i.current),i.current=m?requestAnimationFrame(e):setTimeout(e,t)},n=function(e){if(!d.current)return!1;var r=e-c.current,n=e-a.current;return!c.current||r>=t||r<0||g&&n>=h},y=function(t){return i.current=null,b&&s.current?e(t):(s.current=l.current=null,u.current)},k=function(){var e=Date.now();if(n(e))return y(e);if(d.current){var o=e-c.current,i=e-a.current,s=t-o,l=g?Math.min(s,h-i):s;r(k,l)}},w=function(){for(var p=[],m=0;m<arguments.length;m++)p[m]=arguments[m];var b=Date.now(),h=n(b);if(s.current=p,l.current=o,c.current=b,h){if(!i.current&&d.current)return a.current=c.current,r(k,t),f?e(c.current):u.current;if(g)return r(k,t),e(c.current)}return i.current||r(k,t),u.current};return w.cancel=function(){i.current&&(m?cancelAnimationFrame(i.current):clearTimeout(i.current)),a.current=0,s.current=c.current=l.current=i.current=null},w.isPending=function(){return!!i.current},w.flush=function(){return i.current?y(Date.now()):u.current},w}),[f,g,t,h,b,m])}},function(e,t,r){"use strict";r.d(t,"a",(function(){return l}));var n=r(11),o=r.n(n),c=r(0),a=r(16);const i=[".wp-block-woocommerce-cart"],s=e=>{let{Block:t,containers:r,getProps:n=(()=>({})),getErrorBoundaryProps:i=(()=>({}))}=e;0!==r.length&&Array.prototype.forEach.call(r,(e,r)=>{const s=n(e,r),l=i(e,r),u={...e.dataset,...s.attributes||{}};(e=>{let{Block:t,container:r,attributes:n={},props:i={},errorBoundaryProps:s={}}=e;Object(c.render)(Object(c.createElement)(a.a,s,Object(c.createElement)(c.Suspense,{fallback:Object(c.createElement)("div",{className:"wc-block-placeholder"})},t&&Object(c.createElement)(t,o()({},i,{attributes:n})))),r,()=>{r.classList&&r.classList.remove("is-loading")})})({Block:t,container:e,props:s,attributes:u,errorBoundaryProps:l})})},l=e=>{const t=document.body.querySelectorAll(i.join(",")),{Block:r,getProps:n,getErrorBoundaryProps:o,selector:c}=e;(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrappers:c}=e;const a=document.body.querySelectorAll(o);c&&c.length>0&&Array.prototype.filter.call(a,e=>!((e,t)=>Array.prototype.some.call(t,t=>t.contains(e)&&!t.isSameNode(e)))(e,c)),s({Block:t,containers:a,getProps:r,getErrorBoundaryProps:n})})({Block:r,getProps:n,getErrorBoundaryProps:o,selector:c,wrappers:t}),Array.prototype.forEach.call(t,t=>{t.addEventListener("wc-blocks_render_blocks_frontend",()=>{(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrapper:c}=e;const a=c.querySelectorAll(o);s({Block:t,containers:a,getProps:r,getErrorBoundaryProps:n})})({...e,wrapper:t})})})}},,,function(e,t){e.exports=window.wp.dom},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"string"==typeof e},,function(e,t,r){var n=r(80),o=r(55),c=o.setStyleProp,a=n.html,i=n.svg,s=n.isCustomAttribute,l=Object.prototype.hasOwnProperty;e.exports=function(e){var t,r,n,u;e=e||{};var p={};for(t in e)n=e[t],s(t)?p[t]=n:(r=t.toLowerCase(),l.call(a,r)?p[(u=a[r]).propertyName]=!!(u.hasBooleanValue||u.hasOverloadedBooleanValue&&!n)||n:l.call(i,t)?p[(u=i[t]).propertyName]=n:o.PRESERVE_CUSTOM_ATTRIBUTES&&(p[t]=n));return c(e.style,p),p}},function(e,t,r){var n=r(3),o=r(84).default,c={reactCompat:!0},a=n.version.split(".")[0]>=16;e.exports={PRESERVE_CUSTOM_ATTRIBUTES:a,invertObject:function(e,t){if(!e||"object"!=typeof e)throw new TypeError("First argument must be an object");var r,n,o="function"==typeof t,c={},a={};for(r in e)n=e[r],o&&(c=t(r,n))&&2===c.length?a[c[0]]=c[1]:"string"==typeof n&&(a[n]=r);return a},isCustomComponent:function(e,t){if(-1===e.indexOf("-"))return t&&"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}},setStyleProp:function(e,t){null!=e&&(t.style=o(e,c))}}},function(e,t,r){for(var n,o=r(90).CASE_SENSITIVE_TAG_NAMES,c={},a=0,i=o.length;a<i;a++)n=o[a],c[n.toLowerCase()]=n;function s(e){for(var t,r={},n=0,o=e.length;n<o;n++)r[(t=e[n]).name]=t.value;return r}function l(e){return function(e){return c[e]}(e=e.toLowerCase())||e}e.exports={formatAttributes:s,formatDOM:function e(t,r,n){r=r||null;for(var o,c,a,i=[],u=0,p=t.length;u<p;u++){switch(o=t[u],a={next:null,prev:i[u-1]||null,parent:r},(c=i[u-1])&&(c.next=a),"#"!==o.nodeName[0]&&(a.name=l(o.nodeName),a.attribs={},o.attributes&&o.attributes.length&&(a.attribs=s(o.attributes))),o.nodeType){case 1:"script"===a.name||"style"===a.name?a.type=a.name:a.type="tag",a.children=e(o.childNodes,a);break;case 3:a.type="text",a.data=o.nodeValue;break;case 8:a.type="comment",a.data=o.nodeValue}i.push(a)}return n&&(i.unshift({name:n.substring(0,n.indexOf(" ")).toLowerCase(),data:n,type:"directive",next:i[0]?i[0]:null,prev:null,parent:r}),i[1]&&(i[1].prev=i[0])),i},isIE:function(e){return e?document.documentMode===e:/(MSIE |Trident\/|Edge\/)/.test(navigator.userAgent)}}},,,function(e,t,r){var n=r(79),o=r(54),c=r(88),a={decodeEntities:!0,lowerCaseAttributeNames:!1};function i(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");return""===e?[]:n(c(e,(t=t||{}).htmlparser2||a),t)}i.domToReact=n,i.htmlToDOM=c,i.attributesToProps=o,e.exports=i,e.exports.default=i},,function(e,t,r){"use strict";r.d(t,"a",(function(){return n})),r.d(t,"b",(function(){return o}));const n=e=>!(e=>null===e)(e)&&e instanceof Object&&e.constructor===Object;function o(e,t){return n(e)&&t in e}},,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"d",(function(){return a})),r.d(t,"c",(function(){return i})),r.d(t,"b",(function(){return s}));const n=window.CustomEvent||null,o=(e,t)=>{let{bubbles:r=!1,cancelable:o=!1,element:c,detail:a={}}=t;if(!n)return;c||(c=document.body);const i=new n(e,{bubbles:r,cancelable:o,detail:a});c.dispatchEvent(i)};let c;const a=()=>{c&&clearTimeout(c),c=setTimeout(()=>{o("wc_fragment_refresh",{bubbles:!0,cancelable:!0})},50)},i=e=>{let{preserveCartData:t=!1}=e;o("wc-blocks_added_to_cart",{bubbles:!0,cancelable:!0,detail:{preserveCartData:t}})},s=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof jQuery)return()=>{};const c=()=>{o(t,{bubbles:r,cancelable:n})};return jQuery(document).on(e,c),()=>jQuery(document).off(e,c)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"number"==typeof e},,,,,,,,,,function(e,t,r){var n=r(3),o=r(54),c=r(55),a=c.setStyleProp;function i(e){return c.PRESERVE_CUSTOM_ATTRIBUTES&&"tag"===e.type&&c.isCustomComponent(e.name,e.attribs)}e.exports=function e(t,r){for(var c,s,l,u,p=(r=r||{}).library||n,d=p.cloneElement,m=p.createElement,f=p.isValidElement,b=[],g="function"==typeof r.replace,h=r.trim,y=0,k=t.length;y<k;y++)if(c=t[y],g&&f(s=r.replace(c)))k>1&&(s=d(s,{key:s.key||y})),b.push(s);else if("text"!==c.type){switch(l=c.attribs,i(c)?a(l.style,l):l&&(l=o(l)),u=null,c.type){case"script":case"style":c.children[0]&&(l.dangerouslySetInnerHTML={__html:c.children[0].data});break;case"tag":"textarea"===c.name&&c.children[0]?l.defaultValue=c.children[0].data:c.children&&c.children.length&&(u=e(c.children,r));break;default:continue}k>1&&(l.key=y),b.push(m(c.name,l,u))}else h?c.data.trim()&&b.push(c.data):b.push(c.data);return 1===b.length?b[0]:b}},function(e,t,r){var n=r(81),o=r(82),c=r(83),a=c.MUST_USE_PROPERTY,i=c.HAS_BOOLEAN_VALUE,s=c.HAS_NUMERIC_VALUE,l=c.HAS_POSITIVE_NUMERIC_VALUE,u=c.HAS_OVERLOADED_BOOLEAN_VALUE;function p(e,t){return(e&t)===t}function d(e,t,r){var n,o,c,d=e.Properties,m=e.DOMAttributeNames;for(o in d)n=m[o]||(r?o:o.toLowerCase()),c=d[o],t[n]={attributeName:n,propertyName:o,mustUseProperty:p(c,a),hasBooleanValue:p(c,i),hasNumericValue:p(c,s),hasPositiveNumericValue:p(c,l),hasOverloadedBooleanValue:p(c,u)}}var m={};d(n,m);var f={};d(o,f,!0);var b={};d(n,b),d(o,b,!0),e.exports={html:m,svg:f,properties:b,isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"))}},function(e,t){e.exports={Properties:{autoFocus:4,accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:4,allowTransparency:0,alt:0,as:0,async:4,autoComplete:0,autoPlay:4,capture:4,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:5,cite:0,classID:0,className:0,cols:24,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:4,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:4,defer:4,dir:0,disabled:4,download:32,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:4,formTarget:0,frameBorder:0,headers:0,height:0,hidden:4,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:4,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:5,muted:5,name:0,nonce:0,noValidate:4,open:4,optimum:0,pattern:0,placeholder:0,playsInline:4,poster:0,preload:0,profile:0,radioGroup:0,readOnly:4,referrerPolicy:0,rel:0,required:4,reversed:4,role:0,rows:24,rowSpan:8,sandbox:0,scope:0,scoped:4,scrolling:0,seamless:4,selected:5,shape:0,size:24,sizes:0,span:24,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:8,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:4,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"}}},function(e,t){e.exports={Properties:{accentHeight:0,accumulate:0,additive:0,alignmentBaseline:0,allowReorder:0,alphabetic:0,amplitude:0,arabicForm:0,ascent:0,attributeName:0,attributeType:0,autoReverse:0,azimuth:0,baseFrequency:0,baseProfile:0,baselineShift:0,bbox:0,begin:0,bias:0,by:0,calcMode:0,capHeight:0,clip:0,clipPath:0,clipRule:0,clipPathUnits:0,colorInterpolation:0,colorInterpolationFilters:0,colorProfile:0,colorRendering:0,contentScriptType:0,contentStyleType:0,cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:0,direction:0,display:0,divisor:0,dominantBaseline:0,dur:0,dx:0,dy:0,edgeMode:0,elevation:0,enableBackground:0,end:0,exponent:0,externalResourcesRequired:0,fill:0,fillOpacity:0,fillRule:0,filter:0,filterRes:0,filterUnits:0,floodColor:0,floodOpacity:0,focusable:0,fontFamily:0,fontSize:0,fontSizeAdjust:0,fontStretch:0,fontStyle:0,fontVariant:0,fontWeight:0,format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:0,glyphOrientationHorizontal:0,glyphOrientationVertical:0,glyphRef:0,gradientTransform:0,gradientUnits:0,hanging:0,horizAdvX:0,horizOriginX:0,ideographic:0,imageRendering:0,in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:0,kernelUnitLength:0,kerning:0,keyPoints:0,keySplines:0,keyTimes:0,lengthAdjust:0,letterSpacing:0,lightingColor:0,limitingConeAngle:0,local:0,markerEnd:0,markerMid:0,markerStart:0,markerHeight:0,markerUnits:0,markerWidth:0,mask:0,maskContentUnits:0,maskUnits:0,mathematical:0,mode:0,numOctaves:0,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:0,overlineThickness:0,paintOrder:0,panose1:0,pathLength:0,patternContentUnits:0,patternTransform:0,patternUnits:0,pointerEvents:0,points:0,pointsAtX:0,pointsAtY:0,pointsAtZ:0,preserveAlpha:0,preserveAspectRatio:0,primitiveUnits:0,r:0,radius:0,refX:0,refY:0,renderingIntent:0,repeatCount:0,repeatDur:0,requiredExtensions:0,requiredFeatures:0,restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:0,slope:0,spacing:0,specularConstant:0,specularExponent:0,speed:0,spreadMethod:0,startOffset:0,stdDeviation:0,stemh:0,stemv:0,stitchTiles:0,stopColor:0,stopOpacity:0,strikethroughPosition:0,strikethroughThickness:0,string:0,stroke:0,strokeDasharray:0,strokeDashoffset:0,strokeLinecap:0,strokeLinejoin:0,strokeMiterlimit:0,strokeOpacity:0,strokeWidth:0,surfaceScale:0,systemLanguage:0,tableValues:0,targetX:0,targetY:0,textAnchor:0,textDecoration:0,textRendering:0,textLength:0,to:0,transform:0,u1:0,u2:0,underlinePosition:0,underlineThickness:0,unicode:0,unicodeBidi:0,unicodeRange:0,unitsPerEm:0,vAlphabetic:0,vHanging:0,vIdeographic:0,vMathematical:0,values:0,vectorEffect:0,version:0,vertAdvY:0,vertOriginX:0,vertOriginY:0,viewBox:0,viewTarget:0,visibility:0,widths:0,wordSpacing:0,writingMode:0,x:0,xHeight:0,x1:0,x2:0,xChannelSelector:0,xlinkActuate:0,xlinkArcrole:0,xlinkHref:0,xlinkRole:0,xlinkShow:0,xlinkTitle:0,xlinkType:0,xmlBase:0,xmlns:0,xmlnsXlink:0,xmlLang:0,xmlSpace:0,y:0,y1:0,y2:0,yChannelSelector:0,z:0,zoomAndPan:0},DOMAttributeNames:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space"}}},function(e,t){e.exports={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32}},function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};t.__esModule=!0;var o=n(r(85)),c=r(87);t.default=function(e,t){var r={};return e&&"string"==typeof e?(o.default(e,(function(e,n){e&&n&&(r[c.camelCase(e,t)]=n)})),r):r}},function(e,t,r){var n=r(86);e.exports=function(e,t){var r,o=null;if(!e||"string"!=typeof e)return o;for(var c,a,i=n(e),s="function"==typeof t,l=0,u=i.length;l<u;l++)c=(r=i[l]).property,a=r.value,s?t(c,a,r):a&&(o||(o={}),o[c]=a);return o}},function(e,t){var r=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,n=/\n/g,o=/^\s*/,c=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,a=/^:\s*/,i=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,s=/^[;\s]*/,l=/^\s+|\s+$/g;function u(e){return e?e.replace(l,""):""}e.exports=function(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];t=t||{};var l=1,p=1;function d(e){var t=e.match(n);t&&(l+=t.length);var r=e.lastIndexOf("\n");p=~r?e.length-r:p+e.length}function m(){var e={line:l,column:p};return function(t){return t.position=new f(e),y(),t}}function f(e){this.start=e,this.end={line:l,column:p},this.source=t.source}f.prototype.content=e;var b=[];function g(r){var n=new Error(t.source+":"+l+":"+p+": "+r);if(n.reason=r,n.filename=t.source,n.line=l,n.column=p,n.source=e,!t.silent)throw n;b.push(n)}function h(t){var r=t.exec(e);if(r){var n=r[0];return d(n),e=e.slice(n.length),r}}function y(){h(o)}function k(e){var t;for(e=e||[];t=w();)!1!==t&&e.push(t);return e}function w(){var t=m();if("/"==e.charAt(0)&&"*"==e.charAt(1)){for(var r=2;""!=e.charAt(r)&&("*"!=e.charAt(r)||"/"!=e.charAt(r+1));)++r;if(r+=2,""===e.charAt(r-1))return g("End of comment missing");var n=e.slice(2,r-2);return p+=2,d(n),e=e.slice(r),p+=2,t({type:"comment",comment:n})}}function v(){var e=m(),t=h(c);if(t){if(w(),!h(a))return g("property missing ':'");var n=h(i),o=e({type:"declaration",property:u(t[0].replace(r,"")),value:n?u(n[0].replace(r,"")):""});return h(s),o}}return y(),function(){var e,t=[];for(k(t);e=v();)!1!==e&&(t.push(e),k(t));return t}()}},function(e,t,r){"use strict";t.__esModule=!0,t.camelCase=void 0;var n=/^--[a-zA-Z0-9-]+$/,o=/-([a-z])/g,c=/^[^-]+$/,a=/^-(webkit|moz|ms|o|khtml)-/,i=function(e,t){return t.toUpperCase()},s=function(e,t){return t+"-"};t.camelCase=function(e,t){return void 0===t&&(t={}),function(e){return!e||c.test(e)||n.test(e)}(e)?e:(e=e.toLowerCase(),t.reactCompat||(e=e.replace(a,s)),e.replace(o,i))}},function(e,t,r){var n=r(89),o=r(56),c=o.formatDOM,a=o.isIE(9),i=/<(![a-zA-Z\s]+)>/;e.exports=function(e){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];var t,r=e.match(i);return r&&r[1]&&(t=r[1],a&&(e=e.replace(r[0],""))),c(n(e),null,t)}},function(e,t,r){var n=r(56),o=/<([a-zA-Z]+[0-9]?)/,c=/<head.*>/i,a=/<body.*>/i,i=/<(area|base|br|col|embed|hr|img|input|keygen|link|menuitem|meta|param|source|track|wbr)(.*?)\/?>/gi,s=n.isIE(9),l=s||n.isIE(),u=function(){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},p=function(){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")};if("function"==typeof window.DOMParser){var d=new window.DOMParser,m=s?"text/xml":"text/html";u=p=function(e,t){return t&&(e="<"+t+">"+e+"</"+t+">"),s&&(e=e.replace(i,"<$1$2$3/>")),d.parseFromString(e,m)}}if(document.implementation){var f=document.implementation.createHTMLDocument(l?"html-dom-parser":void 0);u=function(e,t){if(t)return f.documentElement.getElementsByTagName(t)[0].innerHTML=e,f;try{return f.documentElement.innerHTML=e,f}catch(t){if(p)return p(e)}}}var b,g=document.createElement("template");g.content&&(b=function(e){return g.innerHTML=e,g.content.childNodes}),e.exports=function(e){var t,r,n,i,s=e.match(o);switch(s&&s[1]&&(t=s[1].toLowerCase()),t){case"html":return r=p(e),c.test(e)||(n=r.getElementsByTagName("head")[0])&&n.parentNode.removeChild(n),a.test(e)||(n=r.getElementsByTagName("body")[0])&&n.parentNode.removeChild(n),r.getElementsByTagName("html");case"head":case"body":return i=u(e).getElementsByTagName(t),a.test(e)&&c.test(e)?i[0].parentNode.childNodes:i;default:return b?b(e):u(e,"body").getElementsByTagName("body")[0].childNodes}}},function(e,t){e.exports={CASE_SENSITIVE_TAG_NAMES:["animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussainBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","linearGradient","radialGradient","textPath"]}},,,,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return i}));var n=r(3),o=r(47);function c(e,t){return e===t}function a(e){return"function"==typeof e?function(){return e}:e}function i(e,t,r){var i=r&&r.equalityFn||c,s=function(e){var t=Object(n.useState)(a(e)),r=t[0],o=t[1];return[r,Object(n.useCallback)((function(e){return o(a(e))}),[])]}(e),l=s[0],u=s[1],p=Object(o.a)(Object(n.useCallback)((function(e){return u(e)}),[u]),t,r),d=Object(n.useRef)(e);return i(d.current,e)||(p(e),d.current=e),[l,p]}},function(e,t){e.exports=window.wp.components},,,,,function(e,t,r){"use strict";var n=r(0);t.a=function(e){let{icon:t,size:r=24,...o}=e;return Object(n.cloneElement)(t,{width:r,height:r,...o})}},,,,,,,,,,function(e,t){e.exports=window.wp.wordcount},function(e,t){e.exports=window.wp.autop},,function(e,t,r){"use strict";r.d(t,"b",(function(){return c})),r.d(t,"a",(function(){return a}));var n=r(45),o=(r(14),r(2));const c=(e,t)=>Object.keys(o.defaultAddressFields).every(r=>e[r]===t[r]),a=e=>{const t=Object.keys(o.defaultAddressFields),r=Object(n.a)(t,{},e.country),c=Object.assign({},e);return r.forEach(t=>{let{key:r="",hidden:n=!1}=t;n&&((e,t)=>e in t)(r,e)&&(c[r]="")}),c}},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"boolean"==typeof e},,,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return d}));var n=r(0),o=r(48),c=r(2),a=r(59),i=r.n(a),s=r(10),l=r(16);const u=(e,t)=>e&&t[e]?t[e]:null,p=e=>{let{block:t,blockMap:r,blockWrapper:o,children:a,depth:d=1}=e;return a&&0!==a.length?Array.from(a).map((e,a)=>{const{blockName:m="",...f}={key:`${t}_${d}_${a}`,...e instanceof HTMLElement?e.dataset:{},className:e instanceof Element?null==e?void 0:e.className:""},b=u(m,r);if(!b){const c=i()(e instanceof Element&&(null==e?void 0:e.outerHTML)||(null==e?void 0:e.textContent)||"");if("string"==typeof c&&c)return c;if(!Object(n.isValidElement)(c))return null;const a=e.childNodes.length?p({block:t,blockMap:r,children:e.childNodes,depth:d+1,blockWrapper:o}):void 0;return a?Object(n.cloneElement)(c,f,a):Object(n.cloneElement)(c,f)}const g=o||n.Fragment;return Object(n.createElement)(n.Suspense,{key:`${t}_${d}_${a}_suspense`,fallback:Object(n.createElement)("div",{className:"wc-block-placeholder"})},Object(n.createElement)(l.a,{text:"Unexpected error in: "+m,showErrorBlock:c.CURRENT_USER_IS_ADMIN},Object(n.createElement)(g,null,Object(n.createElement)(b,f,p({block:t,blockMap:r,children:e.childNodes,depth:d+1,blockWrapper:o}),((e,t,r,o)=>{if(!Object(s.hasInnerBlocks)(e))return null;const a=r?Array.from(r).map(e=>e instanceof HTMLElement&&(null==e?void 0:e.dataset.blockName)||null).filter(Boolean):[],i=Object(s.getRegisteredBlocks)(e).filter(e=>{let{blockName:t,force:r}=e;return!0===r&&!a.includes(t)}),p=o||n.Fragment;return Object(n.createElement)(n.Fragment,null,i.map((e,r)=>{let{blockName:o,component:a}=e;const i=a||u(o,t);return i?Object(n.createElement)(l.a,{text:"Unexpected error in: "+o,showErrorBlock:c.CURRENT_USER_IS_ADMIN},Object(n.createElement)(p,null,Object(n.createElement)(i,{key:`${o}_forced_${r}`}))):null}))})(m,r,e.childNodes,o)))))}):null},d=e=>{let{Block:t,selector:r,blockName:n,getProps:c=(()=>({})),blockMap:a,blockWrapper:i}=e;Object(o.a)({Block:t,selector:r,getProps:(e,t)=>{const r=p({block:n,blockMap:a,children:e.children||[],blockWrapper:i});return{...c(e,t),children:r}}})}},,,,,,,,,,,,,,,function(e,t){e.exports=window.wp.keycodes},,,,function(e,t){},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e){e.exports=JSON.parse('{"name":"woocommerce/filled-mini-cart-contents-block","version":"1.0.0","title":"Filled Mini Cart Contents","description":"Contains blocks that are displayed when the mini cart has products.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/mini-cart-contents"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/empty-mini-cart-contents-block","version":"1.0.0","title":"Empty Mini Cart Contents","description":"Contains blocks that are displayed when the mini cart is empty.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/mini-cart-contents"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/mini-cart-title-block","version":"1.0.0","title":"Mini Cart Title","description":"Block that displays the title of the Mini Cart block.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/filled-mini-cart-contents-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/mini-cart-items-block","version":"1.0.0","title":"Mini Cart Items","description":"Contains the products table and other custom blocks of filled mini cart.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/filled-mini-cart-contents-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/mini-cart-products-table-block","version":"1.0.0","title":"Mini Cart Products Table","description":"Block that displays the products table of the Mini Cart block.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/mini-cart-items-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/mini-cart-footer-block","version":"1.0.0","title":"Mini Cart Footer","description":"Block that displays the footer of the Mini Cart block.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/filled-mini-cart-contents-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/mini-cart-shopping-button-block","version":"1.0.0","title":"Mini Cart Shopping Button","description":"Block that displays the shopping button for the Mini Cart block.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":true},"attributes":{"lock":{"type":"object","default":{"remove":false,"move":false}}},"parent":["woocommerce/empty-mini-cart-contents-block"],"textdomain":"woocommerce","apiVersion":2}')},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){},function(e,t){},,,,,function(e,t,r){"use strict";r.r(t);var n=r(48),o=r(0),c=r(127),a=r(1),i=r(100),s=r(99),l=r(4),u=r.n(l);r(233);var p=e=>{let{children:t,className:r,isOpen:n,onClose:c,slideIn:l=!0,slideOut:p=!0,title:d}=e;const[m]=Object(s.a)(n,300);return n||!n&&m?Object(o.createElement)(i.Modal,{title:d,focusOnMount:!0,onRequestClose:c,className:u()(r,"wc-block-components-drawer"),overlayClassName:u()("wc-block-components-drawer__screen-overlay",{"wc-block-components-drawer__screen-overlay--is-hidden":!n,"wc-block-components-drawer__screen-overlay--with-slide-in":l,"wc-block-components-drawer__screen-overlay--with-slide-out":p}),closeButtonLabel:Object(a.__)("Close mini cart","woocommerce")},t):null},d=r(31),m=r(68),f=r(17),b=r(37),g=r(2),h=r(119),y=r(61);const k=e=>!!Object(y.a)(e)&&Object.keys({total_items:0,total_items_tax:0,total_fees:0,total_fees_tax:0,total_discount:0,total_discount_tax:0,total_shipping:0,total_shipping_tax:0,total_price:0,total_tax:0,tax_lines:0,currency_code:0,currency_symbol:0,currency_minor_unit:0,currency_decimal_separator:0,currency_thousand_separator:0,currency_prefix:0,currency_suffix:0}).every(t=>t in e);var w=r(69),v=r(52),_=r(15),E=Object(o.createElement)(_.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"none"},Object(o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.84614 18.2769C7.89712 18.2769 7.93845 18.2356 7.93845 18.1846C7.93845 18.1336 7.89712 18.0923 7.84614 18.0923C7.79516 18.0923 7.75384 18.1336 7.75384 18.1846C7.75384 18.2356 7.79516 18.2769 7.84614 18.2769ZM6.03076 18.1846C6.03076 17.182 6.84353 16.3692 7.84614 16.3692C8.84875 16.3692 9.66152 17.182 9.66152 18.1846C9.66152 19.1872 8.84875 20 7.84614 20C6.84353 20 6.03076 19.1872 6.03076 18.1846Z",fill:"currentColor"}),Object(o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.3231 18.2769C17.3741 18.2769 17.4154 18.2356 17.4154 18.1846C17.4154 18.1336 17.3741 18.0923 17.3231 18.0923C17.2721 18.0923 17.2308 18.1336 17.2308 18.1846C17.2308 18.2356 17.2721 18.2769 17.3231 18.2769ZM15.5077 18.1846C15.5077 17.182 16.3205 16.3692 17.3231 16.3692C18.3257 16.3692 19.1385 17.182 19.1385 18.1846C19.1385 19.1872 18.3257 20 17.3231 20C16.3205 20 15.5077 19.1872 15.5077 18.1846Z",fill:"currentColor"}),Object(o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.0631 9.53835L19.4662 12.6685L19.4648 12.6757L19.4648 12.6757C19.3424 13.2919 19.0072 13.8454 18.5178 14.2394C18.031 14.6312 17.4226 14.8404 16.798 14.8308H8.44017C7.81556 14.8404 7.20714 14.6312 6.72038 14.2394C6.2312 13.8456 5.89605 13.2924 5.77352 12.6765L5.77335 12.6757L4.33477 5.48814C4.3286 5.46282 4.32345 5.43711 4.31934 5.41104L3.61815 1.90768H0.953842C0.42705 1.90768 0 1.48063 0 0.953842C0 0.42705 0.42705 0 0.953842 0H4.4C4.85462 0 5.24607 0.320858 5.33529 0.766644L6.04403 4.30769H12.785C13.0114 4.99157 13.3319 5.63258 13.7312 6.21538H6.42585L7.64421 12.3026L7.64449 12.304C7.67966 12.4811 7.77599 12.6402 7.91662 12.7534C8.05725 12.8666 8.23322 12.9267 8.41372 12.9233L8.432 12.9231H16.8062L16.8244 12.9233C17.0049 12.9267 17.1809 12.8666 17.3215 12.7534C17.4614 12.6408 17.5575 12.4828 17.5931 12.3068L17.5937 12.304L18.1649 9.30867C18.762 9.45873 19.387 9.53842 20.0307 9.53842C20.0415 9.53842 20.0523 9.5384 20.0631 9.53835Z",fill:"currentColor"})),O=r(105);r(232);var x=e=>{let{count:t,colorClassNames:r,style:n}=e;return Object(o.createElement)("span",{className:"wc-block-mini-cart__quantity-badge"},Object(o.createElement)(O.a,{className:"wc-block-mini-cart__icon",size:20,icon:E}),Object(o.createElement)("span",{className:"wc-block-mini-cart__badge "+r,style:n},t))},C=r(44),S=r(10),j=r(185),T=r(184),R=r(186),A=r(188),M=r(189),P=r(187),N=r(190);r.p=C.k,Object(S.registerCheckoutBlock)({metadata:T,component:Object(o.lazy)(()=>r.e(51).then(r.bind(null,419)))}),Object(S.registerCheckoutBlock)({metadata:j,component:Object(o.lazy)(()=>r.e(50).then(r.bind(null,420)))}),Object(S.registerCheckoutBlock)({metadata:R,component:Object(o.lazy)(()=>r.e(56).then(r.bind(null,421)))}),Object(S.registerCheckoutBlock)({metadata:P,component:Object(o.lazy)(()=>r.e(53).then(r.bind(null,422)))}),Object(S.registerCheckoutBlock)({metadata:A,component:Object(o.lazy)(()=>Promise.all([r.e(0),r.e(3),r.e(7),r.e(4),r.e(54)]).then(r.bind(null,423)))}),Object(S.registerCheckoutBlock)({metadata:M,component:Object(o.lazy)(()=>Promise.all([r.e(73),r.e(7),r.e(52)]).then(r.bind(null,424)))}),Object(S.registerCheckoutBlock)({metadata:N,component:Object(o.lazy)(()=>r.e(55).then(r.bind(null,425)))});const L=e=>{let{children:t}=e;return Object(o.createElement)(o.Fragment,null,t)};r(146);const B="woocommerce/mini-cart-contents";var I=e=>{var t,r;let{isInitiallyOpen:n=!1,colorClassNames:i,style:s,contents:l="",addToCartBehaviour:y="none"}=e;const{cartItemsCount:_,cartIsLoading:E,cartTotals:O}=Object(d.a)(),C=Object(o.useRef)(E);Object(o.useEffect)(()=>{C.current&&!E&&(C.current=!1)},[E,C]);const[S,j]=Object(o.useState)(n),[T,R]=Object(o.useState)(n),[A,M]=Object(o.useState)(null),P=Object(o.useCallback)(e=>{M(e)},[]);Object(o.useEffect)(()=>{if(A instanceof Element){if(!A.querySelector(".wp-block-woocommerce-mini-cart-contents"))return;S&&Object(c.a)({Block:L,blockName:B,selector:".wp-block-woocommerce-mini-cart-contents",blockMap:Object(f.getRegisteredBlockComponents)(B)})}return()=>{if(A instanceof Element&&S){const e=A.querySelector(".wp-block-woocommerce-mini-cart-contents");e&&Object(o.unmountComponentAtNode)(e)}}},[S,A]),Object(o.useEffect)(()=>{const e=()=>{"open_drawer"===y&&(R(!1),j(!0))},t=Object(m.b)("added_to_cart","wc-blocks_added_to_cart");return document.body.addEventListener("wc-blocks_added_to_cart",e),()=>{t(),document.body.removeEventListener("wc-blocks_added_to_cart",e)}},[y]);const N=Object(g.getSettingWithCoercion)("displayCartPricesIncludingTax",!1,h.a),I=Object(g.getSettingWithCoercion)("cartTotals",null,k),F=Object(g.getSettingWithCoercion)("cartItemsCount",0,w.a),D=Object(g.getSettingWithCoercion)("taxLabel","",v.a),U=C.current&&null!==I?I:O,H=C.current?F:_,V=N?parseInt(U.total_items,10)+parseInt(U.total_items_tax,10):parseInt(U.total_items,10),z=Object(a.sprintf)(
4
  /* translators: %1$d is the number of products in the cart. %2$s is the cart total */
1
+ !function(e){function t(t){for(var r,o,c=t[0],a=t[1],i=0,l=[];i<c.length;i++)o=c[i],Object.prototype.hasOwnProperty.call(n,o)&&n[o]&&l.push(n[o][0]),n[o]=0;for(r in a)Object.prototype.hasOwnProperty.call(a,r)&&(e[r]=a[r]);for(s&&s(t);l.length;)l.shift()()}var r={},n={49:0};function o(t){if(r[t])return r[t].exports;var n=r[t]={i:t,l:!1,exports:{}};return e[t].call(n.exports,n,n.exports,o),n.l=!0,n.exports}o.e=function(e){var t=[],r=n[e];if(0!==r)if(r)t.push(r[2]);else{var c=new Promise((function(t,o){r=n[e]=[t,o]}));t.push(r[2]=c);var a,i=document.createElement("script");i.charset="utf-8",i.timeout=120,o.nc&&i.setAttribute("nonce",o.nc),i.src=function(e){return o.p+""+({0:"vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66",3:"vendors--cart-blocks/cart-line-items--checkout-blocks/order-summary-cart-items--mini-cart-contents---233ab542",4:"cart-blocks/cart-line-items--mini-cart-contents-block/products-table",7:"mini-cart-contents-block/footer--mini-cart-contents-block/products-table",50:"mini-cart-contents-block/empty-cart",51:"mini-cart-contents-block/filled-cart",52:"mini-cart-contents-block/footer",53:"mini-cart-contents-block/items",54:"mini-cart-contents-block/products-table",55:"mini-cart-contents-block/shopping-button",56:"mini-cart-contents-block/title",73:"vendors--mini-cart-contents-block/footer"}[e]||e)+"-frontend.js?ver="+{0:"1d36f73838f02eb72b0e",3:"deab3ee0c5c13d3addc8",4:"89f09ba23bc79f34d574",7:"c754bab3adab68fdf4dc",50:"98cf9e41cc15d5ec2eee",51:"12fc82a1027b0c2b8996",52:"ef5452ba0d385cb14aba",53:"4ce5781219a9d7881da9",54:"73478d330ea9f31f9262",55:"c980bc80a2bfb99977ba",56:"1270fc9979c0646c8ba9",73:"93c4a83ab00e9821a689"}[e]}(e);var s=new Error;a=function(t){i.onerror=i.onload=null,clearTimeout(l);var r=n[e];if(0!==r){if(r){var o=t&&("load"===t.type?"missing":t.type),c=t&&t.target&&t.target.src;s.message="Loading chunk "+e+" failed.\n("+o+": "+c+")",s.name="ChunkLoadError",s.type=o,s.request=c,r[1](s)}n[e]=void 0}};var l=setTimeout((function(){a({type:"timeout",target:i})}),12e4);i.onerror=i.onload=a,document.head.appendChild(i)}return Promise.all(t)},o.m=e,o.c=r,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)o.d(r,n,function(t){return e[t]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o.oe=function(e){throw console.error(e),e};var c=window.webpackWcBlocksJsonp=window.webpackWcBlocksJsonp||[],a=c.push.bind(c);c.push=t,c=c.slice();for(var i=0;i<c.length;i++)t(c[i]);var s=a;o(o.s=238)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wc.wcSettings},function(e,t){e.exports=window.React},function(e,t,r){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var c=typeof n;if("string"===c||"number"===c)e.push(n);else if(Array.isArray(n)){if(n.length){var a=o.apply(null,n);a&&e.push(a)}}else if("object"===c)if(n.toString===Object.prototype.toString)for(var i in n)r.call(n,i)&&n[i]&&e.push(i);else e.push(n.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},function(e,t){e.exports=window.wc.wcBlocksData},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.data},,,function(e,t){e.exports=window.wc.blocksCheckout},function(e,t){function r(){return e.exports=r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,r.apply(this,arguments)}e.exports=r,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.isShallowEqual},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.primitives},function(e,t,r){"use strict";var n=r(19),o=r.n(n),c=r(0),a=r(3),i=r(1),s=r(44),l=e=>{let{imageUrl:t=s.l+"/block-error.svg",header:r=Object(i.__)("Oops!","woocommerce"),text:n=Object(i.__)("There was an error loading the content.","woocommerce"),errorMessage:o,errorMessagePrefix:a=Object(i.__)("Error:","woocommerce"),button:l,showErrorBlock:u=!0}=e;return u?Object(c.createElement)("div",{className:"wc-block-error wc-block-components-error"},t&&Object(c.createElement)("img",{className:"wc-block-error__image wc-block-components-error__image",src:t,alt:""}),Object(c.createElement)("div",{className:"wc-block-error__content wc-block-components-error__content"},r&&Object(c.createElement)("p",{className:"wc-block-error__header wc-block-components-error__header"},r),n&&Object(c.createElement)("p",{className:"wc-block-error__text wc-block-components-error__text"},n),o&&Object(c.createElement)("p",{className:"wc-block-error__message wc-block-components-error__message"},a?a+" ":"",o),l&&Object(c.createElement)("p",{className:"wc-block-error__button wc-block-components-error__button"},l))):null};r(33);class u extends a.Component{constructor(){super(...arguments),o()(this,"state",{errorMessage:"",hasError:!1})}static getDerivedStateFromError(e){return void 0!==e.statusText&&void 0!==e.status?{errorMessage:Object(c.createElement)(c.Fragment,null,Object(c.createElement)("strong",null,e.status),": ",e.statusText),hasError:!0}:{errorMessage:e.message,hasError:!0}}render(){const{header:e,imageUrl:t,showErrorMessage:r=!0,showErrorBlock:n=!0,text:o,errorMessagePrefix:a,renderError:i,button:s}=this.props,{errorMessage:u,hasError:p}=this.state;return p?"function"==typeof i?i({errorMessage:u}):Object(c.createElement)(l,{showErrorBlock:n,errorMessage:r?u:null,header:e,imageUrl:t,text:o,errorMessagePrefix:a,button:s}):this.props.children}}t.a=u},function(e,t){e.exports=window.wc.wcBlocksRegistry},function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=function(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.a11y},,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return c}));var n=r(0);r(7);const o=Object(n.createContext)({isEditor:!1,currentPostId:0,currentView:"",previewData:{},getPreviewData:()=>{}}),c=()=>Object(n.useContext)(o)},,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return k}));var n=r(6),o=r(0),c=r(5),a=r(7),i=r(18),s=r(118),l=r(27),u=r(68);const p=e=>{const t=e.detail;t&&t.preserveCartData||Object(a.dispatch)(c.CART_STORE_KEY).invalidateResolutionForStore()},d=()=>{1===window.wcBlocksStoreCartListeners.count&&window.wcBlocksStoreCartListeners.remove(),window.wcBlocksStoreCartListeners.count--},m=()=>{Object(o.useEffect)(()=>((()=>{if(window.wcBlocksStoreCartListeners||(window.wcBlocksStoreCartListeners={count:0,remove:()=>{}}),0===window.wcBlocksStoreCartListeners.count){const e=Object(u.b)("added_to_cart","wc-blocks_added_to_cart"),t=Object(u.b)("removed_from_cart","wc-blocks_removed_from_cart");document.body.addEventListener("wc-blocks_added_to_cart",p),document.body.addEventListener("wc-blocks_removed_from_cart",p),window.wcBlocksStoreCartListeners.count=0,window.wcBlocksStoreCartListeners.remove=()=>{e(),t(),document.body.removeEventListener("wc-blocks_added_to_cart",p),document.body.removeEventListener("wc-blocks_removed_from_cart",p)}}window.wcBlocksStoreCartListeners.count++})(),d),[])},f={first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},b={...f,email:""},g={total_items:"",total_items_tax:"",total_fees:"",total_fees_tax:"",total_discount:"",total_discount_tax:"",total_shipping:"",total_shipping_tax:"",total_price:"",total_tax:"",tax_lines:c.EMPTY_TAX_LINES,currency_code:"",currency_symbol:"",currency_minor_unit:2,currency_decimal_separator:"",currency_thousand_separator:"",currency_prefix:"",currency_suffix:""},h=e=>Object.fromEntries(Object.entries(e).map(e=>{let[t,r]=e;return[t,Object(i.decodeEntities)(r)]})),y={cartCoupons:c.EMPTY_CART_COUPONS,cartItems:c.EMPTY_CART_ITEMS,cartFees:c.EMPTY_CART_FEES,cartItemsCount:0,cartItemsWeight:0,cartNeedsPayment:!0,cartNeedsShipping:!0,cartItemErrors:c.EMPTY_CART_ITEM_ERRORS,cartTotals:g,cartIsLoading:!0,cartErrors:c.EMPTY_CART_ERRORS,billingAddress:b,shippingAddress:f,shippingRates:c.EMPTY_SHIPPING_RATES,isLoadingRates:!1,cartHasCalculatedShipping:!1,paymentRequirements:c.EMPTY_PAYMENT_REQUIREMENTS,receiveCart:()=>{},extensions:c.EMPTY_EXTENSIONS},k=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{shouldSelect:!0};const{isEditor:t,previewData:r}=Object(l.a)(),i=null==r?void 0:r.previewCart,{shouldSelect:u}=e,p=Object(o.useRef)();m();const d=Object(a.useSelect)((e,r)=>{let{dispatch:n}=r;if(!u)return y;if(t)return{cartCoupons:i.coupons,cartItems:i.items,cartFees:i.fees,cartItemsCount:i.items_count,cartItemsWeight:i.items_weight,cartNeedsPayment:i.needs_payment,cartNeedsShipping:i.needs_shipping,cartItemErrors:c.EMPTY_CART_ITEM_ERRORS,cartTotals:i.totals,cartIsLoading:!1,cartErrors:c.EMPTY_CART_ERRORS,billingAddress:b,shippingAddress:f,extensions:c.EMPTY_EXTENSIONS,shippingRates:i.shipping_rates,isLoadingRates:!1,cartHasCalculatedShipping:i.has_calculated_shipping,paymentRequirements:i.paymentRequirements,receiveCart:"function"==typeof(null==i?void 0:i.receiveCart)?i.receiveCart:()=>{}};const o=e(c.CART_STORE_KEY),a=o.getCartData(),l=o.getCartErrors(),p=o.getCartTotals(),d=!o.hasFinishedResolution("getCartData"),m=o.isCustomerDataUpdating(),{receiveCart:g}=n(c.CART_STORE_KEY),k=h(a.billingAddress),w=a.needsShipping?h(a.shippingAddress):k,v=a.fees.length>0?a.fees.map(e=>h(e)):c.EMPTY_CART_FEES;return{cartCoupons:a.coupons.length>0?a.coupons.map(e=>({...e,label:e.code})):c.EMPTY_CART_COUPONS,cartItems:a.items,cartFees:v,cartItemsCount:a.itemsCount,cartItemsWeight:a.itemsWeight,cartNeedsPayment:a.needsPayment,cartNeedsShipping:a.needsShipping,cartItemErrors:a.errors,cartTotals:p,cartIsLoading:d,cartErrors:l,billingAddress:Object(s.a)(k),shippingAddress:Object(s.a)(w),extensions:a.extensions,shippingRates:a.shippingRates,isLoadingRates:m,cartHasCalculatedShipping:a.hasCalculatedShipping,paymentRequirements:a.paymentRequirements,receiveCart:g}},[u]);return p.current&&Object(n.isEqual)(p.current,d)||(p.current=d),p.current}},function(e,t){e.exports=window.wp.deprecated},function(e,t){},,,,function(e,t){e.exports=window.wc.priceFormat},function(e,t){e.exports=window.wp.warning},function(e,t){e.exports=window.wp.hooks},,,,,function(e,t,r){"use strict";r.d(t,"n",(function(){return c})),r.d(t,"l",(function(){return a})),r.d(t,"k",(function(){return i})),r.d(t,"m",(function(){return s})),r.d(t,"i",(function(){return l})),r.d(t,"d",(function(){return u})),r.d(t,"f",(function(){return p})),r.d(t,"j",(function(){return d})),r.d(t,"c",(function(){return m})),r.d(t,"e",(function(){return f})),r.d(t,"g",(function(){return b})),r.d(t,"a",(function(){return g})),r.d(t,"h",(function(){return h})),r.d(t,"b",(function(){return y}));var n,o=r(2);const c=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),a=c.pluginUrl+"images/",i=c.pluginUrl+"build/",s=c.buildPhase,l=null===(n=o.STORE_PAGES.shop)||void 0===n?void 0:n.permalink,u=(o.STORE_PAGES.checkout.id,o.STORE_PAGES.checkout.permalink),p=o.STORE_PAGES.privacy.permalink,d=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),m=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id,o.STORE_PAGES.cart.permalink),f=o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),b=Object(o.getSetting)("shippingCountries",{}),g=Object(o.getSetting)("allowedCountries",{}),h=Object(o.getSetting)("shippingStates",{}),y=Object(o.getSetting)("allowedStates",{})},function(e,t,r){"use strict";var n=r(2),o=r(1),c=r(69),a=r(52);const i=Object(n.getSetting)("countryLocale",{}),s=e=>{const t={};return void 0!==e.label&&(t.label=e.label),void 0!==e.required&&(t.required=e.required),void 0!==e.hidden&&(t.hidden=e.hidden),void 0===e.label||e.optionalLabel||(t.optionalLabel=Object(o.sprintf)(
2
  /* translators: %s Field label. */
3
  Object(o.__)("%s (optional)","woocommerce"),e.label)),e.priority&&(Object(c.a)(e.priority)&&(t.index=e.priority),Object(a.a)(e.priority)&&(t.index=parseInt(e.priority,10))),e.hidden&&(t.required=!1),t},l=Object.entries(i).map(e=>{let[t,r]=e;return[t,Object.entries(r).map(e=>{let[t,r]=e;return[t,s(r)]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{})]}).reduce((e,t)=>{let[r,n]=t;return e[r]=n,e},{});t.a=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";const o=r&&void 0!==l[r]?l[r]:{};return e.map(e=>({key:e,...n.defaultAddressFields[e]||{},...o[e]||{},...t[e]||{}})).sort((e,t)=>e.index-t.index)}},,function(e,t,r){"use strict";r.d(t,"a",(function(){return o}));var n=r(3);function o(e,t,r){var o=this,c=Object(n.useRef)(null),a=Object(n.useRef)(0),i=Object(n.useRef)(null),s=Object(n.useRef)([]),l=Object(n.useRef)(),u=Object(n.useRef)(),p=Object(n.useRef)(e),d=Object(n.useRef)(!0);p.current=e;var m=!t&&0!==t&&"undefined"!=typeof window;if("function"!=typeof e)throw new TypeError("Expected a function");t=+t||0;var f=!!(r=r||{}).leading,b=!("trailing"in r)||!!r.trailing,g="maxWait"in r,h=g?Math.max(+r.maxWait||0,t):null;return Object(n.useEffect)((function(){return d.current=!0,function(){d.current=!1}}),[]),Object(n.useMemo)((function(){var e=function(e){var t=s.current,r=l.current;return s.current=l.current=null,a.current=e,u.current=p.current.apply(r,t)},r=function(e,t){m&&cancelAnimationFrame(i.current),i.current=m?requestAnimationFrame(e):setTimeout(e,t)},n=function(e){if(!d.current)return!1;var r=e-c.current,n=e-a.current;return!c.current||r>=t||r<0||g&&n>=h},y=function(t){return i.current=null,b&&s.current?e(t):(s.current=l.current=null,u.current)},k=function(){var e=Date.now();if(n(e))return y(e);if(d.current){var o=e-c.current,i=e-a.current,s=t-o,l=g?Math.min(s,h-i):s;r(k,l)}},w=function(){for(var p=[],m=0;m<arguments.length;m++)p[m]=arguments[m];var b=Date.now(),h=n(b);if(s.current=p,l.current=o,c.current=b,h){if(!i.current&&d.current)return a.current=c.current,r(k,t),f?e(c.current):u.current;if(g)return r(k,t),e(c.current)}return i.current||r(k,t),u.current};return w.cancel=function(){i.current&&(m?cancelAnimationFrame(i.current):clearTimeout(i.current)),a.current=0,s.current=c.current=l.current=i.current=null},w.isPending=function(){return!!i.current},w.flush=function(){return i.current?y(Date.now()):u.current},w}),[f,g,t,h,b,m])}},function(e,t,r){"use strict";r.d(t,"a",(function(){return l}));var n=r(11),o=r.n(n),c=r(0),a=r(16);const i=[".wp-block-woocommerce-cart"],s=e=>{let{Block:t,containers:r,getProps:n=(()=>({})),getErrorBoundaryProps:i=(()=>({}))}=e;0!==r.length&&Array.prototype.forEach.call(r,(e,r)=>{const s=n(e,r),l=i(e,r),u={...e.dataset,...s.attributes||{}};(e=>{let{Block:t,container:r,attributes:n={},props:i={},errorBoundaryProps:s={}}=e;Object(c.render)(Object(c.createElement)(a.a,s,Object(c.createElement)(c.Suspense,{fallback:Object(c.createElement)("div",{className:"wc-block-placeholder"})},t&&Object(c.createElement)(t,o()({},i,{attributes:n})))),r,()=>{r.classList&&r.classList.remove("is-loading")})})({Block:t,container:e,props:s,attributes:u,errorBoundaryProps:l})})},l=e=>{const t=document.body.querySelectorAll(i.join(",")),{Block:r,getProps:n,getErrorBoundaryProps:o,selector:c}=e;(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrappers:c}=e;const a=document.body.querySelectorAll(o);c&&c.length>0&&Array.prototype.filter.call(a,e=>!((e,t)=>Array.prototype.some.call(t,t=>t.contains(e)&&!t.isSameNode(e)))(e,c)),s({Block:t,containers:a,getProps:r,getErrorBoundaryProps:n})})({Block:r,getProps:n,getErrorBoundaryProps:o,selector:c,wrappers:t}),Array.prototype.forEach.call(t,t=>{t.addEventListener("wc-blocks_render_blocks_frontend",()=>{(e=>{let{Block:t,getProps:r,getErrorBoundaryProps:n,selector:o,wrapper:c}=e;const a=c.querySelectorAll(o);s({Block:t,containers:a,getProps:r,getErrorBoundaryProps:n})})({...e,wrapper:t})})})}},,,function(e,t){e.exports=window.wp.dom},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"string"==typeof e},,function(e,t,r){var n=r(80),o=r(55),c=o.setStyleProp,a=n.html,i=n.svg,s=n.isCustomAttribute,l=Object.prototype.hasOwnProperty;e.exports=function(e){var t,r,n,u;e=e||{};var p={};for(t in e)n=e[t],s(t)?p[t]=n:(r=t.toLowerCase(),l.call(a,r)?p[(u=a[r]).propertyName]=!!(u.hasBooleanValue||u.hasOverloadedBooleanValue&&!n)||n:l.call(i,t)?p[(u=i[t]).propertyName]=n:o.PRESERVE_CUSTOM_ATTRIBUTES&&(p[t]=n));return c(e.style,p),p}},function(e,t,r){var n=r(3),o=r(84).default,c={reactCompat:!0},a=n.version.split(".")[0]>=16;e.exports={PRESERVE_CUSTOM_ATTRIBUTES:a,invertObject:function(e,t){if(!e||"object"!=typeof e)throw new TypeError("First argument must be an object");var r,n,o="function"==typeof t,c={},a={};for(r in e)n=e[r],o&&(c=t(r,n))&&2===c.length?a[c[0]]=c[1]:"string"==typeof n&&(a[n]=r);return a},isCustomComponent:function(e,t){if(-1===e.indexOf("-"))return t&&"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}},setStyleProp:function(e,t){null!=e&&(t.style=o(e,c))}}},function(e,t,r){for(var n,o=r(90).CASE_SENSITIVE_TAG_NAMES,c={},a=0,i=o.length;a<i;a++)n=o[a],c[n.toLowerCase()]=n;function s(e){for(var t,r={},n=0,o=e.length;n<o;n++)r[(t=e[n]).name]=t.value;return r}function l(e){return function(e){return c[e]}(e=e.toLowerCase())||e}e.exports={formatAttributes:s,formatDOM:function e(t,r,n){r=r||null;for(var o,c,a,i=[],u=0,p=t.length;u<p;u++){switch(o=t[u],a={next:null,prev:i[u-1]||null,parent:r},(c=i[u-1])&&(c.next=a),"#"!==o.nodeName[0]&&(a.name=l(o.nodeName),a.attribs={},o.attributes&&o.attributes.length&&(a.attribs=s(o.attributes))),o.nodeType){case 1:"script"===a.name||"style"===a.name?a.type=a.name:a.type="tag",a.children=e(o.childNodes,a);break;case 3:a.type="text",a.data=o.nodeValue;break;case 8:a.type="comment",a.data=o.nodeValue}i.push(a)}return n&&(i.unshift({name:n.substring(0,n.indexOf(" ")).toLowerCase(),data:n,type:"directive",next:i[0]?i[0]:null,prev:null,parent:r}),i[1]&&(i[1].prev=i[0])),i},isIE:function(e){return e?document.documentMode===e:/(MSIE |Trident\/|Edge\/)/.test(navigator.userAgent)}}},,,function(e,t,r){var n=r(79),o=r(54),c=r(88),a={decodeEntities:!0,lowerCaseAttributeNames:!1};function i(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");return""===e?[]:n(c(e,(t=t||{}).htmlparser2||a),t)}i.domToReact=n,i.htmlToDOM=c,i.attributesToProps=o,e.exports=i,e.exports.default=i},,function(e,t,r){"use strict";r.d(t,"a",(function(){return n})),r.d(t,"b",(function(){return o}));const n=e=>!(e=>null===e)(e)&&e instanceof Object&&e.constructor===Object;function o(e,t){return n(e)&&t in e}},,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return o})),r.d(t,"d",(function(){return a})),r.d(t,"c",(function(){return i})),r.d(t,"b",(function(){return s}));const n=window.CustomEvent||null,o=(e,t)=>{let{bubbles:r=!1,cancelable:o=!1,element:c,detail:a={}}=t;if(!n)return;c||(c=document.body);const i=new n(e,{bubbles:r,cancelable:o,detail:a});c.dispatchEvent(i)};let c;const a=()=>{c&&clearTimeout(c),c=setTimeout(()=>{o("wc_fragment_refresh",{bubbles:!0,cancelable:!0})},50)},i=e=>{let{preserveCartData:t=!1}=e;o("wc-blocks_added_to_cart",{bubbles:!0,cancelable:!0,detail:{preserveCartData:t}})},s=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof jQuery)return()=>{};const c=()=>{o(t,{bubbles:r,cancelable:n})};return jQuery(document).on(e,c),()=>jQuery(document).off(e,c)}},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"number"==typeof e},,,,,,,,,,function(e,t,r){var n=r(3),o=r(54),c=r(55),a=c.setStyleProp;function i(e){return c.PRESERVE_CUSTOM_ATTRIBUTES&&"tag"===e.type&&c.isCustomComponent(e.name,e.attribs)}e.exports=function e(t,r){for(var c,s,l,u,p=(r=r||{}).library||n,d=p.cloneElement,m=p.createElement,f=p.isValidElement,b=[],g="function"==typeof r.replace,h=r.trim,y=0,k=t.length;y<k;y++)if(c=t[y],g&&f(s=r.replace(c)))k>1&&(s=d(s,{key:s.key||y})),b.push(s);else if("text"!==c.type){switch(l=c.attribs,i(c)?a(l.style,l):l&&(l=o(l)),u=null,c.type){case"script":case"style":c.children[0]&&(l.dangerouslySetInnerHTML={__html:c.children[0].data});break;case"tag":"textarea"===c.name&&c.children[0]?l.defaultValue=c.children[0].data:c.children&&c.children.length&&(u=e(c.children,r));break;default:continue}k>1&&(l.key=y),b.push(m(c.name,l,u))}else h?c.data.trim()&&b.push(c.data):b.push(c.data);return 1===b.length?b[0]:b}},function(e,t,r){var n=r(81),o=r(82),c=r(83),a=c.MUST_USE_PROPERTY,i=c.HAS_BOOLEAN_VALUE,s=c.HAS_NUMERIC_VALUE,l=c.HAS_POSITIVE_NUMERIC_VALUE,u=c.HAS_OVERLOADED_BOOLEAN_VALUE;function p(e,t){return(e&t)===t}function d(e,t,r){var n,o,c,d=e.Properties,m=e.DOMAttributeNames;for(o in d)n=m[o]||(r?o:o.toLowerCase()),c=d[o],t[n]={attributeName:n,propertyName:o,mustUseProperty:p(c,a),hasBooleanValue:p(c,i),hasNumericValue:p(c,s),hasPositiveNumericValue:p(c,l),hasOverloadedBooleanValue:p(c,u)}}var m={};d(n,m);var f={};d(o,f,!0);var b={};d(n,b),d(o,b,!0),e.exports={html:m,svg:f,properties:b,isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"))}},function(e,t){e.exports={Properties:{autoFocus:4,accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:4,allowTransparency:0,alt:0,as:0,async:4,autoComplete:0,autoPlay:4,capture:4,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:5,cite:0,classID:0,className:0,cols:24,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:4,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:4,defer:4,dir:0,disabled:4,download:32,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:4,formTarget:0,frameBorder:0,headers:0,height:0,hidden:4,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:4,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:5,muted:5,name:0,nonce:0,noValidate:4,open:4,optimum:0,pattern:0,placeholder:0,playsInline:4,poster:0,preload:0,profile:0,radioGroup:0,readOnly:4,referrerPolicy:0,rel:0,required:4,reversed:4,role:0,rows:24,rowSpan:8,sandbox:0,scope:0,scoped:4,scrolling:0,seamless:4,selected:5,shape:0,size:24,sizes:0,span:24,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:8,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:4,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"}}},function(e,t){e.exports={Properties:{accentHeight:0,accumulate:0,additive:0,alignmentBaseline:0,allowReorder:0,alphabetic:0,amplitude:0,arabicForm:0,ascent:0,attributeName:0,attributeType:0,autoReverse:0,azimuth:0,baseFrequency:0,baseProfile:0,baselineShift:0,bbox:0,begin:0,bias:0,by:0,calcMode:0,capHeight:0,clip:0,clipPath:0,clipRule:0,clipPathUnits:0,colorInterpolation:0,colorInterpolationFilters:0,colorProfile:0,colorRendering:0,contentScriptType:0,contentStyleType:0,cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:0,direction:0,display:0,divisor:0,dominantBaseline:0,dur:0,dx:0,dy:0,edgeMode:0,elevation:0,enableBackground:0,end:0,exponent:0,externalResourcesRequired:0,fill:0,fillOpacity:0,fillRule:0,filter:0,filterRes:0,filterUnits:0,floodColor:0,floodOpacity:0,focusable:0,fontFamily:0,fontSize:0,fontSizeAdjust:0,fontStretch:0,fontStyle:0,fontVariant:0,fontWeight:0,format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:0,glyphOrientationHorizontal:0,glyphOrientationVertical:0,glyphRef:0,gradientTransform:0,gradientUnits:0,hanging:0,horizAdvX:0,horizOriginX:0,ideographic:0,imageRendering:0,in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:0,kernelUnitLength:0,kerning:0,keyPoints:0,keySplines:0,keyTimes:0,lengthAdjust:0,letterSpacing:0,lightingColor:0,limitingConeAngle:0,local:0,markerEnd:0,markerMid:0,markerStart:0,markerHeight:0,markerUnits:0,markerWidth:0,mask:0,maskContentUnits:0,maskUnits:0,mathematical:0,mode:0,numOctaves:0,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:0,overlineThickness:0,paintOrder:0,panose1:0,pathLength:0,patternContentUnits:0,patternTransform:0,patternUnits:0,pointerEvents:0,points:0,pointsAtX:0,pointsAtY:0,pointsAtZ:0,preserveAlpha:0,preserveAspectRatio:0,primitiveUnits:0,r:0,radius:0,refX:0,refY:0,renderingIntent:0,repeatCount:0,repeatDur:0,requiredExtensions:0,requiredFeatures:0,restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:0,slope:0,spacing:0,specularConstant:0,specularExponent:0,speed:0,spreadMethod:0,startOffset:0,stdDeviation:0,stemh:0,stemv:0,stitchTiles:0,stopColor:0,stopOpacity:0,strikethroughPosition:0,strikethroughThickness:0,string:0,stroke:0,strokeDasharray:0,strokeDashoffset:0,strokeLinecap:0,strokeLinejoin:0,strokeMiterlimit:0,strokeOpacity:0,strokeWidth:0,surfaceScale:0,systemLanguage:0,tableValues:0,targetX:0,targetY:0,textAnchor:0,textDecoration:0,textRendering:0,textLength:0,to:0,transform:0,u1:0,u2:0,underlinePosition:0,underlineThickness:0,unicode:0,unicodeBidi:0,unicodeRange:0,unitsPerEm:0,vAlphabetic:0,vHanging:0,vIdeographic:0,vMathematical:0,values:0,vectorEffect:0,version:0,vertAdvY:0,vertOriginX:0,vertOriginY:0,viewBox:0,viewTarget:0,visibility:0,widths:0,wordSpacing:0,writingMode:0,x:0,xHeight:0,x1:0,x2:0,xChannelSelector:0,xlinkActuate:0,xlinkArcrole:0,xlinkHref:0,xlinkRole:0,xlinkShow:0,xlinkTitle:0,xlinkType:0,xmlBase:0,xmlns:0,xmlnsXlink:0,xmlLang:0,xmlSpace:0,y:0,y1:0,y2:0,yChannelSelector:0,z:0,zoomAndPan:0},DOMAttributeNames:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space"}}},function(e,t){e.exports={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32}},function(e,t,r){"use strict";var n=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};t.__esModule=!0;var o=n(r(85)),c=r(87);t.default=function(e,t){var r={};return e&&"string"==typeof e?(o.default(e,(function(e,n){e&&n&&(r[c.camelCase(e,t)]=n)})),r):r}},function(e,t,r){var n=r(86);e.exports=function(e,t){var r,o=null;if(!e||"string"!=typeof e)return o;for(var c,a,i=n(e),s="function"==typeof t,l=0,u=i.length;l<u;l++)c=(r=i[l]).property,a=r.value,s?t(c,a,r):a&&(o||(o={}),o[c]=a);return o}},function(e,t){var r=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,n=/\n/g,o=/^\s*/,c=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,a=/^:\s*/,i=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,s=/^[;\s]*/,l=/^\s+|\s+$/g;function u(e){return e?e.replace(l,""):""}e.exports=function(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];t=t||{};var l=1,p=1;function d(e){var t=e.match(n);t&&(l+=t.length);var r=e.lastIndexOf("\n");p=~r?e.length-r:p+e.length}function m(){var e={line:l,column:p};return function(t){return t.position=new f(e),y(),t}}function f(e){this.start=e,this.end={line:l,column:p},this.source=t.source}f.prototype.content=e;var b=[];function g(r){var n=new Error(t.source+":"+l+":"+p+": "+r);if(n.reason=r,n.filename=t.source,n.line=l,n.column=p,n.source=e,!t.silent)throw n;b.push(n)}function h(t){var r=t.exec(e);if(r){var n=r[0];return d(n),e=e.slice(n.length),r}}function y(){h(o)}function k(e){var t;for(e=e||[];t=w();)!1!==t&&e.push(t);return e}function w(){var t=m();if("/"==e.charAt(0)&&"*"==e.charAt(1)){for(var r=2;""!=e.charAt(r)&&("*"!=e.charAt(r)||"/"!=e.charAt(r+1));)++r;if(r+=2,""===e.charAt(r-1))return g("End of comment missing");var n=e.slice(2,r-2);return p+=2,d(n),e=e.slice(r),p+=2,t({type:"comment",comment:n})}}function v(){var e=m(),t=h(c);if(t){if(w(),!h(a))return g("property missing ':'");var n=h(i),o=e({type:"declaration",property:u(t[0].replace(r,"")),value:n?u(n[0].replace(r,"")):""});return h(s),o}}return y(),function(){var e,t=[];for(k(t);e=v();)!1!==e&&(t.push(e),k(t));return t}()}},function(e,t,r){"use strict";t.__esModule=!0,t.camelCase=void 0;var n=/^--[a-zA-Z0-9-]+$/,o=/-([a-z])/g,c=/^[^-]+$/,a=/^-(webkit|moz|ms|o|khtml)-/,i=function(e,t){return t.toUpperCase()},s=function(e,t){return t+"-"};t.camelCase=function(e,t){return void 0===t&&(t={}),function(e){return!e||c.test(e)||n.test(e)}(e)?e:(e=e.toLowerCase(),t.reactCompat||(e=e.replace(a,s)),e.replace(o,i))}},function(e,t,r){var n=r(89),o=r(56),c=o.formatDOM,a=o.isIE(9),i=/<(![a-zA-Z\s]+)>/;e.exports=function(e){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];var t,r=e.match(i);return r&&r[1]&&(t=r[1],a&&(e=e.replace(r[0],""))),c(n(e),null,t)}},function(e,t,r){var n=r(56),o=/<([a-zA-Z]+[0-9]?)/,c=/<head.*>/i,a=/<body.*>/i,i=/<(area|base|br|col|embed|hr|img|input|keygen|link|menuitem|meta|param|source|track|wbr)(.*?)\/?>/gi,s=n.isIE(9),l=s||n.isIE(),u=function(){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},p=function(){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")};if("function"==typeof window.DOMParser){var d=new window.DOMParser,m=s?"text/xml":"text/html";u=p=function(e,t){return t&&(e="<"+t+">"+e+"</"+t+">"),s&&(e=e.replace(i,"<$1$2$3/>")),d.parseFromString(e,m)}}if(document.implementation){var f=document.implementation.createHTMLDocument(l?"html-dom-parser":void 0);u=function(e,t){if(t)return f.documentElement.getElementsByTagName(t)[0].innerHTML=e,f;try{return f.documentElement.innerHTML=e,f}catch(t){if(p)return p(e)}}}var b,g=document.createElement("template");g.content&&(b=function(e){return g.innerHTML=e,g.content.childNodes}),e.exports=function(e){var t,r,n,i,s=e.match(o);switch(s&&s[1]&&(t=s[1].toLowerCase()),t){case"html":return r=p(e),c.test(e)||(n=r.getElementsByTagName("head")[0])&&n.parentNode.removeChild(n),a.test(e)||(n=r.getElementsByTagName("body")[0])&&n.parentNode.removeChild(n),r.getElementsByTagName("html");case"head":case"body":return i=u(e).getElementsByTagName(t),a.test(e)&&c.test(e)?i[0].parentNode.childNodes:i;default:return b?b(e):u(e,"body").getElementsByTagName("body")[0].childNodes}}},function(e,t){e.exports={CASE_SENSITIVE_TAG_NAMES:["animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussainBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","linearGradient","radialGradient","textPath"]}},,,,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return i}));var n=r(3),o=r(47);function c(e,t){return e===t}function a(e){return"function"==typeof e?function(){return e}:e}function i(e,t,r){var i=r&&r.equalityFn||c,s=function(e){var t=Object(n.useState)(a(e)),r=t[0],o=t[1];return[r,Object(n.useCallback)((function(e){return o(a(e))}),[])]}(e),l=s[0],u=s[1],p=Object(o.a)(Object(n.useCallback)((function(e){return u(e)}),[u]),t,r),d=Object(n.useRef)(e);return i(d.current,e)||(p(e),d.current=e),[l,p]}},function(e,t){e.exports=window.wp.components},,,,,function(e,t,r){"use strict";var n=r(0);t.a=function(e){let{icon:t,size:r=24,...o}=e;return Object(n.cloneElement)(t,{width:r,height:r,...o})}},,,,,,,,,,function(e,t){e.exports=window.wp.wordcount},function(e,t){e.exports=window.wp.autop},,function(e,t,r){"use strict";r.d(t,"b",(function(){return c})),r.d(t,"a",(function(){return a}));var n=r(45),o=(r(14),r(2));const c=(e,t)=>Object.keys(o.defaultAddressFields).every(r=>e[r]===t[r]),a=e=>{const t=Object.keys(o.defaultAddressFields),r=Object(n.a)(t,{},e.country),c=Object.assign({},e);return r.forEach(t=>{let{key:r="",hidden:n=!1}=t;n&&((e,t)=>e in t)(r,e)&&(c[r]="")}),c}},function(e,t,r){"use strict";r.d(t,"a",(function(){return n}));const n=e=>"boolean"==typeof e},,,,,,,,function(e,t,r){"use strict";r.d(t,"a",(function(){return d}));var n=r(0),o=r(48),c=r(2),a=r(59),i=r.n(a),s=r(10),l=r(16);const u=(e,t)=>e&&t[e]?t[e]:null,p=e=>{let{block:t,blockMap:r,blockWrapper:o,children:a,depth:d=1}=e;return a&&0!==a.length?Array.from(a).map((e,a)=>{const{blockName:m="",...f}={key:`${t}_${d}_${a}`,...e instanceof HTMLElement?e.dataset:{},className:e instanceof Element?null==e?void 0:e.className:""},b=u(m,r);if(!b){const c=i()(e instanceof Element&&(null==e?void 0:e.outerHTML)||(null==e?void 0:e.textContent)||"");if("string"==typeof c&&c)return c;if(!Object(n.isValidElement)(c))return null;const a=e.childNodes.length?p({block:t,blockMap:r,children:e.childNodes,depth:d+1,blockWrapper:o}):void 0;return a?Object(n.cloneElement)(c,f,a):Object(n.cloneElement)(c,f)}const g=o||n.Fragment;return Object(n.createElement)(n.Suspense,{key:`${t}_${d}_${a}_suspense`,fallback:Object(n.createElement)("div",{className:"wc-block-placeholder"})},Object(n.createElement)(l.a,{text:"Unexpected error in: "+m,showErrorBlock:c.CURRENT_USER_IS_ADMIN},Object(n.createElement)(g,null,Object(n.createElement)(b,f,p({block:t,blockMap:r,children:e.childNodes,depth:d+1,blockWrapper:o}),((e,t,r,o)=>{if(!Object(s.hasInnerBlocks)(e))return null;const a=r?Array.from(r).map(e=>e instanceof HTMLElement&&(null==e?void 0:e.dataset.blockName)||null).filter(Boolean):[],i=Object(s.getRegisteredBlocks)(e).filter(e=>{let{blockName:t,force:r}=e;return!0===r&&!a.includes(t)}),p=o||n.Fragment;return Object(n.createElement)(n.Fragment,null,i.map((e,r)=>{let{blockName:o,component:a}=e;const i=a||u(o,t);return i?Object(n.createElement)(l.a,{text:"Unexpected error in: "+o,showErrorBlock:c.CURRENT_USER_IS_ADMIN},Object(n.createElement)(p,null,Object(n.createElement)(i,{key:`${o}_forced_${r}`}))):null}))})(m,r,e.childNodes,o)))))}):null},d=e=>{let{Block:t,selector:r,blockName:n,getProps:c=(()=>({})),blockMap:a,blockWrapper:i}=e;Object(o.a)({Block:t,selector:r,getProps:(e,t)=>{const r=p({block:n,blockMap:a,children:e.children||[],blockWrapper:i});return{...c(e,t),children:r}}})}},,,,,,,,,,,,,,,function(e,t){e.exports=window.wp.keycodes},,,,function(e,t){},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e){e.exports=JSON.parse('{"name":"woocommerce/filled-mini-cart-contents-block","version":"1.0.0","title":"Filled Mini Cart Contents","description":"Contains blocks that are displayed when the mini cart has products.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/mini-cart-contents"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/empty-mini-cart-contents-block","version":"1.0.0","title":"Empty Mini Cart Contents","description":"Contains blocks that are displayed when the mini cart is empty.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/mini-cart-contents"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/mini-cart-title-block","version":"1.0.0","title":"Mini Cart Title","description":"Block that displays the title of the Mini Cart block.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/filled-mini-cart-contents-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/mini-cart-items-block","version":"1.0.0","title":"Mini Cart Items","description":"Contains the products table and other custom blocks of filled mini cart.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/filled-mini-cart-contents-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/mini-cart-products-table-block","version":"1.0.0","title":"Mini Cart Products Table","description":"Block that displays the products table of the Mini Cart block.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":false}}},"parent":["woocommerce/mini-cart-items-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/mini-cart-footer-block","version":"1.0.0","title":"Mini Cart Footer","description":"Block that displays the footer of the Mini Cart block.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":false,"lock":false},"attributes":{"lock":{"type":"object","default":{"remove":true,"move":true}}},"parent":["woocommerce/filled-mini-cart-contents-block"],"textdomain":"woocommerce","apiVersion":2}')},function(e){e.exports=JSON.parse('{"name":"woocommerce/mini-cart-shopping-button-block","version":"1.0.0","title":"Mini Cart Shopping Button","description":"Block that displays the shopping button for the Mini Cart block.","category":"woocommerce","supports":{"align":false,"html":false,"multiple":false,"reusable":false,"inserter":true},"attributes":{"lock":{"type":"object","default":{"remove":false,"move":false}}},"parent":["woocommerce/empty-mini-cart-contents-block"],"textdomain":"woocommerce","apiVersion":2}')},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){},function(e,t){},,,,,function(e,t,r){"use strict";r.r(t);var n=r(48),o=r(0),c=r(127),a=r(1),i=r(100),s=r(99),l=r(4),u=r.n(l);r(233);var p=e=>{let{children:t,className:r,isOpen:n,onClose:c,slideIn:l=!0,slideOut:p=!0,title:d}=e;const[m]=Object(s.a)(n,300);return n||!n&&m?Object(o.createElement)(i.Modal,{title:d,focusOnMount:!0,onRequestClose:c,className:u()(r,"wc-block-components-drawer"),overlayClassName:u()("wc-block-components-drawer__screen-overlay",{"wc-block-components-drawer__screen-overlay--is-hidden":!n,"wc-block-components-drawer__screen-overlay--with-slide-in":l,"wc-block-components-drawer__screen-overlay--with-slide-out":p}),closeButtonLabel:Object(a.__)("Close mini cart","woocommerce")},t):null},d=r(31),m=r(68),f=r(17),b=r(37),g=r(2),h=r(119),y=r(61);const k=e=>!!Object(y.a)(e)&&Object.keys({total_items:0,total_items_tax:0,total_fees:0,total_fees_tax:0,total_discount:0,total_discount_tax:0,total_shipping:0,total_shipping_tax:0,total_price:0,total_tax:0,tax_lines:0,currency_code:0,currency_symbol:0,currency_minor_unit:0,currency_decimal_separator:0,currency_thousand_separator:0,currency_prefix:0,currency_suffix:0}).every(t=>t in e);var w=r(69),v=r(52),_=r(15),E=Object(o.createElement)(_.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"none"},Object(o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.84614 18.2769C7.89712 18.2769 7.93845 18.2356 7.93845 18.1846C7.93845 18.1336 7.89712 18.0923 7.84614 18.0923C7.79516 18.0923 7.75384 18.1336 7.75384 18.1846C7.75384 18.2356 7.79516 18.2769 7.84614 18.2769ZM6.03076 18.1846C6.03076 17.182 6.84353 16.3692 7.84614 16.3692C8.84875 16.3692 9.66152 17.182 9.66152 18.1846C9.66152 19.1872 8.84875 20 7.84614 20C6.84353 20 6.03076 19.1872 6.03076 18.1846Z",fill:"currentColor"}),Object(o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.3231 18.2769C17.3741 18.2769 17.4154 18.2356 17.4154 18.1846C17.4154 18.1336 17.3741 18.0923 17.3231 18.0923C17.2721 18.0923 17.2308 18.1336 17.2308 18.1846C17.2308 18.2356 17.2721 18.2769 17.3231 18.2769ZM15.5077 18.1846C15.5077 17.182 16.3205 16.3692 17.3231 16.3692C18.3257 16.3692 19.1385 17.182 19.1385 18.1846C19.1385 19.1872 18.3257 20 17.3231 20C16.3205 20 15.5077 19.1872 15.5077 18.1846Z",fill:"currentColor"}),Object(o.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20.0631 9.53835L19.4662 12.6685L19.4648 12.6757L19.4648 12.6757C19.3424 13.2919 19.0072 13.8454 18.5178 14.2394C18.031 14.6312 17.4226 14.8404 16.798 14.8308H8.44017C7.81556 14.8404 7.20714 14.6312 6.72038 14.2394C6.2312 13.8456 5.89605 13.2924 5.77352 12.6765L5.77335 12.6757L4.33477 5.48814C4.3286 5.46282 4.32345 5.43711 4.31934 5.41104L3.61815 1.90768H0.953842C0.42705 1.90768 0 1.48063 0 0.953842C0 0.42705 0.42705 0 0.953842 0H4.4C4.85462 0 5.24607 0.320858 5.33529 0.766644L6.04403 4.30769H12.785C13.0114 4.99157 13.3319 5.63258 13.7312 6.21538H6.42585L7.64421 12.3026L7.64449 12.304C7.67966 12.4811 7.77599 12.6402 7.91662 12.7534C8.05725 12.8666 8.23322 12.9267 8.41372 12.9233L8.432 12.9231H16.8062L16.8244 12.9233C17.0049 12.9267 17.1809 12.8666 17.3215 12.7534C17.4614 12.6408 17.5575 12.4828 17.5931 12.3068L17.5937 12.304L18.1649 9.30867C18.762 9.45873 19.387 9.53842 20.0307 9.53842C20.0415 9.53842 20.0523 9.5384 20.0631 9.53835Z",fill:"currentColor"})),O=r(105);r(232);var x=e=>{let{count:t,colorClassNames:r,style:n}=e;return Object(o.createElement)("span",{className:"wc-block-mini-cart__quantity-badge"},Object(o.createElement)(O.a,{className:"wc-block-mini-cart__icon",size:20,icon:E}),Object(o.createElement)("span",{className:"wc-block-mini-cart__badge "+r,style:n},t))},C=r(44),S=r(10),j=r(185),T=r(184),R=r(186),A=r(188),M=r(189),P=r(187),N=r(190);r.p=C.k,Object(S.registerCheckoutBlock)({metadata:T,component:Object(o.lazy)(()=>r.e(51).then(r.bind(null,419)))}),Object(S.registerCheckoutBlock)({metadata:j,component:Object(o.lazy)(()=>r.e(50).then(r.bind(null,420)))}),Object(S.registerCheckoutBlock)({metadata:R,component:Object(o.lazy)(()=>r.e(56).then(r.bind(null,421)))}),Object(S.registerCheckoutBlock)({metadata:P,component:Object(o.lazy)(()=>r.e(53).then(r.bind(null,422)))}),Object(S.registerCheckoutBlock)({metadata:A,component:Object(o.lazy)(()=>Promise.all([r.e(0),r.e(3),r.e(7),r.e(4),r.e(54)]).then(r.bind(null,423)))}),Object(S.registerCheckoutBlock)({metadata:M,component:Object(o.lazy)(()=>Promise.all([r.e(73),r.e(7),r.e(52)]).then(r.bind(null,424)))}),Object(S.registerCheckoutBlock)({metadata:N,component:Object(o.lazy)(()=>r.e(55).then(r.bind(null,425)))});const L=e=>{let{children:t}=e;return Object(o.createElement)(o.Fragment,null,t)};r(146);const B="woocommerce/mini-cart-contents";var I=e=>{var t,r;let{isInitiallyOpen:n=!1,colorClassNames:i,style:s,contents:l="",addToCartBehaviour:y="none"}=e;const{cartItemsCount:_,cartIsLoading:E,cartTotals:O}=Object(d.a)(),C=Object(o.useRef)(E);Object(o.useEffect)(()=>{C.current&&!E&&(C.current=!1)},[E,C]);const[S,j]=Object(o.useState)(n),[T,R]=Object(o.useState)(n),[A,M]=Object(o.useState)(null),P=Object(o.useCallback)(e=>{M(e)},[]);Object(o.useEffect)(()=>{if(A instanceof Element){if(!A.querySelector(".wp-block-woocommerce-mini-cart-contents"))return;S&&Object(c.a)({Block:L,blockName:B,selector:".wp-block-woocommerce-mini-cart-contents",blockMap:Object(f.getRegisteredBlockComponents)(B)})}return()=>{if(A instanceof Element&&S){const e=A.querySelector(".wp-block-woocommerce-mini-cart-contents");e&&Object(o.unmountComponentAtNode)(e)}}},[S,A]),Object(o.useEffect)(()=>{const e=()=>{"open_drawer"===y&&(R(!1),j(!0))},t=Object(m.b)("added_to_cart","wc-blocks_added_to_cart");return document.body.addEventListener("wc-blocks_added_to_cart",e),()=>{t(),document.body.removeEventListener("wc-blocks_added_to_cart",e)}},[y]);const N=Object(g.getSettingWithCoercion)("displayCartPricesIncludingTax",!1,h.a),I=Object(g.getSettingWithCoercion)("cartTotals",null,k),F=Object(g.getSettingWithCoercion)("cartItemsCount",0,w.a),D=Object(g.getSettingWithCoercion)("taxLabel","",v.a),U=C.current&&null!==I?I:O,H=C.current?F:_,V=N?parseInt(U.total_items,10)+parseInt(U.total_items_tax,10):parseInt(U.total_items,10),z=Object(a.sprintf)(
4
  /* translators: %1$d is the number of products in the cart. %2$s is the cart total */
packages/woocommerce-blocks/build/price-filter-frontend.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-data-store', 'wc-price-format', 'wc-settings', 'wp-data', 'wp-element', 'wp-i18n', 'wp-is-shallow-equal', 'wp-polyfill', 'wp-url'), 'version' => '66b2cc0cc5c956107345df8b169fa40b');
1
+ <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-data-store', 'wc-price-format', 'wc-settings', 'wp-data', 'wp-element', 'wp-i18n', 'wp-is-shallow-equal', 'wp-polyfill', 'wp-url'), 'version' => 'c8d4c0b8b67c9dcb32202267c40f0a0a');
packages/woocommerce-blocks/build/product-best-sellers.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => 'ce1684b4b779022c72be9a2c3775bfd5');
1
+ <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => '7b549e3aa6be373b948d15ef45e568b4');
packages/woocommerce-blocks/build/product-best-sellers.js CHANGED
@@ -2,7 +2,7 @@ this.wc=this.wc||{},this.wc.blocks=this.wc.blocks||{},this.wc.blocks["product-be
2
  /* Translators: %s search term */
3
  noResults:Object(o.__)("No results for %s","woocommerce"),search:Object(o.__)("Search for items","woocommerce"),selected:e=>Object(o.sprintf)(
4
  /* translators: Number of items selected from list. */
5
- Object(o._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(o.__)("Search results updated.","woocommerce")},i=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(n.groupBy)(e,"parent"),r=Object(n.keyBy)(t,"id"),o=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},i=e=>e.map(e=>{const t=c[e.id];return o.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?i(t):[]}}),s=i(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;o.includes(t)||s.push(...i(c||[]))}),s},s=(e,t,c)=>{if(!t)return c?i(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),n=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?i(n,e):n},a=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return o})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return i})),c.d(t,"n",(function(){return s})),c.d(t,"j",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return b})),c.d(t,"g",(function(){return d})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return h})),c.d(t,"h",(function(){return p})),c.d(t,"a",(function(){return E})),c.d(t,"i",(function(){return O})),c.d(t,"b",(function(){return w}));var r,n=c(2);const o=Object(n.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=o.pluginUrl+"images/",i=o.pluginUrl+"build/",s=o.buildPhase,a=null===(r=n.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=n.STORE_PAGES.checkout.id,b=n.STORE_PAGES.checkout.permalink,d=n.STORE_PAGES.privacy.permalink,g=(n.STORE_PAGES.privacy.title,n.STORE_PAGES.terms.permalink),m=(n.STORE_PAGES.terms.title,n.STORE_PAGES.cart.id),h=n.STORE_PAGES.cart.permalink,p=(n.STORE_PAGES.myaccount.permalink?n.STORE_PAGES.myaccount.permalink:Object(n.getSetting)("wpLoginUrl","/wp-login.php"),Object(n.getSetting)("shippingCountries",{})),E=Object(n.getSetting)("allowedCountries",{}),O=Object(n.getSetting)("shippingStates",{}),w=Object(n.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return b})),c.d(t,"i",(function(){return d})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return h})),c.d(t,"g",(function(){return p})),c.d(t,"a",(function(){return E}));var r=c(16),n=c(15),o=c.n(n),l=c(7),i=c(2),s=c(24);const a=e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const i=(e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const o=s.o.productCount>100,l={per_page:o?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},i=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...n})];return o&&t.length&&i.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),i})({selected:t,search:c,queryArgs:n});return Promise.all(i.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>o()({path:"/wc/store/v1/products/"+e}),b=()=>o()({path:"wc/store/v1/products/attributes"}),d=e=>o()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const n=(e=>{let{selected:t=[],search:c}=e;const n=Object(i.getSetting)("limitTags",!1),o=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:n?100:0,orderby:n?"count":"name",order:n?"desc":"asc",search:c})];return n&&t.length&&o.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),o})({selected:t,search:c});return Promise.all(n.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},m=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),h=e=>o()({path:"wc/store/v1/products/categories/"+e}),p=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),E=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return o})),c.d(t,"b",(function(){return l}));var r=c(1),n=c(14);const o=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(n.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):t:Object(n.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return i}));var r=c(6),n=c.n(r),o=c(0),l=c(21);const i=e=>{let{countLabel:t,className:c,depth:r=0,controlId:i="",item:s,isSelected:a,isSingle:u,onSelect:b,search:d="",...g}=e;const m=null!=t&&void 0!==s.count&&null!==s.count,h=[c,"woocommerce-search-list__item"];h.push("depth-"+r),u&&h.push("is-radio-button"),m&&h.push("has-count");const p=s.breadcrumbs&&s.breadcrumbs.length,E=g.name||"search-list-item-"+i,O=`${E}-${s.id}`;return Object(o.createElement)("label",{htmlFor:O,className:h.join(" ")},u?Object(o.createElement)("input",n()({type:"radio",id:O,name:E,value:s.value,onChange:b(s),checked:a,className:"woocommerce-search-list__item-input"},g)):Object(o.createElement)("input",n()({type:"checkbox",id:O,name:E,value:s.value,onChange:b(s),checked:a,className:"woocommerce-search-list__item-input"},g)),Object(o.createElement)("span",{className:"woocommerce-search-list__item-label"},p?Object(o.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(s.breadcrumbs)):null,Object(o.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(s.name,d))),!!m&&Object(o.createElement)("span",{className:"woocommerce-search-list__item-count"},t||s.count))};t.b=i},362:function(e,t,c){e.exports=c(496)},496:function(e,t,c){"use strict";c.r(t);var r=c(0),n=c(1),o=c(7),l=c(110),i=c(519),s=c(13),a=c(3),u=c(5),b=c(53),d=c.n(b),g=c(60),m=c(61),h=c(64),p=c(137),E=c(2);class O extends r.Component{getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{categories:c,catOperator:o,columns:l,contentVisibility:i,rows:s,alignButtons:b}=e;return Object(r.createElement)(u.InspectorControls,{key:"inspector"},Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(m.a,{columns:l,rows:s,alignButtons:b,setAttributes:t,minColumns:Object(E.getSetting)("min_columns",1),maxColumns:Object(E.getSetting)("max_columns",6),minRows:Object(E.getSetting)("min_rows",1),maxRows:Object(E.getSetting)("max_rows",6)})),Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{settings:i,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Filter by Product Category","woocommerce"),initialOpen:!1},Object(r.createElement)(h.a,{selected:c,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({categories:c})},operator:o,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({catOperator:e})}})))}render(){const{attributes:e,name:t}=this.props;return e.isPreview?p.a:Object(r.createElement)("div",{className:"wc-block-product-best-sellers"},this.getInspectorControls(),Object(r.createElement)(a.Disabled,null,Object(r.createElement)(d.a,{block:t,attributes:e})))}}var w=O,j=c(75);Object(s.registerBlockType)("woocommerce/product-best-sellers",{title:Object(n.__)("Best Selling Products","woocommerce"),icon:{src:Object(r.createElement)(l.a,{icon:i.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of your all-time best selling products.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{...j.a},transforms:{from:[{type:"block",blocks:Object(o.without)(j.b,"woocommerce/product-best-sellers"),transform:e=>Object(s.createBlock)("woocommerce/product-best-sellers",e)}]},edit:e=>Object(r.createElement)(w,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:i,price:s,rating:a,title:u}=c;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:l?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:l,onChange:()=>t({...c,image:!l})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:s?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,price:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:a?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,rating:!a})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:i?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,button:!i})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:i,alignButtons:s,minColumns:a=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,a,u);i({columns:Number.isNaN(t)?"":t})},min:a,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);i({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:s?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:s,onChange:()=>i({alignButtons:!s})}))}},64:function(e,t,c){"use strict";var r=c(6),n=c.n(r),o=c(0),l=c(1),i=c(34),s=c(96),a=c(3),u=c(10),b=c(26),d=c(28),g=Object(u.createHigherOrderComponent)(e=>class extends o.Component{constructor(){super(...arguments),this.state={error:null,loading:!1,categories:[]},this.loadCategories=this.loadCategories.bind(this)}componentDidMount(){this.loadCategories()}loadCategories(){this.setState({loading:!0}),Object(b.c)().then(e=>{this.setState({categories:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(d.a)(e);this.setState({categories:[],loading:!1,error:t})})}render(){const{error:t,loading:c,categories:r}=this.state;return Object(o.createElement)(e,n()({},this.props,{error:t,isLoading:c,categories:r}))}},"withCategories"),m=c(33),h=c(4),p=c.n(h);c(100);const E=e=>{let{categories:t,error:c,isLoading:r,onChange:u,onOperatorChange:b,operator:d,selected:g,isCompact:h,isSingle:E,showReviewCount:O}=e;const w={clear:Object(l.__)("Clear all product categories","woocommerce"),list:Object(l.__)("Product Categories","woocommerce"),noItems:Object(l.__)("Your store doesn't have any product categories.","woocommerce"),search:Object(l.__)("Search for product categories","woocommerce"),selected:e=>Object(l.sprintf)(
6
  /* translators: %d is the count of selected categories. */
7
  Object(l._n)("%d category selected","%d categories selected",e,"woocommerce"),e),updated:Object(l.__)("Category search results updated.","woocommerce")};return c?Object(o.createElement)(m.a,{error:c}):Object(o.createElement)(o.Fragment,null,Object(o.createElement)(s.a,{className:"woocommerce-product-categories",list:t,isLoading:r,selected:g.map(e=>t.find(t=>t.id===e)).filter(Boolean),onChange:u,renderItem:e=>{const{item:t,search:c,depth:r=0}=e,s=t.breadcrumbs.length?`${t.breadcrumbs.join(", ")}, ${t.name}`:t.name,a=O?Object(l.sprintf)(
8
  /* translators: %1$s is the item name, %2$d is the count of reviews for the item. */
2
  /* Translators: %s search term */
3
  noResults:Object(o.__)("No results for %s","woocommerce"),search:Object(o.__)("Search for items","woocommerce"),selected:e=>Object(o.sprintf)(
4
  /* translators: Number of items selected from list. */
5
+ Object(o._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(o.__)("Search results updated.","woocommerce")},i=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(n.groupBy)(e,"parent"),r=Object(n.keyBy)(t,"id"),o=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},i=e=>e.map(e=>{const t=c[e.id];return o.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?i(t):[]}}),s=i(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;o.includes(t)||s.push(...i(c||[]))}),s},s=(e,t,c)=>{if(!t)return c?i(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),n=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?i(n,e):n},a=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return o})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return i})),c.d(t,"n",(function(){return s})),c.d(t,"j",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return b})),c.d(t,"g",(function(){return d})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return h})),c.d(t,"h",(function(){return p})),c.d(t,"a",(function(){return E})),c.d(t,"i",(function(){return O})),c.d(t,"b",(function(){return w}));var r,n=c(2);const o=Object(n.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=o.pluginUrl+"images/",i=o.pluginUrl+"build/",s=o.buildPhase,a=null===(r=n.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=n.STORE_PAGES.checkout.id,b=n.STORE_PAGES.checkout.permalink,d=n.STORE_PAGES.privacy.permalink,g=(n.STORE_PAGES.privacy.title,n.STORE_PAGES.terms.permalink),m=(n.STORE_PAGES.terms.title,n.STORE_PAGES.cart.id),h=n.STORE_PAGES.cart.permalink,p=(n.STORE_PAGES.myaccount.permalink?n.STORE_PAGES.myaccount.permalink:Object(n.getSetting)("wpLoginUrl","/wp-login.php"),Object(n.getSetting)("shippingCountries",{})),E=Object(n.getSetting)("allowedCountries",{}),O=Object(n.getSetting)("shippingStates",{}),w=Object(n.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return b})),c.d(t,"i",(function(){return d})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return h})),c.d(t,"g",(function(){return p})),c.d(t,"a",(function(){return E}));var r=c(16),n=c(15),o=c.n(n),l=c(7),i=c(2),s=c(24);const a=e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const i=(e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const o=s.o.productCount>100,l={per_page:o?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},i=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...n})];return o&&t.length&&i.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),i})({selected:t,search:c,queryArgs:n});return Promise.all(i.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>o()({path:"/wc/store/v1/products/"+e}),b=()=>o()({path:"wc/store/v1/products/attributes"}),d=e=>o()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const n=(e=>{let{selected:t=[],search:c}=e;const n=Object(i.getSetting)("limitTags",!1),o=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:n?100:0,orderby:n?"count":"name",order:n?"desc":"asc",search:c})];return n&&t.length&&o.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),o})({selected:t,search:c});return Promise.all(n.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},m=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),h=e=>o()({path:"wc/store/v1/products/categories/"+e}),p=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),E=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return o})),c.d(t,"b",(function(){return l}));var r=c(1),n=c(14);const o=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(n.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):t:Object(n.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return i}));var r=c(6),n=c.n(r),o=c(0),l=c(21);const i=e=>{let{countLabel:t,className:c,depth:r=0,controlId:i="",item:s,isSelected:a,isSingle:u,onSelect:b,search:d="",...g}=e;const m=null!=t&&void 0!==s.count&&null!==s.count,h=[c,"woocommerce-search-list__item"];h.push("depth-"+r),u&&h.push("is-radio-button"),m&&h.push("has-count");const p=s.breadcrumbs&&s.breadcrumbs.length,E=g.name||"search-list-item-"+i,O=`${E}-${s.id}`;return Object(o.createElement)("label",{htmlFor:O,className:h.join(" ")},u?Object(o.createElement)("input",n()({type:"radio",id:O,name:E,value:s.value,onChange:b(s),checked:a,className:"woocommerce-search-list__item-input"},g)):Object(o.createElement)("input",n()({type:"checkbox",id:O,name:E,value:s.value,onChange:b(s),checked:a,className:"woocommerce-search-list__item-input"},g)),Object(o.createElement)("span",{className:"woocommerce-search-list__item-label"},p?Object(o.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(s.breadcrumbs)):null,Object(o.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(s.name,d))),!!m&&Object(o.createElement)("span",{className:"woocommerce-search-list__item-count"},t||s.count))};t.b=i},362:function(e,t,c){e.exports=c(496)},496:function(e,t,c){"use strict";c.r(t);var r=c(0),n=c(1),o=c(7),l=c(110),i=c(519),s=c(13),a=c(3),u=c(5),b=c(53),d=c.n(b),g=c(60),m=c(61),h=c(64),p=c(137),E=c(2);class O extends r.Component{getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{categories:c,catOperator:o,columns:l,contentVisibility:i,rows:s,alignButtons:b}=e;return Object(r.createElement)(u.InspectorControls,{key:"inspector"},Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(m.a,{columns:l,rows:s,alignButtons:b,setAttributes:t,minColumns:Object(E.getSetting)("min_columns",1),maxColumns:Object(E.getSetting)("max_columns",6),minRows:Object(E.getSetting)("min_rows",1),maxRows:Object(E.getSetting)("max_rows",6)})),Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{settings:i,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Filter by Product Category","woocommerce"),initialOpen:!1},Object(r.createElement)(h.a,{selected:c,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({categories:c})},operator:o,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({catOperator:e})}})))}render(){const{attributes:e,name:t}=this.props;return e.isPreview?p.a:Object(r.createElement)("div",{className:"wc-block-product-best-sellers"},this.getInspectorControls(),Object(r.createElement)(a.Disabled,null,Object(r.createElement)(d.a,{block:t,attributes:e})))}}var w=O,j=c(75);Object(s.registerBlockType)("woocommerce/product-best-sellers",{title:Object(n.__)("Best Selling Products","woocommerce"),icon:{src:Object(r.createElement)(l.a,{icon:i.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of your all-time best selling products.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{...j.a},transforms:{from:[{type:"block",blocks:Object(o.without)(j.b,"woocommerce/product-best-sellers"),transform:e=>Object(s.createBlock)("woocommerce/product-best-sellers",e)}]},edit:e=>Object(r.createElement)(w,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:i,price:s,rating:a,title:u}=c,b=!1!==l;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:b?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:b,onChange:()=>t({...c,image:!b})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:s?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,price:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:a?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,rating:!a})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:i?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,button:!i})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:i,alignButtons:s,minColumns:a=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,a,u);i({columns:Number.isNaN(t)?"":t})},min:a,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);i({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:s?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:s,onChange:()=>i({alignButtons:!s})}))}},64:function(e,t,c){"use strict";var r=c(6),n=c.n(r),o=c(0),l=c(1),i=c(34),s=c(96),a=c(3),u=c(10),b=c(26),d=c(28),g=Object(u.createHigherOrderComponent)(e=>class extends o.Component{constructor(){super(...arguments),this.state={error:null,loading:!1,categories:[]},this.loadCategories=this.loadCategories.bind(this)}componentDidMount(){this.loadCategories()}loadCategories(){this.setState({loading:!0}),Object(b.c)().then(e=>{this.setState({categories:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(d.a)(e);this.setState({categories:[],loading:!1,error:t})})}render(){const{error:t,loading:c,categories:r}=this.state;return Object(o.createElement)(e,n()({},this.props,{error:t,isLoading:c,categories:r}))}},"withCategories"),m=c(33),h=c(4),p=c.n(h);c(100);const E=e=>{let{categories:t,error:c,isLoading:r,onChange:u,onOperatorChange:b,operator:d,selected:g,isCompact:h,isSingle:E,showReviewCount:O}=e;const w={clear:Object(l.__)("Clear all product categories","woocommerce"),list:Object(l.__)("Product Categories","woocommerce"),noItems:Object(l.__)("Your store doesn't have any product categories.","woocommerce"),search:Object(l.__)("Search for product categories","woocommerce"),selected:e=>Object(l.sprintf)(
6
  /* translators: %d is the count of selected categories. */
7
  Object(l._n)("%d category selected","%d categories selected",e,"woocommerce"),e),updated:Object(l.__)("Category search results updated.","woocommerce")};return c?Object(o.createElement)(m.a,{error:c}):Object(o.createElement)(o.Fragment,null,Object(o.createElement)(s.a,{className:"woocommerce-product-categories",list:t,isLoading:r,selected:g.map(e=>t.find(t=>t.id===e)).filter(Boolean),onChange:u,renderItem:e=>{const{item:t,search:c,depth:r=0}=e,s=t.breadcrumbs.length?`${t.breadcrumbs.join(", ")}, ${t.name}`:t.name,a=O?Object(l.sprintf)(
8
  /* translators: %1$s is the item name, %2$d is the count of reviews for the item. */
packages/woocommerce-blocks/build/product-category.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => '564f97a3bab4d220aaede37bf276d5a5');
1
+ <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => '4745a5c6701383f5e7ffefccf8da2f54');
packages/woocommerce-blocks/build/product-category.js CHANGED
@@ -2,7 +2,7 @@ this.wc=this.wc||{},this.wc.blocks=this.wc.blocks||{},this.wc.blocks["product-ca
2
  /* Translators: %s search term */
3
  noResults:Object(n.__)("No results for %s","woocommerce"),search:Object(n.__)("Search for items","woocommerce"),selected:e=>Object(n.sprintf)(
4
  /* translators: Number of items selected from list. */
5
- Object(n._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(n.__)("Search results updated.","woocommerce")},s=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(o.groupBy)(e,"parent"),r=Object(o.keyBy)(t,"id"),n=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},s=e=>e.map(e=>{const t=c[e.id];return n.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?s(t):[]}}),i=s(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;n.includes(t)||i.push(...s(c||[]))}),i},i=(e,t,c)=>{if(!t)return c?s(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),o=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?s(o,e):o},a=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return n})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return s})),c.d(t,"n",(function(){return i})),c.d(t,"j",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return b})),c.d(t,"g",(function(){return d})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"h",(function(){return h})),c.d(t,"a",(function(){return E})),c.d(t,"i",(function(){return O})),c.d(t,"b",(function(){return w}));var r,o=c(2);const n=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=n.pluginUrl+"images/",s=n.pluginUrl+"build/",i=n.buildPhase,a=null===(r=o.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=o.STORE_PAGES.checkout.id,b=o.STORE_PAGES.checkout.permalink,d=o.STORE_PAGES.privacy.permalink,g=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),m=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id),p=o.STORE_PAGES.cart.permalink,h=(o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),Object(o.getSetting)("shippingCountries",{})),E=Object(o.getSetting)("allowedCountries",{}),O=Object(o.getSetting)("shippingStates",{}),w=Object(o.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return b})),c.d(t,"i",(function(){return d})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"g",(function(){return h})),c.d(t,"a",(function(){return E}));var r=c(16),o=c(15),n=c.n(o),l=c(7),s=c(2),i=c(24);const a=e=>{let{selected:t=[],search:c="",queryArgs:o={}}=e;const s=(e=>{let{selected:t=[],search:c="",queryArgs:o={}}=e;const n=i.o.productCount>100,l={per_page:n?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},s=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...o})];return n&&t.length&&s.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),s})({selected:t,search:c,queryArgs:o});return Promise.all(s.map(e=>n()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>n()({path:"/wc/store/v1/products/"+e}),b=()=>n()({path:"wc/store/v1/products/attributes"}),d=e=>n()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const o=(e=>{let{selected:t=[],search:c}=e;const o=Object(s.getSetting)("limitTags",!1),n=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:o?100:0,orderby:o?"count":"name",order:o?"desc":"asc",search:c})];return o&&t.length&&n.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),n})({selected:t,search:c});return Promise.all(o.map(e=>n()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},m=e=>n()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),p=e=>n()({path:"wc/store/v1/products/categories/"+e}),h=e=>n()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),E=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return n})),c.d(t,"b",(function(){return l}));var r=c(1),o=c(14);const n=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(o.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),o=c(1),n=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(o.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(n.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(o.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(n.escapeHTML)(t))):t:Object(o.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return s}));var r=c(6),o=c.n(r),n=c(0),l=c(21);const s=e=>{let{countLabel:t,className:c,depth:r=0,controlId:s="",item:i,isSelected:a,isSingle:u,onSelect:b,search:d="",...g}=e;const m=null!=t&&void 0!==i.count&&null!==i.count,p=[c,"woocommerce-search-list__item"];p.push("depth-"+r),u&&p.push("is-radio-button"),m&&p.push("has-count");const h=i.breadcrumbs&&i.breadcrumbs.length,E=g.name||"search-list-item-"+s,O=`${E}-${i.id}`;return Object(n.createElement)("label",{htmlFor:O,className:p.join(" ")},u?Object(n.createElement)("input",o()({type:"radio",id:O,name:E,value:i.value,onChange:b(i),checked:a,className:"woocommerce-search-list__item-input"},g)):Object(n.createElement)("input",o()({type:"checkbox",id:O,name:E,value:i.value,onChange:b(i),checked:a,className:"woocommerce-search-list__item-input"},g)),Object(n.createElement)("span",{className:"woocommerce-search-list__item-label"},h?Object(n.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(i.breadcrumbs)):null,Object(n.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(i.name,d))),!!m&&Object(n.createElement)("span",{className:"woocommerce-search-list__item-count"},t||i.count))};t.b=s},363:function(e,t,c){e.exports=c(497)},364:function(e,t){},497:function(e,t,c){"use strict";c.r(t);var r=c(0),o=c(1),n=c(13),l=c(7),s=c(110),i=c(520),a=(c(364),c(23)),u=c.n(a),b=c(5),d=c(53),g=c.n(d),m=c(3),p=c(60),h=c(61),E=c(64),O=c(97),w=c(83),j=c(137),f=c(2);const _=()=>Object(r.createElement)(m.Placeholder,{icon:Object(r.createElement)(s.a,{icon:i.a}),label:Object(o.__)("Products by Category","woocommerce"),className:"wc-block-products-grid wc-block-products-category"},Object(o.__)("No products were found that matched your selection.","woocommerce"));class y extends r.Component{constructor(){super(...arguments),u()(this,"state",{changedAttributes:{},isEditing:!1}),u()(this,"startEditing",()=>{this.setState({isEditing:!0,changedAttributes:{}})}),u()(this,"stopEditing",()=>{this.setState({isEditing:!1,changedAttributes:{}})}),u()(this,"setChangedAttributes",e=>{this.setState(t=>({changedAttributes:{...t.changedAttributes,...e}}))}),u()(this,"save",()=>{const{changedAttributes:e}=this.state,{setAttributes:t}=this.props;t(e),this.stopEditing()})}componentDidMount(){const{attributes:e}=this.props;e.categories.length||this.setState({isEditing:!0})}getInspectorControls(){var e=this;const{attributes:t,setAttributes:c}=this.props,{isEditing:n}=this.state,{columns:l,catOperator:s,contentVisibility:i,orderby:a,rows:u,alignButtons:d,stockStatus:g}=t;return Object(r.createElement)(b.InspectorControls,{key:"inspector"},Object(r.createElement)(m.PanelBody,{title:Object(o.__)("Product Category","woocommerce"),initialOpen:!t.categories.length&&!n},Object(r.createElement)(E.a,{selected:t.categories,onChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const r=t.map(e=>{let{id:t}=e;return t}),o={categories:r};c(o),e.setChangedAttributes(o)},operator:s,onOperatorChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";const r={catOperator:t};c(r),e.setChangedAttributes(r)},isCompact:!0})),Object(r.createElement)(m.PanelBody,{title:Object(o.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(h.a,{columns:l,rows:u,alignButtons:d,setAttributes:c,minColumns:Object(f.getSetting)("min_columns",1),maxColumns:Object(f.getSetting)("max_columns",6),minRows:Object(f.getSetting)("min_rows",1),maxRows:Object(f.getSetting)("max_rows",6)})),Object(r.createElement)(m.PanelBody,{title:Object(o.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(p.a,{settings:i,onChange:e=>c({contentVisibility:e})})),Object(r.createElement)(m.PanelBody,{title:Object(o.__)("Order By","woocommerce"),initialOpen:!1},Object(r.createElement)(O.a,{setAttributes:c,value:a})),Object(r.createElement)(m.PanelBody,{title:Object(o.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(w.a,{setAttributes:c,value:g})))}renderEditMode(){var e=this;const{attributes:t,debouncedSpeak:c}=this.props,{changedAttributes:n}=this.state,l={...t,...n};return Object(r.createElement)(m.Placeholder,{icon:Object(r.createElement)(s.a,{icon:i.a}),label:Object(o.__)("Products by Category","woocommerce"),className:"wc-block-products-grid wc-block-products-category"},Object(o.__)("Display a grid of products from your selected categories.","woocommerce"),Object(r.createElement)("div",{className:"wc-block-products-category__selection"},Object(r.createElement)(E.a,{selected:l.categories,onChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=t.map(e=>{let{id:t}=e;return t});e.setChangedAttributes({categories:c})},operator:l.catOperator,onOperatorChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return e.setChangedAttributes({catOperator:t})}}),Object(r.createElement)(m.Button,{isPrimary:!0,onClick:()=>{this.save(),c(Object(o.__)("Showing Products by Category block preview.","woocommerce"))}},Object(o.__)("Done","woocommerce")),Object(r.createElement)(m.Button,{className:"wc-block-products-category__cancel-button",isTertiary:!0,onClick:()=>{this.stopEditing(),c(Object(o.__)("Showing Products by Category block preview.","woocommerce"))}},Object(o.__)("Cancel","woocommerce"))))}renderViewMode(){const{attributes:e,name:t}=this.props,c=e.categories.length;return Object(r.createElement)(m.Disabled,null,c?Object(r.createElement)(g.a,{block:t,attributes:e,EmptyResponsePlaceholder:_}):Object(o.__)("Select at least one category to display its products.","woocommerce"))}render(){const{isEditing:e}=this.state,{attributes:t}=this.props;return t.isPreview?j.a:Object(r.createElement)(r.Fragment,null,Object(r.createElement)(b.BlockControls,null,Object(r.createElement)(m.ToolbarGroup,{controls:[{icon:"edit",title:Object(o.__)("Edit selected categories","woocommerce"),onClick:()=>e?this.stopEditing():this.startEditing(),isActive:e}]})),this.getInspectorControls(),e?this.renderEditMode():this.renderViewMode())}}var k=Object(m.withSpokenMessages)(y),v=c(75);Object(n.registerBlockType)("woocommerce/product-category",{title:Object(o.__)("Products by Category","woocommerce"),icon:{src:Object(r.createElement)(s.a,{icon:i.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(o.__)("WooCommerce","woocommerce")],description:Object(o.__)("Display a grid of products from your selected categories.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{...v.a,editMode:{type:"boolean",default:!0},orderby:{type:"string",default:"date"}},transforms:{from:[{type:"block",blocks:Object(l.without)(v.b,"woocommerce/product-category"),transform:e=>Object(n.createBlock)("woocommerce/product-category",{...e,editMode:!1})}]},edit:e=>Object(r.createElement)(k,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),o=c(1),n=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:s,price:i,rating:a,title:u}=c;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(n.ToggleControl,{label:Object(o.__)("Product image","woocommerce"),help:l?Object(o.__)("Product image is visible.","woocommerce"):Object(o.__)("Product image is hidden.","woocommerce"),checked:l,onChange:()=>t({...c,image:!l})}),Object(r.createElement)(n.ToggleControl,{label:Object(o.__)("Product title","woocommerce"),help:u?Object(o.__)("Product title is visible.","woocommerce"):Object(o.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(n.ToggleControl,{label:Object(o.__)("Product price","woocommerce"),help:i?Object(o.__)("Product price is visible.","woocommerce"):Object(o.__)("Product price is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,price:!i})}),Object(r.createElement)(n.ToggleControl,{label:Object(o.__)("Product rating","woocommerce"),help:a?Object(o.__)("Product rating is visible.","woocommerce"):Object(o.__)("Product rating is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,rating:!a})}),Object(r.createElement)(n.ToggleControl,{label:Object(o.__)("Add to Cart button","woocommerce"),help:s?Object(o.__)("Add to Cart button is visible.","woocommerce"):Object(o.__)("Add to Cart button is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,button:!s})}))}},61:function(e,t,c){"use strict";var r=c(0),o=c(1),n=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:s,alignButtons:i,minColumns:a=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(o.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(n.clamp)(e,a,u);s({columns:Number.isNaN(t)?"":t})},min:a,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(o.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(n.clamp)(e,b,d);s({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(o.__)("Align Last Block","woocommerce"),help:i?Object(o.__)("The last inner block will be aligned vertically.","woocommerce"):Object(o.__)("The last inner block will follow other content.","woocommerce"),checked:i,onChange:()=>s({alignButtons:!i})}))}},64:function(e,t,c){"use strict";var r=c(6),o=c.n(r),n=c(0),l=c(1),s=c(34),i=c(96),a=c(3),u=c(10),b=c(26),d=c(28),g=Object(u.createHigherOrderComponent)(e=>class extends n.Component{constructor(){super(...arguments),this.state={error:null,loading:!1,categories:[]},this.loadCategories=this.loadCategories.bind(this)}componentDidMount(){this.loadCategories()}loadCategories(){this.setState({loading:!0}),Object(b.c)().then(e=>{this.setState({categories:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(d.a)(e);this.setState({categories:[],loading:!1,error:t})})}render(){const{error:t,loading:c,categories:r}=this.state;return Object(n.createElement)(e,o()({},this.props,{error:t,isLoading:c,categories:r}))}},"withCategories"),m=c(33),p=c(4),h=c.n(p);c(100);const E=e=>{let{categories:t,error:c,isLoading:r,onChange:u,onOperatorChange:b,operator:d,selected:g,isCompact:p,isSingle:E,showReviewCount:O}=e;const w={clear:Object(l.__)("Clear all product categories","woocommerce"),list:Object(l.__)("Product Categories","woocommerce"),noItems:Object(l.__)("Your store doesn't have any product categories.","woocommerce"),search:Object(l.__)("Search for product categories","woocommerce"),selected:e=>Object(l.sprintf)(
6
  /* translators: %d is the count of selected categories. */
7
  Object(l._n)("%d category selected","%d categories selected",e,"woocommerce"),e),updated:Object(l.__)("Category search results updated.","woocommerce")};return c?Object(n.createElement)(m.a,{error:c}):Object(n.createElement)(n.Fragment,null,Object(n.createElement)(i.a,{className:"woocommerce-product-categories",list:t,isLoading:r,selected:g.map(e=>t.find(t=>t.id===e)).filter(Boolean),onChange:u,renderItem:e=>{const{item:t,search:c,depth:r=0}=e,i=t.breadcrumbs.length?`${t.breadcrumbs.join(", ")}, ${t.name}`:t.name,a=O?Object(l.sprintf)(
8
  /* translators: %1$s is the item name, %2$d is the count of reviews for the item. */
2
  /* Translators: %s search term */
3
  noResults:Object(n.__)("No results for %s","woocommerce"),search:Object(n.__)("Search for items","woocommerce"),selected:e=>Object(n.sprintf)(
4
  /* translators: Number of items selected from list. */
5
+ Object(n._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(n.__)("Search results updated.","woocommerce")},s=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(o.groupBy)(e,"parent"),r=Object(o.keyBy)(t,"id"),n=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},s=e=>e.map(e=>{const t=c[e.id];return n.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?s(t):[]}}),i=s(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;n.includes(t)||i.push(...s(c||[]))}),i},i=(e,t,c)=>{if(!t)return c?s(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),o=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?s(o,e):o},a=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return n})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return s})),c.d(t,"n",(function(){return i})),c.d(t,"j",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return b})),c.d(t,"g",(function(){return d})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"h",(function(){return h})),c.d(t,"a",(function(){return E})),c.d(t,"i",(function(){return O})),c.d(t,"b",(function(){return w}));var r,o=c(2);const n=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=n.pluginUrl+"images/",s=n.pluginUrl+"build/",i=n.buildPhase,a=null===(r=o.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=o.STORE_PAGES.checkout.id,b=o.STORE_PAGES.checkout.permalink,d=o.STORE_PAGES.privacy.permalink,g=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),m=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id),p=o.STORE_PAGES.cart.permalink,h=(o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),Object(o.getSetting)("shippingCountries",{})),E=Object(o.getSetting)("allowedCountries",{}),O=Object(o.getSetting)("shippingStates",{}),w=Object(o.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return b})),c.d(t,"i",(function(){return d})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"g",(function(){return h})),c.d(t,"a",(function(){return E}));var r=c(16),o=c(15),n=c.n(o),l=c(7),s=c(2),i=c(24);const a=e=>{let{selected:t=[],search:c="",queryArgs:o={}}=e;const s=(e=>{let{selected:t=[],search:c="",queryArgs:o={}}=e;const n=i.o.productCount>100,l={per_page:n?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},s=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...o})];return n&&t.length&&s.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),s})({selected:t,search:c,queryArgs:o});return Promise.all(s.map(e=>n()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>n()({path:"/wc/store/v1/products/"+e}),b=()=>n()({path:"wc/store/v1/products/attributes"}),d=e=>n()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const o=(e=>{let{selected:t=[],search:c}=e;const o=Object(s.getSetting)("limitTags",!1),n=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:o?100:0,orderby:o?"count":"name",order:o?"desc":"asc",search:c})];return o&&t.length&&n.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),n})({selected:t,search:c});return Promise.all(o.map(e=>n()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},m=e=>n()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),p=e=>n()({path:"wc/store/v1/products/categories/"+e}),h=e=>n()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),E=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return n})),c.d(t,"b",(function(){return l}));var r=c(1),o=c(14);const n=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(o.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),o=c(1),n=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(o.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(n.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(o.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(n.escapeHTML)(t))):t:Object(o.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return s}));var r=c(6),o=c.n(r),n=c(0),l=c(21);const s=e=>{let{countLabel:t,className:c,depth:r=0,controlId:s="",item:i,isSelected:a,isSingle:u,onSelect:b,search:d="",...g}=e;const m=null!=t&&void 0!==i.count&&null!==i.count,p=[c,"woocommerce-search-list__item"];p.push("depth-"+r),u&&p.push("is-radio-button"),m&&p.push("has-count");const h=i.breadcrumbs&&i.breadcrumbs.length,E=g.name||"search-list-item-"+s,O=`${E}-${i.id}`;return Object(n.createElement)("label",{htmlFor:O,className:p.join(" ")},u?Object(n.createElement)("input",o()({type:"radio",id:O,name:E,value:i.value,onChange:b(i),checked:a,className:"woocommerce-search-list__item-input"},g)):Object(n.createElement)("input",o()({type:"checkbox",id:O,name:E,value:i.value,onChange:b(i),checked:a,className:"woocommerce-search-list__item-input"},g)),Object(n.createElement)("span",{className:"woocommerce-search-list__item-label"},h?Object(n.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(i.breadcrumbs)):null,Object(n.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(i.name,d))),!!m&&Object(n.createElement)("span",{className:"woocommerce-search-list__item-count"},t||i.count))};t.b=s},363:function(e,t,c){e.exports=c(497)},364:function(e,t){},497:function(e,t,c){"use strict";c.r(t);var r=c(0),o=c(1),n=c(13),l=c(7),s=c(110),i=c(520),a=(c(364),c(23)),u=c.n(a),b=c(5),d=c(53),g=c.n(d),m=c(3),p=c(60),h=c(61),E=c(64),O=c(97),w=c(83),j=c(137),f=c(2);const _=()=>Object(r.createElement)(m.Placeholder,{icon:Object(r.createElement)(s.a,{icon:i.a}),label:Object(o.__)("Products by Category","woocommerce"),className:"wc-block-products-grid wc-block-products-category"},Object(o.__)("No products were found that matched your selection.","woocommerce"));class y extends r.Component{constructor(){super(...arguments),u()(this,"state",{changedAttributes:{},isEditing:!1}),u()(this,"startEditing",()=>{this.setState({isEditing:!0,changedAttributes:{}})}),u()(this,"stopEditing",()=>{this.setState({isEditing:!1,changedAttributes:{}})}),u()(this,"setChangedAttributes",e=>{this.setState(t=>({changedAttributes:{...t.changedAttributes,...e}}))}),u()(this,"save",()=>{const{changedAttributes:e}=this.state,{setAttributes:t}=this.props;t(e),this.stopEditing()})}componentDidMount(){const{attributes:e}=this.props;e.categories.length||this.setState({isEditing:!0})}getInspectorControls(){var e=this;const{attributes:t,setAttributes:c}=this.props,{isEditing:n}=this.state,{columns:l,catOperator:s,contentVisibility:i,orderby:a,rows:u,alignButtons:d,stockStatus:g}=t;return Object(r.createElement)(b.InspectorControls,{key:"inspector"},Object(r.createElement)(m.PanelBody,{title:Object(o.__)("Product Category","woocommerce"),initialOpen:!t.categories.length&&!n},Object(r.createElement)(E.a,{selected:t.categories,onChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const r=t.map(e=>{let{id:t}=e;return t}),o={categories:r};c(o),e.setChangedAttributes(o)},operator:s,onOperatorChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";const r={catOperator:t};c(r),e.setChangedAttributes(r)},isCompact:!0})),Object(r.createElement)(m.PanelBody,{title:Object(o.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(h.a,{columns:l,rows:u,alignButtons:d,setAttributes:c,minColumns:Object(f.getSetting)("min_columns",1),maxColumns:Object(f.getSetting)("max_columns",6),minRows:Object(f.getSetting)("min_rows",1),maxRows:Object(f.getSetting)("max_rows",6)})),Object(r.createElement)(m.PanelBody,{title:Object(o.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(p.a,{settings:i,onChange:e=>c({contentVisibility:e})})),Object(r.createElement)(m.PanelBody,{title:Object(o.__)("Order By","woocommerce"),initialOpen:!1},Object(r.createElement)(O.a,{setAttributes:c,value:a})),Object(r.createElement)(m.PanelBody,{title:Object(o.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(w.a,{setAttributes:c,value:g})))}renderEditMode(){var e=this;const{attributes:t,debouncedSpeak:c}=this.props,{changedAttributes:n}=this.state,l={...t,...n};return Object(r.createElement)(m.Placeholder,{icon:Object(r.createElement)(s.a,{icon:i.a}),label:Object(o.__)("Products by Category","woocommerce"),className:"wc-block-products-grid wc-block-products-category"},Object(o.__)("Display a grid of products from your selected categories.","woocommerce"),Object(r.createElement)("div",{className:"wc-block-products-category__selection"},Object(r.createElement)(E.a,{selected:l.categories,onChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=t.map(e=>{let{id:t}=e;return t});e.setChangedAttributes({categories:c})},operator:l.catOperator,onOperatorChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return e.setChangedAttributes({catOperator:t})}}),Object(r.createElement)(m.Button,{isPrimary:!0,onClick:()=>{this.save(),c(Object(o.__)("Showing Products by Category block preview.","woocommerce"))}},Object(o.__)("Done","woocommerce")),Object(r.createElement)(m.Button,{className:"wc-block-products-category__cancel-button",isTertiary:!0,onClick:()=>{this.stopEditing(),c(Object(o.__)("Showing Products by Category block preview.","woocommerce"))}},Object(o.__)("Cancel","woocommerce"))))}renderViewMode(){const{attributes:e,name:t}=this.props,c=e.categories.length;return Object(r.createElement)(m.Disabled,null,c?Object(r.createElement)(g.a,{block:t,attributes:e,EmptyResponsePlaceholder:_}):Object(o.__)("Select at least one category to display its products.","woocommerce"))}render(){const{isEditing:e}=this.state,{attributes:t}=this.props;return t.isPreview?j.a:Object(r.createElement)(r.Fragment,null,Object(r.createElement)(b.BlockControls,null,Object(r.createElement)(m.ToolbarGroup,{controls:[{icon:"edit",title:Object(o.__)("Edit selected categories","woocommerce"),onClick:()=>e?this.stopEditing():this.startEditing(),isActive:e}]})),this.getInspectorControls(),e?this.renderEditMode():this.renderViewMode())}}var k=Object(m.withSpokenMessages)(y),v=c(75);Object(n.registerBlockType)("woocommerce/product-category",{title:Object(o.__)("Products by Category","woocommerce"),icon:{src:Object(r.createElement)(s.a,{icon:i.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(o.__)("WooCommerce","woocommerce")],description:Object(o.__)("Display a grid of products from your selected categories.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{...v.a,editMode:{type:"boolean",default:!0},orderby:{type:"string",default:"date"}},transforms:{from:[{type:"block",blocks:Object(l.without)(v.b,"woocommerce/product-category"),transform:e=>Object(n.createBlock)("woocommerce/product-category",{...e,editMode:!1})}]},edit:e=>Object(r.createElement)(k,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),o=c(1),n=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:s,price:i,rating:a,title:u}=c,b=!1!==l;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(n.ToggleControl,{label:Object(o.__)("Product image","woocommerce"),help:b?Object(o.__)("Product image is visible.","woocommerce"):Object(o.__)("Product image is hidden.","woocommerce"),checked:b,onChange:()=>t({...c,image:!b})}),Object(r.createElement)(n.ToggleControl,{label:Object(o.__)("Product title","woocommerce"),help:u?Object(o.__)("Product title is visible.","woocommerce"):Object(o.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(n.ToggleControl,{label:Object(o.__)("Product price","woocommerce"),help:i?Object(o.__)("Product price is visible.","woocommerce"):Object(o.__)("Product price is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,price:!i})}),Object(r.createElement)(n.ToggleControl,{label:Object(o.__)("Product rating","woocommerce"),help:a?Object(o.__)("Product rating is visible.","woocommerce"):Object(o.__)("Product rating is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,rating:!a})}),Object(r.createElement)(n.ToggleControl,{label:Object(o.__)("Add to Cart button","woocommerce"),help:s?Object(o.__)("Add to Cart button is visible.","woocommerce"):Object(o.__)("Add to Cart button is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,button:!s})}))}},61:function(e,t,c){"use strict";var r=c(0),o=c(1),n=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:s,alignButtons:i,minColumns:a=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(o.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(n.clamp)(e,a,u);s({columns:Number.isNaN(t)?"":t})},min:a,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(o.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(n.clamp)(e,b,d);s({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(o.__)("Align Last Block","woocommerce"),help:i?Object(o.__)("The last inner block will be aligned vertically.","woocommerce"):Object(o.__)("The last inner block will follow other content.","woocommerce"),checked:i,onChange:()=>s({alignButtons:!i})}))}},64:function(e,t,c){"use strict";var r=c(6),o=c.n(r),n=c(0),l=c(1),s=c(34),i=c(96),a=c(3),u=c(10),b=c(26),d=c(28),g=Object(u.createHigherOrderComponent)(e=>class extends n.Component{constructor(){super(...arguments),this.state={error:null,loading:!1,categories:[]},this.loadCategories=this.loadCategories.bind(this)}componentDidMount(){this.loadCategories()}loadCategories(){this.setState({loading:!0}),Object(b.c)().then(e=>{this.setState({categories:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(d.a)(e);this.setState({categories:[],loading:!1,error:t})})}render(){const{error:t,loading:c,categories:r}=this.state;return Object(n.createElement)(e,o()({},this.props,{error:t,isLoading:c,categories:r}))}},"withCategories"),m=c(33),p=c(4),h=c.n(p);c(100);const E=e=>{let{categories:t,error:c,isLoading:r,onChange:u,onOperatorChange:b,operator:d,selected:g,isCompact:p,isSingle:E,showReviewCount:O}=e;const w={clear:Object(l.__)("Clear all product categories","woocommerce"),list:Object(l.__)("Product Categories","woocommerce"),noItems:Object(l.__)("Your store doesn't have any product categories.","woocommerce"),search:Object(l.__)("Search for product categories","woocommerce"),selected:e=>Object(l.sprintf)(
6
  /* translators: %d is the count of selected categories. */
7
  Object(l._n)("%d category selected","%d categories selected",e,"woocommerce"),e),updated:Object(l.__)("Category search results updated.","woocommerce")};return c?Object(n.createElement)(m.a,{error:c}):Object(n.createElement)(n.Fragment,null,Object(n.createElement)(i.a,{className:"woocommerce-product-categories",list:t,isLoading:r,selected:g.map(e=>t.find(t=>t.id===e)).filter(Boolean),onChange:u,renderItem:e=>{const{item:t,search:c,depth:r=0}=e,i=t.breadcrumbs.length?`${t.breadcrumbs.join(", ")}, ${t.name}`:t.name,a=O?Object(l.sprintf)(
8
  /* translators: %1$s is the item name, %2$d is the count of reviews for the item. */
packages/woocommerce-blocks/build/product-new.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => '1deae3190768edfbf1bc03cc9c335c0c');
1
+ <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => '6a5a12c8dfe253aa49734096e482f9e7');
packages/woocommerce-blocks/build/product-new.js CHANGED
@@ -2,7 +2,7 @@ this.wc=this.wc||{},this.wc.blocks=this.wc.blocks||{},this.wc.blocks["product-ne
2
  /* Translators: %s search term */
3
  noResults:Object(o.__)("No results for %s","woocommerce"),search:Object(o.__)("Search for items","woocommerce"),selected:e=>Object(o.sprintf)(
4
  /* translators: Number of items selected from list. */
5
- Object(o._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(o.__)("Search results updated.","woocommerce")},i=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(n.groupBy)(e,"parent"),r=Object(n.keyBy)(t,"id"),o=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},i=e=>e.map(e=>{const t=c[e.id];return o.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?i(t):[]}}),s=i(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;o.includes(t)||s.push(...i(c||[]))}),s},s=(e,t,c)=>{if(!t)return c?i(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),n=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?i(n,e):n},a=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return o})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return i})),c.d(t,"n",(function(){return s})),c.d(t,"j",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return b})),c.d(t,"g",(function(){return d})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"h",(function(){return h})),c.d(t,"a",(function(){return E})),c.d(t,"i",(function(){return O})),c.d(t,"b",(function(){return w}));var r,n=c(2);const o=Object(n.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=o.pluginUrl+"images/",i=o.pluginUrl+"build/",s=o.buildPhase,a=null===(r=n.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=n.STORE_PAGES.checkout.id,b=n.STORE_PAGES.checkout.permalink,d=n.STORE_PAGES.privacy.permalink,g=(n.STORE_PAGES.privacy.title,n.STORE_PAGES.terms.permalink),m=(n.STORE_PAGES.terms.title,n.STORE_PAGES.cart.id),p=n.STORE_PAGES.cart.permalink,h=(n.STORE_PAGES.myaccount.permalink?n.STORE_PAGES.myaccount.permalink:Object(n.getSetting)("wpLoginUrl","/wp-login.php"),Object(n.getSetting)("shippingCountries",{})),E=Object(n.getSetting)("allowedCountries",{}),O=Object(n.getSetting)("shippingStates",{}),w=Object(n.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return b})),c.d(t,"i",(function(){return d})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"g",(function(){return h})),c.d(t,"a",(function(){return E}));var r=c(16),n=c(15),o=c.n(n),l=c(7),i=c(2),s=c(24);const a=e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const i=(e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const o=s.o.productCount>100,l={per_page:o?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},i=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...n})];return o&&t.length&&i.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),i})({selected:t,search:c,queryArgs:n});return Promise.all(i.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>o()({path:"/wc/store/v1/products/"+e}),b=()=>o()({path:"wc/store/v1/products/attributes"}),d=e=>o()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const n=(e=>{let{selected:t=[],search:c}=e;const n=Object(i.getSetting)("limitTags",!1),o=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:n?100:0,orderby:n?"count":"name",order:n?"desc":"asc",search:c})];return n&&t.length&&o.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),o})({selected:t,search:c});return Promise.all(n.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},m=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),p=e=>o()({path:"wc/store/v1/products/categories/"+e}),h=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),E=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return o})),c.d(t,"b",(function(){return l}));var r=c(1),n=c(14);const o=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(n.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):t:Object(n.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return i}));var r=c(6),n=c.n(r),o=c(0),l=c(21);const i=e=>{let{countLabel:t,className:c,depth:r=0,controlId:i="",item:s,isSelected:a,isSingle:u,onSelect:b,search:d="",...g}=e;const m=null!=t&&void 0!==s.count&&null!==s.count,p=[c,"woocommerce-search-list__item"];p.push("depth-"+r),u&&p.push("is-radio-button"),m&&p.push("has-count");const h=s.breadcrumbs&&s.breadcrumbs.length,E=g.name||"search-list-item-"+i,O=`${E}-${s.id}`;return Object(o.createElement)("label",{htmlFor:O,className:p.join(" ")},u?Object(o.createElement)("input",n()({type:"radio",id:O,name:E,value:s.value,onChange:b(s),checked:a,className:"woocommerce-search-list__item-input"},g)):Object(o.createElement)("input",n()({type:"checkbox",id:O,name:E,value:s.value,onChange:b(s),checked:a,className:"woocommerce-search-list__item-input"},g)),Object(o.createElement)("span",{className:"woocommerce-search-list__item-label"},h?Object(o.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(s.breadcrumbs)):null,Object(o.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(s.name,d))),!!m&&Object(o.createElement)("span",{className:"woocommerce-search-list__item-count"},t||s.count))};t.b=i},368:function(e,t,c){e.exports=c(499)},499:function(e,t,c){"use strict";c.r(t);var r=c(0),n=c(1),o=c(13),l=c(7),i=c(110),s=c(522),a=c(3),u=c(5),b=c(53),d=c.n(b),g=c(60),m=c(61),p=c(64),h=c(83),E=c(137),O=c(2);class w extends r.Component{getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{categories:c,catOperator:o,columns:l,contentVisibility:i,rows:s,alignButtons:b,stockStatus:d}=e;return Object(r.createElement)(u.InspectorControls,{key:"inspector"},Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(m.a,{columns:l,rows:s,alignButtons:b,setAttributes:t,minColumns:Object(O.getSetting)("min_columns",1),maxColumns:Object(O.getSetting)("max_columns",6),minRows:Object(O.getSetting)("min_rows",1),maxRows:Object(O.getSetting)("max_rows",6)})),Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{settings:i,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(h.a,{setAttributes:t,value:d})),Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Filter by Product Category","woocommerce"),initialOpen:!1},Object(r.createElement)(p.a,{selected:c,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({categories:c})},operator:o,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({catOperator:e})}})))}render(){const{attributes:e,name:t}=this.props;return e.isPreview?E.a:Object(r.createElement)(r.Fragment,null,this.getInspectorControls(),Object(r.createElement)(a.Disabled,null,Object(r.createElement)(d.a,{block:t,attributes:e})))}}var j=w,f=c(75);Object(o.registerBlockType)("woocommerce/product-new",{title:Object(n.__)("Newest Products","woocommerce"),icon:{src:Object(r.createElement)(i.a,{icon:s.a,className:"wc-block-editor-components-block-icon wc-block-editor-components-block-icon--sparkles"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of your newest products.","woocommerce"),supports:{align:["wide","full"],html:!1},attributes:{...f.a},example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:Object(l.without)(f.b,"woocommerce/product-new"),transform:e=>Object(o.createBlock)("woocommerce/product-new",e)}]},edit:e=>Object(r.createElement)(j,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:i,price:s,rating:a,title:u}=c;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:l?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:l,onChange:()=>t({...c,image:!l})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:s?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,price:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:a?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,rating:!a})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:i?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,button:!i})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:i,alignButtons:s,minColumns:a=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,a,u);i({columns:Number.isNaN(t)?"":t})},min:a,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);i({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:s?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:s,onChange:()=>i({alignButtons:!s})}))}},64:function(e,t,c){"use strict";var r=c(6),n=c.n(r),o=c(0),l=c(1),i=c(34),s=c(96),a=c(3),u=c(10),b=c(26),d=c(28),g=Object(u.createHigherOrderComponent)(e=>class extends o.Component{constructor(){super(...arguments),this.state={error:null,loading:!1,categories:[]},this.loadCategories=this.loadCategories.bind(this)}componentDidMount(){this.loadCategories()}loadCategories(){this.setState({loading:!0}),Object(b.c)().then(e=>{this.setState({categories:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(d.a)(e);this.setState({categories:[],loading:!1,error:t})})}render(){const{error:t,loading:c,categories:r}=this.state;return Object(o.createElement)(e,n()({},this.props,{error:t,isLoading:c,categories:r}))}},"withCategories"),m=c(33),p=c(4),h=c.n(p);c(100);const E=e=>{let{categories:t,error:c,isLoading:r,onChange:u,onOperatorChange:b,operator:d,selected:g,isCompact:p,isSingle:E,showReviewCount:O}=e;const w={clear:Object(l.__)("Clear all product categories","woocommerce"),list:Object(l.__)("Product Categories","woocommerce"),noItems:Object(l.__)("Your store doesn't have any product categories.","woocommerce"),search:Object(l.__)("Search for product categories","woocommerce"),selected:e=>Object(l.sprintf)(
6
  /* translators: %d is the count of selected categories. */
7
  Object(l._n)("%d category selected","%d categories selected",e,"woocommerce"),e),updated:Object(l.__)("Category search results updated.","woocommerce")};return c?Object(o.createElement)(m.a,{error:c}):Object(o.createElement)(o.Fragment,null,Object(o.createElement)(s.a,{className:"woocommerce-product-categories",list:t,isLoading:r,selected:g.map(e=>t.find(t=>t.id===e)).filter(Boolean),onChange:u,renderItem:e=>{const{item:t,search:c,depth:r=0}=e,s=t.breadcrumbs.length?`${t.breadcrumbs.join(", ")}, ${t.name}`:t.name,a=O?Object(l.sprintf)(
8
  /* translators: %1$s is the item name, %2$d is the count of reviews for the item. */
2
  /* Translators: %s search term */
3
  noResults:Object(o.__)("No results for %s","woocommerce"),search:Object(o.__)("Search for items","woocommerce"),selected:e=>Object(o.sprintf)(
4
  /* translators: Number of items selected from list. */
5
+ Object(o._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(o.__)("Search results updated.","woocommerce")},i=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(n.groupBy)(e,"parent"),r=Object(n.keyBy)(t,"id"),o=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},i=e=>e.map(e=>{const t=c[e.id];return o.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?i(t):[]}}),s=i(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;o.includes(t)||s.push(...i(c||[]))}),s},s=(e,t,c)=>{if(!t)return c?i(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),n=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?i(n,e):n},a=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return o})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return i})),c.d(t,"n",(function(){return s})),c.d(t,"j",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return b})),c.d(t,"g",(function(){return d})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"h",(function(){return h})),c.d(t,"a",(function(){return E})),c.d(t,"i",(function(){return O})),c.d(t,"b",(function(){return w}));var r,n=c(2);const o=Object(n.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=o.pluginUrl+"images/",i=o.pluginUrl+"build/",s=o.buildPhase,a=null===(r=n.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=n.STORE_PAGES.checkout.id,b=n.STORE_PAGES.checkout.permalink,d=n.STORE_PAGES.privacy.permalink,g=(n.STORE_PAGES.privacy.title,n.STORE_PAGES.terms.permalink),m=(n.STORE_PAGES.terms.title,n.STORE_PAGES.cart.id),p=n.STORE_PAGES.cart.permalink,h=(n.STORE_PAGES.myaccount.permalink?n.STORE_PAGES.myaccount.permalink:Object(n.getSetting)("wpLoginUrl","/wp-login.php"),Object(n.getSetting)("shippingCountries",{})),E=Object(n.getSetting)("allowedCountries",{}),O=Object(n.getSetting)("shippingStates",{}),w=Object(n.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return a})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return b})),c.d(t,"i",(function(){return d})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"g",(function(){return h})),c.d(t,"a",(function(){return E}));var r=c(16),n=c(15),o=c.n(n),l=c(7),i=c(2),s=c(24);const a=e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const i=(e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const o=s.o.productCount>100,l={per_page:o?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},i=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...n})];return o&&t.length&&i.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),i})({selected:t,search:c,queryArgs:n});return Promise.all(i.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>o()({path:"/wc/store/v1/products/"+e}),b=()=>o()({path:"wc/store/v1/products/attributes"}),d=e=>o()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const n=(e=>{let{selected:t=[],search:c}=e;const n=Object(i.getSetting)("limitTags",!1),o=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:n?100:0,orderby:n?"count":"name",order:n?"desc":"asc",search:c})];return n&&t.length&&o.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),o})({selected:t,search:c});return Promise.all(n.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},m=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),p=e=>o()({path:"wc/store/v1/products/categories/"+e}),h=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),E=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return o})),c.d(t,"b",(function(){return l}));var r=c(1),n=c(14);const o=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(n.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):t:Object(n.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return i}));var r=c(6),n=c.n(r),o=c(0),l=c(21);const i=e=>{let{countLabel:t,className:c,depth:r=0,controlId:i="",item:s,isSelected:a,isSingle:u,onSelect:b,search:d="",...g}=e;const m=null!=t&&void 0!==s.count&&null!==s.count,p=[c,"woocommerce-search-list__item"];p.push("depth-"+r),u&&p.push("is-radio-button"),m&&p.push("has-count");const h=s.breadcrumbs&&s.breadcrumbs.length,E=g.name||"search-list-item-"+i,O=`${E}-${s.id}`;return Object(o.createElement)("label",{htmlFor:O,className:p.join(" ")},u?Object(o.createElement)("input",n()({type:"radio",id:O,name:E,value:s.value,onChange:b(s),checked:a,className:"woocommerce-search-list__item-input"},g)):Object(o.createElement)("input",n()({type:"checkbox",id:O,name:E,value:s.value,onChange:b(s),checked:a,className:"woocommerce-search-list__item-input"},g)),Object(o.createElement)("span",{className:"woocommerce-search-list__item-label"},h?Object(o.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(s.breadcrumbs)):null,Object(o.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(s.name,d))),!!m&&Object(o.createElement)("span",{className:"woocommerce-search-list__item-count"},t||s.count))};t.b=i},368:function(e,t,c){e.exports=c(499)},499:function(e,t,c){"use strict";c.r(t);var r=c(0),n=c(1),o=c(13),l=c(7),i=c(110),s=c(522),a=c(3),u=c(5),b=c(53),d=c.n(b),g=c(60),m=c(61),p=c(64),h=c(83),E=c(137),O=c(2);class w extends r.Component{getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{categories:c,catOperator:o,columns:l,contentVisibility:i,rows:s,alignButtons:b,stockStatus:d}=e;return Object(r.createElement)(u.InspectorControls,{key:"inspector"},Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(m.a,{columns:l,rows:s,alignButtons:b,setAttributes:t,minColumns:Object(O.getSetting)("min_columns",1),maxColumns:Object(O.getSetting)("max_columns",6),minRows:Object(O.getSetting)("min_rows",1),maxRows:Object(O.getSetting)("max_rows",6)})),Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{settings:i,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(h.a,{setAttributes:t,value:d})),Object(r.createElement)(a.PanelBody,{title:Object(n.__)("Filter by Product Category","woocommerce"),initialOpen:!1},Object(r.createElement)(p.a,{selected:c,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({categories:c})},operator:o,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({catOperator:e})}})))}render(){const{attributes:e,name:t}=this.props;return e.isPreview?E.a:Object(r.createElement)(r.Fragment,null,this.getInspectorControls(),Object(r.createElement)(a.Disabled,null,Object(r.createElement)(d.a,{block:t,attributes:e})))}}var j=w,f=c(75);Object(o.registerBlockType)("woocommerce/product-new",{title:Object(n.__)("Newest Products","woocommerce"),icon:{src:Object(r.createElement)(i.a,{icon:s.a,className:"wc-block-editor-components-block-icon wc-block-editor-components-block-icon--sparkles"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of your newest products.","woocommerce"),supports:{align:["wide","full"],html:!1},attributes:{...f.a},example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:Object(l.without)(f.b,"woocommerce/product-new"),transform:e=>Object(o.createBlock)("woocommerce/product-new",e)}]},edit:e=>Object(r.createElement)(j,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:i,price:s,rating:a,title:u}=c,b=!1!==l;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:b?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:b,onChange:()=>t({...c,image:!b})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:s?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,price:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:a?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,rating:!a})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:i?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,button:!i})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:i,alignButtons:s,minColumns:a=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,a,u);i({columns:Number.isNaN(t)?"":t})},min:a,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);i({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:s?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:s,onChange:()=>i({alignButtons:!s})}))}},64:function(e,t,c){"use strict";var r=c(6),n=c.n(r),o=c(0),l=c(1),i=c(34),s=c(96),a=c(3),u=c(10),b=c(26),d=c(28),g=Object(u.createHigherOrderComponent)(e=>class extends o.Component{constructor(){super(...arguments),this.state={error:null,loading:!1,categories:[]},this.loadCategories=this.loadCategories.bind(this)}componentDidMount(){this.loadCategories()}loadCategories(){this.setState({loading:!0}),Object(b.c)().then(e=>{this.setState({categories:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(d.a)(e);this.setState({categories:[],loading:!1,error:t})})}render(){const{error:t,loading:c,categories:r}=this.state;return Object(o.createElement)(e,n()({},this.props,{error:t,isLoading:c,categories:r}))}},"withCategories"),m=c(33),p=c(4),h=c.n(p);c(100);const E=e=>{let{categories:t,error:c,isLoading:r,onChange:u,onOperatorChange:b,operator:d,selected:g,isCompact:p,isSingle:E,showReviewCount:O}=e;const w={clear:Object(l.__)("Clear all product categories","woocommerce"),list:Object(l.__)("Product Categories","woocommerce"),noItems:Object(l.__)("Your store doesn't have any product categories.","woocommerce"),search:Object(l.__)("Search for product categories","woocommerce"),selected:e=>Object(l.sprintf)(
6
  /* translators: %d is the count of selected categories. */
7
  Object(l._n)("%d category selected","%d categories selected",e,"woocommerce"),e),updated:Object(l.__)("Category search results updated.","woocommerce")};return c?Object(o.createElement)(m.a,{error:c}):Object(o.createElement)(o.Fragment,null,Object(o.createElement)(s.a,{className:"woocommerce-product-categories",list:t,isLoading:r,selected:g.map(e=>t.find(t=>t.id===e)).filter(Boolean),onChange:u,renderItem:e=>{const{item:t,search:c,depth:r=0}=e,s=t.breadcrumbs.length?`${t.breadcrumbs.join(", ")}, ${t.name}`:t.name,a=O?Object(l.sprintf)(
8
  /* translators: %1$s is the item name, %2$d is the count of reviews for the item. */
packages/woocommerce-blocks/build/product-on-sale.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => '5d6bf56ff5f5fdb282a3d2caa150e2ad');
1
+ <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => '6f6778e3d8d7550f8073cadb1151a66a');
packages/woocommerce-blocks/build/product-on-sale.js CHANGED
@@ -2,7 +2,7 @@ this.wc=this.wc||{},this.wc.blocks=this.wc.blocks||{},this.wc.blocks["product-on
2
  /* Translators: %s search term */
3
  noResults:Object(o.__)("No results for %s","woocommerce"),search:Object(o.__)("Search for items","woocommerce"),selected:e=>Object(o.sprintf)(
4
  /* translators: Number of items selected from list. */
5
- Object(o._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(o.__)("Search results updated.","woocommerce")},a=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(n.groupBy)(e,"parent"),r=Object(n.keyBy)(t,"id"),o=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},a=e=>e.map(e=>{const t=c[e.id];return o.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?a(t):[]}}),s=a(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;o.includes(t)||s.push(...a(c||[]))}),s},s=(e,t,c)=>{if(!t)return c?a(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),n=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?a(n,e):n},i=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return o})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return a})),c.d(t,"n",(function(){return s})),c.d(t,"j",(function(){return i})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return b})),c.d(t,"g",(function(){return d})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"h",(function(){return h})),c.d(t,"a",(function(){return O})),c.d(t,"i",(function(){return E})),c.d(t,"b",(function(){return j}));var r,n=c(2);const o=Object(n.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=o.pluginUrl+"images/",a=o.pluginUrl+"build/",s=o.buildPhase,i=null===(r=n.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=n.STORE_PAGES.checkout.id,b=n.STORE_PAGES.checkout.permalink,d=n.STORE_PAGES.privacy.permalink,g=(n.STORE_PAGES.privacy.title,n.STORE_PAGES.terms.permalink),m=(n.STORE_PAGES.terms.title,n.STORE_PAGES.cart.id),p=n.STORE_PAGES.cart.permalink,h=(n.STORE_PAGES.myaccount.permalink?n.STORE_PAGES.myaccount.permalink:Object(n.getSetting)("wpLoginUrl","/wp-login.php"),Object(n.getSetting)("shippingCountries",{})),O=Object(n.getSetting)("allowedCountries",{}),E=Object(n.getSetting)("shippingStates",{}),j=Object(n.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return i})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return b})),c.d(t,"i",(function(){return d})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"g",(function(){return h})),c.d(t,"a",(function(){return O}));var r=c(16),n=c(15),o=c.n(n),l=c(7),a=c(2),s=c(24);const i=e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const a=(e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const o=s.o.productCount>100,l={per_page:o?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},a=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...n})];return o&&t.length&&a.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),a})({selected:t,search:c,queryArgs:n});return Promise.all(a.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>o()({path:"/wc/store/v1/products/"+e}),b=()=>o()({path:"wc/store/v1/products/attributes"}),d=e=>o()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const n=(e=>{let{selected:t=[],search:c}=e;const n=Object(a.getSetting)("limitTags",!1),o=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:n?100:0,orderby:n?"count":"name",order:n?"desc":"asc",search:c})];return n&&t.length&&o.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),o})({selected:t,search:c});return Promise.all(n.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},m=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),p=e=>o()({path:"wc/store/v1/products/categories/"+e}),h=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),O=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return o})),c.d(t,"b",(function(){return l}));var r=c(1),n=c(14);const o=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(n.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):t:Object(n.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return a}));var r=c(6),n=c.n(r),o=c(0),l=c(21);const a=e=>{let{countLabel:t,className:c,depth:r=0,controlId:a="",item:s,isSelected:i,isSingle:u,onSelect:b,search:d="",...g}=e;const m=null!=t&&void 0!==s.count&&null!==s.count,p=[c,"woocommerce-search-list__item"];p.push("depth-"+r),u&&p.push("is-radio-button"),m&&p.push("has-count");const h=s.breadcrumbs&&s.breadcrumbs.length,O=g.name||"search-list-item-"+a,E=`${O}-${s.id}`;return Object(o.createElement)("label",{htmlFor:E,className:p.join(" ")},u?Object(o.createElement)("input",n()({type:"radio",id:E,name:O,value:s.value,onChange:b(s),checked:i,className:"woocommerce-search-list__item-input"},g)):Object(o.createElement)("input",n()({type:"checkbox",id:E,name:O,value:s.value,onChange:b(s),checked:i,className:"woocommerce-search-list__item-input"},g)),Object(o.createElement)("span",{className:"woocommerce-search-list__item-label"},h?Object(o.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(s.breadcrumbs)):null,Object(o.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(s.name,d))),!!m&&Object(o.createElement)("span",{className:"woocommerce-search-list__item-count"},t||s.count))};t.b=a},369:function(e,t,c){e.exports=c(500)},370:function(e,t){},5:function(e,t){e.exports=window.wp.blockEditor},500:function(e,t,c){"use strict";c.r(t);var r=c(0),n=c(1),o=c(13),l=c(7),a=c(110),s=c(523),i=c(3),u=c(5),b=c(53),d=c.n(b),g=c(60),m=c(61),p=c(64),h=c(97),O=c(83),E=c(137),j=c(2);const w=()=>Object(r.createElement)(i.Placeholder,{icon:Object(r.createElement)(a.a,{icon:s.a}),label:Object(n.__)("On Sale Products","woocommerce"),className:"wc-block-product-on-sale"},Object(n.__)("This block shows on-sale products. There are currently no discounted products in your store.","woocommerce"));class f extends r.Component{getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{categories:c,catOperator:o,columns:l,contentVisibility:a,rows:s,orderby:b,alignButtons:d,stockStatus:E}=e;return Object(r.createElement)(u.InspectorControls,{key:"inspector"},Object(r.createElement)(i.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(m.a,{columns:l,rows:s,alignButtons:d,setAttributes:t,minColumns:Object(j.getSetting)("min_columns",1),maxColumns:Object(j.getSetting)("max_columns",6),minRows:Object(j.getSetting)("min_rows",1),maxRows:Object(j.getSetting)("max_rows",6)})),Object(r.createElement)(i.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{settings:a,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(i.PanelBody,{title:Object(n.__)("Order By","woocommerce"),initialOpen:!1},Object(r.createElement)(h.a,{setAttributes:t,value:b})),Object(r.createElement)(i.PanelBody,{title:Object(n.__)("Filter by Product Category","woocommerce"),initialOpen:!1},Object(r.createElement)(p.a,{selected:c,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({categories:c})},operator:o,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({catOperator:e})}})),Object(r.createElement)(i.PanelBody,{title:Object(n.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(O.a,{setAttributes:t,value:E})))}render(){const{attributes:e,name:t}=this.props;return e.isPreview?E.a:Object(r.createElement)(r.Fragment,null,this.getInspectorControls(),Object(r.createElement)(i.Disabled,null,Object(r.createElement)(d.a,{block:t,attributes:e,EmptyResponsePlaceholder:w})))}}var _=f,y=(c(370),c(75));Object(o.registerBlockType)("woocommerce/product-on-sale",{title:Object(n.__)("On Sale Products","woocommerce"),icon:{src:Object(r.createElement)(a.a,{icon:s.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of products currently on sale.","woocommerce"),supports:{align:["wide","full"],html:!1},attributes:{...y.a,orderby:{type:"string",default:"date"}},example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:Object(l.without)(y.b,"woocommerce/product-on-sale"),transform:e=>Object(o.createBlock)("woocommerce/product-on-sale",e)}]},edit:e=>Object(r.createElement)(_,e),save:()=>null})},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:a,price:s,rating:i,title:u}=c;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:l?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:l,onChange:()=>t({...c,image:!l})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:s?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,price:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:i?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,rating:!i})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:a?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,button:!a})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:a,alignButtons:s,minColumns:i=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,i,u);a({columns:Number.isNaN(t)?"":t})},min:i,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);a({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:s?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:s,onChange:()=>a({alignButtons:!s})}))}},64:function(e,t,c){"use strict";var r=c(6),n=c.n(r),o=c(0),l=c(1),a=c(34),s=c(96),i=c(3),u=c(10),b=c(26),d=c(28),g=Object(u.createHigherOrderComponent)(e=>class extends o.Component{constructor(){super(...arguments),this.state={error:null,loading:!1,categories:[]},this.loadCategories=this.loadCategories.bind(this)}componentDidMount(){this.loadCategories()}loadCategories(){this.setState({loading:!0}),Object(b.c)().then(e=>{this.setState({categories:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(d.a)(e);this.setState({categories:[],loading:!1,error:t})})}render(){const{error:t,loading:c,categories:r}=this.state;return Object(o.createElement)(e,n()({},this.props,{error:t,isLoading:c,categories:r}))}},"withCategories"),m=c(33),p=c(4),h=c.n(p);c(100);const O=e=>{let{categories:t,error:c,isLoading:r,onChange:u,onOperatorChange:b,operator:d,selected:g,isCompact:p,isSingle:O,showReviewCount:E}=e;const j={clear:Object(l.__)("Clear all product categories","woocommerce"),list:Object(l.__)("Product Categories","woocommerce"),noItems:Object(l.__)("Your store doesn't have any product categories.","woocommerce"),search:Object(l.__)("Search for product categories","woocommerce"),selected:e=>Object(l.sprintf)(
6
  /* translators: %d is the count of selected categories. */
7
  Object(l._n)("%d category selected","%d categories selected",e,"woocommerce"),e),updated:Object(l.__)("Category search results updated.","woocommerce")};return c?Object(o.createElement)(m.a,{error:c}):Object(o.createElement)(o.Fragment,null,Object(o.createElement)(s.a,{className:"woocommerce-product-categories",list:t,isLoading:r,selected:g.map(e=>t.find(t=>t.id===e)).filter(Boolean),onChange:u,renderItem:e=>{const{item:t,search:c,depth:r=0}=e,s=t.breadcrumbs.length?`${t.breadcrumbs.join(", ")}, ${t.name}`:t.name,i=E?Object(l.sprintf)(
8
  /* translators: %1$s is the item name, %2$d is the count of reviews for the item. */
2
  /* Translators: %s search term */
3
  noResults:Object(o.__)("No results for %s","woocommerce"),search:Object(o.__)("Search for items","woocommerce"),selected:e=>Object(o.sprintf)(
4
  /* translators: Number of items selected from list. */
5
+ Object(o._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(o.__)("Search results updated.","woocommerce")},a=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(n.groupBy)(e,"parent"),r=Object(n.keyBy)(t,"id"),o=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},a=e=>e.map(e=>{const t=c[e.id];return o.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?a(t):[]}}),s=a(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;o.includes(t)||s.push(...a(c||[]))}),s},s=(e,t,c)=>{if(!t)return c?a(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),n=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?a(n,e):n},i=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return o})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return a})),c.d(t,"n",(function(){return s})),c.d(t,"j",(function(){return i})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return b})),c.d(t,"g",(function(){return d})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"h",(function(){return h})),c.d(t,"a",(function(){return O})),c.d(t,"i",(function(){return E})),c.d(t,"b",(function(){return j}));var r,n=c(2);const o=Object(n.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=o.pluginUrl+"images/",a=o.pluginUrl+"build/",s=o.buildPhase,i=null===(r=n.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=n.STORE_PAGES.checkout.id,b=n.STORE_PAGES.checkout.permalink,d=n.STORE_PAGES.privacy.permalink,g=(n.STORE_PAGES.privacy.title,n.STORE_PAGES.terms.permalink),m=(n.STORE_PAGES.terms.title,n.STORE_PAGES.cart.id),p=n.STORE_PAGES.cart.permalink,h=(n.STORE_PAGES.myaccount.permalink?n.STORE_PAGES.myaccount.permalink:Object(n.getSetting)("wpLoginUrl","/wp-login.php"),Object(n.getSetting)("shippingCountries",{})),O=Object(n.getSetting)("allowedCountries",{}),E=Object(n.getSetting)("shippingStates",{}),j=Object(n.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return i})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return b})),c.d(t,"i",(function(){return d})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"g",(function(){return h})),c.d(t,"a",(function(){return O}));var r=c(16),n=c(15),o=c.n(n),l=c(7),a=c(2),s=c(24);const i=e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const a=(e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const o=s.o.productCount>100,l={per_page:o?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},a=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...n})];return o&&t.length&&a.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),a})({selected:t,search:c,queryArgs:n});return Promise.all(a.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>o()({path:"/wc/store/v1/products/"+e}),b=()=>o()({path:"wc/store/v1/products/attributes"}),d=e=>o()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const n=(e=>{let{selected:t=[],search:c}=e;const n=Object(a.getSetting)("limitTags",!1),o=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:n?100:0,orderby:n?"count":"name",order:n?"desc":"asc",search:c})];return n&&t.length&&o.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),o})({selected:t,search:c});return Promise.all(n.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},m=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),p=e=>o()({path:"wc/store/v1/products/categories/"+e}),h=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),O=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return o})),c.d(t,"b",(function(){return l}));var r=c(1),n=c(14);const o=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(n.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):t:Object(n.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return a}));var r=c(6),n=c.n(r),o=c(0),l=c(21);const a=e=>{let{countLabel:t,className:c,depth:r=0,controlId:a="",item:s,isSelected:i,isSingle:u,onSelect:b,search:d="",...g}=e;const m=null!=t&&void 0!==s.count&&null!==s.count,p=[c,"woocommerce-search-list__item"];p.push("depth-"+r),u&&p.push("is-radio-button"),m&&p.push("has-count");const h=s.breadcrumbs&&s.breadcrumbs.length,O=g.name||"search-list-item-"+a,E=`${O}-${s.id}`;return Object(o.createElement)("label",{htmlFor:E,className:p.join(" ")},u?Object(o.createElement)("input",n()({type:"radio",id:E,name:O,value:s.value,onChange:b(s),checked:i,className:"woocommerce-search-list__item-input"},g)):Object(o.createElement)("input",n()({type:"checkbox",id:E,name:O,value:s.value,onChange:b(s),checked:i,className:"woocommerce-search-list__item-input"},g)),Object(o.createElement)("span",{className:"woocommerce-search-list__item-label"},h?Object(o.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(s.breadcrumbs)):null,Object(o.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(s.name,d))),!!m&&Object(o.createElement)("span",{className:"woocommerce-search-list__item-count"},t||s.count))};t.b=a},369:function(e,t,c){e.exports=c(500)},370:function(e,t){},5:function(e,t){e.exports=window.wp.blockEditor},500:function(e,t,c){"use strict";c.r(t);var r=c(0),n=c(1),o=c(13),l=c(7),a=c(110),s=c(523),i=c(3),u=c(5),b=c(53),d=c.n(b),g=c(60),m=c(61),p=c(64),h=c(97),O=c(83),E=c(137),j=c(2);const w=()=>Object(r.createElement)(i.Placeholder,{icon:Object(r.createElement)(a.a,{icon:s.a}),label:Object(n.__)("On Sale Products","woocommerce"),className:"wc-block-product-on-sale"},Object(n.__)("This block shows on-sale products. There are currently no discounted products in your store.","woocommerce"));class f extends r.Component{getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{categories:c,catOperator:o,columns:l,contentVisibility:a,rows:s,orderby:b,alignButtons:d,stockStatus:E}=e;return Object(r.createElement)(u.InspectorControls,{key:"inspector"},Object(r.createElement)(i.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(m.a,{columns:l,rows:s,alignButtons:d,setAttributes:t,minColumns:Object(j.getSetting)("min_columns",1),maxColumns:Object(j.getSetting)("max_columns",6),minRows:Object(j.getSetting)("min_rows",1),maxRows:Object(j.getSetting)("max_rows",6)})),Object(r.createElement)(i.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{settings:a,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(i.PanelBody,{title:Object(n.__)("Order By","woocommerce"),initialOpen:!1},Object(r.createElement)(h.a,{setAttributes:t,value:b})),Object(r.createElement)(i.PanelBody,{title:Object(n.__)("Filter by Product Category","woocommerce"),initialOpen:!1},Object(r.createElement)(p.a,{selected:c,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({categories:c})},operator:o,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({catOperator:e})}})),Object(r.createElement)(i.PanelBody,{title:Object(n.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(O.a,{setAttributes:t,value:E})))}render(){const{attributes:e,name:t}=this.props;return e.isPreview?E.a:Object(r.createElement)(r.Fragment,null,this.getInspectorControls(),Object(r.createElement)(i.Disabled,null,Object(r.createElement)(d.a,{block:t,attributes:e,EmptyResponsePlaceholder:w})))}}var _=f,y=(c(370),c(75));Object(o.registerBlockType)("woocommerce/product-on-sale",{title:Object(n.__)("On Sale Products","woocommerce"),icon:{src:Object(r.createElement)(a.a,{icon:s.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of products currently on sale.","woocommerce"),supports:{align:["wide","full"],html:!1},attributes:{...y.a,orderby:{type:"string",default:"date"}},example:{attributes:{isPreview:!0}},transforms:{from:[{type:"block",blocks:Object(l.without)(y.b,"woocommerce/product-on-sale"),transform:e=>Object(o.createBlock)("woocommerce/product-on-sale",e)}]},edit:e=>Object(r.createElement)(_,e),save:()=>null})},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:a,price:s,rating:i,title:u}=c,b=!1!==l;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:b?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:b,onChange:()=>t({...c,image:!b})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:s?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,price:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:i?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,rating:!i})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:a?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,button:!a})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:a,alignButtons:s,minColumns:i=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,i,u);a({columns:Number.isNaN(t)?"":t})},min:i,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);a({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:s?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:s,onChange:()=>a({alignButtons:!s})}))}},64:function(e,t,c){"use strict";var r=c(6),n=c.n(r),o=c(0),l=c(1),a=c(34),s=c(96),i=c(3),u=c(10),b=c(26),d=c(28),g=Object(u.createHigherOrderComponent)(e=>class extends o.Component{constructor(){super(...arguments),this.state={error:null,loading:!1,categories:[]},this.loadCategories=this.loadCategories.bind(this)}componentDidMount(){this.loadCategories()}loadCategories(){this.setState({loading:!0}),Object(b.c)().then(e=>{this.setState({categories:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(d.a)(e);this.setState({categories:[],loading:!1,error:t})})}render(){const{error:t,loading:c,categories:r}=this.state;return Object(o.createElement)(e,n()({},this.props,{error:t,isLoading:c,categories:r}))}},"withCategories"),m=c(33),p=c(4),h=c.n(p);c(100);const O=e=>{let{categories:t,error:c,isLoading:r,onChange:u,onOperatorChange:b,operator:d,selected:g,isCompact:p,isSingle:O,showReviewCount:E}=e;const j={clear:Object(l.__)("Clear all product categories","woocommerce"),list:Object(l.__)("Product Categories","woocommerce"),noItems:Object(l.__)("Your store doesn't have any product categories.","woocommerce"),search:Object(l.__)("Search for product categories","woocommerce"),selected:e=>Object(l.sprintf)(
6
  /* translators: %d is the count of selected categories. */
7
  Object(l._n)("%d category selected","%d categories selected",e,"woocommerce"),e),updated:Object(l.__)("Category search results updated.","woocommerce")};return c?Object(o.createElement)(m.a,{error:c}):Object(o.createElement)(o.Fragment,null,Object(o.createElement)(s.a,{className:"woocommerce-product-categories",list:t,isLoading:r,selected:g.map(e=>t.find(t=>t.id===e)).filter(Boolean),onChange:u,renderItem:e=>{const{item:t,search:c,depth:r=0}=e,s=t.breadcrumbs.length?`${t.breadcrumbs.join(", ")}, ${t.name}`:t.name,i=E?Object(l.sprintf)(
8
  /* translators: %1$s is the item name, %2$d is the count of reviews for the item. */
packages/woocommerce-blocks/build/product-tag.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => 'bfecdd1bfc5e6c2bbad81c432e8ceef9');
1
+ <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => 'cfbc3b38cea2d90c2c49452732790d79');
packages/woocommerce-blocks/build/product-tag.js CHANGED
@@ -6,7 +6,7 @@ Object(o._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:
6
  /* translators: %1$d is the count of products, %2$s is the name of the tag. */
7
  Object(n._n)("%1$d product tagged as %2$s","%1$d products tagged as %2$s",t.count,"woocommerce"),t.count,l)}))}render(){const{list:e,loading:t}=this.state,{isCompact:c,onChange:o,onOperatorChange:s,operator:i,selected:a}=this.props,u={clear:Object(n.__)("Clear all product tags","woocommerce"),list:Object(n.__)("Product Tags","woocommerce"),noItems:Object(n.__)("Your store doesn't have any product tags.","woocommerce"),search:Object(n.__)("Search for product tags","woocommerce"),selected:e=>Object(n.sprintf)(
8
  /* translators: %d is the count of selected tags. */
9
- Object(n._n)("%d tag selected","%d tags selected",e,"woocommerce"),e),updated:Object(n.__)("Tag search results updated.","woocommerce")},b=Object(l.getSetting)("limitTags",!1);return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(j.a,{className:"woocommerce-product-tags",list:e,isLoading:t,selected:a.map(t=>e.find(e=>e.id===t)).filter(Boolean),onChange:o,onSearch:b?this.debouncedOnSearch:null,renderItem:this.renderItem,messages:u,isCompact:c,isHierarchical:!0}),!!s&&Object(r.createElement)("div",{hidden:a.length<2},Object(r.createElement)(d.SelectControl,{className:"woocommerce-product-tags__operator",label:Object(n.__)("Display products matching","woocommerce"),help:Object(n.__)("Pick at least two tags to use this setting.","woocommerce"),value:i,onChange:s,options:[{label:Object(n.__)("Any selected tags","woocommerce"),value:"any"},{label:Object(n.__)("All selected tags","woocommerce"),value:"all"}]})))}}k.defaultProps={isCompact:!1,operator:"any"};var y=k,x=c(97),v=c(83),S=c(137);class C extends r.Component{constructor(){super(...arguments),this.state={changedAttributes:{},isEditing:!1},this.startEditing=this.startEditing.bind(this),this.stopEditing=this.stopEditing.bind(this),this.setChangedAttributes=this.setChangedAttributes.bind(this),this.save=this.save.bind(this)}componentDidMount(){const{attributes:e}=this.props;e.tags.length||this.setState({isEditing:!0})}startEditing(){this.setState({isEditing:!0,changedAttributes:{}})}stopEditing(){this.setState({isEditing:!1,changedAttributes:{}})}setChangedAttributes(e){this.setState(t=>({changedAttributes:{...t.changedAttributes,...e}}))}save(){const{changedAttributes:e}=this.state,{setAttributes:t}=this.props;t(e),this.stopEditing()}getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{isEditing:c}=this.state,{columns:o,tagOperator:s,contentVisibility:i,orderby:u,rows:b,alignButtons:m,stockStatus:p}=e;return Object(r.createElement)(a.InspectorControls,{key:"inspector"},Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Product Tag","woocommerce"),initialOpen:!e.tags.length&&!c},Object(r.createElement)(y,{selected:e.tags,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({tags:c})},operator:s,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({tagOperator:e})},isCompact:!0})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(h.a,{columns:o,rows:b,alignButtons:m,setAttributes:t,minColumns:Object(l.getSetting)("min_columns",1),maxColumns:Object(l.getSetting)("max_columns",6),minRows:Object(l.getSetting)("min_rows",1),maxRows:Object(l.getSetting)("max_rows",6)})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{settings:i,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Order By","woocommerce"),initialOpen:!1},Object(r.createElement)(x.a,{setAttributes:t,value:u})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(v.a,{setAttributes:t,value:p})))}renderEditMode(){var e=this;const{attributes:t,debouncedSpeak:c}=this.props,{changedAttributes:o}=this.state,l={...t,...o};return Object(r.createElement)(d.Placeholder,{icon:Object(r.createElement)(s.a,{icon:i.a,className:"block-editor-block-icon"}),label:Object(n.__)("Products by Tag","woocommerce"),className:"wc-block-products-grid wc-block-product-tag"},Object(n.__)("Display a grid of products from your selected tags.","woocommerce"),Object(r.createElement)("div",{className:"wc-block-product-tag__selection"},Object(r.createElement)(y,{selected:l.tags,onChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=t.map(e=>{let{id:t}=e;return t});e.setChangedAttributes({tags:c})},operator:l.tagOperator,onOperatorChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return e.setChangedAttributes({tagOperator:t})}}),Object(r.createElement)(d.Button,{isPrimary:!0,onClick:()=>{this.save(),c(Object(n.__)("Showing Products by Tag block preview.","woocommerce"))}},Object(n.__)("Done","woocommerce")),Object(r.createElement)(d.Button,{className:"wc-block-product-tag__cancel-button",isTertiary:!0,onClick:()=>{this.stopEditing(),c(Object(n.__)("Showing Products by Tag block preview.","woocommerce"))}},Object(n.__)("Cancel","woocommerce"))))}renderViewMode(){const{attributes:e,name:t}=this.props,c=e.tags.length;return Object(r.createElement)(d.Disabled,null,c?Object(r.createElement)(b.a,{block:t,attributes:e}):Object(r.createElement)(d.Placeholder,{icon:Object(r.createElement)(s.a,{icon:i.a,className:"block-editor-block-icon"}),label:Object(n.__)("Products by Tag","woocommerce"),className:"wc-block-products-grid wc-block-product-tag"},Object(n.__)("This block displays products from selected tags. Select at least one tag to display its products.","woocommerce")))}render(){const{isEditing:e}=this.state,{attributes:t}=this.props;return t.isPreview?S.a:Object(l.getSetting)("hasTags",!0)?Object(r.createElement)(r.Fragment,null,Object(r.createElement)(a.BlockControls,null,Object(r.createElement)(d.ToolbarGroup,{controls:[{icon:"edit",title:Object(n.__)("Edit selected tags","woocommerce"),onClick:()=>e?this.stopEditing():this.startEditing(),isActive:e}]})),this.getInspectorControls(),e?this.renderEditMode():this.renderViewMode()):Object(r.createElement)(d.Placeholder,{icon:Object(r.createElement)(s.a,{icon:i.a,className:"block-editor-block-icon"}),label:Object(n.__)("Products by Tag","woocommerce"),className:"wc-block-products-grid wc-block-product-tag"},Object(n.__)("This block displays products from selected tags. In order to preview this you'll first need to create a product and assign it some tags.","woocommerce"))}}var P=Object(d.withSpokenMessages)(C);Object(o.registerBlockType)("woocommerce/product-tag",{title:Object(n.__)("Products by Tag","woocommerce"),icon:{src:Object(r.createElement)(s.a,{icon:i.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of products with selected tags.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{columns:{type:"number",default:Object(l.getSetting)("default_columns",3)},rows:{type:"number",default:Object(l.getSetting)("default_rows",3)},alignButtons:{type:"boolean",default:!1},contentVisibility:{type:"object",default:{image:!0,title:!0,price:!0,rating:!0,button:!0}},tags:{type:"array",default:[]},tagOperator:{type:"string",default:"any"},orderby:{type:"string",default:"date"},isPreview:{type:"boolean",default:!1},stockStatus:{type:"array",default:Object.keys(Object(l.getSetting)("stockStatusOptions",[]))}},edit:e=>Object(r.createElement)(P,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:s,price:i,rating:a,title:u}=c;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:l?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:l,onChange:()=>t({...c,image:!l})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:i?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,price:!i})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:a?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,rating:!a})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:s?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,button:!s})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:s,alignButtons:i,minColumns:a=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,a,u);s({columns:Number.isNaN(t)?"":t})},min:a,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);s({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:i?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:i,onChange:()=>s({alignButtons:!i})}))}},7:function(e,t){e.exports=window.lodash},83:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(2),l=c(3);const s=Object(o.getSetting)("hideOutOfStockItems",!1),i=Object(o.getSetting)("stockStatusOptions",{});t.a=e=>{let{value:t,setAttributes:c}=e;const{outofstock:o,...a}=i,u=s?a:i,b=Object.entries(u).map(e=>{let[t,c]=e;return{value:t,label:c}}).filter(e=>!!e.label),[d,g]=Object(r.useState)(t);Object(r.useEffect)(()=>{c({stockStatus:["",...d]})},[d,c]);const h=Object(r.useCallback)(e=>{const t=d.includes(e),c=d.filter(t=>t!==e);t||(c.push(e),c.sort()),g(c)},[d]);return Object(r.createElement)(r.Fragment,null,b.map(e=>{const t=d.includes(e.value)?
10
  /* translators: %s stock status. */
11
  Object(n.__)('Stock status "%s" visible.',"woocommerce"):
12
  /* translators: %s stock status. */
6
  /* translators: %1$d is the count of products, %2$s is the name of the tag. */
7
  Object(n._n)("%1$d product tagged as %2$s","%1$d products tagged as %2$s",t.count,"woocommerce"),t.count,l)}))}render(){const{list:e,loading:t}=this.state,{isCompact:c,onChange:o,onOperatorChange:s,operator:i,selected:a}=this.props,u={clear:Object(n.__)("Clear all product tags","woocommerce"),list:Object(n.__)("Product Tags","woocommerce"),noItems:Object(n.__)("Your store doesn't have any product tags.","woocommerce"),search:Object(n.__)("Search for product tags","woocommerce"),selected:e=>Object(n.sprintf)(
8
  /* translators: %d is the count of selected tags. */
9
+ Object(n._n)("%d tag selected","%d tags selected",e,"woocommerce"),e),updated:Object(n.__)("Tag search results updated.","woocommerce")},b=Object(l.getSetting)("limitTags",!1);return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(j.a,{className:"woocommerce-product-tags",list:e,isLoading:t,selected:a.map(t=>e.find(e=>e.id===t)).filter(Boolean),onChange:o,onSearch:b?this.debouncedOnSearch:null,renderItem:this.renderItem,messages:u,isCompact:c,isHierarchical:!0}),!!s&&Object(r.createElement)("div",{hidden:a.length<2},Object(r.createElement)(d.SelectControl,{className:"woocommerce-product-tags__operator",label:Object(n.__)("Display products matching","woocommerce"),help:Object(n.__)("Pick at least two tags to use this setting.","woocommerce"),value:i,onChange:s,options:[{label:Object(n.__)("Any selected tags","woocommerce"),value:"any"},{label:Object(n.__)("All selected tags","woocommerce"),value:"all"}]})))}}k.defaultProps={isCompact:!1,operator:"any"};var y=k,x=c(97),v=c(83),S=c(137);class C extends r.Component{constructor(){super(...arguments),this.state={changedAttributes:{},isEditing:!1},this.startEditing=this.startEditing.bind(this),this.stopEditing=this.stopEditing.bind(this),this.setChangedAttributes=this.setChangedAttributes.bind(this),this.save=this.save.bind(this)}componentDidMount(){const{attributes:e}=this.props;e.tags.length||this.setState({isEditing:!0})}startEditing(){this.setState({isEditing:!0,changedAttributes:{}})}stopEditing(){this.setState({isEditing:!1,changedAttributes:{}})}setChangedAttributes(e){this.setState(t=>({changedAttributes:{...t.changedAttributes,...e}}))}save(){const{changedAttributes:e}=this.state,{setAttributes:t}=this.props;t(e),this.stopEditing()}getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{isEditing:c}=this.state,{columns:o,tagOperator:s,contentVisibility:i,orderby:u,rows:b,alignButtons:m,stockStatus:p}=e;return Object(r.createElement)(a.InspectorControls,{key:"inspector"},Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Product Tag","woocommerce"),initialOpen:!e.tags.length&&!c},Object(r.createElement)(y,{selected:e.tags,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({tags:c})},operator:s,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({tagOperator:e})},isCompact:!0})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(h.a,{columns:o,rows:b,alignButtons:m,setAttributes:t,minColumns:Object(l.getSetting)("min_columns",1),maxColumns:Object(l.getSetting)("max_columns",6),minRows:Object(l.getSetting)("min_rows",1),maxRows:Object(l.getSetting)("max_rows",6)})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{settings:i,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Order By","woocommerce"),initialOpen:!1},Object(r.createElement)(x.a,{setAttributes:t,value:u})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(v.a,{setAttributes:t,value:p})))}renderEditMode(){var e=this;const{attributes:t,debouncedSpeak:c}=this.props,{changedAttributes:o}=this.state,l={...t,...o};return Object(r.createElement)(d.Placeholder,{icon:Object(r.createElement)(s.a,{icon:i.a,className:"block-editor-block-icon"}),label:Object(n.__)("Products by Tag","woocommerce"),className:"wc-block-products-grid wc-block-product-tag"},Object(n.__)("Display a grid of products from your selected tags.","woocommerce"),Object(r.createElement)("div",{className:"wc-block-product-tag__selection"},Object(r.createElement)(y,{selected:l.tags,onChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=t.map(e=>{let{id:t}=e;return t});e.setChangedAttributes({tags:c})},operator:l.tagOperator,onOperatorChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return e.setChangedAttributes({tagOperator:t})}}),Object(r.createElement)(d.Button,{isPrimary:!0,onClick:()=>{this.save(),c(Object(n.__)("Showing Products by Tag block preview.","woocommerce"))}},Object(n.__)("Done","woocommerce")),Object(r.createElement)(d.Button,{className:"wc-block-product-tag__cancel-button",isTertiary:!0,onClick:()=>{this.stopEditing(),c(Object(n.__)("Showing Products by Tag block preview.","woocommerce"))}},Object(n.__)("Cancel","woocommerce"))))}renderViewMode(){const{attributes:e,name:t}=this.props,c=e.tags.length;return Object(r.createElement)(d.Disabled,null,c?Object(r.createElement)(b.a,{block:t,attributes:e}):Object(r.createElement)(d.Placeholder,{icon:Object(r.createElement)(s.a,{icon:i.a,className:"block-editor-block-icon"}),label:Object(n.__)("Products by Tag","woocommerce"),className:"wc-block-products-grid wc-block-product-tag"},Object(n.__)("This block displays products from selected tags. Select at least one tag to display its products.","woocommerce")))}render(){const{isEditing:e}=this.state,{attributes:t}=this.props;return t.isPreview?S.a:Object(l.getSetting)("hasTags",!0)?Object(r.createElement)(r.Fragment,null,Object(r.createElement)(a.BlockControls,null,Object(r.createElement)(d.ToolbarGroup,{controls:[{icon:"edit",title:Object(n.__)("Edit selected tags","woocommerce"),onClick:()=>e?this.stopEditing():this.startEditing(),isActive:e}]})),this.getInspectorControls(),e?this.renderEditMode():this.renderViewMode()):Object(r.createElement)(d.Placeholder,{icon:Object(r.createElement)(s.a,{icon:i.a,className:"block-editor-block-icon"}),label:Object(n.__)("Products by Tag","woocommerce"),className:"wc-block-products-grid wc-block-product-tag"},Object(n.__)("This block displays products from selected tags. In order to preview this you'll first need to create a product and assign it some tags.","woocommerce"))}}var P=Object(d.withSpokenMessages)(C);Object(o.registerBlockType)("woocommerce/product-tag",{title:Object(n.__)("Products by Tag","woocommerce"),icon:{src:Object(r.createElement)(s.a,{icon:i.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of products with selected tags.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{columns:{type:"number",default:Object(l.getSetting)("default_columns",3)},rows:{type:"number",default:Object(l.getSetting)("default_rows",3)},alignButtons:{type:"boolean",default:!1},contentVisibility:{type:"object",default:{image:!0,title:!0,price:!0,rating:!0,button:!0}},tags:{type:"array",default:[]},tagOperator:{type:"string",default:"any"},orderby:{type:"string",default:"date"},isPreview:{type:"boolean",default:!1},stockStatus:{type:"array",default:Object.keys(Object(l.getSetting)("stockStatusOptions",[]))}},edit:e=>Object(r.createElement)(P,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:s,price:i,rating:a,title:u}=c,b=!1!==l;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:b?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:b,onChange:()=>t({...c,image:!b})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:i?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,price:!i})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:a?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,rating:!a})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:s?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,button:!s})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:s,alignButtons:i,minColumns:a=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,a,u);s({columns:Number.isNaN(t)?"":t})},min:a,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);s({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:i?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:i,onChange:()=>s({alignButtons:!i})}))}},7:function(e,t){e.exports=window.lodash},83:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(2),l=c(3);const s=Object(o.getSetting)("hideOutOfStockItems",!1),i=Object(o.getSetting)("stockStatusOptions",{});t.a=e=>{let{value:t,setAttributes:c}=e;const{outofstock:o,...a}=i,u=s?a:i,b=Object.entries(u).map(e=>{let[t,c]=e;return{value:t,label:c}}).filter(e=>!!e.label),[d,g]=Object(r.useState)(t);Object(r.useEffect)(()=>{c({stockStatus:["",...d]})},[d,c]);const h=Object(r.useCallback)(e=>{const t=d.includes(e),c=d.filter(t=>t!==e);t||(c.push(e),c.sort()),g(c)},[d]);return Object(r.createElement)(r.Fragment,null,b.map(e=>{const t=d.includes(e.value)?
10
  /* translators: %s stock status. */
11
  Object(n.__)('Stock status "%s" visible.',"woocommerce"):
12
  /* translators: %s stock status. */
packages/woocommerce-blocks/build/product-top-rated.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => '7393fe17600632744ad0005fcd1717a9');
1
+ <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => '7f06694a6cbbdcfe95960b936167b37b');
packages/woocommerce-blocks/build/product-top-rated.js CHANGED
@@ -2,7 +2,7 @@ this.wc=this.wc||{},this.wc.blocks=this.wc.blocks||{},this.wc.blocks["product-to
2
  /* Translators: %s search term */
3
  noResults:Object(o.__)("No results for %s","woocommerce"),search:Object(o.__)("Search for items","woocommerce"),selected:e=>Object(o.sprintf)(
4
  /* translators: Number of items selected from list. */
5
- Object(o._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(o.__)("Search results updated.","woocommerce")},i=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(n.groupBy)(e,"parent"),r=Object(n.keyBy)(t,"id"),o=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},i=e=>e.map(e=>{const t=c[e.id];return o.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?i(t):[]}}),a=i(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;o.includes(t)||a.push(...i(c||[]))}),a},a=(e,t,c)=>{if(!t)return c?i(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),n=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?i(n,e):n},s=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return o})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return i})),c.d(t,"n",(function(){return a})),c.d(t,"j",(function(){return s})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return b})),c.d(t,"g",(function(){return d})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"h",(function(){return h})),c.d(t,"a",(function(){return E})),c.d(t,"i",(function(){return O})),c.d(t,"b",(function(){return j}));var r,n=c(2);const o=Object(n.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=o.pluginUrl+"images/",i=o.pluginUrl+"build/",a=o.buildPhase,s=null===(r=n.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=n.STORE_PAGES.checkout.id,b=n.STORE_PAGES.checkout.permalink,d=n.STORE_PAGES.privacy.permalink,g=(n.STORE_PAGES.privacy.title,n.STORE_PAGES.terms.permalink),m=(n.STORE_PAGES.terms.title,n.STORE_PAGES.cart.id),p=n.STORE_PAGES.cart.permalink,h=(n.STORE_PAGES.myaccount.permalink?n.STORE_PAGES.myaccount.permalink:Object(n.getSetting)("wpLoginUrl","/wp-login.php"),Object(n.getSetting)("shippingCountries",{})),E=Object(n.getSetting)("allowedCountries",{}),O=Object(n.getSetting)("shippingStates",{}),j=Object(n.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return s})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return b})),c.d(t,"i",(function(){return d})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"g",(function(){return h})),c.d(t,"a",(function(){return E}));var r=c(16),n=c(15),o=c.n(n),l=c(7),i=c(2),a=c(24);const s=e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const i=(e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const o=a.o.productCount>100,l={per_page:o?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},i=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...n})];return o&&t.length&&i.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),i})({selected:t,search:c,queryArgs:n});return Promise.all(i.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>o()({path:"/wc/store/v1/products/"+e}),b=()=>o()({path:"wc/store/v1/products/attributes"}),d=e=>o()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const n=(e=>{let{selected:t=[],search:c}=e;const n=Object(i.getSetting)("limitTags",!1),o=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:n?100:0,orderby:n?"count":"name",order:n?"desc":"asc",search:c})];return n&&t.length&&o.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),o})({selected:t,search:c});return Promise.all(n.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},m=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),p=e=>o()({path:"wc/store/v1/products/categories/"+e}),h=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),E=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return o})),c.d(t,"b",(function(){return l}));var r=c(1),n=c(14);const o=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(n.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):t:Object(n.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return i}));var r=c(6),n=c.n(r),o=c(0),l=c(21);const i=e=>{let{countLabel:t,className:c,depth:r=0,controlId:i="",item:a,isSelected:s,isSingle:u,onSelect:b,search:d="",...g}=e;const m=null!=t&&void 0!==a.count&&null!==a.count,p=[c,"woocommerce-search-list__item"];p.push("depth-"+r),u&&p.push("is-radio-button"),m&&p.push("has-count");const h=a.breadcrumbs&&a.breadcrumbs.length,E=g.name||"search-list-item-"+i,O=`${E}-${a.id}`;return Object(o.createElement)("label",{htmlFor:O,className:p.join(" ")},u?Object(o.createElement)("input",n()({type:"radio",id:O,name:E,value:a.value,onChange:b(a),checked:s,className:"woocommerce-search-list__item-input"},g)):Object(o.createElement)("input",n()({type:"checkbox",id:O,name:E,value:a.value,onChange:b(a),checked:s,className:"woocommerce-search-list__item-input"},g)),Object(o.createElement)("span",{className:"woocommerce-search-list__item-label"},h?Object(o.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(a.breadcrumbs)):null,Object(o.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(a.name,d))),!!m&&Object(o.createElement)("span",{className:"woocommerce-search-list__item-count"},t||a.count))};t.b=i},371:function(e,t,c){e.exports=c(489)},489:function(e,t,c){"use strict";c.r(t);var r=c(0),n=c(1),o=c(13),l=c(11),i=Object(r.createElement)(l.SVG,{xmlns:"http://www.w3.org/2000/SVG",viewBox:"0 0 24 24"},Object(r.createElement)("path",{opacity:".87",fill:"none",d:"M0 0h24v24H0V0z"}),Object(r.createElement)("path",{d:"M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4l-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z"})),a=c(110),s=c(7),u=c(3),b=c(5),d=c(53),g=c.n(d),m=c(60),p=c(61),h=c(64),E=c(83),O=c(137),j=c(2);class w extends r.Component{getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{categories:c,catOperator:o,columns:l,contentVisibility:i,rows:a,alignButtons:s,stockStatus:d}=e;return Object(r.createElement)(b.InspectorControls,{key:"inspector"},Object(r.createElement)(u.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(p.a,{columns:l,rows:a,alignButtons:s,setAttributes:t,minColumns:Object(j.getSetting)("min_columns",1),maxColumns:Object(j.getSetting)("max_columns",6),minRows:Object(j.getSetting)("min_rows",1),maxRows:Object(j.getSetting)("max_rows",6)})),Object(r.createElement)(u.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(m.a,{settings:i,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(u.PanelBody,{title:Object(n.__)("Filter by Product Category","woocommerce"),initialOpen:!1},Object(r.createElement)(h.a,{selected:c,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({categories:c})},operator:o,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({catOperator:e})}})),Object(r.createElement)(u.PanelBody,{title:Object(n.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(E.a,{setAttributes:t,value:d})))}render(){const{name:e,attributes:t}=this.props;return t.isPreview?O.a:Object(r.createElement)(r.Fragment,null,this.getInspectorControls(),Object(r.createElement)(u.Disabled,null,Object(r.createElement)(g.a,{block:e,attributes:t})))}}var f=w,_=c(75);Object(o.registerBlockType)("woocommerce/product-top-rated",{title:Object(n.__)("Top Rated Products","woocommerce"),icon:{src:Object(r.createElement)(a.a,{icon:i,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of your top rated products.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{..._.a},transforms:{from:[{type:"block",blocks:Object(s.without)(_.b,"woocommerce/product-top-rated"),transform:e=>Object(o.createBlock)("woocommerce/product-top-rated",e)}]},edit:e=>Object(r.createElement)(f,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:i,price:a,rating:s,title:u}=c;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:l?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:l,onChange:()=>t({...c,image:!l})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:a?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,price:!a})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:s?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,rating:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:i?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,button:!i})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:i,alignButtons:a,minColumns:s=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,s,u);i({columns:Number.isNaN(t)?"":t})},min:s,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);i({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:a?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:a,onChange:()=>i({alignButtons:!a})}))}},64:function(e,t,c){"use strict";var r=c(6),n=c.n(r),o=c(0),l=c(1),i=c(34),a=c(96),s=c(3),u=c(10),b=c(26),d=c(28),g=Object(u.createHigherOrderComponent)(e=>class extends o.Component{constructor(){super(...arguments),this.state={error:null,loading:!1,categories:[]},this.loadCategories=this.loadCategories.bind(this)}componentDidMount(){this.loadCategories()}loadCategories(){this.setState({loading:!0}),Object(b.c)().then(e=>{this.setState({categories:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(d.a)(e);this.setState({categories:[],loading:!1,error:t})})}render(){const{error:t,loading:c,categories:r}=this.state;return Object(o.createElement)(e,n()({},this.props,{error:t,isLoading:c,categories:r}))}},"withCategories"),m=c(33),p=c(4),h=c.n(p);c(100);const E=e=>{let{categories:t,error:c,isLoading:r,onChange:u,onOperatorChange:b,operator:d,selected:g,isCompact:p,isSingle:E,showReviewCount:O}=e;const j={clear:Object(l.__)("Clear all product categories","woocommerce"),list:Object(l.__)("Product Categories","woocommerce"),noItems:Object(l.__)("Your store doesn't have any product categories.","woocommerce"),search:Object(l.__)("Search for product categories","woocommerce"),selected:e=>Object(l.sprintf)(
6
  /* translators: %d is the count of selected categories. */
7
  Object(l._n)("%d category selected","%d categories selected",e,"woocommerce"),e),updated:Object(l.__)("Category search results updated.","woocommerce")};return c?Object(o.createElement)(m.a,{error:c}):Object(o.createElement)(o.Fragment,null,Object(o.createElement)(a.a,{className:"woocommerce-product-categories",list:t,isLoading:r,selected:g.map(e=>t.find(t=>t.id===e)).filter(Boolean),onChange:u,renderItem:e=>{const{item:t,search:c,depth:r=0}=e,a=t.breadcrumbs.length?`${t.breadcrumbs.join(", ")}, ${t.name}`:t.name,s=O?Object(l.sprintf)(
8
  /* translators: %1$s is the item name, %2$d is the count of reviews for the item. */
2
  /* Translators: %s search term */
3
  noResults:Object(o.__)("No results for %s","woocommerce"),search:Object(o.__)("Search for items","woocommerce"),selected:e=>Object(o.sprintf)(
4
  /* translators: Number of items selected from list. */
5
+ Object(o._n)("%d item selected","%d items selected",e,"woocommerce"),e),updated:Object(o.__)("Search results updated.","woocommerce")},i=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e;const c=Object(n.groupBy)(e,"parent"),r=Object(n.keyBy)(t,"id"),o=["0"],l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!e.parent)return e.name?[e.name]:[];const t=l(r[e.parent]);return[...t,e.name]},i=e=>e.map(e=>{const t=c[e.id];return o.push(""+e.id),{...e,breadcrumbs:l(r[e.parent]),children:t&&t.length?i(t):[]}}),a=i(c[0]||[]);return Object.entries(c).forEach(e=>{let[t,c]=e;o.includes(t)||a.push(...i(c||[]))}),a},a=(e,t,c)=>{if(!t)return c?i(e):e;const r=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"i"),n=e.map(e=>!!r.test(e.name)&&e).filter(Boolean);return c?i(n,e):n},s=(e,t)=>{if(!t)return e;const c=new RegExp(t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&"),"ig");return e.split(c).map((e,c)=>0===c?e:Object(r.createElement)(r.Fragment,{key:c},Object(r.createElement)("strong",null,t),e))},u=e=>1===e.length?e.slice(0,1).toString():2===e.length?e.slice(0,1).toString()+" › "+e.slice(-1).toString():e.slice(0,1).toString()+" … "+e.slice(-1).toString()},24:function(e,t,c){"use strict";c.d(t,"o",(function(){return o})),c.d(t,"m",(function(){return l})),c.d(t,"l",(function(){return i})),c.d(t,"n",(function(){return a})),c.d(t,"j",(function(){return s})),c.d(t,"e",(function(){return u})),c.d(t,"f",(function(){return b})),c.d(t,"g",(function(){return d})),c.d(t,"k",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"h",(function(){return h})),c.d(t,"a",(function(){return E})),c.d(t,"i",(function(){return O})),c.d(t,"b",(function(){return j}));var r,n=c(2);const o=Object(n.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),l=o.pluginUrl+"images/",i=o.pluginUrl+"build/",a=o.buildPhase,s=null===(r=n.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=n.STORE_PAGES.checkout.id,b=n.STORE_PAGES.checkout.permalink,d=n.STORE_PAGES.privacy.permalink,g=(n.STORE_PAGES.privacy.title,n.STORE_PAGES.terms.permalink),m=(n.STORE_PAGES.terms.title,n.STORE_PAGES.cart.id),p=n.STORE_PAGES.cart.permalink,h=(n.STORE_PAGES.myaccount.permalink?n.STORE_PAGES.myaccount.permalink:Object(n.getSetting)("wpLoginUrl","/wp-login.php"),Object(n.getSetting)("shippingCountries",{})),E=Object(n.getSetting)("allowedCountries",{}),O=Object(n.getSetting)("shippingStates",{}),j=Object(n.getSetting)("allowedStates",{})},26:function(e,t,c){"use strict";c.d(t,"h",(function(){return s})),c.d(t,"e",(function(){return u})),c.d(t,"b",(function(){return b})),c.d(t,"i",(function(){return d})),c.d(t,"f",(function(){return g})),c.d(t,"c",(function(){return m})),c.d(t,"d",(function(){return p})),c.d(t,"g",(function(){return h})),c.d(t,"a",(function(){return E}));var r=c(16),n=c(15),o=c.n(n),l=c(7),i=c(2),a=c(24);const s=e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const i=(e=>{let{selected:t=[],search:c="",queryArgs:n={}}=e;const o=a.o.productCount>100,l={per_page:o?100:0,catalog_visibility:"any",search:c,orderby:"title",order:"asc"},i=[Object(r.addQueryArgs)("/wc/store/v1/products",{...l,...n})];return o&&t.length&&i.push(Object(r.addQueryArgs)("/wc/store/v1/products",{catalog_visibility:"any",include:t,per_page:0})),i})({selected:t,search:c,queryArgs:n});return Promise.all(i.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id").map(e=>({...e,parent:0}))).catch(e=>{throw e})},u=e=>o()({path:"/wc/store/v1/products/"+e}),b=()=>o()({path:"wc/store/v1/products/attributes"}),d=e=>o()({path:`wc/store/v1/products/attributes/${e}/terms`}),g=e=>{let{selected:t=[],search:c}=e;const n=(e=>{let{selected:t=[],search:c}=e;const n=Object(i.getSetting)("limitTags",!1),o=[Object(r.addQueryArgs)("wc/store/v1/products/tags",{per_page:n?100:0,orderby:n?"count":"name",order:n?"desc":"asc",search:c})];return n&&t.length&&o.push(Object(r.addQueryArgs)("wc/store/v1/products/tags",{include:t})),o})({selected:t,search:c});return Promise.all(n.map(e=>o()({path:e}))).then(e=>Object(l.uniqBy)(Object(l.flatten)(e),"id"))},m=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products/categories",{per_page:0,...e})}),p=e=>o()({path:"wc/store/v1/products/categories/"+e}),h=e=>o()({path:Object(r.addQueryArgs)("wc/store/v1/products",{per_page:0,type:"variation",parent:e})}),E=(e,t)=>{if(!e.title.raw)return e.slug;const c=1===t.filter(t=>t.title.raw===e.title.raw).length;return e.title.raw+(c?"":" - "+e.slug)}},28:function(e,t,c){"use strict";c.d(t,"a",(function(){return o})),c.d(t,"b",(function(){return l}));var r=c(1),n=c(14);const o=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},l=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(n.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},3:function(e,t){e.exports=window.wp.components},32:function(e,t){e.exports=window.wp.escapeHtml},33:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(32);t.a=e=>{let{error:t}=e;return Object(r.createElement)("div",{className:"wc-block-error-message"},(e=>{let{message:t,type:c}=e;return t?"general"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):"api"===c?Object(r.createElement)("span",null,Object(n.__)("The following error was returned from the API","woocommerce"),Object(r.createElement)("br",null),Object(r.createElement)("code",null,Object(o.escapeHTML)(t))):t:Object(n.__)("An unknown error occurred which prevented the block from being updated.","woocommerce")})(t))}},34:function(e,t,c){"use strict";c.d(t,"a",(function(){return i}));var r=c(6),n=c.n(r),o=c(0),l=c(21);const i=e=>{let{countLabel:t,className:c,depth:r=0,controlId:i="",item:a,isSelected:s,isSingle:u,onSelect:b,search:d="",...g}=e;const m=null!=t&&void 0!==a.count&&null!==a.count,p=[c,"woocommerce-search-list__item"];p.push("depth-"+r),u&&p.push("is-radio-button"),m&&p.push("has-count");const h=a.breadcrumbs&&a.breadcrumbs.length,E=g.name||"search-list-item-"+i,O=`${E}-${a.id}`;return Object(o.createElement)("label",{htmlFor:O,className:p.join(" ")},u?Object(o.createElement)("input",n()({type:"radio",id:O,name:E,value:a.value,onChange:b(a),checked:s,className:"woocommerce-search-list__item-input"},g)):Object(o.createElement)("input",n()({type:"checkbox",id:O,name:E,value:a.value,onChange:b(a),checked:s,className:"woocommerce-search-list__item-input"},g)),Object(o.createElement)("span",{className:"woocommerce-search-list__item-label"},h?Object(o.createElement)("span",{className:"woocommerce-search-list__item-prefix"},Object(l.b)(a.breadcrumbs)):null,Object(o.createElement)("span",{className:"woocommerce-search-list__item-name"},Object(l.d)(a.name,d))),!!m&&Object(o.createElement)("span",{className:"woocommerce-search-list__item-count"},t||a.count))};t.b=i},371:function(e,t,c){e.exports=c(489)},489:function(e,t,c){"use strict";c.r(t);var r=c(0),n=c(1),o=c(13),l=c(11),i=Object(r.createElement)(l.SVG,{xmlns:"http://www.w3.org/2000/SVG",viewBox:"0 0 24 24"},Object(r.createElement)("path",{opacity:".87",fill:"none",d:"M0 0h24v24H0V0z"}),Object(r.createElement)("path",{d:"M21 8h-6.31l.95-4.57.03-.32c0-.41-.17-.79-.44-1.06L14.17 1 7.59 7.59C7.22 7.95 7 8.45 7 9v10c0 1.1.9 2 2 2h9c.83 0 1.54-.5 1.84-1.22l3.02-7.05c.09-.23.14-.47.14-.73v-2c0-1.1-.9-2-2-2zm0 4l-3 7H9V9l4.34-4.34L12.23 10H21v2zM1 9h4v12H1z"})),a=c(110),s=c(7),u=c(3),b=c(5),d=c(53),g=c.n(d),m=c(60),p=c(61),h=c(64),E=c(83),O=c(137),j=c(2);class w extends r.Component{getInspectorControls(){const{attributes:e,setAttributes:t}=this.props,{categories:c,catOperator:o,columns:l,contentVisibility:i,rows:a,alignButtons:s,stockStatus:d}=e;return Object(r.createElement)(b.InspectorControls,{key:"inspector"},Object(r.createElement)(u.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(p.a,{columns:l,rows:a,alignButtons:s,setAttributes:t,minColumns:Object(j.getSetting)("min_columns",1),maxColumns:Object(j.getSetting)("max_columns",6),minRows:Object(j.getSetting)("min_rows",1),maxRows:Object(j.getSetting)("max_rows",6)})),Object(r.createElement)(u.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(m.a,{settings:i,onChange:e=>t({contentVisibility:e})})),Object(r.createElement)(u.PanelBody,{title:Object(n.__)("Filter by Product Category","woocommerce"),initialOpen:!1},Object(r.createElement)(h.a,{selected:c,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t}=e;return t});t({categories:c})},operator:o,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({catOperator:e})}})),Object(r.createElement)(u.PanelBody,{title:Object(n.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(E.a,{setAttributes:t,value:d})))}render(){const{name:e,attributes:t}=this.props;return t.isPreview?O.a:Object(r.createElement)(r.Fragment,null,this.getInspectorControls(),Object(r.createElement)(u.Disabled,null,Object(r.createElement)(g.a,{block:e,attributes:t})))}}var f=w,_=c(75);Object(o.registerBlockType)("woocommerce/product-top-rated",{title:Object(n.__)("Top Rated Products","woocommerce"),icon:{src:Object(r.createElement)(a.a,{icon:i,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of your top rated products.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{..._.a},transforms:{from:[{type:"block",blocks:Object(s.without)(_.b,"woocommerce/product-top-rated"),transform:e=>Object(o.createBlock)("woocommerce/product-top-rated",e)}]},edit:e=>Object(r.createElement)(f,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:i,price:a,rating:s,title:u}=c,b=!1!==l;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:b?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:b,onChange:()=>t({...c,image:!b})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:a?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,price:!a})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:s?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,rating:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:i?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,button:!i})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:i,alignButtons:a,minColumns:s=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,s,u);i({columns:Number.isNaN(t)?"":t})},min:s,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);i({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:a?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:a,onChange:()=>i({alignButtons:!a})}))}},64:function(e,t,c){"use strict";var r=c(6),n=c.n(r),o=c(0),l=c(1),i=c(34),a=c(96),s=c(3),u=c(10),b=c(26),d=c(28),g=Object(u.createHigherOrderComponent)(e=>class extends o.Component{constructor(){super(...arguments),this.state={error:null,loading:!1,categories:[]},this.loadCategories=this.loadCategories.bind(this)}componentDidMount(){this.loadCategories()}loadCategories(){this.setState({loading:!0}),Object(b.c)().then(e=>{this.setState({categories:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(d.a)(e);this.setState({categories:[],loading:!1,error:t})})}render(){const{error:t,loading:c,categories:r}=this.state;return Object(o.createElement)(e,n()({},this.props,{error:t,isLoading:c,categories:r}))}},"withCategories"),m=c(33),p=c(4),h=c.n(p);c(100);const E=e=>{let{categories:t,error:c,isLoading:r,onChange:u,onOperatorChange:b,operator:d,selected:g,isCompact:p,isSingle:E,showReviewCount:O}=e;const j={clear:Object(l.__)("Clear all product categories","woocommerce"),list:Object(l.__)("Product Categories","woocommerce"),noItems:Object(l.__)("Your store doesn't have any product categories.","woocommerce"),search:Object(l.__)("Search for product categories","woocommerce"),selected:e=>Object(l.sprintf)(
6
  /* translators: %d is the count of selected categories. */
7
  Object(l._n)("%d category selected","%d categories selected",e,"woocommerce"),e),updated:Object(l.__)("Category search results updated.","woocommerce")};return c?Object(o.createElement)(m.a,{error:c}):Object(o.createElement)(o.Fragment,null,Object(o.createElement)(a.a,{className:"woocommerce-product-categories",list:t,isLoading:r,selected:g.map(e=>t.find(t=>t.id===e)).filter(Boolean),onChange:u,renderItem:e=>{const{item:t,search:c,depth:r=0}=e,a=t.breadcrumbs.length?`${t.breadcrumbs.join(", ")}, ${t.name}`:t.name,s=O?Object(l.sprintf)(
8
  /* translators: %1$s is the item name, %2$d is the count of reviews for the item. */
packages/woocommerce-blocks/build/products-by-attribute.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => '0c8d03e49af5fd97ee44bd3b25ab2111');
1
+ <?php return array('dependencies' => array('lodash', 'wc-settings', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-escape-html', 'wp-html-entities', 'wp-i18n', 'wp-polyfill', 'wp-primitives', 'wp-server-side-render', 'wp-url'), 'version' => 'f89dd05017afce0eac9efcaa72859e50');
packages/woocommerce-blocks/build/products-by-attribute.js CHANGED
@@ -12,7 +12,7 @@ Object(n._n)("%1$s, has %2$d term","%1$s, has %2$d terms",t.count,"woocommerce")
12
  /* translators: %d is the count of products. */
13
  Object(n._n)("%d product","%d products",t.count,"woocommerce"),t.count),"aria-label":Object(n.sprintf)(
14
  /* translators: %1$s is the attribute name, %2$d is the count of products for that attribute. */
15
- Object(n._n)("%1$s, has %2$d product","%1$s, has %2$d products",t.count,"woocommerce"),b,t.count)}))},messages:f,isCompact:u,isHierarchical:!0}),!!i&&Object(r.createElement)("div",{hidden:g.length<2},Object(r.createElement)(d.SelectControl,{className:"woocommerce-product-attributes__operator",label:Object(n.__)("Display products matching","woocommerce"),help:Object(n.__)("Pick at least two attributes to use this setting.","woocommerce"),value:m,onChange:i,options:[{label:Object(n.__)("Any selected attributes","woocommerce"),value:"any"},{label:Object(n.__)("All selected attributes","woocommerce"),value:"all"}]})))};S.defaultProps={isCompact:!1,operator:"any"};var C,P=(C=Object(j.withInstanceId)(S),e=>{const{selected:t=[]}=e,c=t.length?t[0].attr_slug:null,[n,o]=Object(r.useState)(null),[l,a]=Object(r.useState)(0),[i,s]=Object(r.useState)({}),[u,b]=Object(r.useState)(!0),[d,m]=Object(r.useState)(!1),[g,p]=Object(r.useState)(null);return Object(r.useEffect)(()=>{null===n&&Object(w.b)().then(e=>{if(e=e.map(e=>({...e,parent:0})),o(e),c){const t=_(c,e,"taxonomy");t&&a(t.id)}}).catch(async e=>{p(await Object(f.a)(e))}).finally(()=>{b(!1)})},[n,c]),Object(r.useEffect)(()=>{const e=_(l,n);e&&(m(!0),Object(w.i)(l).then(t=>{t=t.map(t=>({...t,parent:l,attr_slug:e.taxonomy})),s(e=>({...e,[l]:t}))}).catch(async e=>{p(await Object(f.a)(e))}).finally(()=>{m(!1)}))},[l,n]),Object(r.createElement)(C,h()({},e,{attributes:n||[],error:g,expandedAttribute:l,onExpandAttribute:a,isLoading:u,termsAreLoading:d,termsList:i}))}),A=c(97),N=c(83),T=c(137);class B extends r.Component{getInspectorControls(){const{setAttributes:e}=this.props,{attributes:t,attrOperator:c,columns:o,contentVisibility:l,orderby:a,rows:u,alignButtons:b,stockStatus:p}=this.props.attributes;return Object(r.createElement)(s.InspectorControls,{key:"inspector"},Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{columns:o,rows:u,alignButtons:b,setAttributes:e,minColumns:Object(i.getSetting)("min_columns",1),maxColumns:Object(i.getSetting)("max_columns",6),minRows:Object(i.getSetting)("min_rows",1),maxRows:Object(i.getSetting)("max_rows",6)})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(m.a,{settings:l,onChange:t=>e({contentVisibility:t})})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Filter by Product Attribute","woocommerce"),initialOpen:!1},Object(r.createElement)(P,{selected:t,onChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=t.map(e=>{let{id:t,attr_slug:c}=e;return{id:t,attr_slug:c}});e({attributes:c})},operator:c,onOperatorChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return e({attrOperator:t})},isCompact:!0})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Order By","woocommerce"),initialOpen:!1},Object(r.createElement)(A.a,{setAttributes:e,value:a})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(N.a,{setAttributes:e,value:p})))}renderEditMode(){const{debouncedSpeak:e,setAttributes:t}=this.props,c=this.props.attributes;return Object(r.createElement)(d.Placeholder,{icon:Object(r.createElement)(o.a,{icon:l.a}),label:Object(n.__)("Products by Attribute","woocommerce"),className:"wc-block-products-grid wc-block-products-by-attribute"},Object(n.__)("Display a grid of products from your selected attributes.","woocommerce"),Object(r.createElement)("div",{className:"wc-block-products-by-attribute__selection"},Object(r.createElement)(P,{selected:c.attributes,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t,attr_slug:c}=e;return{id:t,attr_slug:c}});t({attributes:c})},operator:c.attrOperator,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({attrOperator:e})}}),Object(r.createElement)(d.Button,{isPrimary:!0,onClick:()=>{t({editMode:!1}),e(Object(n.__)("Showing Products by Attribute block preview.","woocommerce"))}},Object(n.__)("Done","woocommerce"))))}render(){const{attributes:e,name:t,setAttributes:c}=this.props,{editMode:o}=e;return e.isPreview?T.a:Object(r.createElement)(r.Fragment,null,Object(r.createElement)(s.BlockControls,null,Object(r.createElement)(d.ToolbarGroup,{controls:[{icon:"edit",title:Object(n.__)("Edit selected attribute","woocommerce"),onClick:()=>c({editMode:!o}),isActive:o}]})),this.getInspectorControls(),o?this.renderEditMode():Object(r.createElement)(d.Disabled,null,Object(r.createElement)(b.a,{block:t,attributes:e})))}}var R=Object(d.withSpokenMessages)(B);Object(a.registerBlockType)("woocommerce/products-by-attribute",{title:Object(n.__)("Products by Attribute","woocommerce"),icon:{src:Object(r.createElement)(o.a,{icon:l.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of products with selected attributes.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{attributes:{type:"array",default:[]},attrOperator:{type:"string",default:"any"},columns:{type:"number",default:Object(i.getSetting)("default_columns",3)},editMode:{type:"boolean",default:!0},contentVisibility:{type:"object",default:{image:!0,title:!0,price:!0,rating:!0,button:!0}},orderby:{type:"string",default:"date"},rows:{type:"number",default:Object(i.getSetting)("default_rows",3)},alignButtons:{type:"boolean",default:!1},isPreview:{type:"boolean",default:!1},stockStatus:{type:"array",default:Object.keys(Object(i.getSetting)("stockStatusOptions",[]))}},edit:e=>Object(r.createElement)(R,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:a,price:i,rating:s,title:u}=c;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:l?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:l,onChange:()=>t({...c,image:!l})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:i?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,price:!i})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:s?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,rating:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:a?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,button:!a})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:a,alignButtons:i,minColumns:s=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,s,u);a({columns:Number.isNaN(t)?"":t})},min:s,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);a({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:i?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:i,onChange:()=>a({alignButtons:!i})}))}},7:function(e,t){e.exports=window.lodash},83:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(2),l=c(3);const a=Object(o.getSetting)("hideOutOfStockItems",!1),i=Object(o.getSetting)("stockStatusOptions",{});t.a=e=>{let{value:t,setAttributes:c}=e;const{outofstock:o,...s}=i,u=a?s:i,b=Object.entries(u).map(e=>{let[t,c]=e;return{value:t,label:c}}).filter(e=>!!e.label),[d,m]=Object(r.useState)(t);Object(r.useEffect)(()=>{c({stockStatus:["",...d]})},[d,c]);const g=Object(r.useCallback)(e=>{const t=d.includes(e),c=d.filter(t=>t!==e);t||(c.push(e),c.sort()),m(c)},[d]);return Object(r.createElement)(r.Fragment,null,b.map(e=>{const t=d.includes(e.value)?
16
  /* translators: %s stock status. */
17
  Object(n.__)('Stock status "%s" visible.',"woocommerce"):
18
  /* translators: %s stock status. */
12
  /* translators: %d is the count of products. */
13
  Object(n._n)("%d product","%d products",t.count,"woocommerce"),t.count),"aria-label":Object(n.sprintf)(
14
  /* translators: %1$s is the attribute name, %2$d is the count of products for that attribute. */
15
+ Object(n._n)("%1$s, has %2$d product","%1$s, has %2$d products",t.count,"woocommerce"),b,t.count)}))},messages:f,isCompact:u,isHierarchical:!0}),!!i&&Object(r.createElement)("div",{hidden:g.length<2},Object(r.createElement)(d.SelectControl,{className:"woocommerce-product-attributes__operator",label:Object(n.__)("Display products matching","woocommerce"),help:Object(n.__)("Pick at least two attributes to use this setting.","woocommerce"),value:m,onChange:i,options:[{label:Object(n.__)("Any selected attributes","woocommerce"),value:"any"},{label:Object(n.__)("All selected attributes","woocommerce"),value:"all"}]})))};S.defaultProps={isCompact:!1,operator:"any"};var C,P=(C=Object(j.withInstanceId)(S),e=>{const{selected:t=[]}=e,c=t.length?t[0].attr_slug:null,[n,o]=Object(r.useState)(null),[l,a]=Object(r.useState)(0),[i,s]=Object(r.useState)({}),[u,b]=Object(r.useState)(!0),[d,m]=Object(r.useState)(!1),[g,p]=Object(r.useState)(null);return Object(r.useEffect)(()=>{null===n&&Object(w.b)().then(e=>{if(e=e.map(e=>({...e,parent:0})),o(e),c){const t=_(c,e,"taxonomy");t&&a(t.id)}}).catch(async e=>{p(await Object(f.a)(e))}).finally(()=>{b(!1)})},[n,c]),Object(r.useEffect)(()=>{const e=_(l,n);e&&(m(!0),Object(w.i)(l).then(t=>{t=t.map(t=>({...t,parent:l,attr_slug:e.taxonomy})),s(e=>({...e,[l]:t}))}).catch(async e=>{p(await Object(f.a)(e))}).finally(()=>{m(!1)}))},[l,n]),Object(r.createElement)(C,h()({},e,{attributes:n||[],error:g,expandedAttribute:l,onExpandAttribute:a,isLoading:u,termsAreLoading:d,termsList:i}))}),A=c(97),N=c(83),T=c(137);class B extends r.Component{getInspectorControls(){const{setAttributes:e}=this.props,{attributes:t,attrOperator:c,columns:o,contentVisibility:l,orderby:a,rows:u,alignButtons:b,stockStatus:p}=this.props.attributes;return Object(r.createElement)(s.InspectorControls,{key:"inspector"},Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Layout","woocommerce"),initialOpen:!0},Object(r.createElement)(g.a,{columns:o,rows:u,alignButtons:b,setAttributes:e,minColumns:Object(i.getSetting)("min_columns",1),maxColumns:Object(i.getSetting)("max_columns",6),minRows:Object(i.getSetting)("min_rows",1),maxRows:Object(i.getSetting)("max_rows",6)})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Content","woocommerce"),initialOpen:!0},Object(r.createElement)(m.a,{settings:l,onChange:t=>e({contentVisibility:t})})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Filter by Product Attribute","woocommerce"),initialOpen:!1},Object(r.createElement)(P,{selected:t,onChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=t.map(e=>{let{id:t,attr_slug:c}=e;return{id:t,attr_slug:c}});e({attributes:c})},operator:c,onOperatorChange:function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return e({attrOperator:t})},isCompact:!0})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Order By","woocommerce"),initialOpen:!1},Object(r.createElement)(A.a,{setAttributes:e,value:a})),Object(r.createElement)(d.PanelBody,{title:Object(n.__)("Filter by stock status","woocommerce"),initialOpen:!1},Object(r.createElement)(N.a,{setAttributes:e,value:p})))}renderEditMode(){const{debouncedSpeak:e,setAttributes:t}=this.props,c=this.props.attributes;return Object(r.createElement)(d.Placeholder,{icon:Object(r.createElement)(o.a,{icon:l.a}),label:Object(n.__)("Products by Attribute","woocommerce"),className:"wc-block-products-grid wc-block-products-by-attribute"},Object(n.__)("Display a grid of products from your selected attributes.","woocommerce"),Object(r.createElement)("div",{className:"wc-block-products-by-attribute__selection"},Object(r.createElement)(P,{selected:c.attributes,onChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];const c=e.map(e=>{let{id:t,attr_slug:c}=e;return{id:t,attr_slug:c}});t({attributes:c})},operator:c.attrOperator,onOperatorChange:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"any";return t({attrOperator:e})}}),Object(r.createElement)(d.Button,{isPrimary:!0,onClick:()=>{t({editMode:!1}),e(Object(n.__)("Showing Products by Attribute block preview.","woocommerce"))}},Object(n.__)("Done","woocommerce"))))}render(){const{attributes:e,name:t,setAttributes:c}=this.props,{editMode:o}=e;return e.isPreview?T.a:Object(r.createElement)(r.Fragment,null,Object(r.createElement)(s.BlockControls,null,Object(r.createElement)(d.ToolbarGroup,{controls:[{icon:"edit",title:Object(n.__)("Edit selected attribute","woocommerce"),onClick:()=>c({editMode:!o}),isActive:o}]})),this.getInspectorControls(),o?this.renderEditMode():Object(r.createElement)(d.Disabled,null,Object(r.createElement)(b.a,{block:t,attributes:e})))}}var R=Object(d.withSpokenMessages)(B);Object(a.registerBlockType)("woocommerce/products-by-attribute",{title:Object(n.__)("Products by Attribute","woocommerce"),icon:{src:Object(r.createElement)(o.a,{icon:l.a,className:"wc-block-editor-components-block-icon"})},category:"woocommerce",keywords:[Object(n.__)("WooCommerce","woocommerce")],description:Object(n.__)("Display a grid of products with selected attributes.","woocommerce"),supports:{align:["wide","full"],html:!1},example:{attributes:{isPreview:!0}},attributes:{attributes:{type:"array",default:[]},attrOperator:{type:"string",default:"any"},columns:{type:"number",default:Object(i.getSetting)("default_columns",3)},editMode:{type:"boolean",default:!0},contentVisibility:{type:"object",default:{image:!0,title:!0,price:!0,rating:!0,button:!0}},orderby:{type:"string",default:"date"},rows:{type:"number",default:Object(i.getSetting)("default_rows",3)},alignButtons:{type:"boolean",default:!1},isPreview:{type:"boolean",default:!1},stockStatus:{type:"array",default:Object.keys(Object(i.getSetting)("stockStatusOptions",[]))}},edit:e=>Object(r.createElement)(R,e),save:()=>null})},5:function(e,t){e.exports=window.wp.blockEditor},53:function(e,t){e.exports=window.wp.serverSideRender},60:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(3);t.a=e=>{let{onChange:t,settings:c}=e;const{image:l,button:a,price:i,rating:s,title:u}=c,b=!1!==l;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product image","woocommerce"),help:b?Object(n.__)("Product image is visible.","woocommerce"):Object(n.__)("Product image is hidden.","woocommerce"),checked:b,onChange:()=>t({...c,image:!b})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product title","woocommerce"),help:u?Object(n.__)("Product title is visible.","woocommerce"):Object(n.__)("Product title is hidden.","woocommerce"),checked:u,onChange:()=>t({...c,title:!u})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product price","woocommerce"),help:i?Object(n.__)("Product price is visible.","woocommerce"):Object(n.__)("Product price is hidden.","woocommerce"),checked:i,onChange:()=>t({...c,price:!i})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Product rating","woocommerce"),help:s?Object(n.__)("Product rating is visible.","woocommerce"):Object(n.__)("Product rating is hidden.","woocommerce"),checked:s,onChange:()=>t({...c,rating:!s})}),Object(r.createElement)(o.ToggleControl,{label:Object(n.__)("Add to Cart button","woocommerce"),help:a?Object(n.__)("Add to Cart button is visible.","woocommerce"):Object(n.__)("Add to Cart button is hidden.","woocommerce"),checked:a,onChange:()=>t({...c,button:!a})}))}},61:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(7),l=c(3);t.a=e=>{let{columns:t,rows:c,setAttributes:a,alignButtons:i,minColumns:s=1,maxColumns:u=6,minRows:b=1,maxRows:d=6}=e;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Columns","woocommerce"),value:t,onChange:e=>{const t=Object(o.clamp)(e,s,u);a({columns:Number.isNaN(t)?"":t})},min:s,max:u}),Object(r.createElement)(l.RangeControl,{label:Object(n.__)("Rows","woocommerce"),value:c,onChange:e=>{const t=Object(o.clamp)(e,b,d);a({rows:Number.isNaN(t)?"":t})},min:b,max:d}),Object(r.createElement)(l.ToggleControl,{label:Object(n.__)("Align Last Block","woocommerce"),help:i?Object(n.__)("The last inner block will be aligned vertically.","woocommerce"):Object(n.__)("The last inner block will follow other content.","woocommerce"),checked:i,onChange:()=>a({alignButtons:!i})}))}},7:function(e,t){e.exports=window.lodash},83:function(e,t,c){"use strict";var r=c(0),n=c(1),o=c(2),l=c(3);const a=Object(o.getSetting)("hideOutOfStockItems",!1),i=Object(o.getSetting)("stockStatusOptions",{});t.a=e=>{let{value:t,setAttributes:c}=e;const{outofstock:o,...s}=i,u=a?s:i,b=Object.entries(u).map(e=>{let[t,c]=e;return{value:t,label:c}}).filter(e=>!!e.label),[d,m]=Object(r.useState)(t);Object(r.useEffect)(()=>{c({stockStatus:["",...d]})},[d,c]);const g=Object(r.useCallback)(e=>{const t=d.includes(e),c=d.filter(t=>t!==e);t||(c.push(e),c.sort()),m(c)},[d]);return Object(r.createElement)(r.Fragment,null,b.map(e=>{const t=d.includes(e.value)?
16
  /* translators: %s stock status. */
17
  Object(n.__)('Stock status "%s" visible.',"woocommerce"):
18
  /* translators: %s stock status. */
packages/woocommerce-blocks/build/single-product-frontend.asset.php CHANGED
@@ -1 +1 @@
1
- <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-checkout', 'wc-blocks-data-store', 'wc-blocks-registry', 'wc-blocks-shared-context', 'wc-blocks-shared-hocs', 'wc-price-format', 'wc-settings', 'wp-a11y', 'wp-api-fetch', 'wp-autop', 'wp-block-editor', 'wp-blocks', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning', 'wp-wordcount'), 'version' => '5a4a9fddc81ecf9fda53025aea481987');
1
+ <?php return array('dependencies' => array('lodash', 'react', 'wc-blocks-checkout', 'wc-blocks-data-store', 'wc-blocks-registry', 'wc-blocks-shared-context', 'wc-blocks-shared-hocs', 'wc-price-format', 'wc-settings', 'wp-a11y', 'wp-api-fetch', 'wp-autop', 'wp-block-editor', 'wp-blocks', 'wp-compose', 'wp-data', 'wp-deprecated', 'wp-dom', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-is-shallow-equal', 'wp-polyfill', 'wp-primitives', 'wp-url', 'wp-warning', 'wp-wordcount'), 'version' => '3e8298f8f589d76df8e804bb8ad2d889');
packages/woocommerce-blocks/build/single-product-frontend.js CHANGED
@@ -1,3 +1,3 @@
1
- !function(e){function t(t){for(var n,o,i=t[0],c=t[1],s=0,l=[];s<i.length;s++)o=i[s],Object.prototype.hasOwnProperty.call(r,o)&&r[o]&&l.push(r[o][0]),r[o]=0;for(n in c)Object.prototype.hasOwnProperty.call(c,n)&&(e[n]=c[n]);for(a&&a(t);l.length;)l.shift()()}var n={},r={71:0,73:0};function o(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,o),r.l=!0,r.exports}o.e=function(e){var t=[],n=r[e];if(0!==n)if(n)t.push(n[2]);else{var i=new Promise((function(t,o){n=r[e]=[t,o]}));t.push(n[2]=i);var c,s=document.createElement("script");s.charset="utf-8",s.timeout=120,o.nc&&s.setAttribute("nonce",o.nc),s.src=function(e){return o.p+""+({0:"vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66",1:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--decc3dc6",58:"product-add-to-cart",59:"product-button",60:"product-category-list",61:"product-image",62:"product-price",63:"product-rating",64:"product-sale-badge",65:"product-sku",66:"product-stock-indicator",67:"product-summary",68:"product-tag-list",69:"product-title",74:"vendors--product-add-to-cart"}[e]||e)+"-frontend.js?ver="+{0:"071743a9ca2cfdafd79f",1:"e2dda84269ff5f357820",58:"a1f5c37ffde9d75afc47",59:"31d91954dd894b010db7",60:"bdcd55f6a78f3780a8c9",61:"1ec1ff9f0e063d3f63ae",62:"36221c05f2759b8bd8fd",63:"09acab57fd9a8594caac",64:"c6ec41b82cb1fe4af0c7",65:"f04dd44c9314944f232b",66:"1e1f4698349331747d15",67:"d613d9c8a37c5b8d3b1a",68:"d655fde20ee518912eb5",69:"9275c1cccdfd844d56f7",74:"d4bf9e962fb49977699e"}[e]}(e);var a=new Error;c=function(t){s.onerror=s.onload=null,clearTimeout(l);var n=r[e];if(0!==n){if(n){var o=t&&("load"===t.type?"missing":t.type),i=t&&t.target&&t.target.src;a.message="Loading chunk "+e+" failed.\n("+o+": "+i+")",a.name="ChunkLoadError",a.type=o,a.request=i,n[1](a)}r[e]=void 0}};var l=setTimeout((function(){c({type:"timeout",target:s})}),12e4);s.onerror=s.onload=c,document.head.appendChild(s)}return Promise.all(t)},o.m=e,o.c=n,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)o.d(n,r,function(t){return e[t]}.bind(null,r));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o.oe=function(e){throw console.error(e),e};var i=window.webpackWcBlocksJsonp=window.webpackWcBlocksJsonp||[],c=i.push.bind(i);i.push=t,i=i.slice();for(var s=0;s<i.length;s++)t(i[s]);var a=c;o(o.s=231)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wc.wcSettings},function(e,t){e.exports=window.React},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var i=typeof r;if("string"===i||"number"===i)e.push(r);else if(Array.isArray(r)){if(r.length){var c=o.apply(null,r);c&&e.push(c)}}else if("object"===i)if(r.toString===Object.prototype.toString)for(var s in r)n.call(r,s)&&r[s]&&e.push(s);else e.push(r.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=window.wc.wcBlocksData},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.data},function(e,t,n){"use strict";function r(){return(r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}n.d(t,"a",(function(){return r}))},,function(e,t){e.exports=window.wc.blocksCheckout},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,n.apply(this,arguments)}e.exports=n,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.isShallowEqual},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.primitives},function(e,t,n){"use strict";var r=n(19),o=n.n(r),i=n(0),c=n(3),s=n(1),a=n(44),l=e=>{let{imageUrl:t=a.l+"/block-error.svg",header:n=Object(s.__)("Oops!","woocommerce"),text:r=Object(s.__)("There was an error loading the content.","woocommerce"),errorMessage:o,errorMessagePrefix:c=Object(s.__)("Error:","woocommerce"),button:l,showErrorBlock:u=!0}=e;return u?Object(i.createElement)("div",{className:"wc-block-error wc-block-components-error"},t&&Object(i.createElement)("img",{className:"wc-block-error__image wc-block-components-error__image",src:t,alt:""}),Object(i.createElement)("div",{className:"wc-block-error__content wc-block-components-error__content"},n&&Object(i.createElement)("p",{className:"wc-block-error__header wc-block-components-error__header"},n),r&&Object(i.createElement)("p",{className:"wc-block-error__text wc-block-components-error__text"},r),o&&Object(i.createElement)("p",{className:"wc-block-error__message wc-block-components-error__message"},c?c+" ":"",o),l&&Object(i.createElement)("p",{className:"wc-block-error__button wc-block-components-error__button"},l))):null};n(33);class u extends c.Component{constructor(){super(...arguments),o()(this,"state",{errorMessage:"",hasError:!1})}static getDerivedStateFromError(e){return void 0!==e.statusText&&void 0!==e.status?{errorMessage:Object(i.createElement)(i.Fragment,null,Object(i.createElement)("strong",null,e.status),": ",e.statusText),hasError:!0}:{errorMessage:e.message,hasError:!0}}render(){const{header:e,imageUrl:t,showErrorMessage:n=!0,showErrorBlock:r=!0,text:o,errorMessagePrefix:c,renderError:s,button:a}=this.props,{errorMessage:u,hasError:d}=this.state;return d?"function"==typeof s?s({errorMessage:u}):Object(i.createElement)(l,{showErrorBlock:r,errorMessage:n?u:null,header:e,imageUrl:t,text:o,errorMessagePrefix:c,button:a}):this.props.children}}t.a=u},function(e,t){e.exports=window.wc.wcBlocksRegistry},function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.a11y},,,,function(e,t,n){"use strict";(function(e){var r=n(0);n(38);const o=Object(r.createContext)({slots:{},fills:{},registerSlot:()=>{void 0!==e&&e.env},updateSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{}});t.a=o}).call(this,n(63))},function(e,t){e.exports=window.wp.apiFetch},,function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));var r=n(0);n(7);const o=Object(r.createContext)({isEditor:!1,currentPostId:0,currentView:"",previewData:{},getPreviewData:()=>{}}),i=()=>Object(r.useContext)(o)},,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return w}));var r=n(6),o=n(0),i=n(5),c=n(7),s=n(18),a=n(118),l=n(27),u=n(68);const d=e=>{const t=e.detail;t&&t.preserveCartData||Object(c.dispatch)(i.CART_STORE_KEY).invalidateResolutionForStore()},p=()=>{1===window.wcBlocksStoreCartListeners.count&&window.wcBlocksStoreCartListeners.remove(),window.wcBlocksStoreCartListeners.count--},m=()=>{Object(o.useEffect)(()=>((()=>{if(window.wcBlocksStoreCartListeners||(window.wcBlocksStoreCartListeners={count:0,remove:()=>{}}),0===window.wcBlocksStoreCartListeners.count){const e=Object(u.b)("added_to_cart","wc-blocks_added_to_cart"),t=Object(u.b)("removed_from_cart","wc-blocks_removed_from_cart");document.body.addEventListener("wc-blocks_added_to_cart",d),document.body.addEventListener("wc-blocks_removed_from_cart",d),window.wcBlocksStoreCartListeners.count=0,window.wcBlocksStoreCartListeners.remove=()=>{e(),t(),document.body.removeEventListener("wc-blocks_added_to_cart",d),document.body.removeEventListener("wc-blocks_removed_from_cart",d)}}window.wcBlocksStoreCartListeners.count++})(),p),[])},f={first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},b={...f,email:""},h={total_items:"",total_items_tax:"",total_fees:"",total_fees_tax:"",total_discount:"",total_discount_tax:"",total_shipping:"",total_shipping_tax:"",total_price:"",total_tax:"",tax_lines:i.EMPTY_TAX_LINES,currency_code:"",currency_symbol:"",currency_minor_unit:2,currency_decimal_separator:"",currency_thousand_separator:"",currency_prefix:"",currency_suffix:""},g=e=>Object.fromEntries(Object.entries(e).map(e=>{let[t,n]=e;return[t,Object(s.decodeEntities)(n)]})),v={cartCoupons:i.EMPTY_CART_COUPONS,cartItems:i.EMPTY_CART_ITEMS,cartFees:i.EMPTY_CART_FEES,cartItemsCount:0,cartItemsWeight:0,cartNeedsPayment:!0,cartNeedsShipping:!0,cartItemErrors:i.EMPTY_CART_ITEM_ERRORS,cartTotals:h,cartIsLoading:!0,cartErrors:i.EMPTY_CART_ERRORS,billingAddress:b,shippingAddress:f,shippingRates:i.EMPTY_SHIPPING_RATES,isLoadingRates:!1,cartHasCalculatedShipping:!1,paymentRequirements:i.EMPTY_PAYMENT_REQUIREMENTS,receiveCart:()=>{},extensions:i.EMPTY_EXTENSIONS},w=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{shouldSelect:!0};const{isEditor:t,previewData:n}=Object(l.a)(),s=null==n?void 0:n.previewCart,{shouldSelect:u}=e,d=Object(o.useRef)();m();const p=Object(c.useSelect)((e,n)=>{let{dispatch:r}=n;if(!u)return v;if(t)return{cartCoupons:s.coupons,cartItems:s.items,cartFees:s.fees,cartItemsCount:s.items_count,cartItemsWeight:s.items_weight,cartNeedsPayment:s.needs_payment,cartNeedsShipping:s.needs_shipping,cartItemErrors:i.EMPTY_CART_ITEM_ERRORS,cartTotals:s.totals,cartIsLoading:!1,cartErrors:i.EMPTY_CART_ERRORS,billingAddress:b,shippingAddress:f,extensions:i.EMPTY_EXTENSIONS,shippingRates:s.shipping_rates,isLoadingRates:!1,cartHasCalculatedShipping:s.has_calculated_shipping,paymentRequirements:s.paymentRequirements,receiveCart:"function"==typeof(null==s?void 0:s.receiveCart)?s.receiveCart:()=>{}};const o=e(i.CART_STORE_KEY),c=o.getCartData(),l=o.getCartErrors(),d=o.getCartTotals(),p=!o.hasFinishedResolution("getCartData"),m=o.isCustomerDataUpdating(),{receiveCart:h}=r(i.CART_STORE_KEY),w=g(c.billingAddress),O=c.needsShipping?g(c.shippingAddress):w,y=c.fees.length>0?c.fees.map(e=>g(e)):i.EMPTY_CART_FEES;return{cartCoupons:c.coupons.length>0?c.coupons.map(e=>({...e,label:e.code})):i.EMPTY_CART_COUPONS,cartItems:c.items,cartFees:y,cartItemsCount:c.itemsCount,cartItemsWeight:c.itemsWeight,cartNeedsPayment:c.needsPayment,cartNeedsShipping:c.needsShipping,cartItemErrors:c.errors,cartTotals:d,cartIsLoading:p,cartErrors:l,billingAddress:Object(a.a)(w),shippingAddress:Object(a.a)(O),extensions:c.extensions,shippingRates:c.shippingRates,isLoadingRates:m,cartHasCalculatedShipping:c.hasCalculatedShipping,paymentRequirements:c.paymentRequirements,receiveCart:h}},[u]);return d.current&&Object(r.isEqual)(d.current,p)||(d.current=p),d.current}},function(e,t){e.exports=window.wp.deprecated},function(e,t){},,,,function(e,t){e.exports=window.wc.priceFormat},function(e,t){e.exports=window.wp.warning},function(e,t){e.exports=window.wp.hooks},function(e,t,n){"use strict";n.d(t,"a",(function(){return c}));var r=n(39),o=n(0),i=n(31);const c=()=>{const e=Object(i.a)(),t=Object(o.useRef)(e);return Object(o.useEffect)(()=>{t.current=e},[e]),{dispatchStoreEvent:Object(o.useCallback)((function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(r.doAction)("experimental__woocommerce_blocks-"+e,t)}catch(e){console.error(e)}}),[]),dispatchCheckoutEvent:Object(o.useCallback)((function(e){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(r.doAction)("experimental__woocommerce_blocks-checkout-"+e,{...n,storeCart:t.current})}catch(e){console.error(e)}}),[])}}},function(e,t,n){"use strict";var r=n(8),o=n(0),i=n(15),c=function({icon:e,className:t,...n}){const i=["dashicon","dashicons","dashicons-"+e,t].filter(Boolean).join(" ");return Object(o.createElement)("span",Object(r.a)({className:i},n))};t.a=function({icon:e=null,size:t=24,...n}){if("string"==typeof e)return Object(o.createElement)(c,Object(r.a)({icon:e},n));if(Object(o.isValidElement)(e)&&c===e.type)return Object(o.cloneElement)(e,{...n});if("function"==typeof e)return e.prototype instanceof o.Component?Object(o.createElement)(e,{size:t,...n}):e({size:t,...n});if(e&&("svg"===e.type||e.type===i.SVG)){const r={width:t,height:t,...e.props,...n};return Object(o.createElement)(i.SVG,r)}return Object(o.isValidElement)(e)?Object(o.cloneElement)(e,{size:t,...n}):e}},function(e,t,n){"use strict";var r=n(4),o=n.n(r),i=n(0);t.a=Object(i.forwardRef)((function({as:e="div",className:t,...n},r){return function({as:e="div",...t}){return"function"==typeof t.children?t.children(t):Object(i.createElement)(e,t)}({as:e,className:o()("components-visually-hidden",t),...n,ref:r})}))},function(e,t){e.exports=window.wc.wcBlocksSharedContext},function(e,t,n){"use strict";n.d(t,"n",(function(){return i})),n.d(t,"l",(function(){return c})),n.d(t,"k",(function(){return s})),n.d(t,"m",(function(){return a})),n.d(t,"i",(function(){return l})),n.d(t,"d",(function(){return u})),n.d(t,"f",(function(){return d})),n.d(t,"j",(function(){return p})),n.d(t,"c",(function(){return m})),n.d(t,"e",(function(){return f})),n.d(t,"g",(function(){return b})),n.d(t,"a",(function(){return h})),n.d(t,"h",(function(){return g})),n.d(t,"b",(function(){return v}));var r,o=n(2);const i=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),c=i.pluginUrl+"images/",s=i.pluginUrl+"build/",a=i.buildPhase,l=null===(r=o.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=(o.STORE_PAGES.checkout.id,o.STORE_PAGES.checkout.permalink),d=o.STORE_PAGES.privacy.permalink,p=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),m=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id,o.STORE_PAGES.cart.permalink),f=o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),b=Object(o.getSetting)("shippingCountries",{}),h=Object(o.getSetting)("allowedCountries",{}),g=Object(o.getSetting)("shippingStates",{}),v=Object(o.getSetting)("allowedStates",{})},function(e,t,n){"use strict";var r=n(2),o=n(1),i=n(69),c=n(52);const s=Object(r.getSetting)("countryLocale",{}),a=e=>{const t={};return void 0!==e.label&&(t.label=e.label),void 0!==e.required&&(t.required=e.required),void 0!==e.hidden&&(t.hidden=e.hidden),void 0===e.label||e.optionalLabel||(t.optionalLabel=Object(o.sprintf)(
2
  /* translators: %s Field label. */
3
  Object(o.__)("%s (optional)","woocommerce"),e.label)),e.priority&&(Object(i.a)(e.priority)&&(t.index=e.priority),Object(c.a)(e.priority)&&(t.index=parseInt(e.priority,10))),e.hidden&&(t.required=!1),t},l=Object.entries(s).map(e=>{let[t,n]=e;return[t,Object.entries(n).map(e=>{let[t,n]=e;return[t,a(n)]}).reduce((e,t)=>{let[n,r]=t;return e[n]=r,e},{})]}).reduce((e,t)=>{let[n,r]=t;return e[n]=r,e},{});t.a=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";const o=n&&void 0!==l[n]?l[n]:{};return e.map(e=>({key:e,...r.defaultAddressFields[e]||{},...o[e]||{},...t[e]||{}})).sort((e,t)=>e.index-t.index)}},,,function(e,t,n){"use strict";n.d(t,"a",(function(){return l}));var r=n(11),o=n.n(r),i=n(0),c=n(16);const s=[".wp-block-woocommerce-cart"],a=e=>{let{Block:t,containers:n,getProps:r=(()=>({})),getErrorBoundaryProps:s=(()=>({}))}=e;0!==n.length&&Array.prototype.forEach.call(n,(e,n)=>{const a=r(e,n),l=s(e,n),u={...e.dataset,...a.attributes||{}};(e=>{let{Block:t,container:n,attributes:r={},props:s={},errorBoundaryProps:a={}}=e;Object(i.render)(Object(i.createElement)(c.a,a,Object(i.createElement)(i.Suspense,{fallback:Object(i.createElement)("div",{className:"wc-block-placeholder"})},t&&Object(i.createElement)(t,o()({},s,{attributes:r})))),n,()=>{n.classList&&n.classList.remove("is-loading")})})({Block:t,container:e,props:a,attributes:u,errorBoundaryProps:l})})},l=e=>{const t=document.body.querySelectorAll(s.join(",")),{Block:n,getProps:r,getErrorBoundaryProps:o,selector:i}=e;(e=>{let{Block:t,getProps:n,getErrorBoundaryProps:r,selector:o,wrappers:i}=e;const c=document.body.querySelectorAll(o);i&&i.length>0&&Array.prototype.filter.call(c,e=>!((e,t)=>Array.prototype.some.call(t,t=>t.contains(e)&&!t.isSameNode(e)))(e,i)),a({Block:t,containers:c,getProps:n,getErrorBoundaryProps:r})})({Block:n,getProps:r,getErrorBoundaryProps:o,selector:i,wrappers:t}),Array.prototype.forEach.call(t,t=>{t.addEventListener("wc-blocks_render_blocks_frontend",()=>{(e=>{let{Block:t,getProps:n,getErrorBoundaryProps:r,selector:o,wrapper:i}=e;const c=i.querySelectorAll(o);a({Block:t,containers:c,getProps:n,getErrorBoundaryProps:r})})({...e,wrapper:t})})})}},,function(e,t,n){"use strict";var r=n(8),o=n(0),i=n(4),c=n.n(i),s=n(6),a=n(32),l=n.n(a),u=n(13),d=n(51),p=n(93),m=n(1);function f(e,t,n){const{defaultView:r}=t,{frameElement:o}=r;if(!o||t===n.ownerDocument)return e;const i=o.getBoundingClientRect();return new r.DOMRect(e.left+i.left,e.top+i.top,e.width,e.height)}let b=0;function h(e){const t=document.scrollingElement||document.body;e&&(b=t.scrollTop);const n=e?"add":"remove";t.classList[n]("lockscroll"),document.documentElement.classList[n]("lockscroll"),e||(t.scrollTop=b)}let g=0;function v(){return Object(o.useEffect)(()=>(0===g&&h(!0),++g,()=>{1===g&&h(!1),--g}),[]),null}var w=n(24);function O(e){const t=Object(o.useContext)(w.a),n=t.slots[e]||{},r=t.fills[e],i=Object(o.useMemo)(()=>r||[],[r]);return{...n,updateSlot:Object(o.useCallback)(n=>{t.updateSlot(e,n)},[e,t.updateSlot]),unregisterSlot:Object(o.useCallback)(n=>{t.unregisterSlot(e,n)},[e,t.unregisterSlot]),fills:i,registerFill:Object(o.useCallback)(n=>{t.registerFill(e,n)},[e,t.registerFill]),unregisterFill:Object(o.useCallback)(n=>{t.unregisterFill(e,n)},[e,t.unregisterFill])}}var y=Object(o.createContext)({registerSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},getSlot:()=>{},getFills:()=>{},subscribe:()=>{}});function E({name:e,children:t,registerFill:n,unregisterFill:r}){const i=(e=>{const{getSlot:t,subscribe:n}=Object(o.useContext)(y),[r,i]=Object(o.useState)(t(e));return Object(o.useEffect)(()=>(i(t(e)),n(()=>{i(t(e))})),[e]),r})(e),c=Object(o.useRef)({name:e,children:t});return Object(o.useLayoutEffect)(()=>(n(e,c.current),()=>r(e,c.current)),[]),Object(o.useLayoutEffect)(()=>{c.current.children=t,i&&i.forceUpdate()},[t]),Object(o.useLayoutEffect)(()=>{e!==c.current.name&&(r(c.current.name,c.current),c.current.name=e,n(e,c.current))},[e]),i&&i.node?(Object(s.isFunction)(t)&&(t=t(i.props.fillProps)),Object(o.createPortal)(t,i.node)):null}var k=e=>Object(o.createElement)(y.Consumer,null,({registerFill:t,unregisterFill:n})=>Object(o.createElement)(E,Object(r.a)({},e,{registerFill:t,unregisterFill:n})));class j extends o.Component{constructor(){super(...arguments),this.isUnmounted=!1,this.bindNode=this.bindNode.bind(this)}componentDidMount(){const{registerSlot:e}=this.props;e(this.props.name,this)}componentWillUnmount(){const{unregisterSlot:e}=this.props;this.isUnmounted=!0,e(this.props.name,this)}componentDidUpdate(e){const{name:t,unregisterSlot:n,registerSlot:r}=this.props;e.name!==t&&(n(e.name),r(t,this))}bindNode(e){this.node=e}forceUpdate(){this.isUnmounted||super.forceUpdate()}render(){const{children:e,name:t,fillProps:n={},getFills:r}=this.props,i=Object(s.map)(r(t,this),e=>{const t=Object(s.isFunction)(e.children)?e.children(n):e.children;return o.Children.map(t,(e,t)=>{if(!e||Object(s.isString)(e))return e;const n=e.key||t;return Object(o.cloneElement)(e,{key:n})})}).filter(Object(s.negate)(o.isEmptyElement));return Object(o.createElement)(o.Fragment,null,Object(s.isFunction)(e)?e(i):i)}}var _=e=>Object(o.createElement)(y.Consumer,null,({registerSlot:t,unregisterSlot:n,getFills:i})=>Object(o.createElement)(j,Object(r.a)({},e,{registerSlot:t,unregisterSlot:n,getFills:i})));function x(){const[,e]=Object(o.useState)({}),t=Object(o.useRef)(!0);return Object(o.useEffect)(()=>()=>{t.current=!1},[]),()=>{t.current&&e({})}}function S({name:e,children:t}){const n=O(e),r=Object(o.useRef)({rerender:x()});return Object(o.useEffect)(()=>(n.registerFill(r),()=>{n.unregisterFill(r)}),[n.registerFill,n.unregisterFill]),n.ref&&n.ref.current?("function"==typeof t&&(t=t(n.fillProps)),Object(o.createPortal)(t,n.ref.current)):null}var C=Object(o.forwardRef)((function({name:e,fillProps:t={},as:n="div",...i},c){const s=Object(o.useContext)(w.a),a=Object(o.useRef)();return Object(o.useLayoutEffect)(()=>(s.registerSlot(e,a,t),()=>{s.unregisterSlot(e,a)}),[s.registerSlot,s.unregisterSlot,e]),Object(o.useLayoutEffect)(()=>{s.updateSlot(e,t)}),Object(o.createElement)(n,Object(r.a)({ref:Object(u.useMergeRefs)([c,a])},i))}));function T(e){return Object(o.createElement)(o.Fragment,null,Object(o.createElement)(k,e),Object(o.createElement)(S,e))}n(12),o.Component;const P=Object(o.forwardRef)(({bubblesVirtually:e,...t},n)=>e?Object(o.createElement)(C,Object(r.a)({},t,{ref:n})):Object(o.createElement)(_,t));function R(e){return"appear"===e?"top":"left"}function A(e,t){const{paddingTop:n,paddingBottom:r,paddingLeft:o,paddingRight:i}=(c=t).ownerDocument.defaultView.getComputedStyle(c);var c;const s=n?parseInt(n,10):0,a=r?parseInt(r,10):0,l=o?parseInt(o,10):0,u=i?parseInt(i,10):0;return{x:e.left+l,y:e.top+s,width:e.width-l-u,height:e.height-s-a,left:e.left+l,right:e.right-u,top:e.top+s,bottom:e.bottom-a}}function N(e,t,n){n?e.getAttribute(t)!==n&&e.setAttribute(t,n):e.hasAttribute(t)&&e.removeAttribute(t)}function M(e,t,n=""){e.style[t]!==n&&(e.style[t]=n)}function L(e,t,n){n?e.classList.contains(t)||e.classList.add(t):e.classList.contains(t)&&e.classList.remove(t)}const B=Object(o.forwardRef)(({headerTitle:e,onClose:t,children:n,className:i,noArrow:s=!0,isAlternate:a,position:b="bottom right",range:h,focusOnMount:g="firstElement",anchorRef:w,shouldAnchorIncludePadding:y,anchorRect:E,getAnchorRect:k,expandOnMobile:j,animate:_=!0,onClickOutside:x,onFocusOutside:S,__unstableStickyBoundaryElement:C,__unstableSlotName:P="Popover",__unstableObserveElement:B,__unstableBoundaryParent:F,__unstableForcePosition:D,__unstableForceXAlignment:I,...U},H)=>{const z=Object(o.useRef)(null),V=Object(o.useRef)(null),W=Object(o.useRef)(),Y=Object(u.useViewportMatch)("medium","<"),[q,X]=Object(o.useState)(),$=O(P),Z=j&&Y,[K,Q]=Object(u.useResizeObserver)();s=Z||s,Object(o.useLayoutEffect)(()=>{if(Z)return L(W.current,"is-without-arrow",s),L(W.current,"is-alternate",a),N(W.current,"data-x-axis"),N(W.current,"data-y-axis"),M(W.current,"top"),M(W.current,"left"),M(V.current,"maxHeight"),void M(V.current,"maxWidth");const e=()=>{if(!W.current||!V.current)return;let e=function(e,t,n,r=!1,o,i){if(t)return t;if(n){if(!e.current)return;const t=n(e.current);return f(t,t.ownerDocument||e.current.ownerDocument,i)}if(!1!==r){if(!(r&&window.Range&&window.Element&&window.DOMRect))return;if("function"==typeof(null==r?void 0:r.cloneRange))return f(Object(d.getRectangleFromRange)(r),r.endContainer.ownerDocument,i);if("function"==typeof(null==r?void 0:r.getBoundingClientRect)){const e=f(r.getBoundingClientRect(),r.ownerDocument,i);return o?e:A(e,r)}const{top:e,bottom:t}=r,n=e.getBoundingClientRect(),c=t.getBoundingClientRect(),s=f(new window.DOMRect(n.left,n.top,n.width,c.bottom-n.top),e.ownerDocument,i);return o?s:A(s,r)}if(!e.current)return;const{parentNode:c}=e.current,s=c.getBoundingClientRect();return o?s:A(s,c)}(z,E,k,w,y,W.current);if(!e)return;const{offsetParent:t,ownerDocument:n}=W.current;let r,o=0;if(t&&t!==n.body){const n=t.getBoundingClientRect();o=n.top,e=new window.DOMRect(e.left-n.left,e.top-n.top,e.width,e.height)}var i;F&&(r=null===(i=W.current.closest(".popover-slot"))||void 0===i?void 0:i.parentNode);const c=Q.height?Q:V.current.getBoundingClientRect(),{popoverTop:l,popoverLeft:u,xAxis:p,yAxis:h,contentHeight:g,contentWidth:v}=function(e,t,n="top",r,o,i,c,s,a){const[l,u="center",d]=n.split(" "),p=function(e,t,n,r,o,i,c,s){const{height:a}=t;if(o){const t=o.getBoundingClientRect().top+a-c;if(e.top<=t)return{yAxis:n,popoverTop:Math.min(e.bottom,t)}}let l=e.top+e.height/2;"bottom"===r?l=e.bottom:"top"===r&&(l=e.top);const u={popoverTop:l,contentHeight:(l-a/2>0?a/2:l)+(l+a/2>window.innerHeight?window.innerHeight-l:a/2)},d={popoverTop:e.top,contentHeight:e.top-10-a>0?a:e.top-10},p={popoverTop:e.bottom,contentHeight:e.bottom+10+a>window.innerHeight?window.innerHeight-10-e.bottom:a};let m,f=n,b=null;if(!o&&!s)if("middle"===n&&u.contentHeight===a)f="middle";else if("top"===n&&d.contentHeight===a)f="top";else if("bottom"===n&&p.contentHeight===a)f="bottom";else{f=d.contentHeight>p.contentHeight?"top":"bottom";const e="top"===f?d.contentHeight:p.contentHeight;b=e!==a?e:null}return m="middle"===f?u.popoverTop:"top"===f?d.popoverTop:p.popoverTop,{yAxis:f,popoverTop:m,contentHeight:b}}(e,t,l,d,r,0,i,s);return{...function(e,t,n,r,o,i,c,s,a){const{width:l}=t;"left"===n&&Object(m.isRTL)()?n="right":"right"===n&&Object(m.isRTL)()&&(n="left"),"left"===r&&Object(m.isRTL)()?r="right":"right"===r&&Object(m.isRTL)()&&(r="left");const u=Math.round(e.left+e.width/2),d={popoverLeft:u,contentWidth:(u-l/2>0?l/2:u)+(u+l/2>window.innerWidth?window.innerWidth-u:l/2)};let p=e.left;"right"===r?p=e.right:"middle"===i||a||(p=u);let f=e.right;"left"===r?f=e.left:"middle"===i||a||(f=u);const b={popoverLeft:p,contentWidth:p-l>0?l:p},h={popoverLeft:f,contentWidth:f+l>window.innerWidth?window.innerWidth-f:l};let g,v=n,w=null;if(!o&&!s)if("center"===n&&d.contentWidth===l)v="center";else if("left"===n&&b.contentWidth===l)v="left";else if("right"===n&&h.contentWidth===l)v="right";else{v=b.contentWidth>h.contentWidth?"left":"right";const e="left"===v?b.contentWidth:h.contentWidth;l>window.innerWidth&&(w=window.innerWidth),e!==l&&(v="center",d.popoverLeft=window.innerWidth/2)}if(g="center"===v?d.popoverLeft:"left"===v?b.popoverLeft:h.popoverLeft,c){const e=c.getBoundingClientRect();g=Math.min(g,e.right-l),Object(m.isRTL)()||(g=Math.max(g,0))}return{xAxis:v,popoverLeft:g,contentWidth:w}}(e,t,u,d,r,p.yAxis,c,s,a),...p}}(e,c,b,C,W.current,o,r,D,I);"number"==typeof l&&"number"==typeof u&&(M(W.current,"top",l+"px"),M(W.current,"left",u+"px")),L(W.current,"is-without-arrow",s||"center"===p&&"middle"===h),L(W.current,"is-alternate",a),N(W.current,"data-x-axis",p),N(W.current,"data-y-axis",h),M(V.current,"maxHeight","number"==typeof g?g+"px":""),M(V.current,"maxWidth","number"==typeof v?v+"px":""),X(({left:"right",right:"left"}[p]||"center")+" "+({top:"bottom",bottom:"top"}[h]||"middle"))};e();const{ownerDocument:t}=W.current,{defaultView:n}=t,r=n.setInterval(e,500);let o;const i=()=>{n.cancelAnimationFrame(o),o=n.requestAnimationFrame(e)};n.addEventListener("click",i),n.addEventListener("resize",e),n.addEventListener("scroll",e,!0);const c=function(e){if(e)return e.endContainer?e.endContainer.ownerDocument:e.top?e.top.ownerDocument:e.ownerDocument}(w);let l;return c&&c!==t&&(c.defaultView.addEventListener("resize",e),c.defaultView.addEventListener("scroll",e,!0)),B&&(l=new n.MutationObserver(e),l.observe(B,{attributes:!0})),()=>{n.clearInterval(r),n.removeEventListener("resize",e),n.removeEventListener("scroll",e,!0),n.removeEventListener("click",i),n.cancelAnimationFrame(o),c&&c!==t&&(c.defaultView.removeEventListener("resize",e),c.defaultView.removeEventListener("scroll",e,!0)),l&&l.disconnect()}},[Z,E,k,w,y,b,Q,C,B,F]);const J=(e,n)=>{if("focus-outside"===e&&S)S(n);else if("focus-outside"===e&&x){const e=new window.MouseEvent("click");Object.defineProperty(e,"target",{get:()=>n.relatedTarget}),l()("Popover onClickOutside prop",{since:"5.3",alternative:"onFocusOutside"}),x(e)}else t&&t()},[ee,te]=Object(u.__experimentalUseDialog)({focusOnMount:g,__unstableOnClose:J,onClose:J}),ne=Object(u.useMergeRefs)([W,ee,H]),re=Boolean(_&&q)&&function(e){if("loading"===e.type)return c()("components-animate__loading");const{type:t,origin:n=R(t)}=e;if("appear"===t){const[e,t="center"]=n.split(" ");return c()("components-animate__appear",{["is-from-"+t]:"center"!==t,["is-from-"+e]:"middle"!==e})}return"slide-in"===t?c()("components-animate__slide-in","is-from-"+n):void 0}({type:"appear",origin:q});let oe=Object(o.createElement)("div",Object(r.a)({className:c()("components-popover",i,re,{"is-expanded":Z,"is-without-arrow":s,"is-alternate":a})},U,{ref:ne},te,{tabIndex:"-1"}),Z&&Object(o.createElement)(v,null),Z&&Object(o.createElement)("div",{className:"components-popover__header"},Object(o.createElement)("span",{className:"components-popover__header-title"},e),Object(o.createElement)(G,{className:"components-popover__close",icon:p.a,onClick:t})),Object(o.createElement)("div",{ref:V,className:"components-popover__content"},Object(o.createElement)("div",{style:{position:"relative"}},K,n)));return $.ref&&(oe=Object(o.createElement)(T,{name:P},oe)),w||E?oe:Object(o.createElement)("span",{ref:z},oe)});B.Slot=Object(o.forwardRef)((function({name:e="Popover"},t){return Object(o.createElement)(P,{bubblesVirtually:!0,name:e,className:"popover-slot",ref:t})}));var F=B,D=function({shortcut:e,className:t}){if(!e)return null;let n,r;return Object(s.isString)(e)&&(n=e),Object(s.isObject)(e)&&(n=e.display,r=e.ariaLabel),Object(o.createElement)("span",{className:t,"aria-label":r},n)};const I=Object(o.createElement)("div",{className:"event-catcher"}),U=({eventHandlers:e,child:t,childrenWithPopover:n})=>Object(o.cloneElement)(Object(o.createElement)("span",{className:"disabled-element-wrapper"},Object(o.cloneElement)(I,e),Object(o.cloneElement)(t,{children:n}),","),e),H=({child:e,eventHandlers:t,childrenWithPopover:n})=>Object(o.cloneElement)(e,{...t,children:n}),z=(e,t,n)=>{if(1!==o.Children.count(e))return;const r=o.Children.only(e);"function"==typeof r.props[t]&&r.props[t](n)};var V=function({children:e,position:t,text:n,shortcut:r}){const[i,c]=Object(o.useState)(!1),[a,l]=Object(o.useState)(!1),d=Object(u.useDebounce)(l,700),p=t=>{z(e,"onMouseDown",t),document.addEventListener("mouseup",b),c(!0)},m=t=>{z(e,"onMouseUp",t),document.removeEventListener("mouseup",b),c(!1)},f=e=>"mouseUp"===e?m:"mouseDown"===e?p:void 0,b=f("mouseUp"),h=(t,n)=>r=>{if(z(e,t,r),r.currentTarget.disabled)return;if("focus"===r.type&&i)return;d.cancel();const o=Object(s.includes)(["focus","mouseenter"],r.type);o!==a&&(n?d(o):l(o))},g=()=>{d.cancel(),document.removeEventListener("mouseup",b)};if(Object(o.useEffect)(()=>g,[]),1!==o.Children.count(e))return e;const v={onMouseEnter:h("onMouseEnter",!0),onMouseLeave:h("onMouseLeave"),onClick:h("onClick"),onFocus:h("onFocus"),onBlur:h("onBlur"),onMouseDown:f("mouseDown")},w=o.Children.only(e),{children:O,disabled:y}=w.props;return(y?U:H)({child:w,eventHandlers:v,childrenWithPopover:(({grandchildren:e,isOver:t,position:n,text:r,shortcut:i})=>Object(o.concatChildren)(e,t&&Object(o.createElement)(F,{focusOnMount:!1,position:n,className:"components-tooltip","aria-hidden":"true",animate:!1,noArrow:!0},r,Object(o.createElement)(D,{className:"components-tooltip__shortcut",shortcut:i}))))({grandchildren:O,isOver:a,position:t,text:n,shortcut:r})})},W=n(41),Y=n(42);const q=["onMouseDown","onClick"];var G=t.a=Object(o.forwardRef)((function(e,t){const{href:n,target:i,isSmall:a,isPressed:u,isBusy:d,isDestructive:p,className:m,disabled:f,icon:b,iconPosition:h="left",iconSize:g,showTooltip:v,tooltipPosition:w,shortcut:O,label:y,children:E,text:k,variant:j,__experimentalIsFocusable:_,describedBy:x,...S}=function({isDefault:e,isPrimary:t,isSecondary:n,isTertiary:r,isLink:o,variant:i,...c}){let s=i;var a,u,d,p,m;return t&&(null!==(a=s)&&void 0!==a||(s="primary")),r&&(null!==(u=s)&&void 0!==u||(s="tertiary")),n&&(null!==(d=s)&&void 0!==d||(s="secondary")),e&&(l()("Button isDefault prop",{since:"5.4",alternative:'variant="secondary"'}),null!==(p=s)&&void 0!==p||(s="secondary")),o&&(null!==(m=s)&&void 0!==m||(s="link")),{...c,variant:s}}(e),C=c()("components-button",m,{"is-secondary":"secondary"===j,"is-primary":"primary"===j,"is-small":a,"is-tertiary":"tertiary"===j,"is-pressed":u,"is-busy":d,"is-link":"link"===j,"is-destructive":p,"has-text":!!b&&!!E,"has-icon":!!b}),T=f&&!_,P=void 0===n||T?"button":"a",R="a"===P?{href:n,target:i}:{type:"button",disabled:T,"aria-pressed":u};if(f&&_){R["aria-disabled"]=!0;for(const e of q)S[e]=e=>{e.stopPropagation(),e.preventDefault()}}const A=!T&&(v&&y||O||!!y&&(!E||Object(s.isArray)(E)&&!E.length)&&!1!==v),N=x?Object(s.uniqueId)():null,M=S["aria-describedby"]||N,L=Object(o.createElement)(P,Object(r.a)({},R,S,{className:C,"aria-label":S["aria-label"]||y,"aria-describedby":M,ref:t}),b&&"left"===h&&Object(o.createElement)(W.a,{icon:b,size:g}),k&&Object(o.createElement)(o.Fragment,null,k),b&&"right"===h&&Object(o.createElement)(W.a,{icon:b,size:g}),E);return A?Object(o.createElement)(o.Fragment,null,Object(o.createElement)(V,{text:x||y,shortcut:O,position:w},L),x&&Object(o.createElement)(Y.a,null,Object(o.createElement)("span",{id:N},x))):Object(o.createElement)(o.Fragment,null,L,x&&Object(o.createElement)(Y.a,null,Object(o.createElement)("span",{id:N},x)))}))},function(e,t){e.exports=window.wp.dom},function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));const r=e=>"string"==typeof e},,function(e,t,n){var r=n(80),o=n(55),i=o.setStyleProp,c=r.html,s=r.svg,a=r.isCustomAttribute,l=Object.prototype.hasOwnProperty;e.exports=function(e){var t,n,r,u;e=e||{};var d={};for(t in e)r=e[t],a(t)?d[t]=r:(n=t.toLowerCase(),l.call(c,n)?d[(u=c[n]).propertyName]=!!(u.hasBooleanValue||u.hasOverloadedBooleanValue&&!r)||r:l.call(s,t)?d[(u=s[t]).propertyName]=r:o.PRESERVE_CUSTOM_ATTRIBUTES&&(d[t]=r));return i(e.style,d),d}},function(e,t,n){var r=n(3),o=n(84).default,i={reactCompat:!0},c=r.version.split(".")[0]>=16;e.exports={PRESERVE_CUSTOM_ATTRIBUTES:c,invertObject:function(e,t){if(!e||"object"!=typeof e)throw new TypeError("First argument must be an object");var n,r,o="function"==typeof t,i={},c={};for(n in e)r=e[n],o&&(i=t(n,r))&&2===i.length?c[i[0]]=i[1]:"string"==typeof r&&(c[r]=n);return c},isCustomComponent:function(e,t){if(-1===e.indexOf("-"))return t&&"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}},setStyleProp:function(e,t){null!=e&&(t.style=o(e,i))}}},function(e,t,n){for(var r,o=n(90).CASE_SENSITIVE_TAG_NAMES,i={},c=0,s=o.length;c<s;c++)r=o[c],i[r.toLowerCase()]=r;function a(e){for(var t,n={},r=0,o=e.length;r<o;r++)n[(t=e[r]).name]=t.value;return n}function l(e){return function(e){return i[e]}(e=e.toLowerCase())||e}e.exports={formatAttributes:a,formatDOM:function e(t,n,r){n=n||null;for(var o,i,c,s=[],u=0,d=t.length;u<d;u++){switch(o=t[u],c={next:null,prev:s[u-1]||null,parent:n},(i=s[u-1])&&(i.next=c),"#"!==o.nodeName[0]&&(c.name=l(o.nodeName),c.attribs={},o.attributes&&o.attributes.length&&(c.attribs=a(o.attributes))),o.nodeType){case 1:"script"===c.name||"style"===c.name?c.type=c.name:c.type="tag",c.children=e(o.childNodes,c);break;case 3:c.type="text",c.data=o.nodeValue;break;case 8:c.type="comment",c.data=o.nodeValue}s.push(c)}return r&&(s.unshift({name:r.substring(0,r.indexOf(" ")).toLowerCase(),data:r,type:"directive",next:s[0]?s[0]:null,prev:null,parent:n}),s[1]&&(s[1].prev=s[0])),s},isIE:function(e){return e?document.documentMode===e:/(MSIE |Trident\/|Edge\/)/.test(navigator.userAgent)}}},function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return c}));var r=n(0);const o=Object(r.createContext)({setIsSuppressed:e=>{},isSuppressed:!1}),i=()=>Object(r.useContext)(o),c=e=>{let{children:t}=e;const[n,i]=Object(r.useState)(!1),c={setIsSuppressed:i,isSuppressed:n};return Object(r.createElement)(o.Provider,{value:c},t)}},,function(e,t,n){var r=n(79),o=n(54),i=n(88),c={decodeEntities:!0,lowerCaseAttributeNames:!1};function s(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");return""===e?[]:r(i(e,(t=t||{}).htmlparser2||c),t)}s.domToReact=r,s.htmlToDOM=i,s.attributesToProps=o,e.exports=s,e.exports.default=s},,,,function(e,t){var n,r,o=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function c(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(e){n=i}try{r="function"==typeof clearTimeout?clearTimeout:c}catch(e){r=c}}();var a,l=[],u=!1,d=-1;function p(){u&&a&&(u=!1,a.length?l=a.concat(l):d=-1,l.length&&m())}function m(){if(!u){var e=s(p);u=!0;for(var t=l.length;t;){for(a=l,l=[];++d<t;)a&&a[d].run();d=-1,t=l.length}a=null,u=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===c||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function f(e,t){this.fun=e,this.array=t}function b(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new f(e,t)),1!==l.length||u||s(m)},f.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=b,o.addListener=b,o.once=b,o.off=b,o.removeListener=b,o.removeAllListeners=b,o.emit=b,o.prependListener=b,o.prependOnceListener=b,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return o})),n.d(t,"d",(function(){return c})),n.d(t,"c",(function(){return s})),n.d(t,"b",(function(){return a}));const r=window.CustomEvent||null,o=(e,t)=>{let{bubbles:n=!1,cancelable:o=!1,element:i,detail:c={}}=t;if(!r)return;i||(i=document.body);const s=new r(e,{bubbles:n,cancelable:o,detail:c});i.dispatchEvent(s)};let i;const c=()=>{i&&clearTimeout(i),i=setTimeout(()=>{o("wc_fragment_refresh",{bubbles:!0,cancelable:!0})},50)},s=e=>{let{preserveCartData:t=!1}=e;o("wc-blocks_added_to_cart",{bubbles:!0,cancelable:!0,detail:{preserveCartData:t}})},a=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof jQuery)return()=>{};const i=()=>{o(t,{bubbles:n,cancelable:r})};return jQuery(document).on(e,i),()=>jQuery(document).off(e,i)}},function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));const r=e=>"number"==typeof e},function(e,t){e.exports=window.wp.blockEditor},,,,,,,,function(e,t){},function(e,t,n){var r=n(3),o=n(54),i=n(55),c=i.setStyleProp;function s(e){return i.PRESERVE_CUSTOM_ATTRIBUTES&&"tag"===e.type&&i.isCustomComponent(e.name,e.attribs)}e.exports=function e(t,n){for(var i,a,l,u,d=(n=n||{}).library||r,p=d.cloneElement,m=d.createElement,f=d.isValidElement,b=[],h="function"==typeof n.replace,g=n.trim,v=0,w=t.length;v<w;v++)if(i=t[v],h&&f(a=n.replace(i)))w>1&&(a=p(a,{key:a.key||v})),b.push(a);else if("text"!==i.type){switch(l=i.attribs,s(i)?c(l.style,l):l&&(l=o(l)),u=null,i.type){case"script":case"style":i.children[0]&&(l.dangerouslySetInnerHTML={__html:i.children[0].data});break;case"tag":"textarea"===i.name&&i.children[0]?l.defaultValue=i.children[0].data:i.children&&i.children.length&&(u=e(i.children,n));break;default:continue}w>1&&(l.key=v),b.push(m(i.name,l,u))}else g?i.data.trim()&&b.push(i.data):b.push(i.data);return 1===b.length?b[0]:b}},function(e,t,n){var r=n(81),o=n(82),i=n(83),c=i.MUST_USE_PROPERTY,s=i.HAS_BOOLEAN_VALUE,a=i.HAS_NUMERIC_VALUE,l=i.HAS_POSITIVE_NUMERIC_VALUE,u=i.HAS_OVERLOADED_BOOLEAN_VALUE;function d(e,t){return(e&t)===t}function p(e,t,n){var r,o,i,p=e.Properties,m=e.DOMAttributeNames;for(o in p)r=m[o]||(n?o:o.toLowerCase()),i=p[o],t[r]={attributeName:r,propertyName:o,mustUseProperty:d(i,c),hasBooleanValue:d(i,s),hasNumericValue:d(i,a),hasPositiveNumericValue:d(i,l),hasOverloadedBooleanValue:d(i,u)}}var m={};p(r,m);var f={};p(o,f,!0);var b={};p(r,b),p(o,b,!0),e.exports={html:m,svg:f,properties:b,isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"))}},function(e,t){e.exports={Properties:{autoFocus:4,accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:4,allowTransparency:0,alt:0,as:0,async:4,autoComplete:0,autoPlay:4,capture:4,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:5,cite:0,classID:0,className:0,cols:24,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:4,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:4,defer:4,dir:0,disabled:4,download:32,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:4,formTarget:0,frameBorder:0,headers:0,height:0,hidden:4,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:4,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:5,muted:5,name:0,nonce:0,noValidate:4,open:4,optimum:0,pattern:0,placeholder:0,playsInline:4,poster:0,preload:0,profile:0,radioGroup:0,readOnly:4,referrerPolicy:0,rel:0,required:4,reversed:4,role:0,rows:24,rowSpan:8,sandbox:0,scope:0,scoped:4,scrolling:0,seamless:4,selected:5,shape:0,size:24,sizes:0,span:24,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:8,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:4,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"}}},function(e,t){e.exports={Properties:{accentHeight:0,accumulate:0,additive:0,alignmentBaseline:0,allowReorder:0,alphabetic:0,amplitude:0,arabicForm:0,ascent:0,attributeName:0,attributeType:0,autoReverse:0,azimuth:0,baseFrequency:0,baseProfile:0,baselineShift:0,bbox:0,begin:0,bias:0,by:0,calcMode:0,capHeight:0,clip:0,clipPath:0,clipRule:0,clipPathUnits:0,colorInterpolation:0,colorInterpolationFilters:0,colorProfile:0,colorRendering:0,contentScriptType:0,contentStyleType:0,cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:0,direction:0,display:0,divisor:0,dominantBaseline:0,dur:0,dx:0,dy:0,edgeMode:0,elevation:0,enableBackground:0,end:0,exponent:0,externalResourcesRequired:0,fill:0,fillOpacity:0,fillRule:0,filter:0,filterRes:0,filterUnits:0,floodColor:0,floodOpacity:0,focusable:0,fontFamily:0,fontSize:0,fontSizeAdjust:0,fontStretch:0,fontStyle:0,fontVariant:0,fontWeight:0,format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:0,glyphOrientationHorizontal:0,glyphOrientationVertical:0,glyphRef:0,gradientTransform:0,gradientUnits:0,hanging:0,horizAdvX:0,horizOriginX:0,ideographic:0,imageRendering:0,in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:0,kernelUnitLength:0,kerning:0,keyPoints:0,keySplines:0,keyTimes:0,lengthAdjust:0,letterSpacing:0,lightingColor:0,limitingConeAngle:0,local:0,markerEnd:0,markerMid:0,markerStart:0,markerHeight:0,markerUnits:0,markerWidth:0,mask:0,maskContentUnits:0,maskUnits:0,mathematical:0,mode:0,numOctaves:0,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:0,overlineThickness:0,paintOrder:0,panose1:0,pathLength:0,patternContentUnits:0,patternTransform:0,patternUnits:0,pointerEvents:0,points:0,pointsAtX:0,pointsAtY:0,pointsAtZ:0,preserveAlpha:0,preserveAspectRatio:0,primitiveUnits:0,r:0,radius:0,refX:0,refY:0,renderingIntent:0,repeatCount:0,repeatDur:0,requiredExtensions:0,requiredFeatures:0,restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:0,slope:0,spacing:0,specularConstant:0,specularExponent:0,speed:0,spreadMethod:0,startOffset:0,stdDeviation:0,stemh:0,stemv:0,stitchTiles:0,stopColor:0,stopOpacity:0,strikethroughPosition:0,strikethroughThickness:0,string:0,stroke:0,strokeDasharray:0,strokeDashoffset:0,strokeLinecap:0,strokeLinejoin:0,strokeMiterlimit:0,strokeOpacity:0,strokeWidth:0,surfaceScale:0,systemLanguage:0,tableValues:0,targetX:0,targetY:0,textAnchor:0,textDecoration:0,textRendering:0,textLength:0,to:0,transform:0,u1:0,u2:0,underlinePosition:0,underlineThickness:0,unicode:0,unicodeBidi:0,unicodeRange:0,unitsPerEm:0,vAlphabetic:0,vHanging:0,vIdeographic:0,vMathematical:0,values:0,vectorEffect:0,version:0,vertAdvY:0,vertOriginX:0,vertOriginY:0,viewBox:0,viewTarget:0,visibility:0,widths:0,wordSpacing:0,writingMode:0,x:0,xHeight:0,x1:0,x2:0,xChannelSelector:0,xlinkActuate:0,xlinkArcrole:0,xlinkHref:0,xlinkRole:0,xlinkShow:0,xlinkTitle:0,xlinkType:0,xmlBase:0,xmlns:0,xmlnsXlink:0,xmlLang:0,xmlSpace:0,y:0,y1:0,y2:0,yChannelSelector:0,z:0,zoomAndPan:0},DOMAttributeNames:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space"}}},function(e,t){e.exports={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32}},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};t.__esModule=!0;var o=r(n(85)),i=n(87);t.default=function(e,t){var n={};return e&&"string"==typeof e?(o.default(e,(function(e,r){e&&r&&(n[i.camelCase(e,t)]=r)})),n):n}},function(e,t,n){var r=n(86);e.exports=function(e,t){var n,o=null;if(!e||"string"!=typeof e)return o;for(var i,c,s=r(e),a="function"==typeof t,l=0,u=s.length;l<u;l++)i=(n=s[l]).property,c=n.value,a?t(i,c,n):c&&(o||(o={}),o[i]=c);return o}},function(e,t){var n=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,r=/\n/g,o=/^\s*/,i=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,c=/^:\s*/,s=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,a=/^[;\s]*/,l=/^\s+|\s+$/g;function u(e){return e?e.replace(l,""):""}e.exports=function(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];t=t||{};var l=1,d=1;function p(e){var t=e.match(r);t&&(l+=t.length);var n=e.lastIndexOf("\n");d=~n?e.length-n:d+e.length}function m(){var e={line:l,column:d};return function(t){return t.position=new f(e),v(),t}}function f(e){this.start=e,this.end={line:l,column:d},this.source=t.source}f.prototype.content=e;var b=[];function h(n){var r=new Error(t.source+":"+l+":"+d+": "+n);if(r.reason=n,r.filename=t.source,r.line=l,r.column=d,r.source=e,!t.silent)throw r;b.push(r)}function g(t){var n=t.exec(e);if(n){var r=n[0];return p(r),e=e.slice(r.length),n}}function v(){g(o)}function w(e){var t;for(e=e||[];t=O();)!1!==t&&e.push(t);return e}function O(){var t=m();if("/"==e.charAt(0)&&"*"==e.charAt(1)){for(var n=2;""!=e.charAt(n)&&("*"!=e.charAt(n)||"/"!=e.charAt(n+1));)++n;if(n+=2,""===e.charAt(n-1))return h("End of comment missing");var r=e.slice(2,n-2);return d+=2,p(r),e=e.slice(n),d+=2,t({type:"comment",comment:r})}}function y(){var e=m(),t=g(i);if(t){if(O(),!g(c))return h("property missing ':'");var r=g(s),o=e({type:"declaration",property:u(t[0].replace(n,"")),value:r?u(r[0].replace(n,"")):""});return g(a),o}}return v(),function(){var e,t=[];for(w(t);e=y();)!1!==e&&(t.push(e),w(t));return t}()}},function(e,t,n){"use strict";t.__esModule=!0,t.camelCase=void 0;var r=/^--[a-zA-Z0-9-]+$/,o=/-([a-z])/g,i=/^[^-]+$/,c=/^-(webkit|moz|ms|o|khtml)-/,s=function(e,t){return t.toUpperCase()},a=function(e,t){return t+"-"};t.camelCase=function(e,t){return void 0===t&&(t={}),function(e){return!e||i.test(e)||r.test(e)}(e)?e:(e=e.toLowerCase(),t.reactCompat||(e=e.replace(c,a)),e.replace(o,s))}},function(e,t,n){var r=n(89),o=n(56),i=o.formatDOM,c=o.isIE(9),s=/<(![a-zA-Z\s]+)>/;e.exports=function(e){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];var t,n=e.match(s);return n&&n[1]&&(t=n[1],c&&(e=e.replace(n[0],""))),i(r(e),null,t)}},function(e,t,n){var r=n(56),o=/<([a-zA-Z]+[0-9]?)/,i=/<head.*>/i,c=/<body.*>/i,s=/<(area|base|br|col|embed|hr|img|input|keygen|link|menuitem|meta|param|source|track|wbr)(.*?)\/?>/gi,a=r.isIE(9),l=a||r.isIE(),u=function(){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},d=function(){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")};if("function"==typeof window.DOMParser){var p=new window.DOMParser,m=a?"text/xml":"text/html";u=d=function(e,t){return t&&(e="<"+t+">"+e+"</"+t+">"),a&&(e=e.replace(s,"<$1$2$3/>")),p.parseFromString(e,m)}}if(document.implementation){var f=document.implementation.createHTMLDocument(l?"html-dom-parser":void 0);u=function(e,t){if(t)return f.documentElement.getElementsByTagName(t)[0].innerHTML=e,f;try{return f.documentElement.innerHTML=e,f}catch(t){if(d)return d(e)}}}var b,h=document.createElement("template");h.content&&(b=function(e){return h.innerHTML=e,h.content.childNodes}),e.exports=function(e){var t,n,r,s,a=e.match(o);switch(a&&a[1]&&(t=a[1].toLowerCase()),t){case"html":return n=d(e),i.test(e)||(r=n.getElementsByTagName("head")[0])&&r.parentNode.removeChild(r),c.test(e)||(r=n.getElementsByTagName("body")[0])&&r.parentNode.removeChild(r),n.getElementsByTagName("html");case"head":case"body":return s=u(e).getElementsByTagName(t),c.test(e)&&i.test(e)?s[0].parentNode.childNodes:s;default:return b?b(e):u(e,"body").getElementsByTagName("body")[0].childNodes}}},function(e,t){e.exports={CASE_SENSITIVE_TAG_NAMES:["animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussainBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","linearGradient","radialGradient","textPath"]}},,function(e,t,n){"use strict";n.d(t,"a",(function(){return i})),n.d(t,"b",(function(){return c}));var r=n(1),o=n(18);const i=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},c=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(o.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},function(e,t,n){"use strict";var r=n(0),o=n(15);const i=Object(r.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(r.createElement)(o.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));t.a=i},function(e,t,n){"use strict";var r=n(0),o=n(6),i=n(4),c=n.n(i),s=n(1),a=n(20),l=n(93),u=n(50);function d(e){switch(e){case"success":case"warning":case"info":return"polite";case"error":default:return"assertive"}}t.a=function({className:e,status:t="info",children:n,spokenMessage:i=n,onRemove:p=o.noop,isDismissible:m=!0,actions:f=[],politeness:b=d(t),__unstableHTML:h,onDismiss:g=o.noop}){!function(e,t){const n="string"==typeof e?e:Object(r.renderToString)(e);Object(r.useEffect)(()=>{n&&Object(a.speak)(n,t)},[n,t])}(i,b);const v=c()(e,"components-notice","is-"+t,{"is-dismissible":m});return h&&(n=Object(r.createElement)(r.RawHTML,null,n)),Object(r.createElement)("div",{className:v},Object(r.createElement)("div",{className:"components-notice__content"},n,Object(r.createElement)("div",{className:"components-notice__actions"},f.map(({className:e,label:t,isPrimary:n,variant:o,noDefaultClasses:i=!1,onClick:s,url:a},l)=>{let d=o;return"primary"===o||i||(d=a?"link":"secondary"),void 0===d&&n&&(d="primary"),Object(r.createElement)(u.a,{key:l,href:a,variant:d,onClick:a?void 0:s,className:c()("components-notice__action",e)},t)}))),m&&Object(r.createElement)(u.a,{className:"components-notice__dismiss",icon:l.a,label:Object(s.__)("Dismiss this notice"),onClick:e=>{var t;null==e||null===(t=e.preventDefault)||void 0===t||t.call(e),g(),p()},showTooltip:!1}))}},,,,,,,,,function(e,t){e.exports=window.wp.blocks},,function(e,t,n){"use strict";var r=n(0);t.a=function(e){let{icon:t,size:n=24,...o}=e;return Object(r.cloneElement)(t,{width:n,height:n,...o})}},,,,,,,,,,function(e,t){e.exports=window.wp.wordcount},function(e,t){e.exports=window.wp.autop},,function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return c}));var r=n(45),o=(n(14),n(2));const i=(e,t)=>Object.keys(o.defaultAddressFields).every(n=>e[n]===t[n]),c=e=>{const t=Object.keys(o.defaultAddressFields),n=Object(r.a)(t,{},e.country),i=Object.assign({},e);return n.forEach(t=>{let{key:n="",hidden:r=!1}=t;r&&((e,t)=>e in t)(n,e)&&(i[n]="")}),i}},,function(e,t){e.exports=window.wc.wcBlocksSharedHocs},,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return p}));var r=n(11),o=n.n(r),i=n(0),c=n(4),s=n.n(c),a=n(94),l=n(7),u=(n(78),n(57));const d=e=>{let{status:t="default"}=e;switch(t){case"error":return"woocommerce-error";case"success":return"woocommerce-message";case"info":case"warning":return"woocommerce-info"}return""},p=e=>{let{className:t,context:n="default",additionalNotices:r=[]}=e;const{isSuppressed:c}=Object(u.b)(),{notices:p}=Object(l.useSelect)(e=>({notices:e("core/notices").getNotices(n)})),{removeNotice:m}=Object(l.useDispatch)("core/notices"),f=p.filter(e=>"snackbar"!==e.type).concat(r);if(!f.length)return null;const b=s()(t,"wc-block-components-notices");return c?null:Object(i.createElement)("div",{className:b},f.map(e=>Object(i.createElement)(a.a,o()({key:"store-notice-"+e.id},e,{className:s()("wc-block-components-notices__notice",d(e)),onRemove:()=>{e.isDismissible&&m(e.id,n)}}),e.content)))}},,,function(e,t,n){"use strict";n.d(t,"a",(function(){return p}));var r=n(0),o=n(48),i=n(2),c=n(59),s=n.n(c),a=n(10),l=n(16);const u=(e,t)=>e&&t[e]?t[e]:null,d=e=>{let{block:t,blockMap:n,blockWrapper:o,children:c,depth:p=1}=e;return c&&0!==c.length?Array.from(c).map((e,c)=>{const{blockName:m="",...f}={key:`${t}_${p}_${c}`,...e instanceof HTMLElement?e.dataset:{},className:e instanceof Element?null==e?void 0:e.className:""},b=u(m,n);if(!b){const i=s()(e instanceof Element&&(null==e?void 0:e.outerHTML)||(null==e?void 0:e.textContent)||"");if("string"==typeof i&&i)return i;if(!Object(r.isValidElement)(i))return null;const c=e.childNodes.length?d({block:t,blockMap:n,children:e.childNodes,depth:p+1,blockWrapper:o}):void 0;return c?Object(r.cloneElement)(i,f,c):Object(r.cloneElement)(i,f)}const h=o||r.Fragment;return Object(r.createElement)(r.Suspense,{key:`${t}_${p}_${c}_suspense`,fallback:Object(r.createElement)("div",{className:"wc-block-placeholder"})},Object(r.createElement)(l.a,{text:"Unexpected error in: "+m,showErrorBlock:i.CURRENT_USER_IS_ADMIN},Object(r.createElement)(h,null,Object(r.createElement)(b,f,d({block:t,blockMap:n,children:e.childNodes,depth:p+1,blockWrapper:o}),((e,t,n,o)=>{if(!Object(a.hasInnerBlocks)(e))return null;const c=n?Array.from(n).map(e=>e instanceof HTMLElement&&(null==e?void 0:e.dataset.blockName)||null).filter(Boolean):[],s=Object(a.getRegisteredBlocks)(e).filter(e=>{let{blockName:t,force:n}=e;return!0===n&&!c.includes(t)}),d=o||r.Fragment;return Object(r.createElement)(r.Fragment,null,s.map((e,n)=>{let{blockName:o,component:c}=e;const s=c||u(o,t);return s?Object(r.createElement)(l.a,{text:"Unexpected error in: "+o,showErrorBlock:i.CURRENT_USER_IS_ADMIN},Object(r.createElement)(d,null,Object(r.createElement)(s,{key:`${o}_forced_${n}`}))):null}))})(m,n,e.childNodes,o)))))}):null},p=e=>{let{Block:t,selector:n,blockName:r,getProps:i=(()=>({})),blockMap:c,blockWrapper:s}=e;Object(o.a)({Block:t,selector:n,getProps:(e,t)=>{const n=d({block:r,blockMap:c,children:e.children||[],blockWrapper:s});return{...i(e,t),children:n}}})}},,,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return c}));var r=n(17),o=n(0),i=n(44);n.p=i.k,Object(r.registerBlockComponent)({blockName:"woocommerce/product-price",component:Object(o.lazy)(()=>Promise.all([n.e(0),n.e(62)]).then(n.bind(null,399)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-image",component:Object(o.lazy)(()=>n.e(61).then(n.bind(null,443)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-title",component:Object(o.lazy)(()=>n.e(69).then(n.bind(null,444)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-rating",component:Object(o.lazy)(()=>n.e(63).then(n.bind(null,400)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-button",component:Object(o.lazy)(()=>n.e(59).then(n.bind(null,401)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-summary",component:Object(o.lazy)(()=>n.e(67).then(n.bind(null,402)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-sale-badge",component:Object(o.lazy)(()=>n.e(64).then(n.bind(null,312)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-sku",component:Object(o.lazy)(()=>n.e(65).then(n.bind(null,403)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-category-list",component:Object(o.lazy)(()=>n.e(60).then(n.bind(null,404)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-tag-list",component:Object(o.lazy)(()=>n.e(68).then(n.bind(null,405)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-stock-indicator",component:Object(o.lazy)(()=>n.e(66).then(n.bind(null,406)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-add-to-cart",component:Object(o.lazy)(()=>Promise.all([n.e(1),n.e(74),n.e(58)]).then(n.bind(null,426)))});const c=e=>Object(r.getRegisteredBlockComponents)(e)},,,,,,,,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));const r=(e,t)=>{const n=[];return Object.keys(e).forEach(r=>{if(void 0!==t[r])switch(e[r].type){case"boolean":n[r]="false"!==t[r]&&!1!==t[r];break;case"number":n[r]=parseInt(t[r],10);break;case"array":case"object":n[r]=JSON.parse(t[r]);break;default:n[r]=t[r]}else n[r]=e[r].default}),n}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){e.exports=n(239)},,,,,,,,function(e,t,n){"use strict";n.r(t);var r=n(144),o=n(127),i=n(133),c=n(48),s=n(0),a=n(11),l=n.n(a),u=n(19),d=n.n(u),p=n(13),m=(n(14),n(25)),f=n.n(m);n(6),n(2),n(44);var b=n(92),h=Object(p.createHigherOrderComponent)(e=>class extends s.Component{constructor(){super(...arguments),d()(this,"state",{error:null,loading:!1,product:"preview"===this.props.attributes.productId?this.props.attributes.previewProduct:null}),d()(this,"loadProduct",()=>{const{productId:e}=this.props.attributes;"preview"!==e&&(e?(this.setState({loading:!0}),(e=>f()({path:"/wc/store/v1/products/"+e}))(e).then(e=>{this.setState({product:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(b.a)(e);this.setState({product:null,loading:!1,error:t})})):this.setState({product:null,loading:!1,error:null}))})}componentDidMount(){this.loadProduct()}componentDidUpdate(e){e.attributes.productId!==this.props.attributes.productId&&this.loadProduct()}render(){const{error:t,loading:n,product:r}=this.state;return Object(s.createElement)(e,l()({},this.props,{error:t,getProduct:this.loadProduct,isLoading:n,product:r}))}},"withProduct"),g=n(43),v=n(57),w=n(124),O=n(40),y=n(1),E=n(105),k=n(15),j=Object(s.createElement)(k.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(s.createElement)(k.Path,{d:"M3 18h8V6H3v12zM14 7.5V9h7V7.5h-7zm0 5.3h7v-1.5h-7v1.5zm0 3.7h7V15h-7v1.5z"}));const _="woocommerce/single-product";Object(y.__)("Single Product","woocommerce"),Object(s.createElement)(E.a,{icon:j,className:"wc-block-editor-components-block-icon"}),Object(y.__)("Display a single product.","woocommerce"),Object.keys(Object(i.a)(_));var x=h(e=>{let{isLoading:t,product:n,children:r}=e;const{dispatchStoreEvent:o}=Object(O.a)(),i="wc-block-single-product wc-block-layout",c="woocommerce/single-product/"+((null==n?void 0:n.id)||0);return Object(s.useEffect)(()=>{o("product-render",{product:n,listName:_})},[n,o]),Object(s.createElement)(g.InnerBlockLayoutContextProvider,{parentName:_,parentClassName:i},Object(s.createElement)(g.ProductDataContextProvider,{product:n,isLoading:t},Object(s.createElement)(v.a,null,Object(s.createElement)(w.a,{context:c})),Object(s.createElement)("div",{className:i},r)))}),S={isPreview:{type:"boolean",default:!1,save:!1},productId:{type:"number"}};Object(o.a)({Block:x,blockName:_,selector:".wp-block-woocommerce-single-product",getProps:e=>({attributes:Object(r.a)(S,e.dataset)}),blockMap:Object(i.a)(_)}),(()=>{const e=Object(i.a)("");Object.keys(e).forEach(t=>{const n=".wp-block-"+t.replace("/","-");Object(c.a)({Block:e[t],selector:n,getProps:e=>e.dataset})})})()}]);
1
+ !function(e){function t(t){for(var n,o,i=t[0],c=t[1],s=0,l=[];s<i.length;s++)o=i[s],Object.prototype.hasOwnProperty.call(r,o)&&r[o]&&l.push(r[o][0]),r[o]=0;for(n in c)Object.prototype.hasOwnProperty.call(c,n)&&(e[n]=c[n]);for(a&&a(t);l.length;)l.shift()()}var n={},r={71:0,73:0};function o(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,o),r.l=!0,r.exports}o.e=function(e){var t=[],n=r[e];if(0!==n)if(n)t.push(n[2]);else{var i=new Promise((function(t,o){n=r[e]=[t,o]}));t.push(n[2]=i);var c,s=document.createElement("script");s.charset="utf-8",s.timeout=120,o.nc&&s.setAttribute("nonce",o.nc),s.src=function(e){return o.p+""+({0:"vendors--cart-blocks/cart-line-items--cart-blocks/cart-order-summary--cart-blocks/order-summary-shi--c02aad66",1:"vendors--cart-blocks/order-summary-shipping--checkout-blocks/billing-address--checkout-blocks/order--decc3dc6",58:"product-add-to-cart",59:"product-button",60:"product-category-list",61:"product-image",62:"product-price",63:"product-rating",64:"product-sale-badge",65:"product-sku",66:"product-stock-indicator",67:"product-summary",68:"product-tag-list",69:"product-title",74:"vendors--product-add-to-cart"}[e]||e)+"-frontend.js?ver="+{0:"1d36f73838f02eb72b0e",1:"e2dda84269ff5f357820",58:"a1f5c37ffde9d75afc47",59:"31d91954dd894b010db7",60:"bdcd55f6a78f3780a8c9",61:"1ec1ff9f0e063d3f63ae",62:"36221c05f2759b8bd8fd",63:"09acab57fd9a8594caac",64:"c6ec41b82cb1fe4af0c7",65:"f04dd44c9314944f232b",66:"1e1f4698349331747d15",67:"d613d9c8a37c5b8d3b1a",68:"d655fde20ee518912eb5",69:"9275c1cccdfd844d56f7",74:"d4bf9e962fb49977699e"}[e]}(e);var a=new Error;c=function(t){s.onerror=s.onload=null,clearTimeout(l);var n=r[e];if(0!==n){if(n){var o=t&&("load"===t.type?"missing":t.type),i=t&&t.target&&t.target.src;a.message="Loading chunk "+e+" failed.\n("+o+": "+i+")",a.name="ChunkLoadError",a.type=o,a.request=i,n[1](a)}r[e]=void 0}};var l=setTimeout((function(){c({type:"timeout",target:s})}),12e4);s.onerror=s.onload=c,document.head.appendChild(s)}return Promise.all(t)},o.m=e,o.c=n,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(e,t){if(1&t&&(e=o(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)o.d(n,r,function(t){return e[t]}.bind(null,r));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o.oe=function(e){throw console.error(e),e};var i=window.webpackWcBlocksJsonp=window.webpackWcBlocksJsonp||[],c=i.push.bind(i);i.push=t,i=i.slice();for(var s=0;s<i.length;s++)t(i[s]);var a=c;o(o.s=231)}([function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wc.wcSettings},function(e,t){e.exports=window.React},function(e,t,n){var r;!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var i=typeof r;if("string"===i||"number"===i)e.push(r);else if(Array.isArray(r)){if(r.length){var c=o.apply(null,r);c&&e.push(c)}}else if("object"===i)if(r.toString===Object.prototype.toString)for(var s in r)n.call(r,s)&&r[s]&&e.push(s);else e.push(r.toString())}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=window.wc.wcBlocksData},function(e,t){e.exports=window.lodash},function(e,t){e.exports=window.wp.data},function(e,t,n){"use strict";function r(){return(r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}n.d(t,"a",(function(){return r}))},,function(e,t){e.exports=window.wc.blocksCheckout},function(e,t){function n(){return e.exports=n=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,n.apply(this,arguments)}e.exports=n,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.isShallowEqual},function(e,t){e.exports=window.wp.compose},function(e,t){e.exports=window.wp.url},function(e,t){e.exports=window.wp.primitives},function(e,t,n){"use strict";var r=n(19),o=n.n(r),i=n(0),c=n(3),s=n(1),a=n(44),l=e=>{let{imageUrl:t=a.l+"/block-error.svg",header:n=Object(s.__)("Oops!","woocommerce"),text:r=Object(s.__)("There was an error loading the content.","woocommerce"),errorMessage:o,errorMessagePrefix:c=Object(s.__)("Error:","woocommerce"),button:l,showErrorBlock:u=!0}=e;return u?Object(i.createElement)("div",{className:"wc-block-error wc-block-components-error"},t&&Object(i.createElement)("img",{className:"wc-block-error__image wc-block-components-error__image",src:t,alt:""}),Object(i.createElement)("div",{className:"wc-block-error__content wc-block-components-error__content"},n&&Object(i.createElement)("p",{className:"wc-block-error__header wc-block-components-error__header"},n),r&&Object(i.createElement)("p",{className:"wc-block-error__text wc-block-components-error__text"},r),o&&Object(i.createElement)("p",{className:"wc-block-error__message wc-block-components-error__message"},c?c+" ":"",o),l&&Object(i.createElement)("p",{className:"wc-block-error__button wc-block-components-error__button"},l))):null};n(33);class u extends c.Component{constructor(){super(...arguments),o()(this,"state",{errorMessage:"",hasError:!1})}static getDerivedStateFromError(e){return void 0!==e.statusText&&void 0!==e.status?{errorMessage:Object(i.createElement)(i.Fragment,null,Object(i.createElement)("strong",null,e.status),": ",e.statusText),hasError:!0}:{errorMessage:e.message,hasError:!0}}render(){const{header:e,imageUrl:t,showErrorMessage:n=!0,showErrorBlock:r=!0,text:o,errorMessagePrefix:c,renderError:s,button:a}=this.props,{errorMessage:u,hasError:d}=this.state;return d?"function"==typeof s?s({errorMessage:u}):Object(i.createElement)(l,{showErrorBlock:r,errorMessage:n?u:null,header:e,imageUrl:t,text:o,errorMessagePrefix:c,button:a}):this.props.children}}t.a=u},function(e,t){e.exports=window.wc.wcBlocksRegistry},function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=function(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e},e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t){e.exports=window.wp.a11y},,,,function(e,t,n){"use strict";(function(e){var r=n(0);n(38);const o=Object(r.createContext)({slots:{},fills:{},registerSlot:()=>{void 0!==e&&e.env},updateSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{}});t.a=o}).call(this,n(63))},function(e,t){e.exports=window.wp.apiFetch},,function(e,t,n){"use strict";n.d(t,"a",(function(){return i}));var r=n(0);n(7);const o=Object(r.createContext)({isEditor:!1,currentPostId:0,currentView:"",previewData:{},getPreviewData:()=>{}}),i=()=>Object(r.useContext)(o)},,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return w}));var r=n(6),o=n(0),i=n(5),c=n(7),s=n(18),a=n(118),l=n(27),u=n(68);const d=e=>{const t=e.detail;t&&t.preserveCartData||Object(c.dispatch)(i.CART_STORE_KEY).invalidateResolutionForStore()},p=()=>{1===window.wcBlocksStoreCartListeners.count&&window.wcBlocksStoreCartListeners.remove(),window.wcBlocksStoreCartListeners.count--},m=()=>{Object(o.useEffect)(()=>((()=>{if(window.wcBlocksStoreCartListeners||(window.wcBlocksStoreCartListeners={count:0,remove:()=>{}}),0===window.wcBlocksStoreCartListeners.count){const e=Object(u.b)("added_to_cart","wc-blocks_added_to_cart"),t=Object(u.b)("removed_from_cart","wc-blocks_removed_from_cart");document.body.addEventListener("wc-blocks_added_to_cart",d),document.body.addEventListener("wc-blocks_removed_from_cart",d),window.wcBlocksStoreCartListeners.count=0,window.wcBlocksStoreCartListeners.remove=()=>{e(),t(),document.body.removeEventListener("wc-blocks_added_to_cart",d),document.body.removeEventListener("wc-blocks_removed_from_cart",d)}}window.wcBlocksStoreCartListeners.count++})(),p),[])},f={first_name:"",last_name:"",company:"",address_1:"",address_2:"",city:"",state:"",postcode:"",country:"",phone:""},b={...f,email:""},h={total_items:"",total_items_tax:"",total_fees:"",total_fees_tax:"",total_discount:"",total_discount_tax:"",total_shipping:"",total_shipping_tax:"",total_price:"",total_tax:"",tax_lines:i.EMPTY_TAX_LINES,currency_code:"",currency_symbol:"",currency_minor_unit:2,currency_decimal_separator:"",currency_thousand_separator:"",currency_prefix:"",currency_suffix:""},g=e=>Object.fromEntries(Object.entries(e).map(e=>{let[t,n]=e;return[t,Object(s.decodeEntities)(n)]})),v={cartCoupons:i.EMPTY_CART_COUPONS,cartItems:i.EMPTY_CART_ITEMS,cartFees:i.EMPTY_CART_FEES,cartItemsCount:0,cartItemsWeight:0,cartNeedsPayment:!0,cartNeedsShipping:!0,cartItemErrors:i.EMPTY_CART_ITEM_ERRORS,cartTotals:h,cartIsLoading:!0,cartErrors:i.EMPTY_CART_ERRORS,billingAddress:b,shippingAddress:f,shippingRates:i.EMPTY_SHIPPING_RATES,isLoadingRates:!1,cartHasCalculatedShipping:!1,paymentRequirements:i.EMPTY_PAYMENT_REQUIREMENTS,receiveCart:()=>{},extensions:i.EMPTY_EXTENSIONS},w=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{shouldSelect:!0};const{isEditor:t,previewData:n}=Object(l.a)(),s=null==n?void 0:n.previewCart,{shouldSelect:u}=e,d=Object(o.useRef)();m();const p=Object(c.useSelect)((e,n)=>{let{dispatch:r}=n;if(!u)return v;if(t)return{cartCoupons:s.coupons,cartItems:s.items,cartFees:s.fees,cartItemsCount:s.items_count,cartItemsWeight:s.items_weight,cartNeedsPayment:s.needs_payment,cartNeedsShipping:s.needs_shipping,cartItemErrors:i.EMPTY_CART_ITEM_ERRORS,cartTotals:s.totals,cartIsLoading:!1,cartErrors:i.EMPTY_CART_ERRORS,billingAddress:b,shippingAddress:f,extensions:i.EMPTY_EXTENSIONS,shippingRates:s.shipping_rates,isLoadingRates:!1,cartHasCalculatedShipping:s.has_calculated_shipping,paymentRequirements:s.paymentRequirements,receiveCart:"function"==typeof(null==s?void 0:s.receiveCart)?s.receiveCart:()=>{}};const o=e(i.CART_STORE_KEY),c=o.getCartData(),l=o.getCartErrors(),d=o.getCartTotals(),p=!o.hasFinishedResolution("getCartData"),m=o.isCustomerDataUpdating(),{receiveCart:h}=r(i.CART_STORE_KEY),w=g(c.billingAddress),O=c.needsShipping?g(c.shippingAddress):w,y=c.fees.length>0?c.fees.map(e=>g(e)):i.EMPTY_CART_FEES;return{cartCoupons:c.coupons.length>0?c.coupons.map(e=>({...e,label:e.code})):i.EMPTY_CART_COUPONS,cartItems:c.items,cartFees:y,cartItemsCount:c.itemsCount,cartItemsWeight:c.itemsWeight,cartNeedsPayment:c.needsPayment,cartNeedsShipping:c.needsShipping,cartItemErrors:c.errors,cartTotals:d,cartIsLoading:p,cartErrors:l,billingAddress:Object(a.a)(w),shippingAddress:Object(a.a)(O),extensions:c.extensions,shippingRates:c.shippingRates,isLoadingRates:m,cartHasCalculatedShipping:c.hasCalculatedShipping,paymentRequirements:c.paymentRequirements,receiveCart:h}},[u]);return d.current&&Object(r.isEqual)(d.current,p)||(d.current=p),d.current}},function(e,t){e.exports=window.wp.deprecated},function(e,t){},,,,function(e,t){e.exports=window.wc.priceFormat},function(e,t){e.exports=window.wp.warning},function(e,t){e.exports=window.wp.hooks},function(e,t,n){"use strict";n.d(t,"a",(function(){return c}));var r=n(39),o=n(0),i=n(31);const c=()=>{const e=Object(i.a)(),t=Object(o.useRef)(e);return Object(o.useEffect)(()=>{t.current=e},[e]),{dispatchStoreEvent:Object(o.useCallback)((function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(r.doAction)("experimental__woocommerce_blocks-"+e,t)}catch(e){console.error(e)}}),[]),dispatchCheckoutEvent:Object(o.useCallback)((function(e){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{Object(r.doAction)("experimental__woocommerce_blocks-checkout-"+e,{...n,storeCart:t.current})}catch(e){console.error(e)}}),[])}}},function(e,t,n){"use strict";var r=n(8),o=n(0),i=n(15),c=function({icon:e,className:t,...n}){const i=["dashicon","dashicons","dashicons-"+e,t].filter(Boolean).join(" ");return Object(o.createElement)("span",Object(r.a)({className:i},n))};t.a=function({icon:e=null,size:t=24,...n}){if("string"==typeof e)return Object(o.createElement)(c,Object(r.a)({icon:e},n));if(Object(o.isValidElement)(e)&&c===e.type)return Object(o.cloneElement)(e,{...n});if("function"==typeof e)return e.prototype instanceof o.Component?Object(o.createElement)(e,{size:t,...n}):e({size:t,...n});if(e&&("svg"===e.type||e.type===i.SVG)){const r={width:t,height:t,...e.props,...n};return Object(o.createElement)(i.SVG,r)}return Object(o.isValidElement)(e)?Object(o.cloneElement)(e,{size:t,...n}):e}},function(e,t,n){"use strict";var r=n(4),o=n.n(r),i=n(0);t.a=Object(i.forwardRef)((function({as:e="div",className:t,...n},r){return function({as:e="div",...t}){return"function"==typeof t.children?t.children(t):Object(i.createElement)(e,t)}({as:e,className:o()("components-visually-hidden",t),...n,ref:r})}))},function(e,t){e.exports=window.wc.wcBlocksSharedContext},function(e,t,n){"use strict";n.d(t,"n",(function(){return i})),n.d(t,"l",(function(){return c})),n.d(t,"k",(function(){return s})),n.d(t,"m",(function(){return a})),n.d(t,"i",(function(){return l})),n.d(t,"d",(function(){return u})),n.d(t,"f",(function(){return d})),n.d(t,"j",(function(){return p})),n.d(t,"c",(function(){return m})),n.d(t,"e",(function(){return f})),n.d(t,"g",(function(){return b})),n.d(t,"a",(function(){return h})),n.d(t,"h",(function(){return g})),n.d(t,"b",(function(){return v}));var r,o=n(2);const i=Object(o.getSetting)("wcBlocksConfig",{buildPhase:1,pluginUrl:"",productCount:0,defaultAvatar:"",restApiRoutes:{},wordCountType:"words"}),c=i.pluginUrl+"images/",s=i.pluginUrl+"build/",a=i.buildPhase,l=null===(r=o.STORE_PAGES.shop)||void 0===r?void 0:r.permalink,u=(o.STORE_PAGES.checkout.id,o.STORE_PAGES.checkout.permalink),d=o.STORE_PAGES.privacy.permalink,p=(o.STORE_PAGES.privacy.title,o.STORE_PAGES.terms.permalink),m=(o.STORE_PAGES.terms.title,o.STORE_PAGES.cart.id,o.STORE_PAGES.cart.permalink),f=o.STORE_PAGES.myaccount.permalink?o.STORE_PAGES.myaccount.permalink:Object(o.getSetting)("wpLoginUrl","/wp-login.php"),b=Object(o.getSetting)("shippingCountries",{}),h=Object(o.getSetting)("allowedCountries",{}),g=Object(o.getSetting)("shippingStates",{}),v=Object(o.getSetting)("allowedStates",{})},function(e,t,n){"use strict";var r=n(2),o=n(1),i=n(69),c=n(52);const s=Object(r.getSetting)("countryLocale",{}),a=e=>{const t={};return void 0!==e.label&&(t.label=e.label),void 0!==e.required&&(t.required=e.required),void 0!==e.hidden&&(t.hidden=e.hidden),void 0===e.label||e.optionalLabel||(t.optionalLabel=Object(o.sprintf)(
2
  /* translators: %s Field label. */
3
  Object(o.__)("%s (optional)","woocommerce"),e.label)),e.priority&&(Object(i.a)(e.priority)&&(t.index=e.priority),Object(c.a)(e.priority)&&(t.index=parseInt(e.priority,10))),e.hidden&&(t.required=!1),t},l=Object.entries(s).map(e=>{let[t,n]=e;return[t,Object.entries(n).map(e=>{let[t,n]=e;return[t,a(n)]}).reduce((e,t)=>{let[n,r]=t;return e[n]=r,e},{})]}).reduce((e,t)=>{let[n,r]=t;return e[n]=r,e},{});t.a=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";const o=n&&void 0!==l[n]?l[n]:{};return e.map(e=>({key:e,...r.defaultAddressFields[e]||{},...o[e]||{},...t[e]||{}})).sort((e,t)=>e.index-t.index)}},,,function(e,t,n){"use strict";n.d(t,"a",(function(){return l}));var r=n(11),o=n.n(r),i=n(0),c=n(16);const s=[".wp-block-woocommerce-cart"],a=e=>{let{Block:t,containers:n,getProps:r=(()=>({})),getErrorBoundaryProps:s=(()=>({}))}=e;0!==n.length&&Array.prototype.forEach.call(n,(e,n)=>{const a=r(e,n),l=s(e,n),u={...e.dataset,...a.attributes||{}};(e=>{let{Block:t,container:n,attributes:r={},props:s={},errorBoundaryProps:a={}}=e;Object(i.render)(Object(i.createElement)(c.a,a,Object(i.createElement)(i.Suspense,{fallback:Object(i.createElement)("div",{className:"wc-block-placeholder"})},t&&Object(i.createElement)(t,o()({},s,{attributes:r})))),n,()=>{n.classList&&n.classList.remove("is-loading")})})({Block:t,container:e,props:a,attributes:u,errorBoundaryProps:l})})},l=e=>{const t=document.body.querySelectorAll(s.join(",")),{Block:n,getProps:r,getErrorBoundaryProps:o,selector:i}=e;(e=>{let{Block:t,getProps:n,getErrorBoundaryProps:r,selector:o,wrappers:i}=e;const c=document.body.querySelectorAll(o);i&&i.length>0&&Array.prototype.filter.call(c,e=>!((e,t)=>Array.prototype.some.call(t,t=>t.contains(e)&&!t.isSameNode(e)))(e,i)),a({Block:t,containers:c,getProps:n,getErrorBoundaryProps:r})})({Block:n,getProps:r,getErrorBoundaryProps:o,selector:i,wrappers:t}),Array.prototype.forEach.call(t,t=>{t.addEventListener("wc-blocks_render_blocks_frontend",()=>{(e=>{let{Block:t,getProps:n,getErrorBoundaryProps:r,selector:o,wrapper:i}=e;const c=i.querySelectorAll(o);a({Block:t,containers:c,getProps:n,getErrorBoundaryProps:r})})({...e,wrapper:t})})})}},,function(e,t,n){"use strict";var r=n(8),o=n(0),i=n(4),c=n.n(i),s=n(6),a=n(32),l=n.n(a),u=n(13),d=n(51),p=n(93),m=n(1);function f(e,t,n){const{defaultView:r}=t,{frameElement:o}=r;if(!o||t===n.ownerDocument)return e;const i=o.getBoundingClientRect();return new r.DOMRect(e.left+i.left,e.top+i.top,e.width,e.height)}let b=0;function h(e){const t=document.scrollingElement||document.body;e&&(b=t.scrollTop);const n=e?"add":"remove";t.classList[n]("lockscroll"),document.documentElement.classList[n]("lockscroll"),e||(t.scrollTop=b)}let g=0;function v(){return Object(o.useEffect)(()=>(0===g&&h(!0),++g,()=>{1===g&&h(!1),--g}),[]),null}var w=n(24);function O(e){const t=Object(o.useContext)(w.a),n=t.slots[e]||{},r=t.fills[e],i=Object(o.useMemo)(()=>r||[],[r]);return{...n,updateSlot:Object(o.useCallback)(n=>{t.updateSlot(e,n)},[e,t.updateSlot]),unregisterSlot:Object(o.useCallback)(n=>{t.unregisterSlot(e,n)},[e,t.unregisterSlot]),fills:i,registerFill:Object(o.useCallback)(n=>{t.registerFill(e,n)},[e,t.registerFill]),unregisterFill:Object(o.useCallback)(n=>{t.unregisterFill(e,n)},[e,t.unregisterFill])}}var y=Object(o.createContext)({registerSlot:()=>{},unregisterSlot:()=>{},registerFill:()=>{},unregisterFill:()=>{},getSlot:()=>{},getFills:()=>{},subscribe:()=>{}});function E({name:e,children:t,registerFill:n,unregisterFill:r}){const i=(e=>{const{getSlot:t,subscribe:n}=Object(o.useContext)(y),[r,i]=Object(o.useState)(t(e));return Object(o.useEffect)(()=>(i(t(e)),n(()=>{i(t(e))})),[e]),r})(e),c=Object(o.useRef)({name:e,children:t});return Object(o.useLayoutEffect)(()=>(n(e,c.current),()=>r(e,c.current)),[]),Object(o.useLayoutEffect)(()=>{c.current.children=t,i&&i.forceUpdate()},[t]),Object(o.useLayoutEffect)(()=>{e!==c.current.name&&(r(c.current.name,c.current),c.current.name=e,n(e,c.current))},[e]),i&&i.node?(Object(s.isFunction)(t)&&(t=t(i.props.fillProps)),Object(o.createPortal)(t,i.node)):null}var k=e=>Object(o.createElement)(y.Consumer,null,({registerFill:t,unregisterFill:n})=>Object(o.createElement)(E,Object(r.a)({},e,{registerFill:t,unregisterFill:n})));class j extends o.Component{constructor(){super(...arguments),this.isUnmounted=!1,this.bindNode=this.bindNode.bind(this)}componentDidMount(){const{registerSlot:e}=this.props;e(this.props.name,this)}componentWillUnmount(){const{unregisterSlot:e}=this.props;this.isUnmounted=!0,e(this.props.name,this)}componentDidUpdate(e){const{name:t,unregisterSlot:n,registerSlot:r}=this.props;e.name!==t&&(n(e.name),r(t,this))}bindNode(e){this.node=e}forceUpdate(){this.isUnmounted||super.forceUpdate()}render(){const{children:e,name:t,fillProps:n={},getFills:r}=this.props,i=Object(s.map)(r(t,this),e=>{const t=Object(s.isFunction)(e.children)?e.children(n):e.children;return o.Children.map(t,(e,t)=>{if(!e||Object(s.isString)(e))return e;const n=e.key||t;return Object(o.cloneElement)(e,{key:n})})}).filter(Object(s.negate)(o.isEmptyElement));return Object(o.createElement)(o.Fragment,null,Object(s.isFunction)(e)?e(i):i)}}var _=e=>Object(o.createElement)(y.Consumer,null,({registerSlot:t,unregisterSlot:n,getFills:i})=>Object(o.createElement)(j,Object(r.a)({},e,{registerSlot:t,unregisterSlot:n,getFills:i})));function x(){const[,e]=Object(o.useState)({}),t=Object(o.useRef)(!0);return Object(o.useEffect)(()=>()=>{t.current=!1},[]),()=>{t.current&&e({})}}function S({name:e,children:t}){const n=O(e),r=Object(o.useRef)({rerender:x()});return Object(o.useEffect)(()=>(n.registerFill(r),()=>{n.unregisterFill(r)}),[n.registerFill,n.unregisterFill]),n.ref&&n.ref.current?("function"==typeof t&&(t=t(n.fillProps)),Object(o.createPortal)(t,n.ref.current)):null}var C=Object(o.forwardRef)((function({name:e,fillProps:t={},as:n="div",...i},c){const s=Object(o.useContext)(w.a),a=Object(o.useRef)();return Object(o.useLayoutEffect)(()=>(s.registerSlot(e,a,t),()=>{s.unregisterSlot(e,a)}),[s.registerSlot,s.unregisterSlot,e]),Object(o.useLayoutEffect)(()=>{s.updateSlot(e,t)}),Object(o.createElement)(n,Object(r.a)({ref:Object(u.useMergeRefs)([c,a])},i))}));function T(e){return Object(o.createElement)(o.Fragment,null,Object(o.createElement)(k,e),Object(o.createElement)(S,e))}n(12),o.Component;const P=Object(o.forwardRef)(({bubblesVirtually:e,...t},n)=>e?Object(o.createElement)(C,Object(r.a)({},t,{ref:n})):Object(o.createElement)(_,t));function R(e){return"appear"===e?"top":"left"}function A(e,t){const{paddingTop:n,paddingBottom:r,paddingLeft:o,paddingRight:i}=(c=t).ownerDocument.defaultView.getComputedStyle(c);var c;const s=n?parseInt(n,10):0,a=r?parseInt(r,10):0,l=o?parseInt(o,10):0,u=i?parseInt(i,10):0;return{x:e.left+l,y:e.top+s,width:e.width-l-u,height:e.height-s-a,left:e.left+l,right:e.right-u,top:e.top+s,bottom:e.bottom-a}}function N(e,t,n){n?e.getAttribute(t)!==n&&e.setAttribute(t,n):e.hasAttribute(t)&&e.removeAttribute(t)}function M(e,t,n=""){e.style[t]!==n&&(e.style[t]=n)}function L(e,t,n){n?e.classList.contains(t)||e.classList.add(t):e.classList.contains(t)&&e.classList.remove(t)}const B=Object(o.forwardRef)(({headerTitle:e,onClose:t,children:n,className:i,noArrow:s=!0,isAlternate:a,position:b="bottom right",range:h,focusOnMount:g="firstElement",anchorRef:w,shouldAnchorIncludePadding:y,anchorRect:E,getAnchorRect:k,expandOnMobile:j,animate:_=!0,onClickOutside:x,onFocusOutside:S,__unstableStickyBoundaryElement:C,__unstableSlotName:P="Popover",__unstableObserveElement:B,__unstableBoundaryParent:F,__unstableForcePosition:D,__unstableForceXAlignment:I,...U},H)=>{const z=Object(o.useRef)(null),V=Object(o.useRef)(null),W=Object(o.useRef)(),Y=Object(u.useViewportMatch)("medium","<"),[q,X]=Object(o.useState)(),$=O(P),Z=j&&Y,[K,Q]=Object(u.useResizeObserver)();s=Z||s,Object(o.useLayoutEffect)(()=>{if(Z)return L(W.current,"is-without-arrow",s),L(W.current,"is-alternate",a),N(W.current,"data-x-axis"),N(W.current,"data-y-axis"),M(W.current,"top"),M(W.current,"left"),M(V.current,"maxHeight"),void M(V.current,"maxWidth");const e=()=>{if(!W.current||!V.current)return;let e=function(e,t,n,r=!1,o,i){if(t)return t;if(n){if(!e.current)return;const t=n(e.current);return f(t,t.ownerDocument||e.current.ownerDocument,i)}if(!1!==r){if(!(r&&window.Range&&window.Element&&window.DOMRect))return;if("function"==typeof(null==r?void 0:r.cloneRange))return f(Object(d.getRectangleFromRange)(r),r.endContainer.ownerDocument,i);if("function"==typeof(null==r?void 0:r.getBoundingClientRect)){const e=f(r.getBoundingClientRect(),r.ownerDocument,i);return o?e:A(e,r)}const{top:e,bottom:t}=r,n=e.getBoundingClientRect(),c=t.getBoundingClientRect(),s=f(new window.DOMRect(n.left,n.top,n.width,c.bottom-n.top),e.ownerDocument,i);return o?s:A(s,r)}if(!e.current)return;const{parentNode:c}=e.current,s=c.getBoundingClientRect();return o?s:A(s,c)}(z,E,k,w,y,W.current);if(!e)return;const{offsetParent:t,ownerDocument:n}=W.current;let r,o=0;if(t&&t!==n.body){const n=t.getBoundingClientRect();o=n.top,e=new window.DOMRect(e.left-n.left,e.top-n.top,e.width,e.height)}var i;F&&(r=null===(i=W.current.closest(".popover-slot"))||void 0===i?void 0:i.parentNode);const c=Q.height?Q:V.current.getBoundingClientRect(),{popoverTop:l,popoverLeft:u,xAxis:p,yAxis:h,contentHeight:g,contentWidth:v}=function(e,t,n="top",r,o,i,c,s,a){const[l,u="center",d]=n.split(" "),p=function(e,t,n,r,o,i,c,s){const{height:a}=t;if(o){const t=o.getBoundingClientRect().top+a-c;if(e.top<=t)return{yAxis:n,popoverTop:Math.min(e.bottom,t)}}let l=e.top+e.height/2;"bottom"===r?l=e.bottom:"top"===r&&(l=e.top);const u={popoverTop:l,contentHeight:(l-a/2>0?a/2:l)+(l+a/2>window.innerHeight?window.innerHeight-l:a/2)},d={popoverTop:e.top,contentHeight:e.top-10-a>0?a:e.top-10},p={popoverTop:e.bottom,contentHeight:e.bottom+10+a>window.innerHeight?window.innerHeight-10-e.bottom:a};let m,f=n,b=null;if(!o&&!s)if("middle"===n&&u.contentHeight===a)f="middle";else if("top"===n&&d.contentHeight===a)f="top";else if("bottom"===n&&p.contentHeight===a)f="bottom";else{f=d.contentHeight>p.contentHeight?"top":"bottom";const e="top"===f?d.contentHeight:p.contentHeight;b=e!==a?e:null}return m="middle"===f?u.popoverTop:"top"===f?d.popoverTop:p.popoverTop,{yAxis:f,popoverTop:m,contentHeight:b}}(e,t,l,d,r,0,i,s);return{...function(e,t,n,r,o,i,c,s,a){const{width:l}=t;"left"===n&&Object(m.isRTL)()?n="right":"right"===n&&Object(m.isRTL)()&&(n="left"),"left"===r&&Object(m.isRTL)()?r="right":"right"===r&&Object(m.isRTL)()&&(r="left");const u=Math.round(e.left+e.width/2),d={popoverLeft:u,contentWidth:(u-l/2>0?l/2:u)+(u+l/2>window.innerWidth?window.innerWidth-u:l/2)};let p=e.left;"right"===r?p=e.right:"middle"===i||a||(p=u);let f=e.right;"left"===r?f=e.left:"middle"===i||a||(f=u);const b={popoverLeft:p,contentWidth:p-l>0?l:p},h={popoverLeft:f,contentWidth:f+l>window.innerWidth?window.innerWidth-f:l};let g,v=n,w=null;if(!o&&!s)if("center"===n&&d.contentWidth===l)v="center";else if("left"===n&&b.contentWidth===l)v="left";else if("right"===n&&h.contentWidth===l)v="right";else{v=b.contentWidth>h.contentWidth?"left":"right";const e="left"===v?b.contentWidth:h.contentWidth;l>window.innerWidth&&(w=window.innerWidth),e!==l&&(v="center",d.popoverLeft=window.innerWidth/2)}if(g="center"===v?d.popoverLeft:"left"===v?b.popoverLeft:h.popoverLeft,c){const e=c.getBoundingClientRect();g=Math.min(g,e.right-l),Object(m.isRTL)()||(g=Math.max(g,0))}return{xAxis:v,popoverLeft:g,contentWidth:w}}(e,t,u,d,r,p.yAxis,c,s,a),...p}}(e,c,b,C,W.current,o,r,D,I);"number"==typeof l&&"number"==typeof u&&(M(W.current,"top",l+"px"),M(W.current,"left",u+"px")),L(W.current,"is-without-arrow",s||"center"===p&&"middle"===h),L(W.current,"is-alternate",a),N(W.current,"data-x-axis",p),N(W.current,"data-y-axis",h),M(V.current,"maxHeight","number"==typeof g?g+"px":""),M(V.current,"maxWidth","number"==typeof v?v+"px":""),X(({left:"right",right:"left"}[p]||"center")+" "+({top:"bottom",bottom:"top"}[h]||"middle"))};e();const{ownerDocument:t}=W.current,{defaultView:n}=t,r=n.setInterval(e,500);let o;const i=()=>{n.cancelAnimationFrame(o),o=n.requestAnimationFrame(e)};n.addEventListener("click",i),n.addEventListener("resize",e),n.addEventListener("scroll",e,!0);const c=function(e){if(e)return e.endContainer?e.endContainer.ownerDocument:e.top?e.top.ownerDocument:e.ownerDocument}(w);let l;return c&&c!==t&&(c.defaultView.addEventListener("resize",e),c.defaultView.addEventListener("scroll",e,!0)),B&&(l=new n.MutationObserver(e),l.observe(B,{attributes:!0})),()=>{n.clearInterval(r),n.removeEventListener("resize",e),n.removeEventListener("scroll",e,!0),n.removeEventListener("click",i),n.cancelAnimationFrame(o),c&&c!==t&&(c.defaultView.removeEventListener("resize",e),c.defaultView.removeEventListener("scroll",e,!0)),l&&l.disconnect()}},[Z,E,k,w,y,b,Q,C,B,F]);const J=(e,n)=>{if("focus-outside"===e&&S)S(n);else if("focus-outside"===e&&x){const e=new window.MouseEvent("click");Object.defineProperty(e,"target",{get:()=>n.relatedTarget}),l()("Popover onClickOutside prop",{since:"5.3",alternative:"onFocusOutside"}),x(e)}else t&&t()},[ee,te]=Object(u.__experimentalUseDialog)({focusOnMount:g,__unstableOnClose:J,onClose:J}),ne=Object(u.useMergeRefs)([W,ee,H]),re=Boolean(_&&q)&&function(e){if("loading"===e.type)return c()("components-animate__loading");const{type:t,origin:n=R(t)}=e;if("appear"===t){const[e,t="center"]=n.split(" ");return c()("components-animate__appear",{["is-from-"+t]:"center"!==t,["is-from-"+e]:"middle"!==e})}return"slide-in"===t?c()("components-animate__slide-in","is-from-"+n):void 0}({type:"appear",origin:q});let oe=Object(o.createElement)("div",Object(r.a)({className:c()("components-popover",i,re,{"is-expanded":Z,"is-without-arrow":s,"is-alternate":a})},U,{ref:ne},te,{tabIndex:"-1"}),Z&&Object(o.createElement)(v,null),Z&&Object(o.createElement)("div",{className:"components-popover__header"},Object(o.createElement)("span",{className:"components-popover__header-title"},e),Object(o.createElement)(G,{className:"components-popover__close",icon:p.a,onClick:t})),Object(o.createElement)("div",{ref:V,className:"components-popover__content"},Object(o.createElement)("div",{style:{position:"relative"}},K,n)));return $.ref&&(oe=Object(o.createElement)(T,{name:P},oe)),w||E?oe:Object(o.createElement)("span",{ref:z},oe)});B.Slot=Object(o.forwardRef)((function({name:e="Popover"},t){return Object(o.createElement)(P,{bubblesVirtually:!0,name:e,className:"popover-slot",ref:t})}));var F=B,D=function({shortcut:e,className:t}){if(!e)return null;let n,r;return Object(s.isString)(e)&&(n=e),Object(s.isObject)(e)&&(n=e.display,r=e.ariaLabel),Object(o.createElement)("span",{className:t,"aria-label":r},n)};const I=Object(o.createElement)("div",{className:"event-catcher"}),U=({eventHandlers:e,child:t,childrenWithPopover:n})=>Object(o.cloneElement)(Object(o.createElement)("span",{className:"disabled-element-wrapper"},Object(o.cloneElement)(I,e),Object(o.cloneElement)(t,{children:n}),","),e),H=({child:e,eventHandlers:t,childrenWithPopover:n})=>Object(o.cloneElement)(e,{...t,children:n}),z=(e,t,n)=>{if(1!==o.Children.count(e))return;const r=o.Children.only(e);"function"==typeof r.props[t]&&r.props[t](n)};var V=function({children:e,position:t,text:n,shortcut:r}){const[i,c]=Object(o.useState)(!1),[a,l]=Object(o.useState)(!1),d=Object(u.useDebounce)(l,700),p=t=>{z(e,"onMouseDown",t),document.addEventListener("mouseup",b),c(!0)},m=t=>{z(e,"onMouseUp",t),document.removeEventListener("mouseup",b),c(!1)},f=e=>"mouseUp"===e?m:"mouseDown"===e?p:void 0,b=f("mouseUp"),h=(t,n)=>r=>{if(z(e,t,r),r.currentTarget.disabled)return;if("focus"===r.type&&i)return;d.cancel();const o=Object(s.includes)(["focus","mouseenter"],r.type);o!==a&&(n?d(o):l(o))},g=()=>{d.cancel(),document.removeEventListener("mouseup",b)};if(Object(o.useEffect)(()=>g,[]),1!==o.Children.count(e))return e;const v={onMouseEnter:h("onMouseEnter",!0),onMouseLeave:h("onMouseLeave"),onClick:h("onClick"),onFocus:h("onFocus"),onBlur:h("onBlur"),onMouseDown:f("mouseDown")},w=o.Children.only(e),{children:O,disabled:y}=w.props;return(y?U:H)({child:w,eventHandlers:v,childrenWithPopover:(({grandchildren:e,isOver:t,position:n,text:r,shortcut:i})=>Object(o.concatChildren)(e,t&&Object(o.createElement)(F,{focusOnMount:!1,position:n,className:"components-tooltip","aria-hidden":"true",animate:!1,noArrow:!0},r,Object(o.createElement)(D,{className:"components-tooltip__shortcut",shortcut:i}))))({grandchildren:O,isOver:a,position:t,text:n,shortcut:r})})},W=n(41),Y=n(42);const q=["onMouseDown","onClick"];var G=t.a=Object(o.forwardRef)((function(e,t){const{href:n,target:i,isSmall:a,isPressed:u,isBusy:d,isDestructive:p,className:m,disabled:f,icon:b,iconPosition:h="left",iconSize:g,showTooltip:v,tooltipPosition:w,shortcut:O,label:y,children:E,text:k,variant:j,__experimentalIsFocusable:_,describedBy:x,...S}=function({isDefault:e,isPrimary:t,isSecondary:n,isTertiary:r,isLink:o,variant:i,...c}){let s=i;var a,u,d,p,m;return t&&(null!==(a=s)&&void 0!==a||(s="primary")),r&&(null!==(u=s)&&void 0!==u||(s="tertiary")),n&&(null!==(d=s)&&void 0!==d||(s="secondary")),e&&(l()("Button isDefault prop",{since:"5.4",alternative:'variant="secondary"'}),null!==(p=s)&&void 0!==p||(s="secondary")),o&&(null!==(m=s)&&void 0!==m||(s="link")),{...c,variant:s}}(e),C=c()("components-button",m,{"is-secondary":"secondary"===j,"is-primary":"primary"===j,"is-small":a,"is-tertiary":"tertiary"===j,"is-pressed":u,"is-busy":d,"is-link":"link"===j,"is-destructive":p,"has-text":!!b&&!!E,"has-icon":!!b}),T=f&&!_,P=void 0===n||T?"button":"a",R="a"===P?{href:n,target:i}:{type:"button",disabled:T,"aria-pressed":u};if(f&&_){R["aria-disabled"]=!0;for(const e of q)S[e]=e=>{e.stopPropagation(),e.preventDefault()}}const A=!T&&(v&&y||O||!!y&&(!E||Object(s.isArray)(E)&&!E.length)&&!1!==v),N=x?Object(s.uniqueId)():null,M=S["aria-describedby"]||N,L=Object(o.createElement)(P,Object(r.a)({},R,S,{className:C,"aria-label":S["aria-label"]||y,"aria-describedby":M,ref:t}),b&&"left"===h&&Object(o.createElement)(W.a,{icon:b,size:g}),k&&Object(o.createElement)(o.Fragment,null,k),b&&"right"===h&&Object(o.createElement)(W.a,{icon:b,size:g}),E);return A?Object(o.createElement)(o.Fragment,null,Object(o.createElement)(V,{text:x||y,shortcut:O,position:w},L),x&&Object(o.createElement)(Y.a,null,Object(o.createElement)("span",{id:N},x))):Object(o.createElement)(o.Fragment,null,L,x&&Object(o.createElement)(Y.a,null,Object(o.createElement)("span",{id:N},x)))}))},function(e,t){e.exports=window.wp.dom},function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));const r=e=>"string"==typeof e},,function(e,t,n){var r=n(80),o=n(55),i=o.setStyleProp,c=r.html,s=r.svg,a=r.isCustomAttribute,l=Object.prototype.hasOwnProperty;e.exports=function(e){var t,n,r,u;e=e||{};var d={};for(t in e)r=e[t],a(t)?d[t]=r:(n=t.toLowerCase(),l.call(c,n)?d[(u=c[n]).propertyName]=!!(u.hasBooleanValue||u.hasOverloadedBooleanValue&&!r)||r:l.call(s,t)?d[(u=s[t]).propertyName]=r:o.PRESERVE_CUSTOM_ATTRIBUTES&&(d[t]=r));return i(e.style,d),d}},function(e,t,n){var r=n(3),o=n(84).default,i={reactCompat:!0},c=r.version.split(".")[0]>=16;e.exports={PRESERVE_CUSTOM_ATTRIBUTES:c,invertObject:function(e,t){if(!e||"object"!=typeof e)throw new TypeError("First argument must be an object");var n,r,o="function"==typeof t,i={},c={};for(n in e)r=e[n],o&&(i=t(n,r))&&2===i.length?c[i[0]]=i[1]:"string"==typeof r&&(c[r]=n);return c},isCustomComponent:function(e,t){if(-1===e.indexOf("-"))return t&&"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}},setStyleProp:function(e,t){null!=e&&(t.style=o(e,i))}}},function(e,t,n){for(var r,o=n(90).CASE_SENSITIVE_TAG_NAMES,i={},c=0,s=o.length;c<s;c++)r=o[c],i[r.toLowerCase()]=r;function a(e){for(var t,n={},r=0,o=e.length;r<o;r++)n[(t=e[r]).name]=t.value;return n}function l(e){return function(e){return i[e]}(e=e.toLowerCase())||e}e.exports={formatAttributes:a,formatDOM:function e(t,n,r){n=n||null;for(var o,i,c,s=[],u=0,d=t.length;u<d;u++){switch(o=t[u],c={next:null,prev:s[u-1]||null,parent:n},(i=s[u-1])&&(i.next=c),"#"!==o.nodeName[0]&&(c.name=l(o.nodeName),c.attribs={},o.attributes&&o.attributes.length&&(c.attribs=a(o.attributes))),o.nodeType){case 1:"script"===c.name||"style"===c.name?c.type=c.name:c.type="tag",c.children=e(o.childNodes,c);break;case 3:c.type="text",c.data=o.nodeValue;break;case 8:c.type="comment",c.data=o.nodeValue}s.push(c)}return r&&(s.unshift({name:r.substring(0,r.indexOf(" ")).toLowerCase(),data:r,type:"directive",next:s[0]?s[0]:null,prev:null,parent:n}),s[1]&&(s[1].prev=s[0])),s},isIE:function(e){return e?document.documentMode===e:/(MSIE |Trident\/|Edge\/)/.test(navigator.userAgent)}}},function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return c}));var r=n(0);const o=Object(r.createContext)({setIsSuppressed:e=>{},isSuppressed:!1}),i=()=>Object(r.useContext)(o),c=e=>{let{children:t}=e;const[n,i]=Object(r.useState)(!1),c={setIsSuppressed:i,isSuppressed:n};return Object(r.createElement)(o.Provider,{value:c},t)}},,function(e,t,n){var r=n(79),o=n(54),i=n(88),c={decodeEntities:!0,lowerCaseAttributeNames:!1};function s(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");return""===e?[]:r(i(e,(t=t||{}).htmlparser2||c),t)}s.domToReact=r,s.htmlToDOM=i,s.attributesToProps=o,e.exports=s,e.exports.default=s},,,,function(e,t){var n,r,o=e.exports={};function i(){throw new Error("setTimeout has not been defined")}function c(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===i||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:i}catch(e){n=i}try{r="function"==typeof clearTimeout?clearTimeout:c}catch(e){r=c}}();var a,l=[],u=!1,d=-1;function p(){u&&a&&(u=!1,a.length?l=a.concat(l):d=-1,l.length&&m())}function m(){if(!u){var e=s(p);u=!0;for(var t=l.length;t;){for(a=l,l=[];++d<t;)a&&a[d].run();d=-1,t=l.length}a=null,u=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===c||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function f(e,t){this.fun=e,this.array=t}function b(){}o.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new f(e,t)),1!==l.length||u||s(m)},f.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=b,o.addListener=b,o.once=b,o.off=b,o.removeListener=b,o.removeAllListeners=b,o.emit=b,o.prependListener=b,o.prependOnceListener=b,o.listeners=function(e){return[]},o.binding=function(e){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(e){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return o})),n.d(t,"d",(function(){return c})),n.d(t,"c",(function(){return s})),n.d(t,"b",(function(){return a}));const r=window.CustomEvent||null,o=(e,t)=>{let{bubbles:n=!1,cancelable:o=!1,element:i,detail:c={}}=t;if(!r)return;i||(i=document.body);const s=new r(e,{bubbles:n,cancelable:o,detail:c});i.dispatchEvent(s)};let i;const c=()=>{i&&clearTimeout(i),i=setTimeout(()=>{o("wc_fragment_refresh",{bubbles:!0,cancelable:!0})},50)},s=e=>{let{preserveCartData:t=!1}=e;o("wc-blocks_added_to_cart",{bubbles:!0,cancelable:!0,detail:{preserveCartData:t}})},a=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if("function"!=typeof jQuery)return()=>{};const i=()=>{o(t,{bubbles:n,cancelable:r})};return jQuery(document).on(e,i),()=>jQuery(document).off(e,i)}},function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));const r=e=>"number"==typeof e},function(e,t){e.exports=window.wp.blockEditor},,,,,,,,function(e,t){},function(e,t,n){var r=n(3),o=n(54),i=n(55),c=i.setStyleProp;function s(e){return i.PRESERVE_CUSTOM_ATTRIBUTES&&"tag"===e.type&&i.isCustomComponent(e.name,e.attribs)}e.exports=function e(t,n){for(var i,a,l,u,d=(n=n||{}).library||r,p=d.cloneElement,m=d.createElement,f=d.isValidElement,b=[],h="function"==typeof n.replace,g=n.trim,v=0,w=t.length;v<w;v++)if(i=t[v],h&&f(a=n.replace(i)))w>1&&(a=p(a,{key:a.key||v})),b.push(a);else if("text"!==i.type){switch(l=i.attribs,s(i)?c(l.style,l):l&&(l=o(l)),u=null,i.type){case"script":case"style":i.children[0]&&(l.dangerouslySetInnerHTML={__html:i.children[0].data});break;case"tag":"textarea"===i.name&&i.children[0]?l.defaultValue=i.children[0].data:i.children&&i.children.length&&(u=e(i.children,n));break;default:continue}w>1&&(l.key=v),b.push(m(i.name,l,u))}else g?i.data.trim()&&b.push(i.data):b.push(i.data);return 1===b.length?b[0]:b}},function(e,t,n){var r=n(81),o=n(82),i=n(83),c=i.MUST_USE_PROPERTY,s=i.HAS_BOOLEAN_VALUE,a=i.HAS_NUMERIC_VALUE,l=i.HAS_POSITIVE_NUMERIC_VALUE,u=i.HAS_OVERLOADED_BOOLEAN_VALUE;function d(e,t){return(e&t)===t}function p(e,t,n){var r,o,i,p=e.Properties,m=e.DOMAttributeNames;for(o in p)r=m[o]||(n?o:o.toLowerCase()),i=p[o],t[r]={attributeName:r,propertyName:o,mustUseProperty:d(i,c),hasBooleanValue:d(i,s),hasNumericValue:d(i,a),hasPositiveNumericValue:d(i,l),hasOverloadedBooleanValue:d(i,u)}}var m={};p(r,m);var f={};p(o,f,!0);var b={};p(r,b),p(o,b,!0),e.exports={html:m,svg:f,properties:b,isCustomAttribute:RegExp.prototype.test.bind(new RegExp("^(data|aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$"))}},function(e,t){e.exports={Properties:{autoFocus:4,accept:0,acceptCharset:0,accessKey:0,action:0,allowFullScreen:4,allowTransparency:0,alt:0,as:0,async:4,autoComplete:0,autoPlay:4,capture:4,cellPadding:0,cellSpacing:0,charSet:0,challenge:0,checked:5,cite:0,classID:0,className:0,cols:24,colSpan:0,content:0,contentEditable:0,contextMenu:0,controls:4,controlsList:0,coords:0,crossOrigin:0,data:0,dateTime:0,default:4,defer:4,dir:0,disabled:4,download:32,draggable:0,encType:0,form:0,formAction:0,formEncType:0,formMethod:0,formNoValidate:4,formTarget:0,frameBorder:0,headers:0,height:0,hidden:4,high:0,href:0,hrefLang:0,htmlFor:0,httpEquiv:0,icon:0,id:0,inputMode:0,integrity:0,is:0,keyParams:0,keyType:0,kind:0,label:0,lang:0,list:0,loop:4,low:0,manifest:0,marginHeight:0,marginWidth:0,max:0,maxLength:0,media:0,mediaGroup:0,method:0,min:0,minLength:0,multiple:5,muted:5,name:0,nonce:0,noValidate:4,open:4,optimum:0,pattern:0,placeholder:0,playsInline:4,poster:0,preload:0,profile:0,radioGroup:0,readOnly:4,referrerPolicy:0,rel:0,required:4,reversed:4,role:0,rows:24,rowSpan:8,sandbox:0,scope:0,scoped:4,scrolling:0,seamless:4,selected:5,shape:0,size:24,sizes:0,span:24,spellCheck:0,src:0,srcDoc:0,srcLang:0,srcSet:0,start:8,step:0,style:0,summary:0,tabIndex:0,target:0,title:0,type:0,useMap:0,value:0,width:0,wmode:0,wrap:0,about:0,datatype:0,inlist:0,prefix:0,property:0,resource:0,typeof:0,vocab:0,autoCapitalize:0,autoCorrect:0,autoSave:0,color:0,itemProp:0,itemScope:4,itemType:0,itemID:0,itemRef:0,results:0,security:0,unselectable:0},DOMAttributeNames:{acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv"}}},function(e,t){e.exports={Properties:{accentHeight:0,accumulate:0,additive:0,alignmentBaseline:0,allowReorder:0,alphabetic:0,amplitude:0,arabicForm:0,ascent:0,attributeName:0,attributeType:0,autoReverse:0,azimuth:0,baseFrequency:0,baseProfile:0,baselineShift:0,bbox:0,begin:0,bias:0,by:0,calcMode:0,capHeight:0,clip:0,clipPath:0,clipRule:0,clipPathUnits:0,colorInterpolation:0,colorInterpolationFilters:0,colorProfile:0,colorRendering:0,contentScriptType:0,contentStyleType:0,cursor:0,cx:0,cy:0,d:0,decelerate:0,descent:0,diffuseConstant:0,direction:0,display:0,divisor:0,dominantBaseline:0,dur:0,dx:0,dy:0,edgeMode:0,elevation:0,enableBackground:0,end:0,exponent:0,externalResourcesRequired:0,fill:0,fillOpacity:0,fillRule:0,filter:0,filterRes:0,filterUnits:0,floodColor:0,floodOpacity:0,focusable:0,fontFamily:0,fontSize:0,fontSizeAdjust:0,fontStretch:0,fontStyle:0,fontVariant:0,fontWeight:0,format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:0,glyphOrientationHorizontal:0,glyphOrientationVertical:0,glyphRef:0,gradientTransform:0,gradientUnits:0,hanging:0,horizAdvX:0,horizOriginX:0,ideographic:0,imageRendering:0,in:0,in2:0,intercept:0,k:0,k1:0,k2:0,k3:0,k4:0,kernelMatrix:0,kernelUnitLength:0,kerning:0,keyPoints:0,keySplines:0,keyTimes:0,lengthAdjust:0,letterSpacing:0,lightingColor:0,limitingConeAngle:0,local:0,markerEnd:0,markerMid:0,markerStart:0,markerHeight:0,markerUnits:0,markerWidth:0,mask:0,maskContentUnits:0,maskUnits:0,mathematical:0,mode:0,numOctaves:0,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:0,overlineThickness:0,paintOrder:0,panose1:0,pathLength:0,patternContentUnits:0,patternTransform:0,patternUnits:0,pointerEvents:0,points:0,pointsAtX:0,pointsAtY:0,pointsAtZ:0,preserveAlpha:0,preserveAspectRatio:0,primitiveUnits:0,r:0,radius:0,refX:0,refY:0,renderingIntent:0,repeatCount:0,repeatDur:0,requiredExtensions:0,requiredFeatures:0,restart:0,result:0,rotate:0,rx:0,ry:0,scale:0,seed:0,shapeRendering:0,slope:0,spacing:0,specularConstant:0,specularExponent:0,speed:0,spreadMethod:0,startOffset:0,stdDeviation:0,stemh:0,stemv:0,stitchTiles:0,stopColor:0,stopOpacity:0,strikethroughPosition:0,strikethroughThickness:0,string:0,stroke:0,strokeDasharray:0,strokeDashoffset:0,strokeLinecap:0,strokeLinejoin:0,strokeMiterlimit:0,strokeOpacity:0,strokeWidth:0,surfaceScale:0,systemLanguage:0,tableValues:0,targetX:0,targetY:0,textAnchor:0,textDecoration:0,textRendering:0,textLength:0,to:0,transform:0,u1:0,u2:0,underlinePosition:0,underlineThickness:0,unicode:0,unicodeBidi:0,unicodeRange:0,unitsPerEm:0,vAlphabetic:0,vHanging:0,vIdeographic:0,vMathematical:0,values:0,vectorEffect:0,version:0,vertAdvY:0,vertOriginX:0,vertOriginY:0,viewBox:0,viewTarget:0,visibility:0,widths:0,wordSpacing:0,writingMode:0,x:0,xHeight:0,x1:0,x2:0,xChannelSelector:0,xlinkActuate:0,xlinkArcrole:0,xlinkHref:0,xlinkRole:0,xlinkShow:0,xlinkTitle:0,xlinkType:0,xmlBase:0,xmlns:0,xmlnsXlink:0,xmlLang:0,xmlSpace:0,y:0,y1:0,y2:0,yChannelSelector:0,z:0,zoomAndPan:0},DOMAttributeNames:{accentHeight:"accent-height",alignmentBaseline:"alignment-baseline",arabicForm:"arabic-form",baselineShift:"baseline-shift",capHeight:"cap-height",clipPath:"clip-path",clipRule:"clip-rule",colorInterpolation:"color-interpolation",colorInterpolationFilters:"color-interpolation-filters",colorProfile:"color-profile",colorRendering:"color-rendering",dominantBaseline:"dominant-baseline",enableBackground:"enable-background",fillOpacity:"fill-opacity",fillRule:"fill-rule",floodColor:"flood-color",floodOpacity:"flood-opacity",fontFamily:"font-family",fontSize:"font-size",fontSizeAdjust:"font-size-adjust",fontStretch:"font-stretch",fontStyle:"font-style",fontVariant:"font-variant",fontWeight:"font-weight",glyphName:"glyph-name",glyphOrientationHorizontal:"glyph-orientation-horizontal",glyphOrientationVertical:"glyph-orientation-vertical",horizAdvX:"horiz-adv-x",horizOriginX:"horiz-origin-x",imageRendering:"image-rendering",letterSpacing:"letter-spacing",lightingColor:"lighting-color",markerEnd:"marker-end",markerMid:"marker-mid",markerStart:"marker-start",overlinePosition:"overline-position",overlineThickness:"overline-thickness",paintOrder:"paint-order",panose1:"panose-1",pointerEvents:"pointer-events",renderingIntent:"rendering-intent",shapeRendering:"shape-rendering",stopColor:"stop-color",stopOpacity:"stop-opacity",strikethroughPosition:"strikethrough-position",strikethroughThickness:"strikethrough-thickness",strokeDasharray:"stroke-dasharray",strokeDashoffset:"stroke-dashoffset",strokeLinecap:"stroke-linecap",strokeLinejoin:"stroke-linejoin",strokeMiterlimit:"stroke-miterlimit",strokeOpacity:"stroke-opacity",strokeWidth:"stroke-width",textAnchor:"text-anchor",textDecoration:"text-decoration",textRendering:"text-rendering",underlinePosition:"underline-position",underlineThickness:"underline-thickness",unicodeBidi:"unicode-bidi",unicodeRange:"unicode-range",unitsPerEm:"units-per-em",vAlphabetic:"v-alphabetic",vHanging:"v-hanging",vIdeographic:"v-ideographic",vMathematical:"v-mathematical",vectorEffect:"vector-effect",vertAdvY:"vert-adv-y",vertOriginX:"vert-origin-x",vertOriginY:"vert-origin-y",wordSpacing:"word-spacing",writingMode:"writing-mode",xHeight:"x-height",xlinkActuate:"xlink:actuate",xlinkArcrole:"xlink:arcrole",xlinkHref:"xlink:href",xlinkRole:"xlink:role",xlinkShow:"xlink:show",xlinkTitle:"xlink:title",xlinkType:"xlink:type",xmlBase:"xml:base",xmlnsXlink:"xmlns:xlink",xmlLang:"xml:lang",xmlSpace:"xml:space"}}},function(e,t){e.exports={MUST_USE_PROPERTY:1,HAS_BOOLEAN_VALUE:4,HAS_NUMERIC_VALUE:8,HAS_POSITIVE_NUMERIC_VALUE:24,HAS_OVERLOADED_BOOLEAN_VALUE:32}},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};t.__esModule=!0;var o=r(n(85)),i=n(87);t.default=function(e,t){var n={};return e&&"string"==typeof e?(o.default(e,(function(e,r){e&&r&&(n[i.camelCase(e,t)]=r)})),n):n}},function(e,t,n){var r=n(86);e.exports=function(e,t){var n,o=null;if(!e||"string"!=typeof e)return o;for(var i,c,s=r(e),a="function"==typeof t,l=0,u=s.length;l<u;l++)i=(n=s[l]).property,c=n.value,a?t(i,c,n):c&&(o||(o={}),o[i]=c);return o}},function(e,t){var n=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,r=/\n/g,o=/^\s*/,i=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,c=/^:\s*/,s=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,a=/^[;\s]*/,l=/^\s+|\s+$/g;function u(e){return e?e.replace(l,""):""}e.exports=function(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];t=t||{};var l=1,d=1;function p(e){var t=e.match(r);t&&(l+=t.length);var n=e.lastIndexOf("\n");d=~n?e.length-n:d+e.length}function m(){var e={line:l,column:d};return function(t){return t.position=new f(e),v(),t}}function f(e){this.start=e,this.end={line:l,column:d},this.source=t.source}f.prototype.content=e;var b=[];function h(n){var r=new Error(t.source+":"+l+":"+d+": "+n);if(r.reason=n,r.filename=t.source,r.line=l,r.column=d,r.source=e,!t.silent)throw r;b.push(r)}function g(t){var n=t.exec(e);if(n){var r=n[0];return p(r),e=e.slice(r.length),n}}function v(){g(o)}function w(e){var t;for(e=e||[];t=O();)!1!==t&&e.push(t);return e}function O(){var t=m();if("/"==e.charAt(0)&&"*"==e.charAt(1)){for(var n=2;""!=e.charAt(n)&&("*"!=e.charAt(n)||"/"!=e.charAt(n+1));)++n;if(n+=2,""===e.charAt(n-1))return h("End of comment missing");var r=e.slice(2,n-2);return d+=2,p(r),e=e.slice(n),d+=2,t({type:"comment",comment:r})}}function y(){var e=m(),t=g(i);if(t){if(O(),!g(c))return h("property missing ':'");var r=g(s),o=e({type:"declaration",property:u(t[0].replace(n,"")),value:r?u(r[0].replace(n,"")):""});return g(a),o}}return v(),function(){var e,t=[];for(w(t);e=y();)!1!==e&&(t.push(e),w(t));return t}()}},function(e,t,n){"use strict";t.__esModule=!0,t.camelCase=void 0;var r=/^--[a-zA-Z0-9-]+$/,o=/-([a-z])/g,i=/^[^-]+$/,c=/^-(webkit|moz|ms|o|khtml)-/,s=function(e,t){return t.toUpperCase()},a=function(e,t){return t+"-"};t.camelCase=function(e,t){return void 0===t&&(t={}),function(e){return!e||i.test(e)||r.test(e)}(e)?e:(e=e.toLowerCase(),t.reactCompat||(e=e.replace(c,a)),e.replace(o,s))}},function(e,t,n){var r=n(89),o=n(56),i=o.formatDOM,c=o.isIE(9),s=/<(![a-zA-Z\s]+)>/;e.exports=function(e){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];var t,n=e.match(s);return n&&n[1]&&(t=n[1],c&&(e=e.replace(n[0],""))),i(r(e),null,t)}},function(e,t,n){var r=n(56),o=/<([a-zA-Z]+[0-9]?)/,i=/<head.*>/i,c=/<body.*>/i,s=/<(area|base|br|col|embed|hr|img|input|keygen|link|menuitem|meta|param|source|track|wbr)(.*?)\/?>/gi,a=r.isIE(9),l=a||r.isIE(),u=function(){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},d=function(){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")};if("function"==typeof window.DOMParser){var p=new window.DOMParser,m=a?"text/xml":"text/html";u=d=function(e,t){return t&&(e="<"+t+">"+e+"</"+t+">"),a&&(e=e.replace(s,"<$1$2$3/>")),p.parseFromString(e,m)}}if(document.implementation){var f=document.implementation.createHTMLDocument(l?"html-dom-parser":void 0);u=function(e,t){if(t)return f.documentElement.getElementsByTagName(t)[0].innerHTML=e,f;try{return f.documentElement.innerHTML=e,f}catch(t){if(d)return d(e)}}}var b,h=document.createElement("template");h.content&&(b=function(e){return h.innerHTML=e,h.content.childNodes}),e.exports=function(e){var t,n,r,s,a=e.match(o);switch(a&&a[1]&&(t=a[1].toLowerCase()),t){case"html":return n=d(e),i.test(e)||(r=n.getElementsByTagName("head")[0])&&r.parentNode.removeChild(r),c.test(e)||(r=n.getElementsByTagName("body")[0])&&r.parentNode.removeChild(r),n.getElementsByTagName("html");case"head":case"body":return s=u(e).getElementsByTagName(t),c.test(e)&&i.test(e)?s[0].parentNode.childNodes:s;default:return b?b(e):u(e,"body").getElementsByTagName("body")[0].childNodes}}},function(e,t){e.exports={CASE_SENSITIVE_TAG_NAMES:["animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussainBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","linearGradient","radialGradient","textPath"]}},,function(e,t,n){"use strict";n.d(t,"a",(function(){return i})),n.d(t,"b",(function(){return c}));var r=n(1),o=n(18);const i=async e=>{if("function"==typeof e.json)try{const t=await e.json();return{message:t.message,type:t.type||"api"}}catch(e){return{message:e.message,type:"general"}}return{message:e.message,type:e.type||"general"}},c=e=>{if(e.data&&"rest_invalid_param"===e.code){const t=Object.values(e.data.params);if(t[0])return t[0]}return null!=e&&e.message?Object(o.decodeEntities)(e.message):Object(r.__)("Something went wrong. Please contact us to get assistance.","woocommerce")}},function(e,t,n){"use strict";var r=n(0),o=n(15);const i=Object(r.createElement)(o.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(r.createElement)(o.Path,{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}));t.a=i},function(e,t,n){"use strict";var r=n(0),o=n(6),i=n(4),c=n.n(i),s=n(1),a=n(20),l=n(93),u=n(50);function d(e){switch(e){case"success":case"warning":case"info":return"polite";case"error":default:return"assertive"}}t.a=function({className:e,status:t="info",children:n,spokenMessage:i=n,onRemove:p=o.noop,isDismissible:m=!0,actions:f=[],politeness:b=d(t),__unstableHTML:h,onDismiss:g=o.noop}){!function(e,t){const n="string"==typeof e?e:Object(r.renderToString)(e);Object(r.useEffect)(()=>{n&&Object(a.speak)(n,t)},[n,t])}(i,b);const v=c()(e,"components-notice","is-"+t,{"is-dismissible":m});return h&&(n=Object(r.createElement)(r.RawHTML,null,n)),Object(r.createElement)("div",{className:v},Object(r.createElement)("div",{className:"components-notice__content"},n,Object(r.createElement)("div",{className:"components-notice__actions"},f.map(({className:e,label:t,isPrimary:n,variant:o,noDefaultClasses:i=!1,onClick:s,url:a},l)=>{let d=o;return"primary"===o||i||(d=a?"link":"secondary"),void 0===d&&n&&(d="primary"),Object(r.createElement)(u.a,{key:l,href:a,variant:d,onClick:a?void 0:s,className:c()("components-notice__action",e)},t)}))),m&&Object(r.createElement)(u.a,{className:"components-notice__dismiss",icon:l.a,label:Object(s.__)("Dismiss this notice"),onClick:e=>{var t;null==e||null===(t=e.preventDefault)||void 0===t||t.call(e),g(),p()},showTooltip:!1}))}},,,,,,,,,function(e,t){e.exports=window.wp.blocks},,function(e,t,n){"use strict";var r=n(0);t.a=function(e){let{icon:t,size:n=24,...o}=e;return Object(r.cloneElement)(t,{width:n,height:n,...o})}},,,,,,,,,,function(e,t){e.exports=window.wp.wordcount},function(e,t){e.exports=window.wp.autop},,function(e,t,n){"use strict";n.d(t,"b",(function(){return i})),n.d(t,"a",(function(){return c}));var r=n(45),o=(n(14),n(2));const i=(e,t)=>Object.keys(o.defaultAddressFields).every(n=>e[n]===t[n]),c=e=>{const t=Object.keys(o.defaultAddressFields),n=Object(r.a)(t,{},e.country),i=Object.assign({},e);return n.forEach(t=>{let{key:n="",hidden:r=!1}=t;r&&((e,t)=>e in t)(n,e)&&(i[n]="")}),i}},,function(e,t){e.exports=window.wc.wcBlocksSharedHocs},,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return p}));var r=n(11),o=n.n(r),i=n(0),c=n(4),s=n.n(c),a=n(94),l=n(7),u=(n(78),n(57));const d=e=>{let{status:t="default"}=e;switch(t){case"error":return"woocommerce-error";case"success":return"woocommerce-message";case"info":case"warning":return"woocommerce-info"}return""},p=e=>{let{className:t,context:n="default",additionalNotices:r=[]}=e;const{isSuppressed:c}=Object(u.b)(),{notices:p}=Object(l.useSelect)(e=>({notices:e("core/notices").getNotices(n)})),{removeNotice:m}=Object(l.useDispatch)("core/notices"),f=p.filter(e=>"snackbar"!==e.type).concat(r);if(!f.length)return null;const b=s()(t,"wc-block-components-notices");return c?null:Object(i.createElement)("div",{className:b},f.map(e=>Object(i.createElement)(a.a,o()({key:"store-notice-"+e.id},e,{className:s()("wc-block-components-notices__notice",d(e)),onRemove:()=>{e.isDismissible&&m(e.id,n)}}),e.content)))}},,,function(e,t,n){"use strict";n.d(t,"a",(function(){return p}));var r=n(0),o=n(48),i=n(2),c=n(59),s=n.n(c),a=n(10),l=n(16);const u=(e,t)=>e&&t[e]?t[e]:null,d=e=>{let{block:t,blockMap:n,blockWrapper:o,children:c,depth:p=1}=e;return c&&0!==c.length?Array.from(c).map((e,c)=>{const{blockName:m="",...f}={key:`${t}_${p}_${c}`,...e instanceof HTMLElement?e.dataset:{},className:e instanceof Element?null==e?void 0:e.className:""},b=u(m,n);if(!b){const i=s()(e instanceof Element&&(null==e?void 0:e.outerHTML)||(null==e?void 0:e.textContent)||"");if("string"==typeof i&&i)return i;if(!Object(r.isValidElement)(i))return null;const c=e.childNodes.length?d({block:t,blockMap:n,children:e.childNodes,depth:p+1,blockWrapper:o}):void 0;return c?Object(r.cloneElement)(i,f,c):Object(r.cloneElement)(i,f)}const h=o||r.Fragment;return Object(r.createElement)(r.Suspense,{key:`${t}_${p}_${c}_suspense`,fallback:Object(r.createElement)("div",{className:"wc-block-placeholder"})},Object(r.createElement)(l.a,{text:"Unexpected error in: "+m,showErrorBlock:i.CURRENT_USER_IS_ADMIN},Object(r.createElement)(h,null,Object(r.createElement)(b,f,d({block:t,blockMap:n,children:e.childNodes,depth:p+1,blockWrapper:o}),((e,t,n,o)=>{if(!Object(a.hasInnerBlocks)(e))return null;const c=n?Array.from(n).map(e=>e instanceof HTMLElement&&(null==e?void 0:e.dataset.blockName)||null).filter(Boolean):[],s=Object(a.getRegisteredBlocks)(e).filter(e=>{let{blockName:t,force:n}=e;return!0===n&&!c.includes(t)}),d=o||r.Fragment;return Object(r.createElement)(r.Fragment,null,s.map((e,n)=>{let{blockName:o,component:c}=e;const s=c||u(o,t);return s?Object(r.createElement)(l.a,{text:"Unexpected error in: "+o,showErrorBlock:i.CURRENT_USER_IS_ADMIN},Object(r.createElement)(d,null,Object(r.createElement)(s,{key:`${o}_forced_${n}`}))):null}))})(m,n,e.childNodes,o)))))}):null},p=e=>{let{Block:t,selector:n,blockName:r,getProps:i=(()=>({})),blockMap:c,blockWrapper:s}=e;Object(o.a)({Block:t,selector:n,getProps:(e,t)=>{const n=d({block:r,blockMap:c,children:e.children||[],blockWrapper:s});return{...i(e,t),children:n}}})}},,,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return c}));var r=n(17),o=n(0),i=n(44);n.p=i.k,Object(r.registerBlockComponent)({blockName:"woocommerce/product-price",component:Object(o.lazy)(()=>Promise.all([n.e(0),n.e(62)]).then(n.bind(null,399)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-image",component:Object(o.lazy)(()=>n.e(61).then(n.bind(null,443)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-title",component:Object(o.lazy)(()=>n.e(69).then(n.bind(null,444)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-rating",component:Object(o.lazy)(()=>n.e(63).then(n.bind(null,400)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-button",component:Object(o.lazy)(()=>n.e(59).then(n.bind(null,401)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-summary",component:Object(o.lazy)(()=>n.e(67).then(n.bind(null,402)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-sale-badge",component:Object(o.lazy)(()=>n.e(64).then(n.bind(null,312)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-sku",component:Object(o.lazy)(()=>n.e(65).then(n.bind(null,403)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-category-list",component:Object(o.lazy)(()=>n.e(60).then(n.bind(null,404)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-tag-list",component:Object(o.lazy)(()=>n.e(68).then(n.bind(null,405)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-stock-indicator",component:Object(o.lazy)(()=>n.e(66).then(n.bind(null,406)))}),Object(r.registerBlockComponent)({blockName:"woocommerce/product-add-to-cart",component:Object(o.lazy)(()=>Promise.all([n.e(1),n.e(74),n.e(58)]).then(n.bind(null,426)))});const c=e=>Object(r.getRegisteredBlockComponents)(e)},,,,,,,,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));const r=(e,t)=>{const n=[];return Object.keys(e).forEach(r=>{if(void 0!==t[r])switch(e[r].type){case"boolean":n[r]="false"!==t[r]&&!1!==t[r];break;case"number":n[r]=parseInt(t[r],10);break;case"array":case"object":n[r]=JSON.parse(t[r]);break;default:n[r]=t[r]}else n[r]=e[r].default}),n}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){e.exports=n(239)},,,,,,,,function(e,t,n){"use strict";n.r(t);var r=n(144),o=n(127),i=n(133),c=n(48),s=n(0),a=n(11),l=n.n(a),u=n(19),d=n.n(u),p=n(13),m=(n(14),n(25)),f=n.n(m);n(6),n(2),n(44);var b=n(92),h=Object(p.createHigherOrderComponent)(e=>class extends s.Component{constructor(){super(...arguments),d()(this,"state",{error:null,loading:!1,product:"preview"===this.props.attributes.productId?this.props.attributes.previewProduct:null}),d()(this,"loadProduct",()=>{const{productId:e}=this.props.attributes;"preview"!==e&&(e?(this.setState({loading:!0}),(e=>f()({path:"/wc/store/v1/products/"+e}))(e).then(e=>{this.setState({product:e,loading:!1,error:null})}).catch(async e=>{const t=await Object(b.a)(e);this.setState({product:null,loading:!1,error:t})})):this.setState({product:null,loading:!1,error:null}))})}componentDidMount(){this.loadProduct()}componentDidUpdate(e){e.attributes.productId!==this.props.attributes.productId&&this.loadProduct()}render(){const{error:t,loading:n,product:r}=this.state;return Object(s.createElement)(e,l()({},this.props,{error:t,getProduct:this.loadProduct,isLoading:n,product:r}))}},"withProduct"),g=n(43),v=n(57),w=n(124),O=n(40),y=n(1),E=n(105),k=n(15),j=Object(s.createElement)(k.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(s.createElement)(k.Path,{d:"M3 18h8V6H3v12zM14 7.5V9h7V7.5h-7zm0 5.3h7v-1.5h-7v1.5zm0 3.7h7V15h-7v1.5z"}));const _="woocommerce/single-product";Object(y.__)("Single Product","woocommerce"),Object(s.createElement)(E.a,{icon:j,className:"wc-block-editor-components-block-icon"}),Object(y.__)("Display a single product.","woocommerce"),Object.keys(Object(i.a)(_));var x=h(e=>{let{isLoading:t,product:n,children:r}=e;const{dispatchStoreEvent:o}=Object(O.a)(),i="wc-block-single-product wc-block-layout",c="woocommerce/single-product/"+((null==n?void 0:n.id)||0);return Object(s.useEffect)(()=>{o("product-render",{product:n,listName:_})},[n,o]),Object(s.createElement)(g.InnerBlockLayoutContextProvider,{parentName:_,parentClassName:i},Object(s.createElement)(g.ProductDataContextProvider,{product:n,isLoading:t},Object(s.createElement)(v.a,null,Object(s.createElement)(w.a,{context:c})),Object(s.createElement)("div",{className:i},r)))}),S={isPreview:{type:"boolean",default:!1,save:!1},productId:{type:"number"}};Object(o.a)({Block:x,blockName:_,selector:".wp-block-woocommerce-single-product",getProps:e=>({attributes:Object(r.a)(S,e.dataset)}),blockMap:Object(i.a)(_)}),(()=>{const e=Object(i.a)("");Object.keys(e).forEach(t=>{const n=".wp-block-"+t.replace("/","-");Object(c.a)({Block:e[t],selector:n,getProps:e=>e.dataset})})})()}]);
packages/woocommerce-blocks/readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: gutenberg, woocommerce, woo commerce, products, blocks, woocommerce blocks
4
  Requires at least: 5.9
5
  Tested up to: 5.9
6
  Requires PHP: 7.0
7
- Stable tag: 7.6.0
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -86,6 +86,19 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
86
 
87
  == Changelog ==
88
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  = 7.6.0 - 2022-05-09 =
90
 
91
  #### Enhancements
4
  Requires at least: 5.9
5
  Tested up to: 5.9
6
  Requires PHP: 7.0
7
+ Stable tag: 7.6.2
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
86
 
87
  == Changelog ==
88
 
89
+ = 7.6.2 - 2022-06-20 =
90
+
91
+ #### Bug Fixes
92
+
93
+ - Fix images hidden by default in Product grid blocks after WC 6.6 update. ([6599](https://github.com/woocommerce/woocommerce-blocks/pull/6599))
94
+
95
+ = 7.6.1 - 2022-06-17 =
96
+
97
+ ### Bug Fixes
98
+
99
+ - Fix PHP notice in Mini Cart when prices included taxes. ([6537](https://github.com/woocommerce/woocommerce-blocks/pull/6537))
100
+ - Fix error Uncaught Error: Call to undefined function Automattic\WooCommerce\Blocks\Templates\wp_is_block_theme() in WP 5.8. ([6590](https://github.com/woocommerce/woocommerce-blocks/pull/6590))
101
+
102
  = 7.6.0 - 2022-05-09 =
103
 
104
  #### Enhancements
packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php CHANGED
@@ -519,7 +519,7 @@ abstract class AbstractProductGrid extends AbstractDynamicBlock {
519
  * @return string
520
  */
521
  protected function get_image_html( $product ) {
522
- if ( empty( $this->attributes['contentVisibility']['image'] ) ) {
523
  return '';
524
  }
525
 
519
  * @return string
520
  */
521
  protected function get_image_html( $product ) {
522
+ if ( array_key_exists( 'image', $this->attributes['contentVisibility'] ) && false === $this->attributes['contentVisibility']['image'] ) {
523
  return '';
524
  }
525
 
packages/woocommerce-blocks/src/BlockTypes/MiniCart.php CHANGED
@@ -213,8 +213,7 @@ class MiniCart extends AbstractBlock {
213
 
214
  if (
215
  current_user_can( 'edit_theme_options' ) &&
216
- function_exists( 'wp_is_block_theme' ) &&
217
- wp_is_block_theme()
218
  ) {
219
  $theme_slug = BlockTemplateUtils::theme_has_template_part( 'mini-cart' ) ? wp_get_theme()->get_stylesheet() : BlockTemplateUtils::PLUGIN_SLUG;
220
  $site_editor_uri = admin_url( 'site-editor.php' );
@@ -447,7 +446,7 @@ class MiniCart extends AbstractBlock {
447
  );
448
  }
449
  return array(
450
- 'label_including_tax' => '',
451
  'display_cart_prices_including_tax' => true,
452
  );
453
  }
213
 
214
  if (
215
  current_user_can( 'edit_theme_options' ) &&
216
+ wc_current_theme_is_fse_theme()
 
217
  ) {
218
  $theme_slug = BlockTemplateUtils::theme_has_template_part( 'mini-cart' ) ? wp_get_theme()->get_stylesheet() : BlockTemplateUtils::PLUGIN_SLUG;
219
  $site_editor_uri = admin_url( 'site-editor.php' );
446
  );
447
  }
448
  return array(
449
+ 'tax_label' => '',
450
  'display_cart_prices_including_tax' => true,
451
  );
452
  }
packages/woocommerce-blocks/src/Package.php CHANGED
@@ -106,7 +106,7 @@ class Package {
106
  NewPackage::class,
107
  function ( $container ) {
108
  // leave for automated version bumping.
109
- $version = '7.6.0';
110
  return new NewPackage(
111
  $version,
112
  dirname( __DIR__ ),
106
  NewPackage::class,
107
  function ( $container ) {
108
  // leave for automated version bumping.
109
+ $version = '7.6.2';
110
  return new NewPackage(
111
  $version,
112
  dirname( __DIR__ ),
packages/woocommerce-blocks/src/Templates/ProductSearchResultsTemplate.php CHANGED
@@ -33,7 +33,7 @@ class ProductSearchResultsTemplate {
33
  * @param array $templates Templates that match the search hierarchy.
34
  */
35
  public function update_search_template_hierarchy( $templates ) {
36
- if ( ( is_search() && is_post_type_archive( 'product' ) ) && wp_is_block_theme() ) {
37
  return [ self::SLUG ];
38
  }
39
  return $templates;
33
  * @param array $templates Templates that match the search hierarchy.
34
  */
35
  public function update_search_template_hierarchy( $templates ) {
36
+ if ( ( is_search() && is_post_type_archive( 'product' ) ) && wc_current_theme_is_fse_theme() ) {
37
  return [ self::SLUG ];
38
  }
39
  return $templates;
packages/woocommerce-blocks/src/Utils/BlockTemplateUtils.php CHANGED
@@ -366,7 +366,7 @@ class BlockTemplateUtils {
366
  */
367
  public static function supports_block_templates() {
368
  if (
369
- ( ! function_exists( 'wp_is_block_theme' ) || ! wp_is_block_theme() ) &&
370
  ( ! function_exists( 'gutenberg_supports_block_templates' ) || ! gutenberg_supports_block_templates() )
371
  ) {
372
  return false;
366
  */
367
  public static function supports_block_templates() {
368
  if (
369
+ ! wc_current_theme_is_fse_theme() &&
370
  ( ! function_exists( 'gutenberg_supports_block_templates' ) || ! gutenberg_supports_block_templates() )
371
  ) {
372
  return false;
packages/woocommerce-blocks/vendor/autoload.php CHANGED
@@ -2,6 +2,11 @@
2
 
3
  // autoload.php @generated by Composer
4
 
 
 
 
 
 
5
  require_once __DIR__ . '/composer/autoload_real.php';
6
 
7
- return ComposerAutoloaderInit37846cd263b598eff05d576054559937::getLoader();
2
 
3
  // autoload.php @generated by Composer
4
 
5
+ if (PHP_VERSION_ID < 50600) {
6
+ echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
7
+ exit(1);
8
+ }
9
+
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
+ return ComposerAutoloaderInit2f51aa9cbb7bfe6b7e9d18f9e9fd7874::getLoader();
packages/woocommerce-blocks/vendor/autoload_packages.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/composer/InstalledVersions.php CHANGED
@@ -21,6 +21,8 @@ use Composer\Semver\VersionParser;
21
  * See also https://getcomposer.org/doc/07-runtime.md#installed-versions
22
  *
23
  * To require its presence, you can require `composer-runtime-api ^2.0`
 
 
24
  */
25
  class InstalledVersions
26
  {
21
  * See also https://getcomposer.org/doc/07-runtime.md#installed-versions
22
  *
23
  * To require its presence, you can require `composer-runtime-api ^2.0`
24
+ *
25
+ * @final
26
  */
27
  class InstalledVersions
28
  {
packages/woocommerce-blocks/vendor/composer/autoload_classmap.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_classmap.php @generated by Composer
4
 
5
- $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
2
 
3
  // autoload_classmap.php @generated by Composer
4
 
5
+ $vendorDir = dirname(__DIR__);
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
packages/woocommerce-blocks/vendor/composer/autoload_files.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_files.php @generated by Composer
4
 
5
- $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
2
 
3
  // autoload_files.php @generated by Composer
4
 
5
+ $vendorDir = dirname(__DIR__);
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
packages/woocommerce-blocks/vendor/composer/autoload_namespaces.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_namespaces.php @generated by Composer
4
 
5
- $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
2
 
3
  // autoload_namespaces.php @generated by Composer
4
 
5
+ $vendorDir = dirname(__DIR__);
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
packages/woocommerce-blocks/vendor/composer/autoload_psr4.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_psr4.php @generated by Composer
4
 
5
- $vendorDir = dirname(dirname(__FILE__));
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
2
 
3
  // autoload_psr4.php @generated by Composer
4
 
5
+ $vendorDir = dirname(__DIR__);
6
  $baseDir = dirname($vendorDir);
7
 
8
  return array(
packages/woocommerce-blocks/vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInit37846cd263b598eff05d576054559937
6
  {
7
  private static $loader;
8
 
@@ -22,41 +22,18 @@ class ComposerAutoloaderInit37846cd263b598eff05d576054559937
22
  return self::$loader;
23
  }
24
 
25
- spl_autoload_register(array('ComposerAutoloaderInit37846cd263b598eff05d576054559937', 'loadClassLoader'), true, true);
26
- self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__)));
27
- spl_autoload_unregister(array('ComposerAutoloaderInit37846cd263b598eff05d576054559937', 'loadClassLoader'));
28
 
29
- $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
30
- if ($useStaticLoader) {
31
- require __DIR__ . '/autoload_static.php';
32
-
33
- call_user_func(\Composer\Autoload\ComposerStaticInit37846cd263b598eff05d576054559937::getInitializer($loader));
34
- } else {
35
- $map = require __DIR__ . '/autoload_namespaces.php';
36
- foreach ($map as $namespace => $path) {
37
- $loader->set($namespace, $path);
38
- }
39
-
40
- $map = require __DIR__ . '/autoload_psr4.php';
41
- foreach ($map as $namespace => $path) {
42
- $loader->setPsr4($namespace, $path);
43
- }
44
-
45
- $classMap = require __DIR__ . '/autoload_classmap.php';
46
- if ($classMap) {
47
- $loader->addClassMap($classMap);
48
- }
49
- }
50
 
51
  $loader->register(true);
52
 
53
- if ($useStaticLoader) {
54
- $includeFiles = Composer\Autoload\ComposerStaticInit37846cd263b598eff05d576054559937::$files;
55
- } else {
56
- $includeFiles = require __DIR__ . '/autoload_files.php';
57
- }
58
  foreach ($includeFiles as $fileIdentifier => $file) {
59
- composerRequire37846cd263b598eff05d576054559937($fileIdentifier, $file);
60
  }
61
 
62
  return $loader;
@@ -68,7 +45,7 @@ class ComposerAutoloaderInit37846cd263b598eff05d576054559937
68
  * @param string $file
69
  * @return void
70
  */
71
- function composerRequire37846cd263b598eff05d576054559937($fileIdentifier, $file)
72
  {
73
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
74
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit2f51aa9cbb7bfe6b7e9d18f9e9fd7874
6
  {
7
  private static $loader;
8
 
22
  return self::$loader;
23
  }
24
 
25
+ spl_autoload_register(array('ComposerAutoloaderInit2f51aa9cbb7bfe6b7e9d18f9e9fd7874', 'loadClassLoader'), true, true);
26
+ self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
27
+ spl_autoload_unregister(array('ComposerAutoloaderInit2f51aa9cbb7bfe6b7e9d18f9e9fd7874', 'loadClassLoader'));
28
 
29
+ require __DIR__ . '/autoload_static.php';
30
+ call_user_func(\Composer\Autoload\ComposerStaticInit2f51aa9cbb7bfe6b7e9d18f9e9fd7874::getInitializer($loader));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
  $loader->register(true);
33
 
34
+ $includeFiles = \Composer\Autoload\ComposerStaticInit2f51aa9cbb7bfe6b7e9d18f9e9fd7874::$files;
 
 
 
 
35
  foreach ($includeFiles as $fileIdentifier => $file) {
36
+ composerRequire2f51aa9cbb7bfe6b7e9d18f9e9fd7874($fileIdentifier, $file);
37
  }
38
 
39
  return $loader;
45
  * @param string $file
46
  * @return void
47
  */
48
+ function composerRequire2f51aa9cbb7bfe6b7e9d18f9e9fd7874($fileIdentifier, $file)
49
  {
50
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
51
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
packages/woocommerce-blocks/vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInit37846cd263b598eff05d576054559937
8
  {
9
  public static $files = array (
10
  'fcd5d7d87e03ff4f5b5a66c2b8968671' => __DIR__ . '/../..' . '/src/StoreApi/deprecated.php',
@@ -51,9 +51,9 @@ class ComposerStaticInit37846cd263b598eff05d576054559937
51
  public static function getInitializer(ClassLoader $loader)
52
  {
53
  return \Closure::bind(function () use ($loader) {
54
- $loader->prefixLengthsPsr4 = ComposerStaticInit37846cd263b598eff05d576054559937::$prefixLengthsPsr4;
55
- $loader->prefixDirsPsr4 = ComposerStaticInit37846cd263b598eff05d576054559937::$prefixDirsPsr4;
56
- $loader->classMap = ComposerStaticInit37846cd263b598eff05d576054559937::$classMap;
57
 
58
  }, null, ClassLoader::class);
59
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit2f51aa9cbb7bfe6b7e9d18f9e9fd7874
8
  {
9
  public static $files = array (
10
  'fcd5d7d87e03ff4f5b5a66c2b8968671' => __DIR__ . '/../..' . '/src/StoreApi/deprecated.php',
51
  public static function getInitializer(ClassLoader $loader)
52
  {
53
  return \Closure::bind(function () use ($loader) {
54
+ $loader->prefixLengthsPsr4 = ComposerStaticInit2f51aa9cbb7bfe6b7e9d18f9e9fd7874::$prefixLengthsPsr4;
55
+ $loader->prefixDirsPsr4 = ComposerStaticInit2f51aa9cbb7bfe6b7e9d18f9e9fd7874::$prefixDirsPsr4;
56
+ $loader->classMap = ComposerStaticInit2f51aa9cbb7bfe6b7e9d18f9e9fd7874::$classMap;
57
 
58
  }, null, ClassLoader::class);
59
  }
packages/woocommerce-blocks/vendor/composer/installed.php CHANGED
@@ -5,7 +5,7 @@
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
- 'reference' => '7e5b4b5efaf9d22ac7c5d842ec97e1b09bd290a0',
9
  'name' => 'woocommerce/woocommerce-blocks',
10
  'dev' => false,
11
  ),
@@ -46,7 +46,7 @@
46
  'type' => 'wordpress-plugin',
47
  'install_path' => __DIR__ . '/../../',
48
  'aliases' => array(),
49
- 'reference' => '7e5b4b5efaf9d22ac7c5d842ec97e1b09bd290a0',
50
  'dev_requirement' => false,
51
  ),
52
  ),
5
  'type' => 'wordpress-plugin',
6
  'install_path' => __DIR__ . '/../../',
7
  'aliases' => array(),
8
+ 'reference' => '63343bd8b8c5062e522f736726ccf076cf40d769',
9
  'name' => 'woocommerce/woocommerce-blocks',
10
  'dev' => false,
11
  ),
46
  'type' => 'wordpress-plugin',
47
  'install_path' => __DIR__ . '/../../',
48
  'aliases' => array(),
49
+ 'reference' => '63343bd8b8c5062e522f736726ccf076cf40d769',
50
  'dev_requirement' => false,
51
  ),
52
  ),
packages/woocommerce-blocks/vendor/composer/jetpack_autoload_filemap.php CHANGED
@@ -7,11 +7,11 @@ $baseDir = dirname($vendorDir);
7
 
8
  return array(
9
  'fcd5d7d87e03ff4f5b5a66c2b8968671' => array(
10
- 'version' => '7.6.0.0',
11
  'path' => $baseDir . '/src/StoreApi/deprecated.php'
12
  ),
13
  'd0f16a186498c2ba04f1d0064fecf9cf' => array(
14
- 'version' => '7.6.0.0',
15
  'path' => $baseDir . '/src/StoreApi/functions.php'
16
  ),
17
  );
7
 
8
  return array(
9
  'fcd5d7d87e03ff4f5b5a66c2b8968671' => array(
10
+ 'version' => '7.6.2.0',
11
  'path' => $baseDir . '/src/StoreApi/deprecated.php'
12
  ),
13
  'd0f16a186498c2ba04f1d0064fecf9cf' => array(
14
+ 'version' => '7.6.2.0',
15
  'path' => $baseDir . '/src/StoreApi/functions.php'
16
  ),
17
  );
packages/woocommerce-blocks/vendor/composer/jetpack_autoload_psr4.php CHANGED
@@ -11,15 +11,15 @@ return array(
11
  'path' => array( $vendorDir . '/composer/installers/src/Composer/Installers' )
12
  ),
13
  'Automattic\\WooCommerce\\StoreApi\\' => array(
14
- 'version' => '7.6.0.0',
15
  'path' => array( $baseDir . '/src/StoreApi' )
16
  ),
17
  'Automattic\\WooCommerce\\Blocks\\Tests\\' => array(
18
- 'version' => '7.6.0.0',
19
  'path' => array( $baseDir . '/tests/php' )
20
  ),
21
  'Automattic\\WooCommerce\\Blocks\\' => array(
22
- 'version' => '7.6.0.0',
23
  'path' => array( $baseDir . '/src' )
24
  ),
25
  'Automattic\\Jetpack\\Autoloader\\' => array(
11
  'path' => array( $vendorDir . '/composer/installers/src/Composer/Installers' )
12
  ),
13
  'Automattic\\WooCommerce\\StoreApi\\' => array(
14
+ 'version' => '7.6.2.0',
15
  'path' => array( $baseDir . '/src/StoreApi' )
16
  ),
17
  'Automattic\\WooCommerce\\Blocks\\Tests\\' => array(
18
+ 'version' => '7.6.2.0',
19
  'path' => array( $baseDir . '/tests/php' )
20
  ),
21
  'Automattic\\WooCommerce\\Blocks\\' => array(
22
+ 'version' => '7.6.2.0',
23
  'path' => array( $baseDir . '/src' )
24
  ),
25
  'Automattic\\Jetpack\\Autoloader\\' => array(
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader-locator.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-autoloader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-container.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-hook-manager.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-latest-autoloader-guard.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-manifest-reader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-path-processor.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-php-autoloader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-plugin-locator.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-plugins-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-shutdown-handler.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-version-loader.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/vendor/jetpack-autoloader/class-version-selector.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jp37846cd263b598eff05d576054559937;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp2f51aa9cbb7bfe6b7e9d18f9e9fd7874;
9
 
10
  // phpcs:ignore
11
 
packages/woocommerce-blocks/woocommerce-gutenberg-products-block.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce Blocks
4
  * Plugin URI: https://github.com/woocommerce/woocommerce-gutenberg-products-block
5
  * Description: WooCommerce blocks for the Gutenberg editor.
6
- * Version: 7.6.0
7
  * Author: Automattic
8
  * Author URI: https://woocommerce.com
9
  * Text Domain: woo-gutenberg-products-block
3
  * Plugin Name: WooCommerce Blocks
4
  * Plugin URI: https://github.com/woocommerce/woocommerce-gutenberg-products-block
5
  * Description: WooCommerce blocks for the Gutenberg editor.
6
+ * Version: 7.6.2
7
  * Author: Automattic
8
  * Author URI: https://woocommerce.com
9
  * Text Domain: woo-gutenberg-products-block
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: e-commerce, store, sales, sell, woo, shop, cart, checkout, downloadable, d
4
  Requires at least: 5.8
5
  Tested up to: 6.0
6
  Requires PHP: 7.2
7
- Stable tag: 6.6.0
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -160,6 +160,18 @@ WooCommerce comes with some sample data you can use to see how products look; im
160
 
161
  == Changelog ==
162
 
 
 
 
 
 
 
 
 
 
 
 
 
163
  = 6.6.0 2022-06-14 =
164
 
165
  **WooCommerce**
4
  Requires at least: 5.8
5
  Tested up to: 6.0
6
  Requires PHP: 7.2
7
+ Stable tag: 6.6.1
8
  License: GPLv3
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
10
 
160
 
161
  == Changelog ==
162
 
163
+ = 6.6.1 2022-06-21 =
164
+
165
+ **WooCommerce**
166
+
167
+ * Fix - Make sure payment gateway title is a string before sanitizing. [#33434](https://github.com/woocommerce/woocommerce/pull/33434)
168
+
169
+ **WooCommerce Blocks 7.6.1 & 7.6.2**
170
+
171
+ * Fix - Fix error Uncaught Error: Call to undefined function Automattic\WooCommerce\Blocks\Templates\wp_is_block_theme() in WP 5.8. [#6590](https://github.com/woocommerce/woocommerce-blocks/pull/6590)
172
+ * Fix - Fix PHP notice in Mini Cart when prices included taxes. [#6537](https://github.com/woocommerce/woocommerce-blocks/pull/6537)
173
+ * Fix - Fix images hidden by default in Product grid blocks after WC 6.6 update. [#6599](https://github.com/woocommerce/woocommerce-blocks/pull/6599)
174
+
175
  = 6.6.0 2022-06-14 =
176
 
177
  **WooCommerce**
vendor/autoload.php CHANGED
@@ -9,4 +9,4 @@ if (PHP_VERSION_ID < 50600) {
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
- return ComposerAutoloaderInite8348b980156b583b4abea6ab9d2e054::getLoader();
9
 
10
  require_once __DIR__ . '/composer/autoload_real.php';
11
 
12
+ return ComposerAutoloaderInit282920e83de2438099380f7e5b2fa2b4::getLoader();
vendor/autoload_packages.php CHANGED
@@ -5,7 +5,7 @@
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
- namespace Automattic\Jetpack\Autoloader\jpe8348b980156b583b4abea6ab9d2e054;
9
 
10
  // phpcs:ignore
11
 
5
  * @package automattic/jetpack-autoloader
6
  */
7
 
8
+ namespace Automattic\Jetpack\Autoloader\jp282920e83de2438099380f7e5b2fa2b4;
9
 
10
  // phpcs:ignore
11
 
vendor/composer/autoload_real.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
- class ComposerAutoloaderInite8348b980156b583b4abea6ab9d2e054
6
  {
7
  private static $loader;
8
 
@@ -24,18 +24,18 @@ class ComposerAutoloaderInite8348b980156b583b4abea6ab9d2e054
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
- spl_autoload_register(array('ComposerAutoloaderInite8348b980156b583b4abea6ab9d2e054', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
- spl_autoload_unregister(array('ComposerAutoloaderInite8348b980156b583b4abea6ab9d2e054', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
- call_user_func(\Composer\Autoload\ComposerStaticInite8348b980156b583b4abea6ab9d2e054::getInitializer($loader));
33
 
34
  $loader->register(true);
35
 
36
- $includeFiles = \Composer\Autoload\ComposerStaticInite8348b980156b583b4abea6ab9d2e054::$files;
37
  foreach ($includeFiles as $fileIdentifier => $file) {
38
- composerRequiree8348b980156b583b4abea6ab9d2e054($fileIdentifier, $file);
39
  }
40
 
41
  return $loader;
@@ -47,7 +47,7 @@ class ComposerAutoloaderInite8348b980156b583b4abea6ab9d2e054
47
  * @param string $file
48
  * @return void
49
  */
50
- function composerRequiree8348b980156b583b4abea6ab9d2e054($fileIdentifier, $file)
51
  {
52
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
53
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
2
 
3
  // autoload_real.php @generated by Composer
4
 
5
+ class ComposerAutoloaderInit282920e83de2438099380f7e5b2fa2b4
6
  {
7
  private static $loader;
8
 
24
 
25
  require __DIR__ . '/platform_check.php';
26
 
27
+ spl_autoload_register(array('ComposerAutoloaderInit282920e83de2438099380f7e5b2fa2b4', 'loadClassLoader'), true, true);
28
  self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29
+ spl_autoload_unregister(array('ComposerAutoloaderInit282920e83de2438099380f7e5b2fa2b4', 'loadClassLoader'));
30
 
31
  require __DIR__ . '/autoload_static.php';
32
+ call_user_func(\Composer\Autoload\ComposerStaticInit282920e83de2438099380f7e5b2fa2b4::getInitializer($loader));
33
 
34
  $loader->register(true);
35
 
36
+ $includeFiles = \Composer\Autoload\ComposerStaticInit282920e83de2438099380f7e5b2fa2b4::$files;
37
  foreach ($includeFiles as $fileIdentifier => $file) {
38
+ composerRequire282920e83de2438099380f7e5b2fa2b4($fileIdentifier, $file);
39
  }
40
 
41
  return $loader;
47
  * @param string $file
48
  * @return void
49
  */
50
+ function composerRequire282920e83de2438099380f7e5b2fa2b4($fileIdentifier, $file)
51
  {
52
  if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
53
  $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
vendor/composer/autoload_static.php CHANGED
@@ -4,7 +4,7 @@
4
 
5
  namespace Composer\Autoload;
6
 
7
- class ComposerStaticInite8348b980156b583b4abea6ab9d2e054
8
  {
9
  public static $files = array (
10
  'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
@@ -967,10 +967,10 @@ class ComposerStaticInite8348b980156b583b4abea6ab9d2e054
967
  public static function getInitializer(ClassLoader $loader)
968
  {
969
  return \Closure::bind(function () use ($loader) {
970
- $loader->prefixLengthsPsr4 = ComposerStaticInite8348b980156b583b4abea6ab9d2e054::$prefixLengthsPsr4;
971
- $loader->prefixDirsPsr4 = ComposerStaticInite8348b980156b583b4abea6ab9d2e054::$prefixDirsPsr4;
972
- $loader->prefixesPsr0 = ComposerStaticInite8348b980156b583b4abea6ab9d2e054::$prefixesPsr0;
973
- $loader->classMap = ComposerStaticInite8348b980156b583b4abea6ab9d2e054::$classMap;
974
 
975
  }, null, ClassLoader::class);
976
  }
4
 
5
  namespace Composer\Autoload;
6
 
7
+ class ComposerStaticInit282920e83de2438099380f7e5b2fa2b4
8
  {
9
  public static $files = array (
10
  'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php',
967
  public static function getInitializer(ClassLoader $loader)
968
  {
969
  return \Closure::bind(function () use ($loader) {
970
+ $loader->prefixLengthsPsr4 = ComposerStaticInit282920e83de2438099380f7e5b2fa2b4::$prefixLengthsPsr4;
971
+ $loader->prefixDirsPsr4 = ComposerStaticInit282920e83de2438099380f7e5b2fa2b4::$prefixDirsPsr4;
972
+ $loader->prefixesPsr0 = ComposerStaticInit282920e83de2438099380f7e5b2fa2b4::$prefixesPsr0;
973
+ $loader->classMap = ComposerStaticInit282920e83de2438099380f7e5b2fa2b4::$classMap;
974
 
975
  }, null, ClassLoader::class);
976
  }
vendor/composer/installed.json CHANGED
@@ -705,17 +705,17 @@
705
  },
706
  {
707
  "name": "woocommerce/woocommerce-blocks",
708
- "version": "v7.6.0",
709
- "version_normalized": "7.6.0.0",
710
  "source": {
711
  "type": "git",
712
- "url": "https://github.com/woocommerce/woocommerce-gutenberg-products-block.git",
713
- "reference": "07a0b46a568e6187981cfd89467c78600c82f2af"
714
  },
715
  "dist": {
716
  "type": "zip",
717
- "url": "https://api.github.com/repos/woocommerce/woocommerce-gutenberg-products-block/zipball/07a0b46a568e6187981cfd89467c78600c82f2af",
718
- "reference": "07a0b46a568e6187981cfd89467c78600c82f2af",
719
  "shasum": ""
720
  },
721
  "require": {
@@ -729,7 +729,7 @@
729
  "wp-phpunit/wp-phpunit": "^5.4",
730
  "yoast/phpunit-polyfills": "^1.0"
731
  },
732
- "time": "2022-05-10T08:37:47+00:00",
733
  "type": "wordpress-plugin",
734
  "extra": {
735
  "scripts-description": {
@@ -760,8 +760,8 @@
760
  "woocommerce"
761
  ],
762
  "support": {
763
- "issues": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/issues",
764
- "source": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/tree/v7.6.0"
765
  },
766
  "install-path": "../../packages/woocommerce-blocks"
767
  }
705
  },
706
  {
707
  "name": "woocommerce/woocommerce-blocks",
708
+ "version": "v7.6.2",
709
+ "version_normalized": "7.6.2.0",
710
  "source": {
711
  "type": "git",
712
+ "url": "https://github.com/woocommerce/woocommerce-blocks.git",
713
+ "reference": "5186f5691d07e0cce39a159974b5db85565c55d4"
714
  },
715
  "dist": {
716
  "type": "zip",
717
+ "url": "https://api.github.com/repos/woocommerce/woocommerce-blocks/zipball/5186f5691d07e0cce39a159974b5db85565c55d4",
718
+ "reference": "5186f5691d07e0cce39a159974b5db85565c55d4",
719
  "shasum": ""
720
  },
721
  "require": {
729
  "wp-phpunit/wp-phpunit": "^5.4",
730
  "yoast/phpunit-polyfills": "^1.0"
731
  },
732
+ "time": "2022-06-20T12:43:45+00:00",
733
  "type": "wordpress-plugin",
734
  "extra": {
735
  "scripts-description": {
760
  "woocommerce"
761
  ],
762
  "support": {
763
+ "issues": "https://github.com/woocommerce/woocommerce-blocks/issues",
764
+ "source": "https://github.com/woocommerce/woocommerce-blocks/tree/v7.6.2"
765
  },
766
  "install-path": "../../packages/woocommerce-blocks"
767
  }
vendor/composer/installed.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php return array(
2
  'root' => array(
3
  'name' => 'woocommerce/woocommerce',
4
- 'pretty_version' => '6.6.0',
5
- 'version' => '6.6.0.0',
6
  'reference' => NULL,
7
  'type' => 'wordpress-plugin',
8
  'install_path' => __DIR__ . '/../../',
@@ -113,8 +113,8 @@
113
  'dev_requirement' => false,
114
  ),
115
  'woocommerce/woocommerce' => array(
116
- 'pretty_version' => '6.6.0',
117
- 'version' => '6.6.0.0',
118
  'reference' => NULL,
119
  'type' => 'wordpress-plugin',
120
  'install_path' => __DIR__ . '/../../',
@@ -122,9 +122,9 @@
122
  'dev_requirement' => false,
123
  ),
124
  'woocommerce/woocommerce-blocks' => array(
125
- 'pretty_version' => 'v7.6.0',
126
- 'version' => '7.6.0.0',
127
- 'reference' => '07a0b46a568e6187981cfd89467c78600c82f2af',
128
  'type' => 'wordpress-plugin',
129
  'install_path' => __DIR__ . '/../../packages/woocommerce-blocks',
130
  'aliases' => array(),
1
  <?php return array(
2
  'root' => array(
3
  'name' => 'woocommerce/woocommerce',
4
+ 'pretty_version' => '6.6.1',
5
+ 'version' => '6.6.1.0',
6
  'reference' => NULL,
7
  'type' => 'wordpress-plugin',
8
  'install_path' => __DIR__ . '/../../',
113
  'dev_requirement' => false,
114
  ),
115
  'woocommerce/woocommerce' => array(
116
+ 'pretty_version' => '6.6.1',
117
+ 'version' => '6.6.1.0',
118
  'reference' => NULL,
119
  'type' => 'wordpress-plugin',
120
  'install_path' => __DIR__ . '/../../',
122
  'dev_requirement' => false,
123
  ),
124
  'woocommerce/woocommerce-blocks' => array(
125
+ 'pretty_version' => 'v7.6.2',
126
+ 'version' => '7.6.2.0',
127
+ 'reference' => '5186f5691d07e0cce39a159974b5db85565c55d4',
128
  'type' => 'wordpress-plugin',
129
  'install_path' => __DIR__ . '/../../packages/woocommerce-blocks',
130
  'aliases' => array(),
vendor/composer/jetpack_autoload_classmap.php CHANGED
@@ -14,353 +14,357 @@ return array(
14
  'version' => '1.25.0.0',
15
  'path' => $vendorDir . '/symfony/polyfill-php80/Php80.php'
16
  ),
17
- 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => array(
18
  'version' => '4.4.37.0',
19
- 'path' => $vendorDir . '/symfony/css-selector/Node/ClassNode.php'
20
  ),
21
- 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => array(
22
  'version' => '4.4.37.0',
23
- 'path' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php'
24
  ),
25
- 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => array(
26
  'version' => '4.4.37.0',
27
- 'path' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php'
28
  ),
29
- 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => array(
30
  'version' => '4.4.37.0',
31
- 'path' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php'
32
  ),
33
- 'Symfony\\Component\\CssSelector\\Node\\HashNode' => array(
34
  'version' => '4.4.37.0',
35
- 'path' => $vendorDir . '/symfony/css-selector/Node/HashNode.php'
36
  ),
37
- 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => array(
38
  'version' => '4.4.37.0',
39
- 'path' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php'
40
  ),
41
- 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => array(
42
  'version' => '4.4.37.0',
43
- 'path' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php'
44
  ),
45
- 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => array(
46
  'version' => '4.4.37.0',
47
- 'path' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php'
48
  ),
49
- 'Symfony\\Component\\CssSelector\\Node\\Specificity' => array(
50
  'version' => '4.4.37.0',
51
- 'path' => $vendorDir . '/symfony/css-selector/Node/Specificity.php'
52
  ),
53
- 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => array(
54
  'version' => '4.4.37.0',
55
- 'path' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php'
56
  ),
57
- 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => array(
58
  'version' => '4.4.37.0',
59
- 'path' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php'
60
  ),
61
- 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => array(
62
  'version' => '4.4.37.0',
63
- 'path' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php'
64
  ),
65
- 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => array(
66
  'version' => '4.4.37.0',
67
- 'path' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php'
68
  ),
69
- 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => array(
70
  'version' => '4.4.37.0',
71
- 'path' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php'
72
  ),
73
- 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => array(
74
  'version' => '4.4.37.0',
75
- 'path' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php'
76
  ),
77
- 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => array(
78
  'version' => '4.4.37.0',
79
- 'path' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php'
80
  ),
81
- 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => array(
82
  'version' => '4.4.37.0',
83
- 'path' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php'
84
  ),
85
- 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => array(
86
  'version' => '4.4.37.0',
87
- 'path' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php'
88
  ),
89
- 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => array(
90
  'version' => '4.4.37.0',
91
- 'path' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php'
92
  ),
93
- 'Symfony\\Component\\CssSelector\\XPath\\Translator' => array(
94
  'version' => '4.4.37.0',
95
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Translator.php'
96
  ),
97
- 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => array(
98
  'version' => '4.4.37.0',
99
- 'path' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php'
100
  ),
101
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => array(
102
  'version' => '4.4.37.0',
103
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php'
104
  ),
105
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => array(
106
  'version' => '4.4.37.0',
107
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php'
108
  ),
109
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => array(
110
  'version' => '4.4.37.0',
111
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php'
112
  ),
113
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => array(
114
  'version' => '4.4.37.0',
115
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php'
116
  ),
117
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => array(
118
  'version' => '4.4.37.0',
119
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php'
120
  ),
121
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => array(
122
  'version' => '4.4.37.0',
123
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php'
124
  ),
125
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => array(
126
  'version' => '4.4.37.0',
127
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php'
128
  ),
129
- 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => array(
130
  'version' => '4.4.37.0',
131
- 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php'
132
  ),
133
- 'Symfony\\Component\\CssSelector\\Parser\\Parser' => array(
134
  'version' => '4.4.37.0',
135
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Parser.php'
136
  ),
137
- 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => array(
138
  'version' => '4.4.37.0',
139
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php'
140
  ),
141
- 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => array(
142
  'version' => '4.4.37.0',
143
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php'
144
  ),
145
- 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => array(
146
  'version' => '4.4.37.0',
147
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php'
148
  ),
149
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => array(
150
  'version' => '4.4.37.0',
151
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php'
152
  ),
153
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => array(
154
  'version' => '4.4.37.0',
155
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php'
156
  ),
157
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => array(
158
  'version' => '4.4.37.0',
159
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php'
160
  ),
161
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => array(
162
  'version' => '4.4.37.0',
163
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php'
164
  ),
165
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => array(
166
  'version' => '4.4.37.0',
167
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php'
168
  ),
169
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => array(
170
  'version' => '4.4.37.0',
171
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php'
172
  ),
173
- 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => array(
174
  'version' => '4.4.37.0',
175
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php'
176
  ),
177
- 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => array(
178
  'version' => '4.4.37.0',
179
- 'path' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php'
180
  ),
181
- 'Symfony\\Component\\CssSelector\\Parser\\Token' => array(
182
  'version' => '4.4.37.0',
183
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Token.php'
184
  ),
185
- 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => array(
186
  'version' => '4.4.37.0',
187
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php'
188
  ),
189
- 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => array(
190
  'version' => '4.4.37.0',
191
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php'
192
  ),
193
- 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => array(
194
  'version' => '4.4.37.0',
195
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php'
196
  ),
197
- 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => array(
198
  'version' => '4.4.37.0',
199
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php'
200
  ),
201
- 'Symfony\\Component\\CssSelector\\Parser\\Reader' => array(
202
  'version' => '4.4.37.0',
203
- 'path' => $vendorDir . '/symfony/css-selector/Parser/Reader.php'
204
  ),
205
- 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => array(
206
  'version' => '4.4.37.0',
207
- 'path' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php'
 
 
 
 
208
  ),
209
  'Sabberworm\\CSS\\Parser' => array(
210
  'version' => '8.4.0.0',
211
  'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parser.php'
212
  ),
213
- 'Sabberworm\\CSS\\Settings' => array(
214
  'version' => '8.4.0.0',
215
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Settings.php'
216
  ),
217
- 'Sabberworm\\CSS\\OutputFormat' => array(
218
  'version' => '8.4.0.0',
219
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/OutputFormat.php'
220
  ),
221
- 'Sabberworm\\CSS\\Value\\Value' => array(
222
  'version' => '8.4.0.0',
223
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/Value.php'
224
  ),
225
- 'Sabberworm\\CSS\\Value\\CalcRuleValueList' => array(
226
  'version' => '8.4.0.0',
227
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CalcRuleValueList.php'
228
  ),
229
- 'Sabberworm\\CSS\\Value\\CSSString' => array(
230
  'version' => '8.4.0.0',
231
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CSSString.php'
232
  ),
233
- 'Sabberworm\\CSS\\Value\\ValueList' => array(
234
  'version' => '8.4.0.0',
235
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/ValueList.php'
236
  ),
237
- 'Sabberworm\\CSS\\Value\\Color' => array(
238
  'version' => '8.4.0.0',
239
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/Color.php'
240
  ),
241
- 'Sabberworm\\CSS\\Value\\Size' => array(
242
  'version' => '8.4.0.0',
243
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/Size.php'
244
  ),
245
- 'Sabberworm\\CSS\\Value\\CSSFunction' => array(
246
  'version' => '8.4.0.0',
247
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CSSFunction.php'
248
  ),
249
- 'Sabberworm\\CSS\\Value\\URL' => array(
250
  'version' => '8.4.0.0',
251
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/URL.php'
252
  ),
253
- 'Sabberworm\\CSS\\Value\\PrimitiveValue' => array(
254
  'version' => '8.4.0.0',
255
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/PrimitiveValue.php'
256
  ),
257
- 'Sabberworm\\CSS\\Value\\CalcFunction' => array(
258
  'version' => '8.4.0.0',
259
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CalcFunction.php'
260
  ),
261
- 'Sabberworm\\CSS\\Value\\LineName' => array(
262
  'version' => '8.4.0.0',
263
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/LineName.php'
264
  ),
265
- 'Sabberworm\\CSS\\Value\\RuleValueList' => array(
266
  'version' => '8.4.0.0',
267
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/RuleValueList.php'
268
  ),
269
- 'Sabberworm\\CSS\\Comment\\Commentable' => array(
270
  'version' => '8.4.0.0',
271
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Comment/Commentable.php'
272
  ),
273
- 'Sabberworm\\CSS\\Comment\\Comment' => array(
274
  'version' => '8.4.0.0',
275
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Comment/Comment.php'
276
  ),
277
- 'Sabberworm\\CSS\\Renderable' => array(
278
  'version' => '8.4.0.0',
279
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Renderable.php'
280
  ),
281
- 'Sabberworm\\CSS\\Rule\\Rule' => array(
282
  'version' => '8.4.0.0',
283
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Rule/Rule.php'
284
  ),
285
- 'Sabberworm\\CSS\\CSSList\\KeyFrame' => array(
286
  'version' => '8.4.0.0',
287
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/KeyFrame.php'
288
  ),
289
- 'Sabberworm\\CSS\\CSSList\\CSSList' => array(
290
  'version' => '8.4.0.0',
291
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/CSSList.php'
292
  ),
293
- 'Sabberworm\\CSS\\CSSList\\CSSBlockList' => array(
294
  'version' => '8.4.0.0',
295
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/CSSBlockList.php'
296
  ),
297
- 'Sabberworm\\CSS\\CSSList\\AtRuleBlockList' => array(
298
  'version' => '8.4.0.0',
299
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/AtRuleBlockList.php'
300
  ),
301
- 'Sabberworm\\CSS\\CSSList\\Document' => array(
302
  'version' => '8.4.0.0',
303
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/Document.php'
304
  ),
305
- 'Sabberworm\\CSS\\OutputFormatter' => array(
306
  'version' => '8.4.0.0',
307
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/OutputFormatter.php'
308
  ),
309
- 'Sabberworm\\CSS\\Parsing\\ParserState' => array(
310
  'version' => '8.4.0.0',
311
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/ParserState.php'
312
  ),
313
- 'Sabberworm\\CSS\\Parsing\\OutputException' => array(
314
  'version' => '8.4.0.0',
315
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/OutputException.php'
316
  ),
317
- 'Sabberworm\\CSS\\Parsing\\UnexpectedEOFException' => array(
318
  'version' => '8.4.0.0',
319
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/UnexpectedEOFException.php'
320
  ),
321
- 'Sabberworm\\CSS\\Parsing\\UnexpectedTokenException' => array(
322
  'version' => '8.4.0.0',
323
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/UnexpectedTokenException.php'
324
  ),
325
- 'Sabberworm\\CSS\\Parsing\\SourceException' => array(
326
  'version' => '8.4.0.0',
327
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/SourceException.php'
328
  ),
329
- 'Sabberworm\\CSS\\RuleSet\\AtRuleSet' => array(
330
  'version' => '8.4.0.0',
331
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/RuleSet/AtRuleSet.php'
332
  ),
333
- 'Sabberworm\\CSS\\RuleSet\\DeclarationBlock' => array(
334
  'version' => '8.4.0.0',
335
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/RuleSet/DeclarationBlock.php'
336
  ),
337
- 'Sabberworm\\CSS\\RuleSet\\RuleSet' => array(
338
  'version' => '8.4.0.0',
339
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/RuleSet/RuleSet.php'
340
  ),
341
- 'Sabberworm\\CSS\\Property\\Import' => array(
342
  'version' => '8.4.0.0',
343
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/Import.php'
344
  ),
345
- 'Sabberworm\\CSS\\Property\\Selector' => array(
346
  'version' => '8.4.0.0',
347
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/Selector.php'
348
  ),
349
- 'Sabberworm\\CSS\\Property\\KeyframeSelector' => array(
350
  'version' => '8.4.0.0',
351
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/KeyframeSelector.php'
352
  ),
353
- 'Sabberworm\\CSS\\Property\\CSSNamespace' => array(
354
  'version' => '8.4.0.0',
355
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/CSSNamespace.php'
356
  ),
357
- 'Sabberworm\\CSS\\Property\\Charset' => array(
358
  'version' => '8.4.0.0',
359
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/Charset.php'
360
  ),
361
- 'Sabberworm\\CSS\\Property\\AtRule' => array(
362
- 'version' => '8.4.0.0',
363
- 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/AtRule.php'
364
  ),
365
  'Psr\\Container\\ContainerInterface' => array(
366
  'version' => '1.0.0.0',
@@ -370,26 +374,22 @@ return array(
370
  'version' => '1.0.0.0',
371
  'path' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php'
372
  ),
373
- 'Psr\\Container\\ContainerExceptionInterface' => array(
374
- 'version' => '1.0.0.0',
375
- 'path' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php'
376
  ),
377
- 'Pelago\\Emogrifier\\CssInliner' => array(
378
  'version' => '6.0.0.0',
379
- 'path' => $vendorDir . '/pelago/emogrifier/src/CssInliner.php'
380
  ),
381
- 'Pelago\\Emogrifier\\Caching\\SimpleStringCache' => array(
382
  'version' => '6.0.0.0',
383
- 'path' => $vendorDir . '/pelago/emogrifier/src/Caching/SimpleStringCache.php'
384
  ),
385
  'Pelago\\Emogrifier\\HtmlProcessor\\HtmlNormalizer' => array(
386
  'version' => '6.0.0.0',
387
  'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/HtmlNormalizer.php'
388
  ),
389
- 'Pelago\\Emogrifier\\HtmlProcessor\\HtmlPruner' => array(
390
- 'version' => '6.0.0.0',
391
- 'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/HtmlPruner.php'
392
- ),
393
  'Pelago\\Emogrifier\\HtmlProcessor\\CssToAttributeConverter' => array(
394
  'version' => '6.0.0.0',
395
  'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/CssToAttributeConverter.php'
@@ -398,3302 +398,3310 @@ return array(
398
  'version' => '6.0.0.0',
399
  'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/AbstractHtmlProcessor.php'
400
  ),
401
- 'Pelago\\Emogrifier\\Utilities\\ArrayIntersector' => array(
402
- 'version' => '6.0.0.0',
403
- 'path' => $vendorDir . '/pelago/emogrifier/src/Utilities/ArrayIntersector.php'
404
- ),
405
- 'Pelago\\Emogrifier\\Utilities\\CssConcatenator' => array(
406
  'version' => '6.0.0.0',
407
- 'path' => $vendorDir . '/pelago/emogrifier/src/Utilities/CssConcatenator.php'
408
  ),
409
  'Pelago\\Emogrifier\\Css\\CssDocument' => array(
410
  'version' => '6.0.0.0',
411
  'path' => $vendorDir . '/pelago/emogrifier/src/Css/CssDocument.php'
412
  ),
413
- 'Pelago\\Emogrifier\\Css\\StyleRule' => array(
414
  'version' => '6.0.0.0',
415
- 'path' => $vendorDir . '/pelago/emogrifier/src/Css/StyleRule.php'
416
  ),
417
- 'MaxMind\\Db\\Reader\\Util' => array(
418
- 'version' => '1.11.0.0',
419
- 'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'
420
  ),
421
  'MaxMind\\Db\\Reader\\InvalidDatabaseException' => array(
422
  'version' => '1.11.0.0',
423
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'
424
  ),
425
- 'MaxMind\\Db\\Reader\\Metadata' => array(
426
- 'version' => '1.11.0.0',
427
- 'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'
428
- ),
429
  'MaxMind\\Db\\Reader\\Decoder' => array(
430
  'version' => '1.11.0.0',
431
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'
432
  ),
 
 
 
 
 
 
 
 
433
  'MaxMind\\Db\\Reader' => array(
434
  'version' => '1.11.0.0',
435
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader.php'
436
  ),
437
- 'Composer\\Installers\\ExpressionEngineInstaller' => array(
438
  'version' => '1.12.0.0',
439
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'
440
  ),
441
- 'Composer\\Installers\\TastyIgniterInstaller' => array(
442
  'version' => '1.12.0.0',
443
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php'
444
  ),
445
- 'Composer\\Installers\\DrupalInstaller' => array(
446
  'version' => '1.12.0.0',
447
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DrupalInstaller.php'
448
  ),
449
- 'Composer\\Installers\\PlentymarketsInstaller' => array(
450
  'version' => '1.12.0.0',
451
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'
452
  ),
453
- 'Composer\\Installers\\ZendInstaller' => array(
454
  'version' => '1.12.0.0',
455
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZendInstaller.php'
456
  ),
457
- 'Composer\\Installers\\CockpitInstaller' => array(
458
  'version' => '1.12.0.0',
459
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CockpitInstaller.php'
460
  ),
461
- 'Composer\\Installers\\VgmcpInstaller' => array(
462
  'version' => '1.12.0.0',
463
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php'
464
  ),
465
- 'Composer\\Installers\\OsclassInstaller' => array(
466
  'version' => '1.12.0.0',
467
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OsclassInstaller.php'
468
  ),
469
- 'Composer\\Installers\\TYPO3FlowInstaller' => array(
470
  'version' => '1.12.0.0',
471
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'
472
  ),
473
- 'Composer\\Installers\\MagentoInstaller' => array(
474
  'version' => '1.12.0.0',
475
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MagentoInstaller.php'
476
  ),
477
- 'Composer\\Installers\\TuskInstaller' => array(
478
  'version' => '1.12.0.0',
479
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TuskInstaller.php'
480
  ),
481
- 'Composer\\Installers\\MiaoxingInstaller' => array(
482
  'version' => '1.12.0.0',
483
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MiaoxingInstaller.php'
484
  ),
485
- 'Composer\\Installers\\RoundcubeInstaller' => array(
486
  'version' => '1.12.0.0',
487
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'
488
  ),
489
- 'Composer\\Installers\\KanboardInstaller' => array(
490
  'version' => '1.12.0.0',
491
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KanboardInstaller.php'
492
  ),
493
  'Composer\\Installers\\AglInstaller' => array(
494
  'version' => '1.12.0.0',
495
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php'
496
  ),
497
- 'Composer\\Installers\\PimcoreInstaller' => array(
498
- 'version' => '1.12.0.0',
499
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php'
500
- ),
501
- 'Composer\\Installers\\BonefishInstaller' => array(
502
  'version' => '1.12.0.0',
503
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BonefishInstaller.php'
504
  ),
505
- 'Composer\\Installers\\ChefInstaller' => array(
506
  'version' => '1.12.0.0',
507
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ChefInstaller.php'
508
  ),
509
- 'Composer\\Installers\\ReIndexInstaller' => array(
510
  'version' => '1.12.0.0',
511
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php'
512
  ),
513
- 'Composer\\Installers\\ElggInstaller' => array(
514
  'version' => '1.12.0.0',
515
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ElggInstaller.php'
516
  ),
517
- 'Composer\\Installers\\MODXEvoInstaller' => array(
518
  'version' => '1.12.0.0',
519
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'
520
  ),
521
- 'Composer\\Installers\\CakePHPInstaller' => array(
522
  'version' => '1.12.0.0',
523
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php'
524
  ),
525
- 'Composer\\Installers\\Installer' => array(
526
  'version' => '1.12.0.0',
527
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Installer.php'
528
  ),
529
- 'Composer\\Installers\\ItopInstaller' => array(
530
  'version' => '1.12.0.0',
531
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ItopInstaller.php'
532
  ),
533
- 'Composer\\Installers\\AimeosInstaller' => array(
534
  'version' => '1.12.0.0',
535
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php'
536
  ),
537
  'Composer\\Installers\\AnnotateCmsInstaller' => array(
538
  'version' => '1.12.0.0',
539
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'
540
  ),
541
- 'Composer\\Installers\\LithiumInstaller' => array(
542
- 'version' => '1.12.0.0',
543
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LithiumInstaller.php'
544
- ),
545
- 'Composer\\Installers\\JoomlaInstaller' => array(
546
- 'version' => '1.12.0.0',
547
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php'
548
- ),
549
  'Composer\\Installers\\MakoInstaller' => array(
550
  'version' => '1.12.0.0',
551
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MakoInstaller.php'
552
  ),
553
- 'Composer\\Installers\\MicroweberInstaller' => array(
554
  'version' => '1.12.0.0',
555
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
556
  ),
557
- 'Composer\\Installers\\SyliusInstaller' => array(
558
  'version' => '1.12.0.0',
559
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyliusInstaller.php'
560
  ),
561
- 'Composer\\Installers\\DokuWikiInstaller' => array(
562
  'version' => '1.12.0.0',
563
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'
564
  ),
565
- 'Composer\\Installers\\PrestashopInstaller' => array(
566
  'version' => '1.12.0.0',
567
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php'
568
  ),
569
- 'Composer\\Installers\\EzPlatformInstaller' => array(
570
  'version' => '1.12.0.0',
571
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'
 
 
 
 
572
  ),
573
  'Composer\\Installers\\CodeIgniterInstaller' => array(
574
  'version' => '1.12.0.0',
575
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'
576
  ),
577
- 'Composer\\Installers\\WHMCSInstaller' => array(
578
  'version' => '1.12.0.0',
579
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php'
580
  ),
581
- 'Composer\\Installers\\MajimaInstaller' => array(
582
  'version' => '1.12.0.0',
583
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MajimaInstaller.php'
584
  ),
585
- 'Composer\\Installers\\PhpBBInstaller' => array(
586
  'version' => '1.12.0.0',
587
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php'
588
  ),
589
- 'Composer\\Installers\\ZikulaInstaller' => array(
590
  'version' => '1.12.0.0',
591
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php'
592
  ),
593
- 'Composer\\Installers\\ImageCMSInstaller' => array(
594
  'version' => '1.12.0.0',
595
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'
596
  ),
597
  'Composer\\Installers\\WinterInstaller' => array(
598
  'version' => '1.12.0.0',
599
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WinterInstaller.php'
600
  ),
601
- 'Composer\\Installers\\EliasisInstaller' => array(
602
  'version' => '1.12.0.0',
603
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EliasisInstaller.php'
604
  ),
605
- 'Composer\\Installers\\RadPHPInstaller' => array(
606
  'version' => '1.12.0.0',
607
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php'
608
  ),
609
- 'Composer\\Installers\\WordPressInstaller' => array(
610
  'version' => '1.12.0.0',
611
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WordPressInstaller.php'
612
  ),
613
  'Composer\\Installers\\DframeInstaller' => array(
614
  'version' => '1.12.0.0',
615
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DframeInstaller.php'
616
  ),
617
- 'Composer\\Installers\\MantisBTInstaller' => array(
618
- 'version' => '1.12.0.0',
619
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php'
620
- ),
621
- 'Composer\\Installers\\TYPO3CmsInstaller' => array(
622
- 'version' => '1.12.0.0',
623
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'
624
- ),
625
- 'Composer\\Installers\\Concrete5Installer' => array(
626
- 'version' => '1.12.0.0',
627
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Concrete5Installer.php'
628
- ),
629
- 'Composer\\Installers\\MayaInstaller' => array(
630
- 'version' => '1.12.0.0',
631
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MayaInstaller.php'
632
- ),
633
- 'Composer\\Installers\\BitrixInstaller' => array(
634
- 'version' => '1.12.0.0',
635
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BitrixInstaller.php'
636
- ),
637
- 'Composer\\Installers\\CiviCrmInstaller' => array(
638
  'version' => '1.12.0.0',
639
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'
640
  ),
641
- 'Composer\\Installers\\FuelphpInstaller' => array(
642
  'version' => '1.12.0.0',
643
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php'
644
  ),
645
- 'Composer\\Installers\\PuppetInstaller' => array(
646
  'version' => '1.12.0.0',
647
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php'
648
  ),
649
- 'Composer\\Installers\\OctoberInstaller' => array(
650
  'version' => '1.12.0.0',
651
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OctoberInstaller.php'
652
  ),
653
- 'Composer\\Installers\\AttogramInstaller' => array(
654
  'version' => '1.12.0.0',
655
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AttogramInstaller.php'
656
  ),
657
- 'Composer\\Installers\\DolibarrInstaller' => array(
658
  'version' => '1.12.0.0',
659
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php'
660
  ),
661
- 'Composer\\Installers\\KohanaInstaller' => array(
662
  'version' => '1.12.0.0',
663
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KohanaInstaller.php'
664
  ),
665
- 'Composer\\Installers\\StarbugInstaller' => array(
666
  'version' => '1.12.0.0',
667
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/StarbugInstaller.php'
668
  ),
669
- 'Composer\\Installers\\HuradInstaller' => array(
670
  'version' => '1.12.0.0',
671
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/HuradInstaller.php'
672
  ),
673
- 'Composer\\Installers\\YawikInstaller' => array(
674
  'version' => '1.12.0.0',
675
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/YawikInstaller.php'
676
  ),
677
- 'Composer\\Installers\\CraftInstaller' => array(
678
  'version' => '1.12.0.0',
679
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CraftInstaller.php'
680
  ),
681
- 'Composer\\Installers\\LaravelInstaller' => array(
682
  'version' => '1.12.0.0',
683
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LaravelInstaller.php'
684
  ),
685
- 'Composer\\Installers\\LavaLiteInstaller' => array(
686
  'version' => '1.12.0.0',
687
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'
688
  ),
689
- 'Composer\\Installers\\PhiftyInstaller' => array(
690
  'version' => '1.12.0.0',
691
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php'
692
  ),
693
- 'Composer\\Installers\\ModxInstaller' => array(
694
  'version' => '1.12.0.0',
695
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ModxInstaller.php'
696
  ),
697
- 'Composer\\Installers\\KnownInstaller' => array(
698
  'version' => '1.12.0.0',
699
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KnownInstaller.php'
700
  ),
701
- 'Composer\\Installers\\RedaxoInstaller' => array(
702
  'version' => '1.12.0.0',
703
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php'
704
  ),
705
- 'Composer\\Installers\\Redaxo5Installer' => array(
706
  'version' => '1.12.0.0',
707
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php'
708
  ),
709
  'Composer\\Installers\\VanillaInstaller' => array(
710
  'version' => '1.12.0.0',
711
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VanillaInstaller.php'
712
  ),
713
- 'Composer\\Installers\\WolfCMSInstaller' => array(
714
  'version' => '1.12.0.0',
715
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'
716
  ),
717
- 'Composer\\Installers\\PiwikInstaller' => array(
718
  'version' => '1.12.0.0',
719
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PiwikInstaller.php'
720
  ),
721
- 'Composer\\Installers\\PxcmsInstaller' => array(
722
  'version' => '1.12.0.0',
723
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php'
724
  ),
725
- 'Composer\\Installers\\Symfony1Installer' => array(
726
  'version' => '1.12.0.0',
727
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Symfony1Installer.php'
728
  ),
729
  'Composer\\Installers\\UserFrostingInstaller' => array(
730
  'version' => '1.12.0.0',
731
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'
732
  ),
733
- 'Composer\\Installers\\SyDESInstaller' => array(
734
  'version' => '1.12.0.0',
735
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyDESInstaller.php'
736
  ),
737
- 'Composer\\Installers\\SilverStripeInstaller' => array(
738
  'version' => '1.12.0.0',
739
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'
 
 
 
 
740
  ),
741
  'Composer\\Installers\\AsgardInstaller' => array(
742
  'version' => '1.12.0.0',
743
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AsgardInstaller.php'
744
  ),
745
- 'Composer\\Installers\\FuelInstaller' => array(
746
  'version' => '1.12.0.0',
747
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelInstaller.php'
 
 
 
 
748
  ),
749
  'Composer\\Installers\\SiteDirectInstaller' => array(
750
  'version' => '1.12.0.0',
751
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'
752
  ),
753
- 'Composer\\Installers\\SMFInstaller' => array(
754
  'version' => '1.12.0.0',
755
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SMFInstaller.php'
756
  ),
757
- 'Composer\\Installers\\PortoInstaller' => array(
758
  'version' => '1.12.0.0',
759
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PortoInstaller.php'
760
  ),
761
- 'Composer\\Installers\\MediaWikiInstaller' => array(
762
  'version' => '1.12.0.0',
763
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'
764
  ),
765
- 'Composer\\Installers\\ClanCatsFrameworkInstaller' => array(
766
  'version' => '1.12.0.0',
767
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'
768
  ),
769
- 'Composer\\Installers\\KirbyInstaller' => array(
770
  'version' => '1.12.0.0',
771
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KirbyInstaller.php'
772
  ),
773
  'Composer\\Installers\\TheliaInstaller' => array(
774
  'version' => '1.12.0.0',
775
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TheliaInstaller.php'
776
  ),
777
- 'Composer\\Installers\\ShopwareInstaller' => array(
778
  'version' => '1.12.0.0',
779
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php'
780
  ),
781
- 'Composer\\Installers\\OntoWikiInstaller' => array(
782
  'version' => '1.12.0.0',
783
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'
784
  ),
785
- 'Composer\\Installers\\GravInstaller' => array(
786
  'version' => '1.12.0.0',
787
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/GravInstaller.php'
788
  ),
789
- 'Composer\\Installers\\Plugin' => array(
790
  'version' => '1.12.0.0',
791
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Plugin.php'
792
  ),
793
- 'Composer\\Installers\\LanManagementSystemInstaller' => array(
794
  'version' => '1.12.0.0',
795
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'
796
  ),
797
- 'Composer\\Installers\\DecibelInstaller' => array(
798
  'version' => '1.12.0.0',
799
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DecibelInstaller.php'
800
  ),
801
- 'Composer\\Installers\\OxidInstaller' => array(
802
  'version' => '1.12.0.0',
803
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OxidInstaller.php'
804
  ),
805
- 'Composer\\Installers\\PPIInstaller' => array(
806
  'version' => '1.12.0.0',
807
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PPIInstaller.php'
808
  ),
809
- 'Composer\\Installers\\MODULEWorkInstaller' => array(
810
  'version' => '1.12.0.0',
811
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'
812
  ),
813
- 'Composer\\Installers\\MauticInstaller' => array(
814
  'version' => '1.12.0.0',
815
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MauticInstaller.php'
816
  ),
817
- 'Composer\\Installers\\KodiCMSInstaller' => array(
818
  'version' => '1.12.0.0',
819
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'
820
  ),
821
- 'Composer\\Installers\\TaoInstaller' => array(
822
  'version' => '1.12.0.0',
823
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TaoInstaller.php'
824
  ),
825
- 'Composer\\Installers\\MoodleInstaller' => array(
826
  'version' => '1.12.0.0',
827
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MoodleInstaller.php'
828
  ),
829
- 'Composer\\Installers\\PantheonInstaller' => array(
830
  'version' => '1.12.0.0',
831
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PantheonInstaller.php'
832
  ),
833
- 'Composer\\Installers\\ProcessWireInstaller' => array(
834
  'version' => '1.12.0.0',
835
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ProcessWireInstaller.php'
836
  ),
837
  'Composer\\Installers\\BaseInstaller' => array(
838
  'version' => '1.12.0.0',
839
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BaseInstaller.php'
840
  ),
841
- 'Composer\\Installers\\CroogoInstaller' => array(
842
  'version' => '1.12.0.0',
843
- 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CroogoInstaller.php'
844
  ),
845
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareTrait' => array(
846
- 'version' => '6.6.0.0',
847
- 'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareTrait.php'
848
  ),
849
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\ContainerException' => array(
850
- 'version' => '6.6.0.0',
851
- 'path' => $baseDir . '/lib/packages/League/Container/Exception/ContainerException.php'
852
  ),
853
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\NotFoundException' => array(
854
- 'version' => '6.6.0.0',
855
- 'path' => $baseDir . '/lib/packages/League/Container/Exception/NotFoundException.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
856
  ),
857
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ReflectionContainer' => array(
858
- 'version' => '6.6.0.0',
859
  'path' => $baseDir . '/lib/packages/League/Container/ReflectionContainer.php'
860
  ),
861
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Container' => array(
862
- 'version' => '6.6.0.0',
863
  'path' => $baseDir . '/lib/packages/League/Container/Container.php'
864
  ),
865
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\Definition' => array(
866
- 'version' => '6.6.0.0',
867
- 'path' => $baseDir . '/lib/packages/League/Container/Definition/Definition.php'
868
  ),
869
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregate' => array(
870
- 'version' => '6.6.0.0',
871
- 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregate.php'
872
  ),
873
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionInterface' => array(
874
- 'version' => '6.6.0.0',
875
- 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionInterface.php'
876
  ),
877
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregateInterface' => array(
878
- 'version' => '6.6.0.0',
879
  'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php'
880
  ),
881
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregateInterface' => array(
882
- 'version' => '6.6.0.0',
883
- 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php'
884
  ),
885
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorInterface' => array(
886
- 'version' => '6.6.0.0',
887
- 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorInterface.php'
888
  ),
889
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregate' => array(
890
- 'version' => '6.6.0.0',
891
- 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregate.php'
892
  ),
893
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\Inflector' => array(
894
- 'version' => '6.6.0.0',
895
- 'path' => $baseDir . '/lib/packages/League/Container/Inflector/Inflector.php'
896
  ),
897
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameInterface' => array(
898
- 'version' => '6.6.0.0',
899
- 'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameInterface.php'
900
  ),
901
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassName' => array(
902
- 'version' => '6.6.0.0',
903
- 'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassName.php'
904
  ),
905
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgument' => array(
906
- 'version' => '6.6.0.0',
907
- 'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgument.php'
908
  ),
909
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverInterface' => array(
910
- 'version' => '6.6.0.0',
911
- 'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverInterface.php'
912
  ),
913
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgumentInterface' => array(
914
- 'version' => '6.6.0.0',
915
- 'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgumentInterface.php'
916
  ),
917
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverTrait' => array(
918
- 'version' => '6.6.0.0',
919
- 'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverTrait.php'
920
  ),
921
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameWithOptionalValue' => array(
922
- 'version' => '6.6.0.0',
923
- 'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php'
 
 
 
 
924
  ),
925
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareInterface' => array(
926
- 'version' => '6.6.0.0',
927
  'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareInterface.php'
928
  ),
929
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\BootableServiceProviderInterface' => array(
930
- 'version' => '6.6.0.0',
931
- 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php'
932
- ),
933
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => array(
934
- 'version' => '6.6.0.0',
935
- 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php'
936
  ),
937
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => array(
938
- 'version' => '6.6.0.0',
939
- 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php'
940
  ),
941
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => array(
942
- 'version' => '6.6.0.0',
943
- 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php'
944
  ),
945
- 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\AbstractServiceProvider' => array(
946
- 'version' => '6.6.0.0',
947
- 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php'
948
  ),
949
  'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassThatDependsOnLegacyCode' => array(
950
- 'version' => '6.6.0.0',
951
  'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassThatDependsOnLegacyCode.php'
952
  ),
953
- 'Automattic\\WooCommerce\\Tests\\Proxies\\MockableLegacyProxyTest' => array(
954
- 'version' => '6.6.0.0',
955
- 'path' => $baseDir . '/tests/php/src/Proxies/MockableLegacyProxyTest.php'
956
- ),
957
  'Automattic\\WooCommerce\\Tests\\Proxies\\ClassThatDependsOnLegacyCodeTest' => array(
958
- 'version' => '6.6.0.0',
959
  'path' => $baseDir . '/tests/php/src/Proxies/ClassThatDependsOnLegacyCodeTest.php'
960
  ),
961
- 'Automattic\\WooCommerce\\Tests\\Proxies\\LegacyProxyTest' => array(
962
- 'version' => '6.6.0.0',
963
- 'path' => $baseDir . '/tests/php/src/Proxies/LegacyProxyTest.php'
964
  ),
965
- 'Automattic\\WooCommerce\\Tests\\Internal\\RestApiUtilTest' => array(
966
- 'version' => '6.6.0.0',
967
- 'path' => $baseDir . '/tests/php/src/Internal/RestApiUtilTest.php'
968
  ),
969
  'Automattic\\WooCommerce\\Tests\\Internal\\WCCom\\ConnectionHelperTest' => array(
970
- 'version' => '6.6.0.0',
971
  'path' => $baseDir . '/tests/php/src/Internal/WCCom/ConnectionHelperTest.php'
972
  ),
973
- 'Automattic\\WooCommerce\\Tests\\Internal\\DownloadPermissionsAdjusterTest' => array(
974
- 'version' => '6.6.0.0',
975
- 'path' => $baseDir . '/tests/php/src/Internal/DownloadPermissionsAdjusterTest.php'
976
  ),
977
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithNonFinalInjectionMethod' => array(
978
- 'version' => '6.6.0.0',
979
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithNonFinalInjectionMethod.php'
980
  ),
981
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithDependencies' => array(
982
- 'version' => '6.6.0.0',
983
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithDependencies.php'
984
  ),
985
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithPrivateInjectionMethod' => array(
986
- 'version' => '6.6.0.0',
987
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithPrivateInjectionMethod.php'
988
  ),
989
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\DependencyClass' => array(
990
- 'version' => '6.6.0.0',
991
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/DependencyClass.php'
992
  ),
993
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithInjectionMethodArgumentWithoutTypeHint' => array(
994
- 'version' => '6.6.0.0',
995
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithInjectionMethodArgumentWithoutTypeHint.php'
996
  ),
997
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithScalarInjectionMethodArgument' => array(
998
- 'version' => '6.6.0.0',
999
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithScalarInjectionMethodArgument.php'
1000
  ),
1001
- 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\AbstractServiceProviderTest' => array(
1002
- 'version' => '6.6.0.0',
1003
- 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/AbstractServiceProviderTest.php'
1004
  ),
1005
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExtendedContainerTest' => array(
1006
- 'version' => '6.6.0.0',
1007
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExtendedContainerTest.php'
1008
  ),
1009
- 'Automattic\\WooCommerce\\Tests\\Internal\\ProductDownloads\\SynchronizeTest' => array(
1010
- 'version' => '6.6.0.0',
1011
- 'path' => $baseDir . '/tests/php/src/Internal/ProductDownloads/ApprovedDirectories/SynchronizeTest.php'
1012
- ),
1013
- 'Automattic\\WooCommerce\\Tests\\Internal\\ProductDownloads\\RegisterTest' => array(
1014
- 'version' => '6.6.0.0',
1015
- 'path' => $baseDir . '/tests/php/src/Internal/ProductDownloads/ApprovedDirectories/RegisterTest.php'
1016
- ),
1017
- 'Automattic\\WooCommerce\\Tests\\Internal\\AssignDefaultCategoryTest' => array(
1018
- 'version' => '6.6.0.0',
1019
- 'path' => $baseDir . '/tests/php/src/Internal/AssignDefaultCategoryTest.php'
1020
  ),
1021
- 'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\FiltererTest' => array(
1022
- 'version' => '6.6.0.0',
1023
- 'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/FiltererTest.php'
1024
  ),
1025
- 'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\DataRegeneratorTest' => array(
1026
- 'version' => '6.6.0.0',
1027
- 'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/DataRegeneratorTest.php'
1028
  ),
1029
- 'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\LookupDataStoreTest' => array(
1030
- 'version' => '6.6.0.0',
1031
- 'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/LookupDataStoreTest.php'
1032
  ),
1033
- 'Automattic\\WooCommerce\\Tests\\Internal\\Utilities\\URLTest' => array(
1034
- 'version' => '6.6.0.0',
1035
- 'path' => $baseDir . '/tests/php/src/Internal/Utilities/URLTest.php'
1036
  ),
1037
- 'Automattic\\WooCommerce\\Tests\\Utilities\\NumberUtilTest' => array(
1038
- 'version' => '6.6.0.0',
1039
- 'path' => $baseDir . '/tests/php/src/Utilities/NumberUtilTest.php'
1040
  ),
1041
- 'Automattic\\WooCommerce\\Tests\\Utilities\\StringUtilTest' => array(
1042
- 'version' => '6.6.0.0',
1043
- 'path' => $baseDir . '/tests/php/src/Utilities/StringUtilTest.php'
1044
  ),
1045
- 'Automattic\\WooCommerce\\Tests\\Utilities\\ArrayUtilTest' => array(
1046
- 'version' => '6.6.0.0',
1047
- 'path' => $baseDir . '/tests/php/src/Utilities/ArrayUtilTest.php'
1048
  ),
1049
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\StaticMockerHack' => array(
1050
- 'version' => '6.6.0.0',
1051
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/StaticMockerHack.php'
1052
  ),
1053
- 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\CodeHack' => array(
1054
- 'version' => '6.6.0.0',
1055
- 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/CodeHack.php'
1056
  ),
1057
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\FunctionsMockerHack' => array(
1058
- 'version' => '6.6.0.0',
1059
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/FunctionsMockerHack.php'
1060
  ),
1061
- 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\BypassFinalsHack' => array(
1062
- 'version' => '6.6.0.0',
1063
- 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/BypassFinalsHack.php'
1064
  ),
1065
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHacker' => array(
1066
- 'version' => '6.6.0.0',
1067
  'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHacker.php'
1068
  ),
1069
- 'Automattic\\WooCommerce\\Testing\\Tools\\FakeQueue' => array(
1070
- 'version' => '6.6.0.0',
1071
- 'path' => $baseDir . '/tests/Tools/FakeQueue.php'
1072
- ),
1073
  'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\MockableLegacyProxy' => array(
1074
- 'version' => '6.6.0.0',
1075
  'path' => $baseDir . '/tests/Tools/DependencyManagement/MockableLegacyProxy.php'
1076
  ),
1077
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\ExtendSchema' => array(
1078
- 'version' => '7.6.0.0',
1079
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ExtendSchema.php'
1080
  ),
1081
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartSchema' => array(
1082
- 'version' => '7.6.0.0',
1083
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartSchema.php'
1084
  ),
1085
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\AbstractAddressSchema' => array(
1086
- 'version' => '7.6.0.0',
1087
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/AbstractAddressSchema.php'
1088
  ),
1089
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductCategorySchema' => array(
1090
- 'version' => '7.6.0.0',
1091
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductCategorySchema.php'
1092
  ),
1093
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ImageAttachmentSchema' => array(
1094
- 'version' => '7.6.0.0',
1095
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ImageAttachmentSchema.php'
1096
  ),
1097
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ShippingAddressSchema' => array(
1098
- 'version' => '7.6.0.0',
1099
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ShippingAddressSchema.php'
1100
  ),
1101
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\TermSchema' => array(
1102
- 'version' => '7.6.0.0',
1103
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/TermSchema.php'
1104
  ),
1105
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\OrderCouponSchema' => array(
1106
- 'version' => '7.6.0.0',
1107
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/OrderCouponSchema.php'
1108
  ),
1109
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartExtensionsSchema' => array(
1110
- 'version' => '7.6.0.0',
1111
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartExtensionsSchema.php'
1112
  ),
1113
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ErrorSchema' => array(
1114
- 'version' => '7.6.0.0',
1115
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ErrorSchema.php'
1116
  ),
1117
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartCouponSchema' => array(
1118
- 'version' => '7.6.0.0',
1119
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartCouponSchema.php'
1120
  ),
1121
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CheckoutSchema' => array(
1122
- 'version' => '7.6.0.0',
1123
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CheckoutSchema.php'
1124
  ),
1125
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductSchema' => array(
1126
- 'version' => '7.6.0.0',
1127
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductSchema.php'
1128
  ),
1129
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\BatchSchema' => array(
1130
- 'version' => '7.6.0.0',
1131
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/BatchSchema.php'
1132
  ),
1133
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartFeeSchema' => array(
1134
- 'version' => '7.6.0.0',
1135
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartFeeSchema.php'
1136
  ),
1137
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\AbstractSchema' => array(
1138
- 'version' => '7.6.0.0',
1139
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/AbstractSchema.php'
1140
  ),
1141
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductCollectionDataSchema' => array(
1142
- 'version' => '7.6.0.0',
1143
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductCollectionDataSchema.php'
1144
  ),
1145
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartShippingRateSchema' => array(
1146
- 'version' => '7.6.0.0',
1147
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartShippingRateSchema.php'
1148
  ),
1149
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartItemSchema' => array(
1150
- 'version' => '7.6.0.0',
1151
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartItemSchema.php'
1152
  ),
1153
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductReviewSchema' => array(
1154
- 'version' => '7.6.0.0',
1155
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductReviewSchema.php'
1156
  ),
1157
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\BillingAddressSchema' => array(
1158
- 'version' => '7.6.0.0',
1159
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/BillingAddressSchema.php'
1160
  ),
1161
- 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductAttributeSchema' => array(
1162
- 'version' => '7.6.0.0',
1163
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductAttributeSchema.php'
1164
  ),
1165
- 'Automattic\\WooCommerce\\StoreApi\\StoreApi' => array(
1166
- 'version' => '7.6.0.0',
1167
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/StoreApi.php'
1168
  ),
1169
- 'Automattic\\WooCommerce\\StoreApi\\SchemaController' => array(
1170
- 'version' => '7.6.0.0',
1171
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/SchemaController.php'
1172
  ),
1173
- 'Automattic\\WooCommerce\\StoreApi\\Formatters' => array(
1174
- 'version' => '7.6.0.0',
1175
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters.php'
1176
  ),
1177
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\RouteInterface' => array(
1178
- 'version' => '7.6.0.0',
1179
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/RouteInterface.php'
1180
  ),
1181
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Cart' => array(
1182
- 'version' => '7.6.0.0',
1183
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Cart.php'
1184
  ),
 
 
 
 
 
 
 
 
 
 
 
 
1185
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCategories' => array(
1186
- 'version' => '7.6.0.0',
1187
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCategories.php'
1188
  ),
1189
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductTags' => array(
1190
- 'version' => '7.6.0.0',
1191
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductTags.php'
1192
- ),
1193
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartExtensions' => array(
1194
- 'version' => '7.6.0.0',
1195
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartExtensions.php'
1196
  ),
1197
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartItems' => array(
1198
- 'version' => '7.6.0.0',
1199
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartItems.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1200
  ),
1201
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributesById' => array(
1202
- 'version' => '7.6.0.0',
1203
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributesById.php'
1204
  ),
1205
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractCartRoute' => array(
1206
- 'version' => '7.6.0.0',
1207
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractCartRoute.php'
1208
- ),
1209
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractRoute' => array(
1210
- 'version' => '7.6.0.0',
1211
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractRoute.php'
1212
  ),
1213
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributes' => array(
1214
- 'version' => '7.6.0.0',
1215
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributes.php'
1216
  ),
1217
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartCouponsByCode' => array(
1218
- 'version' => '7.6.0.0',
1219
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartCouponsByCode.php'
1220
  ),
1221
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Checkout' => array(
1222
- 'version' => '7.6.0.0',
1223
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Checkout.php'
1224
  ),
1225
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartApplyCoupon' => array(
1226
- 'version' => '7.6.0.0',
1227
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartApplyCoupon.php'
1228
- ),
1229
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Products' => array(
1230
- 'version' => '7.6.0.0',
1231
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Products.php'
1232
- ),
1233
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCollectionData' => array(
1234
- 'version' => '7.6.0.0',
1235
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCollectionData.php'
1236
  ),
1237
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartItemsByKey' => array(
1238
- 'version' => '7.6.0.0',
1239
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartItemsByKey.php'
1240
  ),
1241
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractTermsRoute' => array(
1242
- 'version' => '7.6.0.0',
1243
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractTermsRoute.php'
1244
  ),
1245
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductReviews' => array(
1246
- 'version' => '7.6.0.0',
1247
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductReviews.php'
1248
- ),
1249
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCategoriesById' => array(
1250
- 'version' => '7.6.0.0',
1251
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCategoriesById.php'
1252
- ),
1253
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributeTerms' => array(
1254
- 'version' => '7.6.0.0',
1255
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributeTerms.php'
1256
  ),
1257
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartUpdateCustomer' => array(
1258
- 'version' => '7.6.0.0',
1259
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartUpdateCustomer.php'
 
 
 
 
1260
  ),
1261
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartUpdateItem' => array(
1262
- 'version' => '7.6.0.0',
1263
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartUpdateItem.php'
1264
  ),
1265
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartCoupons' => array(
1266
- 'version' => '7.6.0.0',
1267
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartCoupons.php'
1268
  ),
1269
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartSelectShippingRate' => array(
1270
- 'version' => '7.6.0.0',
1271
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartSelectShippingRate.php'
1272
  ),
1273
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartRemoveCoupon' => array(
1274
- 'version' => '7.6.0.0',
1275
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartRemoveCoupon.php'
1276
  ),
1277
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Batch' => array(
1278
- 'version' => '7.6.0.0',
1279
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Batch.php'
1280
  ),
1281
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartAddItem' => array(
1282
- 'version' => '7.6.0.0',
1283
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartAddItem.php'
1284
  ),
1285
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductsById' => array(
1286
- 'version' => '7.6.0.0',
1287
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductsById.php'
1288
  ),
1289
- 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartRemoveItem' => array(
1290
- 'version' => '7.6.0.0',
1291
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartRemoveItem.php'
1292
  ),
1293
- 'Automattic\\WooCommerce\\StoreApi\\Authentication' => array(
1294
- 'version' => '7.6.0.0',
1295
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Authentication.php'
1296
  ),
1297
- 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\PartialOutOfStockException' => array(
1298
- 'version' => '7.6.0.0',
1299
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/PartialOutOfStockException.php'
1300
  ),
1301
- 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\RouteException' => array(
1302
- 'version' => '7.6.0.0',
1303
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/RouteException.php'
1304
  ),
1305
- 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\OutOfStockException' => array(
1306
- 'version' => '7.6.0.0',
1307
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/OutOfStockException.php'
1308
  ),
1309
- 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\NotPurchasableException' => array(
1310
- 'version' => '7.6.0.0',
1311
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/NotPurchasableException.php'
1312
  ),
1313
- 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\TooManyInCartException' => array(
1314
- 'version' => '7.6.0.0',
1315
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/TooManyInCartException.php'
1316
  ),
1317
- 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\InvalidStockLevelsInCartException' => array(
1318
- 'version' => '7.6.0.0',
1319
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/InvalidStockLevelsInCartException.php'
1320
  ),
1321
- 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\StockAvailabilityException' => array(
1322
- 'version' => '7.6.0.0',
1323
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/StockAvailabilityException.php'
1324
  ),
1325
- 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\InvalidCartException' => array(
1326
- 'version' => '7.6.0.0',
1327
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/InvalidCartException.php'
1328
  ),
1329
- 'Automattic\\WooCommerce\\StoreApi\\Formatters\\HtmlFormatter' => array(
1330
- 'version' => '7.6.0.0',
1331
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/HtmlFormatter.php'
1332
  ),
1333
- 'Automattic\\WooCommerce\\StoreApi\\Formatters\\FormatterInterface' => array(
1334
- 'version' => '7.6.0.0',
1335
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/FormatterInterface.php'
1336
  ),
1337
- 'Automattic\\WooCommerce\\StoreApi\\Formatters\\DefaultFormatter' => array(
1338
- 'version' => '7.6.0.0',
1339
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/DefaultFormatter.php'
1340
  ),
1341
- 'Automattic\\WooCommerce\\StoreApi\\Formatters\\CurrencyFormatter' => array(
1342
- 'version' => '7.6.0.0',
1343
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/CurrencyFormatter.php'
1344
  ),
1345
- 'Automattic\\WooCommerce\\StoreApi\\Formatters\\MoneyFormatter' => array(
1346
- 'version' => '7.6.0.0',
1347
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/MoneyFormatter.php'
1348
  ),
1349
- 'Automattic\\WooCommerce\\StoreApi\\Payments\\PaymentContext' => array(
1350
- 'version' => '7.6.0.0',
1351
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Payments/PaymentContext.php'
1352
  ),
1353
- 'Automattic\\WooCommerce\\StoreApi\\Payments\\PaymentResult' => array(
1354
- 'version' => '7.6.0.0',
1355
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Payments/PaymentResult.php'
1356
  ),
1357
- 'Automattic\\WooCommerce\\StoreApi\\RoutesController' => array(
1358
- 'version' => '7.6.0.0',
1359
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/RoutesController.php'
1360
  ),
1361
- 'Automattic\\WooCommerce\\StoreApi\\Utilities\\NoticeHandler' => array(
1362
- 'version' => '7.6.0.0',
1363
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/NoticeHandler.php'
1364
  ),
1365
- 'Automattic\\WooCommerce\\StoreApi\\Utilities\\Pagination' => array(
1366
- 'version' => '7.6.0.0',
1367
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/Pagination.php'
1368
  ),
1369
- 'Automattic\\WooCommerce\\StoreApi\\Utilities\\ProductQueryFilters' => array(
1370
- 'version' => '7.6.0.0',
1371
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQueryFilters.php'
1372
  ),
1373
- 'Automattic\\WooCommerce\\StoreApi\\Utilities\\CartController' => array(
1374
- 'version' => '7.6.0.0',
1375
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/CartController.php'
1376
  ),
1377
- 'Automattic\\WooCommerce\\StoreApi\\Utilities\\ProductQuery' => array(
1378
- 'version' => '7.6.0.0',
1379
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQuery.php'
1380
  ),
1381
- 'Automattic\\WooCommerce\\StoreApi\\Utilities\\OrderController' => array(
1382
- 'version' => '7.6.0.0',
1383
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/OrderController.php'
1384
  ),
1385
- 'Automattic\\WooCommerce\\StoreApi\\Utilities\\DraftOrderTrait' => array(
1386
- 'version' => '7.6.0.0',
1387
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/DraftOrderTrait.php'
1388
  ),
1389
- 'Automattic\\WooCommerce\\StoreApi\\Utilities\\ArrayUtils' => array(
1390
- 'version' => '7.6.0.0',
1391
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ArrayUtils.php'
1392
  ),
1393
- 'Automattic\\WooCommerce\\StoreApi\\Utilities\\QuantityLimits' => array(
1394
- 'version' => '7.6.0.0',
1395
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/QuantityLimits.php'
1396
- ),
1397
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Bootstrap' => array(
1398
- 'version' => '7.6.0.0',
1399
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Bootstrap.php'
1400
- ),
1401
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\Email\\CustomerNewAccount' => array(
1402
- 'version' => '7.6.0.0',
1403
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/Email/CustomerNewAccount.php'
1404
- ),
1405
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\GoogleAnalytics' => array(
1406
- 'version' => '7.6.0.0',
1407
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/GoogleAnalytics.php'
1408
- ),
1409
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\DraftOrders' => array(
1410
- 'version' => '7.6.0.0',
1411
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/DraftOrders.php'
1412
- ),
1413
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\CreateAccount' => array(
1414
- 'version' => '7.6.0.0',
1415
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/CreateAccount.php'
1416
- ),
1417
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\FeatureGating' => array(
1418
- 'version' => '7.6.0.0',
1419
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/FeatureGating.php'
1420
- ),
1421
- 'Automattic\\WooCommerce\\Blocks\\Domain\\Package' => array(
1422
- 'version' => '7.6.0.0',
1423
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Package.php'
1424
- ),
1425
- 'Automattic\\WooCommerce\\Blocks\\BlockTypesController' => array(
1426
- 'version' => '7.6.0.0',
1427
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypesController.php'
1428
- ),
1429
- 'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationRegistry' => array(
1430
- 'version' => '7.6.0.0',
1431
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Integrations/IntegrationRegistry.php'
1432
  ),
1433
- 'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationInterface' => array(
1434
- 'version' => '7.6.0.0',
1435
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Integrations/IntegrationInterface.php'
1436
  ),
1437
  'Automattic\\WooCommerce\\Blocks\\Library' => array(
1438
- 'version' => '7.6.0.0',
1439
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Library.php'
1440
  ),
1441
- 'Automattic\\WooCommerce\\Blocks\\InboxNotifications' => array(
1442
- 'version' => '7.6.0.0',
1443
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/InboxNotifications.php'
1444
  ),
1445
- 'Automattic\\WooCommerce\\Blocks\\Assets' => array(
1446
- 'version' => '7.6.0.0',
1447
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets.php'
1448
  ),
1449
- 'Automattic\\WooCommerce\\Blocks\\Registry\\FactoryType' => array(
1450
- 'version' => '7.6.0.0',
1451
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/FactoryType.php'
1452
  ),
1453
- 'Automattic\\WooCommerce\\Blocks\\Registry\\AbstractDependencyType' => array(
1454
- 'version' => '7.6.0.0',
1455
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/AbstractDependencyType.php'
1456
  ),
1457
- 'Automattic\\WooCommerce\\Blocks\\Registry\\Container' => array(
1458
- 'version' => '7.6.0.0',
1459
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/Container.php'
1460
  ),
1461
- 'Automattic\\WooCommerce\\Blocks\\Registry\\SharedType' => array(
1462
- 'version' => '7.6.0.0',
1463
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/SharedType.php'
1464
  ),
1465
- 'Automattic\\WooCommerce\\Blocks\\BlockTemplatesController' => array(
1466
- 'version' => '7.6.0.0',
1467
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTemplatesController.php'
1468
  ),
1469
- 'Automattic\\WooCommerce\\Blocks\\Installer' => array(
1470
- 'version' => '7.6.0.0',
1471
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Installer.php'
1472
  ),
1473
- 'Automattic\\WooCommerce\\Blocks\\Utils\\BlockTemplateUtils' => array(
1474
- 'version' => '7.6.0.0',
1475
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/BlockTemplateUtils.php'
1476
  ),
1477
- 'Automattic\\WooCommerce\\Blocks\\Utils\\BlocksWpQuery' => array(
1478
- 'version' => '7.6.0.0',
1479
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/BlocksWpQuery.php'
1480
  ),
1481
- 'Automattic\\WooCommerce\\Blocks\\Utils\\StyleAttributesUtils' => array(
1482
- 'version' => '7.6.0.0',
1483
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/StyleAttributesUtils.php'
1484
  ),
1485
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Cart' => array(
1486
- 'version' => '7.6.0.0',
1487
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Cart.php'
1488
  ),
1489
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllProducts' => array(
1490
- 'version' => '7.6.0.0',
1491
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllProducts.php'
1492
  ),
1493
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\HandpickedProducts' => array(
1494
- 'version' => '7.6.0.0',
1495
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/HandpickedProducts.php'
 
 
 
 
 
 
 
 
1496
  ),
1497
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategories' => array(
1498
- 'version' => '7.6.0.0',
1499
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategories.php'
1500
  ),
1501
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductBestSellers' => array(
1502
- 'version' => '7.6.0.0',
1503
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductBestSellers.php'
1504
  ),
1505
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByProduct' => array(
1506
- 'version' => '7.6.0.0',
1507
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByProduct.php'
1508
  ),
1509
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTagList' => array(
1510
- 'version' => '7.6.0.0',
1511
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTagList.php'
1512
  ),
1513
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTitle' => array(
1514
- 'version' => '7.6.0.0',
1515
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTitle.php'
1516
  ),
1517
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductButton' => array(
1518
- 'version' => '7.6.0.0',
1519
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductButton.php'
1520
  ),
1521
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedCategory' => array(
1522
- 'version' => '7.6.0.0',
1523
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedCategory.php'
1524
  ),
1525
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartContents' => array(
1526
- 'version' => '7.6.0.0',
1527
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/MiniCartContents.php'
1528
  ),
1529
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductPrice' => array(
1530
- 'version' => '7.6.0.0',
1531
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductPrice.php'
1532
  ),
1533
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedProduct' => array(
1534
- 'version' => '7.6.0.0',
1535
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedProduct.php'
1536
  ),
1537
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSaleBadge' => array(
1538
- 'version' => '7.6.0.0',
1539
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSaleBadge.php'
1540
  ),
1541
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ActiveFilters' => array(
1542
- 'version' => '7.6.0.0',
1543
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ActiveFilters.php'
1544
  ),
1545
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Checkout' => array(
1546
- 'version' => '7.6.0.0',
1547
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Checkout.php'
1548
  ),
1549
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSKU' => array(
1550
- 'version' => '7.6.0.0',
1551
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSKU.php'
1552
- ),
1553
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AtomicBlock' => array(
1554
- 'version' => '7.6.0.0',
1555
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AtomicBlock.php'
1556
- ),
1557
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSummary' => array(
1558
- 'version' => '7.6.0.0',
1559
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSummary.php'
1560
- ),
1561
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductStockIndicator' => array(
1562
- 'version' => '7.6.0.0',
1563
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductStockIndicator.php'
1564
  ),
1565
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductAddToCart' => array(
1566
- 'version' => '7.6.0.0',
1567
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductAddToCart.php'
1568
  ),
1569
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTopRated' => array(
1570
- 'version' => '7.6.0.0',
1571
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTopRated.php'
1572
  ),
1573
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSearch' => array(
1574
- 'version' => '7.6.0.0',
1575
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSearch.php'
1576
  ),
1577
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\StockFilter' => array(
1578
- 'version' => '7.6.0.0',
1579
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/StockFilter.php'
1580
  ),
1581
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductOnSale' => array(
1582
- 'version' => '7.6.0.0',
1583
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductOnSale.php'
1584
  ),
1585
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractProductGrid' => array(
1586
- 'version' => '7.6.0.0',
1587
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php'
1588
- ),
1589
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AttributeFilter' => array(
1590
- 'version' => '7.6.0.0',
1591
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AttributeFilter.php'
1592
- ),
1593
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractBlock' => array(
1594
- 'version' => '7.6.0.0',
1595
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractBlock.php'
1596
  ),
1597
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\PriceFilter' => array(
1598
- 'version' => '7.6.0.0',
1599
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/PriceFilter.php'
1600
  ),
1601
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ClassicTemplate' => array(
1602
- 'version' => '7.6.0.0',
1603
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ClassicTemplate.php'
1604
  ),
1605
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCart' => array(
1606
- 'version' => '7.6.0.0',
1607
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/MiniCart.php'
1608
  ),
 
 
 
 
 
 
 
 
 
 
 
 
1609
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTag' => array(
1610
- 'version' => '7.6.0.0',
1611
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTag.php'
1612
  ),
1613
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractDynamicBlock' => array(
1614
- 'version' => '7.6.0.0',
1615
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractDynamicBlock.php'
1616
  ),
1617
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductRating' => array(
1618
- 'version' => '7.6.0.0',
1619
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductRating.php'
1620
  ),
1621
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductNew' => array(
1622
- 'version' => '7.6.0.0',
1623
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductNew.php'
1624
  ),
1625
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductImage' => array(
1626
- 'version' => '7.6.0.0',
1627
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductImage.php'
1628
  ),
1629
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllReviews' => array(
1630
- 'version' => '7.6.0.0',
1631
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllReviews.php'
1632
  ),
1633
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategory' => array(
1634
- 'version' => '7.6.0.0',
1635
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategory.php'
1636
  ),
1637
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductsByAttribute' => array(
1638
- 'version' => '7.6.0.0',
1639
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductsByAttribute.php'
1640
  ),
1641
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByCategory' => array(
1642
- 'version' => '7.6.0.0',
1643
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByCategory.php'
1644
  ),
1645
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\SingleProduct' => array(
1646
- 'version' => '7.6.0.0',
1647
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/SingleProduct.php'
1648
  ),
1649
- 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategoryList' => array(
1650
- 'version' => '7.6.0.0',
1651
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategoryList.php'
1652
  ),
1653
- 'Automattic\\WooCommerce\\Blocks\\AssetsController' => array(
1654
- 'version' => '7.6.0.0',
1655
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/AssetsController.php'
1656
  ),
1657
- 'Automattic\\WooCommerce\\Blocks\\Package' => array(
1658
- 'version' => '7.6.0.0',
1659
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Package.php'
1660
  ),
1661
- 'Automattic\\WooCommerce\\Blocks\\Templates\\ProductSearchResultsTemplate' => array(
1662
- 'version' => '7.6.0.0',
1663
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Templates/ProductSearchResultsTemplate.php'
1664
  ),
1665
- 'Automattic\\WooCommerce\\Blocks\\Templates\\ClassicTemplatesCompatibility' => array(
1666
- 'version' => '7.6.0.0',
1667
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Templates/ClassicTemplatesCompatibility.php'
1668
  ),
1669
  'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\CashOnDelivery' => array(
1670
- 'version' => '7.6.0.0',
1671
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/CashOnDelivery.php'
1672
  ),
1673
  'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\PayPal' => array(
1674
- 'version' => '7.6.0.0',
1675
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/PayPal.php'
1676
  ),
1677
  'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\BankTransfer' => array(
1678
- 'version' => '7.6.0.0',
1679
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/BankTransfer.php'
1680
  ),
1681
- 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\AbstractPaymentMethodType' => array(
1682
- 'version' => '7.6.0.0',
1683
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/AbstractPaymentMethodType.php'
1684
- ),
1685
  'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\Cheque' => array(
1686
- 'version' => '7.6.0.0',
1687
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/Cheque.php'
1688
  ),
1689
- 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodRegistry' => array(
1690
- 'version' => '7.6.0.0',
1691
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentMethodRegistry.php'
1692
  ),
1693
  'Automattic\\WooCommerce\\Blocks\\Payments\\Api' => array(
1694
- 'version' => '7.6.0.0',
1695
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Api.php'
1696
  ),
1697
- 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodTypeInterface' => array(
1698
- 'version' => '7.6.0.0',
1699
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentMethodTypeInterface.php'
1700
  ),
1701
- 'Automattic\\WooCommerce\\Blocks\\Assets\\AssetDataRegistry' => array(
1702
- 'version' => '7.6.0.0',
1703
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/AssetDataRegistry.php'
1704
  ),
1705
- 'Automattic\\WooCommerce\\Blocks\\Assets\\Api' => array(
1706
- 'version' => '7.6.0.0',
1707
- 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/Api.php'
1708
  ),
1709
- 'Automattic\\WooCommerce\\Proxies\\LegacyProxy' => array(
1710
- 'version' => '6.6.0.0',
1711
- 'path' => $baseDir . '/src/Proxies/LegacyProxy.php'
1712
  ),
1713
- 'Automattic\\WooCommerce\\Proxies\\ActionsProxy' => array(
1714
- 'version' => '6.6.0.0',
1715
- 'path' => $baseDir . '/src/Proxies/ActionsProxy.php'
1716
  ),
1717
- 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostMetaToOrderMetaMigrator' => array(
1718
- 'version' => '6.6.0.0',
1719
- 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostMetaToOrderMetaMigrator.php'
1720
  ),
1721
- 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostsToOrdersMigrationController' => array(
1722
- 'version' => '6.6.0.0',
1723
- 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostsToOrdersMigrationController.php'
1724
  ),
1725
- 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\MetaToCustomTableMigrator' => array(
1726
- 'version' => '6.6.0.0',
1727
- 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/MetaToCustomTableMigrator.php'
1728
  ),
1729
- 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderTableMigrator' => array(
1730
- 'version' => '6.6.0.0',
1731
- 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderTableMigrator.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1732
  ),
1733
  'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderAddressTableMigrator' => array(
1734
- 'version' => '6.6.0.0',
1735
  'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderAddressTableMigrator.php'
1736
  ),
1737
  'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderOpTableMigrator' => array(
1738
- 'version' => '6.6.0.0',
1739
  'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderOpTableMigrator.php'
1740
  ),
1741
- 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\MetaToMetaTableMigrator' => array(
1742
- 'version' => '6.6.0.0',
1743
- 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/MetaToMetaTableMigrator.php'
 
 
 
 
1744
  ),
1745
  'Automattic\\WooCommerce\\DataBase\\Migrations\\CustomOrderTable\\CLIRunner' => array(
1746
- 'version' => '6.6.0.0',
1747
  'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/CLIRunner.php'
1748
  ),
1749
- 'Automattic\\WooCommerce\\Database\\Migrations\\MigrationErrorLogger' => array(
1750
- 'version' => '6.6.0.0',
1751
- 'path' => $baseDir . '/src/Database/Migrations/MigrationErrorLogger.php'
1752
  ),
1753
  'Automattic\\WooCommerce\\Database\\Migrations\\MigrationHelper' => array(
1754
- 'version' => '6.6.0.0',
1755
  'path' => $baseDir . '/src/Database/Migrations/MigrationHelper.php'
1756
  ),
1757
  'Automattic\\WooCommerce\\Container' => array(
1758
- 'version' => '6.6.0.0',
1759
  'path' => $baseDir . '/src/Container.php'
1760
  ),
1761
- 'Automattic\\WooCommerce\\Internal\\AssignDefaultCategory' => array(
1762
- 'version' => '6.6.0.0',
1763
- 'path' => $baseDir . '/src/Internal/AssignDefaultCategory.php'
1764
- ),
1765
- 'Automattic\\WooCommerce\\Internal\\Settings\\OptionSanitizer' => array(
1766
- 'version' => '6.6.0.0',
1767
- 'path' => $baseDir . '/src/Internal/Settings/OptionSanitizer.php'
1768
- ),
1769
- 'Automattic\\WooCommerce\\Internal\\WCCom\\ConnectionHelper' => array(
1770
- 'version' => '6.6.0.0',
1771
- 'path' => $baseDir . '/src/Internal/WCCom/ConnectionHelper.php'
1772
- ),
1773
- 'Automattic\\WooCommerce\\Internal\\RestApiUtil' => array(
1774
- 'version' => '6.6.0.0',
1775
- 'path' => $baseDir . '/src/Internal/RestApiUtil.php'
1776
- ),
1777
- 'Automattic\\WooCommerce\\Internal\\RestockRefundedItemsAdjuster' => array(
1778
- 'version' => '6.6.0.0',
1779
- 'path' => $baseDir . '/src/Internal/RestockRefundedItemsAdjuster.php'
1780
  ),
1781
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ContainerException' => array(
1782
- 'version' => '6.6.0.0',
1783
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ContainerException.php'
1784
  ),
1785
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\Definition' => array(
1786
- 'version' => '6.6.0.0',
1787
- 'path' => $baseDir . '/src/Internal/DependencyManagement/Definition.php'
1788
  ),
1789
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductDownloadsServiceProvider' => array(
1790
- 'version' => '6.6.0.0',
1791
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductDownloadsServiceProvider.php'
1792
  ),
1793
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\DownloadPermissionsAdjusterServiceProvider' => array(
1794
- 'version' => '6.6.0.0',
1795
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php'
1796
  ),
1797
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\RestockRefundedItemsAdjusterServiceProvider' => array(
1798
- 'version' => '6.6.0.0',
1799
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/RestockRefundedItemsAdjusterServiceProvider.php'
1800
  ),
1801
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\UtilsClassesServiceProvider' => array(
1802
- 'version' => '6.6.0.0',
1803
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/UtilsClassesServiceProvider.php'
1804
  ),
1805
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\AssignDefaultCategoryServiceProvider' => array(
1806
- 'version' => '6.6.0.0',
1807
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/AssignDefaultCategoryServiceProvider.php'
1808
  ),
1809
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\COTMigrationServiceProvider' => array(
1810
- 'version' => '6.6.0.0',
1811
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/COTMigrationServiceProvider.php'
1812
  ),
1813
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProxiesServiceProvider' => array(
1814
- 'version' => '6.6.0.0',
1815
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php'
1816
  ),
1817
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductAttributesLookupServiceProvider' => array(
1818
- 'version' => '6.6.0.0',
1819
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductAttributesLookupServiceProvider.php'
1820
  ),
1821
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrdersDataStoreServiceProvider' => array(
1822
- 'version' => '6.6.0.0',
1823
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrdersDataStoreServiceProvider.php'
1824
  ),
1825
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OptionSanitizerServiceProvider' => array(
1826
- 'version' => '6.6.0.0',
1827
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OptionSanitizerServiceProvider.php'
1828
  ),
1829
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ExtendedContainer' => array(
1830
- 'version' => '6.6.0.0',
1831
- 'path' => $baseDir . '/src/Internal/DependencyManagement/ExtendedContainer.php'
1832
  ),
1833
- 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\AbstractServiceProvider' => array(
1834
- 'version' => '6.6.0.0',
1835
- 'path' => $baseDir . '/src/Internal/DependencyManagement/AbstractServiceProvider.php'
1836
  ),
1837
- 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\CustomOrdersTableController' => array(
1838
- 'version' => '6.6.0.0',
1839
- 'path' => $baseDir . '/src/Internal/DataStores/Orders/CustomOrdersTableController.php'
1840
  ),
1841
- 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\DataSynchronizer' => array(
1842
- 'version' => '6.6.0.0',
1843
- 'path' => $baseDir . '/src/Internal/DataStores/Orders/DataSynchronizer.php'
1844
  ),
1845
- 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableDataStore' => array(
1846
- 'version' => '6.6.0.0',
1847
- 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableDataStore.php'
1848
  ),
1849
  'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Synchronize' => array(
1850
- 'version' => '6.6.0.0',
1851
  'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Synchronize.php'
1852
  ),
1853
- 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Register' => array(
1854
- 'version' => '6.6.0.0',
1855
- 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Register.php'
1856
  ),
1857
  'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\ApprovedDirectoriesException' => array(
1858
- 'version' => '6.6.0.0',
1859
  'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/ApprovedDirectoriesException.php'
1860
  ),
1861
- 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\StoredUrl' => array(
1862
- 'version' => '6.6.0.0',
1863
- 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/StoredUrl.php'
1864
- ),
1865
  'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\SyncUI' => array(
1866
- 'version' => '6.6.0.0',
1867
  'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/SyncUI.php'
1868
  ),
1869
- 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\Table' => array(
1870
- 'version' => '6.6.0.0',
1871
- 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/Table.php'
1872
- ),
1873
  'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\UI' => array(
1874
- 'version' => '6.6.0.0',
1875
  'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/UI.php'
1876
  ),
 
 
 
 
1877
  'Automattic\\WooCommerce\\Internal\\DownloadPermissionsAdjuster' => array(
1878
- 'version' => '6.6.0.0',
1879
  'path' => $baseDir . '/src/Internal/DownloadPermissionsAdjuster.php'
1880
  ),
1881
- 'Automattic\\WooCommerce\\Internal\\Admin\\Analytics' => array(
1882
- 'version' => '6.6.0.0',
1883
- 'path' => $baseDir . '/src/Internal/Admin/Analytics.php'
1884
  ),
1885
- 'Automattic\\WooCommerce\\Internal\\Admin\\FeaturePlugin' => array(
1886
- 'version' => '6.6.0.0',
1887
- 'path' => $baseDir . '/src/Internal/Admin/FeaturePlugin.php'
1888
  ),
1889
- 'Automattic\\WooCommerce\\Internal\\Admin\\CouponsMovedTrait' => array(
1890
- 'version' => '6.6.0.0',
1891
- 'path' => $baseDir . '/src/Internal/Admin/CouponsMovedTrait.php'
1892
  ),
1893
- 'Automattic\\WooCommerce\\Internal\\Admin\\ActivityPanels' => array(
1894
- 'version' => '6.6.0.0',
1895
- 'path' => $baseDir . '/src/Internal/Admin/ActivityPanels.php'
1896
  ),
1897
- 'Automattic\\WooCommerce\\Internal\\Admin\\WcPaySubscriptionsPage' => array(
1898
- 'version' => '6.6.0.0',
1899
- 'path' => $baseDir . '/src/Internal/Admin/WcPaySubscriptionsPage.php'
1900
  ),
1901
- 'Automattic\\WooCommerce\\Internal\\Admin\\Settings' => array(
1902
- 'version' => '6.6.0.0',
1903
- 'path' => $baseDir . '/src/Internal/Admin/Settings.php'
1904
  ),
1905
- 'Automattic\\WooCommerce\\Internal\\Admin\\ShippingLabelBanner' => array(
1906
- 'version' => '6.6.0.0',
1907
- 'path' => $baseDir . '/src/Internal/Admin/ShippingLabelBanner.php'
1908
  ),
1909
- 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\RemoteFreeExtensionsDataSourcePoller' => array(
1910
- 'version' => '6.6.0.0',
1911
- 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/RemoteFreeExtensionsDataSourcePoller.php'
1912
  ),
1913
- 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\Init' => array(
1914
- 'version' => '6.6.0.0',
1915
- 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/Init.php'
1916
  ),
1917
- 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\EvaluateExtension' => array(
1918
- 'version' => '6.6.0.0',
1919
- 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/EvaluateExtension.php'
1920
  ),
1921
- 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\DefaultFreeExtensions' => array(
1922
- 'version' => '6.6.0.0',
1923
- 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/DefaultFreeExtensions.php'
1924
  ),
1925
- 'Automattic\\WooCommerce\\Internal\\Admin\\CustomerEffortScoreTracks' => array(
1926
- 'version' => '6.6.0.0',
1927
- 'path' => $baseDir . '/src/Internal/Admin/CustomerEffortScoreTracks.php'
1928
  ),
1929
- 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteInboxNotifications' => array(
1930
- 'version' => '6.6.0.0',
1931
- 'path' => $baseDir . '/src/Internal/Admin/RemoteInboxNotifications.php'
1932
  ),
1933
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OnlineClothingStore' => array(
1934
- 'version' => '6.6.0.0',
1935
- 'path' => $baseDir . '/src/Internal/Admin/Notes/OnlineClothingStore.php'
 
 
 
 
1936
  ),
1937
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\TestCheckout' => array(
1938
- 'version' => '6.6.0.0',
1939
  'path' => $baseDir . '/src/Internal/Admin/Notes/TestCheckout.php'
1940
  ),
1941
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\RealTimeOrderAlerts' => array(
1942
- 'version' => '6.6.0.0',
1943
- 'path' => $baseDir . '/src/Internal/Admin/Notes/RealTimeOrderAlerts.php'
1944
- ),
1945
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooCommerceSubscriptions' => array(
1946
- 'version' => '6.6.0.0',
1947
- 'path' => $baseDir . '/src/Internal/Admin/Notes/WooCommerceSubscriptions.php'
1948
- ),
1949
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MigrateFromShopify' => array(
1950
- 'version' => '6.6.0.0',
1951
- 'path' => $baseDir . '/src/Internal/Admin/Notes/MigrateFromShopify.php'
1952
- ),
1953
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\UpdateStoreDetails' => array(
1954
- 'version' => '6.6.0.0',
1955
- 'path' => $baseDir . '/src/Internal/Admin/Notes/UpdateStoreDetails.php'
1956
  ),
1957
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PersonalizeStore' => array(
1958
- 'version' => '6.6.0.0',
1959
- 'path' => $baseDir . '/src/Internal/Admin/Notes/PersonalizeStore.php'
1960
  ),
1961
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\FirstProduct' => array(
1962
- 'version' => '6.6.0.0',
1963
  'path' => $baseDir . '/src/Internal/Admin/Notes/FirstProduct.php'
1964
  ),
1965
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EditProductsOnTheMove' => array(
1966
- 'version' => '6.6.0.0',
1967
- 'path' => $baseDir . '/src/Internal/Admin/Notes/EditProductsOnTheMove.php'
1968
  ),
1969
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\GivingFeedbackNotes' => array(
1970
- 'version' => '6.6.0.0',
1971
- 'path' => $baseDir . '/src/Internal/Admin/Notes/GivingFeedbackNotes.php'
1972
  ),
1973
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooSubscriptionsNotes' => array(
1974
- 'version' => '6.6.0.0',
1975
- 'path' => $baseDir . '/src/Internal/Admin/Notes/WooSubscriptionsNotes.php'
1976
  ),
1977
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\TrackingOptIn' => array(
1978
- 'version' => '6.6.0.0',
1979
- 'path' => $baseDir . '/src/Internal/Admin/Notes/TrackingOptIn.php'
1980
- ),
1981
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\AddFirstProduct' => array(
1982
- 'version' => '6.6.0.0',
1983
- 'path' => $baseDir . '/src/Internal/Admin/Notes/AddFirstProduct.php'
1984
  ),
1985
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CouponPageMoved' => array(
1986
- 'version' => '6.6.0.0',
1987
- 'path' => $baseDir . '/src/Internal/Admin/Notes/CouponPageMoved.php'
1988
  ),
1989
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ManageOrdersOnTheGo' => array(
1990
- 'version' => '6.6.0.0',
1991
- 'path' => $baseDir . '/src/Internal/Admin/Notes/ManageOrdersOnTheGo.php'
1992
  ),
1993
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EUVATNumber' => array(
1994
- 'version' => '6.6.0.0',
1995
- 'path' => $baseDir . '/src/Internal/Admin/Notes/EUVATNumber.php'
1996
  ),
1997
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CustomizeStoreWithBlocks' => array(
1998
- 'version' => '6.6.0.0',
1999
- 'path' => $baseDir . '/src/Internal/Admin/Notes/CustomizeStoreWithBlocks.php'
2000
  ),
2001
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OnboardingPayments' => array(
2002
- 'version' => '6.6.0.0',
2003
  'path' => $baseDir . '/src/Internal/Admin/Notes/OnboardingPayments.php'
2004
  ),
2005
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\AddingAndManangingProducts' => array(
2006
- 'version' => '6.6.0.0',
2007
- 'path' => $baseDir . '/src/Internal/Admin/Notes/AddingAndManangingProducts.php'
2008
  ),
2009
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\NavigationNudge' => array(
2010
- 'version' => '6.6.0.0',
2011
- 'path' => $baseDir . '/src/Internal/Admin/Notes/NavigationNudge.php'
2012
  ),
2013
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CompleteStoreDetails' => array(
2014
- 'version' => '6.6.0.0',
2015
- 'path' => $baseDir . '/src/Internal/Admin/Notes/CompleteStoreDetails.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2016
  ),
2017
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MarketingJetpack' => array(
2018
- 'version' => '6.6.0.0',
2019
  'path' => $baseDir . '/src/Internal/Admin/Notes/MarketingJetpack.php'
2020
  ),
 
 
 
 
2021
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PaymentsRemindMeLater' => array(
2022
- 'version' => '6.6.0.0',
2023
  'path' => $baseDir . '/src/Internal/Admin/Notes/PaymentsRemindMeLater.php'
2024
  ),
2025
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\InsightFirstSale' => array(
2026
- 'version' => '6.6.0.0',
2027
- 'path' => $baseDir . '/src/Internal/Admin/Notes/InsightFirstSale.php'
2028
- ),
2029
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OrderMilestones' => array(
2030
- 'version' => '6.6.0.0',
2031
- 'path' => $baseDir . '/src/Internal/Admin/Notes/OrderMilestones.php'
2032
- ),
2033
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ChoosingTheme' => array(
2034
- 'version' => '6.6.0.0',
2035
- 'path' => $baseDir . '/src/Internal/Admin/Notes/ChoosingTheme.php'
2036
- ),
2037
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\UnsecuredReportFiles' => array(
2038
- 'version' => '6.6.0.0',
2039
  'path' => $baseDir . '/src/Internal/Admin/Notes/UnsecuredReportFiles.php'
2040
  ),
2041
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PerformanceOnMobile' => array(
2042
- 'version' => '6.6.0.0',
2043
- 'path' => $baseDir . '/src/Internal/Admin/Notes/PerformanceOnMobile.php'
2044
- ),
2045
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\SellingOnlineCourses' => array(
2046
- 'version' => '6.6.0.0',
2047
- 'path' => $baseDir . '/src/Internal/Admin/Notes/SellingOnlineCourses.php'
2048
  ),
2049
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EmailNotification' => array(
2050
- 'version' => '6.6.0.0',
2051
  'path' => $baseDir . '/src/Internal/Admin/Notes/EmailNotification.php'
2052
  ),
2053
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CustomizingProductCatalog' => array(
2054
- 'version' => '6.6.0.0',
2055
- 'path' => $baseDir . '/src/Internal/Admin/Notes/CustomizingProductCatalog.php'
2056
  ),
2057
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MerchantEmailNotifications' => array(
2058
- 'version' => '6.6.0.0',
2059
- 'path' => $baseDir . '/src/Internal/Admin/Notes/MerchantEmailNotifications.php'
2060
  ),
2061
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooCommercePayments' => array(
2062
- 'version' => '6.6.0.0',
2063
- 'path' => $baseDir . '/src/Internal/Admin/Notes/WooCommercePayments.php'
2064
  ),
2065
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\LaunchChecklist' => array(
2066
- 'version' => '6.6.0.0',
2067
- 'path' => $baseDir . '/src/Internal/Admin/Notes/LaunchChecklist.php'
2068
  ),
2069
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\NewSalesRecord' => array(
2070
- 'version' => '6.6.0.0',
2071
- 'path' => $baseDir . '/src/Internal/Admin/Notes/NewSalesRecord.php'
2072
  ),
2073
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WelcomeToWooCommerceForStoreUsers' => array(
2074
- 'version' => '6.6.0.0',
2075
- 'path' => $baseDir . '/src/Internal/Admin/Notes/WelcomeToWooCommerceForStoreUsers.php'
2076
  ),
2077
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\FirstDownlaodableProduct' => array(
2078
- 'version' => '6.6.0.0',
2079
- 'path' => $baseDir . '/src/Internal/Admin/Notes/FirstDownlaodableProduct.php'
2080
  ),
2081
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\InstallJPAndWCSPlugins' => array(
2082
- 'version' => '6.6.0.0',
2083
- 'path' => $baseDir . '/src/Internal/Admin/Notes/InstallJPAndWCSPlugins.php'
2084
  ),
2085
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ManageStoreActivityFromHomeScreen' => array(
2086
- 'version' => '6.6.0.0',
2087
- 'path' => $baseDir . '/src/Internal/Admin/Notes/ManageStoreActivityFromHomeScreen.php'
2088
  ),
2089
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MobileApp' => array(
2090
- 'version' => '6.6.0.0',
2091
- 'path' => $baseDir . '/src/Internal/Admin/Notes/MobileApp.php'
2092
  ),
2093
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\InsightFirstProductAndPayment' => array(
2094
- 'version' => '6.6.0.0',
2095
- 'path' => $baseDir . '/src/Internal/Admin/Notes/InsightFirstProductAndPayment.php'
2096
  ),
2097
- 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MagentoMigration' => array(
2098
- 'version' => '6.6.0.0',
2099
- 'path' => $baseDir . '/src/Internal/Admin/Notes/MagentoMigration.php'
2100
  ),
2101
- 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingThemes' => array(
2102
- 'version' => '6.6.0.0',
2103
- 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingThemes.php'
2104
  ),
2105
- 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\Onboarding' => array(
2106
- 'version' => '6.6.0.0',
2107
- 'path' => $baseDir . '/src/Internal/Admin/Onboarding/Onboarding.php'
2108
  ),
2109
- 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingProducts' => array(
2110
- 'version' => '6.6.0.0',
2111
- 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingProducts.php'
2112
  ),
2113
- 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingIndustries' => array(
2114
- 'version' => '6.6.0.0',
2115
- 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingIndustries.php'
2116
  ),
2117
- 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingProfile' => array(
2118
- 'version' => '6.6.0.0',
2119
- 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingProfile.php'
2120
  ),
2121
- 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingSetupWizard' => array(
2122
- 'version' => '6.6.0.0',
2123
- 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingSetupWizard.php'
2124
  ),
2125
- 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingHelper' => array(
2126
- 'version' => '6.6.0.0',
2127
- 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingHelper.php'
2128
  ),
2129
- 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingMailchimp' => array(
2130
- 'version' => '6.6.0.0',
2131
- 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingMailchimp.php'
2132
  ),
2133
- 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingJetpack' => array(
2134
- 'version' => '6.6.0.0',
2135
- 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingJetpack.php'
2136
  ),
2137
- 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingSync' => array(
2138
- 'version' => '6.6.0.0',
2139
- 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingSync.php'
2140
  ),
2141
- 'Automattic\\WooCommerce\\Internal\\Admin\\SettingsNavigationFeature' => array(
2142
- 'version' => '6.6.0.0',
2143
- 'path' => $baseDir . '/src/Internal/Admin/SettingsNavigationFeature.php'
2144
  ),
2145
- 'Automattic\\WooCommerce\\Internal\\Admin\\Marketing' => array(
2146
- 'version' => '6.6.0.0',
2147
- 'path' => $baseDir . '/src/Internal/Admin/Marketing.php'
 
 
 
 
2148
  ),
2149
  'Automattic\\WooCommerce\\Internal\\Admin\\ShippingLabelBannerDisplayRules' => array(
2150
- 'version' => '6.6.0.0',
2151
  'path' => $baseDir . '/src/Internal/Admin/ShippingLabelBannerDisplayRules.php'
2152
  ),
2153
- 'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminUser' => array(
2154
- 'version' => '6.6.0.0',
2155
- 'path' => $baseDir . '/src/Internal/Admin/WCAdminUser.php'
2156
  ),
2157
- 'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminSharedSettings' => array(
2158
- 'version' => '6.6.0.0',
2159
- 'path' => $baseDir . '/src/Internal/Admin/WCAdminSharedSettings.php'
2160
  ),
2161
- 'Automattic\\WooCommerce\\Internal\\Admin\\CategoryLookup' => array(
2162
- 'version' => '6.6.0.0',
2163
- 'path' => $baseDir . '/src/Internal/Admin/CategoryLookup.php'
 
 
 
 
2164
  ),
2165
  'Automattic\\WooCommerce\\Internal\\Admin\\Translations' => array(
2166
- 'version' => '6.6.0.0',
2167
  'path' => $baseDir . '/src/Internal/Admin/Translations.php'
2168
  ),
2169
- 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\WCPayPromotionDataSourcePoller' => array(
2170
- 'version' => '6.6.0.0',
2171
- 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/WCPayPromotionDataSourcePoller.php'
2172
  ),
2173
- 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\WCPaymentGatewayPreInstallWCPayPromotion' => array(
2174
- 'version' => '6.6.0.0',
2175
- 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/WCPaymentGatewayPreInstallWCPayPromotion.php'
2176
  ),
2177
- 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\Init' => array(
2178
- 'version' => '6.6.0.0',
2179
- 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/Init.php'
2180
  ),
2181
- 'Automattic\\WooCommerce\\Internal\\Admin\\WcPayWelcomePage' => array(
2182
- 'version' => '6.6.0.0',
2183
- 'path' => $baseDir . '/src/Internal/Admin/WcPayWelcomePage.php'
2184
  ),
2185
  'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminAssets' => array(
2186
- 'version' => '6.6.0.0',
2187
  'path' => $baseDir . '/src/Internal/Admin/WCAdminAssets.php'
2188
  ),
 
 
 
 
2189
  'Automattic\\WooCommerce\\Internal\\Admin\\Survey' => array(
2190
- 'version' => '6.6.0.0',
2191
  'path' => $baseDir . '/src/Internal/Admin/Survey.php'
2192
  ),
2193
- 'Automattic\\WooCommerce\\Internal\\Admin\\Coupons' => array(
2194
- 'version' => '6.6.0.0',
2195
- 'path' => $baseDir . '/src/Internal/Admin/Coupons.php'
2196
- ),
2197
- 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportScheduler' => array(
2198
- 'version' => '6.6.0.0',
2199
- 'path' => $baseDir . '/src/Internal/Admin/Schedulers/ImportScheduler.php'
2200
- ),
2201
- 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportInterface' => array(
2202
- 'version' => '6.6.0.0',
2203
- 'path' => $baseDir . '/src/Internal/Admin/Schedulers/ImportInterface.php'
2204
  ),
2205
- 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\MailchimpScheduler' => array(
2206
- 'version' => '6.6.0.0',
2207
- 'path' => $baseDir . '/src/Internal/Admin/Schedulers/MailchimpScheduler.php'
2208
  ),
2209
- 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\OrdersScheduler' => array(
2210
- 'version' => '6.6.0.0',
2211
- 'path' => $baseDir . '/src/Internal/Admin/Schedulers/OrdersScheduler.php'
2212
  ),
2213
- 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\CustomersScheduler' => array(
2214
- 'version' => '6.6.0.0',
2215
- 'path' => $baseDir . '/src/Internal/Admin/Schedulers/CustomersScheduler.php'
2216
  ),
2217
- 'Automattic\\WooCommerce\\Internal\\Admin\\Events' => array(
2218
- 'version' => '6.6.0.0',
2219
- 'path' => $baseDir . '/src/Internal/Admin/Events.php'
2220
  ),
2221
- 'Automattic\\WooCommerce\\Internal\\Admin\\Loader' => array(
2222
- 'version' => '6.6.0.0',
2223
- 'path' => $baseDir . '/src/Internal/Admin/Loader.php'
2224
  ),
2225
- 'Automattic\\WooCommerce\\Internal\\Admin\\MobileAppBanner' => array(
2226
- 'version' => '6.6.0.0',
2227
- 'path' => $baseDir . '/src/Internal/Admin/MobileAppBanner.php'
2228
  ),
2229
- 'Automattic\\WooCommerce\\Internal\\Admin\\SystemStatusReport' => array(
2230
- 'version' => '6.6.0.0',
2231
- 'path' => $baseDir . '/src/Internal/Admin/SystemStatusReport.php'
2232
  ),
2233
- 'Automattic\\WooCommerce\\Internal\\Admin\\Homescreen' => array(
2234
- 'version' => '6.6.0.0',
2235
- 'path' => $baseDir . '/src/Internal/Admin/Homescreen.php'
2236
  ),
2237
- 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\Filterer' => array(
2238
- 'version' => '6.6.0.0',
2239
- 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/Filterer.php'
2240
  ),
2241
- 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\DataRegenerator' => array(
2242
- 'version' => '6.6.0.0',
2243
- 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/DataRegenerator.php'
2244
  ),
2245
- 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore' => array(
2246
- 'version' => '6.6.0.0',
2247
- 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/LookupDataStore.php'
2248
  ),
2249
- 'Automattic\\WooCommerce\\Internal\\Utilities\\BlocksUtil' => array(
2250
- 'version' => '6.6.0.0',
2251
- 'path' => $baseDir . '/src/Internal/Utilities/BlocksUtil.php'
2252
  ),
2253
- 'Automattic\\WooCommerce\\Internal\\Utilities\\DatabaseUtil' => array(
2254
- 'version' => '6.6.0.0',
2255
- 'path' => $baseDir . '/src/Internal/Utilities/DatabaseUtil.php'
2256
  ),
2257
- 'Automattic\\WooCommerce\\Internal\\Utilities\\Users' => array(
2258
- 'version' => '6.6.0.0',
2259
- 'path' => $baseDir . '/src/Internal/Utilities/Users.php'
2260
  ),
2261
- 'Automattic\\WooCommerce\\Internal\\Utilities\\HtmlSanitizer' => array(
2262
- 'version' => '6.6.0.0',
2263
- 'path' => $baseDir . '/src/Internal/Utilities/HtmlSanitizer.php'
2264
  ),
2265
- 'Automattic\\WooCommerce\\Internal\\Utilities\\URLException' => array(
2266
- 'version' => '6.6.0.0',
2267
- 'path' => $baseDir . '/src/Internal/Utilities/URLException.php'
2268
  ),
2269
- 'Automattic\\WooCommerce\\Internal\\Utilities\\URL' => array(
2270
- 'version' => '6.6.0.0',
2271
- 'path' => $baseDir . '/src/Internal/Utilities/URL.php'
2272
  ),
2273
- 'Automattic\\WooCommerce\\Autoloader' => array(
2274
- 'version' => '6.6.0.0',
2275
- 'path' => $baseDir . '/src/Autoloader.php'
2276
  ),
2277
- 'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStock' => array(
2278
- 'version' => '6.6.0.0',
2279
- 'path' => $baseDir . '/src/Checkout/Helpers/ReserveStock.php'
2280
  ),
2281
- 'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStockException' => array(
2282
- 'version' => '6.6.0.0',
2283
- 'path' => $baseDir . '/src/Checkout/Helpers/ReserveStockException.php'
2284
  ),
2285
- 'Automattic\\WooCommerce\\Admin\\FeaturePlugin' => array(
2286
- 'version' => '6.6.0.0',
2287
- 'path' => $baseDir . '/src/Admin/FeaturePlugin.php'
2288
  ),
2289
- 'Automattic\\WooCommerce\\Admin\\ReportsSync' => array(
2290
- 'version' => '6.6.0.0',
2291
- 'path' => $baseDir . '/src/Admin/ReportsSync.php'
2292
  ),
2293
- 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\DateTimeProviderInterface' => array(
2294
- 'version' => '6.6.0.0',
2295
- 'path' => $baseDir . '/src/Admin/DateTimeProvider/DateTimeProviderInterface.php'
2296
  ),
2297
- 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\CurrentDateTimeProvider' => array(
2298
- 'version' => '6.6.0.0',
2299
- 'path' => $baseDir . '/src/Admin/DateTimeProvider/CurrentDateTimeProvider.php'
2300
  ),
2301
- 'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgrader' => array(
2302
- 'version' => '6.6.0.0',
2303
- 'path' => $baseDir . '/src/Admin/Overrides/ThemeUpgrader.php'
2304
  ),
2305
- 'Automattic\\WooCommerce\\Admin\\Overrides\\Order' => array(
2306
- 'version' => '6.6.0.0',
2307
- 'path' => $baseDir . '/src/Admin/Overrides/Order.php'
2308
  ),
2309
- 'Automattic\\WooCommerce\\Admin\\Overrides\\OrderRefund' => array(
2310
- 'version' => '6.6.0.0',
2311
- 'path' => $baseDir . '/src/Admin/Overrides/OrderRefund.php'
2312
  ),
2313
- 'Automattic\\WooCommerce\\Admin\\Overrides\\OrderTraits' => array(
2314
- 'version' => '6.6.0.0',
2315
- 'path' => $baseDir . '/src/Admin/Overrides/OrderTraits.php'
2316
  ),
2317
- 'Automattic\\WooCommerce\\Admin\\Overrides\\ThemeUpgraderSkin' => array(
2318
- 'version' => '6.6.0.0',
2319
- 'path' => $baseDir . '/src/Admin/Overrides/ThemeUpgraderSkin.php'
2320
  ),
2321
- 'Automattic\\WooCommerce\\Admin\\Composer\\Package' => array(
2322
- 'version' => '6.6.0.0',
2323
- 'path' => $baseDir . '/src/Admin/Composer/Package.php'
2324
  ),
2325
- 'Automattic\\WooCommerce\\Admin\\PluginsHelper' => array(
2326
- 'version' => '6.6.0.0',
2327
- 'path' => $baseDir . '/src/Admin/PluginsHelper.php'
2328
  ),
2329
  'Automattic\\WooCommerce\\Admin\\DataSourcePoller' => array(
2330
- 'version' => '6.6.0.0',
2331
  'path' => $baseDir . '/src/Admin/DataSourcePoller.php'
2332
  ),
2333
- 'Automattic\\WooCommerce\\Admin\\ReportCSVExporter' => array(
2334
- 'version' => '6.6.0.0',
2335
- 'path' => $baseDir . '/src/Admin/ReportCSVExporter.php'
2336
  ),
2337
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => array(
2338
- 'version' => '6.6.0.0',
2339
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2340
  ),
2341
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => array(
2342
- 'version' => '6.6.0.0',
2343
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2344
  ),
2345
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Coupon_Page_Moved' => array(
2346
- 'version' => '6.6.0.0',
2347
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2348
  ),
2349
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Customize_Store_With_Blocks' => array(
2350
- 'version' => '6.6.0.0',
2351
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2352
  ),
2353
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Edit_Products_On_The_Move' => array(
2354
- 'version' => '6.6.0.0',
2355
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2356
  ),
2357
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_EU_VAT_Number' => array(
2358
- 'version' => '6.6.0.0',
2359
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2360
  ),
2361
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Marketing_Expert' => array(
2362
- 'version' => '6.6.0.0',
2363
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2364
  ),
2365
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_First_Product' => array(
2366
- 'version' => '6.6.0.0',
2367
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2368
  ),
2369
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Giving_Feedback_Notes' => array(
2370
- 'version' => '6.6.0.0',
2371
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2372
  ),
2373
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Insight_First_Sale' => array(
2374
- 'version' => '6.6.0.0',
2375
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2376
  ),
2377
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Install_JP_And_WCS_Plugins' => array(
2378
- 'version' => '6.6.0.0',
2379
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2380
  ),
2381
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Launch_Checklist' => array(
2382
- 'version' => '6.6.0.0',
2383
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2384
  ),
2385
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Migrate_From_Shopify' => array(
2386
- 'version' => '6.6.0.0',
2387
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2388
  ),
2389
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => array(
2390
- 'version' => '6.6.0.0',
2391
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2392
  ),
2393
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => array(
2394
- 'version' => '6.6.0.0',
2395
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2396
  ),
2397
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Email_Marketing' => array(
2398
- 'version' => '6.6.0.0',
2399
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2400
  ),
2401
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Payments' => array(
2402
- 'version' => '6.6.0.0',
2403
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2404
  ),
2405
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Online_Clothing_Store' => array(
2406
- 'version' => '6.6.0.0',
2407
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2408
  ),
2409
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Order_Milestones' => array(
2410
- 'version' => '6.6.0.0',
2411
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2412
  ),
2413
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Performance_On_Mobile' => array(
2414
- 'version' => '6.6.0.0',
2415
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2416
  ),
2417
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Personalize_Store' => array(
2418
- 'version' => '6.6.0.0',
2419
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2420
  ),
2421
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Real_Time_Order_Alerts' => array(
2422
- 'version' => '6.6.0.0',
2423
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2424
  ),
2425
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Selling_Online_Courses' => array(
2426
- 'version' => '6.6.0.0',
2427
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2428
  ),
2429
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Test_Checkout' => array(
2430
- 'version' => '6.6.0.0',
2431
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2432
  ),
2433
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Tracking_Opt_In' => array(
2434
- 'version' => '6.6.0.0',
2435
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2436
  ),
2437
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => array(
2438
- 'version' => '6.6.0.0',
2439
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2440
  ),
2441
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Payments' => array(
2442
- 'version' => '6.6.0.0',
2443
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2444
  ),
2445
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Subscriptions' => array(
2446
- 'version' => '6.6.0.0',
2447
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2448
  ),
2449
- 'Automattic\\WooCommerce\\Admin\\Notes\\DataStore' => array(
2450
- 'version' => '6.6.0.0',
2451
- 'path' => $baseDir . '/src/Admin/Notes/DataStore.php'
2452
- ),
2453
- 'Automattic\\WooCommerce\\Admin\\Notes\\NotesUnavailableException' => array(
2454
- 'version' => '6.6.0.0',
2455
- 'path' => $baseDir . '/src/Admin/Notes/NotesUnavailableException.php'
2456
  ),
2457
  'Automattic\\WooCommerce\\Admin\\Notes\\Notes' => array(
2458
- 'version' => '6.6.0.0',
2459
  'path' => $baseDir . '/src/Admin/Notes/Notes.php'
2460
  ),
2461
  'Automattic\\WooCommerce\\Admin\\Notes\\NoteTraits' => array(
2462
- 'version' => '6.6.0.0',
2463
  'path' => $baseDir . '/src/Admin/Notes/NoteTraits.php'
2464
  ),
2465
- 'Automattic\\WooCommerce\\Admin\\Notes\\Note' => array(
2466
- 'version' => '6.6.0.0',
2467
- 'path' => $baseDir . '/src/Admin/Notes/Note.php'
2468
- ),
2469
- 'Automattic\\WooCommerce\\Admin\\WCAdminHelper' => array(
2470
- 'version' => '6.6.0.0',
2471
- 'path' => $baseDir . '/src/Admin/WCAdminHelper.php'
2472
- ),
2473
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\FailRuleProcessor' => array(
2474
- 'version' => '6.6.0.0',
2475
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/FailRuleProcessor.php'
2476
- ),
2477
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginVersionRuleProcessor' => array(
2478
- 'version' => '6.6.0.0',
2479
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PluginVersionRuleProcessor.php'
2480
- ),
2481
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\GetRuleProcessor' => array(
2482
- 'version' => '6.6.0.0',
2483
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/GetRuleProcessor.php'
2484
- ),
2485
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\DotNotation' => array(
2486
- 'version' => '6.6.0.0',
2487
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/DotNotation.php'
2488
- ),
2489
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\Count' => array(
2490
- 'version' => '6.6.0.0',
2491
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/Count.php'
2492
- ),
2493
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayFlatten' => array(
2494
- 'version' => '6.6.0.0',
2495
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayFlatten.php'
2496
  ),
2497
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayKeys' => array(
2498
- 'version' => '6.6.0.0',
2499
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayKeys.php'
2500
  ),
2501
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayValues' => array(
2502
- 'version' => '6.6.0.0',
2503
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayValues.php'
2504
  ),
2505
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArraySearch' => array(
2506
- 'version' => '6.6.0.0',
2507
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArraySearch.php'
2508
  ),
2509
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayColumn' => array(
2510
- 'version' => '6.6.0.0',
2511
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayColumn.php'
2512
  ),
2513
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RemoteInboxNotificationsEngine' => array(
2514
- 'version' => '6.6.0.0',
2515
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php'
2516
  ),
2517
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OptionRuleProcessor' => array(
2518
- 'version' => '6.6.0.0',
2519
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OptionRuleProcessor.php'
2520
  ),
 
 
 
 
2521
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerInterface' => array(
2522
- 'version' => '6.6.0.0',
2523
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TransformerInterface.php'
2524
  ),
2525
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateSetupForProducts' => array(
2526
- 'version' => '6.6.0.0',
2527
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/StoredStateSetupForProducts.php'
2528
- ),
2529
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluationLogger' => array(
2530
- 'version' => '6.6.0.0',
2531
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/EvaluationLogger.php'
2532
- ),
2533
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OnboardingProfileRuleProcessor' => array(
2534
- 'version' => '6.6.0.0',
2535
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OnboardingProfileRuleProcessor.php'
2536
  ),
2537
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\DataSourcePoller' => array(
2538
- 'version' => '6.6.0.0',
2539
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/DataSourcePoller.php'
2540
  ),
2541
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NoteStatusRuleProcessor' => array(
2542
- 'version' => '6.6.0.0',
2543
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/NoteStatusRuleProcessor.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2544
  ),
2545
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WooCommerceAdminUpdatedRuleProcessor' => array(
2546
- 'version' => '6.6.0.0',
2547
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WooCommerceAdminUpdatedRuleProcessor.php'
2548
  ),
2549
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishAfterTimeRuleProcessor' => array(
2550
- 'version' => '6.6.0.0',
2551
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PublishAfterTimeRuleProcessor.php'
 
 
 
 
 
 
 
 
2552
  ),
2553
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ProductCountRuleProcessor' => array(
2554
- 'version' => '6.6.0.0',
2555
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/ProductCountRuleProcessor.php'
2556
  ),
2557
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginsActivatedRuleProcessor' => array(
2558
- 'version' => '6.6.0.0',
2559
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PluginsActivatedRuleProcessor.php'
2560
- ),
2561
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleProcessorInterface' => array(
2562
- 'version' => '6.6.0.0',
2563
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RuleProcessorInterface.php'
2564
  ),
2565
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\IsEcommerceRuleProcessor' => array(
2566
- 'version' => '6.6.0.0',
2567
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/IsEcommerceRuleProcessor.php'
2568
  ),
2569
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationCountryRuleProcessor' => array(
2570
- 'version' => '6.6.0.0',
2571
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/BaseLocationCountryRuleProcessor.php'
2572
  ),
2573
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrderCountRuleProcessor' => array(
2574
- 'version' => '6.6.0.0',
2575
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrderCountRuleProcessor.php'
2576
  ),
2577
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ComparisonOperation' => array(
2578
- 'version' => '6.6.0.0',
2579
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/ComparisonOperation.php'
2580
  ),
2581
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleEvaluator' => array(
2582
- 'version' => '6.6.0.0',
2583
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RuleEvaluator.php'
2584
  ),
2585
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrdersProvider' => array(
2586
- 'version' => '6.6.0.0',
2587
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrdersProvider.php'
2588
  ),
2589
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NotRuleProcessor' => array(
2590
- 'version' => '6.6.0.0',
2591
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/NotRuleProcessor.php'
2592
  ),
2593
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationStateRuleProcessor' => array(
2594
- 'version' => '6.6.0.0',
2595
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/BaseLocationStateRuleProcessor.php'
2596
  ),
2597
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerService' => array(
2598
- 'version' => '6.6.0.0',
2599
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TransformerService.php'
2600
  ),
2601
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishBeforeTimeRuleProcessor' => array(
2602
- 'version' => '6.6.0.0',
2603
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PublishBeforeTimeRuleProcessor.php'
 
 
 
 
2604
  ),
2605
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateRuleProcessor' => array(
2606
- 'version' => '6.6.0.0',
2607
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/StoredStateRuleProcessor.php'
2608
  ),
2609
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PassRuleProcessor' => array(
2610
- 'version' => '6.6.0.0',
2611
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PassRuleProcessor.php'
2612
- ),
2613
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\SpecRunner' => array(
2614
- 'version' => '6.6.0.0',
2615
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/SpecRunner.php'
2616
- ),
2617
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForProvider' => array(
2618
- 'version' => '6.6.0.0',
2619
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WCAdminActiveForProvider.php'
2620
  ),
2621
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrRuleProcessor' => array(
2622
- 'version' => '6.6.0.0',
2623
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrRuleProcessor.php'
2624
  ),
 
 
 
 
2625
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForRuleProcessor' => array(
2626
- 'version' => '6.6.0.0',
2627
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WCAdminActiveForRuleProcessor.php'
2628
  ),
2629
- 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluateAndGetStatus' => array(
2630
- 'version' => '6.6.0.0',
2631
- 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/EvaluateAndGetStatus.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2632
  ),
2633
  'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\EvaluateSuggestion' => array(
2634
- 'version' => '6.6.0.0',
2635
  'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/EvaluateSuggestion.php'
2636
  ),
 
 
 
 
2637
  'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\DefaultPaymentGateways' => array(
2638
- 'version' => '6.6.0.0',
2639
  'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php'
2640
  ),
2641
  'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaysController' => array(
2642
- 'version' => '6.6.0.0',
2643
  'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaysController.php'
2644
  ),
2645
- 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaySuggestionsDataSourcePoller' => array(
2646
- 'version' => '6.6.0.0',
2647
- 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaySuggestionsDataSourcePoller.php'
2648
- ),
2649
  'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\Init' => array(
2650
- 'version' => '6.6.0.0',
2651
  'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/Init.php'
2652
  ),
2653
- 'Automattic\\WooCommerce\\Admin\\Features\\Features' => array(
2654
- 'version' => '6.6.0.0',
2655
- 'path' => $baseDir . '/src/Admin/Features/Features.php'
2656
- ),
2657
- 'Automattic\\WooCommerce\\Admin\\Features\\Onboarding' => array(
2658
- 'version' => '6.6.0.0',
2659
- 'path' => $baseDir . '/src/Admin/Features/Onboarding.php'
2660
- ),
2661
  'Automattic\\WooCommerce\\Admin\\Features\\TransientNotices' => array(
2662
- 'version' => '6.6.0.0',
2663
  'path' => $baseDir . '/src/Admin/Features/TransientNotices.php'
2664
  ),
2665
- 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Menu' => array(
2666
- 'version' => '6.6.0.0',
2667
- 'path' => $baseDir . '/src/Admin/Features/Navigation/Menu.php'
2668
- ),
2669
- 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\CoreMenu' => array(
2670
- 'version' => '6.6.0.0',
2671
- 'path' => $baseDir . '/src/Admin/Features/Navigation/CoreMenu.php'
2672
  ),
2673
- 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Init' => array(
2674
- 'version' => '6.6.0.0',
2675
- 'path' => $baseDir . '/src/Admin/Features/Navigation/Init.php'
2676
  ),
2677
- 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Favorites' => array(
2678
- 'version' => '6.6.0.0',
2679
- 'path' => $baseDir . '/src/Admin/Features/Navigation/Favorites.php'
2680
  ),
2681
- 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Screen' => array(
2682
- 'version' => '6.6.0.0',
2683
- 'path' => $baseDir . '/src/Admin/Features/Navigation/Screen.php'
2684
  ),
2685
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\DeprecatedExtendedTask' => array(
2686
- 'version' => '6.6.0.0',
2687
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/DeprecatedExtendedTask.php'
2688
  ),
2689
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\DeprecatedOptions' => array(
2690
- 'version' => '6.6.0.0',
2691
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/DeprecatedOptions.php'
2692
  ),
2693
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Appearance' => array(
2694
- 'version' => '6.6.0.0',
2695
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Appearance.php'
2696
  ),
2697
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\StoreCreation' => array(
2698
- 'version' => '6.6.0.0',
2699
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/StoreCreation.php'
2700
  ),
2701
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Products' => array(
2702
- 'version' => '6.6.0.0',
2703
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Products.php'
2704
  ),
 
 
 
 
 
 
 
 
2705
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\AdditionalPayments' => array(
2706
- 'version' => '6.6.0.0',
2707
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/AdditionalPayments.php'
2708
  ),
2709
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Payments' => array(
2710
- 'version' => '6.6.0.0',
2711
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Payments.php'
2712
  ),
2713
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Purchase' => array(
2714
- 'version' => '6.6.0.0',
2715
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Purchase.php'
2716
  ),
2717
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Tax' => array(
2718
- 'version' => '6.6.0.0',
2719
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Tax.php'
2720
  ),
2721
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Marketing' => array(
2722
- 'version' => '6.6.0.0',
2723
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Marketing.php'
2724
  ),
2725
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\WooCommercePayments' => array(
2726
- 'version' => '6.6.0.0',
2727
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/WooCommercePayments.php'
2728
  ),
2729
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\StoreDetails' => array(
2730
- 'version' => '6.6.0.0',
2731
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/StoreDetails.php'
2732
  ),
2733
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Shipping' => array(
2734
- 'version' => '6.6.0.0',
2735
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Shipping.php'
2736
- ),
2737
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Task' => array(
2738
- 'version' => '6.6.0.0',
2739
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Task.php'
2740
  ),
2741
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Init' => array(
2742
- 'version' => '6.6.0.0',
2743
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Init.php'
2744
- ),
2745
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskListSection' => array(
2746
- 'version' => '6.6.0.0',
2747
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskListSection.php'
2748
  ),
2749
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskLists' => array(
2750
- 'version' => '6.6.0.0',
2751
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskLists.php'
2752
  ),
2753
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskList' => array(
2754
- 'version' => '6.6.0.0',
2755
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskList.php'
2756
  ),
2757
- 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskTraits' => array(
2758
- 'version' => '6.6.0.0',
2759
- 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskTraits.php'
2760
  ),
2761
- 'Automattic\\WooCommerce\\Admin\\PluginsInstaller' => array(
2762
- 'version' => '6.6.0.0',
2763
- 'path' => $baseDir . '/src/Admin/PluginsInstaller.php'
2764
  ),
2765
- 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProvider' => array(
2766
- 'version' => '6.6.0.0',
2767
- 'path' => $baseDir . '/src/Admin/PluginsProvider/PluginsProvider.php'
2768
  ),
2769
- 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProviderInterface' => array(
2770
- 'version' => '6.6.0.0',
2771
- 'path' => $baseDir . '/src/Admin/PluginsProvider/PluginsProviderInterface.php'
2772
  ),
2773
  'Automattic\\WooCommerce\\Admin\\PageController' => array(
2774
- 'version' => '6.6.0.0',
2775
  'path' => $baseDir . '/src/Admin/PageController.php'
2776
  ),
2777
- 'Automattic\\WooCommerce\\Admin\\ReportCSVEmail' => array(
2778
- 'version' => '6.6.0.0',
2779
- 'path' => $baseDir . '/src/Admin/ReportCSVEmail.php'
2780
  ),
2781
  'Automattic\\WooCommerce\\Admin\\Schedulers\\SchedulerTraits' => array(
2782
- 'version' => '6.6.0.0',
2783
  'path' => $baseDir . '/src/Admin/Schedulers/SchedulerTraits.php'
2784
  ),
2785
- 'Automattic\\WooCommerce\\Admin\\DeprecatedClassFacade' => array(
2786
- 'version' => '6.6.0.0',
2787
- 'path' => $baseDir . '/src/Admin/DeprecatedClassFacade.php'
2788
  ),
2789
- 'Automattic\\WooCommerce\\Admin\\Loader' => array(
2790
- 'version' => '6.6.0.0',
2791
- 'path' => $baseDir . '/src/Admin/Loader.php'
2792
  ),
2793
- 'Automattic\\WooCommerce\\Admin\\Marketing\\InstalledExtensions' => array(
2794
- 'version' => '6.6.0.0',
2795
- 'path' => $baseDir . '/src/Admin/Marketing/InstalledExtensions.php'
2796
  ),
2797
- 'Automattic\\WooCommerce\\Admin\\ReportExporter' => array(
2798
- 'version' => '6.6.0.0',
2799
- 'path' => $baseDir . '/src/Admin/ReportExporter.php'
2800
  ),
2801
- 'Automattic\\WooCommerce\\Admin\\API\\PaymentGatewaySuggestions' => array(
2802
- 'version' => '6.6.0.0',
2803
- 'path' => $baseDir . '/src/Admin/API/PaymentGatewaySuggestions.php'
2804
  ),
2805
- 'Automattic\\WooCommerce\\Admin\\API\\ProductCategories' => array(
2806
- 'version' => '6.6.0.0',
2807
- 'path' => $baseDir . '/src/Admin/API/ProductCategories.php'
2808
  ),
2809
- 'Automattic\\WooCommerce\\Admin\\API\\OnboardingThemes' => array(
2810
- 'version' => '6.6.0.0',
2811
- 'path' => $baseDir . '/src/Admin/API/OnboardingThemes.php'
2812
  ),
2813
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Controller' => array(
2814
- 'version' => '6.6.0.0',
2815
- 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Controller.php'
2816
  ),
2817
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Query' => array(
2818
- 'version' => '6.6.0.0',
2819
- 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Query.php'
2820
  ),
2821
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\DataStore' => array(
2822
- 'version' => '6.6.0.0',
2823
- 'path' => $baseDir . '/src/Admin/API/Reports/Variations/DataStore.php'
2824
  ),
2825
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Controller' => array(
2826
- 'version' => '6.6.0.0',
2827
- 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Controller.php'
2828
  ),
2829
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Query' => array(
2830
- 'version' => '6.6.0.0',
2831
- 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Query.php'
2832
  ),
2833
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\DataStore' => array(
2834
- 'version' => '6.6.0.0',
2835
- 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/DataStore.php'
2836
  ),
2837
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Variations\\Stats\\Segmenter' => array(
2838
- 'version' => '6.6.0.0',
2839
- 'path' => $baseDir . '/src/Admin/API/Reports/Variations/Stats/Segmenter.php'
2840
  ),
2841
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\ExportableInterface' => array(
2842
- 'version' => '6.6.0.0',
2843
- 'path' => $baseDir . '/src/Admin/API/Reports/ExportableInterface.php'
2844
  ),
2845
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Controller' => array(
2846
- 'version' => '6.6.0.0',
2847
- 'path' => $baseDir . '/src/Admin/API/Reports/Controller.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2848
  ),
2849
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Import\\Controller' => array(
2850
- 'version' => '6.6.0.0',
2851
- 'path' => $baseDir . '/src/Admin/API/Reports/Import/Controller.php'
2852
  ),
2853
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Controller' => array(
2854
- 'version' => '6.6.0.0',
2855
- 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Controller.php'
2856
  ),
2857
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Query' => array(
2858
- 'version' => '6.6.0.0',
2859
- 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Query.php'
2860
  ),
2861
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\DataStore' => array(
2862
- 'version' => '6.6.0.0',
2863
  'path' => $baseDir . '/src/Admin/API/Reports/Customers/DataStore.php'
2864
  ),
2865
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Controller' => array(
2866
- 'version' => '6.6.0.0',
2867
- 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/Controller.php'
2868
- ),
2869
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Query' => array(
2870
- 'version' => '6.6.0.0',
2871
- 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/Query.php'
2872
  ),
2873
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\DataStore' => array(
2874
- 'version' => '6.6.0.0',
2875
  'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/DataStore.php'
2876
  ),
2877
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Controller' => array(
2878
- 'version' => '6.6.0.0',
2879
- 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Controller.php'
2880
  ),
2881
- 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Query' => array(
2882
-
14
  'version' => '1.25.0.0',
15
  'path' => $vendorDir . '/symfony/polyfill-php80/Php80.php'
16
  ),
17
+ 'Symfony\\Component\\CssSelector\\Parser\\ParserInterface' => array(
18
  'version' => '4.4.37.0',
19
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/ParserInterface.php'
20
  ),
21
+ 'Symfony\\Component\\CssSelector\\Parser\\Parser' => array(
22
  'version' => '4.4.37.0',
23
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Parser.php'
24
  ),
25
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerEscaping' => array(
26
  'version' => '4.4.37.0',
27
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerEscaping.php'
28
  ),
29
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\TokenizerPatterns' => array(
30
  'version' => '4.4.37.0',
31
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/TokenizerPatterns.php'
32
  ),
33
+ 'Symfony\\Component\\CssSelector\\Parser\\Tokenizer\\Tokenizer' => array(
34
  'version' => '4.4.37.0',
35
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Tokenizer/Tokenizer.php'
36
  ),
37
+ 'Symfony\\Component\\CssSelector\\Parser\\Reader' => array(
38
  'version' => '4.4.37.0',
39
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Reader.php'
40
  ),
41
+ 'Symfony\\Component\\CssSelector\\Parser\\TokenStream' => array(
42
  'version' => '4.4.37.0',
43
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/TokenStream.php'
44
  ),
45
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\HashParser' => array(
46
  'version' => '4.4.37.0',
47
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/HashParser.php'
48
  ),
49
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\EmptyStringParser' => array(
50
  'version' => '4.4.37.0',
51
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/EmptyStringParser.php'
52
  ),
53
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ElementParser' => array(
54
  'version' => '4.4.37.0',
55
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ElementParser.php'
56
  ),
57
+ 'Symfony\\Component\\CssSelector\\Parser\\Shortcut\\ClassParser' => array(
58
  'version' => '4.4.37.0',
59
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Shortcut/ClassParser.php'
60
  ),
61
+ 'Symfony\\Component\\CssSelector\\Parser\\Token' => array(
62
  'version' => '4.4.37.0',
63
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Token.php'
64
  ),
65
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\WhitespaceHandler' => array(
66
  'version' => '4.4.37.0',
67
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/WhitespaceHandler.php'
68
  ),
69
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\IdentifierHandler' => array(
70
  'version' => '4.4.37.0',
71
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/IdentifierHandler.php'
72
  ),
73
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HashHandler' => array(
74
  'version' => '4.4.37.0',
75
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/HashHandler.php'
76
  ),
77
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\CommentHandler' => array(
78
  'version' => '4.4.37.0',
79
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/CommentHandler.php'
80
  ),
81
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\StringHandler' => array(
82
  'version' => '4.4.37.0',
83
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/StringHandler.php'
84
  ),
85
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\HandlerInterface' => array(
86
  'version' => '4.4.37.0',
87
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/HandlerInterface.php'
88
  ),
89
+ 'Symfony\\Component\\CssSelector\\Parser\\Handler\\NumberHandler' => array(
90
  'version' => '4.4.37.0',
91
+ 'path' => $vendorDir . '/symfony/css-selector/Parser/Handler/NumberHandler.php'
92
  ),
93
+ 'Symfony\\Component\\CssSelector\\Node\\HashNode' => array(
94
  'version' => '4.4.37.0',
95
+ 'path' => $vendorDir . '/symfony/css-selector/Node/HashNode.php'
96
  ),
97
+ 'Symfony\\Component\\CssSelector\\Node\\AttributeNode' => array(
98
  'version' => '4.4.37.0',
99
+ 'path' => $vendorDir . '/symfony/css-selector/Node/AttributeNode.php'
100
  ),
101
+ 'Symfony\\Component\\CssSelector\\Node\\SelectorNode' => array(
102
  'version' => '4.4.37.0',
103
+ 'path' => $vendorDir . '/symfony/css-selector/Node/SelectorNode.php'
104
  ),
105
+ 'Symfony\\Component\\CssSelector\\Node\\ClassNode' => array(
106
  'version' => '4.4.37.0',
107
+ 'path' => $vendorDir . '/symfony/css-selector/Node/ClassNode.php'
108
  ),
109
+ 'Symfony\\Component\\CssSelector\\Node\\AbstractNode' => array(
110
  'version' => '4.4.37.0',
111
+ 'path' => $vendorDir . '/symfony/css-selector/Node/AbstractNode.php'
112
  ),
113
+ 'Symfony\\Component\\CssSelector\\Node\\ElementNode' => array(
114
  'version' => '4.4.37.0',
115
+ 'path' => $vendorDir . '/symfony/css-selector/Node/ElementNode.php'
116
  ),
117
+ 'Symfony\\Component\\CssSelector\\Node\\FunctionNode' => array(
118
  'version' => '4.4.37.0',
119
+ 'path' => $vendorDir . '/symfony/css-selector/Node/FunctionNode.php'
120
  ),
121
+ 'Symfony\\Component\\CssSelector\\Node\\PseudoNode' => array(
122
  'version' => '4.4.37.0',
123
+ 'path' => $vendorDir . '/symfony/css-selector/Node/PseudoNode.php'
124
  ),
125
+ 'Symfony\\Component\\CssSelector\\Node\\Specificity' => array(
126
  'version' => '4.4.37.0',
127
+ 'path' => $vendorDir . '/symfony/css-selector/Node/Specificity.php'
128
  ),
129
+ 'Symfony\\Component\\CssSelector\\Node\\NegationNode' => array(
130
  'version' => '4.4.37.0',
131
+ 'path' => $vendorDir . '/symfony/css-selector/Node/NegationNode.php'
132
  ),
133
+ 'Symfony\\Component\\CssSelector\\Node\\CombinedSelectorNode' => array(
134
  'version' => '4.4.37.0',
135
+ 'path' => $vendorDir . '/symfony/css-selector/Node/CombinedSelectorNode.php'
136
  ),
137
+ 'Symfony\\Component\\CssSelector\\Node\\NodeInterface' => array(
138
  'version' => '4.4.37.0',
139
+ 'path' => $vendorDir . '/symfony/css-selector/Node/NodeInterface.php'
140
  ),
141
+ 'Symfony\\Component\\CssSelector\\Exception\\ExpressionErrorException' => array(
142
  'version' => '4.4.37.0',
143
+ 'path' => $vendorDir . '/symfony/css-selector/Exception/ExpressionErrorException.php'
144
  ),
145
+ 'Symfony\\Component\\CssSelector\\Exception\\ParseException' => array(
146
  'version' => '4.4.37.0',
147
+ 'path' => $vendorDir . '/symfony/css-selector/Exception/ParseException.php'
148
  ),
149
+ 'Symfony\\Component\\CssSelector\\Exception\\ExceptionInterface' => array(
150
  'version' => '4.4.37.0',
151
+ 'path' => $vendorDir . '/symfony/css-selector/Exception/ExceptionInterface.php'
152
  ),
153
+ 'Symfony\\Component\\CssSelector\\Exception\\SyntaxErrorException' => array(
154
  'version' => '4.4.37.0',
155
+ 'path' => $vendorDir . '/symfony/css-selector/Exception/SyntaxErrorException.php'
156
  ),
157
+ 'Symfony\\Component\\CssSelector\\Exception\\InternalErrorException' => array(
158
  'version' => '4.4.37.0',
159
+ 'path' => $vendorDir . '/symfony/css-selector/Exception/InternalErrorException.php'
160
  ),
161
+ 'Symfony\\Component\\CssSelector\\CssSelectorConverter' => array(
162
  'version' => '4.4.37.0',
163
+ 'path' => $vendorDir . '/symfony/css-selector/CssSelectorConverter.php'
164
  ),
165
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\PseudoClassExtension' => array(
166
  'version' => '4.4.37.0',
167
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/PseudoClassExtension.php'
168
  ),
169
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AbstractExtension' => array(
170
  'version' => '4.4.37.0',
171
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/AbstractExtension.php'
172
  ),
173
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\FunctionExtension' => array(
174
  'version' => '4.4.37.0',
175
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/FunctionExtension.php'
176
  ),
177
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\HtmlExtension' => array(
178
  'version' => '4.4.37.0',
179
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/HtmlExtension.php'
180
  ),
181
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\AttributeMatchingExtension' => array(
182
  'version' => '4.4.37.0',
183
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/AttributeMatchingExtension.php'
184
  ),
185
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\ExtensionInterface' => array(
186
  'version' => '4.4.37.0',
187
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/ExtensionInterface.php'
188
  ),
189
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\NodeExtension' => array(
190
  'version' => '4.4.37.0',
191
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/NodeExtension.php'
192
  ),
193
+ 'Symfony\\Component\\CssSelector\\XPath\\Extension\\CombinationExtension' => array(
194
  'version' => '4.4.37.0',
195
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Extension/CombinationExtension.php'
196
  ),
197
+ 'Symfony\\Component\\CssSelector\\XPath\\Translator' => array(
198
  'version' => '4.4.37.0',
199
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/Translator.php'
200
  ),
201
+ 'Symfony\\Component\\CssSelector\\XPath\\XPathExpr' => array(
202
  'version' => '4.4.37.0',
203
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/XPathExpr.php'
204
  ),
205
+ 'Symfony\\Component\\CssSelector\\XPath\\TranslatorInterface' => array(
206
  'version' => '4.4.37.0',
207
+ 'path' => $vendorDir . '/symfony/css-selector/XPath/TranslatorInterface.php'
208
+ ),
209
+ 'Sabberworm\\CSS\\Renderable' => array(
210
+ 'version' => '8.4.0.0',
211
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Renderable.php'
212
  ),
213
  'Sabberworm\\CSS\\Parser' => array(
214
  'version' => '8.4.0.0',
215
  'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parser.php'
216
  ),
217
+ 'Sabberworm\\CSS\\OutputFormatter' => array(
218
  'version' => '8.4.0.0',
219
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/OutputFormatter.php'
220
  ),
221
+ 'Sabberworm\\CSS\\Parsing\\UnexpectedTokenException' => array(
222
  'version' => '8.4.0.0',
223
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/UnexpectedTokenException.php'
224
  ),
225
+ 'Sabberworm\\CSS\\Parsing\\OutputException' => array(
226
  'version' => '8.4.0.0',
227
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/OutputException.php'
228
  ),
229
+ 'Sabberworm\\CSS\\Parsing\\SourceException' => array(
230
  'version' => '8.4.0.0',
231
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/SourceException.php'
232
  ),
233
+ 'Sabberworm\\CSS\\Parsing\\ParserState' => array(
234
  'version' => '8.4.0.0',
235
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/ParserState.php'
236
  ),
237
+ 'Sabberworm\\CSS\\Parsing\\UnexpectedEOFException' => array(
238
  'version' => '8.4.0.0',
239
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Parsing/UnexpectedEOFException.php'
240
  ),
241
+ 'Sabberworm\\CSS\\OutputFormat' => array(
242
  'version' => '8.4.0.0',
243
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/OutputFormat.php'
244
  ),
245
+ 'Sabberworm\\CSS\\RuleSet\\DeclarationBlock' => array(
246
  'version' => '8.4.0.0',
247
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/RuleSet/DeclarationBlock.php'
248
  ),
249
+ 'Sabberworm\\CSS\\RuleSet\\RuleSet' => array(
250
  'version' => '8.4.0.0',
251
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/RuleSet/RuleSet.php'
252
  ),
253
+ 'Sabberworm\\CSS\\RuleSet\\AtRuleSet' => array(
254
  'version' => '8.4.0.0',
255
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/RuleSet/AtRuleSet.php'
256
  ),
257
+ 'Sabberworm\\CSS\\Comment\\Comment' => array(
258
  'version' => '8.4.0.0',
259
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Comment/Comment.php'
260
  ),
261
+ 'Sabberworm\\CSS\\Comment\\Commentable' => array(
262
  'version' => '8.4.0.0',
263
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Comment/Commentable.php'
264
  ),
265
+ 'Sabberworm\\CSS\\CSSList\\CSSBlockList' => array(
266
  'version' => '8.4.0.0',
267
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/CSSBlockList.php'
268
  ),
269
+ 'Sabberworm\\CSS\\CSSList\\KeyFrame' => array(
270
  'version' => '8.4.0.0',
271
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/KeyFrame.php'
272
  ),
273
+ 'Sabberworm\\CSS\\CSSList\\Document' => array(
274
  'version' => '8.4.0.0',
275
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/Document.php'
276
  ),
277
+ 'Sabberworm\\CSS\\CSSList\\CSSList' => array(
278
  'version' => '8.4.0.0',
279
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/CSSList.php'
280
  ),
281
+ 'Sabberworm\\CSS\\CSSList\\AtRuleBlockList' => array(
282
  'version' => '8.4.0.0',
283
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/CSSList/AtRuleBlockList.php'
284
  ),
285
+ 'Sabberworm\\CSS\\Property\\CSSNamespace' => array(
286
  'version' => '8.4.0.0',
287
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/CSSNamespace.php'
288
  ),
289
+ 'Sabberworm\\CSS\\Property\\KeyframeSelector' => array(
290
  'version' => '8.4.0.0',
291
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/KeyframeSelector.php'
292
  ),
293
+ 'Sabberworm\\CSS\\Property\\Charset' => array(
294
  'version' => '8.4.0.0',
295
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/Charset.php'
296
  ),
297
+ 'Sabberworm\\CSS\\Property\\AtRule' => array(
298
  'version' => '8.4.0.0',
299
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/AtRule.php'
300
  ),
301
+ 'Sabberworm\\CSS\\Property\\Selector' => array(
302
  'version' => '8.4.0.0',
303
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/Selector.php'
304
  ),
305
+ 'Sabberworm\\CSS\\Property\\Import' => array(
306
  'version' => '8.4.0.0',
307
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Property/Import.php'
308
  ),
309
+ 'Sabberworm\\CSS\\Settings' => array(
310
  'version' => '8.4.0.0',
311
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Settings.php'
312
  ),
313
+ 'Sabberworm\\CSS\\Rule\\Rule' => array(
314
  'version' => '8.4.0.0',
315
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Rule/Rule.php'
316
  ),
317
+ 'Sabberworm\\CSS\\Value\\ValueList' => array(
318
  'version' => '8.4.0.0',
319
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/ValueList.php'
320
  ),
321
+ 'Sabberworm\\CSS\\Value\\CalcFunction' => array(
322
  'version' => '8.4.0.0',
323
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CalcFunction.php'
324
  ),
325
+ 'Sabberworm\\CSS\\Value\\Color' => array(
326
  'version' => '8.4.0.0',
327
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/Color.php'
328
  ),
329
+ 'Sabberworm\\CSS\\Value\\RuleValueList' => array(
330
  'version' => '8.4.0.0',
331
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/RuleValueList.php'
332
  ),
333
+ 'Sabberworm\\CSS\\Value\\Value' => array(
334
  'version' => '8.4.0.0',
335
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/Value.php'
336
  ),
337
+ 'Sabberworm\\CSS\\Value\\CSSString' => array(
338
  'version' => '8.4.0.0',
339
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CSSString.php'
340
  ),
341
+ 'Sabberworm\\CSS\\Value\\Size' => array(
342
  'version' => '8.4.0.0',
343
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/Size.php'
344
  ),
345
+ 'Sabberworm\\CSS\\Value\\PrimitiveValue' => array(
346
  'version' => '8.4.0.0',
347
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/PrimitiveValue.php'
348
  ),
349
+ 'Sabberworm\\CSS\\Value\\CalcRuleValueList' => array(
350
  'version' => '8.4.0.0',
351
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CalcRuleValueList.php'
352
  ),
353
+ 'Sabberworm\\CSS\\Value\\URL' => array(
354
  'version' => '8.4.0.0',
355
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/URL.php'
356
  ),
357
+ 'Sabberworm\\CSS\\Value\\CSSFunction' => array(
358
  'version' => '8.4.0.0',
359
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/CSSFunction.php'
360
  ),
361
+ 'Sabberworm\\CSS\\Value\\LineName' => array(
362
  'version' => '8.4.0.0',
363
+ 'path' => $vendorDir . '/sabberworm/php-css-parser/src/Value/LineName.php'
364
  ),
365
+ 'Psr\\Container\\ContainerExceptionInterface' => array(
366
+ 'version' => '1.0.0.0',
367
+ 'path' => $vendorDir . '/psr/container/src/ContainerExceptionInterface.php'
368
  ),
369
  'Psr\\Container\\ContainerInterface' => array(
370
  'version' => '1.0.0.0',
374
  'version' => '1.0.0.0',
375
  'path' => $vendorDir . '/psr/container/src/NotFoundExceptionInterface.php'
376
  ),
377
+ 'Pelago\\Emogrifier\\Utilities\\CssConcatenator' => array(
378
+ 'version' => '6.0.0.0',
379
+ 'path' => $vendorDir . '/pelago/emogrifier/src/Utilities/CssConcatenator.php'
380
  ),
381
+ 'Pelago\\Emogrifier\\Utilities\\ArrayIntersector' => array(
382
  'version' => '6.0.0.0',
383
+ 'path' => $vendorDir . '/pelago/emogrifier/src/Utilities/ArrayIntersector.php'
384
  ),
385
+ 'Pelago\\Emogrifier\\HtmlProcessor\\HtmlPruner' => array(
386
  'version' => '6.0.0.0',
387
+ 'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/HtmlPruner.php'
388
  ),
389
  'Pelago\\Emogrifier\\HtmlProcessor\\HtmlNormalizer' => array(
390
  'version' => '6.0.0.0',
391
  'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/HtmlNormalizer.php'
392
  ),
 
 
 
 
393
  'Pelago\\Emogrifier\\HtmlProcessor\\CssToAttributeConverter' => array(
394
  'version' => '6.0.0.0',
395
  'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/CssToAttributeConverter.php'
398
  'version' => '6.0.0.0',
399
  'path' => $vendorDir . '/pelago/emogrifier/src/HtmlProcessor/AbstractHtmlProcessor.php'
400
  ),
401
+ 'Pelago\\Emogrifier\\Css\\StyleRule' => array(
 
 
 
 
402
  'version' => '6.0.0.0',
403
+ 'path' => $vendorDir . '/pelago/emogrifier/src/Css/StyleRule.php'
404
  ),
405
  'Pelago\\Emogrifier\\Css\\CssDocument' => array(
406
  'version' => '6.0.0.0',
407
  'path' => $vendorDir . '/pelago/emogrifier/src/Css/CssDocument.php'
408
  ),
409
+ 'Pelago\\Emogrifier\\Caching\\SimpleStringCache' => array(
410
  'version' => '6.0.0.0',
411
+ 'path' => $vendorDir . '/pelago/emogrifier/src/Caching/SimpleStringCache.php'
412
  ),
413
+ 'Pelago\\Emogrifier\\CssInliner' => array(
414
+ 'version' => '6.0.0.0',
415
+ 'path' => $vendorDir . '/pelago/emogrifier/src/CssInliner.php'
416
  ),
417
  'MaxMind\\Db\\Reader\\InvalidDatabaseException' => array(
418
  'version' => '1.11.0.0',
419
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'
420
  ),
 
 
 
 
421
  'MaxMind\\Db\\Reader\\Decoder' => array(
422
  'version' => '1.11.0.0',
423
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'
424
  ),
425
+ 'MaxMind\\Db\\Reader\\Util' => array(
426
+ 'version' => '1.11.0.0',
427
+ 'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'
428
+ ),
429
+ 'MaxMind\\Db\\Reader\\Metadata' => array(
430
+ 'version' => '1.11.0.0',
431
+ 'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'
432
+ ),
433
  'MaxMind\\Db\\Reader' => array(
434
  'version' => '1.11.0.0',
435
  'path' => $vendorDir . '/maxmind-db/reader/src/MaxMind/Db/Reader.php'
436
  ),
437
+ 'Composer\\Installers\\OctoberInstaller' => array(
438
  'version' => '1.12.0.0',
439
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OctoberInstaller.php'
440
  ),
441
+ 'Composer\\Installers\\PortoInstaller' => array(
442
  'version' => '1.12.0.0',
443
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PortoInstaller.php'
444
  ),
445
+ 'Composer\\Installers\\PuppetInstaller' => array(
446
  'version' => '1.12.0.0',
447
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PuppetInstaller.php'
448
  ),
449
+ 'Composer\\Installers\\WHMCSInstaller' => array(
450
  'version' => '1.12.0.0',
451
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WHMCSInstaller.php'
452
  ),
453
+ 'Composer\\Installers\\ChefInstaller' => array(
454
  'version' => '1.12.0.0',
455
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ChefInstaller.php'
456
  ),
457
+ 'Composer\\Installers\\Plugin' => array(
458
  'version' => '1.12.0.0',
459
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Plugin.php'
460
  ),
461
+ 'Composer\\Installers\\ClanCatsFrameworkInstaller' => array(
462
  'version' => '1.12.0.0',
463
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ClanCatsFrameworkInstaller.php'
464
  ),
465
+ 'Composer\\Installers\\MODULEWorkInstaller' => array(
466
  'version' => '1.12.0.0',
467
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODULEWorkInstaller.php'
468
  ),
469
+ 'Composer\\Installers\\LanManagementSystemInstaller' => array(
470
  'version' => '1.12.0.0',
471
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LanManagementSystemInstaller.php'
472
  ),
473
+ 'Composer\\Installers\\MODXEvoInstaller' => array(
474
  'version' => '1.12.0.0',
475
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MODXEvoInstaller.php'
476
  ),
477
+ 'Composer\\Installers\\LaravelInstaller' => array(
478
  'version' => '1.12.0.0',
479
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LaravelInstaller.php'
480
  ),
481
+ 'Composer\\Installers\\ExpressionEngineInstaller' => array(
482
  'version' => '1.12.0.0',
483
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ExpressionEngineInstaller.php'
484
  ),
485
+ 'Composer\\Installers\\Installer' => array(
486
  'version' => '1.12.0.0',
487
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Installer.php'
488
  ),
489
+ 'Composer\\Installers\\YawikInstaller' => array(
490
  'version' => '1.12.0.0',
491
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/YawikInstaller.php'
492
  ),
493
  'Composer\\Installers\\AglInstaller' => array(
494
  'version' => '1.12.0.0',
495
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AglInstaller.php'
496
  ),
497
+ 'Composer\\Installers\\Redaxo5Installer' => array(
 
 
 
 
498
  'version' => '1.12.0.0',
499
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Redaxo5Installer.php'
500
  ),
501
+ 'Composer\\Installers\\CroogoInstaller' => array(
502
  'version' => '1.12.0.0',
503
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CroogoInstaller.php'
504
  ),
505
+ 'Composer\\Installers\\ImageCMSInstaller' => array(
506
  'version' => '1.12.0.0',
507
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ImageCMSInstaller.php'
508
  ),
509
+ 'Composer\\Installers\\TastyIgniterInstaller' => array(
510
  'version' => '1.12.0.0',
511
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TastyIgniterInstaller.php'
512
  ),
513
+ 'Composer\\Installers\\CockpitInstaller' => array(
514
  'version' => '1.12.0.0',
515
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CockpitInstaller.php'
516
  ),
517
+ 'Composer\\Installers\\PiwikInstaller' => array(
518
  'version' => '1.12.0.0',
519
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PiwikInstaller.php'
520
  ),
521
+ 'Composer\\Installers\\TaoInstaller' => array(
522
  'version' => '1.12.0.0',
523
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TaoInstaller.php'
524
  ),
525
+ 'Composer\\Installers\\WordPressInstaller' => array(
526
  'version' => '1.12.0.0',
527
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WordPressInstaller.php'
528
  ),
529
+ 'Composer\\Installers\\PhpBBInstaller' => array(
530
  'version' => '1.12.0.0',
531
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhpBBInstaller.php'
532
  ),
533
  'Composer\\Installers\\AnnotateCmsInstaller' => array(
534
  'version' => '1.12.0.0',
535
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AnnotateCmsInstaller.php'
536
  ),
 
 
 
 
 
 
 
 
537
  'Composer\\Installers\\MakoInstaller' => array(
538
  'version' => '1.12.0.0',
539
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MakoInstaller.php'
540
  ),
541
+ 'Composer\\Installers\\PimcoreInstaller' => array(
542
  'version' => '1.12.0.0',
543
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PimcoreInstaller.php'
544
  ),
545
+ 'Composer\\Installers\\RadPHPInstaller' => array(
546
  'version' => '1.12.0.0',
547
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RadPHPInstaller.php'
548
  ),
549
+ 'Composer\\Installers\\LithiumInstaller' => array(
550
  'version' => '1.12.0.0',
551
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LithiumInstaller.php'
552
  ),
553
+ 'Composer\\Installers\\MantisBTInstaller' => array(
554
  'version' => '1.12.0.0',
555
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MantisBTInstaller.php'
556
  ),
557
+ 'Composer\\Installers\\ItopInstaller' => array(
558
  'version' => '1.12.0.0',
559
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ItopInstaller.php'
560
+ ),
561
+ 'Composer\\Installers\\SyDESInstaller' => array(
562
+ 'version' => '1.12.0.0',
563
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyDESInstaller.php'
564
  ),
565
  'Composer\\Installers\\CodeIgniterInstaller' => array(
566
  'version' => '1.12.0.0',
567
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CodeIgniterInstaller.php'
568
  ),
569
+ 'Composer\\Installers\\WolfCMSInstaller' => array(
570
  'version' => '1.12.0.0',
571
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WolfCMSInstaller.php'
572
  ),
573
+ 'Composer\\Installers\\MagentoInstaller' => array(
574
  'version' => '1.12.0.0',
575
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MagentoInstaller.php'
576
  ),
577
+ 'Composer\\Installers\\TuskInstaller' => array(
578
  'version' => '1.12.0.0',
579
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TuskInstaller.php'
580
  ),
581
+ 'Composer\\Installers\\MoodleInstaller' => array(
582
  'version' => '1.12.0.0',
583
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MoodleInstaller.php'
584
  ),
585
+ 'Composer\\Installers\\MayaInstaller' => array(
586
  'version' => '1.12.0.0',
587
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MayaInstaller.php'
588
  ),
589
  'Composer\\Installers\\WinterInstaller' => array(
590
  'version' => '1.12.0.0',
591
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/WinterInstaller.php'
592
  ),
593
+ 'Composer\\Installers\\CakePHPInstaller' => array(
594
  'version' => '1.12.0.0',
595
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CakePHPInstaller.php'
596
  ),
597
+ 'Composer\\Installers\\DecibelInstaller' => array(
598
  'version' => '1.12.0.0',
599
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DecibelInstaller.php'
600
  ),
601
+ 'Composer\\Installers\\PantheonInstaller' => array(
602
  'version' => '1.12.0.0',
603
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PantheonInstaller.php'
604
  ),
605
  'Composer\\Installers\\DframeInstaller' => array(
606
  'version' => '1.12.0.0',
607
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DframeInstaller.php'
608
  ),
609
+ 'Composer\\Installers\\StarbugInstaller' => array(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
610
  'version' => '1.12.0.0',
611
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/StarbugInstaller.php'
612
  ),
613
+ 'Composer\\Installers\\VgmcpInstaller' => array(
614
  'version' => '1.12.0.0',
615
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VgmcpInstaller.php'
616
  ),
617
+ 'Composer\\Installers\\OntoWikiInstaller' => array(
618
  'version' => '1.12.0.0',
619
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OntoWikiInstaller.php'
620
  ),
621
+ 'Composer\\Installers\\ProcessWireInstaller' => array(
622
  'version' => '1.12.0.0',
623
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ProcessWireInstaller.php'
624
  ),
625
+ 'Composer\\Installers\\SMFInstaller' => array(
626
  'version' => '1.12.0.0',
627
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SMFInstaller.php'
628
  ),
629
+ 'Composer\\Installers\\SyliusInstaller' => array(
630
  'version' => '1.12.0.0',
631
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SyliusInstaller.php'
632
  ),
633
+ 'Composer\\Installers\\PPIInstaller' => array(
634
  'version' => '1.12.0.0',
635
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PPIInstaller.php'
636
  ),
637
+ 'Composer\\Installers\\PlentymarketsInstaller' => array(
638
  'version' => '1.12.0.0',
639
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PlentymarketsInstaller.php'
640
  ),
641
+ 'Composer\\Installers\\ShopwareInstaller' => array(
642
  'version' => '1.12.0.0',
643
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ShopwareInstaller.php'
644
  ),
645
+ 'Composer\\Installers\\PrestashopInstaller' => array(
646
  'version' => '1.12.0.0',
647
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PrestashopInstaller.php'
648
  ),
649
+ 'Composer\\Installers\\ZendInstaller' => array(
650
  'version' => '1.12.0.0',
651
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZendInstaller.php'
652
  ),
653
+ 'Composer\\Installers\\KirbyInstaller' => array(
654
  'version' => '1.12.0.0',
655
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KirbyInstaller.php'
656
  ),
657
+ 'Composer\\Installers\\FuelInstaller' => array(
658
  'version' => '1.12.0.0',
659
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelInstaller.php'
660
  ),
661
+ 'Composer\\Installers\\KanboardInstaller' => array(
662
  'version' => '1.12.0.0',
663
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KanboardInstaller.php'
664
  ),
665
+ 'Composer\\Installers\\MajimaInstaller' => array(
666
  'version' => '1.12.0.0',
667
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MajimaInstaller.php'
668
  ),
669
+ 'Composer\\Installers\\SilverStripeInstaller' => array(
670
  'version' => '1.12.0.0',
671
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SilverStripeInstaller.php'
672
  ),
673
+ 'Composer\\Installers\\HuradInstaller' => array(
674
  'version' => '1.12.0.0',
675
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/HuradInstaller.php'
676
  ),
677
+ 'Composer\\Installers\\MauticInstaller' => array(
678
  'version' => '1.12.0.0',
679
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MauticInstaller.php'
680
  ),
681
  'Composer\\Installers\\VanillaInstaller' => array(
682
  'version' => '1.12.0.0',
683
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/VanillaInstaller.php'
684
  ),
685
+ 'Composer\\Installers\\EzPlatformInstaller' => array(
686
  'version' => '1.12.0.0',
687
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EzPlatformInstaller.php'
688
  ),
689
+ 'Composer\\Installers\\MediaWikiInstaller' => array(
690
  'version' => '1.12.0.0',
691
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MediaWikiInstaller.php'
692
  ),
693
+ 'Composer\\Installers\\AimeosInstaller' => array(
694
  'version' => '1.12.0.0',
695
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AimeosInstaller.php'
696
  ),
697
+ 'Composer\\Installers\\DokuWikiInstaller' => array(
698
  'version' => '1.12.0.0',
699
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DokuWikiInstaller.php'
700
  ),
701
  'Composer\\Installers\\UserFrostingInstaller' => array(
702
  'version' => '1.12.0.0',
703
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/UserFrostingInstaller.php'
704
  ),
705
+ 'Composer\\Installers\\OxidInstaller' => array(
706
  'version' => '1.12.0.0',
707
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OxidInstaller.php'
708
  ),
709
+ 'Composer\\Installers\\ReIndexInstaller' => array(
710
  'version' => '1.12.0.0',
711
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ReIndexInstaller.php'
712
+ ),
713
+ 'Composer\\Installers\\MicroweberInstaller' => array(
714
+ 'version' => '1.12.0.0',
715
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MicroweberInstaller.php'
716
  ),
717
  'Composer\\Installers\\AsgardInstaller' => array(
718
  'version' => '1.12.0.0',
719
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AsgardInstaller.php'
720
  ),
721
+ 'Composer\\Installers\\PhiftyInstaller' => array(
722
  'version' => '1.12.0.0',
723
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PhiftyInstaller.php'
724
+ ),
725
+ 'Composer\\Installers\\OsclassInstaller' => array(
726
+ 'version' => '1.12.0.0',
727
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/OsclassInstaller.php'
728
  ),
729
  'Composer\\Installers\\SiteDirectInstaller' => array(
730
  'version' => '1.12.0.0',
731
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/SiteDirectInstaller.php'
732
  ),
733
+ 'Composer\\Installers\\KnownInstaller' => array(
734
  'version' => '1.12.0.0',
735
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KnownInstaller.php'
736
  ),
737
+ 'Composer\\Installers\\BitrixInstaller' => array(
738
  'version' => '1.12.0.0',
739
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BitrixInstaller.php'
740
  ),
741
+ 'Composer\\Installers\\DolibarrInstaller' => array(
742
  'version' => '1.12.0.0',
743
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DolibarrInstaller.php'
744
  ),
745
+ 'Composer\\Installers\\MiaoxingInstaller' => array(
746
  'version' => '1.12.0.0',
747
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/MiaoxingInstaller.php'
748
  ),
749
+ 'Composer\\Installers\\ElggInstaller' => array(
750
  'version' => '1.12.0.0',
751
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ElggInstaller.php'
752
  ),
753
  'Composer\\Installers\\TheliaInstaller' => array(
754
  'version' => '1.12.0.0',
755
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TheliaInstaller.php'
756
  ),
757
+ 'Composer\\Installers\\TYPO3CmsInstaller' => array(
758
  'version' => '1.12.0.0',
759
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3CmsInstaller.php'
760
  ),
761
+ 'Composer\\Installers\\Concrete5Installer' => array(
762
  'version' => '1.12.0.0',
763
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Concrete5Installer.php'
764
  ),
765
+ 'Composer\\Installers\\CraftInstaller' => array(
766
  'version' => '1.12.0.0',
767
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CraftInstaller.php'
768
  ),
769
+ 'Composer\\Installers\\FuelphpInstaller' => array(
770
  'version' => '1.12.0.0',
771
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/FuelphpInstaller.php'
772
  ),
773
+ 'Composer\\Installers\\PxcmsInstaller' => array(
774
  'version' => '1.12.0.0',
775
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/PxcmsInstaller.php'
776
  ),
777
+ 'Composer\\Installers\\JoomlaInstaller' => array(
778
  'version' => '1.12.0.0',
779
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/JoomlaInstaller.php'
780
  ),
781
+ 'Composer\\Installers\\ZikulaInstaller' => array(
782
  'version' => '1.12.0.0',
783
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ZikulaInstaller.php'
784
  ),
785
+ 'Composer\\Installers\\KodiCMSInstaller' => array(
786
  'version' => '1.12.0.0',
787
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KodiCMSInstaller.php'
788
  ),
789
+ 'Composer\\Installers\\ModxInstaller' => array(
790
  'version' => '1.12.0.0',
791
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/ModxInstaller.php'
792
  ),
793
+ 'Composer\\Installers\\TYPO3FlowInstaller' => array(
794
  'version' => '1.12.0.0',
795
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/TYPO3FlowInstaller.php'
796
  ),
797
+ 'Composer\\Installers\\RedaxoInstaller' => array(
798
  'version' => '1.12.0.0',
799
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RedaxoInstaller.php'
800
  ),
801
+ 'Composer\\Installers\\EliasisInstaller' => array(
802
  'version' => '1.12.0.0',
803
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/EliasisInstaller.php'
804
  ),
805
+ 'Composer\\Installers\\LavaLiteInstaller' => array(
806
  'version' => '1.12.0.0',
807
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/LavaLiteInstaller.php'
808
  ),
809
+ 'Composer\\Installers\\BonefishInstaller' => array(
810
  'version' => '1.12.0.0',
811
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BonefishInstaller.php'
812
  ),
813
+ 'Composer\\Installers\\GravInstaller' => array(
814
  'version' => '1.12.0.0',
815
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/GravInstaller.php'
816
  ),
817
  'Composer\\Installers\\BaseInstaller' => array(
818
  'version' => '1.12.0.0',
819
  'path' => $vendorDir . '/composer/installers/src/Composer/Installers/BaseInstaller.php'
820
  ),
821
+ 'Composer\\Installers\\AttogramInstaller' => array(
822
  'version' => '1.12.0.0',
823
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/AttogramInstaller.php'
824
  ),
825
+ 'Composer\\Installers\\DrupalInstaller' => array(
826
+ 'version' => '1.12.0.0',
827
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/DrupalInstaller.php'
828
  ),
829
+ 'Composer\\Installers\\CiviCrmInstaller' => array(
830
+ 'version' => '1.12.0.0',
831
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/CiviCrmInstaller.php'
832
  ),
833
+ 'Composer\\Installers\\Symfony1Installer' => array(
834
+ 'version' => '1.12.0.0',
835
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/Symfony1Installer.php'
836
+ ),
837
+ 'Composer\\Installers\\RoundcubeInstaller' => array(
838
+ 'version' => '1.12.0.0',
839
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/RoundcubeInstaller.php'
840
+ ),
841
+ 'Composer\\Installers\\KohanaInstaller' => array(
842
+ 'version' => '1.12.0.0',
843
+ 'path' => $vendorDir . '/composer/installers/src/Composer/Installers/KohanaInstaller.php'
844
+ ),
845
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverTrait' => array(
846
+ 'version' => '6.6.1.0',
847
+ 'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverTrait.php'
848
+ ),
849
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ArgumentResolverInterface' => array(
850
+ 'version' => '6.6.1.0',
851
+ 'path' => $baseDir . '/lib/packages/League/Container/Argument/ArgumentResolverInterface.php'
852
+ ),
853
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameWithOptionalValue' => array(
854
+ 'version' => '6.6.1.0',
855
+ 'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameWithOptionalValue.php'
856
+ ),
857
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgumentInterface' => array(
858
+ 'version' => '6.6.1.0',
859
+ 'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgumentInterface.php'
860
+ ),
861
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassName' => array(
862
+ 'version' => '6.6.1.0',
863
+ 'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassName.php'
864
+ ),
865
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\ClassNameInterface' => array(
866
+ 'version' => '6.6.1.0',
867
+ 'path' => $baseDir . '/lib/packages/League/Container/Argument/ClassNameInterface.php'
868
+ ),
869
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Argument\\RawArgument' => array(
870
+ 'version' => '6.6.1.0',
871
+ 'path' => $baseDir . '/lib/packages/League/Container/Argument/RawArgument.php'
872
  ),
873
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ReflectionContainer' => array(
874
+ 'version' => '6.6.1.0',
875
  'path' => $baseDir . '/lib/packages/League/Container/ReflectionContainer.php'
876
  ),
877
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Container' => array(
878
+ 'version' => '6.6.1.0',
879
  'path' => $baseDir . '/lib/packages/League/Container/Container.php'
880
  ),
881
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\ContainerException' => array(
882
+ 'version' => '6.6.1.0',
883
+ 'path' => $baseDir . '/lib/packages/League/Container/Exception/ContainerException.php'
884
  ),
885
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Exception\\NotFoundException' => array(
886
+ 'version' => '6.6.1.0',
887
+ 'path' => $baseDir . '/lib/packages/League/Container/Exception/NotFoundException.php'
888
  ),
889
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareTrait' => array(
890
+ 'version' => '6.6.1.0',
891
+ 'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareTrait.php'
892
  ),
893
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregateInterface' => array(
894
+ 'version' => '6.6.1.0',
895
  'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregateInterface.php'
896
  ),
897
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionInterface' => array(
898
+ 'version' => '6.6.1.0',
899
+ 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionInterface.php'
900
  ),
901
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\DefinitionAggregate' => array(
902
+ 'version' => '6.6.1.0',
903
+ 'path' => $baseDir . '/lib/packages/League/Container/Definition/DefinitionAggregate.php'
904
  ),
905
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Definition\\Definition' => array(
906
+ 'version' => '6.6.1.0',
907
+ 'path' => $baseDir . '/lib/packages/League/Container/Definition/Definition.php'
908
  ),
909
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\BootableServiceProviderInterface' => array(
910
+ 'version' => '6.6.1.0',
911
+ 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/BootableServiceProviderInterface.php'
912
  ),
913
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\AbstractServiceProvider' => array(
914
+ 'version' => '6.6.1.0',
915
+ 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/AbstractServiceProvider.php'
916
  ),
917
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderInterface' => array(
918
+ 'version' => '6.6.1.0',
919
+ 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderInterface.php'
920
  ),
921
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregate' => array(
922
+ 'version' => '6.6.1.0',
923
+ 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregate.php'
924
  ),
925
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\ServiceProvider\\ServiceProviderAggregateInterface' => array(
926
+ 'version' => '6.6.1.0',
927
+ 'path' => $baseDir . '/lib/packages/League/Container/ServiceProvider/ServiceProviderAggregateInterface.php'
928
  ),
929
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorInterface' => array(
930
+ 'version' => '6.6.1.0',
931
+ 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorInterface.php'
932
  ),
933
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregateInterface' => array(
934
+ 'version' => '6.6.1.0',
935
+ 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregateInterface.php'
936
  ),
937
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\Inflector' => array(
938
+ 'version' => '6.6.1.0',
939
+ 'path' => $baseDir . '/lib/packages/League/Container/Inflector/Inflector.php'
940
+ ),
941
+ 'Automattic\\WooCommerce\\Vendor\\League\\Container\\Inflector\\InflectorAggregate' => array(
942
+ 'version' => '6.6.1.0',
943
+ 'path' => $baseDir . '/lib/packages/League/Container/Inflector/InflectorAggregate.php'
944
  ),
945
  'Automattic\\WooCommerce\\Vendor\\League\\Container\\ContainerAwareInterface' => array(
946
+ 'version' => '6.6.1.0',
947
  'path' => $baseDir . '/lib/packages/League/Container/ContainerAwareInterface.php'
948
  ),
949
+ 'Automattic\\WooCommerce\\Tests\\Utilities\\ArrayUtilTest' => array(
950
+ 'version' => '6.6.1.0',
951
+ 'path' => $baseDir . '/tests/php/src/Utilities/ArrayUtilTest.php'
 
 
 
 
952
  ),
953
+ 'Automattic\\WooCommerce\\Tests\\Utilities\\StringUtilTest' => array(
954
+ 'version' => '6.6.1.0',
955
+ 'path' => $baseDir . '/tests/php/src/Utilities/StringUtilTest.php'
956
  ),
957
+ 'Automattic\\WooCommerce\\Tests\\Utilities\\NumberUtilTest' => array(
958
+ 'version' => '6.6.1.0',
959
+ 'path' => $baseDir . '/tests/php/src/Utilities/NumberUtilTest.php'
960
  ),
961
+ 'Automattic\\WooCommerce\\Tests\\Proxies\\LegacyProxyTest' => array(
962
+ 'version' => '6.6.1.0',
963
+ 'path' => $baseDir . '/tests/php/src/Proxies/LegacyProxyTest.php'
964
  ),
965
  'Automattic\\WooCommerce\\Tests\\Proxies\\ExampleClasses\\ClassThatDependsOnLegacyCode' => array(
966
+ 'version' => '6.6.1.0',
967
  'path' => $baseDir . '/tests/php/src/Proxies/ExampleClasses/ClassThatDependsOnLegacyCode.php'
968
  ),
 
 
 
 
969
  'Automattic\\WooCommerce\\Tests\\Proxies\\ClassThatDependsOnLegacyCodeTest' => array(
970
+ 'version' => '6.6.1.0',
971
  'path' => $baseDir . '/tests/php/src/Proxies/ClassThatDependsOnLegacyCodeTest.php'
972
  ),
973
+ 'Automattic\\WooCommerce\\Tests\\Proxies\\MockableLegacyProxyTest' => array(
974
+ 'version' => '6.6.1.0',
975
+ 'path' => $baseDir . '/tests/php/src/Proxies/MockableLegacyProxyTest.php'
976
  ),
977
+ 'Automattic\\WooCommerce\\Tests\\Internal\\Utilities\\URLTest' => array(
978
+ 'version' => '6.6.1.0',
979
+ 'path' => $baseDir . '/tests/php/src/Internal/Utilities/URLTest.php'
980
  ),
981
  'Automattic\\WooCommerce\\Tests\\Internal\\WCCom\\ConnectionHelperTest' => array(
982
+ 'version' => '6.6.1.0',
983
  'path' => $baseDir . '/tests/php/src/Internal/WCCom/ConnectionHelperTest.php'
984
  ),
985
+ 'Automattic\\WooCommerce\\Tests\\Internal\\AssignDefaultCategoryTest' => array(
986
+ 'version' => '6.6.1.0',
987
+ 'path' => $baseDir . '/tests/php/src/Internal/AssignDefaultCategoryTest.php'
988
  ),
989
+ 'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\DataRegeneratorTest' => array(
990
+ 'version' => '6.6.1.0',
991
+ 'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/DataRegeneratorTest.php'
992
  ),
993
+ 'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\LookupDataStoreTest' => array(
994
+ 'version' => '6.6.1.0',
995
+ 'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/LookupDataStoreTest.php'
996
  ),
997
+ 'Automattic\\WooCommerce\\Tests\\Internal\\ProductAttributesLookup\\FiltererTest' => array(
998
+ 'version' => '6.6.1.0',
999
+ 'path' => $baseDir . '/tests/php/src/Internal/ProductAttributesLookup/FiltererTest.php'
1000
  ),
1001
+ 'Automattic\\WooCommerce\\Tests\\Internal\\ProductDownloads\\RegisterTest' => array(
1002
+ 'version' => '6.6.1.0',
1003
+ 'path' => $baseDir . '/tests/php/src/Internal/ProductDownloads/ApprovedDirectories/RegisterTest.php'
1004
  ),
1005
+ 'Automattic\\WooCommerce\\Tests\\Internal\\ProductDownloads\\SynchronizeTest' => array(
1006
+ 'version' => '6.6.1.0',
1007
+ 'path' => $baseDir . '/tests/php/src/Internal/ProductDownloads/ApprovedDirectories/SynchronizeTest.php'
1008
  ),
1009
+ 'Automattic\\WooCommerce\\Tests\\Internal\\RestApiUtilTest' => array(
1010
+ 'version' => '6.6.1.0',
1011
+ 'path' => $baseDir . '/tests/php/src/Internal/RestApiUtilTest.php'
1012
  ),
1013
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DownloadPermissionsAdjusterTest' => array(
1014
+ 'version' => '6.6.1.0',
1015
+ 'path' => $baseDir . '/tests/php/src/Internal/DownloadPermissionsAdjusterTest.php'
1016
  ),
1017
  'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExtendedContainerTest' => array(
1018
+ 'version' => '6.6.1.0',
1019
  'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExtendedContainerTest.php'
1020
  ),
1021
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithNonFinalInjectionMethod' => array(
1022
+ 'version' => '6.6.1.0',
1023
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithNonFinalInjectionMethod.php'
 
 
 
 
 
 
 
 
1024
  ),
1025
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithInjectionMethodArgumentWithoutTypeHint' => array(
1026
+ 'version' => '6.6.1.0',
1027
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithInjectionMethodArgumentWithoutTypeHint.php'
1028
  ),
1029
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithScalarInjectionMethodArgument' => array(
1030
+ 'version' => '6.6.1.0',
1031
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithScalarInjectionMethodArgument.php'
1032
  ),
1033
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithDependencies' => array(
1034
+ 'version' => '6.6.1.0',
1035
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithDependencies.php'
1036
  ),
1037
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\ClassWithPrivateInjectionMethod' => array(
1038
+ 'version' => '6.6.1.0',
1039
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/ClassWithPrivateInjectionMethod.php'
1040
  ),
1041
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\ExampleClasses\\DependencyClass' => array(
1042
+ 'version' => '6.6.1.0',
1043
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/ExampleClasses/DependencyClass.php'
1044
  ),
1045
+ 'Automattic\\WooCommerce\\Tests\\Internal\\DependencyManagement\\AbstractServiceProviderTest' => array(
1046
+ 'version' => '6.6.1.0',
1047
+ 'path' => $baseDir . '/tests/php/src/Internal/DependencyManagement/AbstractServiceProviderTest.php'
1048
  ),
1049
+ 'Automattic\\WooCommerce\\Testing\\Tools\\FakeQueue' => array(
1050
+ 'version' => '6.6.1.0',
1051
+ 'path' => $baseDir . '/tests/Tools/FakeQueue.php'
1052
  ),
1053
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\StaticMockerHack' => array(
1054
+ 'version' => '6.6.1.0',
1055
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/StaticMockerHack.php'
1056
  ),
1057
+ 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\BypassFinalsHack' => array(
1058
+ 'version' => '6.6.1.0',
1059
+ 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/BypassFinalsHack.php'
1060
  ),
1061
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\FunctionsMockerHack' => array(
1062
+ 'version' => '6.6.1.0',
1063
  'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/FunctionsMockerHack.php'
1064
  ),
1065
+ 'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\Hacks\\CodeHack' => array(
1066
+ 'version' => '6.6.1.0',
1067
+ 'path' => $baseDir . '/tests/Tools/CodeHacking/Hacks/CodeHack.php'
1068
  ),
1069
  'Automattic\\WooCommerce\\Testing\\Tools\\CodeHacking\\CodeHacker' => array(
1070
+ 'version' => '6.6.1.0',
1071
  'path' => $baseDir . '/tests/Tools/CodeHacking/CodeHacker.php'
1072
  ),
 
 
 
 
1073
  'Automattic\\WooCommerce\\Testing\\Tools\\DependencyManagement\\MockableLegacyProxy' => array(
1074
+ 'version' => '6.6.1.0',
1075
  'path' => $baseDir . '/tests/Tools/DependencyManagement/MockableLegacyProxy.php'
1076
  ),
1077
+ 'Automattic\\WooCommerce\\StoreApi\\Utilities\\ProductQueryFilters' => array(
1078
+ 'version' => '7.6.2.0',
1079
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQueryFilters.php'
1080
  ),
1081
+ 'Automattic\\WooCommerce\\StoreApi\\Utilities\\Pagination' => array(
1082
+ 'version' => '7.6.2.0',
1083
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/Pagination.php'
1084
  ),
1085
+ 'Automattic\\WooCommerce\\StoreApi\\Utilities\\QuantityLimits' => array(
1086
+ 'version' => '7.6.2.0',
1087
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/QuantityLimits.php'
1088
  ),
1089
+ 'Automattic\\WooCommerce\\StoreApi\\Utilities\\ProductQuery' => array(
1090
+ 'version' => '7.6.2.0',
1091
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ProductQuery.php'
1092
  ),
1093
+ 'Automattic\\WooCommerce\\StoreApi\\Utilities\\CartController' => array(
1094
+ 'version' => '7.6.2.0',
1095
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/CartController.php'
1096
  ),
1097
+ 'Automattic\\WooCommerce\\StoreApi\\Utilities\\DraftOrderTrait' => array(
1098
+ 'version' => '7.6.2.0',
1099
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/DraftOrderTrait.php'
1100
  ),
1101
+ 'Automattic\\WooCommerce\\StoreApi\\Utilities\\NoticeHandler' => array(
1102
+ 'version' => '7.6.2.0',
1103
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/NoticeHandler.php'
1104
  ),
1105
+ 'Automattic\\WooCommerce\\StoreApi\\Utilities\\OrderController' => array(
1106
+ 'version' => '7.6.2.0',
1107
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/OrderController.php'
1108
  ),
1109
+ 'Automattic\\WooCommerce\\StoreApi\\Utilities\\ArrayUtils' => array(
1110
+ 'version' => '7.6.2.0',
1111
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Utilities/ArrayUtils.php'
1112
  ),
1113
+ 'Automattic\\WooCommerce\\StoreApi\\Formatters\\CurrencyFormatter' => array(
1114
+ 'version' => '7.6.2.0',
1115
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/CurrencyFormatter.php'
1116
  ),
1117
+ 'Automattic\\WooCommerce\\StoreApi\\Formatters\\DefaultFormatter' => array(
1118
+ 'version' => '7.6.2.0',
1119
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/DefaultFormatter.php'
1120
  ),
1121
+ 'Automattic\\WooCommerce\\StoreApi\\Formatters\\FormatterInterface' => array(
1122
+ 'version' => '7.6.2.0',
1123
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/FormatterInterface.php'
1124
  ),
1125
+ 'Automattic\\WooCommerce\\StoreApi\\Formatters\\MoneyFormatter' => array(
1126
+ 'version' => '7.6.2.0',
1127
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/MoneyFormatter.php'
1128
  ),
1129
+ 'Automattic\\WooCommerce\\StoreApi\\Formatters\\HtmlFormatter' => array(
1130
+ 'version' => '7.6.2.0',
1131
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters/HtmlFormatter.php'
1132
  ),
1133
+ 'Automattic\\WooCommerce\\StoreApi\\Formatters' => array(
1134
+ 'version' => '7.6.2.0',
1135
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Formatters.php'
1136
  ),
1137
+ 'Automattic\\WooCommerce\\StoreApi\\SchemaController' => array(
1138
+ 'version' => '7.6.2.0',
1139
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/SchemaController.php'
1140
  ),
1141
+ 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\InvalidCartException' => array(
1142
+ 'version' => '7.6.2.0',
1143
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/InvalidCartException.php'
1144
  ),
1145
+ 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\RouteException' => array(
1146
+ 'version' => '7.6.2.0',
1147
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/RouteException.php'
1148
  ),
1149
+ 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\NotPurchasableException' => array(
1150
+ 'version' => '7.6.2.0',
1151
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/NotPurchasableException.php'
1152
  ),
1153
+ 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\TooManyInCartException' => array(
1154
+ 'version' => '7.6.2.0',
1155
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/TooManyInCartException.php'
1156
  ),
1157
+ 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\OutOfStockException' => array(
1158
+ 'version' => '7.6.2.0',
1159
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/OutOfStockException.php'
1160
  ),
1161
+ 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\StockAvailabilityException' => array(
1162
+ 'version' => '7.6.2.0',
1163
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/StockAvailabilityException.php'
1164
  ),
1165
+ 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\InvalidStockLevelsInCartException' => array(
1166
+ 'version' => '7.6.2.0',
1167
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/InvalidStockLevelsInCartException.php'
1168
  ),
1169
+ 'Automattic\\WooCommerce\\StoreApi\\Exceptions\\PartialOutOfStockException' => array(
1170
+ 'version' => '7.6.2.0',
1171
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Exceptions/PartialOutOfStockException.php'
1172
  ),
1173
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductTags' => array(
1174
+ 'version' => '7.6.2.0',
1175
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductTags.php'
1176
  ),
1177
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Products' => array(
1178
+ 'version' => '7.6.2.0',
1179
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Products.php'
1180
  ),
1181
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Cart' => array(
1182
+ 'version' => '7.6.2.0',
1183
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Cart.php'
1184
  ),
1185
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCollectionData' => array(
1186
+ 'version' => '7.6.2.0',
1187
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCollectionData.php'
1188
+ ),
1189
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartItems' => array(
1190
+ 'version' => '7.6.2.0',
1191
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartItems.php'
1192
+ ),
1193
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartAddItem' => array(
1194
+ 'version' => '7.6.2.0',
1195
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartAddItem.php'
1196
+ ),
1197
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCategories' => array(
1198
+ 'version' => '7.6.2.0',
1199
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCategories.php'
1200
  ),
 
 
 
 
1201
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartExtensions' => array(
1202
+ 'version' => '7.6.2.0',
1203
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartExtensions.php'
1204
  ),
1205
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributes' => array(
1206
+ 'version' => '7.6.2.0',
1207
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributes.php'
1208
+ ),
1209
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartRemoveItem' => array(
1210
+ 'version' => '7.6.2.0',
1211
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartRemoveItem.php'
1212
+ ),
1213
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductCategoriesById' => array(
1214
+ 'version' => '7.6.2.0',
1215
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductCategoriesById.php'
1216
+ ),
1217
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Batch' => array(
1218
+ 'version' => '7.6.2.0',
1219
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Batch.php'
1220
+ ),
1221
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartCoupons' => array(
1222
+ 'version' => '7.6.2.0',
1223
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartCoupons.php'
1224
  ),
1225
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributesById' => array(
1226
+ 'version' => '7.6.2.0',
1227
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributesById.php'
1228
  ),
1229
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartUpdateCustomer' => array(
1230
+ 'version' => '7.6.2.0',
1231
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartUpdateCustomer.php'
 
 
 
 
1232
  ),
1233
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartSelectShippingRate' => array(
1234
+ 'version' => '7.6.2.0',
1235
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartSelectShippingRate.php'
1236
  ),
1237
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductsById' => array(
1238
+ 'version' => '7.6.2.0',
1239
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductsById.php'
1240
  ),
1241
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\Checkout' => array(
1242
+ 'version' => '7.6.2.0',
1243
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/Checkout.php'
1244
  ),
1245
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractCartRoute' => array(
1246
+ 'version' => '7.6.2.0',
1247
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractCartRoute.php'
 
 
 
 
 
 
 
 
1248
  ),
1249
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartItemsByKey' => array(
1250
+ 'version' => '7.6.2.0',
1251
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartItemsByKey.php'
1252
  ),
1253
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractTermsRoute' => array(
1254
+ 'version' => '7.6.2.0',
1255
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractTermsRoute.php'
1256
  ),
 
 
 
 
 
 
 
 
1257
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductAttributeTerms' => array(
1258
+ 'version' => '7.6.2.0',
1259
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductAttributeTerms.php'
1260
  ),
1261
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartCouponsByCode' => array(
1262
+ 'version' => '7.6.2.0',
1263
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartCouponsByCode.php'
1264
+ ),
1265
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\AbstractRoute' => array(
1266
+ 'version' => '7.6.2.0',
1267
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/AbstractRoute.php'
1268
  ),
1269
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartUpdateItem' => array(
1270
+ 'version' => '7.6.2.0',
1271
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartUpdateItem.php'
1272
  ),
1273
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\ProductReviews' => array(
1274
+ 'version' => '7.6.2.0',
1275
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/ProductReviews.php'
1276
  ),
1277
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartApplyCoupon' => array(
1278
+ 'version' => '7.6.2.0',
1279
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartApplyCoupon.php'
1280
  ),
1281
  'Automattic\\WooCommerce\\StoreApi\\Routes\\V1\\CartRemoveCoupon' => array(
1282
+ 'version' => '7.6.2.0',
1283
  'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/V1/CartRemoveCoupon.php'
1284
  ),
1285
+ 'Automattic\\WooCommerce\\StoreApi\\Routes\\RouteInterface' => array(
1286
+ 'version' => '7.6.2.0',
1287
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Routes/RouteInterface.php'
1288
  ),
1289
+ 'Automattic\\WooCommerce\\StoreApi\\RoutesController' => array(
1290
+ 'version' => '7.6.2.0',
1291
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/RoutesController.php'
1292
  ),
1293
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ErrorSchema' => array(
1294
+ 'version' => '7.6.2.0',
1295
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ErrorSchema.php'
1296
  ),
1297
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\BatchSchema' => array(
1298
+ 'version' => '7.6.2.0',
1299
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/BatchSchema.php'
1300
  ),
1301
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\AbstractAddressSchema' => array(
1302
+ 'version' => '7.6.2.0',
1303
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/AbstractAddressSchema.php'
1304
  ),
1305
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductCollectionDataSchema' => array(
1306
+ 'version' => '7.6.2.0',
1307
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductCollectionDataSchema.php'
1308
  ),
1309
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartCouponSchema' => array(
1310
+ 'version' => '7.6.2.0',
1311
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartCouponSchema.php'
1312
  ),
1313
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartShippingRateSchema' => array(
1314
+ 'version' => '7.6.2.0',
1315
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartShippingRateSchema.php'
1316
  ),
1317
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CheckoutSchema' => array(
1318
+ 'version' => '7.6.2.0',
1319
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CheckoutSchema.php'
1320
  ),
1321
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\TermSchema' => array(
1322
+ 'version' => '7.6.2.0',
1323
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/TermSchema.php'
1324
  ),
1325
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\OrderCouponSchema' => array(
1326
+ 'version' => '7.6.2.0',
1327
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/OrderCouponSchema.php'
1328
  ),
1329
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartSchema' => array(
1330
+ 'version' => '7.6.2.0',
1331
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartSchema.php'
1332
  ),
1333
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\BillingAddressSchema' => array(
1334
+ 'version' => '7.6.2.0',
1335
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/BillingAddressSchema.php'
1336
  ),
1337
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartFeeSchema' => array(
1338
+ 'version' => '7.6.2.0',
1339
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartFeeSchema.php'
1340
  ),
1341
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartItemSchema' => array(
1342
+ 'version' => '7.6.2.0',
1343
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartItemSchema.php'
1344
  ),
1345
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductReviewSchema' => array(
1346
+ 'version' => '7.6.2.0',
1347
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductReviewSchema.php'
1348
  ),
1349
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\CartExtensionsSchema' => array(
1350
+ 'version' => '7.6.2.0',
1351
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/CartExtensionsSchema.php'
1352
  ),
1353
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductAttributeSchema' => array(
1354
+ 'version' => '7.6.2.0',
1355
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductAttributeSchema.php'
1356
  ),
1357
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ShippingAddressSchema' => array(
1358
+ 'version' => '7.6.2.0',
1359
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ShippingAddressSchema.php'
1360
  ),
1361
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductCategorySchema' => array(
1362
+ 'version' => '7.6.2.0',
1363
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductCategorySchema.php'
1364
  ),
1365
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\AbstractSchema' => array(
1366
+ 'version' => '7.6.2.0',
1367
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/AbstractSchema.php'
1368
  ),
1369
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ImageAttachmentSchema' => array(
1370
+ 'version' => '7.6.2.0',
1371
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ImageAttachmentSchema.php'
1372
  ),
1373
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\V1\\ProductSchema' => array(
1374
+ 'version' => '7.6.2.0',
1375
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/V1/ProductSchema.php'
1376
  ),
1377
+ 'Automattic\\WooCommerce\\StoreApi\\Schemas\\ExtendSchema' => array(
1378
+ 'version' => '7.6.2.0',
1379
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Schemas/ExtendSchema.php'
1380
  ),
1381
+ 'Automattic\\WooCommerce\\StoreApi\\Authentication' => array(
1382
+ 'version' => '7.6.2.0',
1383
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Authentication.php'
1384
  ),
1385
+ 'Automattic\\WooCommerce\\StoreApi\\Payments\\PaymentResult' => array(
1386
+ 'version' => '7.6.2.0',
1387
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Payments/PaymentResult.php'
1388
  ),
1389
+ 'Automattic\\WooCommerce\\StoreApi\\Payments\\PaymentContext' => array(
1390
+ 'version' => '7.6.2.0',
1391
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/Payments/PaymentContext.php'
1392
  ),
1393
+ 'Automattic\\WooCommerce\\StoreApi\\StoreApi' => array(
1394
+ 'version' => '7.6.2.0',
1395
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/StoreApi/StoreApi.php'
1396
  ),
1397
+ 'Automattic\\WooCommerce\\Blocks\\Utils\\BlocksWpQuery' => array(
1398
+ 'version' => '7.6.2.0',
1399
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/BlocksWpQuery.php'
1400
  ),
1401
+ 'Automattic\\WooCommerce\\Blocks\\Utils\\StyleAttributesUtils' => array(
1402
+ 'version' => '7.6.2.0',
1403
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/StyleAttributesUtils.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1404
  ),
1405
+ 'Automattic\\WooCommerce\\Blocks\\Utils\\BlockTemplateUtils' => array(
1406
+ 'version' => '7.6.2.0',
1407
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Utils/BlockTemplateUtils.php'
1408
  ),
1409
  'Automattic\\WooCommerce\\Blocks\\Library' => array(
1410
+ 'version' => '7.6.2.0',
1411
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Library.php'
1412
  ),
1413
+ 'Automattic\\WooCommerce\\Blocks\\Installer' => array(
1414
+ 'version' => '7.6.2.0',
1415
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Installer.php'
1416
  ),
1417
+ 'Automattic\\WooCommerce\\Blocks\\Templates\\ProductSearchResultsTemplate' => array(
1418
+ 'version' => '7.6.2.0',
1419
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Templates/ProductSearchResultsTemplate.php'
1420
  ),
1421
+ 'Automattic\\WooCommerce\\Blocks\\Templates\\ClassicTemplatesCompatibility' => array(
1422
+ 'version' => '7.6.2.0',
1423
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Templates/ClassicTemplatesCompatibility.php'
1424
  ),
1425
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductPrice' => array(
1426
+ 'version' => '7.6.2.0',
1427
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductPrice.php'
1428
  ),
1429
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ActiveFilters' => array(
1430
+ 'version' => '7.6.2.0',
1431
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ActiveFilters.php'
1432
  ),
1433
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductImage' => array(
1434
+ 'version' => '7.6.2.0',
1435
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductImage.php'
1436
  ),
1437
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Cart' => array(
1438
+ 'version' => '7.6.2.0',
1439
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Cart.php'
1440
  ),
1441
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AtomicBlock' => array(
1442
+ 'version' => '7.6.2.0',
1443
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AtomicBlock.php'
1444
  ),
1445
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractDynamicBlock' => array(
1446
+ 'version' => '7.6.2.0',
1447
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractDynamicBlock.php'
1448
  ),
1449
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTitle' => array(
1450
+ 'version' => '7.6.2.0',
1451
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTitle.php'
1452
  ),
1453
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTagList' => array(
1454
+ 'version' => '7.6.2.0',
1455
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTagList.php'
1456
  ),
1457
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategoryList' => array(
1458
+ 'version' => '7.6.2.0',
1459
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategoryList.php'
1460
  ),
1461
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductButton' => array(
1462
+ 'version' => '7.6.2.0',
1463
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductButton.php'
1464
  ),
1465
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductAddToCart' => array(
1466
+ 'version' => '7.6.2.0',
1467
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductAddToCart.php'
1468
+ ),
1469
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSummary' => array(
1470
+ 'version' => '7.6.2.0',
1471
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSummary.php'
1472
+ ),
1473
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\PriceFilter' => array(
1474
+ 'version' => '7.6.2.0',
1475
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/PriceFilter.php'
1476
  ),
1477
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategories' => array(
1478
+ 'version' => '7.6.2.0',
1479
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategories.php'
1480
  ),
1481
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSearch' => array(
1482
+ 'version' => '7.6.2.0',
1483
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSearch.php'
1484
  ),
1485
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTopRated' => array(
1486
+ 'version' => '7.6.2.0',
1487
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTopRated.php'
1488
  ),
1489
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllReviews' => array(
1490
+ 'version' => '7.6.2.0',
1491
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllReviews.php'
1492
  ),
1493
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractProductGrid' => array(
1494
+ 'version' => '7.6.2.0',
1495
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractProductGrid.php'
1496
  ),
1497
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductBestSellers' => array(
1498
+ 'version' => '7.6.2.0',
1499
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductBestSellers.php'
1500
  ),
1501
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AttributeFilter' => array(
1502
+ 'version' => '7.6.2.0',
1503
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AttributeFilter.php'
1504
  ),
1505
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AllProducts' => array(
1506
+ 'version' => '7.6.2.0',
1507
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AllProducts.php'
1508
  ),
1509
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\SingleProduct' => array(
1510
+ 'version' => '7.6.2.0',
1511
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/SingleProduct.php'
1512
  ),
1513
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductCategory' => array(
1514
+ 'version' => '7.6.2.0',
1515
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductCategory.php'
1516
  ),
1517
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\StockFilter' => array(
1518
+ 'version' => '7.6.2.0',
1519
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/StockFilter.php'
1520
  ),
1521
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\HandpickedProducts' => array(
1522
+ 'version' => '7.6.2.0',
1523
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/HandpickedProducts.php'
1524
  ),
1525
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\Checkout' => array(
1526
+ 'version' => '7.6.2.0',
1527
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/Checkout.php'
1528
  ),
1529
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductRating' => array(
1530
+ 'version' => '7.6.2.0',
1531
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductRating.php'
 
 
 
 
 
 
 
 
 
 
 
 
1532
  ),
1533
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCartContents' => array(
1534
+ 'version' => '7.6.2.0',
1535
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/MiniCartContents.php'
1536
  ),
1537
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSaleBadge' => array(
1538
+ 'version' => '7.6.2.0',
1539
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSaleBadge.php'
1540
  ),
1541
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductsByAttribute' => array(
1542
+ 'version' => '7.6.2.0',
1543
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductsByAttribute.php'
1544
  ),
1545
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedProduct' => array(
1546
+ 'version' => '7.6.2.0',
1547
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedProduct.php'
1548
  ),
1549
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductOnSale' => array(
1550
+ 'version' => '7.6.2.0',
1551
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductOnSale.php'
1552
  ),
 
 
 
 
 
 
 
 
1553
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\AbstractBlock' => array(
1554
+ 'version' => '7.6.2.0',
1555
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/AbstractBlock.php'
1556
  ),
1557
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\FeaturedCategory' => array(
1558
+ 'version' => '7.6.2.0',
1559
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/FeaturedCategory.php'
1560
  ),
1561
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByCategory' => array(
1562
+ 'version' => '7.6.2.0',
1563
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByCategory.php'
1564
  ),
1565
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\MiniCart' => array(
1566
+ 'version' => '7.6.2.0',
1567
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/MiniCart.php'
1568
  ),
1569
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ClassicTemplate' => array(
1570
+ 'version' => '7.6.2.0',
1571
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ClassicTemplate.php'
1572
+ ),
1573
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ReviewsByProduct' => array(
1574
+ 'version' => '7.6.2.0',
1575
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ReviewsByProduct.php'
1576
+ ),
1577
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductNew' => array(
1578
+ 'version' => '7.6.2.0',
1579
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductNew.php'
1580
+ ),
1581
  'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductTag' => array(
1582
+ 'version' => '7.6.2.0',
1583
  'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductTag.php'
1584
  ),
1585
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductStockIndicator' => array(
1586
+ 'version' => '7.6.2.0',
1587
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductStockIndicator.php'
1588
  ),
1589
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypes\\ProductSKU' => array(
1590
+ 'version' => '7.6.2.0',
1591
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypes/ProductSKU.php'
1592
  ),
1593
+ 'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationRegistry' => array(
1594
+ 'version' => '7.6.2.0',
1595
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Integrations/IntegrationRegistry.php'
1596
  ),
1597
+ 'Automattic\\WooCommerce\\Blocks\\Integrations\\IntegrationInterface' => array(
1598
+ 'version' => '7.6.2.0',
1599
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Integrations/IntegrationInterface.php'
1600
  ),
1601
+ 'Automattic\\WooCommerce\\Blocks\\Assets\\AssetDataRegistry' => array(
1602
+ 'version' => '7.6.2.0',
1603
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/AssetDataRegistry.php'
1604
  ),
1605
+ 'Automattic\\WooCommerce\\Blocks\\Assets\\Api' => array(
1606
+ 'version' => '7.6.2.0',
1607
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets/Api.php'
1608
  ),
1609
+ 'Automattic\\WooCommerce\\Blocks\\Registry\\FactoryType' => array(
1610
+ 'version' => '7.6.2.0',
1611
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/FactoryType.php'
1612
  ),
1613
+ 'Automattic\\WooCommerce\\Blocks\\Registry\\SharedType' => array(
1614
+ 'version' => '7.6.2.0',
1615
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/SharedType.php'
1616
  ),
1617
+ 'Automattic\\WooCommerce\\Blocks\\Registry\\Container' => array(
1618
+ 'version' => '7.6.2.0',
1619
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/Container.php'
1620
  ),
1621
+ 'Automattic\\WooCommerce\\Blocks\\Registry\\AbstractDependencyType' => array(
1622
+ 'version' => '7.6.2.0',
1623
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Registry/AbstractDependencyType.php'
1624
  ),
1625
+ 'Automattic\\WooCommerce\\Blocks\\BlockTemplatesController' => array(
1626
+ 'version' => '7.6.2.0',
1627
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTemplatesController.php'
1628
  ),
1629
+ 'Automattic\\WooCommerce\\Blocks\\BlockTypesController' => array(
1630
+ 'version' => '7.6.2.0',
1631
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/BlockTypesController.php'
1632
  ),
1633
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodTypeInterface' => array(
1634
+ 'version' => '7.6.2.0',
1635
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentMethodTypeInterface.php'
1636
  ),
1637
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\PaymentMethodRegistry' => array(
1638
+ 'version' => '7.6.2.0',
1639
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/PaymentMethodRegistry.php'
1640
  ),
1641
  'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\CashOnDelivery' => array(
1642
+ 'version' => '7.6.2.0',
1643
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/CashOnDelivery.php'
1644
  ),
1645
  'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\PayPal' => array(
1646
+ 'version' => '7.6.2.0',
1647
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/PayPal.php'
1648
  ),
1649
  'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\BankTransfer' => array(
1650
+ 'version' => '7.6.2.0',
1651
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/BankTransfer.php'
1652
  ),
 
 
 
 
1653
  'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\Cheque' => array(
1654
+ 'version' => '7.6.2.0',
1655
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/Cheque.php'
1656
  ),
1657
+ 'Automattic\\WooCommerce\\Blocks\\Payments\\Integrations\\AbstractPaymentMethodType' => array(
1658
+ 'version' => '7.6.2.0',
1659
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Integrations/AbstractPaymentMethodType.php'
1660
  ),
1661
  'Automattic\\WooCommerce\\Blocks\\Payments\\Api' => array(
1662
+ 'version' => '7.6.2.0',
1663
  'path' => $baseDir . '/packages/woocommerce-blocks/src/Payments/Api.php'
1664
  ),
1665
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\CreateAccount' => array(
1666
+ 'version' => '7.6.2.0',
1667
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/CreateAccount.php'
1668
  ),
1669
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\DraftOrders' => array(
1670
+ 'version' => '7.6.2.0',
1671
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/DraftOrders.php'
1672
  ),
1673
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\GoogleAnalytics' => array(
1674
+ 'version' => '7.6.2.0',
1675
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/GoogleAnalytics.php'
1676
  ),
1677
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\FeatureGating' => array(
1678
+ 'version' => '7.6.2.0',
1679
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/FeatureGating.php'
1680
  ),
1681
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Services\\Email\\CustomerNewAccount' => array(
1682
+ 'version' => '7.6.2.0',
1683
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Services/Email/CustomerNewAccount.php'
1684
  ),
1685
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Bootstrap' => array(
1686
+ 'version' => '7.6.2.0',
1687
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Bootstrap.php'
1688
  ),
1689
+ 'Automattic\\WooCommerce\\Blocks\\Domain\\Package' => array(
1690
+ 'version' => '7.6.2.0',
1691
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Domain/Package.php'
1692
  ),
1693
+ 'Automattic\\WooCommerce\\Blocks\\InboxNotifications' => array(
1694
+ 'version' => '7.6.2.0',
1695
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/InboxNotifications.php'
1696
  ),
1697
+ 'Automattic\\WooCommerce\\Blocks\\Assets' => array(
1698
+ 'version' => '7.6.2.0',
1699
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Assets.php'
1700
+ ),
1701
+ 'Automattic\\WooCommerce\\Blocks\\AssetsController' => array(
1702
+ 'version' => '7.6.2.0',
1703
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/AssetsController.php'
1704
+ ),
1705
+ 'Automattic\\WooCommerce\\Blocks\\Package' => array(
1706
+ 'version' => '7.6.2.0',
1707
+ 'path' => $baseDir . '/packages/woocommerce-blocks/src/Package.php'
1708
+ ),
1709
+ 'Automattic\\WooCommerce\\Utilities\\NumberUtil' => array(
1710
+ 'version' => '6.6.1.0',
1711
+ 'path' => $baseDir . '/src/Utilities/NumberUtil.php'
1712
+ ),
1713
+ 'Automattic\\WooCommerce\\Utilities\\StringUtil' => array(
1714
+ 'version' => '6.6.1.0',
1715
+ 'path' => $baseDir . '/src/Utilities/StringUtil.php'
1716
+ ),
1717
+ 'Automattic\\WooCommerce\\Utilities\\ArrayUtil' => array(
1718
+ 'version' => '6.6.1.0',
1719
+ 'path' => $baseDir . '/src/Utilities/ArrayUtil.php'
1720
+ ),
1721
+ 'Automattic\\WooCommerce\\Database\\Migrations\\MigrationErrorLogger' => array(
1722
+ 'version' => '6.6.1.0',
1723
+ 'path' => $baseDir . '/src/Database/Migrations/MigrationErrorLogger.php'
1724
+ ),
1725
+ 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\MetaToMetaTableMigrator' => array(
1726
+ 'version' => '6.6.1.0',
1727
+ 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/MetaToMetaTableMigrator.php'
1728
+ ),
1729
+ 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostsToOrdersMigrationController' => array(
1730
+ 'version' => '6.6.1.0',
1731
+ 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostsToOrdersMigrationController.php'
1732
  ),
1733
  'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderAddressTableMigrator' => array(
1734
+ 'version' => '6.6.1.0',
1735
  'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderAddressTableMigrator.php'
1736
  ),
1737
  'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderOpTableMigrator' => array(
1738
+ 'version' => '6.6.1.0',
1739
  'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderOpTableMigrator.php'
1740
  ),
1741
+ 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostToOrderTableMigrator' => array(
1742
+ 'version' => '6.6.1.0',
1743
+ 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostToOrderTableMigrator.php'
1744
+ ),
1745
+ 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\MetaToCustomTableMigrator' => array(
1746
+ 'version' => '6.6.1.0',
1747
+ 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/MetaToCustomTableMigrator.php'
1748
  ),
1749
  'Automattic\\WooCommerce\\DataBase\\Migrations\\CustomOrderTable\\CLIRunner' => array(
1750
+ 'version' => '6.6.1.0',
1751
  'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/CLIRunner.php'
1752
  ),
1753
+ 'Automattic\\WooCommerce\\Database\\Migrations\\CustomOrderTable\\PostMetaToOrderMetaMigrator' => array(
1754
+ 'version' => '6.6.1.0',
1755
+ 'path' => $baseDir . '/src/Database/Migrations/CustomOrderTable/PostMetaToOrderMetaMigrator.php'
1756
  ),
1757
  'Automattic\\WooCommerce\\Database\\Migrations\\MigrationHelper' => array(
1758
+ 'version' => '6.6.1.0',
1759
  'path' => $baseDir . '/src/Database/Migrations/MigrationHelper.php'
1760
  ),
1761
  'Automattic\\WooCommerce\\Container' => array(
1762
+ 'version' => '6.6.1.0',
1763
  'path' => $baseDir . '/src/Container.php'
1764
  ),
1765
+ 'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStock' => array(
1766
+ 'version' => '6.6.1.0',
1767
+ 'path' => $baseDir . '/src/Checkout/Helpers/ReserveStock.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1768
  ),
1769
+ 'Automattic\\WooCommerce\\Checkout\\Helpers\\ReserveStockException' => array(
1770
+ 'version' => '6.6.1.0',
1771
+ 'path' => $baseDir . '/src/Checkout/Helpers/ReserveStockException.php'
1772
  ),
1773
+ 'Automattic\\WooCommerce\\Proxies\\LegacyProxy' => array(
1774
+ 'version' => '6.6.1.0',
1775
+ 'path' => $baseDir . '/src/Proxies/LegacyProxy.php'
1776
  ),
1777
+ 'Automattic\\WooCommerce\\Proxies\\ActionsProxy' => array(
1778
+ 'version' => '6.6.1.0',
1779
+ 'path' => $baseDir . '/src/Proxies/ActionsProxy.php'
1780
  ),
1781
+ 'Automattic\\WooCommerce\\Autoloader' => array(
1782
+ 'version' => '6.6.1.0',
1783
+ 'path' => $baseDir . '/src/Autoloader.php'
1784
  ),
1785
+ 'Automattic\\WooCommerce\\Internal\\Utilities\\HtmlSanitizer' => array(
1786
+ 'version' => '6.6.1.0',
1787
+ 'path' => $baseDir . '/src/Internal/Utilities/HtmlSanitizer.php'
1788
  ),
1789
+ 'Automattic\\WooCommerce\\Internal\\Utilities\\BlocksUtil' => array(
1790
+ 'version' => '6.6.1.0',
1791
+ 'path' => $baseDir . '/src/Internal/Utilities/BlocksUtil.php'
1792
  ),
1793
+ 'Automattic\\WooCommerce\\Internal\\Utilities\\Users' => array(
1794
+ 'version' => '6.6.1.0',
1795
+ 'path' => $baseDir . '/src/Internal/Utilities/Users.php'
1796
  ),
1797
+ 'Automattic\\WooCommerce\\Internal\\Utilities\\DatabaseUtil' => array(
1798
+ 'version' => '6.6.1.0',
1799
+ 'path' => $baseDir . '/src/Internal/Utilities/DatabaseUtil.php'
1800
  ),
1801
+ 'Automattic\\WooCommerce\\Internal\\Utilities\\URL' => array(
1802
+ 'version' => '6.6.1.0',
1803
+ 'path' => $baseDir . '/src/Internal/Utilities/URL.php'
1804
  ),
1805
+ 'Automattic\\WooCommerce\\Internal\\Utilities\\URLException' => array(
1806
+ 'version' => '6.6.1.0',
1807
+ 'path' => $baseDir . '/src/Internal/Utilities/URLException.php'
1808
  ),
1809
+ 'Automattic\\WooCommerce\\Internal\\RestockRefundedItemsAdjuster' => array(
1810
+ 'version' => '6.6.1.0',
1811
+ 'path' => $baseDir . '/src/Internal/RestockRefundedItemsAdjuster.php'
1812
  ),
1813
+ 'Automattic\\WooCommerce\\Internal\\WCCom\\ConnectionHelper' => array(
1814
+ 'version' => '6.6.1.0',
1815
+ 'path' => $baseDir . '/src/Internal/WCCom/ConnectionHelper.php'
1816
  ),
1817
+ 'Automattic\\WooCommerce\\Internal\\AssignDefaultCategory' => array(
1818
+ 'version' => '6.6.1.0',
1819
+ 'path' => $baseDir . '/src/Internal/AssignDefaultCategory.php'
1820
  ),
1821
+ 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\DataRegenerator' => array(
1822
+ 'version' => '6.6.1.0',
1823
+ 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/DataRegenerator.php'
1824
  ),
1825
+ 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\Filterer' => array(
1826
+ 'version' => '6.6.1.0',
1827
+ 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/Filterer.php'
1828
  ),
1829
+ 'Automattic\\WooCommerce\\Internal\\ProductAttributesLookup\\LookupDataStore' => array(
1830
+ 'version' => '6.6.1.0',
1831
+ 'path' => $baseDir . '/src/Internal/ProductAttributesLookup/LookupDataStore.php'
1832
  ),
1833
+ 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Register' => array(
1834
+ 'version' => '6.6.1.0',
1835
+ 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Register.php'
1836
  ),
1837
  'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Synchronize' => array(
1838
+ 'version' => '6.6.1.0',
1839
  'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Synchronize.php'
1840
  ),
1841
+ 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\StoredUrl' => array(
1842
+ 'version' => '6.6.1.0',
1843
+ 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/StoredUrl.php'
1844
  ),
1845
  'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\ApprovedDirectoriesException' => array(
1846
+ 'version' => '6.6.1.0',
1847
  'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/ApprovedDirectoriesException.php'
1848
  ),
 
 
 
 
1849
  'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\SyncUI' => array(
1850
+ 'version' => '6.6.1.0',
1851
  'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/SyncUI.php'
1852
  ),
 
 
 
 
1853
  'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\UI' => array(
1854
+ 'version' => '6.6.1.0',
1855
  'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/UI.php'
1856
  ),
1857
+ 'Automattic\\WooCommerce\\Internal\\ProductDownloads\\ApprovedDirectories\\Admin\\Table' => array(
1858
+ 'version' => '6.6.1.0',
1859
+ 'path' => $baseDir . '/src/Internal/ProductDownloads/ApprovedDirectories/Admin/Table.php'
1860
+ ),
1861
  'Automattic\\WooCommerce\\Internal\\DownloadPermissionsAdjuster' => array(
1862
+ 'version' => '6.6.1.0',
1863
  'path' => $baseDir . '/src/Internal/DownloadPermissionsAdjuster.php'
1864
  ),
1865
+ 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\OrdersTableDataStore' => array(
1866
+ 'version' => '6.6.1.0',
1867
+ 'path' => $baseDir . '/src/Internal/DataStores/Orders/OrdersTableDataStore.php'
1868
  ),
1869
+ 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\CustomOrdersTableController' => array(
1870
+ 'version' => '6.6.1.0',
1871
+ 'path' => $baseDir . '/src/Internal/DataStores/Orders/CustomOrdersTableController.php'
1872
  ),
1873
+ 'Automattic\\WooCommerce\\Internal\\DataStores\\Orders\\DataSynchronizer' => array(
1874
+ 'version' => '6.6.1.0',
1875
+ 'path' => $baseDir . '/src/Internal/DataStores/Orders/DataSynchronizer.php'
1876
  ),
1877
+ 'Automattic\\WooCommerce\\Internal\\Admin\\MobileAppBanner' => array(
1878
+ 'version' => '6.6.1.0',
1879
+ 'path' => $baseDir . '/src/Internal/Admin/MobileAppBanner.php'
1880
  ),
1881
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Coupons' => array(
1882
+ 'version' => '6.6.1.0',
1883
+ 'path' => $baseDir . '/src/Internal/Admin/Coupons.php'
1884
  ),
1885
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Marketing' => array(
1886
+ 'version' => '6.6.1.0',
1887
+ 'path' => $baseDir . '/src/Internal/Admin/Marketing.php'
1888
  ),
1889
+ 'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminUser' => array(
1890
+ 'version' => '6.6.1.0',
1891
+ 'path' => $baseDir . '/src/Internal/Admin/WCAdminUser.php'
1892
  ),
1893
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Analytics' => array(
1894
+ 'version' => '6.6.1.0',
1895
+ 'path' => $baseDir . '/src/Internal/Admin/Analytics.php'
1896
  ),
1897
+ 'Automattic\\WooCommerce\\Internal\\Admin\\WcPaySubscriptionsPage' => array(
1898
+ 'version' => '6.6.1.0',
1899
+ 'path' => $baseDir . '/src/Internal/Admin/WcPaySubscriptionsPage.php'
1900
  ),
1901
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\LaunchChecklist' => array(
1902
+ 'version' => '6.6.1.0',
1903
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/LaunchChecklist.php'
1904
  ),
1905
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\NavigationNudge' => array(
1906
+ 'version' => '6.6.1.0',
1907
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/NavigationNudge.php'
1908
  ),
1909
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CustomizeStoreWithBlocks' => array(
1910
+ 'version' => '6.6.1.0',
1911
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/CustomizeStoreWithBlocks.php'
1912
  ),
1913
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\FirstDownlaodableProduct' => array(
1914
+ 'version' => '6.6.1.0',
1915
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/FirstDownlaodableProduct.php'
1916
  ),
1917
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooCommercePayments' => array(
1918
+ 'version' => '6.6.1.0',
1919
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/WooCommercePayments.php'
1920
+ ),
1921
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MagentoMigration' => array(
1922
+ 'version' => '6.6.1.0',
1923
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/MagentoMigration.php'
1924
  ),
1925
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\TestCheckout' => array(
1926
+ 'version' => '6.6.1.0',
1927
  'path' => $baseDir . '/src/Internal/Admin/Notes/TestCheckout.php'
1928
  ),
1929
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\InstallJPAndWCSPlugins' => array(
1930
+ 'version' => '6.6.1.0',
1931
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/InstallJPAndWCSPlugins.php'
 
 
 
 
 
 
 
 
 
 
 
 
1932
  ),
1933
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PerformanceOnMobile' => array(
1934
+ 'version' => '6.6.1.0',
1935
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/PerformanceOnMobile.php'
1936
  ),
1937
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\FirstProduct' => array(
1938
+ 'version' => '6.6.1.0',
1939
  'path' => $baseDir . '/src/Internal/Admin/Notes/FirstProduct.php'
1940
  ),
1941
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CustomizingProductCatalog' => array(
1942
+ 'version' => '6.6.1.0',
1943
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/CustomizingProductCatalog.php'
1944
  ),
1945
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\SellingOnlineCourses' => array(
1946
+ 'version' => '6.6.1.0',
1947
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/SellingOnlineCourses.php'
1948
  ),
1949
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MerchantEmailNotifications' => array(
1950
+ 'version' => '6.6.1.0',
1951
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/MerchantEmailNotifications.php'
1952
  ),
1953
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\AddingAndManangingProducts' => array(
1954
+ 'version' => '6.6.1.0',
1955
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/AddingAndManangingProducts.php'
 
 
 
 
1956
  ),
1957
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OrderMilestones' => array(
1958
+ 'version' => '6.6.1.0',
1959
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/OrderMilestones.php'
1960
  ),
1961
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MigrateFromShopify' => array(
1962
+ 'version' => '6.6.1.0',
1963
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/MigrateFromShopify.php'
1964
  ),
1965
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CompleteStoreDetails' => array(
1966
+ 'version' => '6.6.1.0',
1967
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/CompleteStoreDetails.php'
1968
  ),
1969
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\GivingFeedbackNotes' => array(
1970
+ 'version' => '6.6.1.0',
1971
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/GivingFeedbackNotes.php'
1972
  ),
1973
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OnboardingPayments' => array(
1974
+ 'version' => '6.6.1.0',
1975
  'path' => $baseDir . '/src/Internal/Admin/Notes/OnboardingPayments.php'
1976
  ),
1977
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\InsightFirstProductAndPayment' => array(
1978
+ 'version' => '6.6.1.0',
1979
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/InsightFirstProductAndPayment.php'
1980
  ),
1981
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ManageStoreActivityFromHomeScreen' => array(
1982
+ 'version' => '6.6.1.0',
1983
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/ManageStoreActivityFromHomeScreen.php'
1984
  ),
1985
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\CouponPageMoved' => array(
1986
+ 'version' => '6.6.1.0',
1987
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/CouponPageMoved.php'
1988
+ ),
1989
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\UpdateStoreDetails' => array(
1990
+ 'version' => '6.6.1.0',
1991
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/UpdateStoreDetails.php'
1992
+ ),
1993
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooSubscriptionsNotes' => array(
1994
+ 'version' => '6.6.1.0',
1995
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/WooSubscriptionsNotes.php'
1996
+ ),
1997
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\AddFirstProduct' => array(
1998
+ 'version' => '6.6.1.0',
1999
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/AddFirstProduct.php'
2000
+ ),
2001
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\RealTimeOrderAlerts' => array(
2002
+ 'version' => '6.6.1.0',
2003
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/RealTimeOrderAlerts.php'
2004
  ),
2005
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MarketingJetpack' => array(
2006
+ 'version' => '6.6.1.0',
2007
  'path' => $baseDir . '/src/Internal/Admin/Notes/MarketingJetpack.php'
2008
  ),
2009
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\MobileApp' => array(
2010
+ 'version' => '6.6.1.0',
2011
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/MobileApp.php'
2012
+ ),
2013
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PaymentsRemindMeLater' => array(
2014
+ 'version' => '6.6.1.0',
2015
  'path' => $baseDir . '/src/Internal/Admin/Notes/PaymentsRemindMeLater.php'
2016
  ),
 
 
 
 
 
 
 
 
 
 
 
 
2017
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\UnsecuredReportFiles' => array(
2018
+ 'version' => '6.6.1.0',
2019
  'path' => $baseDir . '/src/Internal/Admin/Notes/UnsecuredReportFiles.php'
2020
  ),
2021
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WelcomeToWooCommerceForStoreUsers' => array(
2022
+ 'version' => '6.6.1.0',
2023
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/WelcomeToWooCommerceForStoreUsers.php'
 
 
 
 
2024
  ),
2025
  'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EmailNotification' => array(
2026
+ 'version' => '6.6.1.0',
2027
  'path' => $baseDir . '/src/Internal/Admin/Notes/EmailNotification.php'
2028
  ),
2029
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\NewSalesRecord' => array(
2030
+ 'version' => '6.6.1.0',
2031
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/NewSalesRecord.php'
2032
  ),
2033
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EditProductsOnTheMove' => array(
2034
+ 'version' => '6.6.1.0',
2035
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/EditProductsOnTheMove.php'
2036
  ),
2037
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\OnlineClothingStore' => array(
2038
+ 'version' => '6.6.1.0',
2039
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/OnlineClothingStore.php'
2040
  ),
2041
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ChoosingTheme' => array(
2042
+ 'version' => '6.6.1.0',
2043
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/ChoosingTheme.php'
2044
  ),
2045
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\InsightFirstSale' => array(
2046
+ 'version' => '6.6.1.0',
2047
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/InsightFirstSale.php'
2048
  ),
2049
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\EUVATNumber' => array(
2050
+ 'version' => '6.6.1.0',
2051
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/EUVATNumber.php'
2052
  ),
2053
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\PersonalizeStore' => array(
2054
+ 'version' => '6.6.1.0',
2055
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/PersonalizeStore.php'
2056
  ),
2057
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\TrackingOptIn' => array(
2058
+ 'version' => '6.6.1.0',
2059
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/TrackingOptIn.php'
2060
  ),
2061
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\ManageOrdersOnTheGo' => array(
2062
+ 'version' => '6.6.1.0',
2063
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/ManageOrdersOnTheGo.php'
2064
  ),
2065
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Notes\\WooCommerceSubscriptions' => array(
2066
+ 'version' => '6.6.1.0',
2067
+ 'path' => $baseDir . '/src/Internal/Admin/Notes/WooCommerceSubscriptions.php'
2068
  ),
2069
+ 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\WCPayPromotionDataSourcePoller' => array(
2070
+ 'version' => '6.6.1.0',
2071
+ 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/WCPayPromotionDataSourcePoller.php'
2072
  ),
2073
+ 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\WCPaymentGatewayPreInstallWCPayPromotion' => array(
2074
+ 'version' => '6.6.1.0',
2075
+ 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/WCPaymentGatewayPreInstallWCPayPromotion.php'
2076
  ),
2077
+ 'Automattic\\WooCommerce\\Internal\\Admin\\WCPayPromotion\\Init' => array(
2078
+ 'version' => '6.6.1.0',
2079
+ 'path' => $baseDir . '/src/Internal/Admin/WCPayPromotion/Init.php'
2080
  ),
2081
+ 'Automattic\\WooCommerce\\Internal\\Admin\\CustomerEffortScoreTracks' => array(
2082
+ 'version' => '6.6.1.0',
2083
+ 'path' => $baseDir . '/src/Internal/Admin/CustomerEffortScoreTracks.php'
2084
  ),
2085
+ 'Automattic\\WooCommerce\\Internal\\Admin\\FeaturePlugin' => array(
2086
+ 'version' => '6.6.1.0',
2087
+ 'path' => $baseDir . '/src/Internal/Admin/FeaturePlugin.php'
2088
  ),
2089
+ 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteInboxNotifications' => array(
2090
+ 'version' => '6.6.1.0',
2091
+ 'path' => $baseDir . '/src/Internal/Admin/RemoteInboxNotifications.php'
2092
  ),
2093
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Homescreen' => array(
2094
+ 'version' => '6.6.1.0',
2095
+ 'path' => $baseDir . '/src/Internal/Admin/Homescreen.php'
2096
  ),
2097
+ 'Automattic\\WooCommerce\\Internal\\Admin\\CategoryLookup' => array(
2098
+ 'version' => '6.6.1.0',
2099
+ 'path' => $baseDir . '/src/Internal/Admin/CategoryLookup.php'
2100
  ),
2101
+ 'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminSharedSettings' => array(
2102
+ 'version' => '6.6.1.0',
2103
+ 'path' => $baseDir . '/src/Internal/Admin/WCAdminSharedSettings.php'
2104
  ),
2105
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\MailchimpScheduler' => array(
2106
+ 'version' => '6.6.1.0',
2107
+ 'path' => $baseDir . '/src/Internal/Admin/Schedulers/MailchimpScheduler.php'
2108
  ),
2109
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\CustomersScheduler' => array(
2110
+ 'version' => '6.6.1.0',
2111
+ 'path' => $baseDir . '/src/Internal/Admin/Schedulers/CustomersScheduler.php'
2112
  ),
2113
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportScheduler' => array(
2114
+ 'version' => '6.6.1.0',
2115
+ 'path' => $baseDir . '/src/Internal/Admin/Schedulers/ImportScheduler.php'
2116
  ),
2117
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\OrdersScheduler' => array(
2118
+ 'version' => '6.6.1.0',
2119
+ 'path' => $baseDir . '/src/Internal/Admin/Schedulers/OrdersScheduler.php'
2120
  ),
2121
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Schedulers\\ImportInterface' => array(
2122
+ 'version' => '6.6.1.0',
2123
+ 'path' => $baseDir . '/src/Internal/Admin/Schedulers/ImportInterface.php'
2124
+ ),
2125
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Loader' => array(
2126
+ 'version' => '6.6.1.0',
2127
+ 'path' => $baseDir . '/src/Internal/Admin/Loader.php'
2128
  ),
2129
  'Automattic\\WooCommerce\\Internal\\Admin\\ShippingLabelBannerDisplayRules' => array(
2130
+ 'version' => '6.6.1.0',
2131
  'path' => $baseDir . '/src/Internal/Admin/ShippingLabelBannerDisplayRules.php'
2132
  ),
2133
+ 'Automattic\\WooCommerce\\Internal\\Admin\\ShippingLabelBanner' => array(
2134
+ 'version' => '6.6.1.0',
2135
+ 'path' => $baseDir . '/src/Internal/Admin/ShippingLabelBanner.php'
2136
  ),
2137
+ 'Automattic\\WooCommerce\\Internal\\Admin\\SystemStatusReport' => array(
2138
+ 'version' => '6.6.1.0',
2139
+ 'path' => $baseDir . '/src/Internal/Admin/SystemStatusReport.php'
2140
  ),
2141
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Settings' => array(
2142
+ 'version' => '6.6.1.0',
2143
+ 'path' => $baseDir . '/src/Internal/Admin/Settings.php'
2144
+ ),
2145
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Events' => array(
2146
+ 'version' => '6.6.1.0',
2147
+ 'path' => $baseDir . '/src/Internal/Admin/Events.php'
2148
  ),
2149
  'Automattic\\WooCommerce\\Internal\\Admin\\Translations' => array(
2150
+ 'version' => '6.6.1.0',
2151
  'path' => $baseDir . '/src/Internal/Admin/Translations.php'
2152
  ),
2153
+ 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\RemoteFreeExtensionsDataSourcePoller' => array(
2154
+ 'version' => '6.6.1.0',
2155
+ 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/RemoteFreeExtensionsDataSourcePoller.php'
2156
  ),
2157
+ 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\DefaultFreeExtensions' => array(
2158
+ 'version' => '6.6.1.0',
2159
+ 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/DefaultFreeExtensions.php'
2160
  ),
2161
+ 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\Init' => array(
2162
+ 'version' => '6.6.1.0',
2163
+ 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/Init.php'
2164
  ),
2165
+ 'Automattic\\WooCommerce\\Internal\\Admin\\RemoteFreeExtensions\\EvaluateExtension' => array(
2166
+ 'version' => '6.6.1.0',
2167
+ 'path' => $baseDir . '/src/Internal/Admin/RemoteFreeExtensions/EvaluateExtension.php'
2168
  ),
2169
  'Automattic\\WooCommerce\\Internal\\Admin\\WCAdminAssets' => array(
2170
+ 'version' => '6.6.1.0',
2171
  'path' => $baseDir . '/src/Internal/Admin/WCAdminAssets.php'
2172
  ),
2173
+ 'Automattic\\WooCommerce\\Internal\\Admin\\ActivityPanels' => array(
2174
+ 'version' => '6.6.1.0',
2175
+ 'path' => $baseDir . '/src/Internal/Admin/ActivityPanels.php'
2176
+ ),
2177
  'Automattic\\WooCommerce\\Internal\\Admin\\Survey' => array(
2178
+ 'version' => '6.6.1.0',
2179
  'path' => $baseDir . '/src/Internal/Admin/Survey.php'
2180
  ),
2181
+ 'Automattic\\WooCommerce\\Internal\\Admin\\WcPayWelcomePage' => array(
2182
+ 'version' => '6.6.1.0',
2183
+ 'path' => $baseDir . '/src/Internal/Admin/WcPayWelcomePage.php'
 
 
 
 
 
 
 
 
2184
  ),
2185
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingJetpack' => array(
2186
+ 'version' => '6.6.1.0',
2187
+ 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingJetpack.php'
2188
  ),
2189
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingHelper' => array(
2190
+ 'version' => '6.6.1.0',
2191
+ 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingHelper.php'
2192
  ),
2193
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingMailchimp' => array(
2194
+ 'version' => '6.6.1.0',
2195
+ 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingMailchimp.php'
2196
  ),
2197
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingProfile' => array(
2198
+ 'version' => '6.6.1.0',
2199
+ 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingProfile.php'
2200
  ),
2201
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingSetupWizard' => array(
2202
+ 'version' => '6.6.1.0',
2203
+ 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingSetupWizard.php'
2204
  ),
2205
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingSync' => array(
2206
+ 'version' => '6.6.1.0',
2207
+ 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingSync.php'
2208
  ),
2209
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingIndustries' => array(
2210
+ 'version' => '6.6.1.0',
2211
+ 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingIndustries.php'
2212
  ),
2213
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingProducts' => array(
2214
+ 'version' => '6.6.1.0',
2215
+ 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingProducts.php'
2216
  ),
2217
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\OnboardingThemes' => array(
2218
+ 'version' => '6.6.1.0',
2219
+ 'path' => $baseDir . '/src/Internal/Admin/Onboarding/OnboardingThemes.php'
2220
  ),
2221
+ 'Automattic\\WooCommerce\\Internal\\Admin\\Onboarding\\Onboarding' => array(
2222
+ 'version' => '6.6.1.0',
2223
+ 'path' => $baseDir . '/src/Internal/Admin/Onboarding/Onboarding.php'
2224
  ),
2225
+ 'Automattic\\WooCommerce\\Internal\\Admin\\SettingsNavigationFeature' => array(
2226
+ 'version' => '6.6.1.0',
2227
+ 'path' => $baseDir . '/src/Internal/Admin/SettingsNavigationFeature.php'
2228
  ),
2229
+ 'Automattic\\WooCommerce\\Internal\\Admin\\CouponsMovedTrait' => array(
2230
+ 'version' => '6.6.1.0',
2231
+ 'path' => $baseDir . '/src/Internal/Admin/CouponsMovedTrait.php'
2232
  ),
2233
+ 'Automattic\\WooCommerce\\Internal\\Settings\\OptionSanitizer' => array(
2234
+ 'version' => '6.6.1.0',
2235
+ 'path' => $baseDir . '/src/Internal/Settings/OptionSanitizer.php'
2236
  ),
2237
+ 'Automattic\\WooCommerce\\Internal\\RestApiUtil' => array(
2238
+ 'version' => '6.6.1.0',
2239
+ 'path' => $baseDir . '/src/Internal/RestApiUtil.php'
2240
  ),
2241
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ContainerException' => array(
2242
+ 'version' => '6.6.1.0',
2243
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ContainerException.php'
2244
  ),
2245
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\AbstractServiceProvider' => array(
2246
+ 'version' => '6.6.1.0',
2247
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/AbstractServiceProvider.php'
2248
  ),
2249
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ExtendedContainer' => array(
2250
+ 'version' => '6.6.1.0',
2251
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ExtendedContainer.php'
2252
  ),
2253
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\DownloadPermissionsAdjusterServiceProvider' => array(
2254
+ 'version' => '6.6.1.0',
2255
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/DownloadPermissionsAdjusterServiceProvider.php'
2256
  ),
2257
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\AssignDefaultCategoryServiceProvider' => array(
2258
+ 'version' => '6.6.1.0',
2259
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/AssignDefaultCategoryServiceProvider.php'
2260
  ),
2261
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProxiesServiceProvider' => array(
2262
+ 'version' => '6.6.1.0',
2263
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProxiesServiceProvider.php'
2264
  ),
2265
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\UtilsClassesServiceProvider' => array(
2266
+ 'version' => '6.6.1.0',
2267
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/UtilsClassesServiceProvider.php'
2268
  ),
2269
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\RestockRefundedItemsAdjusterServiceProvider' => array(
2270
+ 'version' => '6.6.1.0',
2271
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/RestockRefundedItemsAdjusterServiceProvider.php'
2272
  ),
2273
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OptionSanitizerServiceProvider' => array(
2274
+ 'version' => '6.6.1.0',
2275
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OptionSanitizerServiceProvider.php'
2276
  ),
2277
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductDownloadsServiceProvider' => array(
2278
+ 'version' => '6.6.1.0',
2279
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductDownloadsServiceProvider.php'
2280
  ),
2281
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\OrdersDataStoreServiceProvider' => array(
2282
+ 'version' => '6.6.1.0',
2283
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/OrdersDataStoreServiceProvider.php'
2284
  ),
2285
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\COTMigrationServiceProvider' => array(
2286
+ 'version' => '6.6.1.0',
2287
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/COTMigrationServiceProvider.php'
2288
  ),
2289
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\ServiceProviders\\ProductAttributesLookupServiceProvider' => array(
2290
+ 'version' => '6.6.1.0',
2291
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/ServiceProviders/ProductAttributesLookupServiceProvider.php'
2292
  ),
2293
+ 'Automattic\\WooCommerce\\Internal\\DependencyManagement\\Definition' => array(
2294
+ 'version' => '6.6.1.0',
2295
+ 'path' => $baseDir . '/src/Internal/DependencyManagement/Definition.php'
2296
  ),
2297
+ 'Automattic\\WooCommerce\\Admin\\WCAdminHelper' => array(
2298
+ 'version' => '6.6.1.0',
2299
+ 'path' => $baseDir . '/src/Admin/WCAdminHelper.php'
2300
  ),
2301
+ 'Automattic\\WooCommerce\\Admin\\Marketing\\InstalledExtensions' => array(
2302
+ 'version' => '6.6.1.0',
2303
+ 'path' => $baseDir . '/src/Admin/Marketing/InstalledExtensions.php'
2304
  ),
2305
+ 'Automattic\\WooCommerce\\Admin\\ReportsSync' => array(
2306
+ 'version' => '6.6.1.0',
2307
+ 'path' => $baseDir . '/src/Admin/ReportsSync.php'
2308
  ),
2309
  'Automattic\\WooCommerce\\Admin\\DataSourcePoller' => array(
2310
+ 'version' => '6.6.1.0',
2311
  'path' => $baseDir . '/src/Admin/DataSourcePoller.php'
2312
  ),
2313
+ 'Automattic\\WooCommerce\\Admin\\Notes\\DataStore' => array(
2314
+ 'version' => '6.6.1.0',
2315
+ 'path' => $baseDir . '/src/Admin/Notes/DataStore.php'
2316
  ),
2317
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Note' => array(
2318
+ 'version' => '6.6.1.0',
2319
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2320
  ),
2321
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes' => array(
2322
+ 'version' => '6.6.1.0',
2323
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2324
  ),
2325
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Coupon_Page_Moved' => array(
2326
+ 'version' => '6.6.1.0',
2327
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2328
  ),
2329
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Customize_Store_With_Blocks' => array(
2330
+ 'version' => '6.6.1.0',
2331
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2332
  ),
2333
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Edit_Products_On_The_Move' => array(
2334
+ 'version' => '6.6.1.0',
2335
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2336
  ),
2337
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_EU_VAT_Number' => array(
2338
+ 'version' => '6.6.1.0',
2339
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2340
  ),
2341
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Facebook_Marketing_Expert' => array(
2342
+ 'version' => '6.6.1.0',
2343
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2344
  ),
2345
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_First_Product' => array(
2346
+ 'version' => '6.6.1.0',
2347
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2348
  ),
2349
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Giving_Feedback_Notes' => array(
2350
+ 'version' => '6.6.1.0',
2351
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2352
  ),
2353
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Insight_First_Sale' => array(
2354
+ 'version' => '6.6.1.0',
2355
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2356
  ),
2357
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Install_JP_And_WCS_Plugins' => array(
2358
+ 'version' => '6.6.1.0',
2359
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2360
  ),
2361
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Launch_Checklist' => array(
2362
+ 'version' => '6.6.1.0',
2363
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2364
  ),
2365
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Migrate_From_Shopify' => array(
2366
+ 'version' => '6.6.1.0',
2367
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2368
  ),
2369
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Mobile_App' => array(
2370
+ 'version' => '6.6.1.0',
2371
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2372
  ),
2373
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_New_Sales_Record' => array(
2374
+ 'version' => '6.6.1.0',
2375
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2376
  ),
2377
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Email_Marketing' => array(
2378
+ 'version' => '6.6.1.0',
2379
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2380
  ),
2381
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Onboarding_Payments' => array(
2382
+ 'version' => '6.6.1.0',
2383
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2384
  ),
2385
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Online_Clothing_Store' => array(
2386
+ 'version' => '6.6.1.0',
2387
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2388
  ),
2389
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Order_Milestones' => array(
2390
+ 'version' => '6.6.1.0',
2391
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2392
  ),
2393
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Performance_On_Mobile' => array(
2394
+ 'version' => '6.6.1.0',
2395
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2396
  ),
2397
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Personalize_Store' => array(
2398
+ 'version' => '6.6.1.0',
2399
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2400
  ),
2401
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Real_Time_Order_Alerts' => array(
2402
+ 'version' => '6.6.1.0',
2403
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2404
  ),
2405
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Selling_Online_Courses' => array(
2406
+ 'version' => '6.6.1.0',
2407
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2408
  ),
2409
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Test_Checkout' => array(
2410
+ 'version' => '6.6.1.0',
2411
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2412
  ),
2413
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Tracking_Opt_In' => array(
2414
+ 'version' => '6.6.1.0',
2415
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2416
  ),
2417
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_Woo_Subscriptions_Notes' => array(
2418
+ 'version' => '6.6.1.0',
2419
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2420
  ),
2421
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Payments' => array(
2422
+ 'version' => '6.6.1.0',
2423
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2424
  ),
2425
  'Automattic\\WooCommerce\\Admin\\Notes\\WC_Admin_Notes_WooCommerce_Subscriptions' => array(
2426
+ 'version' => '6.6.1.0',
2427
  'path' => $baseDir . '/src/Admin/Notes/DeprecatedNotes.php'
2428
  ),
2429
+ 'Automattic\\WooCommerce\\Admin\\Notes\\Note' => array(
2430
+ 'version' => '6.6.1.0',
2431
+ 'path' => $baseDir . '/src/Admin/Notes/Note.php'
 
 
 
 
2432
  ),
2433
  'Automattic\\WooCommerce\\Admin\\Notes\\Notes' => array(
2434
+ 'version' => '6.6.1.0',
2435
  'path' => $baseDir . '/src/Admin/Notes/Notes.php'
2436
  ),
2437
  'Automattic\\WooCommerce\\Admin\\Notes\\NoteTraits' => array(
2438
+ 'version' => '6.6.1.0',
2439
  'path' => $baseDir . '/src/Admin/Notes/NoteTraits.php'
2440
  ),
2441
+ 'Automattic\\WooCommerce\\Admin\\Notes\\NotesUnavailableException' => array(
2442
+ 'version' => '6.6.1.0',
2443
+ 'path' => $baseDir . '/src/Admin/Notes/NotesUnavailableException.php'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2444
  ),
2445
+ 'Automattic\\WooCommerce\\Admin\\FeaturePlugin' => array(
2446
+ 'version' => '6.6.1.0',
2447
+ 'path' => $baseDir . '/src/Admin/FeaturePlugin.php'
2448
  ),
2449
+ 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProviderInterface' => array(
2450
+ 'version' => '6.6.1.0',
2451
+ 'path' => $baseDir . '/src/Admin/PluginsProvider/PluginsProviderInterface.php'
2452
  ),
2453
+ 'Automattic\\WooCommerce\\Admin\\PluginsProvider\\PluginsProvider' => array(
2454
+ 'version' => '6.6.1.0',
2455
+ 'path' => $baseDir . '/src/Admin/PluginsProvider/PluginsProvider.php'
2456
  ),
2457
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishAfterTimeRuleProcessor' => array(
2458
+ 'version' => '6.6.1.0',
2459
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PublishAfterTimeRuleProcessor.php'
2460
  ),
2461
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateSetupForProducts' => array(
2462
+ 'version' => '6.6.1.0',
2463
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/StoredStateSetupForProducts.php'
2464
  ),
2465
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OptionRuleProcessor' => array(
2466
+ 'version' => '6.6.1.0',
2467
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OptionRuleProcessor.php'
2468
  ),
2469
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NoteStatusRuleProcessor' => array(
2470
+ 'version' => '6.6.1.0',
2471
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/NoteStatusRuleProcessor.php'
2472
+ ),
2473
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerInterface' => array(
2474
+ 'version' => '6.6.1.0',
2475
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TransformerInterface.php'
2476
  ),
2477
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleProcessorInterface' => array(
2478
+ 'version' => '6.6.1.0',
2479
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RuleProcessorInterface.php'
 
 
 
 
 
 
 
 
2480
  ),
2481
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\DataSourcePoller' => array(
2482
+ 'version' => '6.6.1.0',
2483
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/DataSourcePoller.php'
2484
  ),
2485
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ComparisonOperation' => array(
2486
+ 'version' => '6.6.1.0',
2487
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/ComparisonOperation.php'
2488
+ ),
2489
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationStateRuleProcessor' => array(
2490
+ 'version' => '6.6.1.0',
2491
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/BaseLocationStateRuleProcessor.php'
2492
+ ),
2493
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PublishBeforeTimeRuleProcessor' => array(
2494
+ 'version' => '6.6.1.0',
2495
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PublishBeforeTimeRuleProcessor.php'
2496
+ ),
2497
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\IsEcommerceRuleProcessor' => array(
2498
+ 'version' => '6.6.1.0',
2499
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/IsEcommerceRuleProcessor.php'
2500
+ ),
2501
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PassRuleProcessor' => array(
2502
+ 'version' => '6.6.1.0',
2503
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PassRuleProcessor.php'
2504
+ ),
2505
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RuleEvaluator' => array(
2506
+ 'version' => '6.6.1.0',
2507
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RuleEvaluator.php'
2508
  ),
2509
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WooCommerceAdminUpdatedRuleProcessor' => array(
2510
+ 'version' => '6.6.1.0',
2511
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WooCommerceAdminUpdatedRuleProcessor.php'
2512
  ),
2513
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\NotRuleProcessor' => array(
2514
+ 'version' => '6.6.1.0',
2515
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/NotRuleProcessor.php'
2516
+ ),
2517
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginVersionRuleProcessor' => array(
2518
+ 'version' => '6.6.1.0',
2519
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PluginVersionRuleProcessor.php'
2520
+ ),
2521
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\SpecRunner' => array(
2522
+ 'version' => '6.6.1.0',
2523
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/SpecRunner.php'
2524
  ),
2525
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\ProductCountRuleProcessor' => array(
2526
+ 'version' => '6.6.1.0',
2527
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/ProductCountRuleProcessor.php'
2528
  ),
2529
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluationLogger' => array(
2530
+ 'version' => '6.6.1.0',
2531
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/EvaluationLogger.php'
 
 
 
 
2532
  ),
2533
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArraySearch' => array(
2534
+ 'version' => '6.6.1.0',
2535
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArraySearch.php'
2536
  ),
2537
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\DotNotation' => array(
2538
+ 'version' => '6.6.1.0',
2539
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/DotNotation.php'
2540
  ),
2541
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayFlatten' => array(
2542
+ 'version' => '6.6.1.0',
2543
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayFlatten.php'
2544
  ),
2545
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayValues' => array(
2546
+ 'version' => '6.6.1.0',
2547
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayValues.php'
2548
  ),
2549
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayKeys' => array(
2550
+ 'version' => '6.6.1.0',
2551
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayKeys.php'
2552
  ),
2553
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\Count' => array(
2554
+ 'version' => '6.6.1.0',
2555
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/Count.php'
2556
  ),
2557
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\Transformers\\ArrayColumn' => array(
2558
+ 'version' => '6.6.1.0',
2559
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/Transformers/ArrayColumn.php'
2560
  ),
2561
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForProvider' => array(
2562
+ 'version' => '6.6.1.0',
2563
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WCAdminActiveForProvider.php'
2564
  ),
2565
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\TransformerService' => array(
2566
+ 'version' => '6.6.1.0',
2567
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/TransformerService.php'
2568
  ),
2569
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\FailRuleProcessor' => array(
2570
+ 'version' => '6.6.1.0',
2571
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/FailRuleProcessor.php'
2572
+ ),
2573
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrdersProvider' => array(
2574
+ 'version' => '6.6.1.0',
2575
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrdersProvider.php'
2576
  ),
2577
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\StoredStateRuleProcessor' => array(
2578
+ 'version' => '6.6.1.0',
2579
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/StoredStateRuleProcessor.php'
2580
  ),
2581
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OnboardingProfileRuleProcessor' => array(
2582
+ 'version' => '6.6.1.0',
2583
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OnboardingProfileRuleProcessor.php'
 
 
 
 
 
 
 
 
2584
  ),
2585
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrRuleProcessor' => array(
2586
+ 'version' => '6.6.1.0',
2587
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrRuleProcessor.php'
2588
  ),
2589
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\EvaluateAndGetStatus' => array(
2590
+ 'version' => '6.6.1.0',
2591
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/EvaluateAndGetStatus.php'
2592
+ ),
2593
  'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\WCAdminActiveForRuleProcessor' => array(
2594
+ 'version' => '6.6.1.0',
2595
  'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/WCAdminActiveForRuleProcessor.php'
2596
  ),
2597
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\PluginsActivatedRuleProcessor' => array(
2598
+ 'version' => '6.6.1.0',
2599
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/PluginsActivatedRuleProcessor.php'
2600
+ ),
2601
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\BaseLocationCountryRuleProcessor' => array(
2602
+ 'version' => '6.6.1.0',
2603
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/BaseLocationCountryRuleProcessor.php'
2604
+ ),
2605
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\RemoteInboxNotificationsEngine' => array(
2606
+ 'version' => '6.6.1.0',
2607
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/RemoteInboxNotificationsEngine.php'
2608
+ ),
2609
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\GetRuleProcessor' => array(
2610
+ 'version' => '6.6.1.0',
2611
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/GetRuleProcessor.php'
2612
+ ),
2613
+ 'Automattic\\WooCommerce\\Admin\\RemoteInboxNotifications\\OrderCountRuleProcessor' => array(
2614
+ 'version' => '6.6.1.0',
2615
+ 'path' => $baseDir . '/src/Admin/RemoteInboxNotifications/OrderCountRuleProcessor.php'
2616
+ ),
2617
+ 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\DateTimeProviderInterface' => array(
2618
+ 'version' => '6.6.1.0',
2619
+ 'path' => $baseDir . '/src/Admin/DateTimeProvider/DateTimeProviderInterface.php'
2620
+ ),
2621
+ 'Automattic\\WooCommerce\\Admin\\DateTimeProvider\\CurrentDateTimeProvider' => array(
2622
+ 'version' => '6.6.1.0',
2623
+ 'path' => $baseDir . '/src/Admin/DateTimeProvider/CurrentDateTimeProvider.php'
2624
+ ),
2625
+ 'Automattic\\WooCommerce\\Admin\\Features\\Features' => array(
2626
+ 'version' => '6.6.1.0',
2627
+ 'path' => $baseDir . '/src/Admin/Features/Features.php'
2628
  ),
2629
  'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\EvaluateSuggestion' => array(
2630
+ 'version' => '6.6.1.0',
2631
  'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/EvaluateSuggestion.php'
2632
  ),
2633
+ 'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaySuggestionsDataSourcePoller' => array(
2634
+ 'version' => '6.6.1.0',
2635
+ 'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaySuggestionsDataSourcePoller.php'
2636
+ ),
2637
  'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\DefaultPaymentGateways' => array(
2638
+ 'version' => '6.6.1.0',
2639
  'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/DefaultPaymentGateways.php'
2640
  ),
2641
  'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\PaymentGatewaysController' => array(
2642
+ 'version' => '6.6.1.0',
2643
  'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/PaymentGatewaysController.php'
2644
  ),
 
 
 
 
2645
  'Automattic\\WooCommerce\\Admin\\Features\\PaymentGatewaySuggestions\\Init' => array(
2646
+ 'version' => '6.6.1.0',
2647
  'path' => $baseDir . '/src/Admin/Features/PaymentGatewaySuggestions/Init.php'
2648
  ),
 
 
 
 
 
 
 
 
2649
  'Automattic\\WooCommerce\\Admin\\Features\\TransientNotices' => array(
2650
+ 'version' => '6.6.1.0',
2651
  'path' => $baseDir . '/src/Admin/Features/TransientNotices.php'
2652
  ),
2653
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\DeprecatedOptions' => array(
2654
+ 'version' => '6.6.1.0',
2655
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/DeprecatedOptions.php'
 
 
 
 
2656
  ),
2657
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\DeprecatedExtendedTask' => array(
2658
+ 'version' => '6.6.1.0',
2659
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/DeprecatedExtendedTask.php'
2660
  ),
2661
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskTraits' => array(
2662
+ 'version' => '6.6.1.0',
2663
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskTraits.php'
2664
  ),
2665
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskList' => array(
2666
+ 'version' => '6.6.1.0',
2667
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskList.php'
2668
  ),
2669
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskLists' => array(
2670
+ 'version' => '6.6.1.0',
2671
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskLists.php'
2672
  ),
2673
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Init' => array(
2674
+ 'version' => '6.6.1.0',
2675
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Init.php'
2676
  ),
2677
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\TaskListSection' => array(
2678
+ 'version' => '6.6.1.0',
2679
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/TaskListSection.php'
2680
  ),
2681
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\WooCommercePayments' => array(
2682
+ 'version' => '6.6.1.0',
2683
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/WooCommercePayments.php'
2684
  ),
2685
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Products' => array(
2686
+ 'version' => '6.6.1.0',
2687
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Products.php'
2688
  ),
2689
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Marketing' => array(
2690
+ 'version' => '6.6.1.0',
2691
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Marketing.php'
2692
+ ),
2693
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Appearance' => array(
2694
+ 'version' => '6.6.1.0',
2695
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Appearance.php'
2696
+ ),
2697
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\AdditionalPayments' => array(
2698
+ 'version' => '6.6.1.0',
2699
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/AdditionalPayments.php'
2700
  ),
2701
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Shipping' => array(
2702
+ 'version' => '6.6.1.0',
2703
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Shipping.php'
2704
  ),
2705
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Purchase' => array(
2706
+ 'version' => '6.6.1.0',
2707
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Purchase.php'
2708
  ),
2709
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Tax' => array(
2710
+ 'version' => '6.6.1.0',
2711
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Tax.php'
2712
  ),
2713
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\Payments' => array(
2714
+ 'version' => '6.6.1.0',
2715
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/Payments.php'
2716
  ),
2717
+ 'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\StoreCreation' => array(
2718
+ 'version' => '6.6.1.0',
2719
+ 'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/StoreCreation.php'
2720
  ),
2721
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Tasks\\StoreDetails' => array(
2722
+ 'version' => '6.6.1.0',
2723
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Tasks/StoreDetails.php'
2724
  ),
 
 
 
 
2725
  'Automattic\\WooCommerce\\Admin\\Features\\OnboardingTasks\\Task' => array(
2726
+ 'version' => '6.6.1.0',
2727
  'path' => $baseDir . '/src/Admin/Features/OnboardingTasks/Task.php'
2728
  ),
2729
+ 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Menu' => array(
2730
+ 'version' => '6.6.1.0',
2731
+ 'path' => $baseDir . '/src/Admin/Features/Navigation/Menu.php'
 
 
 
 
2732
  ),
2733
+ 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Favorites' => array(
2734
+ 'version' => '6.6.1.0',
2735
+ 'path' => $baseDir . '/src/Admin/Features/Navigation/Favorites.php'
2736
  ),
2737
+ 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Screen' => array(
2738
+ 'version' => '6.6.1.0',
2739
+ 'path' => $baseDir . '/src/Admin/Features/Navigation/Screen.php'
2740
  ),
2741
+ 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\CoreMenu' => array(
2742
+ 'version' => '6.6.1.0',
2743
+ 'path' => $baseDir . '/src/Admin/Features/Navigation/CoreMenu.php'
2744
  ),
2745
+ 'Automattic\\WooCommerce\\Admin\\Features\\Navigation\\Init' => array(
2746
+ 'version' => '6.6.1.0',
2747
+ 'path' => $baseDir . '/src/Admin/Features/Navigation/Init.php'
2748
  ),
2749
+ 'Automattic\\WooCommerce\\Admin\\Features\\Onboarding' => array(
2750
+ 'version' => '6.6.1.0',
2751
+ 'path' => $baseDir . '/src/Admin/Features/Onboarding.php'
2752
  ),
2753
+ 'Automattic\\WooCommerce\\Admin\\DeprecatedClassFacade' => array(
2754
+ 'version' => '6.6.1.0',
2755
+ 'path' => $baseDir . '/src/Admin/DeprecatedClassFacade.php'
2756
  ),
2757
  'Automattic\\WooCommerce\\Admin\\PageController' => array(
2758
+ 'version' => '6.6.1.0',
2759
  'path' => $baseDir . '/src/Admin/PageController.php'
2760
  ),
2761
+ 'Automattic\\WooCommerce\\Admin\\PluginsHelper' => array(
2762
+ 'version' => '6.6.1.0',
2763
+ 'path' => $baseDir . '/src/Admin/PluginsHelper.php'
2764
  ),
2765
  'Automattic\\WooCommerce\\Admin\\Schedulers\\SchedulerTraits' => array(
2766
+ 'version' => '6.6.1.0',
2767
  'path' => $baseDir . '/src/Admin/Schedulers/SchedulerTraits.php'
2768
  ),
2769
+ 'Automattic\\WooCommerce\\Admin\\API\\Products' => array(
2770
+ 'version' => '6.6.1.0',
2771
+ 'path' => $baseDir . '/src/Admin/API/Products.php'
2772
  ),
2773
+ 'Automattic\\WooCommerce\\Admin\\API\\MarketingOverview' => array(
2774
+ 'version' => '6.6.1.0',
2775
+ 'path' => $baseDir . '/src/Admin/API/MarketingOverview.php'
2776
  ),
2777
+ 'Automattic\\WooCommerce\\Admin\\API\\Features' => array(
2778
+ 'version' => '6.6.1.0',
2779
+ 'path' => $baseDir . '/src/Admin/API/Features.php'
2780
  ),
2781
+ 'Automattic\\WooCommerce\\Admin\\API\\Coupons' => array(
2782
+ 'version' => '6.6.1.0',
2783
+ 'path' => $baseDir . '/src/Admin/API/Coupons.php'
2784
  ),
2785
+ 'Automattic\\WooCommerce\\Admin\\API\\Marketing' => array(
2786
+ 'version' => '6.6.1.0',
2787
+ 'path' => $baseDir . '/src/Admin/API/Marketing.php'
2788
  ),
2789
+ 'Automattic\\WooCommerce\\Admin\\API\\Plugins' => array(
2790
+ 'version' => '6.6.1.0',
2791
+ 'path' => $baseDir . '/src/Admin/API/Plugins.php'
2792
  ),
2793
+ 'Automattic\\WooCommerce\\Admin\\API\\DataCountries' => array(
2794
+ 'version' => '6.6.1.0',
2795
+ 'path' => $baseDir . '/src/Admin/API/DataCountries.php'
2796
  ),
2797
+ 'Automattic\\WooCommerce\\Admin\\API\\OnboardingTasks' => array(
2798
+ 'version' => '6.6.1.0',
2799
+ 'path' => $baseDir . '/src/Admin/API/OnboardingTasks.php'
2800
  ),
2801
+ 'Automattic\\WooCommerce\\Admin\\API\\Orders' => array(
2802
+ 'version' => '6.6.1.0',
2803
+ 'path' => $baseDir . '/src/Admin/API/Orders.php'
2804
  ),
2805
+ 'Automattic\\WooCommerce\\Admin\\API\\NavigationFavorites' => array(
2806
+ 'version' => '6.6.1.0',
2807
+ 'path' => $baseDir . '/src/Admin/API/NavigationFavorites.php'
2808
  ),
2809
+ 'Automattic\\WooCommerce\\Admin\\API\\OnboardingProfile' => array(
2810
+ 'version' => '6.6.1.0',
2811
+ 'path' => $baseDir . '/src/Admin/API/OnboardingProfile.php'
2812
  ),
2813
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Cache' => array(
2814
+ 'version' => '6.6.1.0',
2815
+ 'path' => $baseDir . '/src/Admin/API/Reports/Cache.php'
2816
  ),
2817
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\DataStore' => array(
2818
+ 'version' => '6.6.1.0',
2819
+ 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/DataStore.php'
2820
  ),
2821
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Query' => array(
2822
+ 'version' => '6.6.1.0',
2823
+ 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Query.php'
2824
  ),
2825
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\DataStore' => array(
2826
+ 'version' => '6.6.1.0',
2827
+ 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/DataStore.php'
2828
  ),
2829
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Segmenter' => array(
2830
+ 'version' => '6.6.1.0',
2831
+ 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Segmenter.php'
2832
+ ),
2833
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Query' => array(
2834
+ 'version' => '6.6.1.0',
2835
+ 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Query.php'
2836
+ ),
2837
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Stats\\Controller' => array(
2838
+ 'version' => '6.6.1.0',
2839
+ 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Stats/Controller.php'
2840
+ ),
2841
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Coupons\\Controller' => array(
2842
+ 'version' => '6.6.1.0',
2843
+ 'path' => $baseDir . '/src/Admin/API/Reports/Coupons/Controller.php'
2844
+ ),
2845
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Import\\Controller' => array(
2846
+ 'version' => '6.6.1.0',
2847
+ 'path' => $baseDir . '/src/Admin/API/Reports/Import/Controller.php'
2848
+ ),
2849
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\DataStore' => array(
2850
+ 'version' => '6.6.1.0',
2851
+ 'path' => $baseDir . '/src/Admin/API/Reports/DataStore.php'
2852
+ ),
2853
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\DataStore' => array(
2854
+ 'version' => '6.6.1.0',
2855
+ 'path' => $baseDir . '/src/Admin/API/Reports/Categories/DataStore.php'
2856
+ ),
2857
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Query' => array(
2858
+ 'version' => '6.6.1.0',
2859
+ 'path' => $baseDir . '/src/Admin/API/Reports/Categories/Query.php'
2860
+ ),
2861
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Categories\\Controller' => array(
2862
+ 'version' => '6.6.1.0',
2863
+ 'path' => $baseDir . '/src/Admin/API/Reports/Categories/Controller.php'
2864
  ),
2865
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Segmenter' => array(
2866
+ 'version' => '6.6.1.0',
2867
+ 'path' => $baseDir . '/src/Admin/API/Reports/Segmenter.php'
2868
  ),
2869
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Query' => array(
2870
+ 'version' => '6.6.1.0',
2871
+ 'path' => $baseDir . '/src/Admin/API/Reports/Revenue/Query.php'
2872
  ),
2873
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Revenue\\Stats\\Controller' => array(
2874
+ 'version' => '6.6.1.0',
2875
+ 'path' => $baseDir . '/src/Admin/API/Reports/Revenue/Stats/Controller.php'
2876
  ),
2877
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\DataStore' => array(
2878
+ 'version' => '6.6.1.0',
2879
  'path' => $baseDir . '/src/Admin/API/Reports/Customers/DataStore.php'
2880
  ),
2881
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Query' => array(
2882
+ 'version' => '6.6.1.0',
2883
+ 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Query.php'
 
 
 
 
2884
  ),
2885
  'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\DataStore' => array(
2886
+ 'version' => '6.6.1.0',
2887
  'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/DataStore.php'
2888
  ),
2889
+ 'Automattic\\WooCommerce\\Admin\\API\\Reports\\Customers\\Stats\\Query' => array(
2890
+ 'version' => '6.6.1.0',
2891
+ 'path' => $baseDir . '/src/Admin/API/Reports/Customers/Stats/Query.php'
2892
  ),