@dropins/storefront-checkout 0.1.0-alpha6 → 0.1.0-alpha61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (302) hide show
  1. package/api/authenticateCustomer/authenticateCustomer.d.ts +18 -0
  2. package/api/authenticateCustomer/index.d.ts +18 -0
  3. package/api/errors/errors.d.ts +30 -0
  4. package/api/errors/index.d.ts +18 -0
  5. package/api/estimateShippingMethods/estimateShippingMethods.d.ts +13 -0
  6. package/api/estimateShippingMethods/fixtures.d.ts +8 -0
  7. package/api/estimateShippingMethods/graphql/estimateShippingMethods.graphql.d.ts +18 -0
  8. package/api/estimateShippingMethods/graphql/index.d.ts +18 -0
  9. package/api/estimateShippingMethods/index.d.ts +18 -0
  10. package/api/fetch-graphql/fetch-graphql.d.ts +25 -0
  11. package/api/fetch-graphql/index.d.ts +18 -0
  12. package/api/fragments.d.ts +21 -0
  13. package/api/getCart/fixtures.d.ts +12 -0
  14. package/api/getCart/getCart.d.ts +18 -0
  15. package/api/getCart/graphql/getCart.graphql.d.ts +19 -0
  16. package/api/getCart/graphql/index.d.ts +18 -0
  17. package/api/getCart/index.d.ts +18 -0
  18. package/api/getCustomer/fixtures.d.ts +5 -0
  19. package/api/getCustomer/getCustomer.d.ts +4 -0
  20. package/api/getCustomer/graphql/getCustomer.graphql.d.ts +18 -0
  21. package/api/getCustomer/graphql/index.d.ts +18 -0
  22. package/api/getCustomer/index.d.ts +18 -0
  23. package/api/getStoreConfig/getStoreConfig.d.ts +6 -0
  24. package/api/getStoreConfig/graphql/getStoreConfig.graphql.d.ts +18 -0
  25. package/api/getStoreConfig/index.d.ts +18 -0
  26. package/api/graphql/CartAddressFragment.graphql.d.ts +19 -0
  27. package/api/graphql/CheckoutDataFragment.graphql.d.ts +18 -0
  28. package/api/graphql/CustomerFragment.graphql.d.ts +18 -0
  29. package/api/graphql/OrderAddressFragment.graphql.d.ts +18 -0
  30. package/api/graphql/OrderFragment.graphql.d.ts +19 -0
  31. package/api/graphql/OrderItemFragment.graphql.d.ts +6 -0
  32. package/api/index.d.ts +35 -0
  33. package/api/initialize/index.d.ts +18 -0
  34. package/api/initialize/initialize.d.ts +15 -0
  35. package/api/initialize/listeners.d.ts +20 -0
  36. package/api/initializeCheckout/index.d.ts +18 -0
  37. package/api/initializeCheckout/initializeCheckout.d.ts +4 -0
  38. package/api/isEmailAvailable/graphql/isEmailAvailable.graphql.d.ts +18 -0
  39. package/api/isEmailAvailable/index.d.ts +18 -0
  40. package/api/isEmailAvailable/isEmailAvailable.d.ts +4 -0
  41. package/api/placeOrder/fixtures.d.ts +20 -0
  42. package/api/placeOrder/graphql/index.d.ts +18 -0
  43. package/api/placeOrder/graphql/placeOrder.graphql.d.ts +18 -0
  44. package/api/placeOrder/index.d.ts +18 -0
  45. package/api/placeOrder/placeOrder.d.ts +18 -0
  46. package/api/resetCheckout/index.d.ts +2 -0
  47. package/api/resetCheckout/resetCheckout.d.ts +18 -0
  48. package/api/setBillingAddress/graphql/setBillingAddress.graphql.d.ts +18 -0
  49. package/api/setBillingAddress/index.d.ts +18 -0
  50. package/api/setBillingAddress/setBillingAddress.d.ts +4 -0
  51. package/api/setGuestEmailOnCart/graphql/setGuestEmailOnCart.graphql.d.ts +18 -0
  52. package/api/setGuestEmailOnCart/index.d.ts +18 -0
  53. package/api/setGuestEmailOnCart/setGuestEmailOnCart.d.ts +18 -0
  54. package/api/setPaymentMethod/graphql/setPaymentMethod.graphql.d.ts +18 -0
  55. package/api/setPaymentMethod/index.d.ts +18 -0
  56. package/api/setPaymentMethod/setPaymentMethod.d.ts +4 -0
  57. package/api/setShippingAddress/graphql/setShippingAddress.graphql.d.ts +18 -0
  58. package/api/setShippingAddress/index.d.ts +18 -0
  59. package/api/setShippingAddress/setShippingAddress.d.ts +4 -0
  60. package/api/setShippingMethods/graphql/setShippingMethodsOnCart.graphql.d.ts +18 -0
  61. package/api/setShippingMethods/index.d.ts +18 -0
  62. package/api/setShippingMethods/setShippingMethods.d.ts +18 -0
  63. package/api/synchronizeCheckout/index.d.ts +18 -0
  64. package/api/synchronizeCheckout/synchronizeCheckout.d.ts +4 -0
  65. package/api/utils/dispatchApiCall.d.ts +38 -0
  66. package/api/utils/enqueueRequest.d.ts +18 -0
  67. package/api/utils/filterControlledErrors.d.ts +18 -0
  68. package/api.d.ts +1 -0
  69. package/api.js +39 -2
  70. package/chunks/OrderError.js +3 -0
  71. package/chunks/ServerErrorSignal.js +3 -0
  72. package/chunks/classes.js +3 -0
  73. package/chunks/fetch-graphql.js +12 -0
  74. package/chunks/isEmailAvailable.js +9 -0
  75. package/chunks/placeOrder2.js +17 -0
  76. package/chunks/setBillingAddress.js +13 -0
  77. package/chunks/setGuestEmailOnCart.js +13 -0
  78. package/chunks/setPaymentMethod.js +18 -0
  79. package/chunks/setShippingMethods.js +18 -0
  80. package/chunks/store-config.js +3 -0
  81. package/chunks/synchronizeCheckout.js +27 -0
  82. package/chunks/withConditionalRendering.js +3 -0
  83. package/components/BillToShippingAddress/BillToShippingAddress.d.ts +9 -0
  84. package/components/BillToShippingAddress/BillToShippingAddressSkeleton.d.ts +4 -0
  85. package/components/BillToShippingAddress/index.d.ts +20 -0
  86. package/components/EstimateShipping/EstimateShipping.d.ts +12 -0
  87. package/components/EstimateShipping/EstimateShippingSkeleton.d.ts +4 -0
  88. package/components/EstimateShipping/index.d.ts +20 -0
  89. package/components/LoginForm/Email.d.ts +13 -0
  90. package/components/LoginForm/LoginForm.d.ts +20 -0
  91. package/components/LoginForm/LoginFormSkeleton.d.ts +4 -0
  92. package/components/LoginForm/SignIn.d.ts +8 -0
  93. package/components/LoginForm/SignOut.d.ts +8 -0
  94. package/components/LoginForm/index.d.ts +22 -0
  95. package/components/OrderConfirmationHeader/OrderConfirmationHeader.d.ts +10 -0
  96. package/components/OrderConfirmationHeader/OrderConfirmationHeaderSkeleton.d.ts +4 -0
  97. package/components/OrderConfirmationHeader/index.d.ts +3 -0
  98. package/components/OutOfStock/OutOfStock.d.ts +11 -0
  99. package/components/OutOfStock/index.d.ts +19 -0
  100. package/components/PaymentMethods/PaymentMethods.d.ts +14 -0
  101. package/components/PaymentMethods/PaymentMethodsSkeleton.d.ts +4 -0
  102. package/components/PaymentMethods/index.d.ts +20 -0
  103. package/components/PlaceOrder/PlaceOrder.d.ts +9 -0
  104. package/components/PlaceOrder/PlaceOrderSkeleton.d.ts +4 -0
  105. package/components/PlaceOrder/index.d.ts +19 -0
  106. package/components/ServerError/ServerError.d.ts +10 -0
  107. package/components/ServerError/index.d.ts +19 -0
  108. package/components/ShippingMethods/ShippingMethods.d.ts +12 -0
  109. package/components/ShippingMethods/ShippingMethodsSkeleton.d.ts +4 -0
  110. package/components/ShippingMethods/index.d.ts +20 -0
  111. package/components/index.d.ts +26 -0
  112. package/containers/BillToShippingAddress/BillToShippingAddress.d.ts +24 -0
  113. package/containers/BillToShippingAddress/index.d.ts +19 -0
  114. package/containers/BillToShippingAddress.d.ts +3 -0
  115. package/containers/BillToShippingAddress.js +3 -1
  116. package/containers/ErrorBanner/ErrorBanner.d.ts +5 -0
  117. package/containers/ErrorBanner/index.d.ts +19 -0
  118. package/containers/ErrorBanner.d.ts +3 -0
  119. package/containers/ErrorBanner.js +3 -0
  120. package/containers/EstimateShipping/EstimateShipping.d.ts +4 -0
  121. package/containers/EstimateShipping/index.d.ts +19 -0
  122. package/containers/EstimateShipping.d.ts +3 -0
  123. package/containers/EstimateShipping.js +3 -0
  124. package/containers/LoginForm/LoginForm.d.ts +11 -0
  125. package/containers/LoginForm/index.d.ts +19 -0
  126. package/containers/LoginForm.d.ts +3 -0
  127. package/containers/LoginForm.js +3 -1
  128. package/containers/MergedCartBanner/MergedCartBanner.d.ts +7 -0
  129. package/containers/MergedCartBanner/index.d.ts +19 -0
  130. package/containers/MergedCartBanner.d.ts +3 -0
  131. package/containers/MergedCartBanner.js +3 -0
  132. package/containers/OrderConfirmationHeader/OrderConfirmationHeader.d.ts +18 -0
  133. package/containers/OrderConfirmationHeader/index.d.ts +3 -0
  134. package/containers/OrderConfirmationHeader.d.ts +3 -0
  135. package/containers/OrderConfirmationHeader.js +3 -0
  136. package/containers/OutOfStock/OutOfStock.d.ts +13 -0
  137. package/containers/OutOfStock/index.d.ts +19 -0
  138. package/containers/OutOfStock.d.ts +3 -0
  139. package/containers/OutOfStock.js +3 -0
  140. package/containers/PaymentMethods/PaymentMethods.d.ts +27 -0
  141. package/containers/PaymentMethods/defaultHandlers.d.ts +4 -0
  142. package/containers/PaymentMethods/index.d.ts +19 -0
  143. package/containers/PaymentMethods.d.ts +3 -0
  144. package/containers/PaymentMethods.js +3 -1
  145. package/containers/PlaceOrder/PlaceOrder.d.ts +15 -0
  146. package/containers/PlaceOrder/index.d.ts +19 -0
  147. package/containers/PlaceOrder.d.ts +3 -0
  148. package/containers/PlaceOrder.js +3 -2
  149. package/containers/ServerError/ServerError.d.ts +8 -0
  150. package/containers/ServerError/index.d.ts +19 -0
  151. package/containers/ServerError.d.ts +3 -0
  152. package/containers/ServerError.js +3 -0
  153. package/containers/ShippingMethods/ShippingMethods.d.ts +18 -0
  154. package/containers/ShippingMethods/hooks/useShippingEstimateEventEmitter.d.ts +19 -0
  155. package/containers/ShippingMethods/index.d.ts +19 -0
  156. package/containers/ShippingMethods.d.ts +3 -0
  157. package/containers/ShippingMethods.js +3 -1
  158. package/containers/index.d.ts +28 -0
  159. package/data/models/acdl.d.ts +115 -0
  160. package/data/models/address.d.ts +21 -0
  161. package/data/models/api.d.ts +33 -0
  162. package/data/models/cart.d.ts +19 -0
  163. package/data/models/country.d.ts +21 -0
  164. package/data/models/custom-attribute.d.ts +21 -0
  165. package/data/models/customer.d.ts +22 -0
  166. package/data/models/email-availability.d.ts +18 -0
  167. package/data/models/index.d.ts +32 -0
  168. package/data/models/order.d.ts +153 -0
  169. package/data/models/payment-method.d.ts +21 -0
  170. package/data/models/price.d.ts +21 -0
  171. package/data/models/region.d.ts +22 -0
  172. package/data/models/shipping-estimate.d.ts +17 -0
  173. package/data/models/shipping-method.d.ts +19 -0
  174. package/data/models/store-config.d.ts +30 -0
  175. package/data/transforms/index.d.ts +27 -0
  176. package/data/transforms/transform-acdl.d.ts +5 -0
  177. package/data/transforms/transform-address.d.ts +95 -0
  178. package/data/transforms/transform-cart.d.ts +7 -0
  179. package/data/transforms/transform-customer-address-input.d.ts +5 -0
  180. package/data/transforms/transform-customer.d.ts +7 -0
  181. package/data/transforms/transform-email-availability.d.ts +6 -0
  182. package/data/transforms/transform-order.d.ts +20 -0
  183. package/data/transforms/transform-payment-methods.d.ts +9 -0
  184. package/data/transforms/transform-shipping-estimate.d.ts +5 -0
  185. package/data/transforms/transform-shipping-methods.d.ts +14 -0
  186. package/data/transforms/transform-store-config.d.ts +6 -0
  187. package/fragments.d.ts +1 -0
  188. package/fragments.js +381 -0
  189. package/hocs/index.d.ts +18 -0
  190. package/hocs/withConditionalRendering.d.ts +13 -0
  191. package/hooks/index.d.ts +20 -0
  192. package/hooks/useBreakpoint/index.d.ts +18 -0
  193. package/hooks/useBreakpoint/useBreakpoint.d.ts +18 -0
  194. package/hooks/useLockScroll/index.d.ts +18 -0
  195. package/hooks/useLockScroll/useLockScroll.d.ts +21 -0
  196. package/hooks/useStableList/index.d.ts +2 -0
  197. package/hooks/useStableList/useStableList.d.ts +2 -0
  198. package/i18n/en_US.json.d.ts +88 -0
  199. package/lib/acdl.d.ts +18 -0
  200. package/lib/fetch-error.d.ts +23 -0
  201. package/lib/index.d.ts +22 -0
  202. package/lib/network-error.d.ts +22 -0
  203. package/lib/state.d.ts +24 -0
  204. package/lib/validation.d.ts +5 -0
  205. package/msw/browser.d.ts +18 -0
  206. package/msw/fixtures/fragments/available-shipping-methods.d.ts +23 -0
  207. package/msw/fixtures/fragments/billing-address.d.ts +60 -0
  208. package/msw/fixtures/fragments/cart.d.ts +149 -0
  209. package/msw/fixtures/fragments/index.d.ts +21 -0
  210. package/msw/fixtures/fragments/shipping-address.d.ts +62 -0
  211. package/msw/fixtures/index.d.ts +20 -0
  212. package/msw/fixtures/mutations/estimate-shipping-methods.d.ts +4 -0
  213. package/msw/fixtures/mutations/index.d.ts +24 -0
  214. package/msw/fixtures/mutations/place-order.d.ts +4 -0
  215. package/msw/fixtures/mutations/set-billing-address.d.ts +5 -0
  216. package/msw/fixtures/mutations/set-guest-email.d.ts +4 -0
  217. package/msw/fixtures/mutations/set-payment-method.d.ts +4 -0
  218. package/msw/fixtures/mutations/set-shipping-address.d.ts +4 -0
  219. package/msw/fixtures/mutations/set-shipping-methods.d.ts +4 -0
  220. package/msw/fixtures/queries/get-cart.d.ts +4 -0
  221. package/msw/fixtures/queries/get-customer-cart-stock-status.d.ts +4 -0
  222. package/msw/fixtures/queries/get-customer.d.ts +5 -0
  223. package/msw/fixtures/queries/get-stock-status.d.ts +4 -0
  224. package/msw/fixtures/queries/get-store-config.d.ts +4 -0
  225. package/msw/fixtures/queries/index.d.ts +23 -0
  226. package/msw/fixtures/queries/is-email-available.d.ts +4 -0
  227. package/msw/handlers.d.ts +4 -0
  228. package/msw/server.d.ts +18 -0
  229. package/package.json +1 -1
  230. package/render/Provider.d.ts +8 -0
  231. package/render/index.d.ts +18 -0
  232. package/render/render.d.ts +6 -0
  233. package/render.d.ts +1 -0
  234. package/render.js +9 -1
  235. package/signals/CartSignal.d.ts +7 -0
  236. package/signals/CustomerSignal.d.ts +7 -0
  237. package/signals/EstimateShippingMethodsSignal.d.ts +7 -0
  238. package/signals/IsBillToShippingSignal.d.ts +18 -0
  239. package/signals/SelectedPaymentMethodSignal.d.ts +18 -0
  240. package/signals/SelectedShippingMethodSignal.d.ts +4 -0
  241. package/signals/ServerErrorSignal.d.ts +18 -0
  242. package/signals/StoreConfigSignal.d.ts +7 -0
  243. package/signals/index.d.ts +25 -0
  244. package/tests/constants.d.ts +19 -0
  245. package/tests/integration/utils/index.d.ts +19 -0
  246. package/tests/integration/utils/setup.d.ts +8 -0
  247. package/tests/integration/utils/user-actions.d.ts +18 -0
  248. package/tests/mocks/svg.d.ts +20 -0
  249. package/tests/utils/expectError.d.ts +25 -0
  250. package/tests/utils/index.d.ts +19 -0
  251. package/tests/utils/mockEvents.d.ts +21 -0
  252. package/utils/convertCase/convertCase.d.ts +4 -0
  253. package/utils/convertCase/index.d.ts +18 -0
  254. package/utils/getDisplayName/getDisplayName.d.ts +4 -0
  255. package/utils/getDisplayName/index.d.ts +18 -0
  256. package/utils/index.d.ts +21 -0
  257. package/utils/isEmpty/index.d.ts +18 -0
  258. package/utils/isEmpty/isEmpty.d.ts +18 -0
  259. package/utils/isNullish/index.d.ts +18 -0
  260. package/utils/isNullish/isNullish.d.ts +18 -0
  261. package/utils/isUnexpectedError/index.d.ts +18 -0
  262. package/utils/isUnexpectedError/isUnexpectedError.d.ts +18 -0
  263. package/utils/shippingMethods/index.d.ts +18 -0
  264. package/utils/shippingMethods/isEqual.d.ts +4 -0
  265. package/193.js +0 -1
  266. package/212.js +0 -2
  267. package/212.js.LICENSE.txt +0 -1
  268. package/261.js +0 -2
  269. package/261.js.LICENSE.txt +0 -1
  270. package/357.js +0 -1
  271. package/405.js +0 -1
  272. package/41.js +0 -2
  273. package/41.js.LICENSE.txt +0 -1
  274. package/494.js +0 -2
  275. package/494.js.LICENSE.txt +0 -1
  276. package/516.js +0 -1
  277. package/549.js +0 -2
  278. package/549.js.LICENSE.txt +0 -1
  279. package/565.js +0 -2
  280. package/565.js.LICENSE.txt +0 -1
  281. package/599.js +0 -1
  282. package/621.js +0 -1
  283. package/632.js +0 -1
  284. package/636.js +0 -2
  285. package/636.js.LICENSE.txt +0 -1
  286. package/687.js +0 -2
  287. package/687.js.LICENSE.txt +0 -1
  288. package/693.js +0 -1
  289. package/731.js +0 -1
  290. package/757.js +0 -1
  291. package/805.js +0 -2
  292. package/805.js.LICENSE.txt +0 -1
  293. package/88.js +0 -2
  294. package/88.js.LICENSE.txt +0 -1
  295. package/api.js.LICENSE.txt +0 -1
  296. package/containers/BillingForm.js +0 -1
  297. package/containers/Checkout.js +0 -2
  298. package/containers/Checkout.js.LICENSE.txt +0 -1
  299. package/containers/OrderSummary.js +0 -1
  300. package/containers/PlaceOrder.js.LICENSE.txt +0 -1
  301. package/containers/ShippingForm.js +0 -1
  302. package/runtime.js +0 -1
