@shipengine/elements 2.3.1 → 2.5.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.
Files changed (88) hide show
  1. package/actions-menu.js +3 -12
  2. package/components.js +1 -1
  3. package/elements.js +1 -1
  4. package/hooks.js +1 -1
  5. package/index.js +1 -1
  6. package/package.json +5 -3
  7. package/src/components/actions-menu/actions-menu.d.ts +2 -1
  8. package/src/components/error-state/error-state.d.ts +6 -0
  9. package/src/{workflows/onboarding/components/account-registration-step/account-registration-step.styles.d.ts → components/error-state/error-state.styles.d.ts} +9 -5
  10. package/src/components/error-state/index.d.ts +1 -0
  11. package/src/components/field/create-field-controller.d.ts +2 -1
  12. package/src/components/field-label/field-label.d.ts +2 -1
  13. package/src/components/field-label/field-label.styles.d.ts +16 -0
  14. package/src/components/grid-controller/grid-controller.d.ts +20 -2
  15. package/src/components/grid-controller/grid-controller.styles.d.ts +18 -6
  16. package/src/components/grid-controller/grid-footer.d.ts +27 -0
  17. package/src/components/grid-controller/index.d.ts +2 -0
  18. package/src/components/grid-filters/grid-filters.d.ts +30 -0
  19. package/src/components/grid-filters/grid-filters.styles.d.ts +11 -0
  20. package/src/components/grid-filters/index.d.ts +2 -0
  21. package/src/components/grid-filters/shipment-id-filter-shema.d.ts +9 -0
  22. package/src/components/grid-filters/shipment-id-filter.d.ts +23 -0
  23. package/src/components/index.d.ts +2 -0
  24. package/src/components/templates/address-display/address-display.d.ts +2 -1
  25. package/src/components/templates/wallet-form/wallet-form.d.ts +1 -1
  26. package/src/components/warehouse-form/warehouse-form-schema.d.ts +4 -1
  27. package/src/components/warehouse-form/warehouse-form.d.ts +2 -1
  28. package/src/elements/label-layout/label-layout-element.d.ts +77 -22
  29. package/src/elements/labels-grid/hooks/use-labels-grid.d.ts +68 -0
  30. package/src/elements/labels-grid/index.d.ts +1 -0
  31. package/src/elements/labels-grid/labels-grid.d.ts +132 -28
  32. package/src/elements/labels-grid/labels-grid.styles.d.ts +11 -0
  33. package/src/elements/manage-carriers/manage-carriers.d.ts +77 -22
  34. package/src/elements/manage-external-carriers/manage-external-carriers.d.ts +99 -23
  35. package/src/elements/manage-funding/manage-funding-element.d.ts +77 -22
  36. package/src/elements/manage-warehouses/manage-warehouses.d.ts +77 -22
  37. package/src/elements/payment-method-settings/payment-method-settings-element.d.ts +77 -22
  38. package/src/elements/purchase-label/purchase-label.d.ts +88 -73
  39. package/src/elements/shipment-summary/shipment-summary.d.ts +84 -26
  40. package/src/elements/shipments-grid/hooks/use-shipments-grid.d.ts +161 -0
  41. package/src/elements/shipments-grid/shipments-grid.d.ts +161 -30
  42. package/src/elements/shipments-grid/shipments-grid.styles.d.ts +11 -0
  43. package/src/elements/theme-creator/theme-creator.d.ts +77 -22
  44. package/src/elements/transaction-history/transaction-history-element.d.ts +77 -22
  45. package/src/elements/unit-settings/unit-settings-element.d.ts +77 -22
  46. package/src/elements/vat-settings/vat-settings-element.d.ts +77 -22
  47. package/src/elements/void-label/void-label.d.ts +89 -33
  48. package/src/hooks/index.d.ts +1 -0
  49. package/src/hooks/use-get-service-name.d.ts +4 -0
  50. package/src/locales/en/index.d.ts +77 -22
  51. package/src/workflows/account-settings/account-settings.d.ts +77 -22
  52. package/src/workflows/carrier-services/carrier-services.d.ts +77 -22
  53. package/src/workflows/connect-external-carrier/connect-external-carrier.d.ts +77 -22
  54. package/src/workflows/label-workflow/label-workflow.d.ts +10 -29
  55. package/src/workflows/onboarding/components/carrier-recovery-form/carrier-recovery-form-schema.d.ts +18 -18
  56. package/src/workflows/onboarding/components/confirmation-and-submission-step/confirmation-and-submission-step.d.ts +12 -0
  57. package/src/workflows/onboarding/components/confirmation-and-submission-step/index.d.ts +2 -0
  58. package/src/workflows/onboarding/components/confirmation-and-submission-step/use-confirmation-and-submission-step.d.ts +19 -0
  59. package/src/workflows/onboarding/components/funding-step/funding-step.d.ts +7 -0
  60. package/src/workflows/onboarding/components/funding-step/index.d.ts +1 -0
  61. package/src/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.d.ts +1 -2
  62. package/src/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.styles.d.ts +3 -0
  63. package/src/workflows/onboarding/components/ship-from-address-step/index.d.ts +0 -1
  64. package/src/workflows/onboarding/components/ship-from-address-step/ship-from-address-step.d.ts +3 -2
  65. package/src/workflows/onboarding/components/step-header/step-header.d.ts +3 -2
  66. 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
  67. package/src/workflows/onboarding/components/welcome-page/index.d.ts +1 -0
  68. package/src/workflows/onboarding/components/welcome-page/welcome-page.d.ts +4 -0
  69. package/src/workflows/onboarding/onboarding.d.ts +79 -26
  70. package/suspend-text.js +1 -1
  71. package/transaction-history-element.js +1 -1
  72. package/use-get-service-name.js +1 -0
  73. package/use-unit-settings.js +1 -1
  74. package/usePager.js +1 -0
  75. package/vat.js +1 -1
  76. package/wallet-form.js +1 -1
  77. package/workflows.js +1 -1
  78. package/src/workflows/onboarding/components/account-registration-form/account-registration-form-schema.d.ts +0 -13
  79. package/src/workflows/onboarding/components/account-registration-form/account-registration-form.d.ts +0 -4
  80. package/src/workflows/onboarding/components/account-registration-form/index.d.ts +0 -1
  81. package/src/workflows/onboarding/components/account-registration-step/account-registration-step.d.ts +0 -5
  82. package/src/workflows/onboarding/components/account-registration-step/index.d.ts +0 -2
  83. package/src/workflows/onboarding/components/account-registration-step/use-account-registration-step.d.ts +0 -7
  84. package/src/workflows/onboarding/components/funding-and-carrier-connection-step/funding-and-carrier-connection-step.d.ts +0 -9
  85. package/src/workflows/onboarding/components/funding-and-carrier-connection-step/index.d.ts +0 -2
  86. package/src/workflows/onboarding/components/funding-and-carrier-connection-step/use-funding-and-carrier-connection-step.d.ts +0 -25
  87. package/src/workflows/onboarding/components/ship-from-address-step/use-ship-from-address-step.d.ts +0 -9
  88. package/story-notes.js +0 -1
