@shipengine/elements 2.4.0 → 2.6.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/actions-menu.js +1 -1
- package/components.js +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/src/components/actions-menu/actions-menu.d.ts +2 -1
- package/src/components/error-state/error-state.d.ts +6 -0
- package/src/{workflows/onboarding/components/account-registration-step/account-registration-step.styles.d.ts → components/error-state/error-state.styles.d.ts} +9 -5
- package/src/components/error-state/index.d.ts +1 -0
- package/src/components/index.d.ts +1 -0
- package/src/components/templates/address-display/address-display.d.ts +2 -1
- package/src/components/templates/wallet-form/wallet-form.d.ts +1 -1
- package/src/components/warehouse-form/warehouse-form-schema.d.ts +4 -1
- package/src/components/warehouse-form/warehouse-form.d.ts +2 -1
- package/src/elements/label-layout/label-layout-element.d.ts +44 -15
- package/src/elements/labels-grid/hooks/use-labels-grid.d.ts +2 -0
- package/src/elements/labels-grid/labels-grid.d.ts +79 -44
- package/src/elements/labels-grid/labels-grid.styles.d.ts +7 -1
- package/src/elements/manage-carriers/manage-carriers.d.ts +44 -15
- package/src/elements/manage-external-carriers/manage-external-carriers.d.ts +66 -16
- package/src/elements/manage-funding/manage-funding-element.d.ts +44 -15
- package/src/elements/manage-warehouses/manage-warehouses.d.ts +44 -15
- package/src/elements/payment-method-settings/payment-method-settings-element.d.ts +44 -15
- package/src/elements/purchase-label/purchase-label.d.ts +54 -28
- package/src/elements/shipment-summary/shipment-summary.d.ts +51 -19
- package/src/elements/shipments-grid/hooks/use-shipments-grid.d.ts +162 -0
- package/src/elements/shipments-grid/shipments-grid.d.ts +128 -23
- package/src/elements/shipments-grid/shipments-grid.styles.d.ts +11 -0
- package/src/elements/theme-creator/theme-creator.d.ts +44 -15
- package/src/elements/transaction-history/transaction-history-element.d.ts +44 -15
- package/src/elements/unit-settings/unit-settings-element.d.ts +44 -15
- package/src/elements/vat-settings/vat-settings-element.d.ts +44 -15
- package/src/elements/void-label/void-label.d.ts +56 -26
- package/src/locales/en/index.d.ts +44 -15
- package/src/workflows/account-settings/account-settings.d.ts +44 -15
- package/src/workflows/carrier-services/carrier-services.d.ts +44 -15
- package/src/workflows/connect-external-carrier/connect-external-carrier.d.ts +44 -15
- package/src/workflows/label-workflow/label-workflow.d.ts +31 -29
- package/src/workflows/onboarding/components/confirmation-and-submission-step/confirmation-and-submission-step.d.ts +12 -0
- package/src/workflows/onboarding/components/confirmation-and-submission-step/index.d.ts +2 -0
- package/src/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.d.ts +19 -0
- package/src/workflows/onboarding/components/funding-step/funding-step.d.ts +7 -0
- package/src/workflows/onboarding/components/funding-step/index.d.ts +1 -0
- package/src/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.d.ts +1 -2
- package/src/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.styles.d.ts +3 -0
- package/src/workflows/onboarding/components/ship-from-address-step/index.d.ts +0 -1
- package/src/workflows/onboarding/components/ship-from-address-step/ship-from-address-step.d.ts +3 -2
- package/src/workflows/onboarding/components/step-header/step-header.d.ts +3 -2
- package/src/workflows/onboarding/components/{funding-and-carrier-connection-step/funding-and-carrier-connection-step.styles.d.ts → step-header/step-header.styles.d.ts} +5 -8
- package/src/workflows/onboarding/components/welcome-page/index.d.ts +1 -0
- package/src/workflows/onboarding/components/welcome-page/welcome-page.d.ts +4 -0
- package/src/workflows/onboarding/onboarding.d.ts +46 -19
- package/suspend-text.js +1 -1
- package/transaction-history-element.js +1 -1
- package/use-unit-settings.js +1 -1
- package/usePager.js +1 -1
- package/wallet-form.js +1 -1
- package/workflows.js +1 -1
- package/src/workflows/onboarding/components/account-registration-form/account-registration-form-schema.d.ts +0 -13
- package/src/workflows/onboarding/components/account-registration-form/account-registration-form.d.ts +0 -4
- package/src/workflows/onboarding/components/account-registration-form/index.d.ts +0 -1
- package/src/workflows/onboarding/components/account-registration-step/account-registration-step.d.ts +0 -5
- package/src/workflows/onboarding/components/account-registration-step/index.d.ts +0 -2
- package/src/workflows/onboarding/components/account-registration-step/use-account-registration-step.d.ts +0 -7
- package/src/workflows/onboarding/components/funding-and-carrier-connection-step/funding-and-carrier-connection-step.d.ts +0 -9
- package/src/workflows/onboarding/components/funding-and-carrier-connection-step/index.d.ts +0 -2
- package/src/workflows/onboarding/components/funding-and-carrier-connection-step/use-funding-and-carrier-connection-step.d.ts +0 -25
- package/src/workflows/onboarding/components/ship-from-address-step/use-ship-from-address-step.d.ts +0 -9
|
@@ -1,8 +1,68 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { SE } from "@shipengine/js-api";
|
|
3
|
+
/**
|
|
4
|
+
* # Shipments Grid Props
|
|
5
|
+
*
|
|
6
|
+
* @see {@link ShipmentsGrid.Element | This prop types usage in `<ShipmentsGrid />`}
|
|
7
|
+
*/
|
|
8
|
+
export type ShipmentsGridProps = {
|
|
9
|
+
/**
|
|
10
|
+
* `onRowClick` callback invoked when a row is clicked.
|
|
11
|
+
*/
|
|
12
|
+
onRowClick?: (data: SE.Shipment) => void;
|
|
13
|
+
/**
|
|
14
|
+
* `shipmentStatus` is the status of the shipments you wish to view.
|
|
15
|
+
* If no value is defined, all shipments will be rendered.
|
|
16
|
+
*/
|
|
17
|
+
shipmentStatus?: SE.ShipmentStatus;
|
|
18
|
+
/**
|
|
19
|
+
* `showShipmentIdFilter` controls the display of the shipmentId search filter
|
|
20
|
+
*/
|
|
21
|
+
showShipmentIdFilter?: boolean;
|
|
5
22
|
};
|
|
23
|
+
/**
|
|
24
|
+
* # Shipments Grid Component
|
|
25
|
+
*
|
|
26
|
+
* - The `<ShipmentsGrid />` component is used to view the user's list of shipments.
|
|
27
|
+
*
|
|
28
|
+
* @param ShipmentsGridProps The base props that will be passed into the `<ShipmentsGrid />` component.
|
|
29
|
+
*
|
|
30
|
+
* @returns Element An EmotionJSX.Element that will render the `<ShipmentsGrid />` component.
|
|
31
|
+
*
|
|
32
|
+
* @example
|
|
33
|
+
* You can see how the `<Component />` is used in the `createElement` function call below.
|
|
34
|
+
* ```tsx
|
|
35
|
+
* export const Element = createElement(Component, ErrorFallback, {
|
|
36
|
+
* resources: { en },
|
|
37
|
+
* });
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
40
|
+
* <br />
|
|
41
|
+
*
|
|
42
|
+
* @see {@link ShipmentsGrid.Element | The **Element** created to render `<ShipmentsGrid />`}
|
|
43
|
+
*/
|
|
44
|
+
export declare const Component: ({ onRowClick, shipmentStatus, showShipmentIdFilter, }: ShipmentsGridProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
45
|
+
/**
|
|
46
|
+
* # Registered Shipments Grid Element
|
|
47
|
+
*
|
|
48
|
+
* @param ShipmentsGridProps The props necessary to render the `<ShipmentsGrid.Element />`.
|
|
49
|
+
*
|
|
50
|
+
* @example
|
|
51
|
+
* The `<Component />` is the source JSX that is rendered when you make use of the `ShipmentsGrid`
|
|
52
|
+
* Element directly.
|
|
53
|
+
*
|
|
54
|
+
* ```tsx
|
|
55
|
+
* <ShipmentsGrid.Element
|
|
56
|
+
* shipmentStatus="pending"
|
|
57
|
+
* onRowClick={(shipment) => console.log('Row clicked', shipment)}
|
|
58
|
+
* />
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* <br />
|
|
62
|
+
*
|
|
63
|
+
* @see {@link ShipmentsGrid.ShipmentsGridProps | The **Base props** used in `<ShipmentsGrid.Element />`}
|
|
64
|
+
*
|
|
65
|
+
*/
|
|
6
66
|
export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
7
67
|
resources?: {
|
|
8
68
|
en: {
|
|
@@ -120,7 +180,6 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
120
180
|
setup: {
|
|
121
181
|
title: string;
|
|
122
182
|
subtitle: string;
|
|
123
|
-
hiddenTermsSubtitle: string;
|
|
124
183
|
descriptionTitle: string;
|
|
125
184
|
description: string;
|
|
126
185
|
};
|
|
@@ -128,7 +187,6 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
128
187
|
title: string;
|
|
129
188
|
cardSubTitle: string;
|
|
130
189
|
addressSubTitle: string;
|
|
131
|
-
info: string;
|
|
132
190
|
};
|
|
133
191
|
vatSettings: {
|
|
134
192
|
title: string;
|
|
@@ -142,7 +200,6 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
142
200
|
title: string;
|
|
143
201
|
};
|
|
144
202
|
info: {
|
|
145
|
-
title: string;
|
|
146
203
|
description: string;
|
|
147
204
|
};
|
|
148
205
|
poBox: {
|
|
@@ -198,11 +255,18 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
198
255
|
tax: string;
|
|
199
256
|
delivery: string;
|
|
200
257
|
handling: string;
|
|
258
|
+
/**
|
|
259
|
+
* # Shipments Grid Props
|
|
260
|
+
*
|
|
261
|
+
* @see {@link ShipmentsGrid.Element | This prop types usage in `<ShipmentsGrid />`}
|
|
262
|
+
*/
|
|
201
263
|
special_goods: string;
|
|
202
264
|
pickup: string;
|
|
203
265
|
location_fee: string;
|
|
204
266
|
oversize: string;
|
|
205
|
-
returns: string;
|
|
267
|
+
returns: string; /**
|
|
268
|
+
* `onRowClick` callback invoked when a row is clicked.
|
|
269
|
+
*/
|
|
206
270
|
notifications: string;
|
|
207
271
|
tip: string;
|
|
208
272
|
duties_and_taxes: string;
|
|
@@ -343,18 +407,15 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
343
407
|
};
|
|
344
408
|
onboarding: {
|
|
345
409
|
title: string;
|
|
346
|
-
|
|
347
|
-
accountRegistration: {
|
|
348
|
-
action: string;
|
|
410
|
+
confirmation: {
|
|
349
411
|
title: string;
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
messageLine2: string;
|
|
412
|
+
warehouse: string;
|
|
413
|
+
billingAddress: string;
|
|
414
|
+
paymentMethod: string;
|
|
415
|
+
action: string;
|
|
355
416
|
};
|
|
356
417
|
stepLabel: {
|
|
357
|
-
|
|
418
|
+
confirmation: string;
|
|
358
419
|
termsAgreement: string;
|
|
359
420
|
shipFromAddress: string;
|
|
360
421
|
fundingAndCarrierConnection: string;
|
|
@@ -401,6 +462,14 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
401
462
|
"UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
|
|
402
463
|
UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
|
|
403
464
|
};
|
|
465
|
+
tooltip: {
|
|
466
|
+
warehouse: string;
|
|
467
|
+
};
|
|
468
|
+
welcomePage: {
|
|
469
|
+
title: string;
|
|
470
|
+
message: string;
|
|
471
|
+
action: string;
|
|
472
|
+
};
|
|
404
473
|
};
|
|
405
474
|
"manage-warehouses": {
|
|
406
475
|
title: string;
|
|
@@ -509,18 +578,38 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
509
578
|
};
|
|
510
579
|
"list-shipments": {
|
|
511
580
|
title: string;
|
|
581
|
+
none: string;
|
|
512
582
|
headers: {
|
|
513
583
|
created: string;
|
|
514
|
-
|
|
584
|
+
modified: string;
|
|
585
|
+
shipping: string;
|
|
515
586
|
shipmentId: string;
|
|
516
|
-
|
|
517
|
-
|
|
587
|
+
parcels: string;
|
|
588
|
+
recipient: string;
|
|
589
|
+
status: string;
|
|
590
|
+
};
|
|
591
|
+
status: {
|
|
592
|
+
cancelled: string;
|
|
593
|
+
purchased: string;
|
|
594
|
+
readyToBuy: string;
|
|
595
|
+
processing: string;
|
|
518
596
|
};
|
|
519
597
|
actions: {
|
|
520
598
|
download: {
|
|
521
599
|
pdf: string;
|
|
522
600
|
};
|
|
523
601
|
};
|
|
602
|
+
emptyState: {
|
|
603
|
+
title: string;
|
|
604
|
+
subtitle: string;
|
|
605
|
+
filtersTitle: string;
|
|
606
|
+
filtersSubtitle: string;
|
|
607
|
+
viewAll: string;
|
|
608
|
+
};
|
|
609
|
+
errorMessages: {
|
|
610
|
+
title: string;
|
|
611
|
+
subtitle: string;
|
|
612
|
+
};
|
|
524
613
|
};
|
|
525
614
|
"list-labels": {
|
|
526
615
|
title: string;
|
|
@@ -554,6 +643,10 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
554
643
|
void: string;
|
|
555
644
|
printForms: string;
|
|
556
645
|
};
|
|
646
|
+
errorMessages: {
|
|
647
|
+
title: string;
|
|
648
|
+
subtitle: string;
|
|
649
|
+
};
|
|
557
650
|
};
|
|
558
651
|
"connect-carrier": {
|
|
559
652
|
actions: {
|
|
@@ -611,7 +704,9 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
611
704
|
county: string;
|
|
612
705
|
countryCode: string;
|
|
613
706
|
addressLine1: string;
|
|
614
|
-
addressLine2: string;
|
|
707
|
+
addressLine2: string; /**
|
|
708
|
+
* `onRowClick` callback invoked when a row is clicked.
|
|
709
|
+
*/
|
|
615
710
|
cityLocality: string;
|
|
616
711
|
stateProvince: string;
|
|
617
712
|
postalCode: string;
|
|
@@ -754,6 +849,7 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
754
849
|
emailIsRequired: string;
|
|
755
850
|
unknown: string;
|
|
756
851
|
noRatesAvailable: string;
|
|
852
|
+
refreshAndTryAgain: string;
|
|
757
853
|
};
|
|
758
854
|
errorTypes: {
|
|
759
855
|
accountStatus: string;
|
|
@@ -868,6 +964,7 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
868
964
|
agreeToTerms: string;
|
|
869
965
|
carriersTitle: string;
|
|
870
966
|
fundingSourceTitle: string;
|
|
967
|
+
shipEngineTitle: string;
|
|
871
968
|
};
|
|
872
969
|
weight: {
|
|
873
970
|
ounces: string;
|
|
@@ -892,6 +989,7 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
892
989
|
printForms: string;
|
|
893
990
|
edit: string;
|
|
894
991
|
remove: string;
|
|
992
|
+
viewDetails: string;
|
|
895
993
|
};
|
|
896
994
|
};
|
|
897
995
|
ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
|
|
@@ -922,7 +1020,9 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
922
1020
|
transactionHistory: string;
|
|
923
1021
|
adjustmentHistory: string;
|
|
924
1022
|
warehouses: string;
|
|
925
|
-
carriers: string;
|
|
1023
|
+
carriers: string; /**
|
|
1024
|
+
* `onRowClick` callback invoked when a row is clicked.
|
|
1025
|
+
*/
|
|
926
1026
|
externalCarriers: string;
|
|
927
1027
|
labelLayout: string;
|
|
928
1028
|
unitSettings: string;
|
|
@@ -932,4 +1032,9 @@ export declare const Element: ({ resources, ...props }: ShipmentsGridProps & {
|
|
|
932
1032
|
};
|
|
933
1033
|
} | undefined;
|
|
934
1034
|
}) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
935
|
-
|
|
1035
|
+
/**
|
|
1036
|
+
* # Shipments Grid Element Props
|
|
1037
|
+
*
|
|
1038
|
+
* @see {@link ShipmentsGrid.Element | See the full type that `typeof Element` will return}
|
|
1039
|
+
*/
|
|
1040
|
+
export type ElementProps = React.ComponentProps<typeof Element>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const styles: {
|
|
2
|
+
errorState: (theme: import("@shipengine/giger-theme/dist/lib/Theme").Theme) => {
|
|
3
|
+
border?: string | undefined;
|
|
4
|
+
borderRadius?: string | undefined;
|
|
5
|
+
boxShadow?: string | undefined;
|
|
6
|
+
backgroundColor: string;
|
|
7
|
+
};
|
|
8
|
+
tableParagraph: {
|
|
9
|
+
margin: number;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
@@ -130,7 +130,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
130
130
|
setup: {
|
|
131
131
|
title: string;
|
|
132
132
|
subtitle: string;
|
|
133
|
-
hiddenTermsSubtitle: string;
|
|
134
133
|
descriptionTitle: string;
|
|
135
134
|
description: string;
|
|
136
135
|
};
|
|
@@ -138,7 +137,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
138
137
|
title: string;
|
|
139
138
|
cardSubTitle: string;
|
|
140
139
|
addressSubTitle: string;
|
|
141
|
-
info: string;
|
|
142
140
|
};
|
|
143
141
|
vatSettings: {
|
|
144
142
|
title: string;
|
|
@@ -152,7 +150,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
152
150
|
title: string;
|
|
153
151
|
};
|
|
154
152
|
info: {
|
|
155
|
-
title: string;
|
|
156
153
|
description: string;
|
|
157
154
|
};
|
|
158
155
|
poBox: {
|
|
@@ -353,18 +350,15 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
353
350
|
};
|
|
354
351
|
onboarding: {
|
|
355
352
|
title: string;
|
|
356
|
-
|
|
357
|
-
accountRegistration: {
|
|
358
|
-
action: string;
|
|
353
|
+
confirmation: {
|
|
359
354
|
title: string;
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
messageLine2: string;
|
|
355
|
+
warehouse: string;
|
|
356
|
+
billingAddress: string;
|
|
357
|
+
paymentMethod: string;
|
|
358
|
+
action: string;
|
|
365
359
|
};
|
|
366
360
|
stepLabel: {
|
|
367
|
-
|
|
361
|
+
confirmation: string;
|
|
368
362
|
termsAgreement: string;
|
|
369
363
|
shipFromAddress: string;
|
|
370
364
|
fundingAndCarrierConnection: string;
|
|
@@ -411,6 +405,14 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
411
405
|
"UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
|
|
412
406
|
UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
|
|
413
407
|
};
|
|
408
|
+
tooltip: {
|
|
409
|
+
warehouse: string;
|
|
410
|
+
};
|
|
411
|
+
welcomePage: {
|
|
412
|
+
title: string;
|
|
413
|
+
message: string;
|
|
414
|
+
action: string;
|
|
415
|
+
};
|
|
414
416
|
};
|
|
415
417
|
"manage-warehouses": {
|
|
416
418
|
title: string;
|
|
@@ -519,18 +521,38 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
519
521
|
};
|
|
520
522
|
"list-shipments": {
|
|
521
523
|
title: string;
|
|
524
|
+
none: string;
|
|
522
525
|
headers: {
|
|
523
526
|
created: string;
|
|
524
|
-
|
|
527
|
+
modified: string;
|
|
528
|
+
shipping: string;
|
|
525
529
|
shipmentId: string;
|
|
526
|
-
|
|
527
|
-
|
|
530
|
+
parcels: string;
|
|
531
|
+
recipient: string;
|
|
532
|
+
status: string;
|
|
533
|
+
};
|
|
534
|
+
status: {
|
|
535
|
+
cancelled: string;
|
|
536
|
+
purchased: string;
|
|
537
|
+
readyToBuy: string;
|
|
538
|
+
processing: string;
|
|
528
539
|
};
|
|
529
540
|
actions: {
|
|
530
541
|
download: {
|
|
531
542
|
pdf: string;
|
|
532
543
|
};
|
|
533
544
|
};
|
|
545
|
+
emptyState: {
|
|
546
|
+
title: string;
|
|
547
|
+
subtitle: string;
|
|
548
|
+
filtersTitle: string;
|
|
549
|
+
filtersSubtitle: string;
|
|
550
|
+
viewAll: string;
|
|
551
|
+
};
|
|
552
|
+
errorMessages: {
|
|
553
|
+
title: string;
|
|
554
|
+
subtitle: string;
|
|
555
|
+
};
|
|
534
556
|
};
|
|
535
557
|
"list-labels": {
|
|
536
558
|
title: string;
|
|
@@ -564,6 +586,10 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
564
586
|
void: string;
|
|
565
587
|
printForms: string;
|
|
566
588
|
};
|
|
589
|
+
errorMessages: {
|
|
590
|
+
title: string;
|
|
591
|
+
subtitle: string;
|
|
592
|
+
};
|
|
567
593
|
};
|
|
568
594
|
"connect-carrier": {
|
|
569
595
|
actions: {
|
|
@@ -764,6 +790,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
764
790
|
emailIsRequired: string;
|
|
765
791
|
unknown: string;
|
|
766
792
|
noRatesAvailable: string;
|
|
793
|
+
refreshAndTryAgain: string;
|
|
767
794
|
};
|
|
768
795
|
errorTypes: {
|
|
769
796
|
accountStatus: string;
|
|
@@ -878,6 +905,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
878
905
|
agreeToTerms: string;
|
|
879
906
|
carriersTitle: string;
|
|
880
907
|
fundingSourceTitle: string;
|
|
908
|
+
shipEngineTitle: string;
|
|
881
909
|
};
|
|
882
910
|
weight: {
|
|
883
911
|
ounces: string;
|
|
@@ -902,6 +930,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
902
930
|
printForms: string;
|
|
903
931
|
edit: string;
|
|
904
932
|
remove: string;
|
|
933
|
+
viewDetails: string;
|
|
905
934
|
};
|
|
906
935
|
};
|
|
907
936
|
ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
|
|
@@ -117,7 +117,6 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
117
117
|
setup: {
|
|
118
118
|
title: string;
|
|
119
119
|
subtitle: string;
|
|
120
|
-
hiddenTermsSubtitle: string;
|
|
121
120
|
descriptionTitle: string;
|
|
122
121
|
description: string;
|
|
123
122
|
};
|
|
@@ -125,7 +124,6 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
125
124
|
title: string;
|
|
126
125
|
cardSubTitle: string;
|
|
127
126
|
addressSubTitle: string;
|
|
128
|
-
info: string;
|
|
129
127
|
};
|
|
130
128
|
vatSettings: {
|
|
131
129
|
title: string;
|
|
@@ -139,7 +137,6 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
139
137
|
title: string;
|
|
140
138
|
};
|
|
141
139
|
info: {
|
|
142
|
-
title: string;
|
|
143
140
|
description: string;
|
|
144
141
|
};
|
|
145
142
|
poBox: {
|
|
@@ -340,18 +337,15 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
340
337
|
};
|
|
341
338
|
onboarding: {
|
|
342
339
|
title: string;
|
|
343
|
-
|
|
344
|
-
accountRegistration: {
|
|
345
|
-
action: string;
|
|
340
|
+
confirmation: {
|
|
346
341
|
title: string;
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
messageLine2: string;
|
|
342
|
+
warehouse: string;
|
|
343
|
+
billingAddress: string;
|
|
344
|
+
paymentMethod: string;
|
|
345
|
+
action: string;
|
|
352
346
|
};
|
|
353
347
|
stepLabel: {
|
|
354
|
-
|
|
348
|
+
confirmation: string;
|
|
355
349
|
termsAgreement: string;
|
|
356
350
|
shipFromAddress: string;
|
|
357
351
|
fundingAndCarrierConnection: string;
|
|
@@ -398,6 +392,14 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
398
392
|
"UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
|
|
399
393
|
UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
|
|
400
394
|
};
|
|
395
|
+
tooltip: {
|
|
396
|
+
warehouse: string;
|
|
397
|
+
};
|
|
398
|
+
welcomePage: {
|
|
399
|
+
title: string;
|
|
400
|
+
message: string;
|
|
401
|
+
action: string;
|
|
402
|
+
};
|
|
401
403
|
};
|
|
402
404
|
"manage-warehouses": {
|
|
403
405
|
title: string;
|
|
@@ -506,18 +508,38 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
506
508
|
};
|
|
507
509
|
"list-shipments": {
|
|
508
510
|
title: string;
|
|
511
|
+
none: string;
|
|
509
512
|
headers: {
|
|
510
513
|
created: string;
|
|
511
|
-
|
|
514
|
+
modified: string;
|
|
515
|
+
shipping: string;
|
|
512
516
|
shipmentId: string;
|
|
513
|
-
|
|
514
|
-
|
|
517
|
+
parcels: string;
|
|
518
|
+
recipient: string;
|
|
519
|
+
status: string;
|
|
520
|
+
};
|
|
521
|
+
status: {
|
|
522
|
+
cancelled: string;
|
|
523
|
+
purchased: string;
|
|
524
|
+
readyToBuy: string;
|
|
525
|
+
processing: string;
|
|
515
526
|
};
|
|
516
527
|
actions: {
|
|
517
528
|
download: {
|
|
518
529
|
pdf: string;
|
|
519
530
|
};
|
|
520
531
|
};
|
|
532
|
+
emptyState: {
|
|
533
|
+
title: string;
|
|
534
|
+
subtitle: string;
|
|
535
|
+
filtersTitle: string;
|
|
536
|
+
filtersSubtitle: string;
|
|
537
|
+
viewAll: string;
|
|
538
|
+
};
|
|
539
|
+
errorMessages: {
|
|
540
|
+
title: string;
|
|
541
|
+
subtitle: string;
|
|
542
|
+
};
|
|
521
543
|
};
|
|
522
544
|
"list-labels": {
|
|
523
545
|
title: string;
|
|
@@ -551,6 +573,10 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
551
573
|
void: string;
|
|
552
574
|
printForms: string;
|
|
553
575
|
};
|
|
576
|
+
errorMessages: {
|
|
577
|
+
title: string;
|
|
578
|
+
subtitle: string;
|
|
579
|
+
};
|
|
554
580
|
};
|
|
555
581
|
"connect-carrier": {
|
|
556
582
|
actions: {
|
|
@@ -751,6 +777,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
751
777
|
emailIsRequired: string;
|
|
752
778
|
unknown: string;
|
|
753
779
|
noRatesAvailable: string;
|
|
780
|
+
refreshAndTryAgain: string;
|
|
754
781
|
};
|
|
755
782
|
errorTypes: {
|
|
756
783
|
accountStatus: string;
|
|
@@ -865,6 +892,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
865
892
|
agreeToTerms: string;
|
|
866
893
|
carriersTitle: string;
|
|
867
894
|
fundingSourceTitle: string;
|
|
895
|
+
shipEngineTitle: string;
|
|
868
896
|
};
|
|
869
897
|
weight: {
|
|
870
898
|
ounces: string;
|
|
@@ -889,6 +917,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
889
917
|
printForms: string;
|
|
890
918
|
edit: string;
|
|
891
919
|
remove: string;
|
|
920
|
+
viewDetails: string;
|
|
892
921
|
};
|
|
893
922
|
};
|
|
894
923
|
ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
|
|
@@ -117,7 +117,6 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
117
117
|
setup: {
|
|
118
118
|
title: string;
|
|
119
119
|
subtitle: string;
|
|
120
|
-
hiddenTermsSubtitle: string;
|
|
121
120
|
descriptionTitle: string;
|
|
122
121
|
description: string;
|
|
123
122
|
};
|
|
@@ -125,7 +124,6 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
125
124
|
title: string;
|
|
126
125
|
cardSubTitle: string;
|
|
127
126
|
addressSubTitle: string;
|
|
128
|
-
info: string;
|
|
129
127
|
};
|
|
130
128
|
vatSettings: {
|
|
131
129
|
title: string;
|
|
@@ -139,7 +137,6 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
139
137
|
title: string;
|
|
140
138
|
};
|
|
141
139
|
info: {
|
|
142
|
-
title: string;
|
|
143
140
|
description: string;
|
|
144
141
|
};
|
|
145
142
|
poBox: {
|
|
@@ -340,18 +337,15 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
340
337
|
};
|
|
341
338
|
onboarding: {
|
|
342
339
|
title: string;
|
|
343
|
-
|
|
344
|
-
accountRegistration: {
|
|
345
|
-
action: string;
|
|
340
|
+
confirmation: {
|
|
346
341
|
title: string;
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
messageLine2: string;
|
|
342
|
+
warehouse: string;
|
|
343
|
+
billingAddress: string;
|
|
344
|
+
paymentMethod: string;
|
|
345
|
+
action: string;
|
|
352
346
|
};
|
|
353
347
|
stepLabel: {
|
|
354
|
-
|
|
348
|
+
confirmation: string;
|
|
355
349
|
termsAgreement: string;
|
|
356
350
|
shipFromAddress: string;
|
|
357
351
|
fundingAndCarrierConnection: string;
|
|
@@ -398,6 +392,14 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
398
392
|
"UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
|
|
399
393
|
UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
|
|
400
394
|
};
|
|
395
|
+
tooltip: {
|
|
396
|
+
warehouse: string;
|
|
397
|
+
};
|
|
398
|
+
welcomePage: {
|
|
399
|
+
title: string;
|
|
400
|
+
message: string;
|
|
401
|
+
action: string;
|
|
402
|
+
};
|
|
401
403
|
};
|
|
402
404
|
"manage-warehouses": {
|
|
403
405
|
title: string;
|
|
@@ -506,18 +508,38 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
506
508
|
};
|
|
507
509
|
"list-shipments": {
|
|
508
510
|
title: string;
|
|
511
|
+
none: string;
|
|
509
512
|
headers: {
|
|
510
513
|
created: string;
|
|
511
|
-
|
|
514
|
+
modified: string;
|
|
515
|
+
shipping: string;
|
|
512
516
|
shipmentId: string;
|
|
513
|
-
|
|
514
|
-
|
|
517
|
+
parcels: string;
|
|
518
|
+
recipient: string;
|
|
519
|
+
status: string;
|
|
520
|
+
};
|
|
521
|
+
status: {
|
|
522
|
+
cancelled: string;
|
|
523
|
+
purchased: string;
|
|
524
|
+
readyToBuy: string;
|
|
525
|
+
processing: string;
|
|
515
526
|
};
|
|
516
527
|
actions: {
|
|
517
528
|
download: {
|
|
518
529
|
pdf: string;
|
|
519
530
|
};
|
|
520
531
|
};
|
|
532
|
+
emptyState: {
|
|
533
|
+
title: string;
|
|
534
|
+
subtitle: string;
|
|
535
|
+
filtersTitle: string;
|
|
536
|
+
filtersSubtitle: string;
|
|
537
|
+
viewAll: string;
|
|
538
|
+
};
|
|
539
|
+
errorMessages: {
|
|
540
|
+
title: string;
|
|
541
|
+
subtitle: string;
|
|
542
|
+
};
|
|
521
543
|
};
|
|
522
544
|
"list-labels": {
|
|
523
545
|
title: string;
|
|
@@ -551,6 +573,10 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
551
573
|
void: string;
|
|
552
574
|
printForms: string;
|
|
553
575
|
};
|
|
576
|
+
errorMessages: {
|
|
577
|
+
title: string;
|
|
578
|
+
subtitle: string;
|
|
579
|
+
};
|
|
554
580
|
};
|
|
555
581
|
"connect-carrier": {
|
|
556
582
|
actions: {
|
|
@@ -751,6 +777,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
751
777
|
emailIsRequired: string;
|
|
752
778
|
unknown: string;
|
|
753
779
|
noRatesAvailable: string;
|
|
780
|
+
refreshAndTryAgain: string;
|
|
754
781
|
};
|
|
755
782
|
errorTypes: {
|
|
756
783
|
accountStatus: string;
|
|
@@ -865,6 +892,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
865
892
|
agreeToTerms: string;
|
|
866
893
|
carriersTitle: string;
|
|
867
894
|
fundingSourceTitle: string;
|
|
895
|
+
shipEngineTitle: string;
|
|
868
896
|
};
|
|
869
897
|
weight: {
|
|
870
898
|
ounces: string;
|
|
@@ -889,6 +917,7 @@ export declare const Element: ({ resources, ...props }: object & {
|
|
|
889
917
|
printForms: string;
|
|
890
918
|
edit: string;
|
|
891
919
|
remove: string;
|
|
920
|
+
viewDetails: string;
|
|
892
921
|
};
|
|
893
922
|
};
|
|
894
923
|
ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
|