@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
@@ -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
- inlineTitle: string;
357
- accountRegistration: {
358
- action: string;
353
+ confirmation: {
359
354
  title: string;
360
- subtitle: string;
361
- welcome: string;
362
- messageLine1: string;
363
- partnerMessageLine1: string;
364
- messageLine2: string;
355
+ warehouse: string;
356
+ billingAddress: string;
357
+ paymentMethod: string;
358
+ action: string;
365
359
  };
366
360
  stepLabel: {
367
- accountRegistration: string;
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,32 +521,74 @@ 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
- download: string;
527
+ modified: string;
528
+ shipping: string;
525
529
  shipmentId: string;
526
- shipDate: string;
527
- shipTo: string;
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;
537
559
  headers: {
538
560
  created: string;
539
- download: string;
540
- labelId: string;
541
- service: string;
542
- shipTo: string;
561
+ shipmentId: string;
562
+ parcels: string;
563
+ recipient: string;
564
+ shipping: string;
565
+ shipDate: string;
566
+ status: string;
567
+ };
568
+ empty: {
569
+ title: string;
570
+ subtitle: string;
571
+ };
572
+ emptyWithFilters: {
573
+ title: string;
574
+ subtitle: string;
575
+ button: string;
576
+ };
577
+ status: {
578
+ voided: string;
579
+ error: string;
580
+ completed: string;
581
+ processing: string;
543
582
  };
544
583
  actions: {
545
- download: {
546
- pdf: string;
547
- };
584
+ title: string;
585
+ print: string;
586
+ void: string;
587
+ printForms: string;
588
+ };
589
+ errorMessages: {
590
+ title: string;
591
+ subtitle: string;
548
592
  };
549
593
  };
550
594
  "connect-carrier": {
@@ -746,6 +790,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
746
790
  emailIsRequired: string;
747
791
  unknown: string;
748
792
  noRatesAvailable: string;
793
+ refreshAndTryAgain: string;
749
794
  };
750
795
  errorTypes: {
751
796
  accountStatus: string;
@@ -764,6 +809,13 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
764
809
  "row-count_one": string;
765
810
  "row-count_other": string;
766
811
  rows: string;
812
+ clearAll: string;
813
+ shipmentId: string;
814
+ shipmentIdFilter: string;
815
+ apply: string;
816
+ clear: string;
817
+ search: string;
818
+ shipmentIdHint: string;
767
819
  };
768
820
  insuranceProviders: {
769
821
  carrier: string;
@@ -839,6 +891,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
839
891
  requiredList: string;
840
892
  tooFewCharacters: string;
841
893
  tooManyCharacters: string;
894
+ requiredShipmentId: string;
842
895
  };
843
896
  shippingPresets: {
844
897
  apply: string;
@@ -852,6 +905,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
852
905
  agreeToTerms: string;
853
906
  carriersTitle: string;
854
907
  fundingSourceTitle: string;
908
+ shipEngineTitle: string;
855
909
  };
856
910
  weight: {
857
911
  ounces: string;
@@ -876,6 +930,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
876
930
  printForms: string;
877
931
  edit: string;
878
932
  remove: string;
933
+ viewDetails: string;
879
934
  };
880
935
  };
881
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
- 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;
@@ -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;