@@ -0,0 +1,7 @@
1
+ import { Cart } from '../data/models';
2
+
3
+ export declare const cartSignal: import('@preact/signals-core').Signal<{
4
+ pending: boolean;
5
+ data?: Cart | null | undefined;
6
+ }>;
7
+ //# sourceMappingURL=CartSignal.d.ts.map
@@ -0,0 +1,7 @@
1
+ import { Customer } from '../data/models';
2
+
3
+ export declare const customerSignal: import('@preact/signals-core').Signal<{
4
+ pending: boolean;
5
+ data?: Customer | null | undefined;
6
+ }>;
7
+ //# sourceMappingURL=CustomerSignal.d.ts.map
@@ -0,0 +1,7 @@
1
+ import { ShippingMethod } from '../data/models';
2
+
3
+ export declare const estimateShippingMethodsSignal: import('@preact/signals-core').Signal<{
4
+ pending: boolean;
5
+ data?: ShippingMethod[] | undefined;
6
+ }>;
7
+ //# sourceMappingURL=EstimateShippingMethodsSignal.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export declare const isBillToShippingSignal: import('@preact/signals-core').Signal<boolean>;
18
+ //# sourceMappingURL=IsBillToShippingSignal.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export declare const selectedPaymentMethodSignal: import('@preact/signals-core').Signal<string | undefined>;
18
+ //# sourceMappingURL=SelectedPaymentMethodSignal.d.ts.map
@@ -0,0 +1,4 @@
1
+ import { ShippingMethod } from '../data/models';
2
+
3
+ export declare const selectedShippingMethodSignal: import('@preact/signals-core').Signal<ShippingMethod | undefined>;
4
+ //# sourceMappingURL=SelectedShippingMethodSignal.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export declare const serverErrorSignal: import('@preact/signals-core').Signal<string | undefined>;
18
+ //# sourceMappingURL=ServerErrorSignal.d.ts.map
@@ -0,0 +1,7 @@
1
+ import { StoreConfig } from '../data/models';
2
+
3
+ export declare const storeConfigSignal: import('@preact/signals-core').Signal<{
4
+ data?: StoreConfig | undefined;
5
+ pending: boolean;
6
+ }>;
7
+ //# sourceMappingURL=StoreConfigSignal.d.ts.map
@@ -0,0 +1,25 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export * from './CartSignal';
18
+ export * from './CustomerSignal';
19
+ export * from './EstimateShippingMethodsSignal';
20
+ export * from './IsBillToShippingSignal';
21
+ export * from './SelectedPaymentMethodSignal';
22
+ export * from './SelectedShippingMethodSignal';
23
+ export * from './ServerErrorSignal';
24
+ export * from './StoreConfigSignal';
25
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export declare const TEST_CART_ID = "fake-cart-id";
18
+ export declare const TEST_ORDER_ID = "fake-order-id";
19
+ //# sourceMappingURL=constants.d.ts.map
@@ -0,0 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export * from './setup';
18
+ export * from './user-actions';
19
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,8 @@
1
+ import { JSX } from 'preact';
2
+
3
+ export declare function setupCheckout({ clearLocalStorage, registerCheckoutListeners, checkout, }: {
4
+ clearLocalStorage?: boolean;
5
+ registerCheckoutListeners?: boolean;
6
+ checkout: JSX.Element;
7
+ }): Promise<void>;
8
+ //# sourceMappingURL=setup.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export declare function fillShippingAddress(): Promise<void>;
18
+ //# sourceMappingURL=user-actions.d.ts.map
@@ -0,0 +1,20 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ declare const _default: "SvgrURL";
18
+ export default _default;
19
+ export declare const ReactComponent = "div";
20
+ //# sourceMappingURL=svg.d.ts.map
@@ -0,0 +1,25 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ type expectErrorProps = {
18
+ candidate: (...args: any[]) => Promise<any>;
19
+ args: any[];
20
+ expectedError: any;
21
+ expectedMessage: string;
22
+ };
23
+ export declare function expectError({ candidate, args, expectedError, expectedMessage, }: expectErrorProps): Promise<void>;
24
+ export {};
25
+ //# sourceMappingURL=expectError.d.ts.map
@@ -0,0 +1,19 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export * from './expectError';
18
+ export * from './mockEvents';
19
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,21 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export declare const mockEvents: (eventsMapping: Record<string, {
18
+ waitForEmit?: boolean;
19
+ payload?: any;
20
+ }>) => void;
21
+ //# sourceMappingURL=mockEvents.d.ts.map
@@ -0,0 +1,4 @@
1
+ export declare const convertToCamelCase: (key: string) => string;
2
+ export declare const convertToSnakeCase: (key: string) => string;
3
+ export declare const convertKeysCase: (data: any, type: 'snakeCase' | 'camelCase', dictionary?: Record<string, string>) => any;
4
+ //# sourceMappingURL=convertCase.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export * from './convertCase';
18
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,4 @@
1
+ import { Container } from '@dropins/tools/types/elsie/src/lib/types';
2
+
3
+ export declare function getDisplayName(WrappedComponent: Container<any>): string;
4
+ //# sourceMappingURL=getDisplayName.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export * from './getDisplayName';
18
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,21 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export * from './convertCase';
18
+ export * from './getDisplayName';
19
+ export * from './isEmpty';
20
+ export * from './isUnexpectedError';
21
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export * from './isEmpty';
18
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export declare function isEmpty(obj: Record<string, any>): boolean;
18
+ //# sourceMappingURL=isEmpty.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export * from './isNullish';
18
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export declare const isNullish: (value: any) => boolean;
18
+ //# sourceMappingURL=isNullish.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL:
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export * from './isUnexpectedError';
18
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export declare const isUnexpectedError: (error: any) => boolean;
18
+ //# sourceMappingURL=isUnexpectedError.d.ts.map
@@ -0,0 +1,18 @@
1
+ /********************************************************************
2
+ * ADOBE CONFIDENTIAL
3
+ * __________________
4
+ *
5
+ * Copyright 2024 Adobe
6
+ * All Rights Reserved.
7
+ *
8
+ * NOTICE: All information contained herein is, and remains
9
+ * the property of Adobe and its suppliers, if any. The intellectual
10
+ * and technical concepts contained herein are proprietary to Adobe
11
+ * and its suppliers and are protected by all applicable intellectual
12
+ * property laws, including trade secret and copyright laws.
13
+ * Dissemination of this information or reproduction of this material
14
+ * is strictly forbidden unless prior written permission is obtained
15
+ * from Adobe.
16
+ *******************************************************************/
17
+ export * from './isEqual';
18
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,4 @@
1
+ import { ShippingMethod } from '../../data/models';
2
+
3
+ export declare const isEqual: (a: ShippingMethod, b: ShippingMethod) => boolean;
4
+ //# sourceMappingURL=isEqual.d.ts.map
package/193.js DELETED
@@ -1 +0,0 @@
1
- export const id=193;export const ids=[193];export const modules={6364:(e,n,r)=>{r.d(n,{td:()=>h});var t=r(3474),o=r(5437);function i(){throw new Error("Cycle detected")}function a(){if(d>1)d--;else{for(var e,n=!1;void 0!==l;){var r=l;for(l=void 0,u++;void 0!==r;){var t=r.o;if(r.o=void 0,r.f&=-3,!(8&r.f)&&f(r))try{r.c()}catch(r){n||(e=r,n=!0)}r=t}}if(u=0,d--,n)throw e}}var c,s=void 0,l=void 0,d=0,u=0,b=0;function p(e){if(void 0!==s){var n=e.n;if(void 0===n||n.t!==s)return n={i:0,S:e,p:s.s,n:void 0,t:s,e:void 0,x:void 0,r:n},void 0!==s.s&&(s.s.n=n),s.s=n,e.n=n,32&s.f&&e.S(n),n;if(-1===n.i)return n.i=0,void 0!==n.n&&(n.n.p=n.p,void 0!==n.p&&(n.p.n=n.n),n.p=s.s,n.n=void 0,s.s.n=n,s.s=n),n}}function v(e){this.v=e,this.i=0,this.n=void 0,this.t=void 0}function h(e){return new v(e)}function f(e){for(var n=e.s;void 0!==n;n=n.n)if(n.S.i!==n.i||!n.S.h()||n.S.i!==n.i)return!0;return!1}function y(e){for(var n=e.s;void 0!==n;n=n.n){var r=n.S.n;if(void 0!==r&&(n.r=r),n.S.n=n,n.i=-1,void 0===n.n){e.s=n;break}}}function g(e){for(var n=e.s,r=void 0;void 0!==n;){var t=n.p;-1===n.i?(n.S.U(n),void 0!==t&&(t.n=n.n),void 0!==n.n&&(n.n.p=t)):r=n,n.S.n=n.r,void 0!==n.r&&(n.r=void 0),n=t}e.s=r}function x(e){v.call(this,void 0),this.x=e,this.s=void 0,this.g=b-1,this.f=4}function m(e){var n=e.u;if(e.u=void 0,"function"==typeof n){d++;var r=s;s=void 0;try{n()}catch(n){throw e.f&=-2,e.f|=8,_(e),n}finally{s=r,a()}}}function _(e){for(var n=e.s;void 0!==n;n=n.n)n.S.U(n);e.x=void 0,e.s=void 0,m(e)}function k(e){if(s!==this)throw new Error("Out-of-order effect");g(this),s=e,this.f&=-2,8&this.f&&_(this),a()}function w(e){this.x=e,this.u=void 0,this.s=void 0,this.o=void 0,this.f=32}function O(e){var n=new w(e);try{n.c()}catch(e){throw n.d(),e}return n.d.bind(n)}function j(e,n){t.options[e]=n.bind(null,t.options[e]||function(){})}function S(e){c&&c(),c=e&&e.S()}function P(e){var n=this,r=e.data,i=function(e){return(0,o.useMemo)((function(){return h(e)}),[])}(r);i.value=r;var a=(0,o.useMemo)((function(){for(var e=n.__v;e=e.__;)if(e.__c){e.__c.__$f|=4;break}return n.__$u.c=function(){var e;(0,t.isValidElement)(a.peek())||3!==(null==(e=n.base)?void 0:e.nodeType)?(n.__$f|=1,n.setState({})):n.base.data=a.peek()},new x((function(){var e=i.value.value;return 0===e?0:!0===e?"":e||""}))}),[]);return a.value}function E(e,n,r,t){var o=n in e&&void 0===e.ownerSVGElement,i=h(r);return{o:function(e,n){i.value=e,t=n},d:O((function(){var r=i.value.value;t[n]!==r&&(t[n]=r,o?e[n]=r:r?e.setAttribute(n,r):e.removeAttribute(n))}))}}v.prototype.h=function(){return!0},v.prototype.S=function(e){this.t!==e&&void 0===e.e&&(e.x=this.t,void 0!==this.t&&(this.t.e=e),this.t=e)},v.prototype.U=function(e){if(void 0!==this.t){var n=e.e,r=e.x;void 0!==n&&(n.x=r,e.e=void 0),void 0!==r&&(r.e=n,e.x=void 0),e===this.t&&(this.t=r)}},v.prototype.subscribe=function(e){var n=this;return O((function(){var r=n.value,t=32&this.f;this.f&=-33;try{e(r)}finally{this.f|=t}}))},v.prototype.valueOf=function(){return this.value},v.prototype.toString=function(){return this.value+""},v.prototype.toJSON=function(){return this.value},v.prototype.peek=function(){return this.v},Object.defineProperty(v.prototype,"value",{get:function(){var e=p(this);return void 0!==e&&(e.i=this.i),this.v},set:function(e){if(s instanceof x&&function(){throw new Error("Computed cannot have side-effects")}(),e!==this.v){u>100&&i(),this.v=e,this.i++,b++,d++;try{for(var n=this.t;void 0!==n;n=n.x)n.t.N()}finally{a()}}}}),(x.prototype=new v).h=function(){if(this.f&=-3,1&this.f)return!1;if(32==(36&this.f))return!0;if(this.f&=-5,this.g===b)return!0;if(this.g=b,this.f|=1,this.i>0&&!f(this))return this.f&=-2,!0;var e=s;try{y(this),s=this;var n=this.x();(16&this.f||this.v!==n||0===this.i)&&(this.v=n,this.f&=-17,this.i++)}catch(e){this.v=e,this.f|=16,this.i++}return s=e,g(this),this.f&=-2,!0},x.prototype.S=function(e){if(void 0===this.t){this.f|=36;for(var n=this.s;void 0!==n;n=n.n)n.S.S(n)}v.prototype.S.call(this,e)},x.prototype.U=function(e){if(void 0!==this.t&&(v.prototype.U.call(this,e),void 0===this.t)){this.f&=-33;for(var n=this.s;void 0!==n;n=n.n)n.S.U(n)}},x.prototype.N=function(){if(!(2&this.f)){this.f|=6;for(var e=this.t;void 0!==e;e=e.x)e.t.N()}},x.prototype.peek=function(){if(this.h()||i(),16&this.f)throw this.v;return this.v},Object.defineProperty(x.prototype,"value",{get:function(){1&this.f&&i();var e=p(this);if(this.h(),void 0!==e&&(e.i=this.i),16&this.f)throw this.v;return this.v}}),w.prototype.c=function(){var e=this.S();try{if(8&this.f)return;if(void 0===this.x)return;var n=this.x();"function"==typeof n&&(this.u=n)}finally{e()}},w.prototype.S=function(){1&this.f&&i(),this.f|=1,this.f&=-9,m(this),y(this),d++;var e=s;return s=this,k.bind(this,e)},w.prototype.N=function(){2&this.f||(this.f|=2,this.o=l,l=this)},w.prototype.d=function(){this.f|=8,1&this.f||_(this)},P.displayName="_st",Object.defineProperties(v.prototype,{constructor:{configurable:!0,value:void 0},type:{configurable:!0,value:P},props:{configurable:!0,get:function(){return{data:this}}},__b:{configurable:!0,value:1}}),j("__b",(function(e,n){if("string"==typeof n.type){var r,t=n.props;for(var o in t)if("children"!==o){var i=t[o];i instanceof v&&(r||(n.__np=r={}),r[o]=i,t[o]=i.peek())}}e(n)})),j("__r",(function(e,n){S();var r,t=n.__c;t&&(t.__$f&=-2,void 0===(r=t.__$u)&&(t.__$u=r=function(e){var n;return O((function(){n=this})),n.c=function(){t.__$f|=1,t.setState({})},n}())),S(r),e(n)})),j("__e",(function(e,n,r,t){S(),e(n,r,t)})),j("diffed",(function(e,n){var r;if(S(),"string"==typeof n.type&&(r=n.__e)){var t=n.__np,o=n.props;if(t){var i=r.U;if(i)for(var a in i){var c=i[a];void 0===c||a in t||(c.d(),i[a]=void 0)}else r.U=i={};for(var s in t){var l=i[s],d=t[s];void 0===l?(l=E(r,s,d,o),i[s]=l):l.o(d,o)}}}e(n)})),j("unmount",(function(e,n){if("string"==typeof n.type){var r=n.__e;if(r){var t=r.U;if(t)for(var o in r.U=void 0,t){var i=t[o];i&&i.d()}}}else{var a=n.__c;if(a){var c=a.__$u;c&&(a.__$u=void 0,c.d())}}e(n)})),j("__h",(function(e,n,r,t){(t<3||9===t)&&(n.__$f|=2),e(n,r,t)})),t.Component.prototype.shouldComponentUpdate=function(e,n){var r=this.__$u;if(!(r&&void 0!==r.s||4&this.__$f))return!0;if(3&this.__$f)return!0;for(var t in n)return!0;for(var o in e)if("__source"!==o&&e[o]!==this.props[o])return!0;for(var i in this.props)if(!(i in e))return!0;return!1}},1148:(e,n,r)=>{r.d(n,{Z:()=>c});var t,o,i=r(3354);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var r=arguments[n];for(var t in r)Object.prototype.hasOwnProperty.call(r,t)&&(e[t]=r[t])}return e},a.apply(this,arguments)}const c=function(e){return i.createElement("svg",a({width:22,height:22,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),t||(t=i.createElement("path",{d:"M5.05 20.55a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM18.05 20.55a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM17.4 17.54H5.63L3.84 1.44H1.16",stroke:"currentColor"})),o||(o=i.createElement("path",{d:"m4.24 5.02 16.6 1.79-.8 7.16H5.24",stroke:"currentColor"})))}},7959:(e,n,r)=>{r.d(n,{Z:()=>a});var t,o=r(3354);function i(){return i=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var r=arguments[n];for(var t in r)Object.prototype.hasOwnProperty.call(r,t)&&(e[t]=r[t])}return e},i.apply(this,arguments)}const a=function(e){return o.createElement("svg",i({width:24,height:24,fill:"none","data-name":"placeholder_icon",xmlns:"http://www.w3.org/2000/svg"},e),t||(t=o.createElement("circle",{cx:12,cy:12,r:8.25,stroke:"currentColor"})))}},2843:(e,n,r)=>{r.d(n,{Z:()=>c});var t,o,i=r(3354);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var n=1;n<arguments.length;n++){var r=arguments[n];for(var t in r)Object.prototype.hasOwnProperty.call(r,t)&&(e[t]=r[t])}return e},a.apply(this,arguments)}const c=function(e){return i.createElement("svg",a({width:24,height:24,fill:"none",xmlns:"http://www.w3.org/2000/svg"},e),t||(t=i.createElement("path",{d:"M17.93 14.8v3.95H5.97c-1.22 0-2.22-.78-2.22-1.75V6.5m0 0c0-.97.99-1.75 2.22-1.75h9.97v3.5H5.97c-1.22 0-2.22-.78-2.22-1.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})),o||(o=i.createElement("path",{d:"M19.35 11.64h-5.31v3.17h5.31v-3.17ZM17.93 11.64V8.25h-2.78",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"})))}},9853:(e,n,r)=>{r.d(n,{z:()=>O});var t=r(5587),o=r(1892),i=r.n(o),a=r(5760),c=r.n(a),s=r(8311),l=r.n(s),d=r(8192),u=r.n(d),b=r(8060),p=r.n(b),v=r(4865),h=r.n(v),f=r(4367),y={};y.styleTagTransform=h(),y.setAttributes=u(),y.insert=l().bind(null,"head"),y.domAPI=c(),y.insertStyleElement=p(),i()(f.Z,y),f.Z&&f.Z.locals&&f.Z.locals;var g=r(7188);function x(e){return x="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},x(e)}var m=["value","variant","size","icon","className","children","disabled","active","activeChildren","activeIcon"];function _(e,n){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(e);n&&(t=t.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),r.push.apply(r,t)}return r}function k(e){for(var n=1;n<arguments.length;n++){var r=null!=arguments[n]?arguments[n]:{};n%2?_(Object(r),!0).forEach((function(n){w(e,n,r[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):_(Object(r)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(r,n))}))}return e}function w(e,n,r){return(n=function(e){var n=function(e,n){if("object"!==x(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var t=r.call(e,"string");if("object"!==x(t))return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===x(n)?n:String(n)}(n))in e?Object.defineProperty(e,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[n]=r,e}var O=function(e){var n=e.value,r=e.variant,o=void 0===r?"primary":r,i=e.size,a=void 0===i?"medium":i,c=e.icon,s=e.className,l=e.children,d=e.disabled,u=void 0!==d&&d,b=e.active,p=void 0!==b&&b,v=e.activeChildren,h=e.activeIcon,f=function(e,n){if(null==e)return{};var r,t,o=function(e,n){if(null==e)return{};var r,t,o={},i=Object.keys(e);for(t=0;t<i.length;t++)r=i[t],n.indexOf(r)>=0||(o[r]=e[r]);return o}(e,n);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(t=0;t<i.length;t++)r=i[t],n.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(o[r]=e[r])}return o}(e,m),y="elsie-button";(c&&!l||c&&p&&!v||!c&&p&&h)&&(y="elsie-iconButton"),p&&v&&(y="elsie-button"),s=(0,t.S)([y,"".concat(y,"--").concat(a),"".concat(y,"--").concat(o),["".concat(y,"--").concat(o,"--disabled"),u],l&&c&&"".concat(y,"--with-icon"),!l&&v&&c&&"".concat(y,"--with-icon"),p&&h&&"".concat(y,"--with-icon"),s]);var x=(0,t.S)(["elsie-button-icon","elsie-button-icon--".concat(o),["elsie-button-icon--".concat(o,"--disabled"),u],null==c?void 0:c.props.className]);return(0,g.jsxs)("button",k(k({role:"button"},f),{},{value:n,className:s,disabled:u,active:p,children:[c&&!p&&(0,g.jsx)(c.type,k(k({},c.props),{},{className:x})),h&&p&&(0,g.jsx)(h.type,k(k({},h.props),{},{className:x})),l&&!p&&("string"==typeof l?(0,g.jsx)("span",{children:l}):l),p&&v&&("string"==typeof v?(0,g.jsx)("span",{children:v}):v)]}))}},5013:(e,n,r)=>{r.d(n,{X:()=>P});var t=r(4853),o=r(5587),i=r(6966),a=r(1072),c=r(1892),s=r.n(c),l=r(5760),d=r.n(l),u=r(8311),b=r.n(u),p=r(8192),v=r.n(p),h=r(8060),f=r.n(h),y=r(4865),g=r.n(y),x=r(2429),m={};m.styleTagTransform=g(),m.setAttributes=v(),m.insert=b().bind(null,"head"),m.domAPI=d(),m.insertStyleElement=f(),s()(x.Z,m),x.Z&&x.Z.locals&&x.Z.locals;var _=r(7188);function k(e){return k="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},k(e)}var w=["name","value","size","disabled","error","label","description","className"];function O(e,n){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(e);n&&(t=t.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),r.push.apply(r,t)}return r}function j(e){for(var n=1;n<arguments.length;n++){var r=null!=arguments[n]?arguments[n]:{};n%2?O(Object(r),!0).forEach((function(n){S(e,n,r[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):O(Object(r)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(r,n))}))}return e}function S(e,n,r){return(n=function(e){var n=function(e,n){if("object"!==k(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var t=r.call(e,"string");if("object"!==k(t))return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===k(n)?n:String(n)}(n))in e?Object.defineProperty(e,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[n]=r,e}var P=function(e){var n=e.name,r=e.value,c=e.size,s=void 0===c?"medium":c,l=e.disabled,d=void 0!==l&&l,u=e.error,b=void 0!==u&&u,p=e.label,v=void 0===p?"":p,h=e.description,f=void 0===h?"":h,y=e.className,g=function(e,n){if(null==e)return{};var r,t,o=function(e,n){if(null==e)return{};var r,t,o={},i=Object.keys(e);for(t=0;t<i.length;t++)r=i[t],n.indexOf(r)>=0||(o[r]=e[r]);return o}(e,n);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(t=0;t<i.length;t++)r=i[t],n.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(o[r]=e[r])}return o}(e,w),x=(0,t.useRef)(null);return(0,_.jsxs)("label",{className:(0,o.S)(["elsie-checkbox",["elsie-checkbox--disabled",d]]),children:[(0,_.jsx)("input",j({ref:x,name:n,value:r,type:"checkbox",disabled:d,className:(0,o.S)(["elsie-checkbox__checkbox",["elsie-checkbox__checkbox--error",b],y])},g)),(0,_.jsx)("span",{className:(0,o.S)(["elsie-checkbox__box",["elsie-checkbox__box--error",b],["elsie-checkbox__box--disabled",d]]),tabIndex:d?-1:0,onKeyDown:function(e){var n;" "===e.key&&(null==x||null===(n=x.current)||void 0===n||n.click())},children:(0,_.jsx)(a.J,{className:(0,o.S)(["elsie-checkbox__checkmark"]),source:i.Z,size:"16",stroke:"3"})}),(0,_.jsx)("div",{className:(0,o.S)(["elsie-checkbox__label","elsie-checkbox__label--".concat(s),["elsie-checkbox__label--disabled",d]]),children:v}),(0,_.jsx)("div",{}),(0,_.jsx)("div",{className:(0,o.S)(["elsie-checkbox__description","elsie-checkbox__description--".concat(s),["elsie-checkbox__description--disabled",d]]),children:f})]})}},51:(e,n,r)=>{r.d(n,{i:()=>x});var t=r(5587),o=r(1892),i=r.n(o),a=r(5760),c=r.n(a),s=r(8311),l=r.n(s),d=r(8192),u=r.n(d),b=r(8060),p=r.n(b),v=r(4865),h=r.n(v),f=r(5238),y={};y.styleTagTransform=h(),y.setAttributes=u(),y.insert=l().bind(null,"head"),y.domAPI=c(),y.insertStyleElement=p(),i()(f.Z,y),f.Z&&f.Z.locals&&f.Z.locals;var g=r(7188),x=function(e){var n=e.variant,r=void 0===n?"primary":n,o=e.className;return(0,g.jsx)("hr",{role:"separator",className:(0,t.S)(["elsie-divider","elsie-divider--".concat(r),o])})}},746:(e,n,r)=>{r.d(n,{g:()=>p}),r(3474);var t=r(5437),o=r(9724),i=r(5587),a=r(7188);function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}var s=["slot","context","className"];function l(e,n){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(e);n&&(t=t.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),r.push.apply(r,t)}return r}function d(e){for(var n=1;n<arguments.length;n++){var r=null!=arguments[n]?arguments[n]:{};n%2?l(Object(r),!0).forEach((function(n){u(e,n,r[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):l(Object(r)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(r,n))}))}return e}function u(e,n,r){return(n=function(e){var n=function(e,n){if("object"!==c(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var t=r.call(e,"string");if("object"!==c(t))return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===c(n)?n:String(n)}(n))in e?Object.defineProperty(e,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[n]=r,e}function b(e,n){(null==n||n>e.length)&&(n=e.length);for(var r=0,t=new Array(n);r<n;r++)t[r]=e[r];return t}function p(e){var n,r,c=e.slot,l=e.context,u=e.className,p=function(e,n){if(null==e)return{};var r,t,o=function(e,n){if(null==e)return{};var r,t,o={},i=Object.keys(e);for(t=0;t<i.length;t++)r=i[t],n.indexOf(r)>=0||(o[r]=e[r]);return o}(e,n);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(t=0;t<i.length;t++)r=i[t],n.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(o[r]=e[r])}return o}(e,s),v=(0,t.useContext)(o.fH).intl,h=(n=(0,t.useState)([]),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,n){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var t,o,i,a,c=[],s=!0,l=!1;try{if(i=(r=r.call(e)).next,0===n){if(Object(r)!==r)return;s=!1}else for(;!(s=(t=i.call(r)).done)&&(c.push(t.value),c.length!==n);s=!0);}catch(e){l=!0,o=e}finally{try{if(!s&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(l)throw o}}return c}}(n,r)||function(e,n){if(e){if("string"==typeof e)return b(e,n);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?b(e,n):void 0}}(n,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),f=h[0],y=h[1],g=d(d({},l),{},{_setContent:y,_dictionary:v.dictionary}),x=JSON.stringify(g),m=(0,t.useCallback)((function(e){y([]),null==c||c(g,null!=e?e:null)}),[c,x]);return(0,a.jsx)("div",d(d({},p),{},{className:(0,i.S)(["elsie-slot",u]),ref:m,children:f}))}},4367:(e,n,r)=>{r.d(n,{Z:()=>c});var t=r(4933),o=r.n(t),i=r(3476),a=r.n(i)()(o());a.push([e.id,"/* Common button styles */\n.elsie-button,\n.elsie-iconButton {\n border: 0 none;\n cursor: pointer;\n white-space: normal;\n}\n\n.elsie-button {\n border-radius: var(--shape-border-radius-3);\n font-size: var(--type-button-1-font);\n font-weight: var(--type-button-1-font);\n padding: var(--spacing-xsmall) var(--spacing-medium);\n display: flex;\n justify-content: center;\n align-items: center;\n text-align: left;\n word-wrap: break-word;\n}\n\n.elsie-iconButton {\n border-radius: 50%; /* Make the button a perfect circle */\n height: var(--spacing-xbig);\n width: var(--spacing-xbig);\n padding: var(--spacing-xsmall);\n}\n\n.elsie-button:disabled,\n.elsie-iconButton:disabled {\n pointer-events: none;\n user-select: none;\n}\n\n.elsie-button:not(:disabled),\n.elsie-iconButton:not(:disabled) {\n cursor: pointer;\n}\n\n.elsie-button:hover > svg,\n.elsie-iconButton:hover > svg {\n fill: var(--color-neutral-300);\n}\n\n.elsie-button:focus,\n.elsie-iconButton:focus {\n outline: var(--spacing-xxsmall) solid var(--color-neutral-400);\n}\n\n/* Primary */\n.elsie-button--primary,\n.elsie-iconButton--primary {\n border: none;\n background: var(--color-brand-500) 0 0% no-repeat padding-box;\n color: var(--color-neutral-50);\n text-align: left;\n margin-right: 0;\n}\n\n.elsie-iconButton--primary {\n border-radius: var(--spacing-xbig);\n min-height: var(--spacing-xbig);\n min-width: var(--spacing-xbig);\n padding: var(--spacing-xsmall);\n}\n\n.elsie-button--primary--disabled,\n.elsie-iconButton--primary--disabled {\n background: var(--color-neutral-300) 0 0% no-repeat padding-box;\n color: var(--color-neutral-500);\n fill: var(--color-neutral-300);\n pointer-events: none;\n user-select: none;\n}\n\n.elsie-button--primary:hover,\n.elsie-iconButton--primary:hover {\n background: var(--color-brand-600) 0 0% no-repeat padding-box;\n}\n\n/* Secondary */\n.elsie-button--secondary,\n.elsie-iconButton--secondary {\n border: var(--shape-border-width-2) solid var(--color-brand-500);\n background: none 0 0% no-repeat padding-box;\n color: var(--color-brand-500);\n padding-top: calc(var(--spacing-xsmall) - var(--shape-border-width-2));\n padding-left: calc(var(--spacing-medium) - var(--shape-border-width-2));\n}\n\n.elsie-iconButton--secondary {\n border-radius: var(--spacing-xbig);\n min-height: var(--spacing-xbig);\n min-width: var(--spacing-xbig);\n padding: var(--spacing-xsmall);\n padding-top: calc(var(--spacing-xsmall) - var(--shape-border-width-2));\n padding-left: calc(var(--spacing-xsmall) - var(--shape-border-width-2));\n}\n\n.elsie-button--secondary--disabled,\n.elsie-iconButton--secondary--disabled {\n border: var(--shape-border-width-2) solid var(--color-neutral-300);\n background: none 0 0% no-repeat padding-box;\n color: var(--color-neutral-500);\n fill: var(--color-neutral-300);\n pointer-events: none;\n user-select: none;\n}\n\n.elsie-button--secondary:hover,\n.elsie-iconButton--secondary:hover {\n border: var(--shape-border-width-2) solid var(--color-brand-600);\n color: var(--color-brand-600);\n}\n\n/* Tertiary */\n.elsie-button--tertiary,\n.elsie-iconButton--tertiary {\n border: none;\n background: none 0 0% no-repeat padding-box;\n color: var(--color-brand-500);\n}\n\n.elsie-iconButton--tertiary {\n border: none;\n min-height: var(--spacing-xbig);\n min-width: var(--spacing-xbig);\n padding: var(--spacing-xsmall);\n}\n\n.elsie-button--tertiary--disabled,\n.elsie-iconButton--tertiary--disabled {\n border: none;\n color: var(--color-neutral-500);\n pointer-events: none;\n user-select: none;\n}\n\n.elsie-button--tertiary:hover,\n.elsie-iconButton--tertiary:hover {\n color: var(--color-brand-600);\n}\n\n/* Button Sizes */\n.elsie-button--large {\n font: var(--type-button-1-font);\n letter-spacing: var(--type-button-1-letter-spacing);\n}\n\n.elsie-button--medium {\n font: var(--type-button-2-font);\n letter-spacing: var(--type-button-2-letter-spacing);\n}\n\n.elsie-button-icon {\n height: 24px;\n}\n\n/* No Icon */\n.elsie-button--with-icon {\n column-gap: var(--spacing-xsmall);\n row-gap: var(--spacing-xsmall);\n}\n",""]);const c=a},2429:(e,n,r)=>{r.d(n,{Z:()=>c});var t=r(4933),o=r.n(t),i=r(3476),a=r.n(i)()(o());a.push([e.id,"/* https://cssguidelin.es/#bem-like-naming */\n\n.elsie-checkbox {\n display: grid;\n grid-template-columns: var(--spacing-small) auto;\n grid-gap: var(--spacing-xxsmall) 0;\n align-items: center;\n}\n\n.elsie-checkbox__checkbox {\n display: none;\n margin: 0;\n}\n\n.elsie-checkbox__box {\n margin: 0;\n /* width: var(--spacing-small);\n height: var(--spacing-small); */\n width: 14px;\n height: 14px;\n border-radius: var(--shape-border-radius-1);\n border: var(--shape-border-width-1) solid var(--color-neutral-600);\n background: var(--color-neutral-50) 0% 0% no-repeat padding-box;\n cursor: pointer;\n}\n\n.elsie-checkbox__checkmark {\n opacity: 0;\n border-radius: var(--shape-border-radius-1);\n}\n\n/* checked */\n\n.elsie-checkbox__checkbox:checked + .elsie-checkbox__box {\n border: none;\n}\n\n.elsie-checkbox__checkbox:checked\n + .elsie-checkbox__box\n .elsie-checkbox__checkmark {\n opacity: 1;\n color: var(--color-neutral-50);\n background: var(--color-neutral-700) 0% 0% no-repeat padding-box;\n top: -1px;\n position: relative;\n}\n\n/* hover */\n\n.elsie-checkbox__box:hover {\n border: var(--shape-border-width-1) solid var(--color-neutral-800);\n}\n\n/* checked + hover */\n\n.elsie-checkbox__checkbox:checked + .elsie-checkbox__box:hover {\n border: none;\n background: var(--color-neutral-800) 0% 0% no-repeat padding-box;\n}\n\n.elsie-checkbox__checkbox:checked\n + .elsie-checkbox__box\n .elsie-checkbox__checkmark:hover {\n background: var(--color-neutral-800) 0% 0% no-repeat padding-box;\n}\n\n/* focus */\n\n.elsie-checkbox__box:focus-visible {\n border: var(--shape-border-width-1) solid var(--color-neutral-800);\n outline: var(--shape-border-width-3) solid var(--color-neutral-400);\n}\n\n.elsie-checkbox__checkbox:checked + .elsie-checkbox__box:focus-visible {\n width: var(--spacing-small);\n height: var(--spacing-small);\n border: none;\n background: var(--color-neutral-800) 0% 0% no-repeat padding-box;\n outline: var(--shape-border-width-3) solid var(--color-neutral-400);\n}\n\n.elsie-checkbox__checkbox:checked\n + .elsie-checkbox__box:focus-visible\n .elsie-checkbox__checkmark {\n top: 0;\n}\n\n/* label and description */\n\n.elsie-checkbox__label,\n.elsie-checkbox__label--medium {\n padding-left: var(--spacing-xsmall);\n color: var(--color-neutral-800);\n font: var(--type-body-2-default-font);\n letter-spacing: var(--type-body-2-default-letter-spacing);\n text-align: left;\n}\n\n.elsie-checkbox__label--large {\n padding-left: var(--spacing-small);\n color: var(--color-neutral-800);\n font: var(--type-body-1-default-font);\n letter-spacing: var(--type-body-1-default-letter-spacing);\n text-align: left;\n}\n\n.elsie-checkbox__description,\n.elsie-checkbox__description--medium {\n padding-left: var(--spacing-xsmall);\n color: var(--color-neutral-700);\n font: var(--type-details-caption-2-font);\n letter-spacing: var(--type-details-caption-2-letter-spacing);\n text-align: left;\n}\n\n.elsie-checkbox__description--large {\n padding-left: var(--spacing-small);\n color: var(--color-neutral-700);\n font: var(--type-body-2-default-font);\n letter-spacing: var(--type-body-2-default-letter-spacing);\n text-align: left;\n}\n\n.elsie-checkbox,\n.elsie-checkbox--checkbox:not(:disabled) {\n cursor: pointer;\n}\n\n/* error */\n\n.elsie-checkbox__box--error {\n border: var(--shape-border-width-2) solid var(--color-alert-500);\n background: var(--color-neutral-50) 0% 0% no-repeat padding-box;\n}\n\n.elsie-checkbox__checkbox:checked + .elsie-checkbox__box--error,\n.elsie-checkbox__checkbox:checked + .elsie-checkbox__box--error:hover {\n border: none;\n background: var(--color-alert-500) 0% 0% no-repeat padding-box;\n}\n\n.elsie-checkbox__checkbox:checked\n + .elsie-checkbox__box--error\n > .elsie-checkbox__checkmark,\n.elsie-checkbox__checkbox:checked\n + .elsie-checkbox__box--error\n > .elsie-checkbox__checkmark:hover {\n background: var(--color-alert-500) 0% 0% no-repeat padding-box;\n}\n\n.elsie-checkbox__checkmark--error {\n opacity: 1;\n color: var(--color-neutral-50);\n border: var(--color-alert-500);\n background: var(--color-alert-500) 0% 0% no-repeat padding-box;\n}\n\n/* disabled */\n\n.elsie-checkbox--disabled,\n.elsie-checkbox__label--disabled,\n.elsie-checkbox__description--disabled {\n color: var(--color-neutral-500);\n cursor: default;\n}\n\n.elsie-checkbox__box--disabled,\n.elsie-checkbox__box--disabled:hover {\n background: var(--color-neutral-300) 0% 0% no-repeat padding-box;\n border: var(--shape-border-width-1) solid var(--color-neutral-500);\n cursor: default;\n}\n\n.elsie-checkbox__checkbox:checked + .elsie-checkbox__box--disabled,\n.elsie-checkbox__checkbox:checked + .elsie-checkbox__box--disabled:hover {\n border: none;\n background: var(--color-neutral-300) 0% 0% no-repeat padding-box;\n}\n\n.elsie-checkbox__checkbox:checked\n + .elsie-checkbox__box--disabled\n > .elsie-checkbox__checkmark,\n.elsie-checkbox__checkbox:checked\n + .elsie-checkbox__box--disabled\n > .elsie-checkbox__checkmark:hover {\n background: var(--color-neutral-300) 0% 0% no-repeat padding-box;\n}\n\n/* Medium (portrait tablets and large phones, 768px and up) */\n/* @media only screen and (min-width: 768px) { } */\n\n/* Large (landscape tablets, 1024px and up) */\n/* @media only screen and (min-width: 1024px) { } */\n\n/* XLarge (laptops/desktops, 1366px and up) */\n/* @media only screen and (min-width: 1366px) { } */\n\n/* XXlarge (large laptops and desktops, 1920px and up) */\n/* @media only screen and (min-width: 1920px) { } */\n",""]);const c=a},5238:(e,n,r)=>{r.d(n,{Z:()=>c});var t=r(4933),o=r.n(t),i=r(3476),a=r.n(i)()(o());a.push([e.id,".elsie-divider {\n border: none;\n}\n\n.elsie-divider--primary {\n border-top: var(--shape-border-width-3) solid var(--color-neutral-400);\n margin: var(--spacing-xbig) auto;\n}\n\n.elsie-divider--secondary {\n border-top: var(--shape-border-width-2) solid var(--color-neutral-400);\n margin: var(--spacing-medium) auto;\n}\n",""]);const c=a}};