@shipengine/elements 2.24.1 → 2.25.0
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/README.md +187 -6
- package/dist/cjs/components/field/credit-card-input/credit-card-input.cjs +46 -29
- package/dist/cjs/components/field/rate-select/rate-card/rate-card.cjs +29 -5
- package/dist/cjs/components/field/rate-select/rate-card/rate-card.styles.cjs +8 -3
- package/dist/cjs/components/field/rate-select/rate-select.cjs +26 -5
- package/dist/cjs/components/forms/address-form/address-form-schema.cjs +3 -3
- package/dist/cjs/components/forms/edit-billing-form/edit-billing-form.cjs +57 -4
- package/dist/cjs/components/service-card/service-card.cjs +4 -4
- package/dist/cjs/components/service-card/service-card.styles.cjs +5 -2
- package/dist/cjs/components/service-point-display/service-point-display.cjs +1 -36
- package/dist/cjs/components/service-point-display/service-point-display.styles.cjs +0 -12
- package/dist/cjs/components/shipment-not-found-error/index.cjs +7 -0
- package/dist/cjs/components/shipment-not-found-error/shipment-not-found-error.cjs +40 -0
- package/dist/cjs/components/shipment-not-found-error/shipment-not-found-error.styles.cjs +24 -0
- package/dist/cjs/components/suspend-purchase/suspend-purchase.cjs +11 -3
- package/dist/cjs/elements/purchase-label/components/rate-form/rate-form.cjs +13 -3
- package/dist/cjs/elements/purchase-label/components/rate-form/rate-schema.cjs +7 -2
- package/dist/cjs/elements/purchase-label/components/rate-form/rate-view.cjs +2 -0
- package/dist/cjs/elements/purchase-label/hooks/use-rate-options.cjs +31 -2
- package/dist/cjs/elements/purchase-label/hooks/use-rates-form.cjs +14 -18
- package/dist/cjs/elements/purchase-label/hooks/use-request-rates.cjs +20 -20
- package/dist/cjs/elements/purchase-label/purchase-label.cjs +4 -1
- package/dist/cjs/elements/shipment-summary/components/label-display/label-card.cjs +16 -31
- package/dist/cjs/elements/shipment-summary/components/label-display/label-card.styles.cjs +0 -19
- package/dist/cjs/elements/shipment-summary/components/label-display/paperless-label-display.cjs +54 -0
- package/dist/cjs/elements/shipment-summary/components/label-display/paperless-label-display.styles.cjs +27 -0
- package/dist/cjs/features/payment-method-settings/payment-method-settings.cjs +56 -18
- package/dist/cjs/hooks/use-configure-shipment.cjs +32 -11
- package/dist/cjs/hooks/use-helpers.cjs +4 -1
- package/dist/cjs/index.cjs +15 -12
- package/dist/cjs/locales/en/account-settings.json.cjs +6 -0
- package/dist/cjs/locales/en/common.json.cjs +2 -0
- package/dist/cjs/locales/en/purchase-label.json.cjs +5 -3
- package/dist/cjs/package.json.cjs +1 -1
- package/dist/cjs/utilities/address.cjs +29 -0
- package/dist/cjs/utilities/index.cjs +3 -0
- package/dist/cjs/utilities/money.cjs +14 -0
- package/dist/cjs/utilities/rate-warning-messages.cjs +25 -0
- package/dist/cjs/utilities/shipengine/warehouses.cjs +2 -1
- package/dist/cjs/workflows/connect-external-carrier/connect-external-carrier.cjs +7 -3
- package/dist/cjs/workflows/label-workflow/label-workflow.cjs +11 -3
- package/dist/cjs/workflows/onboarding/components/confirmation-and-submission-step/confirmation-and-submission-step.cjs +1 -1
- package/dist/cjs/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.cjs +17 -1
- package/dist/cjs/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.cjs +4 -1
- package/dist/cjs/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.cjs +4 -1
- package/dist/cjs/workflows/onboarding/components/terms-agreement-step/terms-agreement-step.cjs +14 -3
- package/dist/cjs/workflows/onboarding/components/terms-agreement-step/use-terms-agreement-step.cjs +12 -12
- package/dist/esm/components/field/credit-card-input/credit-card-input.js +47 -30
- package/dist/esm/components/field/rate-select/rate-card/rate-card.js +30 -6
- package/dist/esm/components/field/rate-select/rate-card/rate-card.styles.js +8 -3
- package/dist/esm/components/field/rate-select/rate-select.js +26 -5
- package/dist/esm/components/forms/address-form/address-form-schema.js +3 -3
- package/dist/esm/components/forms/edit-billing-form/edit-billing-form.js +58 -5
- package/dist/esm/components/service-card/service-card.js +4 -4
- package/dist/esm/components/service-card/service-card.styles.js +5 -2
- package/dist/esm/components/service-point-display/service-point-display.js +2 -37
- package/dist/esm/components/service-point-display/service-point-display.styles.js +0 -12
- package/dist/esm/components/shipment-not-found-error/index.js +1 -0
- package/dist/esm/components/shipment-not-found-error/shipment-not-found-error.js +38 -0
- package/dist/esm/components/shipment-not-found-error/shipment-not-found-error.styles.js +22 -0
- package/dist/esm/components/suspend-purchase/suspend-purchase.js +11 -3
- package/dist/esm/elements/purchase-label/components/rate-form/rate-form.js +14 -4
- package/dist/esm/elements/purchase-label/components/rate-form/rate-schema.js +7 -2
- package/dist/esm/elements/purchase-label/components/rate-form/rate-view.js +2 -0
- package/dist/esm/elements/purchase-label/hooks/use-rate-options.js +31 -2
- package/dist/esm/elements/purchase-label/hooks/use-rates-form.js +14 -18
- package/dist/esm/elements/purchase-label/hooks/use-request-rates.js +20 -20
- package/dist/esm/elements/purchase-label/purchase-label.js +4 -1
- package/dist/esm/elements/shipment-summary/components/label-display/label-card.js +18 -33
- package/dist/esm/elements/shipment-summary/components/label-display/label-card.styles.js +0 -19
- package/dist/esm/elements/shipment-summary/components/label-display/paperless-label-display.js +52 -0
- package/dist/esm/elements/shipment-summary/components/label-display/paperless-label-display.styles.js +25 -0
- package/dist/esm/features/payment-method-settings/payment-method-settings.js +57 -19
- package/dist/esm/hooks/use-configure-shipment.js +33 -12
- package/dist/esm/hooks/use-helpers.js +4 -1
- package/dist/esm/index.js +1 -0
- package/dist/esm/locales/en/account-settings.json.js +6 -0
- package/dist/esm/locales/en/common.json.js +2 -0
- package/dist/esm/locales/en/purchase-label.json.js +5 -3
- package/dist/esm/package.json.js +1 -1
- package/dist/esm/utilities/address.js +26 -0
- package/dist/esm/utilities/index.js +1 -0
- package/dist/esm/utilities/money.js +14 -1
- package/dist/esm/utilities/rate-warning-messages.js +23 -0
- package/dist/esm/utilities/shipengine/warehouses.js +2 -1
- package/dist/esm/workflows/connect-external-carrier/connect-external-carrier.js +7 -3
- package/dist/esm/workflows/label-workflow/label-workflow.js +11 -3
- package/dist/esm/workflows/onboarding/components/confirmation-and-submission-step/confirmation-and-submission-step.js +1 -1
- package/dist/esm/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.js +17 -1
- package/dist/esm/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.js +4 -1
- package/dist/esm/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.js +4 -1
- package/dist/esm/workflows/onboarding/components/terms-agreement-step/terms-agreement-step.js +14 -3
- package/dist/esm/workflows/onboarding/components/terms-agreement-step/use-terms-agreement-step.js +12 -12
- package/dist/types/components/field/credit-card-input/credit-card-input.d.ts.map +1 -1
- package/dist/types/components/field/rate-select/rate-card/rate-card.d.ts +4 -2
- package/dist/types/components/field/rate-select/rate-card/rate-card.d.ts.map +1 -1
- package/dist/types/components/field/rate-select/rate-card/rate-card.styles.d.ts +7 -2
- package/dist/types/components/field/rate-select/rate-card/rate-card.styles.d.ts.map +1 -1
- package/dist/types/components/field/rate-select/rate-select.d.ts +1 -0
- package/dist/types/components/field/rate-select/rate-select.d.ts.map +1 -1
- package/dist/types/components/forms/address-form/address-form-schema.d.ts.map +1 -1
- package/dist/types/components/forms/edit-billing-form/edit-billing-form.d.ts +2 -1
- package/dist/types/components/forms/edit-billing-form/edit-billing-form.d.ts.map +1 -1
- package/dist/types/components/service-card/service-card.d.ts +1 -1
- package/dist/types/components/service-card/service-card.d.ts.map +1 -1
- package/dist/types/components/service-card/service-card.styles.d.ts +4 -1
- package/dist/types/components/service-card/service-card.styles.d.ts.map +1 -1
- package/dist/types/components/service-point-display/service-point-display.d.ts.map +1 -1
- package/dist/types/components/service-point-display/service-point-display.styles.d.ts +0 -12
- package/dist/types/components/service-point-display/service-point-display.styles.d.ts.map +1 -1
- package/dist/types/components/shipment-not-found-error/index.d.ts +2 -0
- package/dist/types/components/shipment-not-found-error/index.d.ts.map +1 -0
- package/dist/types/components/shipment-not-found-error/shipment-not-found-error.d.ts +6 -0
- package/dist/types/components/shipment-not-found-error/shipment-not-found-error.d.ts.map +1 -0
- package/dist/types/components/shipment-not-found-error/shipment-not-found-error.styles.d.ts +19 -0
- package/dist/types/components/shipment-not-found-error/shipment-not-found-error.styles.d.ts.map +1 -0
- package/dist/types/components/suspend-purchase/suspend-purchase.d.ts +4 -2
- package/dist/types/components/suspend-purchase/suspend-purchase.d.ts.map +1 -1
- package/dist/types/elements/labels-grid/labels-grid.d.ts +11 -1
- package/dist/types/elements/labels-grid/labels-grid.d.ts.map +1 -1
- package/dist/types/elements/manage-carriers/manage-carriers.d.ts +11 -1
- package/dist/types/elements/manage-carriers/manage-carriers.d.ts.map +1 -1
- package/dist/types/elements/manage-external-carriers/manage-external-carriers.d.ts +11 -1
- package/dist/types/elements/manage-external-carriers/manage-external-carriers.d.ts.map +1 -1
- package/dist/types/elements/manage-funding/manage-funding-element.d.ts +11 -1
- package/dist/types/elements/manage-funding/manage-funding-element.d.ts.map +1 -1
- package/dist/types/elements/manage-warehouses/manage-warehouses.d.ts +11 -1
- package/dist/types/elements/manage-warehouses/manage-warehouses.d.ts.map +1 -1
- package/dist/types/elements/payment-method-settings/payment-method-settings-element.d.ts +11 -1
- package/dist/types/elements/payment-method-settings/payment-method-settings-element.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/rate-form/rate-form.d.ts +1 -1
- package/dist/types/elements/purchase-label/components/rate-form/rate-form.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/rate-form/rate-schema.d.ts +10 -1
- package/dist/types/elements/purchase-label/components/rate-form/rate-schema.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/rate-form/rate-view.d.ts +2 -1
- package/dist/types/elements/purchase-label/components/rate-form/rate-view.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-rate-options.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-rates-form.d.ts +2 -2
- package/dist/types/elements/purchase-label/hooks/use-rates-form.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-request-rates.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/purchase-label.d.ts +11 -1
- package/dist/types/elements/purchase-label/purchase-label.d.ts.map +1 -1
- package/dist/types/elements/select-label-layout/select-label-layout-element.d.ts +11 -1
- package/dist/types/elements/select-label-layout/select-label-layout-element.d.ts.map +1 -1
- package/dist/types/elements/shipment-summary/components/label-display/label-card.d.ts.map +1 -1
- package/dist/types/elements/shipment-summary/components/label-display/label-card.styles.d.ts +0 -19
- package/dist/types/elements/shipment-summary/components/label-display/label-card.styles.d.ts.map +1 -1
- package/dist/types/elements/shipment-summary/components/label-display/paperless-label-display.d.ts +8 -0
- package/dist/types/elements/shipment-summary/components/label-display/paperless-label-display.d.ts.map +1 -0
- package/dist/types/elements/shipment-summary/components/label-display/paperless-label-display.styles.d.ts +22 -0
- package/dist/types/elements/shipment-summary/components/label-display/paperless-label-display.styles.d.ts.map +1 -0
- package/dist/types/elements/shipment-summary/shipment-summary.d.ts +11 -1
- package/dist/types/elements/shipment-summary/shipment-summary.d.ts.map +1 -1
- package/dist/types/elements/shipments-grid/hooks/use-shipments-grid.d.ts.map +1 -1
- package/dist/types/elements/shipments-grid/shipments-grid.d.ts +11 -1
- package/dist/types/elements/shipments-grid/shipments-grid.d.ts.map +1 -1
- package/dist/types/elements/theme-creator/theme-creator.d.ts +11 -1
- package/dist/types/elements/theme-creator/theme-creator.d.ts.map +1 -1
- package/dist/types/elements/transaction-history/transaction-history-element.d.ts +11 -1
- package/dist/types/elements/transaction-history/transaction-history-element.d.ts.map +1 -1
- package/dist/types/elements/unit-settings/unit-settings-element.d.ts +11 -1
- package/dist/types/elements/unit-settings/unit-settings-element.d.ts.map +1 -1
- package/dist/types/elements/vat-settings/vat-settings-element.d.ts +11 -1
- package/dist/types/elements/vat-settings/vat-settings-element.d.ts.map +1 -1
- package/dist/types/elements/void-label/void-label.d.ts +11 -1
- package/dist/types/elements/void-label/void-label.d.ts.map +1 -1
- package/dist/types/features/payment-method-settings/payment-method-settings.d.ts.map +1 -1
- package/dist/types/hooks/use-configure-shipment.d.ts +1 -0
- package/dist/types/hooks/use-configure-shipment.d.ts.map +1 -1
- package/dist/types/hooks/use-helpers.d.ts +2 -0
- package/dist/types/hooks/use-helpers.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/locales/en/index.d.ts +11 -1
- package/dist/types/locales/en/index.d.ts.map +1 -1
- package/dist/types/types/rates.d.ts +1 -0
- package/dist/types/types/rates.d.ts.map +1 -1
- package/dist/types/utilities/address.d.ts +21 -0
- package/dist/types/utilities/address.d.ts.map +1 -0
- package/dist/types/utilities/feature-flags/types.d.ts +1 -1
- package/dist/types/utilities/feature-flags/types.d.ts.map +1 -1
- package/dist/types/utilities/index.d.ts +1 -0
- package/dist/types/utilities/index.d.ts.map +1 -1
- package/dist/types/utilities/money.d.ts +6 -0
- package/dist/types/utilities/money.d.ts.map +1 -1
- package/dist/types/utilities/rate-warning-messages.d.ts +15 -0
- package/dist/types/utilities/rate-warning-messages.d.ts.map +1 -0
- package/dist/types/workflows/account-settings/account-settings.d.ts +11 -1
- package/dist/types/workflows/account-settings/account-settings.d.ts.map +1 -1
- package/dist/types/workflows/carrier-services/carrier-services.d.ts +11 -1
- package/dist/types/workflows/carrier-services/carrier-services.d.ts.map +1 -1
- package/dist/types/workflows/connect-external-carrier/connect-external-carrier.d.ts +11 -1
- package/dist/types/workflows/connect-external-carrier/connect-external-carrier.d.ts.map +1 -1
- package/dist/types/workflows/label-workflow/label-workflow.d.ts +11 -1
- package/dist/types/workflows/label-workflow/label-workflow.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.d.ts +2 -1
- package/dist/types/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/components/terms-agreement-step/terms-agreement-step.d.ts +3 -1
- package/dist/types/workflows/onboarding/components/terms-agreement-step/terms-agreement-step.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/components/terms-agreement-step/use-terms-agreement-step.d.ts +1 -0
- package/dist/types/workflows/onboarding/components/terms-agreement-step/use-terms-agreement-step.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/onboarding.d.ts +11 -1
- package/dist/types/workflows/onboarding/onboarding.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -3,6 +3,7 @@ export type EditBillingFormProps = {
|
|
|
3
3
|
isLoading?: boolean;
|
|
4
4
|
onCancel: () => void;
|
|
5
5
|
onSubmit: (billingInfo: SE.FundingSourceAddress, creditCardInfo: SE.CreditCardInfo) => void;
|
|
6
|
+
billingInfo?: SE.FundingSourceAddress;
|
|
6
7
|
};
|
|
7
|
-
export declare const EditBillingForm: ({ onCancel, onSubmit, isLoading }: EditBillingFormProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const EditBillingForm: ({ onCancel, onSubmit, isLoading, billingInfo, }: EditBillingFormProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
8
9
|
//# sourceMappingURL=edit-billing-form.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"edit-billing-form.d.ts","sourceRoot":"","sources":["../../../../../src/components/forms/edit-billing-form/edit-billing-form.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"edit-billing-form.d.ts","sourceRoot":"","sources":["../../../../../src/components/forms/edit-billing-form/edit-billing-form.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAW,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAiBzD,MAAM,MAAM,oBAAoB,GAAG;IACjC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,EAAE,CAAC,WAAW,EAAE,EAAE,CAAC,oBAAoB,EAAE,cAAc,EAAE,EAAE,CAAC,cAAc,KAAK,IAAI,CAAC;IAC5F,WAAW,CAAC,EAAE,EAAE,CAAC,oBAAoB,CAAC;CACvC,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,iDAK7B,oBAAoB,qDA+HtB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service-card.d.ts","sourceRoot":"","sources":["../../../../src/components/service-card/service-card.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"service-card.d.ts","sourceRoot":"","sources":["../../../../src/components/service-card/service-card.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AAExF,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,2DAA2D,CAAC;AAK9G,KAAK,yBAAyB,GAAG;IAC/B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,KAAK,sBAAsB,GAAG;IAC5B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;IACxC,gBAAgB,CAAC,EAAE,4BAA4B,CAAC;IAChD,eAAe,CAAC,EAAE,GAAG,CAAC;IACtB,WAAW,CAAC,EAAE;QACZ,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;QACxB,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;IACF,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,CAAC;AAEF,KAAK,sBAAsB,GAAG;IAC5B,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,QAAQ,CAAC,EAAE;QACT,OAAO,EAAE,MAAM,CAAC;QAChB,YAAY,CAAC,EAAE,GAAG,CAAC,OAAO,CAAC;KAC5B,EAAE,CAAC;CACL,CAAC;AAEF,eAAO,MAAM,oBAAoB,GAAI,qDAMlC,yBAAyB,qDAsB3B,CAAC;AAEF,eAAO,MAAM,iBAAiB,GAAI,6HAS/B,sBAAsB,qDA4CxB,CAAC;AAEF,eAAO,MAAM,iBAAiB,GAAI,wBAA6B,sBAAsB,qDAuBpF,CAAC"}
|
|
@@ -13,8 +13,11 @@ export declare const styles: {
|
|
|
13
13
|
opacity: number;
|
|
14
14
|
width: string;
|
|
15
15
|
};
|
|
16
|
-
|
|
16
|
+
footerStyles: (theme: import("../../../typings/emotion").ScopedGigerTheme) => {
|
|
17
17
|
padding: number;
|
|
18
|
+
display: string;
|
|
19
|
+
flexDirection: string;
|
|
20
|
+
gap: number;
|
|
18
21
|
};
|
|
19
22
|
footerList: {
|
|
20
23
|
listStyle: "none";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service-card.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/service-card/service-card.styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAG5C,eAAO,MAAM,wBAAwB,GAAI,OAAO,KAAK,WAA2C,CAAC;AAEjG,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"service-card.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/service-card/service-card.styles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAC;AAG5C,eAAO,MAAM,wBAAwB,GAAI,OAAO,KAAK,WAA2C,CAAC;AAEjG,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mCAmCc,OAAO,WAAW,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkDxD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service-point-display.d.ts","sourceRoot":"","sources":["../../../../src/components/service-point-display/service-point-display.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"service-point-display.d.ts","sourceRoot":"","sources":["../../../../src/components/service-point-display/service-point-display.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAMvD,eAAO,MAAM,cAAc,GAAI,QAAQ,MAAM,WAE5C,CAAC;AAEF,KAAK,wBAAwB,GAAG;IAC9B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,CAAC,YAAY,EAAE,YAAY,KAAK,IAAI,CAAC;IACtD,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,YAAY,EAAE,YAAY,CAAC;IAC3B,iBAAiB,CAAC,EAAE,OAAO,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAAI,oFAMjC,wBAAwB,qDA6E1B,CAAC"}
|
|
@@ -15,18 +15,6 @@ export declare const styles: {
|
|
|
15
15
|
gap: number;
|
|
16
16
|
justifyContent: string;
|
|
17
17
|
};
|
|
18
|
-
paperlessIcon: (theme: import("../../../typings/emotion").ScopedGigerTheme) => {
|
|
19
|
-
color: string;
|
|
20
|
-
paddingRight: string;
|
|
21
|
-
};
|
|
22
|
-
paperlessText: (theme: import("../../../typings/emotion").ScopedGigerTheme) => {
|
|
23
|
-
color: string;
|
|
24
|
-
paddingLeft: number;
|
|
25
|
-
};
|
|
26
|
-
paperlessWrapper: () => {
|
|
27
|
-
display: string;
|
|
28
|
-
marginBottom: string;
|
|
29
|
-
};
|
|
30
18
|
selectButton: (theme: import("../../../typings/emotion").ScopedGigerTheme) => {
|
|
31
19
|
backgroundColor: string;
|
|
32
20
|
borderRadius: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"service-point-display.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/service-point-display/service-point-display.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;qCAKgB,OAAO
|
|
1
|
+
{"version":3,"file":"service-point-display.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/service-point-display/service-point-display.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;qCAKgB,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2BxC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/shipment-not-found-error/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export type ShipmentNotFoundErrorProps = {
|
|
2
|
+
shipmentId?: string;
|
|
3
|
+
onCreateNewShipment?: () => Promise<void> | void;
|
|
4
|
+
};
|
|
5
|
+
export declare const ShipmentNotFoundError: ({ shipmentId, onCreateNewShipment, }: ShipmentNotFoundErrorProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
6
|
+
//# sourceMappingURL=shipment-not-found-error.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shipment-not-found-error.d.ts","sourceRoot":"","sources":["../../../../src/components/shipment-not-found-error/shipment-not-found-error.tsx"],"names":[],"mappings":"AAMA,MAAM,MAAM,0BAA0B,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,mBAAmB,CAAC,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;CAClD,CAAC;AAEF,eAAO,MAAM,qBAAqB,GAAI,sCAGnC,0BAA0B,qDAwB5B,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
container: {
|
|
3
|
+
alignItems: "center";
|
|
4
|
+
display: "flex";
|
|
5
|
+
flexDirection: "column";
|
|
6
|
+
height: string;
|
|
7
|
+
justifyContent: "center";
|
|
8
|
+
textAlign: "center";
|
|
9
|
+
width: string;
|
|
10
|
+
};
|
|
11
|
+
iconContainer: (theme: import("../../../typings/emotion").ScopedGigerTheme) => {
|
|
12
|
+
color: string;
|
|
13
|
+
marginBottom: number;
|
|
14
|
+
};
|
|
15
|
+
message: (theme: import("../../../typings/emotion").ScopedGigerTheme) => {
|
|
16
|
+
marginBottom: number;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
//# sourceMappingURL=shipment-not-found-error.styles.d.ts.map
|
package/dist/types/components/shipment-not-found-error/shipment-not-found-error.styles.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shipment-not-found-error.styles.d.ts","sourceRoot":"","sources":["../../../../src/components/shipment-not-found-error/shipment-not-found-error.styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;CAiBjB,CAAC"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import { type WithChildrenCommonProps } from "@shipengine/giger";
|
|
2
2
|
import type { SE } from "@shipengine/react-api";
|
|
3
3
|
export type SuspendPurchaseProps = WithChildrenCommonProps<{
|
|
4
4
|
data?: SE.SalesOrderShipment | SE.SalesOrder;
|
|
5
5
|
errors?: SE.CodedError[];
|
|
6
6
|
isLoading?: boolean;
|
|
7
|
+
onCreateNewShipment?: () => Promise<void>;
|
|
8
|
+
shipmentId?: string;
|
|
7
9
|
}>;
|
|
8
|
-
export declare const SuspendPurchase: ({ children, errors, isLoading, data }: SuspendPurchaseProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const SuspendPurchase: ({ children, errors, isLoading, data, onCreateNewShipment, shipmentId, }: SuspendPurchaseProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
9
11
|
//# sourceMappingURL=suspend-purchase.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"suspend-purchase.d.ts","sourceRoot":"","sources":["../../../../src/components/suspend-purchase/suspend-purchase.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"suspend-purchase.d.ts","sourceRoot":"","sources":["../../../../src/components/suspend-purchase/suspend-purchase.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,uBAAuB,EAAE,MAAM,mBAAmB,CAAC;AACjE,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAMhD,MAAM,MAAM,oBAAoB,GAAG,uBAAuB,CAAC;IACzD,IAAI,CAAC,EAAE,EAAE,CAAC,kBAAkB,GAAG,EAAE,CAAC,UAAU,CAAC;IAC7C,MAAM,CAAC,EAAE,EAAE,CAAC,UAAU,EAAE,CAAC;IACzB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,mBAAmB,CAAC,EAAE,MAAM,OAAO,CAAC,IAAI,CAAC,CAAC;IAC1C,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC,CAAC;AAEH,eAAO,MAAM,eAAe,GAAI,yEAO7B,oBAAoB,qDAgDtB,CAAC"}
|
|
@@ -309,6 +309,7 @@ export declare const Element: ({ resources, ...props }: LabelsGridProps & import
|
|
|
309
309
|
showMoreRates: string;
|
|
310
310
|
showFewerRates: string;
|
|
311
311
|
saveRate: string;
|
|
312
|
+
createNewShipment: string;
|
|
312
313
|
};
|
|
313
314
|
balance: {
|
|
314
315
|
currentBalance: string;
|
|
@@ -425,7 +426,6 @@ export declare const Element: ({ resources, ...props }: LabelsGridProps & import
|
|
|
425
426
|
otherLocations: string;
|
|
426
427
|
noServicePointsForService: string;
|
|
427
428
|
error: string;
|
|
428
|
-
paperless: string;
|
|
429
429
|
localTimeDisclaimer: string;
|
|
430
430
|
};
|
|
431
431
|
shipToAddressFormFields: string;
|
|
@@ -440,6 +440,8 @@ export declare const Element: ({ resources, ...props }: LabelsGridProps & import
|
|
|
440
440
|
warnings: {
|
|
441
441
|
parcelGuardShipDate: string;
|
|
442
442
|
};
|
|
443
|
+
paperlessAvailable: string;
|
|
444
|
+
usePaperlessLabel: string;
|
|
443
445
|
};
|
|
444
446
|
"payment-method": {
|
|
445
447
|
title: string;
|
|
@@ -927,10 +929,12 @@ export declare const Element: ({ resources, ...props }: LabelsGridProps & import
|
|
|
927
929
|
total: string;
|
|
928
930
|
};
|
|
929
931
|
errorMessages: {
|
|
932
|
+
fundingSourceCreationFailed: string;
|
|
930
933
|
contactSupport: string;
|
|
931
934
|
invalidNameOrCompany: string;
|
|
932
935
|
parsingFailure: string;
|
|
933
936
|
incompleteLabelPurchaseRequirements: string;
|
|
937
|
+
shipmentNotFound: string;
|
|
934
938
|
shipmentCancelled: string;
|
|
935
939
|
unableToLoad: {
|
|
936
940
|
accountSettings: string;
|
|
@@ -1171,6 +1175,12 @@ export declare const Element: ({ resources, ...props }: LabelsGridProps & import
|
|
|
1171
1175
|
unitSettings: string;
|
|
1172
1176
|
vatSettings: string;
|
|
1173
1177
|
};
|
|
1178
|
+
errors: {
|
|
1179
|
+
paymentMethod: {
|
|
1180
|
+
title: string;
|
|
1181
|
+
description: string;
|
|
1182
|
+
};
|
|
1183
|
+
};
|
|
1174
1184
|
};
|
|
1175
1185
|
};
|
|
1176
1186
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"labels-grid.d.ts","sourceRoot":"","sources":["../../../../src/elements/labels-grid/labels-grid.tsx"],"names":[],"mappings":"AAiBA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,oBAAoB,CAAC;AAC7C,OAAO,KAAK,EAGV,kBAAkB,EACnB,MAAM,0BAA0B,CAAC;AAUlC,MAAM,MAAM,eAAe,GAAG;IAC5B;;;OAGG;IACH,QAAQ,CAAC,EAAE,kBAAkB,CAAC;IAC9B;;;OAGG;IACH,WAAW,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC;IAC7B;;;OAGG;IACH,sBAAsB,CAAC,EAAE,CAAC,eAAe,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC5D;;;OAGG;IACH,yBAAyB,CAAC,EAAE,CAAC,kBAAkB,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAClE;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC/B;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC/B;;;OAGG;IACH,qBAAqB,CAAC,EAAE,CAAC,cAAc,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1D;;;OAGG;IACH,qBAAqB,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/F;;;OAGG;IACH,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,KAAK,IAAI,CAAC;IAC/C;;;OAGG;IACH,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,KAAK,IAAI,CAAC;IAC7C;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,KAAK,IAAI,CAAC;CACxC,CAAC;AAEF,MAAM,MAAM,KAAK,GAAG,EAAE,CAAC,KAAK,GAAG;IAAE,WAAW,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI,CAAA;CAAE,CAAC;AAgB1E,eAAO,MAAM,SAAS,GAAI,qNAYvB,eAAe,qDAofjB,CAAC;AAEF,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"labels-grid.d.ts","sourceRoot":"","sources":["../../../../src/elements/labels-grid/labels-grid.tsx"],"names":[],"mappings":"AAiBA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,oBAAoB,CAAC;AAC7C,OAAO,KAAK,EAGV,kBAAkB,EACnB,MAAM,0BAA0B,CAAC;AAUlC,MAAM,MAAM,eAAe,GAAG;IAC5B;;;OAGG;IACH,QAAQ,CAAC,EAAE,kBAAkB,CAAC;IAC9B;;;OAGG;IACH,WAAW,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC;IAC7B;;;OAGG;IACH,sBAAsB,CAAC,EAAE,CAAC,eAAe,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC5D;;;OAGG;IACH,yBAAyB,CAAC,EAAE,CAAC,kBAAkB,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAClE;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC/B;;;OAGG;IACH,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC/B;;;OAGG;IACH,qBAAqB,CAAC,EAAE,CAAC,cAAc,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1D;;;OAGG;IACH,qBAAqB,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/F;;;OAGG;IACH,kBAAkB,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,KAAK,IAAI,CAAC;IAC/C;;;OAGG;IACH,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,KAAK,IAAI,CAAC;IAC7C;;OAEG;IACH,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,KAAK,IAAI,CAAC;CACxC,CAAC;AAEF,MAAM,MAAM,KAAK,GAAG,EAAE,CAAC,KAAK,GAAG;IAAE,WAAW,EAAE,MAAM,GAAG,SAAS,GAAG,IAAI,CAAA;CAAE,CAAC;AAgB1E,eAAO,MAAM,SAAS,GAAI,qNAYvB,eAAe,qDAofjB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sDAGlB,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,CAAC"}
|
|
@@ -273,6 +273,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
273
273
|
showMoreRates: string;
|
|
274
274
|
showFewerRates: string;
|
|
275
275
|
saveRate: string;
|
|
276
|
+
createNewShipment: string;
|
|
276
277
|
};
|
|
277
278
|
balance: {
|
|
278
279
|
currentBalance: string;
|
|
@@ -389,7 +390,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
389
390
|
otherLocations: string;
|
|
390
391
|
noServicePointsForService: string;
|
|
391
392
|
error: string;
|
|
392
|
-
paperless: string;
|
|
393
393
|
localTimeDisclaimer: string;
|
|
394
394
|
};
|
|
395
395
|
shipToAddressFormFields: string;
|
|
@@ -404,6 +404,8 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
404
404
|
warnings: {
|
|
405
405
|
parcelGuardShipDate: string;
|
|
406
406
|
};
|
|
407
|
+
paperlessAvailable: string;
|
|
408
|
+
usePaperlessLabel: string;
|
|
407
409
|
};
|
|
408
410
|
"payment-method": {
|
|
409
411
|
title: string;
|
|
@@ -891,10 +893,12 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
891
893
|
total: string;
|
|
892
894
|
};
|
|
893
895
|
errorMessages: {
|
|
896
|
+
fundingSourceCreationFailed: string;
|
|
894
897
|
contactSupport: string;
|
|
895
898
|
invalidNameOrCompany: string;
|
|
896
899
|
parsingFailure: string;
|
|
897
900
|
incompleteLabelPurchaseRequirements: string;
|
|
901
|
+
shipmentNotFound: string;
|
|
898
902
|
shipmentCancelled: string;
|
|
899
903
|
unableToLoad: {
|
|
900
904
|
accountSettings: string;
|
|
@@ -1135,6 +1139,12 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
1135
1139
|
unitSettings: string;
|
|
1136
1140
|
vatSettings: string;
|
|
1137
1141
|
};
|
|
1142
|
+
errors: {
|
|
1143
|
+
paymentMethod: {
|
|
1144
|
+
title: string;
|
|
1145
|
+
description: string;
|
|
1146
|
+
};
|
|
1147
|
+
};
|
|
1138
1148
|
};
|
|
1139
1149
|
};
|
|
1140
1150
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manage-carriers.d.ts","sourceRoot":"","sources":["../../../../src/elements/manage-carriers/manage-carriers.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAEV,uBAAuB,EAAC,MAAM,2BAA2B,CAAC;AAW5D,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,uBAAuB,EAAE,wBAAwB,GAAG,WAAW,CAAC,CAAC;AAEnG;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,SAAS,GAAI,uCAAuC,cAAc,qDAsB9E,CAAC;AAEF,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"manage-carriers.d.ts","sourceRoot":"","sources":["../../../../src/elements/manage-carriers/manage-carriers.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAEV,uBAAuB,EAAC,MAAM,2BAA2B,CAAC;AAW5D,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,uBAAuB,EAAE,wBAAwB,GAAG,WAAW,CAAC,CAAC;AAEnG;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,eAAO,MAAM,SAAS,GAAI,uCAAuC,cAAc,qDAsB9E,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sDAElB,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,CAAC"}
|
|
@@ -272,6 +272,7 @@ export declare const Element: ({ resources, ...props }: ElementProps & import(".
|
|
|
272
272
|
showMoreRates: string;
|
|
273
273
|
showFewerRates: string;
|
|
274
274
|
saveRate: string;
|
|
275
|
+
createNewShipment: string;
|
|
275
276
|
};
|
|
276
277
|
balance: {
|
|
277
278
|
currentBalance: string;
|
|
@@ -388,7 +389,6 @@ export declare const Element: ({ resources, ...props }: ElementProps & import(".
|
|
|
388
389
|
otherLocations: string;
|
|
389
390
|
noServicePointsForService: string;
|
|
390
391
|
error: string;
|
|
391
|
-
paperless: string;
|
|
392
392
|
localTimeDisclaimer: string;
|
|
393
393
|
};
|
|
394
394
|
shipToAddressFormFields: string;
|
|
@@ -403,6 +403,8 @@ export declare const Element: ({ resources, ...props }: ElementProps & import(".
|
|
|
403
403
|
warnings: {
|
|
404
404
|
parcelGuardShipDate: string;
|
|
405
405
|
};
|
|
406
|
+
paperlessAvailable: string;
|
|
407
|
+
usePaperlessLabel: string;
|
|
406
408
|
};
|
|
407
409
|
"payment-method": {
|
|
408
410
|
title: string;
|
|
@@ -890,10 +892,12 @@ export declare const Element: ({ resources, ...props }: ElementProps & import(".
|
|
|
890
892
|
total: string;
|
|
891
893
|
};
|
|
892
894
|
errorMessages: {
|
|
895
|
+
fundingSourceCreationFailed: string;
|
|
893
896
|
contactSupport: string;
|
|
894
897
|
invalidNameOrCompany: string;
|
|
895
898
|
parsingFailure: string;
|
|
896
899
|
incompleteLabelPurchaseRequirements: string;
|
|
900
|
+
shipmentNotFound: string;
|
|
897
901
|
shipmentCancelled: string;
|
|
898
902
|
unableToLoad: {
|
|
899
903
|
accountSettings: string;
|
|
@@ -1134,6 +1138,12 @@ export declare const Element: ({ resources, ...props }: ElementProps & import(".
|
|
|
1134
1138
|
unitSettings: string;
|
|
1135
1139
|
vatSettings: string;
|
|
1136
1140
|
};
|
|
1141
|
+
errors: {
|
|
1142
|
+
paymentMethod: {
|
|
1143
|
+
title: string;
|
|
1144
|
+
description: string;
|
|
1145
|
+
};
|
|
1146
|
+
};
|
|
1137
1147
|
};
|
|
1138
1148
|
};
|
|
1139
1149
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manage-external-carriers.d.ts","sourceRoot":"","sources":["../../../../src/elements/manage-external-carriers/manage-external-carriers.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAMhF,MAAM,MAAM,YAAY,GAAG,IAAI,CAAC,qBAAqB,EAAE,mBAAmB,CAAC,CAAC;AAE5E;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,SAAS,GAAI,uBAAuB,YAAY,qDAI5D,CAAC;AAEF,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"manage-external-carriers.d.ts","sourceRoot":"","sources":["../../../../src/elements/manage-external-carriers/manage-external-carriers.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAMhF,MAAM,MAAM,YAAY,GAAG,IAAI,CAAC,qBAAqB,EAAE,mBAAmB,CAAC,CAAC;AAE5E;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,SAAS,GAAI,uBAAuB,YAAY,qDAI5D,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sDAElB,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,CAAC"}
|
|
@@ -250,6 +250,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
250
250
|
showMoreRates: string;
|
|
251
251
|
showFewerRates: string;
|
|
252
252
|
saveRate: string;
|
|
253
|
+
createNewShipment: string;
|
|
253
254
|
};
|
|
254
255
|
balance: {
|
|
255
256
|
currentBalance: string;
|
|
@@ -366,7 +367,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
366
367
|
otherLocations: string;
|
|
367
368
|
noServicePointsForService: string;
|
|
368
369
|
error: string;
|
|
369
|
-
paperless: string;
|
|
370
370
|
localTimeDisclaimer: string;
|
|
371
371
|
};
|
|
372
372
|
shipToAddressFormFields: string;
|
|
@@ -381,6 +381,8 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
381
381
|
warnings: {
|
|
382
382
|
parcelGuardShipDate: string;
|
|
383
383
|
};
|
|
384
|
+
paperlessAvailable: string;
|
|
385
|
+
usePaperlessLabel: string;
|
|
384
386
|
};
|
|
385
387
|
"payment-method": {
|
|
386
388
|
title: string;
|
|
@@ -868,10 +870,12 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
868
870
|
total: string;
|
|
869
871
|
};
|
|
870
872
|
errorMessages: {
|
|
873
|
+
fundingSourceCreationFailed: string;
|
|
871
874
|
contactSupport: string;
|
|
872
875
|
invalidNameOrCompany: string;
|
|
873
876
|
parsingFailure: string;
|
|
874
877
|
incompleteLabelPurchaseRequirements: string;
|
|
878
|
+
shipmentNotFound: string;
|
|
875
879
|
shipmentCancelled: string;
|
|
876
880
|
unableToLoad: {
|
|
877
881
|
accountSettings: string;
|
|
@@ -1112,6 +1116,12 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
1112
1116
|
unitSettings: string;
|
|
1113
1117
|
vatSettings: string;
|
|
1114
1118
|
};
|
|
1119
|
+
errors: {
|
|
1120
|
+
paymentMethod: {
|
|
1121
|
+
title: string;
|
|
1122
|
+
description: string;
|
|
1123
|
+
};
|
|
1124
|
+
};
|
|
1115
1125
|
};
|
|
1116
1126
|
};
|
|
1117
1127
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manage-funding-element.d.ts","sourceRoot":"","sources":["../../../../src/elements/manage-funding/manage-funding-element.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAWnE,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,kBAAkB,EAAE,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,SAAS,GAAI,4BAA4B,cAAc,qDA+CnE,CAAC;AAEF,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"manage-funding-element.d.ts","sourceRoot":"","sources":["../../../../src/elements/manage-funding/manage-funding-element.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,0BAA0B,CAAC;AAWnE,MAAM,MAAM,cAAc,GAAG,IAAI,CAAC,kBAAkB,EAAE,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,SAAS,GAAI,4BAA4B,cAAc,qDA+CnE,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sDAElB,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,CAAC"}
|
|
@@ -266,6 +266,7 @@ export declare const Element: ({ resources, ...props }: import("../../create-ele
|
|
|
266
266
|
showMoreRates: string;
|
|
267
267
|
showFewerRates: string;
|
|
268
268
|
saveRate: string;
|
|
269
|
+
createNewShipment: string;
|
|
269
270
|
};
|
|
270
271
|
balance: {
|
|
271
272
|
currentBalance: string;
|
|
@@ -382,7 +383,6 @@ export declare const Element: ({ resources, ...props }: import("../../create-ele
|
|
|
382
383
|
otherLocations: string;
|
|
383
384
|
noServicePointsForService: string;
|
|
384
385
|
error: string;
|
|
385
|
-
paperless: string;
|
|
386
386
|
localTimeDisclaimer: string;
|
|
387
387
|
};
|
|
388
388
|
shipToAddressFormFields: string;
|
|
@@ -397,6 +397,8 @@ export declare const Element: ({ resources, ...props }: import("../../create-ele
|
|
|
397
397
|
warnings: {
|
|
398
398
|
parcelGuardShipDate: string;
|
|
399
399
|
};
|
|
400
|
+
paperlessAvailable: string;
|
|
401
|
+
usePaperlessLabel: string;
|
|
400
402
|
};
|
|
401
403
|
"payment-method": {
|
|
402
404
|
title: string;
|
|
@@ -884,10 +886,12 @@ export declare const Element: ({ resources, ...props }: import("../../create-ele
|
|
|
884
886
|
total: string;
|
|
885
887
|
};
|
|
886
888
|
errorMessages: {
|
|
889
|
+
fundingSourceCreationFailed: string;
|
|
887
890
|
contactSupport: string;
|
|
888
891
|
invalidNameOrCompany: string;
|
|
889
892
|
parsingFailure: string;
|
|
890
893
|
incompleteLabelPurchaseRequirements: string;
|
|
894
|
+
shipmentNotFound: string;
|
|
891
895
|
shipmentCancelled: string;
|
|
892
896
|
unableToLoad: {
|
|
893
897
|
accountSettings: string;
|
|
@@ -1128,6 +1132,12 @@ export declare const Element: ({ resources, ...props }: import("../../create-ele
|
|
|
1128
1132
|
unitSettings: string;
|
|
1129
1133
|
vatSettings: string;
|
|
1130
1134
|
};
|
|
1135
|
+
errors: {
|
|
1136
|
+
paymentMethod: {
|
|
1137
|
+
title: string;
|
|
1138
|
+
description: string;
|
|
1139
|
+
};
|
|
1140
|
+
};
|
|
1131
1141
|
};
|
|
1132
1142
|
};
|
|
1133
1143
|
} | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manage-warehouses.d.ts","sourceRoot":"","sources":["../../../../src/elements/manage-warehouses/manage-warehouses.tsx"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,SAAS,wDAIrB,CAAC;AAEF,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"manage-warehouses.d.ts","sourceRoot":"","sources":["../../../../src/elements/manage-warehouses/manage-warehouses.tsx"],"names":[],"mappings":"AAMA;;;;;;;;;;;;;;;;;GAiBG;AACH,eAAO,MAAM,SAAS,wDAIrB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sDAElB,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,CAAC"}
|
|
@@ -249,6 +249,7 @@ export declare const Element: ({ resources, ...props }: PaymentMethodSettingsPro
|
|
|
249
249
|
showMoreRates: string;
|
|
250
250
|
showFewerRates: string;
|
|
251
251
|
saveRate: string;
|
|
252
|
+
createNewShipment: string;
|
|
252
253
|
};
|
|
253
254
|
balance: {
|
|
254
255
|
currentBalance: string;
|
|
@@ -365,7 +366,6 @@ export declare const Element: ({ resources, ...props }: PaymentMethodSettingsPro
|
|
|
365
366
|
otherLocations: string;
|
|
366
367
|
noServicePointsForService: string;
|
|
367
368
|
error: string;
|
|
368
|
-
paperless: string;
|
|
369
369
|
localTimeDisclaimer: string;
|
|
370
370
|
};
|
|
371
371
|
shipToAddressFormFields: string;
|
|
@@ -380,6 +380,8 @@ export declare const Element: ({ resources, ...props }: PaymentMethodSettingsPro
|
|
|
380
380
|
warnings: {
|
|
381
381
|
parcelGuardShipDate: string;
|
|
382
382
|
};
|
|
383
|
+
paperlessAvailable: string;
|
|
384
|
+
usePaperlessLabel: string;
|
|
383
385
|
};
|
|
384
386
|
"payment-method": {
|
|
385
387
|
title: string;
|
|
@@ -867,10 +869,12 @@ export declare const Element: ({ resources, ...props }: PaymentMethodSettingsPro
|
|
|
867
869
|
total: string;
|
|
868
870
|
};
|
|
869
871
|
errorMessages: {
|
|
872
|
+
fundingSourceCreationFailed: string;
|
|
870
873
|
contactSupport: string;
|
|
871
874
|
invalidNameOrCompany: string;
|
|
872
875
|
parsingFailure: string;
|
|
873
876
|
incompleteLabelPurchaseRequirements: string;
|
|
877
|
+
shipmentNotFound: string;
|
|
874
878
|
shipmentCancelled: string;
|
|
875
879
|
unableToLoad: {
|
|
876
880
|
accountSettings: string;
|
|
@@ -1111,6 +1115,12 @@ export declare const Element: ({ resources, ...props }: PaymentMethodSettingsPro
|
|
|
1111
1115
|
unitSettings: string;
|
|
1112
1116
|
vatSettings: string;
|
|
1113
1117
|
};
|
|
1118
|
+
errors: {
|
|
1119
|
+
paymentMethod: {
|
|
1120
|
+
title: string;
|
|
1121
|
+
description: string;
|
|
1122
|
+
};
|
|
1123
|
+
};
|
|
1114
1124
|
};
|
|
1115
1125
|
};
|
|
1116
1126
|
} | undefined;
|
package/dist/types/elements/payment-method-settings/payment-method-settings-element.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payment-method-settings-element.d.ts","sourceRoot":"","sources":["../../../../src/elements/payment-method-settings/payment-method-settings-element.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,0BAA0B,EAAC,MAAM,mCAAmC,CAAC;AAQvE,eAAO,MAAM,SAAS,GAAI,4BAA4B,0BAA0B,qDAE/E,CAAC;AAEF,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"payment-method-settings-element.d.ts","sourceRoot":"","sources":["../../../../src/elements/payment-method-settings/payment-method-settings-element.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,0BAA0B,EAAC,MAAM,mCAAmC,CAAC;AAQvE,eAAO,MAAM,SAAS,GAAI,4BAA4B,0BAA0B,qDAE/E,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sDAElB,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,CAAC"}
|
|
@@ -24,7 +24,7 @@ export type RateFormProps = {
|
|
|
24
24
|
listServicePointsErrors?: SE.CodedError[] | null;
|
|
25
25
|
onSave?: (rate: Pick<SE.Rate, "carrierId" | "serviceCode">) => Promise<void> | void;
|
|
26
26
|
onSelectRate?: (rate: RateOption) => void;
|
|
27
|
-
onSubmit?: (rateId: string, servicePoint?: SE.ServicePoint) => Promise<void> | void;
|
|
27
|
+
onSubmit?: (rateId: string, servicePoint?: SE.ServicePoint, labelDisplayScheme?: SE.LabelDisplayScheme) => Promise<void> | void;
|
|
28
28
|
onVatRegistrationComplete?: () => void;
|
|
29
29
|
preferredRates?: PreferredRatesResponse;
|
|
30
30
|
preferredServiceCodes?: string[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rate-form.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/components/rate-form/rate-form.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AACjE,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAEhD,OAAO,KAAK,EAAE,sBAAsB,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACjE,OAAO,KAAK,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAOxF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAQ3D,MAAM,MAAM,aAAa,GAAG;IAC1B,QAAQ,CAAC,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC;IACxB,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC;IACtB,eAAe,CAAC,EAAE,qBAAqB,CAAC;IACxC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,qBAAqB,CAAC,EAAE,MAAM,EAAE,CAAC;IACjC,yBAAyB,CAAC,EAAE,MAAM,EAAE,CAAC;IACrC,yBAAyB,CAAC,EAAE,MAAM,EAAE,CAAC;IACrC,MAAM,CAAC,EAAE,EAAE,CAAC,UAAU,EAAE,CAAC;IACzB,QAAQ,CAAC,EAAE,gBAAgB,CAAC;IAC5B,kBAAkB,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAClD,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,MAAM,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,CAAC;IACpB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,uBAAuB,CAAC,EAAE,EAAE,CAAC,UAAU,EAAE,GAAG,IAAI,CAAC;IACjD,MAAM,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,GAAG,aAAa,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IACpF,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,IAAI,CAAC;IAC1C,QAAQ,CAAC,EAAE,
|
|
1
|
+
{"version":3,"file":"rate-form.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/components/rate-form/rate-form.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AACjE,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAEhD,OAAO,KAAK,EAAE,sBAAsB,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACjE,OAAO,KAAK,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAOxF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAQ3D,MAAM,MAAM,aAAa,GAAG;IAC1B,QAAQ,CAAC,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC;IACxB,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC;IACtB,eAAe,CAAC,EAAE,qBAAqB,CAAC;IACxC,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,qBAAqB,CAAC,EAAE,MAAM,EAAE,CAAC;IACjC,yBAAyB,CAAC,EAAE,MAAM,EAAE,CAAC;IACrC,yBAAyB,CAAC,EAAE,MAAM,EAAE,CAAC;IACrC,MAAM,CAAC,EAAE,EAAE,CAAC,UAAU,EAAE,CAAC;IACzB,QAAQ,CAAC,EAAE,gBAAgB,CAAC;IAC5B,kBAAkB,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAClD,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,MAAM,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,CAAC;IACpB,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,uBAAuB,CAAC,EAAE,EAAE,CAAC,UAAU,EAAE,GAAG,IAAI,CAAC;IACjD,MAAM,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,CAAC,IAAI,EAAE,WAAW,GAAG,aAAa,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IACpF,YAAY,CAAC,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,IAAI,CAAC;IAC1C,QAAQ,CAAC,EAAE,CACT,MAAM,EAAE,MAAM,EACd,YAAY,CAAC,EAAE,EAAE,CAAC,YAAY,EAC9B,kBAAkB,CAAC,EAAE,EAAE,CAAC,kBAAkB,KACvC,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC1B,yBAAyB,CAAC,EAAE,MAAM,IAAI,CAAC;IACvC,cAAc,CAAC,EAAE,sBAAsB,CAAC;IACxC,qBAAqB,CAAC,EAAE,MAAM,EAAE,CAAC;IACjC,KAAK,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC;IAClB,UAAU,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC;IAC3B,uBAAuB,CAAC,EAAE,uBAAuB,CAAC;IAClD,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,qBAAqB,CAAC,EAAE,EAAE,CAAC,yBAAyB,CAAC;IACrD,QAAQ,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC;IACjC,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,sgBAgCtB,aAAa,qDA8Of,CAAC"}
|
|
@@ -3,27 +3,36 @@ export declare const rateSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3
3
|
rate: z.ZodObject<{
|
|
4
4
|
isAcknowledged: z.ZodEffects<z.ZodBoolean, boolean, boolean>;
|
|
5
5
|
rateId: z.ZodString;
|
|
6
|
+
labelDisplayScheme: z.ZodOptional<z.ZodEnum<["label", "paperless", "qr_code", "label_and_paperless"]>>;
|
|
6
7
|
}, "strip", z.ZodTypeAny, {
|
|
7
8
|
isAcknowledged: boolean;
|
|
8
9
|
rateId: string;
|
|
10
|
+
labelDisplayScheme?: "label" | "paperless" | "qr_code" | "label_and_paperless" | undefined;
|
|
9
11
|
}, {
|
|
10
12
|
isAcknowledged: boolean;
|
|
11
13
|
rateId: string;
|
|
14
|
+
labelDisplayScheme?: "label" | "paperless" | "qr_code" | "label_and_paperless" | undefined;
|
|
12
15
|
}>;
|
|
13
16
|
}, "strip", z.ZodTypeAny, {
|
|
14
17
|
rate: {
|
|
15
18
|
isAcknowledged: boolean;
|
|
16
19
|
rateId: string;
|
|
20
|
+
labelDisplayScheme?: "label" | "paperless" | "qr_code" | "label_and_paperless" | undefined;
|
|
17
21
|
};
|
|
18
22
|
}, {
|
|
19
23
|
rate: {
|
|
20
24
|
isAcknowledged: boolean;
|
|
21
25
|
rateId: string;
|
|
26
|
+
labelDisplayScheme?: "label" | "paperless" | "qr_code" | "label_and_paperless" | undefined;
|
|
22
27
|
};
|
|
23
|
-
}>,
|
|
28
|
+
}>, {
|
|
29
|
+
rateId: string;
|
|
30
|
+
labelDisplayScheme: "label" | "paperless" | "qr_code" | "label_and_paperless" | undefined;
|
|
31
|
+
}, {
|
|
24
32
|
rate: {
|
|
25
33
|
isAcknowledged: boolean;
|
|
26
34
|
rateId: string;
|
|
35
|
+
labelDisplayScheme?: "label" | "paperless" | "qr_code" | "label_and_paperless" | undefined;
|
|
27
36
|
};
|
|
28
37
|
}>;
|
|
29
38
|
export type RateFormFields = z.input<typeof rateSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rate-schema.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/components/rate-form/rate-schema.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"rate-schema.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/components/rate-form/rate-schema.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAalB,CAAC;AAEN,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AACxD,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,UAAU,CAAC,CAAC"}
|
|
@@ -25,6 +25,7 @@ export type RateViewProps = {
|
|
|
25
25
|
form: UseFormReturn<RateFormFields>;
|
|
26
26
|
isCalculatingRates?: boolean;
|
|
27
27
|
isSavingRate?: boolean;
|
|
28
|
+
onPaperlessAcknowledgementChange?: (usePaperlessLabel?: boolean, labelDisplayScheme?: SE.LabelDisplayScheme) => void;
|
|
28
29
|
onSelectRate?: (rateId: string) => void;
|
|
29
30
|
preferredServiceCodes?: string[];
|
|
30
31
|
pudoServicePointDetails?: PudoServicePointsDetails;
|
|
@@ -36,5 +37,5 @@ export type RateViewProps = {
|
|
|
36
37
|
shipment?: SE.SalesOrderShipment;
|
|
37
38
|
showVatFeatures?: boolean;
|
|
38
39
|
};
|
|
39
|
-
export declare const RateView: ({ carriers, errors, features, form, isCalculatingRates, isSavingRate, onSelectRate, preferredServiceCodes, pudoServicePointDetails, rateFormScrollToRef, rateOptions, rates, salesOrder, selectedRate, shipment, showVatFeatures, }: RateViewProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
40
|
+
export declare const RateView: ({ carriers, errors, features, form, isCalculatingRates, isSavingRate, onPaperlessAcknowledgementChange, onSelectRate, preferredServiceCodes, pudoServicePointDetails, rateFormScrollToRef, rateOptions, rates, salesOrder, selectedRate, shipment, showVatFeatures, }: RateViewProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
40
41
|
//# sourceMappingURL=rate-view.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rate-view.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/components/rate-form/rate-view.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAGjE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAE9C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAIrD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAI3D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAEpD,MAAM,MAAM,wBAAwB,GAAG;IACrC,kBAAkB,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAClD,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,oBAAoB,EAAE,CAAC,YAAY,CAAC,EAAE,EAAE,CAAC,YAAY,KAAK,IAAI,CAAC;IAC/D,uBAAuB,CAAC,EAAE,uBAAuB,CAAC;IAClD,mBAAmB,CAAC,EAAE,EAAE,CAAC,UAAU,EAAE,GAAG,IAAI,CAAC;IAC7C,qBAAqB,CAAC,EAAE,EAAE,CAAC,yBAAyB,CAAC;CACtD,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,QAAQ,CAAC,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC;IACxB,MAAM,CAAC,EAAE;QAAE,QAAQ,EAAE,MAAM,EAAE,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAC/C,QAAQ,CAAC,EAAE,gBAAgB,GAAG;QAC5B,uBAAuB,EAAE,OAAO,CAAC;KAClC,CAAC;IACF,IAAI,EAAE,aAAa,CAAC,cAAc,CAAC,CAAC;IACpC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,YAAY,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,qBAAqB,CAAC,EAAE,MAAM,EAAE,CAAC;IACjC,uBAAuB,CAAC,EAAE,wBAAwB,CAAC;IACnD,mBAAmB,CAAC,EAAE,gBAAgB,CAAC,eAAe,GAAG,IAAI,CAAC,CAAC;IAC/D,WAAW,EAAE,UAAU,EAAE,CAAC;IAC1B,KAAK,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC;IAClB,UAAU,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC;IAC3B,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B,QAAQ,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC;IACjC,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,
|
|
1
|
+
{"version":3,"file":"rate-view.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/components/rate-form/rate-view.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AACzC,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAGjE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAE9C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAIrD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAI3D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAEpD,MAAM,MAAM,wBAAwB,GAAG;IACrC,kBAAkB,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAClD,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,oBAAoB,EAAE,CAAC,YAAY,CAAC,EAAE,EAAE,CAAC,YAAY,KAAK,IAAI,CAAC;IAC/D,uBAAuB,CAAC,EAAE,uBAAuB,CAAC;IAClD,mBAAmB,CAAC,EAAE,EAAE,CAAC,UAAU,EAAE,GAAG,IAAI,CAAC;IAC7C,qBAAqB,CAAC,EAAE,EAAE,CAAC,yBAAyB,CAAC;CACtD,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,QAAQ,CAAC,EAAE,EAAE,CAAC,OAAO,EAAE,CAAC;IACxB,MAAM,CAAC,EAAE;QAAE,QAAQ,EAAE,MAAM,EAAE,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC;IAC/C,QAAQ,CAAC,EAAE,gBAAgB,GAAG;QAC5B,uBAAuB,EAAE,OAAO,CAAC;KAClC,CAAC;IACF,IAAI,EAAE,aAAa,CAAC,cAAc,CAAC,CAAC;IACpC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,gCAAgC,CAAC,EAAE,CACjC,iBAAiB,CAAC,EAAE,OAAO,EAC3B,kBAAkB,CAAC,EAAE,EAAE,CAAC,kBAAkB,KACvC,IAAI,CAAC;IACV,YAAY,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,qBAAqB,CAAC,EAAE,MAAM,EAAE,CAAC;IACjC,uBAAuB,CAAC,EAAE,wBAAwB,CAAC;IACnD,mBAAmB,CAAC,EAAE,gBAAgB,CAAC,eAAe,GAAG,IAAI,CAAC,CAAC;IAC/D,WAAW,EAAE,UAAU,EAAE,CAAC;IAC1B,KAAK,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC;IAClB,UAAU,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC;IAC3B,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B,QAAQ,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC;IACjC,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,uQAqBtB,aAAa,qDAyQf,CAAC"}
|