@shipengine/elements 0.23.1 → 0.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/index.cjs +594 -293
- package/index.js +599 -298
- package/package.json +4 -3
- package/src/components/add-funds-form/add-funds-form.styles.d.ts +21 -5
- package/src/components/auto-funding-form/auto-funding-form.styles.d.ts +18 -1
- package/src/components/carrier-balance/carrier-balance.styles.d.ts +5 -1
- package/src/components/date-range-select/date-range-select.styles.d.ts +7 -1
- package/src/components/disclosure/disclosure.styles.d.ts +23 -1
- package/src/components/error-display/error-display.d.ts +1 -0
- package/src/components/error-display/error-display.styles.d.ts +19 -0
- package/src/components/error-display/index.d.ts +1 -0
- package/src/components/field/rate-card/rate-card.d.ts +1 -2
- package/src/components/field/rate-card/rate-card.styles.d.ts +0 -2
- package/src/components/field/switch/switch.d.ts +3 -2
- package/src/components/fund-and-purchase/fund-and-purchase.styles.d.ts +20 -1
- package/src/components/history/history-card/history-card.styles.d.ts +42 -1
- package/src/components/history/history-card-extension/history-card-extension.d.ts +1 -0
- package/src/components/history/history-card-extension/history-card-extension.styles.d.ts +26 -0
- package/src/components/history/history-card-extension/index.d.ts +1 -0
- package/src/components/history/index.d.ts +1 -0
- package/src/components/inline-label/inline-label.styles.d.ts +8 -1
- package/src/components/items-breakdown/items-breakdown.styles.d.ts +21 -1
- package/src/components/label/label.d.ts +1 -1
- package/src/components/label/label.styles.d.ts +12 -1
- package/src/components/label-layout/label-layout.styles.d.ts +106 -1
- package/src/components/link-action/link-action.d.ts +3 -1
- package/src/components/section/section.styles.d.ts +33 -1
- package/src/components/settings-card/settings-card.styles.d.ts +41 -1
- package/src/components/templates/address-form/address-fields.styles.d.ts +27 -1
- package/src/components/templates/carrier-recovery-form/carrier-recovery-form.styles.d.ts +11 -1
- package/src/components/templates/carrier-terms-form/carrier-terms-form.styles.d.ts +56 -1
- package/src/components/templates/customs-items-display/customs-items-display.styles.d.ts +60 -1
- package/src/components/templates/edit-billing-form/edit-billing-form.styles.d.ts +16 -1
- package/src/components/templates/label/label.styles.d.ts +12 -1
- package/src/components/templates/landing-page/landing-page.styles.d.ts +14 -1
- package/src/components/templates/list-carriers/list-carriers.styles.d.ts +25 -1
- package/src/components/templates/list-carriers-row/list-carriers-row.styles.d.ts +23 -1
- package/src/components/templates/manage-wallet/manage-wallet.styles.d.ts +21 -1
- package/src/components/templates/manage-warehouses/manage-warehouse.styles.d.ts +14 -1
- package/src/components/templates/onboarding/onboarding.styles.d.ts +21 -1
- package/src/components/templates/rate-form/rate-form.d.ts +3 -2
- package/src/components/templates/rate-form/rate-form.styles.d.ts +16 -1
- package/src/components/templates/wallet-card/wallet-card.styles.d.ts +11 -1
- package/src/components/templates/wallet-form/wallet-form.styles.d.ts +5 -1
- package/src/components/unit-settings/unit-settings.d.ts +1 -4
- package/src/elements/configure-shipment/hooks/use-rates-form.d.ts +2 -0
- package/src/elements/list-carriers/list-carriers.d.ts +10 -4
- package/src/elements/manage-warehouses/manage-warehouses.d.ts +10 -4
- package/src/elements/onboarding/onboarding.d.ts +10 -4
- package/src/elements/purchase-label/purchase-label.d.ts +10 -4
- package/src/elements/view-shipment/view-shipment.d.ts +10 -4
- package/src/elements/void-label/void-label.d.ts +10 -4
- package/src/factories/shipengine/wallet-history.d.ts +52 -0
- package/src/features/wallet-history/wallet-history.styles.d.ts +81 -1
- package/src/hooks/options/use-rate-options.d.ts +1 -14
- package/src/locales/en/index.d.ts +10 -4
- package/src/mocks/account-settings/handlers.d.ts +8 -0
- package/src/mocks/account-settings/index.d.ts +1 -0
- package/src/mocks/index.d.ts +1 -0
- package/src/public-sdk.d.ts +38 -0
- package/src/utilities/rates.d.ts +1 -1
- package/src/utilities/styles.d.ts +27 -6
- package/vite.config.d.ts +2 -0
|
@@ -1 +1,60 @@
|
|
|
1
|
-
export declare const styles:
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
actions: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
3
|
+
background: string;
|
|
4
|
+
display: "flex";
|
|
5
|
+
flexDirection: "column";
|
|
6
|
+
};
|
|
7
|
+
actionsButton: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
8
|
+
padding: string;
|
|
9
|
+
verticalAlign: string;
|
|
10
|
+
};
|
|
11
|
+
actionsColumn: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
12
|
+
padding: string;
|
|
13
|
+
width: number;
|
|
14
|
+
};
|
|
15
|
+
headerDescription: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
16
|
+
overflow: "visible";
|
|
17
|
+
padding: string;
|
|
18
|
+
};
|
|
19
|
+
headerEach: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
20
|
+
padding: string;
|
|
21
|
+
textAlign: "right";
|
|
22
|
+
width: number;
|
|
23
|
+
};
|
|
24
|
+
headerQty: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
25
|
+
padding: number;
|
|
26
|
+
textAlign: "right";
|
|
27
|
+
width: number;
|
|
28
|
+
};
|
|
29
|
+
headerTotal: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
30
|
+
padding: string;
|
|
31
|
+
textAlign: "right";
|
|
32
|
+
width: number;
|
|
33
|
+
};
|
|
34
|
+
hsCode: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
35
|
+
padding: string;
|
|
36
|
+
whiteSpace: "normal";
|
|
37
|
+
wordBreak: "break-word";
|
|
38
|
+
};
|
|
39
|
+
itemEach: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
40
|
+
padding: string;
|
|
41
|
+
textAlign: "right";
|
|
42
|
+
width: number;
|
|
43
|
+
};
|
|
44
|
+
itemInfoLeft: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
45
|
+
overflow: "hidden";
|
|
46
|
+
padding: string;
|
|
47
|
+
};
|
|
48
|
+
itemQty: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
49
|
+
overflow: "visible";
|
|
50
|
+
padding: string;
|
|
51
|
+
textAlign: "center";
|
|
52
|
+
width: number;
|
|
53
|
+
};
|
|
54
|
+
itemTotal: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
55
|
+
overflow: "visible";
|
|
56
|
+
padding: string;
|
|
57
|
+
textAlign: "right";
|
|
58
|
+
width: number;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
export declare const styles:
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
boldLink: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
3
|
+
fontWeight: number;
|
|
4
|
+
};
|
|
5
|
+
container: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
6
|
+
backgroundColor: string;
|
|
7
|
+
rowGap: string;
|
|
8
|
+
};
|
|
9
|
+
heading: {
|
|
10
|
+
textAlign: "center";
|
|
11
|
+
};
|
|
12
|
+
subtitle: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
13
|
+
paddingBottom: number;
|
|
14
|
+
textAlign: "left";
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -1 +1,12 @@
|
|
|
1
|
-
export declare const styles:
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
trackingNumber: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
3
|
+
alignItems: "center";
|
|
4
|
+
display: "flex";
|
|
5
|
+
};
|
|
6
|
+
truncatedTrackingNumber: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
7
|
+
overflow: "hidden";
|
|
8
|
+
textOverflow: "ellipsis";
|
|
9
|
+
whiteSpace: "nowrap";
|
|
10
|
+
width: number;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -1 +1,14 @@
|
|
|
1
|
-
export declare const styles:
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
container: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
3
|
+
padding: number;
|
|
4
|
+
};
|
|
5
|
+
description: {
|
|
6
|
+
textAlign: "center";
|
|
7
|
+
};
|
|
8
|
+
header: {
|
|
9
|
+
alignItems: "center";
|
|
10
|
+
display: "flex";
|
|
11
|
+
flexDirection: "column";
|
|
12
|
+
textAlign: "center";
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -1 +1,25 @@
|
|
|
1
|
-
export declare const styles:
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
carriersList: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
3
|
+
"& > li:not(:last-of-type)": {
|
|
4
|
+
borderBottom: string;
|
|
5
|
+
};
|
|
6
|
+
border: string;
|
|
7
|
+
borderRadius: string;
|
|
8
|
+
listStyle: "none";
|
|
9
|
+
};
|
|
10
|
+
skeletonLogoContainer: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
11
|
+
alignItems: "center";
|
|
12
|
+
columnGap: string;
|
|
13
|
+
display: "flex";
|
|
14
|
+
};
|
|
15
|
+
skeletonRow: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
16
|
+
"&:not(:last-of-type)": {
|
|
17
|
+
borderBottom: string;
|
|
18
|
+
};
|
|
19
|
+
alignItems: "center";
|
|
20
|
+
display: "flex";
|
|
21
|
+
flexDirection: "row";
|
|
22
|
+
justifyContent: "space-between";
|
|
23
|
+
padding: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -1 +1,23 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
container: {
|
|
3
|
+
display: "flex";
|
|
4
|
+
flexDirection: "column";
|
|
5
|
+
};
|
|
6
|
+
getConnectButton: (isConnected?: boolean) => (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
7
|
+
backgroundColor?: string | undefined;
|
|
8
|
+
borderRadius?: string | undefined;
|
|
9
|
+
color?: string | undefined;
|
|
10
|
+
padding: string;
|
|
11
|
+
};
|
|
12
|
+
logoContainer: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
13
|
+
alignItems: "center";
|
|
14
|
+
columnGap: string;
|
|
15
|
+
display: "flex";
|
|
16
|
+
};
|
|
17
|
+
rowContainer: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
18
|
+
alignItems: "center";
|
|
19
|
+
display: "flex";
|
|
20
|
+
justifyContent: "space-between";
|
|
21
|
+
padding: string;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -1 +1,21 @@
|
|
|
1
|
-
export declare const styles:
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
container: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
3
|
+
padding: string;
|
|
4
|
+
};
|
|
5
|
+
headingContainer: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
6
|
+
backgroundColor: string;
|
|
7
|
+
padding: number;
|
|
8
|
+
position: "relative";
|
|
9
|
+
width: string;
|
|
10
|
+
};
|
|
11
|
+
subtitle: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
12
|
+
backgroundColor: string;
|
|
13
|
+
marginBottom: number;
|
|
14
|
+
padding: number;
|
|
15
|
+
position: "absolute";
|
|
16
|
+
textAlign: "left";
|
|
17
|
+
top: string;
|
|
18
|
+
transform: "translateY(-50%)";
|
|
19
|
+
width: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -1 +1,14 @@
|
|
|
1
|
-
export declare const styles:
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
cardSpacing: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
3
|
+
display: "flex";
|
|
4
|
+
flexDirection: "column";
|
|
5
|
+
gap: number;
|
|
6
|
+
};
|
|
7
|
+
header: {
|
|
8
|
+
textAlign: "left";
|
|
9
|
+
};
|
|
10
|
+
well: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
11
|
+
backgroundColor: string;
|
|
12
|
+
padding: number;
|
|
13
|
+
};
|
|
14
|
+
};
|
|
@@ -1 +1,21 @@
|
|
|
1
|
-
export declare const styles:
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
container: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
3
|
+
padding: number;
|
|
4
|
+
};
|
|
5
|
+
step: {
|
|
6
|
+
"& > span:last-child": {
|
|
7
|
+
position: "static";
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
walletFormHeader: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
11
|
+
margin: number;
|
|
12
|
+
};
|
|
13
|
+
walletFormTitle: {
|
|
14
|
+
textAlign: "center";
|
|
15
|
+
};
|
|
16
|
+
wrapper: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
17
|
+
height: string;
|
|
18
|
+
padding: number;
|
|
19
|
+
width: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -2,7 +2,6 @@ import { SE } from "@shipengine/alchemy";
|
|
|
2
2
|
export type RateFormFeatures = {
|
|
3
3
|
enableFunding?: boolean;
|
|
4
4
|
enableGlobalPostFiltering?: boolean;
|
|
5
|
-
includeRecommendedRates?: boolean;
|
|
6
5
|
nicknameRate?: boolean;
|
|
7
6
|
saveRate?: boolean;
|
|
8
7
|
};
|
|
@@ -15,6 +14,8 @@ export type RateFormProps = {
|
|
|
15
14
|
features?: RateFormFeatures;
|
|
16
15
|
isLoading?: boolean;
|
|
17
16
|
labelErrors?: SE.CodedError[];
|
|
17
|
+
labels?: SE.Label[];
|
|
18
|
+
labelsLoading?: boolean;
|
|
18
19
|
onSave?: (rate: Pick<SE.Rate, "carrierId" | "serviceCode">) => Promise<void> | void;
|
|
19
20
|
onSelectRate?: (rateId: string) => void;
|
|
20
21
|
onSubmit?: (rateId: string) => Promise<void> | void;
|
|
@@ -22,4 +23,4 @@ export type RateFormProps = {
|
|
|
22
23
|
rates?: SE.Rate[];
|
|
23
24
|
shipment?: SE.SalesOrderShipment;
|
|
24
25
|
};
|
|
25
|
-
export declare const RateForm: ({ carriers, disabled, errors, displayableErrors, displayableLabelErrors, features, labelErrors, isLoading, onSave, onSelectRate, onSubmit, rates, shipment, outOfBandDisplayableErrors, }: RateFormProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
26
|
+
export declare const RateForm: ({ carriers, disabled, errors, displayableErrors, displayableLabelErrors, features, labelErrors, labels, labelsLoading, isLoading, onSave, onSelectRate, onSubmit, rates, shipment, outOfBandDisplayableErrors, }: RateFormProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
export declare const styles:
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
fundAndPurchase: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
3
|
+
borderTop: string;
|
|
4
|
+
};
|
|
5
|
+
ratesInterstitial: {
|
|
6
|
+
alignItems: "center";
|
|
7
|
+
display: "flex";
|
|
8
|
+
flexDirection: "column";
|
|
9
|
+
justifyContent: "center";
|
|
10
|
+
textAlign: "center";
|
|
11
|
+
};
|
|
12
|
+
showMoreOrLessRatesButton: {
|
|
13
|
+
alignItems: "center";
|
|
14
|
+
display: "flex";
|
|
15
|
+
};
|
|
16
|
+
};
|
|
@@ -1 +1,11 @@
|
|
|
1
|
-
export declare const styles:
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
container: {
|
|
3
|
+
display: "flex";
|
|
4
|
+
height: string;
|
|
5
|
+
justifyContent: "center";
|
|
6
|
+
width: string;
|
|
7
|
+
};
|
|
8
|
+
icon: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
9
|
+
color: string;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
export declare const styles:
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
grid: (theme: import("@packlink/giger-theme/dist/lib/Theme").Theme) => {
|
|
3
|
+
margin: number;
|
|
4
|
+
};
|
|
5
|
+
};
|
|
@@ -1,4 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
onChange?: () => void;
|
|
3
|
-
};
|
|
4
|
-
export declare const UnitSettings: ({ onChange }: UnitSettingsProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
1
|
+
export declare const UnitSettings: () => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
@@ -17,6 +17,8 @@ export declare const useRatesForm: ({ onBeforeLabelCreate, onLabelCreateFailure,
|
|
|
17
17
|
errors: SE.CodedError[] | undefined;
|
|
18
18
|
isLoading: boolean;
|
|
19
19
|
labelErrors: SE.CodedError[] | undefined;
|
|
20
|
+
labels: SE.Label[] | undefined;
|
|
21
|
+
labelsLoading: boolean;
|
|
20
22
|
onSave: ({ carrierId, serviceCode }: Pick<SE.Rate, "carrierId" | "serviceCode">) => Promise<void>;
|
|
21
23
|
onSubmit: (rateId: string) => Promise<void>;
|
|
22
24
|
rates: SE.Rate[] | undefined;
|
|
@@ -17,6 +17,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
19
|
"void-label": {
|
|
20
|
+
title: string;
|
|
20
21
|
actions: {
|
|
21
22
|
complete: string;
|
|
22
23
|
confirmVoid: string;
|
|
@@ -35,6 +36,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
35
36
|
voidedOn: string;
|
|
36
37
|
};
|
|
37
38
|
"view-shipment": {
|
|
39
|
+
title: string;
|
|
38
40
|
actions: {
|
|
39
41
|
buyAnotherLabel: string;
|
|
40
42
|
hideItems: string;
|
|
@@ -114,6 +116,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
114
116
|
agreeToTerms: string;
|
|
115
117
|
};
|
|
116
118
|
"purchase-label": {
|
|
119
|
+
title: string;
|
|
117
120
|
actions: {
|
|
118
121
|
calculateRates_one: string;
|
|
119
122
|
calculateRates_other: string;
|
|
@@ -171,6 +174,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
171
174
|
fractional: string;
|
|
172
175
|
};
|
|
173
176
|
weightGroup: string;
|
|
177
|
+
today: string;
|
|
174
178
|
};
|
|
175
179
|
hints: {
|
|
176
180
|
contentDescription: string;
|
|
@@ -183,10 +187,6 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
183
187
|
selectService: string;
|
|
184
188
|
};
|
|
185
189
|
multipleShippingServices: string;
|
|
186
|
-
recommendedRates: {
|
|
187
|
-
recommended: string;
|
|
188
|
-
stayInformed: string;
|
|
189
|
-
};
|
|
190
190
|
schemaErrors: {
|
|
191
191
|
shipFromUnitedStatesOnly: string;
|
|
192
192
|
shipFromAddressRequired: string;
|
|
@@ -194,6 +194,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
194
194
|
};
|
|
195
195
|
rates: {
|
|
196
196
|
uspsMediaMailAcknowledgement: string;
|
|
197
|
+
uspsFirstClassMailAcknowledgement_leof: string;
|
|
197
198
|
};
|
|
198
199
|
shipToAddressFormFields: string;
|
|
199
200
|
sections: {
|
|
@@ -204,6 +205,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
204
205
|
};
|
|
205
206
|
};
|
|
206
207
|
onboarding: {
|
|
208
|
+
title: string;
|
|
207
209
|
inlineTitle: string;
|
|
208
210
|
landing: {
|
|
209
211
|
action: string;
|
|
@@ -262,6 +264,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
262
264
|
};
|
|
263
265
|
};
|
|
264
266
|
"manage-warehouses": {
|
|
267
|
+
title: string;
|
|
265
268
|
addNew: string;
|
|
266
269
|
editWarehouse: string;
|
|
267
270
|
contactName: string;
|
|
@@ -325,6 +328,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
325
328
|
maximumBalanceAmount: string;
|
|
326
329
|
};
|
|
327
330
|
"list-carriers": {
|
|
331
|
+
title: string;
|
|
328
332
|
headers: {
|
|
329
333
|
accountCarriers: string;
|
|
330
334
|
carriers: string;
|
|
@@ -467,6 +471,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
467
471
|
invalidNameOrCompany: string;
|
|
468
472
|
noWarehouses: string;
|
|
469
473
|
unableToLoad: {
|
|
474
|
+
accountSettings: string;
|
|
470
475
|
autoFundingSettings: string;
|
|
471
476
|
carrier: string;
|
|
472
477
|
carriers: string;
|
|
@@ -495,6 +500,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
495
500
|
thirdParty: string;
|
|
496
501
|
};
|
|
497
502
|
loading: {
|
|
503
|
+
accountSettings: string;
|
|
498
504
|
carrier: string;
|
|
499
505
|
carriers: string;
|
|
500
506
|
data: string;
|
|
@@ -21,6 +21,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
21
21
|
};
|
|
22
22
|
};
|
|
23
23
|
"void-label": {
|
|
24
|
+
title: string;
|
|
24
25
|
actions: {
|
|
25
26
|
complete: string;
|
|
26
27
|
confirmVoid: string;
|
|
@@ -39,6 +40,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
39
40
|
voidedOn: string;
|
|
40
41
|
};
|
|
41
42
|
"view-shipment": {
|
|
43
|
+
title: string;
|
|
42
44
|
actions: {
|
|
43
45
|
buyAnotherLabel: string;
|
|
44
46
|
hideItems: string;
|
|
@@ -118,6 +120,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
118
120
|
agreeToTerms: string;
|
|
119
121
|
};
|
|
120
122
|
"purchase-label": {
|
|
123
|
+
title: string;
|
|
121
124
|
actions: {
|
|
122
125
|
calculateRates_one: string;
|
|
123
126
|
calculateRates_other: string;
|
|
@@ -175,6 +178,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
175
178
|
fractional: string;
|
|
176
179
|
};
|
|
177
180
|
weightGroup: string;
|
|
181
|
+
today: string;
|
|
178
182
|
};
|
|
179
183
|
hints: {
|
|
180
184
|
contentDescription: string;
|
|
@@ -187,10 +191,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
187
191
|
selectService: string;
|
|
188
192
|
};
|
|
189
193
|
multipleShippingServices: string;
|
|
190
|
-
recommendedRates: {
|
|
191
|
-
recommended: string;
|
|
192
|
-
stayInformed: string;
|
|
193
|
-
};
|
|
194
194
|
schemaErrors: {
|
|
195
195
|
shipFromUnitedStatesOnly: string;
|
|
196
196
|
shipFromAddressRequired: string;
|
|
@@ -198,6 +198,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
198
198
|
};
|
|
199
199
|
rates: {
|
|
200
200
|
uspsMediaMailAcknowledgement: string;
|
|
201
|
+
uspsFirstClassMailAcknowledgement_leof: string;
|
|
201
202
|
};
|
|
202
203
|
shipToAddressFormFields: string;
|
|
203
204
|
sections: {
|
|
@@ -208,6 +209,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
208
209
|
};
|
|
209
210
|
};
|
|
210
211
|
onboarding: {
|
|
212
|
+
title: string;
|
|
211
213
|
inlineTitle: string;
|
|
212
214
|
landing: {
|
|
213
215
|
action: string;
|
|
@@ -266,6 +268,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
266
268
|
};
|
|
267
269
|
};
|
|
268
270
|
"manage-warehouses": {
|
|
271
|
+
title: string;
|
|
269
272
|
addNew: string;
|
|
270
273
|
editWarehouse: string;
|
|
271
274
|
contactName: string;
|
|
@@ -329,6 +332,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
329
332
|
maximumBalanceAmount: string;
|
|
330
333
|
};
|
|
331
334
|
"list-carriers": {
|
|
335
|
+
title: string;
|
|
332
336
|
headers: {
|
|
333
337
|
accountCarriers: string;
|
|
334
338
|
carriers: string;
|
|
@@ -471,6 +475,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
471
475
|
invalidNameOrCompany: string;
|
|
472
476
|
noWarehouses: string;
|
|
473
477
|
unableToLoad: {
|
|
478
|
+
accountSettings: string;
|
|
474
479
|
autoFundingSettings: string;
|
|
475
480
|
carrier: string;
|
|
476
481
|
carriers: string;
|
|
@@ -499,6 +504,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
499
504
|
thirdParty: string;
|
|
500
505
|
};
|
|
501
506
|
loading: {
|
|
507
|
+
accountSettings: string;
|
|
502
508
|
carrier: string;
|
|
503
509
|
carriers: string;
|
|
504
510
|
data: string;
|
|
@@ -20,6 +20,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
20
20
|
};
|
|
21
21
|
};
|
|
22
22
|
"void-label": {
|
|
23
|
+
title: string;
|
|
23
24
|
actions: {
|
|
24
25
|
complete: string;
|
|
25
26
|
confirmVoid: string;
|
|
@@ -38,6 +39,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
38
39
|
voidedOn: string;
|
|
39
40
|
};
|
|
40
41
|
"view-shipment": {
|
|
42
|
+
title: string;
|
|
41
43
|
actions: {
|
|
42
44
|
buyAnotherLabel: string;
|
|
43
45
|
hideItems: string;
|
|
@@ -117,6 +119,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
117
119
|
agreeToTerms: string;
|
|
118
120
|
};
|
|
119
121
|
"purchase-label": {
|
|
122
|
+
title: string;
|
|
120
123
|
actions: {
|
|
121
124
|
calculateRates_one: string;
|
|
122
125
|
calculateRates_other: string;
|
|
@@ -174,6 +177,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
174
177
|
fractional: string;
|
|
175
178
|
};
|
|
176
179
|
weightGroup: string;
|
|
180
|
+
today: string;
|
|
177
181
|
};
|
|
178
182
|
hints: {
|
|
179
183
|
contentDescription: string;
|
|
@@ -186,10 +190,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
186
190
|
selectService: string;
|
|
187
191
|
};
|
|
188
192
|
multipleShippingServices: string;
|
|
189
|
-
recommendedRates: {
|
|
190
|
-
recommended: string;
|
|
191
|
-
stayInformed: string;
|
|
192
|
-
};
|
|
193
193
|
schemaErrors: {
|
|
194
194
|
shipFromUnitedStatesOnly: string;
|
|
195
195
|
shipFromAddressRequired: string;
|
|
@@ -197,6 +197,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
197
197
|
};
|
|
198
198
|
rates: {
|
|
199
199
|
uspsMediaMailAcknowledgement: string;
|
|
200
|
+
uspsFirstClassMailAcknowledgement_leof: string;
|
|
200
201
|
};
|
|
201
202
|
shipToAddressFormFields: string;
|
|
202
203
|
sections: {
|
|
@@ -207,6 +208,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
207
208
|
};
|
|
208
209
|
};
|
|
209
210
|
onboarding: {
|
|
211
|
+
title: string;
|
|
210
212
|
inlineTitle: string;
|
|
211
213
|
landing: {
|
|
212
214
|
action: string;
|
|
@@ -265,6 +267,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
265
267
|
};
|
|
266
268
|
};
|
|
267
269
|
"manage-warehouses": {
|
|
270
|
+
title: string;
|
|
268
271
|
addNew: string;
|
|
269
272
|
editWarehouse: string;
|
|
270
273
|
contactName: string;
|
|
@@ -328,6 +331,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
328
331
|
maximumBalanceAmount: string;
|
|
329
332
|
};
|
|
330
333
|
"list-carriers": {
|
|
334
|
+
title: string;
|
|
331
335
|
headers: {
|
|
332
336
|
accountCarriers: string;
|
|
333
337
|
carriers: string;
|
|
@@ -470,6 +474,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
470
474
|
invalidNameOrCompany: string;
|
|
471
475
|
noWarehouses: string;
|
|
472
476
|
unableToLoad: {
|
|
477
|
+
accountSettings: string;
|
|
473
478
|
autoFundingSettings: string;
|
|
474
479
|
carrier: string;
|
|
475
480
|
carriers: string;
|
|
@@ -498,6 +503,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
498
503
|
thirdParty: string;
|
|
499
504
|
};
|
|
500
505
|
loading: {
|
|
506
|
+
accountSettings: string;
|
|
501
507
|
carrier: string;
|
|
502
508
|
carriers: string;
|
|
503
509
|
data: string;
|
|
@@ -23,6 +23,7 @@ export declare const Element: ({ resources, ...props }: SalesOrderProps & {
|
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
"void-label": {
|
|
26
|
+
title: string;
|
|
26
27
|
actions: {
|
|
27
28
|
complete: string;
|
|
28
29
|
confirmVoid: string;
|
|
@@ -41,6 +42,7 @@ export declare const Element: ({ resources, ...props }: SalesOrderProps & {
|
|
|
41
42
|
voidedOn: string;
|
|
42
43
|
};
|
|
43
44
|
"view-shipment": {
|
|
45
|
+
title: string;
|
|
44
46
|
actions: {
|
|
45
47
|
buyAnotherLabel: string;
|
|
46
48
|
hideItems: string;
|
|
@@ -120,6 +122,7 @@ export declare const Element: ({ resources, ...props }: SalesOrderProps & {
|
|
|
120
122
|
agreeToTerms: string;
|
|
121
123
|
};
|
|
122
124
|
"purchase-label": {
|
|
125
|
+
title: string;
|
|
123
126
|
actions: {
|
|
124
127
|
calculateRates_one: string;
|
|
125
128
|
calculateRates_other: string;
|
|
@@ -177,6 +180,7 @@ export declare const Element: ({ resources, ...props }: SalesOrderProps & {
|
|
|
177
180
|
fractional: string;
|
|
178
181
|
};
|
|
179
182
|
weightGroup: string;
|
|
183
|
+
today: string;
|
|
180
184
|
};
|
|
181
185
|
hints: {
|
|
182
186
|
contentDescription: string;
|
|
@@ -189,10 +193,6 @@ export declare const Element: ({ resources, ...props }: SalesOrderProps & {
|
|
|
189
193
|
selectService: string;
|
|
190
194
|
};
|
|
191
195
|
multipleShippingServices: string;
|
|
192
|
-
recommendedRates: {
|
|
193
|
-
recommended: string;
|
|
194
|
-
stayInformed: string;
|
|
195
|
-
};
|
|
196
196
|
schemaErrors: {
|
|
197
197
|
shipFromUnitedStatesOnly: string;
|
|
198
198
|
shipFromAddressRequired: string;
|
|
@@ -200,6 +200,7 @@ export declare const Element: ({ resources, ...props }: SalesOrderProps & {
|
|
|
200
200
|
};
|
|
201
201
|
rates: {
|
|
202
202
|
uspsMediaMailAcknowledgement: string;
|
|
203
|
+
uspsFirstClassMailAcknowledgement_leof: string;
|
|
203
204
|
};
|
|
204
205
|
shipToAddressFormFields: string;
|
|
205
206
|
sections: {
|
|
@@ -210,6 +211,7 @@ export declare const Element: ({ resources, ...props }: SalesOrderProps & {
|
|
|
210
211
|
};
|
|
211
212
|
};
|
|
212
213
|
onboarding: {
|
|
214
|
+
title: string;
|
|
213
215
|
inlineTitle: string;
|
|
214
216
|
landing: {
|
|
215
217
|
action: string;
|
|
@@ -268,6 +270,7 @@ export declare const Element: ({ resources, ...props }: SalesOrderProps & {
|
|
|
268
270
|
};
|
|
269
271
|
};
|
|
270
272
|
"manage-warehouses": {
|
|
273
|
+
title: string;
|
|
271
274
|
addNew: string;
|
|
272
275
|
editWarehouse: string;
|
|
273
276
|
contactName: string;
|
|
@@ -331,6 +334,7 @@ export declare const Element: ({ resources, ...props }: SalesOrderProps & {
|
|
|
331
334
|
maximumBalanceAmount: string;
|
|
332
335
|
};
|
|
333
336
|
"list-carriers": {
|
|
337
|
+
title: string;
|
|
334
338
|
headers: {
|
|
335
339
|
accountCarriers: string;
|
|
336
340
|
carriers: string;
|
|
@@ -473,6 +477,7 @@ export declare const Element: ({ resources, ...props }: SalesOrderProps & {
|
|
|
473
477
|
invalidNameOrCompany: string;
|
|
474
478
|
noWarehouses: string;
|
|
475
479
|
unableToLoad: {
|
|
480
|
+
accountSettings: string;
|
|
476
481
|
autoFundingSettings: string;
|
|
477
482
|
carrier: string;
|
|
478
483
|
carriers: string;
|
|
@@ -501,6 +506,7 @@ export declare const Element: ({ resources, ...props }: SalesOrderProps & {
|
|
|
501
506
|
thirdParty: string;
|
|
502
507
|
};
|
|
503
508
|
loading: {
|
|
509
|
+
accountSettings: string;
|
|
504
510
|
carrier: string;
|
|
505
511
|
carriers: string;
|
|
506
512
|
data: string;
|