@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.
- package/__generated__/types.d.ts +12644 -0
- package/api/estimateShippingMethods/graphql/index.d.ts +15 -15
- package/api/estimateShippingMethods/index.d.ts +15 -15
- package/api/fetch-graphql/fetch-graphql.d.ts +19 -19
- package/api/fetch-graphql/index.d.ts +15 -15
- package/api/getCart/fixtures.d.ts +3 -2
- package/api/getCart/getCart.d.ts +16 -16
- package/api/getCart/graphql/index.d.ts +15 -15
- package/api/getCart/index.d.ts +15 -15
- package/api/getCheckoutAgreements/graphql/getCheckoutAgreements.graphql.d.ts +1 -1
- package/api/getCheckoutAgreements/index.d.ts +1 -1
- package/api/getCustomer/getCustomer.d.ts +1 -1
- package/api/getCustomer/graphql/index.d.ts +15 -15
- package/api/getCustomer/index.d.ts +15 -15
- package/api/getStoreConfig/graphql/getStoreConfig.graphql.d.ts +1 -1
- package/api/getStoreConfig/index.d.ts +15 -15
- package/api/index.d.ts +2 -1
- package/api/initialize/index.d.ts +15 -15
- package/api/initialize/initialize.d.ts +3 -3
- package/api/initializeCheckout/index.d.ts +15 -15
- package/api/initializeCheckout/initializeCheckout.d.ts +1 -1
- package/api/isEmailAvailable/graphql/isEmailAvailable.graphql.d.ts +15 -15
- package/api/isEmailAvailable/index.d.ts +15 -15
- package/api/setBillingAddress/index.d.ts +15 -15
- package/api/setBillingAddress/setBillingAddress.d.ts +1 -1
- package/api/setGuestEmailOnCart/index.d.ts +15 -15
- package/api/setGuestEmailOnCart/setGuestEmailOnCart.d.ts +1 -1
- package/api/setPaymentMethod/index.d.ts +15 -15
- package/api/setPaymentMethod/setPaymentMethod.d.ts +1 -1
- package/api/setShippingAddress/index.d.ts +15 -15
- package/api/setShippingAddress/setShippingAddress.d.ts +1 -1
- package/api/setShippingMethods/index.d.ts +15 -15
- package/api/setShippingMethods/setShippingMethods.d.ts +1 -1
- package/api/subscribeEmailToNewsletter/graphql/subscribeEmailToNewsletter.graphql.d.ts +18 -0
- package/{hocs → api/subscribeEmailToNewsletter}/index.d.ts +1 -1
- package/api/subscribeEmailToNewsletter/subscribeEmailToNewsletter.d.ts +4 -0
- package/api/synchronizeCheckout/synchronizeCheckout.d.ts +1 -1
- package/api.js +12 -6
- package/chunks/ConditionalWrapper.js +3 -0
- package/chunks/IsBillToShippingSignal.js +14 -0
- package/chunks/SelectedPaymentMethodSignal.js +3 -0
- package/chunks/SelectedShippingMethodSignal.js +3 -0
- package/chunks/ServerErrorSignal.js +3 -0
- package/chunks/TermsAndConditions.js +2 -2
- package/chunks/setBillingAddress.js +3 -3
- package/chunks/setGuestEmailOnCart.js +12 -4
- package/chunks/setPaymentMethod.js +3 -3
- package/chunks/setShippingMethods.js +3 -3
- package/chunks/subscription-email-statuses.js +3 -0
- package/chunks/synchronizeCheckout.js +5 -13
- package/components/BillToShippingAddress/BillToShippingAddress.d.ts +1 -2
- package/components/BillToShippingAddress/index.d.ts +15 -15
- package/components/ConditionalWrapper/ConditionalWrapper.d.ts +8 -0
- package/components/ConditionalWrapper/index.d.ts +19 -0
- package/components/EstimateShipping/EstimateShipping.d.ts +2 -2
- package/components/EstimateShipping/index.d.ts +15 -15
- package/components/LoginForm/LoginForm.d.ts +9 -12
- package/components/LoginForm/SignOut.d.ts +1 -1
- package/components/LoginForm/index.d.ts +15 -15
- package/components/Newsletter/Newsletter.d.ts +7 -0
- package/components/Newsletter/NewsletterSkeleton.d.ts +4 -0
- package/components/Newsletter/index.d.ts +20 -0
- package/components/OutOfStock/index.d.ts +15 -15
- package/components/PaymentMethods/PaymentMethods.d.ts +7 -5
- package/components/PlaceOrder/PlaceOrder.d.ts +1 -1
- package/components/PlaceOrder/index.d.ts +15 -15
- package/components/ServerError/index.d.ts +15 -15
- package/components/ShippingMethods/ShippingMethods.d.ts +8 -5
- package/components/ShippingMethods/index.d.ts +15 -15
- package/components/TermsAndConditions/TermsAndConditions.d.ts +1 -2
- package/components/index.d.ts +2 -0
- package/containers/BillToShippingAddress/BillToShippingAddress.d.ts +3 -20
- package/containers/BillToShippingAddress.js +1 -1
- package/containers/EstimateShipping/index.d.ts +15 -15
- package/containers/EstimateShipping.js +1 -1
- package/containers/LoginForm/LoginForm.d.ts +10 -5
- package/containers/LoginForm.js +1 -1
- package/containers/MergedCartBanner/MergedCartBanner.d.ts +3 -5
- package/containers/MergedCartBanner.js +1 -1
- package/containers/Newsletter/Newsletter.d.ts +9 -0
- package/{utils/isUnexpectedError/isUnexpectedError.d.ts → containers/Newsletter/index.d.ts} +3 -2
- package/containers/Newsletter.d.ts +3 -0
- package/containers/Newsletter.js +3 -0
- package/containers/OutOfStock/OutOfStock.d.ts +1 -1
- package/containers/OutOfStock/index.d.ts +15 -15
- package/containers/OutOfStock.js +1 -1
- package/containers/PaymentMethods/PaymentMethods.d.ts +7 -7
- package/containers/PaymentMethods.js +1 -1
- package/containers/PlaceOrder/PlaceOrder.d.ts +4 -5
- package/containers/PlaceOrder/index.d.ts +15 -15
- package/containers/PlaceOrder.js +1 -1
- package/containers/ServerError/ServerError.d.ts +1 -1
- package/containers/ServerError.js +1 -1
- package/containers/ShippingMethods/ShippingMethods.d.ts +6 -7
- package/containers/ShippingMethods/index.d.ts +15 -15
- package/containers/ShippingMethods/utils/emitShippingEstimateEvent.d.ts +1 -1
- package/containers/ShippingMethods.js +1 -1
- package/containers/TermsAndConditions/TermsAndConditions.d.ts +1 -1
- package/containers/TermsAndConditions.js +1 -1
- package/containers/index.d.ts +1 -0
- package/data/models/country.d.ts +15 -15
- package/data/models/custom-attribute.d.ts +15 -15
- package/data/models/email-availability.d.ts +15 -15
- package/data/models/index.d.ts +1 -0
- package/data/models/payment-method.d.ts +15 -15
- package/data/models/price.d.ts +15 -15
- package/data/models/store-config.d.ts +2 -3
- package/{utils/index.d.ts → data/models/subscription-email-statuses.d.ts} +8 -6
- package/data/transforms/transform-cart.d.ts +2 -2
- package/data/transforms/transform-checkout-agreements.d.ts +1 -1
- package/data/transforms/transform-customer.d.ts +1 -1
- package/data/transforms/transform-shipping-methods.d.ts +2 -1
- package/{api/errors → errors}/errors.d.ts +1 -1
- package/{utils/convertCase → errors}/index.d.ts +1 -1
- package/i18n/en_US.json.d.ts +31 -28
- package/lib/dispatchApiCall.d.ts +16 -0
- package/lib/dom.d.ts +18 -0
- package/lib/enqueueRequest.d.ts +13 -0
- package/{api/utils → lib}/filterControlledErrors.d.ts +1 -1
- package/lib/index.d.ts +3 -1
- package/lib/network-error.d.ts +15 -15
- package/lib/preact.d.ts +4 -0
- package/msw/browser.d.ts +15 -15
- package/msw/fixtures/fragments/cart.d.ts +15 -15
- package/msw/fixtures/index.d.ts +15 -15
- package/msw/fixtures/mutations/index.d.ts +15 -15
- package/msw/fixtures/queries/index.d.ts +15 -15
- package/msw/server.d.ts +15 -15
- package/package.json +1 -1
- package/render/index.d.ts +15 -15
- package/render/render.d.ts +1 -1
- package/render.js +7 -6
- package/signals/IsSubscribedToNewsletterSignal.d.ts +18 -0
- package/signals/ShippingEstimateSignal.d.ts +8 -0
- package/signals/index.d.ts +2 -4
- package/tests/constants.d.ts +15 -15
- package/tests/integration/utils/index.d.ts +15 -15
- package/tests/integration/utils/user-actions.d.ts +15 -15
- package/tests/mocks/svg.d.ts +15 -15
- package/tests/utils/expectError.d.ts +15 -15
- package/tests/utils/index.d.ts +15 -15
- package/tests/utils/mockEvents.d.ts +15 -15
- package/{hooks/index.d.ts → types/ComponentTypes.d.ts} +2 -3
- package/types/TitleProps.d.ts +9 -0
- package/api/errors/index.d.ts +0 -18
- package/api/utils/dispatchApiCall.d.ts +0 -36
- package/api/utils/enqueueRequest.d.ts +0 -26
- package/chunks/errors.js +0 -3
- package/chunks/state.js +0 -3
- package/chunks/store-config.js +0 -3
- package/chunks/transform-store-config.js +0 -13
- package/chunks/withConditionalRendering.js +0 -3
- package/hocs/withConditionalRendering.d.ts +0 -13
- package/hooks/useBreakpoint/index.d.ts +0 -18
- package/hooks/useBreakpoint/useBreakpoint.d.ts +0 -18
- package/hooks/useStableList/index.d.ts +0 -2
- package/hooks/useStableList/useStableList.d.ts +0 -2
- package/lib/fetch-error.d.ts +0 -23
- package/signals/CartSignal.d.ts +0 -7
- package/signals/CustomerSignal.d.ts +0 -7
- package/signals/EmailSignal.d.ts +0 -26
- package/signals/EstimateShippingMethodsSignal.d.ts +0 -7
- package/utils/convertCase/convertCase.d.ts +0 -4
- package/utils/getDisplayName/getDisplayName.d.ts +0 -4
- package/utils/getDisplayName/index.d.ts +0 -18
- package/utils/isEmpty/index.d.ts +0 -18
- package/utils/isEmpty/isEmpty.d.ts +0 -18
- package/utils/isNullish/index.d.ts +0 -18
- package/utils/isNullish/isNullish.d.ts +0 -18
- package/utils/isUnexpectedError/index.d.ts +0 -18
- package/utils/scrollToElement/index.d.ts +0 -2
- package/utils/scrollToElement/scrollToElement.d.ts +0 -2
- package/utils/shippingMethods/index.d.ts +0 -18
- 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
|
package/lib/fetch-error.d.ts
DELETED
|
@@ -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
|
package/signals/CartSignal.d.ts
DELETED
package/signals/EmailSignal.d.ts
DELETED
|
@@ -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,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
|
package/utils/isEmpty/index.d.ts
DELETED
|
@@ -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,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
|