@dropins/storefront-checkout 1.3.0 → 1.4.0-beta2

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 (174) hide show
  1. package/__generated__/types.d.ts +12644 -0
  2. package/api/estimateShippingMethods/graphql/index.d.ts +15 -15
  3. package/api/estimateShippingMethods/index.d.ts +15 -15
  4. package/api/fetch-graphql/fetch-graphql.d.ts +19 -19
  5. package/api/fetch-graphql/index.d.ts +15 -15
  6. package/api/getCart/fixtures.d.ts +3 -2
  7. package/api/getCart/getCart.d.ts +16 -16
  8. package/api/getCart/graphql/index.d.ts +15 -15
  9. package/api/getCart/index.d.ts +15 -15
  10. package/api/getCheckoutAgreements/graphql/getCheckoutAgreements.graphql.d.ts +1 -1
  11. package/api/getCheckoutAgreements/index.d.ts +1 -1
  12. package/api/getCustomer/getCustomer.d.ts +1 -1
  13. package/api/getCustomer/graphql/index.d.ts +15 -15
  14. package/api/getCustomer/index.d.ts +15 -15
  15. package/api/getStoreConfig/graphql/getStoreConfig.graphql.d.ts +1 -1
  16. package/api/getStoreConfig/index.d.ts +15 -15
  17. package/api/index.d.ts +2 -1
  18. package/api/initialize/index.d.ts +15 -15
  19. package/api/initialize/initialize.d.ts +3 -3
  20. package/api/initializeCheckout/index.d.ts +15 -15
  21. package/api/initializeCheckout/initializeCheckout.d.ts +1 -1
  22. package/api/isEmailAvailable/graphql/isEmailAvailable.graphql.d.ts +15 -15
  23. package/api/isEmailAvailable/index.d.ts +15 -15
  24. package/api/setBillingAddress/index.d.ts +15 -15
  25. package/api/setBillingAddress/setBillingAddress.d.ts +1 -1
  26. package/api/setGuestEmailOnCart/index.d.ts +15 -15
  27. package/api/setGuestEmailOnCart/setGuestEmailOnCart.d.ts +1 -1
  28. package/api/setPaymentMethod/index.d.ts +15 -15
  29. package/api/setPaymentMethod/setPaymentMethod.d.ts +1 -1
  30. package/api/setShippingAddress/index.d.ts +15 -15
  31. package/api/setShippingAddress/setShippingAddress.d.ts +1 -1
  32. package/api/setShippingMethods/index.d.ts +15 -15
  33. package/api/setShippingMethods/setShippingMethods.d.ts +1 -1
  34. package/api/subscribeEmailToNewsletter/graphql/subscribeEmailToNewsletter.graphql.d.ts +18 -0
  35. package/{hocs → api/subscribeEmailToNewsletter}/index.d.ts +1 -1
  36. package/api/subscribeEmailToNewsletter/subscribeEmailToNewsletter.d.ts +4 -0
  37. package/api/synchronizeCheckout/synchronizeCheckout.d.ts +1 -1
  38. package/api.js +12 -6
  39. package/chunks/ConditionalWrapper.js +3 -0
  40. package/chunks/IsBillToShippingSignal.js +14 -0
  41. package/chunks/SelectedPaymentMethodSignal.js +3 -0
  42. package/chunks/SelectedShippingMethodSignal.js +3 -0
  43. package/chunks/ServerErrorSignal.js +3 -0
  44. package/chunks/TermsAndConditions.js +2 -2
  45. package/chunks/setBillingAddress.js +3 -3
  46. package/chunks/setGuestEmailOnCart.js +12 -4
  47. package/chunks/setPaymentMethod.js +3 -3
  48. package/chunks/setShippingMethods.js +3 -3
  49. package/chunks/subscription-email-statuses.js +3 -0
  50. package/chunks/synchronizeCheckout.js +5 -13
  51. package/components/BillToShippingAddress/BillToShippingAddress.d.ts +1 -2
  52. package/components/BillToShippingAddress/index.d.ts +15 -15
  53. package/components/ConditionalWrapper/ConditionalWrapper.d.ts +8 -0
  54. package/components/ConditionalWrapper/index.d.ts +19 -0
  55. package/components/EstimateShipping/EstimateShipping.d.ts +2 -2
  56. package/components/EstimateShipping/index.d.ts +15 -15
  57. package/components/LoginForm/LoginForm.d.ts +9 -12
  58. package/components/LoginForm/SignOut.d.ts +1 -1
  59. package/components/LoginForm/index.d.ts +15 -15
  60. package/components/Newsletter/Newsletter.d.ts +7 -0
  61. package/components/Newsletter/NewsletterSkeleton.d.ts +4 -0
  62. package/components/Newsletter/index.d.ts +20 -0
  63. package/components/OutOfStock/index.d.ts +15 -15
  64. package/components/PaymentMethods/PaymentMethods.d.ts +7 -5
  65. package/components/PlaceOrder/PlaceOrder.d.ts +1 -1
  66. package/components/PlaceOrder/index.d.ts +15 -15
  67. package/components/ServerError/index.d.ts +15 -15
  68. package/components/ShippingMethods/ShippingMethods.d.ts +8 -5
  69. package/components/ShippingMethods/index.d.ts +15 -15
  70. package/components/TermsAndConditions/TermsAndConditions.d.ts +1 -2
  71. package/components/index.d.ts +2 -0
  72. package/containers/BillToShippingAddress/BillToShippingAddress.d.ts +3 -20
  73. package/containers/BillToShippingAddress.js +1 -1
  74. package/containers/EstimateShipping/index.d.ts +15 -15
  75. package/containers/EstimateShipping.js +1 -1
  76. package/containers/LoginForm/LoginForm.d.ts +10 -5
  77. package/containers/LoginForm.js +1 -1
  78. package/containers/MergedCartBanner/MergedCartBanner.d.ts +3 -5
  79. package/containers/MergedCartBanner.js +1 -1
  80. package/containers/Newsletter/Newsletter.d.ts +9 -0
  81. package/{utils/isUnexpectedError/isUnexpectedError.d.ts → containers/Newsletter/index.d.ts} +3 -2
  82. package/containers/Newsletter.d.ts +3 -0
  83. package/containers/Newsletter.js +3 -0
  84. package/containers/OutOfStock/OutOfStock.d.ts +1 -1
  85. package/containers/OutOfStock/index.d.ts +15 -15
  86. package/containers/OutOfStock.js +1 -1
  87. package/containers/PaymentMethods/PaymentMethods.d.ts +7 -7
  88. package/containers/PaymentMethods.js +1 -1
  89. package/containers/PlaceOrder/PlaceOrder.d.ts +4 -5
  90. package/containers/PlaceOrder/index.d.ts +15 -15
  91. package/containers/PlaceOrder.js +1 -1
  92. package/containers/ServerError/ServerError.d.ts +1 -1
  93. package/containers/ServerError.js +1 -1
  94. package/containers/ShippingMethods/ShippingMethods.d.ts +6 -7
  95. package/containers/ShippingMethods/index.d.ts +15 -15
  96. package/containers/ShippingMethods/utils/emitShippingEstimateEvent.d.ts +1 -1
  97. package/containers/ShippingMethods.js +1 -1
  98. package/containers/TermsAndConditions/TermsAndConditions.d.ts +1 -1
  99. package/containers/TermsAndConditions.js +1 -1
  100. package/containers/index.d.ts +1 -0
  101. package/data/models/country.d.ts +15 -15
  102. package/data/models/custom-attribute.d.ts +15 -15
  103. package/data/models/email-availability.d.ts +15 -15
  104. package/data/models/index.d.ts +1 -0
  105. package/data/models/payment-method.d.ts +15 -15
  106. package/data/models/price.d.ts +15 -15
  107. package/data/models/store-config.d.ts +2 -3
  108. package/{utils/index.d.ts → data/models/subscription-email-statuses.d.ts} +8 -6
  109. package/data/transforms/transform-cart.d.ts +2 -2
  110. package/data/transforms/transform-checkout-agreements.d.ts +1 -1
  111. package/data/transforms/transform-customer.d.ts +1 -1
  112. package/data/transforms/transform-shipping-methods.d.ts +2 -1
  113. package/{api/errors → errors}/errors.d.ts +1 -1
  114. package/{utils/convertCase → errors}/index.d.ts +1 -1
  115. package/i18n/en_US.json.d.ts +31 -28
  116. package/lib/dispatchApiCall.d.ts +16 -0
  117. package/lib/dom.d.ts +18 -0
  118. package/lib/enqueueRequest.d.ts +13 -0
  119. package/{api/utils → lib}/filterControlledErrors.d.ts +1 -1
  120. package/lib/index.d.ts +3 -1
  121. package/lib/network-error.d.ts +15 -15
  122. package/lib/preact.d.ts +4 -0
  123. package/msw/browser.d.ts +15 -15
  124. package/msw/fixtures/fragments/cart.d.ts +15 -15
  125. package/msw/fixtures/index.d.ts +15 -15
  126. package/msw/fixtures/mutations/index.d.ts +15 -15
  127. package/msw/fixtures/queries/index.d.ts +15 -15
  128. package/msw/server.d.ts +15 -15
  129. package/package.json +1 -1
  130. package/render/index.d.ts +15 -15
  131. package/render/render.d.ts +1 -1
  132. package/render.js +7 -6
  133. package/signals/IsSubscribedToNewsletterSignal.d.ts +18 -0
  134. package/signals/ShippingEstimateSignal.d.ts +8 -0
  135. package/signals/index.d.ts +2 -4
  136. package/tests/constants.d.ts +15 -15
  137. package/tests/integration/utils/index.d.ts +15 -15
  138. package/tests/integration/utils/user-actions.d.ts +15 -15
  139. package/tests/mocks/svg.d.ts +15 -15
  140. package/tests/utils/expectError.d.ts +15 -15
  141. package/tests/utils/index.d.ts +15 -15
  142. package/tests/utils/mockEvents.d.ts +15 -15
  143. package/{hooks/index.d.ts → types/ComponentTypes.d.ts} +2 -3
  144. package/types/TitleProps.d.ts +9 -0
  145. package/api/errors/index.d.ts +0 -18
  146. package/api/utils/dispatchApiCall.d.ts +0 -36
  147. package/api/utils/enqueueRequest.d.ts +0 -26
  148. package/chunks/errors.js +0 -3
  149. package/chunks/state.js +0 -3
  150. package/chunks/store-config.js +0 -3
  151. package/chunks/transform-store-config.js +0 -13
  152. package/chunks/withConditionalRendering.js +0 -3
  153. package/hocs/withConditionalRendering.d.ts +0 -13
  154. package/hooks/useBreakpoint/index.d.ts +0 -18
  155. package/hooks/useBreakpoint/useBreakpoint.d.ts +0 -18
  156. package/hooks/useStableList/index.d.ts +0 -2
  157. package/hooks/useStableList/useStableList.d.ts +0 -2
  158. package/lib/fetch-error.d.ts +0 -23
  159. package/signals/CartSignal.d.ts +0 -7
  160. package/signals/CustomerSignal.d.ts +0 -7
  161. package/signals/EmailSignal.d.ts +0 -26
  162. package/signals/EstimateShippingMethodsSignal.d.ts +0 -7
  163. package/utils/convertCase/convertCase.d.ts +0 -4
  164. package/utils/getDisplayName/getDisplayName.d.ts +0 -4
  165. package/utils/getDisplayName/index.d.ts +0 -18
  166. package/utils/isEmpty/index.d.ts +0 -18
  167. package/utils/isEmpty/isEmpty.d.ts +0 -18
  168. package/utils/isNullish/index.d.ts +0 -18
  169. package/utils/isNullish/isNullish.d.ts +0 -18
  170. package/utils/isUnexpectedError/index.d.ts +0 -18
  171. package/utils/scrollToElement/index.d.ts +0 -2
  172. package/utils/scrollToElement/scrollToElement.d.ts +0 -2
  173. package/utils/shippingMethods/index.d.ts +0 -18
  174. package/utils/shippingMethods/isEqual.d.ts +0 -4
