@shipengine/elements 0.27.0 → 0.28.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/index.cjs +13800 -12803
- package/index.js +14068 -13074
- package/package.json +1 -1
- package/src/components/collapsible-panel/collapsible-panel.d.ts +9 -0
- package/src/components/collapsible-panel/collapsible-panel.styles.d.ts +27 -0
- package/src/components/collapsible-panel/index.d.ts +1 -0
- package/src/components/index.d.ts +1 -0
- package/src/components/label/label.styles.d.ts +1 -1
- package/src/components/save-status/save-status.d.ts +3 -3
- package/src/components/templates/account-settings/account-settings.d.ts +6 -0
- package/src/components/templates/account-settings/index.d.ts +1 -0
- package/src/components/templates/index.d.ts +1 -0
- package/src/elements/account-settings/account-settings.d.ts +621 -0
- package/src/elements/account-settings/index.d.ts +1 -0
- package/src/elements/index.d.ts +1 -0
- package/src/elements/list-carriers/list-carriers.d.ts +0 -602
- package/src/elements/manage-warehouses/manage-warehouses.d.ts +0 -602
- package/src/elements/onboarding/onboarding.d.ts +15 -0
- package/src/elements/purchase-label/purchase-label.d.ts +15 -0
- package/src/elements/view-shipment/view-shipment.d.ts +15 -0
- package/src/elements/void-label/void-label.d.ts +15 -0
- package/src/locales/en/index.d.ts +15 -0
- package/src/utilities/shipengine/carrier.d.ts +2 -0
|
@@ -592,6 +592,21 @@ declare const _default: {
|
|
|
592
592
|
QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBVUFMgd2VpZ2h0IGxpbWl0IHBlciBwYWNrYWdlIGlzIDE1MCBsYnMu: string;
|
|
593
593
|
UGxlYXNlIGFkZCBhIFN0YW1wcy5jb20gYWNjb3VudCB0byBTaGlwRW5naW5lIGluIG9yZGVyIHRvIGNyZWF0ZSBzaGlwcGluZyBsYWJlbHMu: string;
|
|
594
594
|
QSBzaGlwcGluZyBlcnJvciBvY2N1cnJlZDogTWlzc2luZyBvciBpbnZhbGlkIHNoaXBwZXIgbnVtYmVy: string;
|
|
595
|
+
"QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBNaXNzaW5nIG9yIGludmFsaWQgc2hpcCB0byBTdGF0ZVByb3ZpbmNlQ29kZQ==": string;
|
|
596
|
+
"QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBJbnZhbGlkIHNvbGQgdG8gc3RhdGUgcHJvdmluY2UgY29kZS4gVmFsaWQgbGVuZ3RoIGlzIDAgdG8gNSBhbHBoYW51bWVyaWM=": string;
|
|
597
|
+
};
|
|
598
|
+
"account-settings": {
|
|
599
|
+
title: string;
|
|
600
|
+
sections: {
|
|
601
|
+
accountBalance: string;
|
|
602
|
+
paymentMethod: string;
|
|
603
|
+
transactionHistory: string;
|
|
604
|
+
adjustmentHistory: string;
|
|
605
|
+
warehouses: string;
|
|
606
|
+
carriers: string;
|
|
607
|
+
labelLayout: string;
|
|
608
|
+
unitSettings: string;
|
|
609
|
+
};
|
|
595
610
|
};
|
|
596
611
|
};
|
|
597
612
|
export default _default;
|
|
@@ -1,2 +1,4 @@
|
|
|
1
|
+
import { SE } from "@shipengine/alchemy";
|
|
1
2
|
export declare const isUspsCarrier: (carrierCode: string) => boolean;
|
|
2
3
|
export declare const isUpsCarrier: (carrierCode: string) => boolean;
|
|
4
|
+
export declare const getCarrierIdByCarrierCode: (carriers: SE.Carrier[] | undefined, carrierCode: string) => string | undefined;
|