@@ -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
- inlineTitle: string;
344
- accountRegistration: {
345
- action: string;
340
+ confirmation: {
346
341
  title: string;
347
- subtitle: string;
348
- welcome: string;
349
- messageLine1: string;
350
- partnerMessageLine1: string;
351
- messageLine2: string;
342
+ warehouse: string;
343
+ billingAddress: string;
344
+ paymentMethod: string;
345
+ action: string;
352
346
  };
353
347
  stepLabel: {
354
- accountRegistration: string;
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,32 +508,74 @@ 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
- download: string;
514
+ modified: string;
515
+ shipping: string;
512
516
  shipmentId: string;
513
- shipDate: string;
514
- shipTo: string;
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;
524
546
  headers: {
525
547
  created: string;
526
- download: string;
527
- labelId: string;
528
- service: string;
529
- shipTo: string;
548
+ shipmentId: string;
549
+ parcels: string;
550
+ recipient: string;
551
+ shipping: string;
552
+ shipDate: string;
553
+ status: string;
554
+ };
555
+ empty: {
556
+ title: string;
557
+ subtitle: string;
558
+ };
559
+ emptyWithFilters: {
560
+ title: string;
561
+ subtitle: string;
562
+ button: string;
563
+ };
564
+ status: {
565
+ voided: string;
566
+ error: string;
567
+ completed: string;
568
+ processing: string;
530
569
  };
531
570
  actions: {
532
- download: {
533
- pdf: string;
534
- };
571
+ title: string;
572
+ print: string;
573
+ void: string;
574
+ printForms: string;
575
+ };
576
+ errorMessages: {
577
+ title: string;
578
+ subtitle: string;
535
579
  };
536
580
  };
537
581
  "connect-carrier": {
@@ -733,6 +777,7 @@ export declare const Element: ({ resources, ...props }: object & {
733
777
  emailIsRequired: string;
734
778
  unknown: string;
735
779
  noRatesAvailable: string;
780
+ refreshAndTryAgain: string;
736
781
  };
737
782
  errorTypes: {
738
783
  accountStatus: string;
@@ -751,6 +796,13 @@ export declare const Element: ({ resources, ...props }: object & {
751
796
  "row-count_one": string;
752
797
  "row-count_other": string;
753
798
  rows: string;
799
+ clearAll: string;
800
+ shipmentId: string;
801
+ shipmentIdFilter: string;
802
+ apply: string;
803
+ clear: string;
804
+ search: string;
805
+ shipmentIdHint: string;
754
806
  };
755
807
  insuranceProviders: {
756
808
  carrier: string;
@@ -826,6 +878,7 @@ export declare const Element: ({ resources, ...props }: object & {
826
878
  requiredList: string;
827
879
  tooFewCharacters: string;
828
880
  tooManyCharacters: string;
881
+ requiredShipmentId: string;
829
882
  };
830
883
  shippingPresets: {
831
884
  apply: string;
@@ -839,6 +892,7 @@ export declare const Element: ({ resources, ...props }: object & {
839
892
  agreeToTerms: string;
840
893
  carriersTitle: string;
841
894
  fundingSourceTitle: string;
895
+ shipEngineTitle: string;
842
896
  };
843
897
  weight: {
844
898
  ounces: string;
@@ -863,6 +917,7 @@ export declare const Element: ({ resources, ...props }: object & {
863
917
  printForms: string;
864
918
  edit: string;
865
919
  remove: string;
920
+ viewDetails: string;
866
921
  };
867
922
  };
868
923
  ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
@@ -208,7 +208,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
208
208
  setup: {
209
209
  title: string;
210
210
  subtitle: string;
211
- hiddenTermsSubtitle: string;
212
211
  descriptionTitle: string;
213
212
  description: string;
214
213
  };
@@ -216,7 +215,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
216
215
  title: string;
217
216
  cardSubTitle: string;
218
217
  addressSubTitle: string;
219
- info: string;
220
218
  };
221
219
  vatSettings: {
222
220
  title: string;
@@ -230,13 +228,15 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
230
228
  title: string;
231
229
  };
232
230
  info: {
233
- title: string;
234
231
  description: string;
235
232
  };
236
233
  poBox: {
237
234
  title: string;
238
235
  description: string;
239
- };
236
+ }; /**
237
+ * `onSuccess` is a callback function that will be invoked when the request to void a given
238
+ * shipping label is successful.
239
+ */
240
240
  carrier: {
241
241
  title: string;
242
242
  confirmAddress: string;
@@ -461,44 +461,39 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
461
461
  };
462
462
  onboarding: {
463
463
  title: string;
464
- inlineTitle: string;
465
- accountRegistration: {
466
- action: string;
464
+ confirmation: {
467
465
  title: string;
468
- subtitle: string;
469
- welcome: string;
470
- messageLine1: string;
471
- partnerMessageLine1: string;
472
- messageLine2: string;
466
+ warehouse: string;
467
+ billingAddress: string;
468
+ paymentMethod: string;
469
+ action: string;
473
470
  };
474
471
  stepLabel: {
475
- accountRegistration: string;
472
+ confirmation: string;
476
473
  termsAgreement: string;
477
474
  shipFromAddress: string;
478
475
  fundingAndCarrierConnection: string;
479
476
  };
480
477
  warehouse: {
481
478
  title: string;
479
+ /**
480
+ * # Void Label Component Props
481
+ *
482
+ * - These are the base props that will be passed into the `<VoidLabel />` component.
483
+ *
484
+ * @see {@link VoidLabel.Component | This prop types usage in the `<VoidLabel />` component}
485
+ */
482
486
  subtitle: string;
483
487
  inlineMessage: string;
484
488
  };
485
489
  errors: {
486
490
  noCarriers: {
487
- /**
488
- * `onSuccess` is a callback function that will be invoked when the request to void a given
489
- * shipping label is successful.
490
- */
491
491
  title: string;
492
492
  subtitle: string;
493
493
  };
494
494
  };
495
495
  success: {
496
- title: string; /**
497
- * `onViewShipment` is a callback function that will be invoked when the user clicks the
498
- * `View Shipment` button. This will take you back to the
499
- * {@link ShipmentSummary.Element | `Shipment Summary Element`} for the given shipment, where you
500
- * will be able to see the voided label listed.
501
- */
496
+ title: string;
502
497
  subtitle: string;
503
498
  action: string;
504
499
  };
@@ -528,6 +523,14 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
528
523
  "UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
529
524
  UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
530
525
  };
526
+ tooltip: {
527
+ warehouse: string;
528
+ };
529
+ welcomePage: {
530
+ title: string;
531
+ message: string;
532
+ action: string;
533
+ };
531
534
  };
532
535
  "manage-warehouses": {
533
536
  title: string;
@@ -638,32 +641,74 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
638
641
  };
639
642
  "list-shipments": {
640
643
  title: string;
644
+ none: string;
641
645
  headers: {
642
646
  created: string;
643
- download: string;
647
+ modified: string;
648
+ shipping: string;
644
649
  shipmentId: string;
645
- shipDate: string;
646
- shipTo: string;
650
+ parcels: string;
651
+ recipient: string;
652
+ status: string;
653
+ };
654
+ status: {
655
+ cancelled: string;
656
+ purchased: string;
657
+ readyToBuy: string;
658
+ processing: string;
647
659
  };
648
660
  actions: {
649
661
  download: {
650
662
  pdf: string;
651
663
  };
652
664
  };
665
+ emptyState: {
666
+ title: string;
667
+ subtitle: string;
668
+ filtersTitle: string;
669
+ filtersSubtitle: string;
670
+ viewAll: string;
671
+ };
672
+ errorMessages: {
673
+ title: string;
674
+ subtitle: string;
675
+ };
653
676
  };
654
677
  "list-labels": {
655
678
  title: string;
656
679
  headers: {
657
680
  created: string;
658
- download: string;
659
- labelId: string;
660
- service: string;
661
- shipTo: string;
681
+ shipmentId: string;
682
+ parcels: string;
683
+ recipient: string;
684
+ shipping: string;
685
+ shipDate: string;
686
+ status: string;
687
+ };
688
+ empty: {
689
+ title: string;
690
+ subtitle: string;
691
+ };
692
+ emptyWithFilters: {
693
+ title: string;
694
+ subtitle: string;
695
+ button: string;
696
+ };
697
+ status: {
698
+ voided: string;
699
+ error: string;
700
+ completed: string;
701
+ processing: string;
662
702
  };
663
703
  actions: {
664
- download: {
665
- pdf: string;
666
- };
704
+ title: string;
705
+ print: string;
706
+ void: string;
707
+ printForms: string;
708
+ };
709
+ errorMessages: {
710
+ title: string;
711
+ subtitle: string;
667
712
  };
668
713
  };
669
714
  "connect-carrier": {
@@ -870,6 +915,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
870
915
  emailIsRequired: string;
871
916
  unknown: string;
872
917
  noRatesAvailable: string;
918
+ refreshAndTryAgain: string;
873
919
  };
874
920
  errorTypes: {
875
921
  accountStatus: string;
@@ -888,6 +934,13 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
888
934
  "row-count_one": string;
889
935
  "row-count_other": string;
890
936
  rows: string;
937
+ clearAll: string;
938
+ shipmentId: string;
939
+ shipmentIdFilter: string;
940
+ apply: string;
941
+ clear: string;
942
+ search: string;
943
+ shipmentIdHint: string;
891
944
  };
892
945
  insuranceProviders: {
893
946
  carrier: string;
@@ -963,6 +1016,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
963
1016
  requiredList: string;
964
1017
  tooFewCharacters: string;
965
1018
  tooManyCharacters: string;
1019
+ requiredShipmentId: string;
966
1020
  };
967
1021
  shippingPresets: {
968
1022
  apply: string;
@@ -976,6 +1030,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
976
1030
  agreeToTerms: string;
977
1031
  carriersTitle: string;
978
1032
  fundingSourceTitle: string;
1033
+ shipEngineTitle: string;
979
1034
  };
980
1035
  weight: {
981
1036
  ounces: string;
@@ -1000,6 +1055,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
1000
1055
  printForms: string;
1001
1056
  edit: string;
1002
1057
  remove: string;
1058
+ viewDetails: string;
1003
1059
  };
1004
1060
  };
1005
1061
  ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;
@@ -1,6 +1,7 @@
1
1
  export * from "./options";
2
2
  export * from "./use-address-validation";
3
3
  export * from "./use-black-box-detection";
4
+ export * from "./use-get-service-name";
4
5
  export * from "./use-helpers";
5
6
  export * from "./use-nested-form";
6
7
  export * from "./use-page-layout";
@@ -0,0 +1,4 @@
1
+ import { SE } from '@shipengine/js-api';
2
+ export declare const useGetServiceName: () => {
3
+ getServiceName: (itemSelected: SE.Label | SE.Shipment) => string | undefined | null;
4
+ };
@@ -113,7 +113,6 @@ declare const _default: {
113
113
  setup: {
114
114
  title: string;
115
115
  subtitle: string;
116
- hiddenTermsSubtitle: string;
117
116
  descriptionTitle: string;
118
117
  description: string;
119
118
  };
@@ -121,7 +120,6 @@ declare const _default: {
121
120
  title: string;
122
121
  cardSubTitle: string;
123
122
  addressSubTitle: string;
124
- info: string;
125
123
  };
126
124
  vatSettings: {
127
125
  title: string;
@@ -135,7 +133,6 @@ declare const _default: {
135
133
  title: string;
136
134
  };
137
135
  info: {
138
- title: string;
139
136
  description: string;
140
137
  };
141
138
  poBox: {
@@ -336,18 +333,15 @@ declare const _default: {
336
333
  };
337
334
  onboarding: {
338
335
  title: string;
339
- inlineTitle: string;
340
- accountRegistration: {
341
- action: string;
336
+ confirmation: {
342
337
  title: string;
343
- subtitle: string;
344
- welcome: string;
345
- messageLine1: string;
346
- partnerMessageLine1: string;
347
- messageLine2: string;
338
+ warehouse: string;
339
+ billingAddress: string;
340
+ paymentMethod: string;
341
+ action: string;
348
342
  };
349
343
  stepLabel: {
350
- accountRegistration: string;
344
+ confirmation: string;
351
345
  termsAgreement: string;
352
346
  shipFromAddress: string;
353
347
  fundingAndCarrierConnection: string;
@@ -394,6 +388,14 @@ declare const _default: {
394
388
  "UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
395
389
  UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
396
390
  };
391
+ tooltip: {
392
+ warehouse: string;
393
+ };
394
+ welcomePage: {
395
+ title: string;
396
+ message: string;
397
+ action: string;
398
+ };
397
399
  };
398
400
  "manage-warehouses": {
399
401
  title: string;
@@ -502,32 +504,74 @@ declare const _default: {
502
504
  };
503
505
  "list-shipments": {
504
506
  title: string;
507
+ none: string;
505
508
  headers: {
506
509
  created: string;
507
- download: string;
510
+ modified: string;
511
+ shipping: string;
508
512
  shipmentId: string;
509
- shipDate: string;
510
- shipTo: string;
513
+ parcels: string;
514
+ recipient: string;
515
+ status: string;
516
+ };
517
+ status: {
518
+ cancelled: string;
519
+ purchased: string;
520
+ readyToBuy: string;
521
+ processing: string;
511
522
  };
512
523
  actions: {
513
524
  download: {
514
525
  pdf: string;
515
526
  };
516
527
  };
528
+ emptyState: {
529
+ title: string;
530
+ subtitle: string;
531
+ filtersTitle: string;
532
+ filtersSubtitle: string;
533
+ viewAll: string;
534
+ };
535
+ errorMessages: {
536
+ title: string;
537
+ subtitle: string;
538
+ };
517
539
  };
518
540
  "list-labels": {
519
541
  title: string;
520
542
  headers: {
521
543
  created: string;
522
- download: string;
523
- labelId: string;
524
- service: string;
525
- shipTo: string;
544
+ shipmentId: string;
545
+ parcels: string;
546
+ recipient: string;
547
+ shipping: string;
548
+ shipDate: string;
549
+ status: string;
550
+ };
551
+ empty: {
552
+ title: string;
553
+ subtitle: string;
554
+ };
555
+ emptyWithFilters: {
556
+ title: string;
557
+ subtitle: string;
558
+ button: string;
559
+ };
560
+ status: {
561
+ voided: string;
562
+ error: string;
563
+ completed: string;
564
+ processing: string;
526
565
  };
527
566
  actions: {
528
- download: {
529
- pdf: string;
530
- };
567
+ title: string;
568
+ print: string;
569
+ void: string;
570
+ printForms: string;
571
+ };
572
+ errorMessages: {
573
+ title: string;
574
+ subtitle: string;
531
575
  };
532
576
  };
533
577
  "connect-carrier": {
@@ -729,6 +773,7 @@ declare const _default: {
729
773
  emailIsRequired: string;
730
774
  unknown: string;
731
775
  noRatesAvailable: string;
776
+ refreshAndTryAgain: string;
732
777
  };
733
778
  errorTypes: {
734
779
  accountStatus: string;
@@ -747,6 +792,13 @@ declare const _default: {
747
792
  "row-count_one": string;
748
793
  "row-count_other": string;
749
794
  rows: string;
795
+ clearAll: string;
796
+ shipmentId: string;
797
+ shipmentIdFilter: string;
798
+ apply: string;
799
+ clear: string;
800
+ search: string;
801
+ shipmentIdHint: string;
750
802
  };
751
803
  insuranceProviders: {
752
804
  carrier: string;
@@ -822,6 +874,7 @@ declare const _default: {
822
874
  requiredList: string;
823
875
  tooFewCharacters: string;
824
876
  tooManyCharacters: string;
877
+ requiredShipmentId: string;
825
878
  };
826
879
  shippingPresets: {
827
880
  apply: string;
@@ -835,6 +888,7 @@ declare const _default: {
835
888
  agreeToTerms: string;
836
889
  carriersTitle: string;
837
890
  fundingSourceTitle: string;
891
+ shipEngineTitle: string;
838
892
  };
839
893
  weight: {
840
894
  ounces: string;
@@ -859,6 +913,7 @@ declare const _default: {
859
913
  printForms: string;
860
914
  edit: string;
861
915
  remove: string;
916
+ viewDetails: string;
862
917
  };
863
918
  };
864
919
  ZnVuZGluZ19zb3VyY2VfaWQgbXVzdCBiZSBhbiBpbnRlZ2Vy: string;