@@ -1,13 +0,0 @@
1
- /*! Copyright 2025 Adobe
2
- All Rights Reserved. */
3
- import{FetchGraphQL as l}from"@dropins/tools/fetch-graphql.js";import{T as a}from"./store-config.js";import"./state.js";import{signal as t,effect as u}from"@dropins/tools/signals.js";import"@dropins/tools/event-bus.js";import"@dropins/tools/lib.js";const g=t(!0),p=t({pending:!1,data:void 0});u(()=>{var e;(e=p.value.data)!=null&&e.isVirtual&&(g.value=!1)});const y=t({pending:!1,data:void 0}),T=t({available:!0,error:"",initialized:!1,pending:!1,value:""}),D=t({pending:!1,data:void 0}),v=t(),N=t(void 0),U=t(),{setEndpoint:A,setFetchGraphQlHeader:I,removeFetchGraphQlHeader:L,setFetchGraphQlHeaders:X,fetchGraphQl:d,getConfig:F}=new l().getMethods(),h=`
4
- query getStoreConfig {
5
- storeConfig {
6
- default_country
7
- is_checkout_agreements_enabled
8
- is_guest_checkout_enabled
9
- is_one_page_checkout_enabled
10
- shopping_cart_display_shipping
11
- }
12
- }
13
- `,_="US",n={defaultCountry:_,isCheckoutAgreementsEnabled:!0,isGuestCheckoutEnabled:!1,isOnePageCheckoutEnabled:!1,shoppingCartDisplaySetting:{shipping:a.EXCLUDING_TAX}},O=async()=>d(h,{method:"GET",cache:"no-cache"}).then(({errors:e,data:s})=>e?n:C(s.storeConfig));function f(e){switch(e){case 1:return a.EXCLUDING_TAX;case 2:return a.INCLUDING_TAX;case 3:return a.INCLUDING_EXCLUDING_TAX;default:return a.EXCLUDING_TAX}}function C(e){if(!e)return n;const{default_country:s,is_checkout_agreements_enabled:i,is_guest_checkout_enabled:o,is_one_page_checkout_enabled:r,shopping_cart_display_shipping:c}=e;return{defaultCountry:s||n.defaultCountry,isCheckoutAgreementsEnabled:i,isGuestCheckoutEnabled:o||n.isGuestCheckoutEnabled,isOnePageCheckoutEnabled:r||n.isOnePageCheckoutEnabled,shoppingCartDisplaySetting:{shipping:f(c)}}}export{_ as D,n as S,U as a,T as b,p as c,v as d,D as e,y as f,d as g,A as h,g as i,I as j,X as k,F as l,O as m,L as r,N as s};
@@ -1,3 +0,0 @@
1
- /*! Copyright 2025 Adobe
2
- All Rights Reserved. */
3
- import{jsx as n}from"@dropins/tools/preact-jsx-runtime.js";import{c as p}from"./transform-store-config.js";import"./state.js";import"@dropins/tools/event-bus.js";import"@dropins/tools/lib.js";function u(i){return i.displayName||i.name||"Component"}const g=i=>{const o=u(i),a=({hideOnEmptyCart:s=!0,hideOnVirtualCart:r=!1,...e})=>{const t=p.value.data,l=t!==void 0&&(t===null||t.isEmpty),m=!!(t!=null&&t.isVirtual),c=s&&l||r&&m,d=`conditional-${o.toLowerCase()}`;return n("div",{className:d,children:!c&&n(i,{...e})})};return a.displayName=`Conditional(${o})`,a};export{g as w};
@@ -1,13 +0,0 @@
1
- import { Container } from '@dropins/tools/types/elsie/src/lib';
2
-
3
- export interface ConditionalProps {
4
- hideOnEmptyCart?: boolean;
5
- hideOnVirtualCart?: boolean;
6
- }
7
- export declare const withConditionalRendering: <P extends object>(WrappedContainer: Container<P, {
8
- [key: string]: any;
9
- }>) => {
10
- ({ hideOnEmptyCart, hideOnVirtualCart, ...props }: ConditionalProps & P): import("preact").JSX.Element;
11
- displayName: string;
12
- };
13
- //# sourceMappingURL=withConditionalRendering.d.ts.map
@@ -1,18 +0,0 @@
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 './useBreakpoint';
18
- //# sourceMappingURL=index.d.ts.map
@@ -1,18 +0,0 @@
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 useBreakpoint: () => "small" | "medium" | "large" | "xlarge" | "xxlarge";
18
- //# sourceMappingURL=useBreakpoint.d.ts.map
@@ -1,2 +0,0 @@
1
- export * from './useStableList';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,2 +0,0 @@
1
- export declare const useStableList: <T>(list: T[], isEqual: (a: T[], b: T[]) => boolean) => T[];
2
- //# sourceMappingURL=useStableList.d.ts.map
@@ -1,23 +0,0 @@
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 handleFetchErrors: (errors?: Array<{
18
- message: string;
19
- extensions: {
20
- category: string;
21
- };
22
- }>) => void;
23
- //# sourceMappingURL=fetch-error.d.ts.map
@@ -1,7 +0,0 @@
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
@@ -1,7 +0,0 @@
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
@@ -1,26 +0,0 @@
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
- interface Email {
18
- available: boolean;
19
- error: string;
20
- initialized: boolean;
21
- pending: boolean;
22
- value: string;
23
- }
24
- export declare const emailSignal: import('@preact/signals-core').Signal<Email>;
25
- export {};
26
- //# sourceMappingURL=EmailSignal.d.ts.map
@@ -1,7 +0,0 @@
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
@@ -1,4 +0,0 @@
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
@@ -1,4 +0,0 @@
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
@@ -1,18 +0,0 @@
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
@@ -1,18 +0,0 @@
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
@@ -1,18 +0,0 @@
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
@@ -1,18 +0,0 @@
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
@@ -1,18 +0,0 @@
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
@@ -1,18 +0,0 @@
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
@@ -1,2 +0,0 @@
1
- export * from './scrollToElement';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1,2 +0,0 @@
1
- export declare function scrollToElement(element: HTMLElement): void;
2
- //# sourceMappingURL=scrollToElement.d.ts.map
@@ -1,18 +0,0 @@
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
@@ -1,4 +0,0 @@
1
- import { ShippingMethod } from '../../data/models';
2
-
3
- export declare const isEqual: (a: ShippingMethod, b: ShippingMethod) => boolean;
4
- //# sourceMappingURL=isEqual.d.ts.map