@shipengine/elements 2.28.0 → 2.29.1
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/dist/cjs/components/field/fields.cjs +2 -2
- package/dist/cjs/components/forms/add-funds-form/add-funds-form.cjs +1 -1
- package/dist/cjs/components/forms/address-form/address-form.cjs +1 -1
- package/dist/cjs/components/forms/address-form/index.cjs +2 -2
- package/dist/cjs/components/forms/auto-funding-form/auto-funding-form.cjs +1 -1
- package/dist/cjs/components/forms/edit-billing-form/edit-billing-form.cjs +87 -12
- package/dist/cjs/components/forms/edit-billing-form/edit-billing-form.styles.cjs +15 -0
- package/dist/cjs/components/forms/ship-from-address-form/ship-from-address-form.cjs +1 -1
- package/dist/cjs/components/forms/vat-form/vat-form.cjs +1 -1
- package/dist/cjs/components/forms/wallet-form/index.cjs +0 -2
- package/dist/cjs/components/forms/wallet-form/wallet-form.cjs +153 -23
- package/dist/cjs/components/forms/wallet-form/wallet-form.styles.cjs +15 -0
- package/dist/cjs/components/forms/wallet-form/wallet-schema.cjs +8 -43
- package/dist/cjs/components/grid-controller/index.cjs +2 -2
- package/dist/cjs/components/grid-filters/components/index.cjs +2 -2
- package/dist/cjs/components/grid-filters/components/label-id-filter/label-id-filter.cjs +1 -1
- package/dist/cjs/components/grid-filters/components/label-status-filter/label-status-filter.cjs +1 -1
- package/dist/cjs/components/grid-filters/components/shipment-id-filter/shipment-id-filter.cjs +1 -1
- package/dist/cjs/components/grid-filters/components/tracking-status-filter/tracking-status-filter.cjs +1 -1
- package/dist/cjs/components/history/history-card/history-card.cjs +1 -1
- package/dist/cjs/components/modal/index.cjs +2 -2
- package/dist/cjs/components/modal/modal.cjs +1 -1
- package/dist/cjs/components/payment/payment-method-selector/index.cjs +7 -0
- package/dist/cjs/components/payment/payment-method-selector/payment-method-selector.cjs +55 -0
- package/dist/cjs/components/payment/payment-method-selector/payment-method-selector.styles.cjs +58 -0
- package/dist/cjs/components/wallet-card/wallet-card.cjs +1 -1
- package/dist/cjs/contexts/auctane-pay-session-context.cjs +158 -0
- package/dist/cjs/contexts/index.cjs +8 -0
- package/dist/cjs/create-element/element/element.cjs +1 -1
- package/dist/cjs/elements/customs-form/customs-form-element.stories.cjs +2 -2
- package/dist/cjs/elements/index.cjs +23 -23
- package/dist/cjs/elements/labels-grid/labels-grid.cjs +1 -1
- package/dist/cjs/elements/manage-carriers/manage-carriers.cjs +1 -1
- package/dist/cjs/elements/manage-external-carriers/manage-external-carriers.cjs +4 -2
- package/dist/cjs/elements/purchase-label/components/customs-forms/customs-forms.cjs +1 -1
- package/dist/cjs/elements/purchase-label/components/customs-forms/product-form/product-form.cjs +1 -1
- package/dist/cjs/elements/purchase-label/components/rate-form/rate-form.cjs +2 -2
- package/dist/cjs/elements/purchase-label/hooks/index.cjs +25 -25
- package/dist/cjs/elements/purchase-label/hooks/use-rate-options.cjs +1 -1
- package/dist/cjs/elements/shipment-summary/components/label-display/label-card.cjs +1 -1
- package/dist/cjs/elements/theme-creator/components/configure-theme/configure-theme.cjs +1 -1
- package/dist/cjs/elements/theme-creator/index.cjs +2 -2
- package/dist/cjs/features/manage-external-carriers/manage-external-carriers.cjs +3 -1
- package/dist/cjs/features/manage-warehouses/manage-warehouses.cjs +1 -1
- package/dist/cjs/features/payment-method-settings/payment-method-settings.cjs +4 -3
- package/dist/cjs/hooks/financial-services/financial-service.cjs +464 -0
- package/dist/cjs/hooks/financial-services/index.cjs +9 -0
- package/dist/cjs/hooks/financial-services/use-financial-service.cjs +188 -0
- package/dist/cjs/hooks/index.cjs +4 -4
- package/dist/cjs/index.cjs +44 -44
- package/dist/cjs/locales/en/register-wallet.json.cjs +5 -0
- package/dist/cjs/package.json.cjs +1 -1
- package/dist/cjs/utilities/form-logger.cjs +4 -4
- package/dist/cjs/utilities/index.cjs +6 -6
- package/dist/cjs/utilities/shipengine/index.cjs +11 -11
- package/dist/cjs/workflows/carrier-services/carrier-services.cjs +3 -3
- package/dist/cjs/workflows/index.cjs +6 -6
- package/dist/cjs/workflows/onboarding/components/carrier-recovery-form/carrier-recovery-form.cjs +1 -1
- package/dist/cjs/workflows/onboarding/components/confirmation-and-submission-step/confirmation-and-submission-step.cjs +16 -5
- package/dist/cjs/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.cjs +6 -6
- package/dist/cjs/workflows/onboarding/components/funding-step/funding-step.cjs +7 -3
- package/dist/cjs/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.cjs +1 -1
- package/dist/cjs/workflows/onboarding/onboarding.cjs +8 -5
- package/dist/esm/components/field/fields.js +1 -1
- package/dist/esm/components/forms/add-funds-form/add-funds-form.js +1 -1
- package/dist/esm/components/forms/address-form/address-form.js +1 -1
- package/dist/esm/components/forms/address-form/index.js +1 -1
- package/dist/esm/components/forms/auto-funding-form/auto-funding-form.js +1 -1
- package/dist/esm/components/forms/edit-billing-form/edit-billing-form.js +88 -13
- package/dist/esm/components/forms/edit-billing-form/edit-billing-form.styles.js +15 -0
- package/dist/esm/components/forms/ship-from-address-form/ship-from-address-form.js +1 -1
- package/dist/esm/components/forms/vat-form/vat-form.js +1 -1
- package/dist/esm/components/forms/wallet-form/index.js +0 -1
- package/dist/esm/components/forms/wallet-form/wallet-form.js +155 -25
- package/dist/esm/components/forms/wallet-form/wallet-form.styles.js +15 -0
- package/dist/esm/components/forms/wallet-form/wallet-schema.js +1 -36
- package/dist/esm/components/grid-controller/index.js +1 -1
- package/dist/esm/components/grid-filters/components/index.js +1 -1
- package/dist/esm/components/grid-filters/components/label-id-filter/label-id-filter.js +1 -1
- package/dist/esm/components/grid-filters/components/label-status-filter/label-status-filter.js +1 -1
- package/dist/esm/components/grid-filters/components/shipment-id-filter/shipment-id-filter.js +1 -1
- package/dist/esm/components/grid-filters/components/tracking-status-filter/tracking-status-filter.js +1 -1
- package/dist/esm/components/history/history-card/history-card.js +1 -1
- package/dist/esm/components/modal/index.js +1 -1
- package/dist/esm/components/modal/modal.js +1 -1
- package/dist/esm/components/payment/payment-method-selector/index.js +1 -0
- package/dist/esm/components/payment/payment-method-selector/payment-method-selector.js +53 -0
- package/dist/esm/components/payment/payment-method-selector/payment-method-selector.styles.js +56 -0
- package/dist/esm/components/wallet-card/wallet-card.js +1 -1
- package/dist/esm/contexts/auctane-pay-session-context.js +155 -0
- package/dist/esm/contexts/index.js +1 -0
- package/dist/esm/create-element/element/element.js +1 -1
- package/dist/esm/elements/customs-form/customs-form-element.stories.js +2 -2
- package/dist/esm/elements/index.js +21 -21
- package/dist/esm/elements/labels-grid/labels-grid.js +1 -1
- package/dist/esm/elements/manage-carriers/manage-carriers.js +1 -1
- package/dist/esm/elements/manage-external-carriers/manage-external-carriers.js +4 -2
- package/dist/esm/elements/purchase-label/components/customs-forms/customs-forms.js +1 -1
- package/dist/esm/elements/purchase-label/components/customs-forms/product-form/product-form.js +1 -1
- package/dist/esm/elements/purchase-label/components/rate-form/rate-form.js +2 -2
- package/dist/esm/elements/purchase-label/hooks/index.js +12 -12
- package/dist/esm/elements/purchase-label/hooks/use-rate-options.js +1 -1
- package/dist/esm/elements/shipment-summary/components/label-display/label-card.js +1 -1
- package/dist/esm/elements/theme-creator/components/configure-theme/configure-theme.js +1 -1
- package/dist/esm/elements/theme-creator/index.js +1 -1
- package/dist/esm/features/manage-external-carriers/manage-external-carriers.js +3 -1
- package/dist/esm/features/manage-warehouses/manage-warehouses.js +1 -1
- package/dist/esm/features/payment-method-settings/payment-method-settings.js +5 -4
- package/dist/esm/hooks/financial-services/financial-service.js +462 -0
- package/dist/esm/hooks/financial-services/index.js +2 -0
- package/dist/esm/hooks/financial-services/use-financial-service.js +186 -0
- package/dist/esm/hooks/index.js +2 -2
- package/dist/esm/index.js +32 -32
- package/dist/esm/locales/en/register-wallet.json.js +5 -0
- package/dist/esm/package.json.js +1 -1
- package/dist/esm/utilities/form-logger.js +4 -4
- package/dist/esm/utilities/index.js +2 -2
- package/dist/esm/utilities/shipengine/index.js +3 -3
- package/dist/esm/workflows/carrier-services/carrier-services.js +3 -3
- package/dist/esm/workflows/index.js +6 -6
- package/dist/esm/workflows/onboarding/components/carrier-recovery-form/carrier-recovery-form.js +1 -1
- package/dist/esm/workflows/onboarding/components/confirmation-and-submission-step/confirmation-and-submission-step.js +16 -5
- package/dist/esm/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.js +6 -6
- package/dist/esm/workflows/onboarding/components/funding-step/funding-step.js +7 -3
- package/dist/esm/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.js +1 -1
- package/dist/esm/workflows/onboarding/onboarding.js +8 -5
- package/dist/types/components/actions-menu/actions-menu.d.ts.map +1 -1
- package/dist/types/components/actions-menu/index.d.ts +1 -1
- package/dist/types/components/actions-menu/index.d.ts.map +1 -1
- package/dist/types/components/address-preference-context/address-preference-context.d.ts +0 -1
- package/dist/types/components/address-preference-context/address-preference-context.d.ts.map +1 -1
- package/dist/types/components/carrier-balance/carrier-balance.d.ts.map +1 -1
- package/dist/types/components/disclosure/disclosure.d.ts.map +1 -1
- package/dist/types/components/drawer/drawer.d.ts.map +1 -1
- package/dist/types/components/enable-insurance-banner/enable-insurance-banner.d.ts.map +1 -1
- package/dist/types/components/field/checkbox-input/checkbox-input.d.ts.map +1 -1
- package/dist/types/components/field/expiration-input/expiration-input.d.ts.map +1 -1
- package/dist/types/components/field/fields.d.ts +1 -1
- package/dist/types/components/field/fields.d.ts.map +1 -1
- package/dist/types/components/field/input-group/input-group.d.ts.map +1 -1
- package/dist/types/components/field/number-input/number-input.d.ts.map +1 -1
- package/dist/types/components/field/rate-select/rate-card/cost-breakdown/cost-breakdown.d.ts.map +1 -1
- package/dist/types/components/field/rate-select/rate-card/rate-detail-cost-breakdown/rate-detail-cost-breakdown.d.ts.map +1 -1
- package/dist/types/components/field/select/select.d.ts.map +1 -1
- package/dist/types/components/field/submit-button/submit-button.d.ts.map +1 -1
- package/dist/types/components/field/text-area/text-area.d.ts.map +1 -1
- package/dist/types/components/field/text-input/text-input.d.ts.map +1 -1
- package/dist/types/components/field-label/field-label.d.ts.map +1 -1
- package/dist/types/components/forms/add-funds-form/add-funds-form.d.ts.map +1 -1
- package/dist/types/components/forms/add-funds-form/index.d.ts +1 -1
- package/dist/types/components/forms/add-funds-form/index.d.ts.map +1 -1
- package/dist/types/components/forms/address-form/index.d.ts +3 -3
- package/dist/types/components/forms/address-form/index.d.ts.map +1 -1
- package/dist/types/components/forms/edit-billing-form/edit-billing-form.d.ts +2 -2
- package/dist/types/components/forms/edit-billing-form/edit-billing-form.d.ts.map +1 -1
- package/dist/types/components/forms/edit-billing-form/edit-billing-form.styles.d.ts +14 -0
- package/dist/types/components/forms/edit-billing-form/edit-billing-form.styles.d.ts.map +1 -1
- package/dist/types/components/forms/ship-from-address-form/ship-from-address-form.d.ts.map +1 -1
- package/dist/types/components/forms/vat-form/vat-form.d.ts.map +1 -1
- package/dist/types/components/forms/wallet-form/index.d.ts +1 -2
- package/dist/types/components/forms/wallet-form/index.d.ts.map +1 -1
- package/dist/types/components/forms/wallet-form/wallet-form.d.ts +4 -1
- package/dist/types/components/forms/wallet-form/wallet-form.d.ts.map +1 -1
- package/dist/types/components/forms/wallet-form/wallet-form.styles.d.ts +14 -0
- package/dist/types/components/forms/wallet-form/wallet-form.styles.d.ts.map +1 -1
- package/dist/types/components/forms/wallet-form/wallet-schema.d.ts +3 -43
- package/dist/types/components/forms/wallet-form/wallet-schema.d.ts.map +1 -1
- package/dist/types/components/forms/warehouse-form/index.d.ts +1 -1
- package/dist/types/components/forms/warehouse-form/index.d.ts.map +1 -1
- package/dist/types/components/grid-controller/cell-formatted-date.d.ts.map +1 -1
- package/dist/types/components/grid-controller/index.d.ts +2 -2
- package/dist/types/components/grid-controller/index.d.ts.map +1 -1
- package/dist/types/components/grid-filters/components/created-date-filter/created-date-filter.d.ts.map +1 -1
- package/dist/types/components/grid-filters/components/index.d.ts +1 -1
- package/dist/types/components/grid-filters/components/index.d.ts.map +1 -1
- package/dist/types/components/grid-filters/components/label-id-filter/label-id-filter.d.ts.map +1 -1
- package/dist/types/components/grid-filters/components/label-status-filter/label-status-filter-schema.d.ts.map +1 -1
- package/dist/types/components/grid-filters/components/label-status-filter/label-status-filter.d.ts.map +1 -1
- package/dist/types/components/grid-filters/components/shipment-id-filter/shipment-id-filter.d.ts.map +1 -1
- package/dist/types/components/grid-filters/components/tracking-status-filter/tracking-status-filter.d.ts.map +1 -1
- package/dist/types/components/grid-filters/index.d.ts +1 -1
- package/dist/types/components/grid-filters/index.d.ts.map +1 -1
- package/dist/types/components/inline-label/inline-label.d.ts.map +1 -1
- package/dist/types/components/insurance-popover/insurance-popover.d.ts.map +1 -1
- package/dist/types/components/items-breakdown/items-breakdown.d.ts.map +1 -1
- package/dist/types/components/loader/loader.d.ts.map +1 -1
- package/dist/types/components/modal/index.d.ts +1 -1
- package/dist/types/components/modal/index.d.ts.map +1 -1
- package/dist/types/components/modal/modal.d.ts.map +1 -1
- package/dist/types/components/pager/pager.d.ts.map +1 -1
- package/dist/types/components/payment/payment-method-selector/index.d.ts +2 -0
- package/dist/types/components/payment/payment-method-selector/index.d.ts.map +1 -0
- package/dist/types/components/payment/payment-method-selector/payment-method-selector.d.ts +11 -0
- package/dist/types/components/payment/payment-method-selector/payment-method-selector.d.ts.map +1 -0
- package/dist/types/components/payment/payment-method-selector/payment-method-selector.styles.d.ts +52 -0
- package/dist/types/components/payment/payment-method-selector/payment-method-selector.styles.d.ts.map +1 -0
- package/dist/types/components/section/section.d.ts.map +1 -1
- package/dist/types/components/suspend/suspend-text.d.ts.map +1 -1
- package/dist/types/contexts/auctane-pay-session-context.d.ts +54 -0
- package/dist/types/contexts/auctane-pay-session-context.d.ts.map +1 -0
- package/dist/types/contexts/index.d.ts +3 -0
- package/dist/types/contexts/index.d.ts.map +1 -0
- package/dist/types/create-element/element/element.d.ts.map +1 -1
- package/dist/types/elements/customs-form/customs-form-element.d.ts +5 -0
- package/dist/types/elements/customs-form/customs-form-element.d.ts.map +1 -1
- package/dist/types/elements/customs-form/customs-form-element.stories.d.ts.map +1 -1
- package/dist/types/elements/customs-form/customs-form-types.d.ts +1 -1
- package/dist/types/elements/customs-form/customs-form-types.d.ts.map +1 -1
- package/dist/types/elements/index.d.ts +11 -11
- package/dist/types/elements/index.d.ts.map +1 -1
- package/dist/types/elements/labels-grid/index.d.ts +1 -1
- package/dist/types/elements/labels-grid/index.d.ts.map +1 -1
- package/dist/types/elements/labels-grid/labels-grid.d.ts +5 -0
- package/dist/types/elements/labels-grid/labels-grid.d.ts.map +1 -1
- package/dist/types/elements/manage-carriers/manage-carriers.d.ts +5 -0
- 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 +7 -2
- 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 +5 -0
- package/dist/types/elements/manage-funding/manage-funding-element.d.ts.map +1 -1
- package/dist/types/elements/manage-warehouses/manage-warehouses.d.ts +5 -0
- 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 +5 -0
- package/dist/types/elements/payment-method-settings/payment-method-settings-element.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/customs-forms/product-form/product-form.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/customs-forms/tax-ids/form/index.d.ts +1 -1
- package/dist/types/elements/purchase-label/components/customs-forms/tax-ids/form/index.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/customs-forms/tax-ids/form/schema.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/customs-forms/tax-ids/index.d.ts +1 -1
- package/dist/types/elements/purchase-label/components/customs-forms/tax-ids/index.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/customs-forms/windsor-framework/windsor-framework.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/index.d.ts +2 -2
- package/dist/types/elements/purchase-label/components/index.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/preset-descriptor/preset-descriptor.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/pudo/here-map/here-map.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/pudo/here-map/use-here-map.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/pudo/pudo-rate-tabs/pudo-rate-tabs.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/rate-form/rate-view.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/components/shipment-form/shipment-schema.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/index.d.ts +13 -13
- package/dist/types/elements/purchase-label/hooks/index.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-confirmation-options.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-customs-contents-options.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-customs-non-delivery-options.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-customs.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-movement-indicator-options.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-package-options/use-package-options.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-presets.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-request-preferred-rates.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-service-code-options/use-service-code-options.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-service-points.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-ship-from-address-options.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-shipment-form.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-shipping-presets-options.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/hooks/use-windsor-framework.d.ts.map +1 -1
- package/dist/types/elements/purchase-label/purchase-label.d.ts +5 -0
- 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 +5 -0
- 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-display.d.ts.map +1 -1
- package/dist/types/elements/shipment-summary/shipment-summary.d.ts +5 -0
- package/dist/types/elements/shipment-summary/shipment-summary.d.ts.map +1 -1
- package/dist/types/elements/shipments-grid/shipments-grid.d.ts +5 -0
- package/dist/types/elements/shipments-grid/shipments-grid.d.ts.map +1 -1
- package/dist/types/elements/shipments-grid/utils/index.d.ts +1 -1
- package/dist/types/elements/shipments-grid/utils/index.d.ts.map +1 -1
- package/dist/types/elements/theme-creator/components/color-palette-editor/color-palette-editor.d.ts.map +1 -1
- package/dist/types/elements/theme-creator/index.d.ts +1 -1
- package/dist/types/elements/theme-creator/index.d.ts.map +1 -1
- package/dist/types/elements/theme-creator/theme-creator-provider.d.ts.map +1 -1
- package/dist/types/elements/theme-creator/theme-creator.d.ts +5 -0
- package/dist/types/elements/theme-creator/theme-creator.d.ts.map +1 -1
- package/dist/types/elements/transaction-history/transaction-history-element.d.ts +5 -0
- 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 +5 -0
- 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 +5 -0
- package/dist/types/elements/vat-settings/vat-settings-element.d.ts.map +1 -1
- package/dist/types/elements/void-label/components/message/message.d.ts.map +1 -1
- package/dist/types/elements/void-label/void-label.d.ts +5 -0
- package/dist/types/elements/void-label/void-label.d.ts.map +1 -1
- package/dist/types/elements-provider/elements-context-provider.d.ts.map +1 -1
- package/dist/types/elements-provider/elements-provider.d.ts.map +1 -1
- package/dist/types/elements-provider/elements-test-provider.d.ts.map +1 -1
- package/dist/types/factories/shipengine/carrier.d.ts.map +1 -1
- package/dist/types/factories/shipengine/index.d.ts +1 -1
- package/dist/types/factories/shipengine/index.d.ts.map +1 -1
- package/dist/types/factories/shipengine/label.d.ts.map +1 -1
- package/dist/types/factories/shipengine/money.d.ts.map +1 -1
- package/dist/types/factories/shipengine/order-source.d.ts.map +1 -1
- package/dist/types/factories/shipengine/package.d.ts.map +1 -1
- package/dist/types/factories/shipengine/resource.d.ts.map +1 -1
- package/dist/types/factories/shipengine/sales-order.d.ts.map +1 -1
- package/dist/types/factories/shipengine/service.d.ts.map +1 -1
- package/dist/types/factories/shipengine/transaction-history.d.ts.map +1 -1
- package/dist/types/factories/shipengine/warehouse.d.ts.map +1 -1
- package/dist/types/factories/shipengine/weight.d.ts.map +1 -1
- package/dist/types/features/manage-carriers/hooks/index.d.ts +1 -1
- package/dist/types/features/manage-carriers/hooks/index.d.ts.map +1 -1
- package/dist/types/features/manage-carriers/use-manage-carriers.d.ts.map +1 -1
- package/dist/types/features/manage-external-carriers/carrier-settings-form/carrier-specific-settings-fields/ups-settings-fields/index.d.ts +1 -2
- package/dist/types/features/manage-external-carriers/carrier-settings-form/carrier-specific-settings-fields/ups-settings-fields/index.d.ts.map +1 -1
- package/dist/types/features/manage-external-carriers/carrier-settings-form/index.d.ts +2 -2
- package/dist/types/features/manage-external-carriers/carrier-settings-form/index.d.ts.map +1 -1
- package/dist/types/features/manage-external-carriers/manage-external-carriers.d.ts +3 -1
- package/dist/types/features/manage-external-carriers/manage-external-carriers.d.ts.map +1 -1
- package/dist/types/features/manage-funding/manage-funding.d.ts.map +1 -1
- package/dist/types/features/payment-method-settings/payment-method-settings.d.ts.map +1 -1
- package/dist/types/features/select-label-layout/use-label-layout.d.ts.map +1 -1
- package/dist/types/features/transaction-history/components/date-range-combo/date-range-combo.d.ts.map +1 -1
- package/dist/types/features/transaction-history/components/date-range-select/date-range-select.d.ts.map +1 -1
- package/dist/types/features/unit-settings/use-unit-settings.d.ts.map +1 -1
- package/dist/types/hooks/financial-services/financial-service.d.ts +279 -0
- package/dist/types/hooks/financial-services/financial-service.d.ts.map +1 -0
- package/dist/types/hooks/financial-services/index.d.ts +5 -0
- package/dist/types/hooks/financial-services/index.d.ts.map +1 -0
- package/dist/types/hooks/financial-services/use-financial-service.d.ts +40 -0
- package/dist/types/hooks/financial-services/use-financial-service.d.ts.map +1 -0
- package/dist/types/hooks/index.d.ts +2 -2
- package/dist/types/hooks/index.d.ts.map +1 -1
- package/dist/types/hooks/options/format-carrier-label.d.ts.map +1 -1
- package/dist/types/hooks/options/use-country-code-options.d.ts.map +1 -1
- package/dist/types/hooks/options/use-shipment-metadata.d.ts.map +1 -1
- package/dist/types/hooks/use-address-validation.d.ts.map +1 -1
- package/dist/types/hooks/use-helpers.stories.d.ts.map +1 -1
- package/dist/types/hooks/use-scrub-errors.d.ts.map +1 -1
- package/dist/types/hooks/use-sortable-query.d.ts.map +1 -1
- package/dist/types/index.d.ts +7 -7
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/locales/en/index.d.ts +5 -0
- package/dist/types/locales/en/index.d.ts.map +1 -1
- package/dist/types/schemas/shipengine/money.d.ts.map +1 -1
- package/dist/types/schemas/shipengine/phone.d.ts.map +1 -1
- package/dist/types/types/financial-services.d.ts +34 -0
- package/dist/types/types/financial-services.d.ts.map +1 -0
- package/dist/types/types/index.d.ts +1 -1
- package/dist/types/types/index.d.ts.map +1 -1
- package/dist/types/utilities/checks.d.ts.map +1 -1
- package/dist/types/utilities/index.d.ts +3 -3
- package/dist/types/utilities/index.d.ts.map +1 -1
- package/dist/types/utilities/rate-warning-messages.d.ts.map +1 -1
- package/dist/types/utilities/shipengine/index.d.ts +3 -3
- package/dist/types/utilities/shipengine/index.d.ts.map +1 -1
- package/dist/types/workflows/account-settings/account-settings.d.ts +5 -0
- package/dist/types/workflows/account-settings/account-settings.d.ts.map +1 -1
- package/dist/types/workflows/account-settings/use-get-panel-props.d.ts.map +1 -1
- package/dist/types/workflows/carrier-services/carrier-services.d.ts +5 -0
- package/dist/types/workflows/carrier-services/carrier-services.d.ts.map +1 -1
- package/dist/types/workflows/carrier-services/use-get-wallet-panel-props.d.ts.map +1 -1
- package/dist/types/workflows/connect-external-carrier/components/available-carriers-list/available-carriers-list.d.ts.map +1 -1
- package/dist/types/workflows/connect-external-carrier/connect-external-carrier.d.ts +5 -0
- package/dist/types/workflows/connect-external-carrier/connect-external-carrier.d.ts.map +1 -1
- package/dist/types/workflows/index.d.ts +3 -3
- package/dist/types/workflows/index.d.ts.map +1 -1
- package/dist/types/workflows/label-workflow/label-workflow.d.ts +5 -0
- package/dist/types/workflows/label-workflow/label-workflow.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/components/carrier-recovery-form/carrier-recovery-form.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/components/completion-page/completion-page.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/components/confirmation-and-submission-step/confirmation-and-submission-step.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/funding-step/funding-step.d.ts.map +1 -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.styles.d.ts.map +1 -1
- package/dist/types/workflows/onboarding/onboarding.d.ts +5 -0
- package/dist/types/workflows/onboarding/onboarding.d.ts.map +1 -1
- package/package.json +8 -5
- package/dist/cjs/components/forms/wallet-form/billing-fields.cjs +0 -71
- package/dist/esm/components/forms/wallet-form/billing-fields.js +0 -69
- package/dist/types/components/forms/wallet-form/billing-fields.d.ts +0 -7
- package/dist/types/components/forms/wallet-form/billing-fields.d.ts.map +0 -1
|
@@ -171,6 +171,11 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
171
171
|
cardSubTitle: string;
|
|
172
172
|
addressSubTitle: string;
|
|
173
173
|
};
|
|
174
|
+
paymentMethod: {
|
|
175
|
+
title: string;
|
|
176
|
+
creditCard: string;
|
|
177
|
+
payByBank: string;
|
|
178
|
+
};
|
|
174
179
|
vatSettings: {
|
|
175
180
|
title: string;
|
|
176
181
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manage-carriers.d.ts","sourceRoot":"","sources":["../../../../src/elements/manage-carriers/manage-carriers.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"manage-carriers.d.ts","sourceRoot":"","sources":["../../../../src/elements/manage-carriers/manage-carriers.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAmB,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAQ1F,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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ExternalCarriersProps } from "../../features/manage-external-carriers";
|
|
2
|
-
export type ElementProps = Pick<ExternalCarriersProps, "isModalFullScreen">;
|
|
2
|
+
export type ElementProps = Pick<ExternalCarriersProps, "isModalFullScreen" | "onCarrierConnected">;
|
|
3
3
|
/**
|
|
4
4
|
* # ManageExternalCarriers Element
|
|
5
5
|
*
|
|
@@ -22,7 +22,7 @@ export type ElementProps = Pick<ExternalCarriersProps, "isModalFullScreen">;
|
|
|
22
22
|
* @see {@link ManageExternalCarriers.ComponentProps | The props that are passed into the `<ManageExternalCarriers />` component}
|
|
23
23
|
* @see {@link AccountSettings.Element | The `<AccountSettings />` component renders the `<ManageExternalCarriers />` component}
|
|
24
24
|
*/
|
|
25
|
-
export declare const Component: ({ isModalFullScreen }: ElementProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
25
|
+
export declare const Component: ({ isModalFullScreen, onCarrierConnected, }: ElementProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
26
26
|
export declare const Element: ({ resources, ...props }: ElementProps & import("../../create-element/element").CSSProp & {
|
|
27
27
|
resources?: {
|
|
28
28
|
en: {
|
|
@@ -170,6 +170,11 @@ export declare const Element: ({ resources, ...props }: ElementProps & import(".
|
|
|
170
170
|
cardSubTitle: string;
|
|
171
171
|
addressSubTitle: string;
|
|
172
172
|
};
|
|
173
|
+
paymentMethod: {
|
|
174
|
+
title: string;
|
|
175
|
+
creditCard: string;
|
|
176
|
+
payByBank: string;
|
|
177
|
+
};
|
|
173
178
|
vatSettings: {
|
|
174
179
|
title: string;
|
|
175
180
|
};
|
|
@@ -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;
|
|
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;AAShF,MAAM,MAAM,YAAY,GAAG,IAAI,CAC7B,qBAAqB,EACrB,mBAAmB,GAAG,oBAAoB,CAC3C,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,eAAO,MAAM,SAAS,GAAI,4CAGvB,YAAY,qDAUd,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sDAElB,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,CAAC"}
|
|
@@ -148,6 +148,11 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
148
148
|
cardSubTitle: string;
|
|
149
149
|
addressSubTitle: string;
|
|
150
150
|
};
|
|
151
|
+
paymentMethod: {
|
|
152
|
+
title: string;
|
|
153
|
+
creditCard: string;
|
|
154
|
+
payByBank: string;
|
|
155
|
+
};
|
|
151
156
|
vatSettings: {
|
|
152
157
|
title: string;
|
|
153
158
|
};
|
|
@@ -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;
|
|
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;AAUnE,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"}
|
|
@@ -164,6 +164,11 @@ export declare const Element: ({ resources, ...props }: import("../../create-ele
|
|
|
164
164
|
cardSubTitle: string;
|
|
165
165
|
addressSubTitle: string;
|
|
166
166
|
};
|
|
167
|
+
paymentMethod: {
|
|
168
|
+
title: string;
|
|
169
|
+
creditCard: string;
|
|
170
|
+
payByBank: string;
|
|
171
|
+
};
|
|
167
172
|
vatSettings: {
|
|
168
173
|
title: string;
|
|
169
174
|
};
|
|
@@ -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"}
|
|
@@ -147,6 +147,11 @@ export declare const Element: ({ resources, ...props }: PaymentMethodSettingsPro
|
|
|
147
147
|
cardSubTitle: string;
|
|
148
148
|
addressSubTitle: string;
|
|
149
149
|
};
|
|
150
|
+
paymentMethod: {
|
|
151
|
+
title: string;
|
|
152
|
+
creditCard: string;
|
|
153
|
+
payByBank: string;
|
|
154
|
+
};
|
|
150
155
|
vatSettings: {
|
|
151
156
|
title: string;
|
|
152
157
|
};
|
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,
|
|
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,EAAE,0BAA0B,EAAE,MAAM,mCAAmC,CAAC;AAMpF,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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product-form.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/customs-forms/product-form/product-form.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAC3C,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"product-form.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/customs-forms/product-form/product-form.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAC3C,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,QAAQ,CAAC;AAmBnD,MAAM,MAAM,gBAAgB,CAAC,CAAC,GAAG,SAAS,IAAI;IAC5C,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC;IACtB,gBAAgB,CAAC,EAAE,EAAE,CAAC,QAAQ,CAAC;IAC/B,qBAAqB,CAAC,EAAE,oBAAoB,EAAE,CAAC;IAC/C,QAAQ,CAAC,EAAE,MAAM,IAAI,CAAC;IACtB,QAAQ,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC,OAAO,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;IAChD,OAAO,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB,GAAG,CACA;IACE,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;CAC/B,GACD;IACE,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,KAAK,CAAC;CACnB,CACJ,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,CAAC,SAAS,OAAO,EAAE,wIAW5C,gBAAgB,CAAC,CAAC,CAAC,qDA6MrB,CAAC"}
|
package/dist/types/elements/purchase-label/components/customs-forms/tax-ids/form/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/elements/purchase-label/components/customs-forms/tax-ids/form/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/elements/purchase-label/components/customs-forms/tax-ids/form/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAChD,OAAO,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAC"}
|
package/dist/types/elements/purchase-label/components/customs-forms/tax-ids/form/schema.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../../../../../src/elements/purchase-label/components/customs-forms/tax-ids/form/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../../../../../../src/elements/purchase-label/components/customs-forms/tax-ids/form/schema.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,MAAM,eAAe,GAAG;IAC5B,UAAU,EAAE,EAAE,CAAC,iBAAiB,CAAC;IACjC,gBAAgB,EAAE,MAAM,CAAC;IACzB,GAAG,EAAE;QACH,IAAI,EAAE,EAAE,CAAC,qBAAqB,CAAC;QAC/B,KAAK,EAAE,MAAM,CAAC;KACf,CAAC;CACH,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS1B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/customs-forms/tax-ids/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/customs-forms/tax-ids/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AAC9C,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"windsor-framework.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/customs-forms/windsor-framework/windsor-framework.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"windsor-framework.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/customs-forms/windsor-framework/windsor-framework.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAIrD,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAI9E,KAAK,qBAAqB,GAAG;IAC3B,IAAI,EAAE,aAAa,CAAC,kBAAkB,CAAC,CAAC;CACzC,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,UAAU,qBAAqB,qDAoC/D,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { RateForm, type RateFormProps } from "./rate-form/rate-form";
|
|
2
|
-
export { ShipmentForm, type ShipmentFormProps, type OnChangeAddressOptions, } from "./shipment-form/shipment-form";
|
|
3
1
|
export { CustomsForms } from "./customs-forms";
|
|
2
|
+
export { RateForm, type RateFormProps } from "./rate-form/rate-form";
|
|
3
|
+
export { type OnChangeAddressOptions, ShipmentForm, type ShipmentFormProps, } from "./shipment-form/shipment-form";
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACrE,OAAO,EACL,YAAY,EACZ,KAAK,iBAAiB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,QAAQ,EAAE,KAAK,aAAa,EAAE,MAAM,uBAAuB,CAAC;AACrE,OAAO,EACL,KAAK,sBAAsB,EAC3B,YAAY,EACZ,KAAK,iBAAiB,GACvB,MAAM,+BAA+B,CAAC"}
|
package/dist/types/elements/purchase-label/components/preset-descriptor/preset-descriptor.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"preset-descriptor.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/components/preset-descriptor/preset-descriptor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"preset-descriptor.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/components/preset-descriptor/preset-descriptor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAM7C,eAAO,MAAM,gBAAgB,GAAI,QAAQ,cAAc,qDA0BtD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"here-map.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/pudo/here-map/here-map.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"here-map.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/pudo/here-map/here-map.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAGpD,MAAM,MAAM,YAAY,GAAG;IACzB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,sBAAsB,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzC,UAAU,EAAE,CAAC,CAAC,GAAG,CAAC,OAAO,CAAC;IAC1B,UAAU,CAAC,EAAE,UAAU,EAAE,CAAC;IAC1B,aAAa,CAAC,EAAE,CAAC,UAAU,EAAE,UAAU,KAAK,IAAI,CAAC;IACjD,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC/B,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,mBAAmB,CAAC,EAAE,CAAC,CAAC,EAAE,CAAC,eAAe,CAAC;CAC5C,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,oLAWrB,YAAY,4DA2Ed,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-here-map.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/pudo/here-map/use-here-map.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"use-here-map.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/pudo/here-map/use-here-map.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,UAAU,GACrB,QAAQ,KAAK,CAAC,SAAS,CAAC,cAAc,CAAC,EACvC,YAAY,CAAC,CAAC,GAAG,CAAC,OAAO,EACzB,gBAAgB,OAAO;;;CAsCxB,CAAC"}
|
package/dist/types/elements/purchase-label/components/pudo/pudo-rate-tabs/pudo-rate-tabs.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pudo-rate-tabs.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/pudo/pudo-rate-tabs/pudo-rate-tabs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAMrE,OAAO,KAAK,EAAE,UAAU,EAAE,EAAE,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"pudo-rate-tabs.d.ts","sourceRoot":"","sources":["../../../../../../../src/elements/purchase-label/components/pudo/pudo-rate-tabs/pudo-rate-tabs.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAC;AAMrE,OAAO,KAAK,EAAE,UAAU,EAAE,EAAE,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AACvE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AAGzC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAMrD,MAAM,MAAM,iBAAiB,GAAG,eAAe,GAAG;IAChD,wBAAwB,EAAE,CAAC,WAAW,EAAE,UAAU,EAAE,KAAK,UAAU,EAAE,CAAC;IACtE,IAAI,CAAC,EAAE,aAAa,CAClB;QACE,IAAI,EAAE;YACJ,cAAc,EAAE,OAAO,CAAC;YACxB,MAAM,EAAE,MAAM,CAAC;SAChB,CAAC;KACH,EACD,GAAG,CACJ,CAAC;IACF,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,YAAY,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI,CAAC;IACxC,kBAAkB,EAAE,CAAC,YAAY,CAAC,EAAE,YAAY,KAAK,IAAI,CAAC;IAC1D,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAChC,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG,iBAAiB,GAAG;IAClD,SAAS,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IACxC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,KAAK,CAAC,EAAE,EAAE,CAAC,IAAI,EAAE,CAAC;IAClB,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,mBAAmB,CAAC,EAAE,UAAU,EAAE,GAAG,IAAI,CAAC;CAC3C,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,8JAU1B,iBAAiB,qDA2InB,CAAC"}
|
|
@@ -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;
|
|
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;AAErD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,aAAa,CAAC;AAK3D,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,yPAoBtB,aAAa,qDAgRf,CAAC"}
|
package/dist/types/elements/purchase-label/components/shipment-form/shipment-schema.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shipment-schema.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/components/shipment-form/shipment-schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAC3C,OAAO,EAAE,0BAA0B,EAAE,MAAM,QAAQ,CAAC;AAGpD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"shipment-schema.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/components/shipment-form/shipment-schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAC3C,OAAO,EAAE,0BAA0B,EAAE,MAAM,QAAQ,CAAC;AAGpD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,KAAK,wBAAwB,GAAG;IAC9B,cAAc,CAAC,EAAE,EAAE,CAAC,aAAa,CAAC;IAClC,4BAA4B,CAAC,EAAE,OAAO,CAAC;IACvC,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC,UAAU,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC;CAC5B,CAAC;AAEF,eAAO,MAAM,iBAAiB,GAAI,kIAO/B,wBAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkL/B,CAAC;AAEF,KAAK,cAAc,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAC3D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC;AACzD,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC,cAAc,CAAC,CAAC"}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
export * from "./use-address";
|
|
2
|
+
export { useConfirmationOptions } from "./use-confirmation-options";
|
|
2
3
|
export * from "./use-customs";
|
|
4
|
+
export { useCustomsContentsOptions } from "./use-customs-contents-options";
|
|
5
|
+
export { useCustomsNonDeliveryOptions } from "./use-customs-non-delivery-options";
|
|
6
|
+
export { COLLAPSED_RATE_VIEW_LIMIT, useFilterVisibleRateOptions, } from "./use-filter-visible-rate-options/use-filter-visible-rate-options";
|
|
7
|
+
export { useInsuranceProviderOptions } from "./use-insurance-provider-options";
|
|
8
|
+
export { useMovementIndicatorOptions } from "./use-movement-indicator-options";
|
|
9
|
+
export { usePackageOptions } from "./use-package-options/use-package-options";
|
|
3
10
|
export * from "./use-presets";
|
|
11
|
+
export { useRateOptions } from "./use-rate-options";
|
|
4
12
|
export * from "./use-rates-form";
|
|
5
|
-
export * from "./use-shipment-form";
|
|
6
13
|
export * from "./use-rates-with-cache";
|
|
7
|
-
export * from "./use-request-rates";
|
|
8
14
|
export * from "./use-request-preferred-rates";
|
|
9
|
-
export
|
|
10
|
-
export { useServicePoints, type ServicePointSearchQuery } from "./use-service-points";
|
|
15
|
+
export * from "./use-request-rates";
|
|
11
16
|
export { useServiceCodeOptions } from "./use-service-code-options";
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export
|
|
15
|
-
export { useInsuranceProviderOptions } from "./use-insurance-provider-options";
|
|
16
|
-
export { useMovementIndicatorOptions } from "./use-movement-indicator-options";
|
|
17
|
-
export { useCustomsNonDeliveryOptions } from "./use-customs-non-delivery-options";
|
|
18
|
-
export { useCustomsContentsOptions } from "./use-customs-contents-options";
|
|
19
|
-
export { useConfirmationOptions } from "./use-confirmation-options";
|
|
17
|
+
export { type ServicePointSearchQuery, useServicePoints } from "./use-service-points";
|
|
18
|
+
export { useShipFromAddressOptions } from "./use-ship-from-address-options";
|
|
19
|
+
export * from "./use-shipment-form";
|
|
20
20
|
export { type UseShippingPresetsOptionsProps, useShippingPresetsOptions, } from "./use-shipping-presets-options";
|
|
21
|
-
export {
|
|
21
|
+
export { useWindsorFramework } from "./use-windsor-framework";
|
|
22
22
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AACpE,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAC3E,OAAO,EAAE,4BAA4B,EAAE,MAAM,oCAAoC,CAAC;AAClF,OAAO,EACL,yBAAyB,EACzB,2BAA2B,GAC5B,MAAM,mEAAmE,CAAC;AAC3E,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAC/E,OAAO,EAAE,2BAA2B,EAAE,MAAM,kCAAkC,CAAC;AAC/E,OAAO,EAAE,iBAAiB,EAAE,MAAM,2CAA2C,CAAC;AAC9E,cAAc,eAAe,CAAC;AAC9B,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,cAAc,kBAAkB,CAAC;AACjC,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,qBAAqB,CAAC;AACpC,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AACnE,OAAO,EAAE,KAAK,uBAAuB,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AACtF,OAAO,EAAE,yBAAyB,EAAE,MAAM,iCAAiC,CAAC;AAC5E,cAAc,qBAAqB,CAAC;AACpC,OAAO,EACL,KAAK,8BAA8B,EACnC,yBAAyB,GAC1B,MAAM,gCAAgC,CAAC;AACxC,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-confirmation-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-confirmation-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"use-confirmation-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-confirmation-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAK3C;;;;;;GAMG;AACH,eAAO,MAAM,sBAAsB;;;GAkBlC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-customs-contents-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-customs-contents-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"use-customs-contents-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-customs-contents-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAK3C;;;;;;GAMG;AACH,eAAO,MAAM,yBAAyB;;;GAWrC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-customs-non-delivery-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-customs-non-delivery-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"use-customs-non-delivery-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-customs-non-delivery-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAK3C;;;;;;GAMG;AACH,eAAO,MAAM,4BAA4B;;;GAWxC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-customs.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-customs.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,
|
|
1
|
+
{"version":3,"file":"use-customs.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-customs.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAMhD,MAAM,MAAM,eAAe,GAAG;IAC5B,QAAQ,CAAC,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,kBAAkB,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IACrE,QAAQ,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC;CAClC,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,wBAAwB,eAAe;;mCAK9C,EAAE,CAAC,OAAO,YAAY,EAAE,CAAC,OAAO,EAAE,mBAAmB,MAAM,GAAG,IAAI;qCA6BnE,EAAE,CAAC,aAAa,EAAE,WAAW,CAAC,MAAM,EAAE,EAAE,CAAC,UAAU,EAAE,KAAK,IAAI;CA2BhF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-movement-indicator-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-movement-indicator-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"use-movement-indicator-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-movement-indicator-options.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAI3C;;;;;;GAMG;AACH,eAAO,MAAM,2BAA2B;;;GAWvC,CAAC"}
|
package/dist/types/elements/purchase-label/hooks/use-package-options/use-package-options.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-package-options.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/hooks/use-package-options/use-package-options.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iDAAiD,CAAC;AAGtF,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"use-package-options.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/hooks/use-package-options/use-package-options.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,iDAAiD,CAAC;AAGtF,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAYhD;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB,GAC5B,WAAW,EAAE,CAAC,OAAO,EAAE,EACvB,qBAAqB,EAAE,CAAC,aAAa,EAAE,EACvC,WAAW,EAAE,CAAC,kBAAkB,iCAqFjC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-presets.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-presets.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,
|
|
1
|
+
{"version":3,"file":"use-presets.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-presets.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAEhD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAK7C,MAAM,MAAM,eAAe,GAAG;IAC5B,OAAO,CAAC,EAAE,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,EAAE,EAAE,CAAC,kBAAkB,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC5F,iBAAiB,CAAC,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,kBAAkB,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC9E,QAAQ,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC;CAClC,CAAC;AAEF,eAAO,MAAM,UAAU,GAAI,0CAA0C,eAAe;gCAIzC,cAAc;;CA4CxD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-request-preferred-rates.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-request-preferred-rates.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"use-request-preferred-rates.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-request-preferred-rates.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAGhD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAEhE,MAAM,MAAM,0BAA0B,GAAG;IACvC,iBAAiB,CAAC,EAAE,oBAAoB,CAAC,mBAAmB,CAAC,CAAC;CAC/D,CAAC;AAEF,MAAM,MAAM,2BAA2B,GAAG,UAAU,CAClD,QAAQ,CAAC,oBAAoB,CAAC,CAAC,mBAAmB,CAAC,CACpD,CAAC;AAEF,eAAO,MAAM,wBAAwB,GAAI,uBAAuB,0BAA0B,oMAUzF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-service-code-options.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/hooks/use-service-code-options/use-service-code-options.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAG/D,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"use-service-code-options.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/purchase-label/hooks/use-service-code-options/use-service-code-options.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAG/D,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,0BAA0B,CAAC;AAMtE;;;;;;GAMG;AACH,eAAO,MAAM,qBAAqB,GAChC,WAAW,EAAE,CAAC,OAAO,EAAE,EACvB,WAAW,EAAE,CAAC,kBAAkB,EAChC,2BAA2B,qBAAqB,CAAC,0BAA0B,CAAC,KAC3E,cAAc,EAoChB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-service-points.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-service-points.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,8BAA8B,EAC9B,mCAAmC,EACnC,kCAAkC,EAElC,IAAI,EACJ,EAAE,
|
|
1
|
+
{"version":3,"file":"use-service-points.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-service-points.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,8BAA8B,EAC9B,mCAAmC,EACnC,kCAAkC,EAElC,IAAI,EACJ,EAAE,EACH,MAAM,uBAAuB,CAAC;AAM/B,MAAM,MAAM,uBAAuB,GAC/B,8BAA8B,CAAC,SAAS,CAAC,GACzC,mCAAmC,CAAC,cAAc,CAAC,GACnD,kCAAkC,CAAC;AAEvC,eAAO,MAAM,gBAAgB,GAAI,QAAQ,IAAI,EAAE,EAAE,WAAW,EAAE,CAAC,kBAAkB;uCAmDzB,uBAAuB;;;;;;CAY9E,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-ship-from-address-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-ship-from-address-options.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"use-ship-from-address-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-ship-from-address-options.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AAK9C;;;;;;GAMG;AACH,eAAO,MAAM,yBAAyB,GACpC,aAAa,EAAE,CAAC,SAAS,EAAE,EAC3B,oBAAoB,CAAC,eAAe,GAAG;IAAE,SAAS,EAAE,MAAM,CAAA;CAAE,CAAC,EAAE,EAC/D,WAAW,EAAE,CAAC,kBAAkB;;;;;;;eA2DjC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-shipment-form.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-shipment-form.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"use-shipment-form.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-shipment-form.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAShD,OAAO,KAAK,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AAMpE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAGrD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAGrD,MAAM,MAAM,oBAAoB,GAAG;IACjC,sBAAsB,CAAC,EAAE,eAAe,CAAC,wBAAwB,CAAC,CAAC;IACnE,qBAAqB,CAAC,EAAE,oBAAoB,EAAE,CAAC;IAC/C,mBAAmB,CAAC,EAAE,eAAe,CAAC,cAAc,CAAC,CAAC;IACtD,aAAa,CAAC,EAAE,eAAe,CAAC,SAAS,CAAC,CAAC;IAC3C,eAAe,CAAC,EAAE,eAAe,CAAC,UAAU,CAAC,CAAC;IAC9C,iBAAiB,CAAC,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,kBAAkB,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IAC9E,QAAQ,CAAC,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,kBAAkB,KAAK,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC;IACrE,UAAU,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC;IAC3B,iBAAiB,CAAC,EAAE,eAAe,EAAE,CAAC;IACtC,QAAQ,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC;IACjC,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,8LAW7B,oBAAoB;;;;;;;;;;mCAwGP,MAAM,oBAAoB,eAAe;uBAtBtC,OAAO,CAAC,EAAE,CAAC,kBAAkB,CAAC;;;;;;;;;;;;;;;;;;CA2FhD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-shipping-presets-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-shipping-presets-options.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"use-shipping-presets-options.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-shipping-presets-options.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAChD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AAuB7C;;;;GAIG;AACH,MAAM,MAAM,8BAA8B,GAAG;IAC3C,QAAQ,CAAC,EAAE;QACT,QAAQ,EAAE,cAAc,EAAE,CAAC;QAC3B,aAAa,EAAE,cAAc,EAAE,CAAC;KACjC,CAAC;IACF,IAAI,CAAC,EAAE;QACL,QAAQ,EAAE,cAAc,EAAE,CAAC;QAC3B,aAAa,EAAE,cAAc,EAAE,CAAC;KACjC,CAAC;CACH,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,yBAAyB,GACpC,qBAAoB,8BAAmC,EACvD,WAAW,EAAE,CAAC,kBAAkB;;;;;;;GAoBjC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-windsor-framework.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-windsor-framework.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"use-windsor-framework.d.ts","sourceRoot":"","sources":["../../../../../src/elements/purchase-label/hooks/use-windsor-framework.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAGhD,eAAO,MAAM,mBAAmB,GAAI,WAAW,EAAE,CAAC,kBAAkB,EAAE,UAAU,OAAO;;mBA8B9B,OAAO;mBAAa,MAAM,EAAE;;;;CA0EpF,CAAC"}
|
|
@@ -373,6 +373,11 @@ export declare const Element: ({ resources, ...props }: PurchaseLabelCommonProps
|
|
|
373
373
|
cardSubTitle: string;
|
|
374
374
|
addressSubTitle: string;
|
|
375
375
|
};
|
|
376
|
+
paymentMethod: {
|
|
377
|
+
title: string;
|
|
378
|
+
creditCard: string;
|
|
379
|
+
payByBank: string;
|
|
380
|
+
};
|
|
376
381
|
vatSettings: {
|
|
377
382
|
title: string;
|
|
378
383
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"purchase-label.d.ts","sourceRoot":"","sources":["../../../../src/elements/purchase-label/purchase-label.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"purchase-label.d.ts","sourceRoot":"","sources":["../../../../src/elements/purchase-label/purchase-label.tsx"],"names":[],"mappings":"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"}
|
|
@@ -146,6 +146,11 @@ export declare const Element: ({ resources, ...props }: import("../../create-ele
|
|
|
146
146
|
cardSubTitle: string;
|
|
147
147
|
addressSubTitle: string;
|
|
148
148
|
};
|
|
149
|
+
paymentMethod: {
|
|
150
|
+
title: string;
|
|
151
|
+
creditCard: string;
|
|
152
|
+
payByBank: string;
|
|
153
|
+
};
|
|
149
154
|
vatSettings: {
|
|
150
155
|
title: string;
|
|
151
156
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"select-label-layout-element.d.ts","sourceRoot":"","sources":["../../../../src/elements/select-label-layout/select-label-layout-element.tsx"],"names":[],"mappings":"AAMA,eAAO,MAAM,SAAS,wDAIrB,CAAC;AAEF,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"select-label-layout-element.d.ts","sourceRoot":"","sources":["../../../../src/elements/select-label-layout/select-label-layout-element.tsx"],"names":[],"mappings":"AAMA,eAAO,MAAM,SAAS,wDAIrB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sDAElB,CAAC;AAEH,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,CAAC"}
|
package/dist/types/elements/shipment-summary/components/label-display/label-display.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"label-display.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/shipment-summary/components/label-display/label-display.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;
|
|
1
|
+
{"version":3,"file":"label-display.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/shipment-summary/components/label-display/label-display.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,uBAAuB,CAAC;AAOhD,MAAM,MAAM,UAAU,GAAG;IACvB,8BAA8B,CAAC,EAAE,EAAE,CAAC,8BAA8B,CAAC;IACnE,KAAK,EAAE,EAAE,CAAC,KAAK,GAAG;QAChB,OAAO,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC;QACrB,oBAAoB,CAAC,EAAE,EAAE,CAAC,gBAAgB,CAAC;QAC3C,iBAAiB,EAAE,EAAE,CAAC,qBAAqB,CAAC;QAC5C,YAAY,CAAC,EAAE,EAAE,CAAC,KAAK,CAAC;QACxB,OAAO,CAAC,EAAE,EAAE,CAAC,cAAc,CAAC;KAC7B,CAAC;IACF,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAC;IAC/B,qBAAqB,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC/F,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,KAAK,IAAI,CAAC;IACxC,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,oHAO1B,UAAU,qDAkFZ,CAAC"}
|
|
@@ -240,6 +240,11 @@ export declare const Element: ({ resources, ...props }: ComponentProps & import(
|
|
|
240
240
|
cardSubTitle: string;
|
|
241
241
|
addressSubTitle: string;
|
|
242
242
|
};
|
|
243
|
+
paymentMethod: {
|
|
244
|
+
title: string;
|
|
245
|
+
creditCard: string;
|
|
246
|
+
payByBank: string;
|
|
247
|
+
};
|
|
243
248
|
vatSettings: {
|
|
244
249
|
title: string;
|
|
245
250
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shipment-summary.d.ts","sourceRoot":"","sources":["../../../../src/elements/shipment-summary/shipment-summary.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"shipment-summary.d.ts","sourceRoot":"","sources":["../../../../src/elements/shipment-summary/shipment-summary.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AAMxE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,cAAc,CAAC;AAGlD;;;;;;GAMG;AACH,MAAM,MAAM,cAAc,GAAG;IAC3B;;OAEG;IACH,QAAQ,CAAC,EAAE,uBAAuB,CAAC;IAEnC;;;OAGG;IACH,iBAAiB,CAAC,EAAE,aAAa,CAAC,mBAAmB,CAAC,CAAC;IAEvD;;;OAGG;IACH,oBAAoB,CAAC,EAAE,aAAa,CAAC,sBAAsB,CAAC,CAAC;IAE7D;;;OAGG;IACH,qBAAqB,CAAC,EAAE,aAAa,CAAC,uBAAuB,CAAC,CAAC;IAE/D;;;OAGG;IACH,gBAAgB,CAAC,EAAE,aAAa,CAAC,kBAAkB,CAAC,CAAC;IAErD;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,eAAO,MAAM,SAAS,GAAI,6GAOvB,cAAc,qDAkChB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA6BI;AACJ,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sDAElB,CAAC;AAEH;;;;;;GAMG;AACH,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,CAAC"}
|
|
@@ -228,6 +228,11 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & imp
|
|
|
228
228
|
cardSubTitle: string;
|
|
229
229
|
addressSubTitle: string;
|
|
230
230
|
};
|
|
231
|
+
paymentMethod: {
|
|
232
|
+
title: string;
|
|
233
|
+
creditCard: string;
|
|
234
|
+
payByBank: string;
|
|
235
|
+
};
|
|
231
236
|
vatSettings: {
|
|
232
237
|
title: string;
|
|
233
238
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shipments-grid.d.ts","sourceRoot":"","sources":["../../../../src/elements/shipments-grid/shipments-grid.tsx"],"names":[],"mappings":"AA2BA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,oBAAoB,CAAC;AAU7C;;;;GAIG;AACH,MAAM,MAAM,kBAAkB,GAAG;IAC/B;;;OAGG;IACH,qBAAqB,CAAC,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,KAAK,IAAI,CAAC;IACxD;;;;OAIG;IACH,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,QAAQ,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACzD;;;OAGG;IACH,cAAc,CAAC,EAAE,EAAE,CAAC,cAAc,CAAC;IACnC;;OAEG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC;;OAEG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;OAEG;IACH,yBAAyB,CAAC,EAAE,MAAM,IAAI,CAAC;CACxC,CAAC;AAaF;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,eAAO,MAAM,SAAS,GAAI,qKAQvB,kBAAkB,qDAmSpB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,eAAO,MAAM,OAAO
|
|
1
|
+
{"version":3,"file":"shipments-grid.d.ts","sourceRoot":"","sources":["../../../../src/elements/shipments-grid/shipments-grid.tsx"],"names":[],"mappings":"AA2BA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,oBAAoB,CAAC;AAU7C;;;;GAIG;AACH,MAAM,MAAM,kBAAkB,GAAG;IAC/B;;;OAGG;IACH,qBAAqB,CAAC,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,KAAK,IAAI,CAAC;IACxD;;;;OAIG;IACH,UAAU,CAAC,EAAE,CAAC,IAAI,EAAE,EAAE,CAAC,QAAQ,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACzD;;;OAGG;IACH,cAAc,CAAC,EAAE,EAAE,CAAC,cAAc,CAAC;IACnC;;OAEG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC;;OAEG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;OAEG;IACH,yBAAyB,CAAC,EAAE,MAAM,IAAI,CAAC;CACxC,CAAC;AAaF;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,eAAO,MAAM,SAAS,GAAI,qKAQvB,kBAAkB,qDAmSpB,CAAC;AAEF;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sDAGlB,CAAC;AAEH;;;;GAIG;AACH,MAAM,MAAM,YAAY,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,OAAO,CAAC,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { filterDateAndShipmentDateIsSameOrWithinInterval, getCreatedDateFilterValue, } from "./created-date-value";
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/elements/shipments-grid/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/elements/shipments-grid/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,+CAA+C,EAC/C,yBAAyB,GAC1B,MAAM,sBAAsB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"color-palette-editor.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/theme-creator/components/color-palette-editor/color-palette-editor.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"color-palette-editor.d.ts","sourceRoot":"","sources":["../../../../../../src/elements/theme-creator/components/color-palette-editor/color-palette-editor.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAO/D,KAAK,uBAAuB,GAAG;IAC7B,SAAS,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;IACnC,qBAAqB,EAAE,CAAC,aAAa,EAAE,eAAe,CAAC,SAAS,CAAC,KAAK,IAAI,CAAC;IAC3E,aAAa,EAAE,eAAe,CAAC,SAAS,CAAC,CAAC;CAC3C,CAAC;AAEF,eAAO,MAAM,kBAAkB,GAAI,sDAIhC,uBAAuB,qDAuHzB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/elements/theme-creator/index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/elements/theme-creator/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,YAAY,MAAM,iBAAiB,CAAC;AAChD,cAAc,0BAA0B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme-creator-provider.d.ts","sourceRoot":"","sources":["../../../../src/elements/theme-creator/theme-creator-provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC/D,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,
|
|
1
|
+
{"version":3,"file":"theme-creator-provider.d.ts","sourceRoot":"","sources":["../../../../src/elements/theme-creator/theme-creator-provider.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC/D,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAGtD,MAAM,MAAM,wBAAwB,GAAG;IACrC,cAAc,EAAE,QAAQ,CAAC,cAAc,CAAC,eAAe,CAAC,CAAC,CAAC;IAC1D,WAAW,EAAE,eAAe,CAAC;CAC9B,CAAC;AAIF,MAAM,MAAM,yBAAyB,GAAG;IACtC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,aAAa,EAAE,eAAe,CAAC;CAChC,CAAC;AAEF,eAAO,MAAM,oBAAoB,GAAI,6BAA6B,yBAAyB,qDAQ1F,CAAC;AAEF,eAAO,MAAM,eAAe,gCAO3B,CAAC"}
|
|
@@ -148,6 +148,11 @@ export declare const Element: ({ resources, ...props }: ConfigureThemeProps & im
|
|
|
148
148
|
cardSubTitle: string;
|
|
149
149
|
addressSubTitle: string;
|
|
150
150
|
};
|
|
151
|
+
paymentMethod: {
|
|
152
|
+
title: string;
|
|
153
|
+
creditCard: string;
|
|
154
|
+
payByBank: string;
|
|
155
|
+
};
|
|
151
156
|
vatSettings: {
|
|
152
157
|
title: string;
|
|
153
158
|
};
|