@shipengine/elements 1.5.1 → 1.7.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 (149) hide show
  1. package/index.cjs +14782 -14386
  2. package/index.js +14797 -14413
  3. package/package.json +5 -7
  4. package/src/components/address-preference-context/address-preference-context.d.ts +2 -1
  5. package/src/components/auto-funding-form/auto-funding-form.styles.d.ts +4 -8
  6. package/src/components/collapsible-panel/collapsible-panel.d.ts +6 -1
  7. package/src/components/collapsible-panel/collapsible-panel.styles.d.ts +1 -1
  8. package/src/components/date-range-select/date-range-select.d.ts +1 -2
  9. package/src/components/field/create-field-controller.d.ts +2 -1
  10. package/src/components/field/date-picker/date-picker.d.ts +2 -6
  11. package/src/components/field/rate-card/cost-breakdown/cost-breakdown.d.ts +1 -1
  12. package/src/components/field/rate-card/rate-card.d.ts +3 -1
  13. package/src/components/field/rate-card/rate-card.styles.d.ts +1 -0
  14. package/src/components/field-label/field-label.d.ts +2 -1
  15. package/src/components/history/history-card/history-card.d.ts +5 -2
  16. package/src/components/index.d.ts +5 -2
  17. package/src/components/service-point-display/service-point-display.d.ts +1 -1
  18. package/src/components/service-point-display/service-point-display.styles.d.ts +8 -0
  19. package/src/components/templates/address-display/address-display.d.ts +2 -1
  20. package/src/components/templates/address-form/address-schema.d.ts +2 -0
  21. package/src/components/templates/connected-carrier-list/connected-carrier-row/connected-carrier-row.styles.d.ts +17 -0
  22. package/src/components/templates/index.d.ts +1 -4
  23. package/src/components/templates/label/label.styles.d.ts +0 -6
  24. package/src/components/templates/product-form/product-form-schema.d.ts +0 -12
  25. package/src/components/templates/pudo-rate-tabs/pudo-rate-tabs.d.ts +6 -1
  26. package/src/components/templates/rate-form/rate-form.d.ts +4 -2
  27. package/src/components/templates/rate-form/rate-form.styles.d.ts +2 -4
  28. package/src/components/templates/shipment-form/shipment-schema.d.ts +0 -50
  29. package/src/components/templates/wallet-form/wallet-schema.d.ts +46 -2
  30. package/src/components/{templates/warehouse-form → warehouse-form}/warehouse-form.d.ts +1 -1
  31. package/src/elements/external-carriers/external-carriers.d.ts +819 -9
  32. package/src/elements/index.d.ts +7 -3
  33. package/src/elements/label-layout/index.d.ts +1 -0
  34. package/src/elements/label-layout/label-layout-element.d.ts +791 -0
  35. package/src/elements/labels-grid/labels-grid.d.ts +16 -2
  36. package/src/elements/manage-funding/index.d.ts +1 -0
  37. package/src/elements/manage-funding/manage-funding-element.d.ts +791 -0
  38. package/src/elements/manage-warehouses/manage-warehouses.d.ts +791 -21
  39. package/src/elements/payment-method-settings/index.d.ts +1 -0
  40. package/src/elements/payment-method-settings/payment-method-settings-element.d.ts +791 -0
  41. package/src/elements/{configure-shipment → purchase-label}/configure-shipment.d.ts +1 -12
  42. package/src/elements/purchase-label/hooks/index.d.ts +8 -0
  43. package/src/elements/purchase-label/hooks/use-configure-shipment.d.ts +1 -1
  44. package/src/elements/{configure-shipment → purchase-label}/hooks/use-rates-form.d.ts +1 -1
  45. package/src/elements/{configure-shipment → purchase-label}/hooks/use-rates-with-cache.d.ts +1 -1
  46. package/src/elements/{configure-shipment → purchase-label}/hooks/use-request-preferred-rates.d.ts +1 -1
  47. package/src/elements/{configure-shipment → purchase-label}/hooks/use-request-rates.d.ts +2 -1
  48. package/src/elements/purchase-label/purchase-label.d.ts +36 -50
  49. package/src/elements/shipengine-carriers/index.d.ts +1 -0
  50. package/src/elements/shipengine-carriers/shipengine-carriers.d.ts +854 -0
  51. package/src/elements/shipments-grid/shipments-grid.d.ts +16 -2
  52. package/src/elements/theme-creator/theme-creator.d.ts +16 -2
  53. package/src/elements/unit-settings/index.d.ts +1 -0
  54. package/src/elements/unit-settings/unit-settings-element.d.ts +791 -0
  55. package/src/elements/view-shipment/view-shipment.d.ts +29 -15
  56. package/src/elements/void-label/void-label.d.ts +25 -12
  57. package/src/elements/wallet-history/index.d.ts +1 -0
  58. package/src/elements/wallet-history/wallet-history-element.d.ts +791 -0
  59. package/src/features/external-carriers/external-carriers.d.ts +10 -0
  60. package/src/features/external-carriers/index.d.ts +1 -0
  61. package/src/features/index.d.ts +7 -0
  62. package/src/features/label-layout/index.d.ts +2 -0
  63. package/src/features/label-layout/label-layout.d.ts +7 -0
  64. package/src/features/label-layout/use-label-layout.d.ts +7 -0
  65. package/src/features/manage-funding/manage-funding.d.ts +16 -0
  66. package/src/features/manage-warehouses/index.d.ts +2 -0
  67. package/src/features/manage-warehouses/manage-warehouses.d.ts +16 -0
  68. package/src/features/manage-warehouses/use-manage-warehouses.d.ts +15 -0
  69. package/src/features/shipengine-carriers/hooks/index.d.ts +2 -0
  70. package/src/features/shipengine-carriers/hooks/use-carrier-metadata.d.ts +13 -0
  71. package/src/features/shipengine-carriers/index.d.ts +1 -0
  72. package/src/features/shipengine-carriers/shipengine-carriers-row/index.d.ts +1 -0
  73. package/src/features/shipengine-carriers/shipengine-carriers-row/shipengine-carriers-row.d.ts +9 -0
  74. package/src/features/shipengine-carriers/shipengine-carriers.d.ts +10 -0
  75. package/src/features/unit-settings/index.d.ts +2 -0
  76. package/src/features/unit-settings/unit-settings.d.ts +9 -0
  77. package/src/features/unit-settings/use-unit-settings.d.ts +10 -0
  78. package/src/features/wallet-history/wallet-history.styles.d.ts +10 -10
  79. package/src/hooks/index.d.ts +0 -1
  80. package/src/hooks/options/use-rate-options.d.ts +1 -1
  81. package/src/locales/en/index.d.ts +16 -2
  82. package/src/types/carrier-metadata.d.ts +3 -0
  83. package/src/types/index.d.ts +1 -0
  84. package/src/types/preferred-rates.d.ts +13 -0
  85. package/src/utilities/date.d.ts +2 -1
  86. package/src/utilities/feature-flags.d.ts +5 -2
  87. package/src/utilities/index.d.ts +1 -0
  88. package/src/utilities/tracking-status-formatter.d.ts +1 -0
  89. package/src/{elements → workflows}/account-settings/account-settings.d.ts +25 -58
  90. package/src/workflows/account-settings/use-get-panel-props.d.ts +10 -0
  91. package/src/{elements → workflows}/connect-carrier/connect-carrier.d.ts +16 -2
  92. package/src/workflows/index.d.ts +3 -0
  93. package/src/workflows/manage-wallet-workflow/index.d.ts +1 -0
  94. package/src/workflows/manage-wallet-workflow/manage-wallet-workflow.d.ts +828 -0
  95. package/src/workflows/manage-wallet-workflow/use-get-wallet-panel-props.d.ts +4 -0
  96. package/src/workflows/onboarding/components/onboarding-wizard/onboarding-wizard.d.ts +2 -2
  97. package/src/workflows/onboarding/components/ship-from-address-step/ship-from-address-step.d.ts +1 -1
  98. package/src/workflows/onboarding/components/ship-from-address-step/use-ship-from-address-step.d.ts +1 -1
  99. package/src/workflows/onboarding/components/terms-agreement-form/terms-agreement-form.d.ts +2 -1
  100. package/src/workflows/onboarding/onboarding.d.ts +21 -8
  101. package/src/workflows/purchase-label-workflow/index.d.ts +1 -0
  102. package/src/{elements/shipengine-workflow/label-workflow.d.ts → workflows/purchase-label-workflow/purchase-label-workflow.d.ts} +19 -21
  103. package/src/components/date-range-select/date-range-select.styles.d.ts +0 -7
  104. package/src/components/field/date-picker/date-picker.styles.d.ts +0 -3
  105. package/src/components/label-layout/index.d.ts +0 -3
  106. package/src/components/label-layout/label-layout-purchase.d.ts +0 -5
  107. package/src/components/label-layout/label-layout-settings.d.ts +0 -7
  108. package/src/components/label-layout/label-layout.d.ts +0 -9
  109. package/src/components/manage-funding/manage-funding.d.ts +0 -35
  110. package/src/components/templates/account-settings/account-settings.d.ts +0 -10
  111. package/src/components/templates/account-settings/index.d.ts +0 -1
  112. package/src/components/templates/list-carriers/index.d.ts +0 -1
  113. package/src/components/templates/list-carriers/list-carriers.d.ts +0 -16
  114. package/src/components/templates/list-carriers-row/index.d.ts +0 -1
  115. package/src/components/templates/list-carriers-row/list-carriers-row.d.ts +0 -9
  116. package/src/components/templates/manage-warehouses/index.d.ts +0 -1
  117. package/src/components/templates/manage-warehouses/manage-warehouses.d.ts +0 -11
  118. package/src/components/unit-settings/index.d.ts +0 -1
  119. package/src/components/unit-settings/unit-settings.d.ts +0 -6
  120. package/src/elements/configure-shipment/hooks/index.d.ts +0 -8
  121. package/src/elements/configure-shipment/index.d.ts +0 -1
  122. package/src/elements/list-carriers/index.d.ts +0 -1
  123. package/src/elements/list-carriers/list-carriers.d.ts +0 -36
  124. package/src/elements/shipengine-workflow/index.d.ts +0 -1
  125. package/src/hooks/use-carrier-metadata.d.ts +0 -10
  126. /package/src/components/{templates/edit-billing-form → edit-billing-form}/edit-billing-form.d.ts +0 -0
  127. /package/src/components/{templates/edit-billing-form → edit-billing-form}/edit-billing-form.styles.d.ts +0 -0
  128. /package/src/components/{templates/edit-billing-form → edit-billing-form}/index.d.ts +0 -0
  129. /package/src/components/{templates/wallet-card → wallet-card}/index.d.ts +0 -0
  130. /package/src/components/{templates/wallet-card → wallet-card}/wallet-card.d.ts +0 -0
  131. /package/src/components/{templates/wallet-card → wallet-card}/wallet-card.styles.d.ts +0 -0
  132. /package/src/components/{templates/warehouse-form → warehouse-form}/index.d.ts +0 -0
  133. /package/src/components/{templates/warehouse-form → warehouse-form}/warehouse-form-schema.d.ts +0 -0
  134. /package/src/elements/{configure-shipment → purchase-label}/hooks/use-address.d.ts +0 -0
  135. /package/src/elements/{configure-shipment → purchase-label}/hooks/use-customs.d.ts +0 -0
  136. /package/src/elements/{configure-shipment → purchase-label}/hooks/use-presets.d.ts +0 -0
  137. /package/src/elements/{configure-shipment → purchase-label}/hooks/use-shipment-form.d.ts +0 -0
  138. /package/src/{components → features}/label-layout/label-layout.styles.d.ts +0 -0
  139. /package/src/{components → features}/manage-funding/index.d.ts +0 -0
  140. /package/src/{components/templates → features}/manage-warehouses/manage-warehouse.styles.d.ts +0 -0
  141. /package/src/{components/templates → features/manage-warehouses}/warehouse-display/index.d.ts +0 -0
  142. /package/src/{components/templates → features/manage-warehouses}/warehouse-display/warehouse-display.d.ts +0 -0
  143. /package/src/{components → features}/payment-method-settings/index.d.ts +0 -0
  144. /package/src/{components → features}/payment-method-settings/payment-method-settings.d.ts +0 -0
  145. /package/src/{elements/list-carriers → features/shipengine-carriers}/hooks/use-list-connected-carriers.d.ts +0 -0
  146. /package/src/{components/templates/list-carriers-row/list-carriers-row.styles.d.ts → features/shipengine-carriers/shipengine-carriers-row/shipengine-carriers-row.styles.d.ts} +0 -0
  147. /package/src/{components/templates/list-carriers/list-carriers.styles.d.ts → features/shipengine-carriers/shipengine-carriers.styles.d.ts} +0 -0
  148. /package/src/{elements → workflows}/account-settings/index.d.ts +0 -0
  149. /package/src/{elements → workflows}/connect-carrier/index.d.ts +0 -0
@@ -162,7 +162,10 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
162
162
  highVolumeForms: string;
163
163
  multipleShippingServices: string;
164
164
  sections: {
165
- labels: string;
165
+ labels: string; /**
166
+ * `onClickVoidLabel` is a callback function that will be invoked when the user clicks the
167
+ * `Void Label` button.
168
+ */
166
169
  };
167
170
  noLabels: string;
168
171
  };
@@ -171,25 +174,18 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
171
174
  setup: {
172
175
  title: string;
173
176
  subtitle: string;
177
+ hiddenTermsSubtitle: string;
174
178
  descriptionTitle: string;
175
179
  description: string;
176
180
  };
177
181
  billing: {
178
- title: string; /**
179
- * # View Shipment Component Props
180
- *
181
- * - These are the base props that will be passed into the `<ViewShipment />` component.
182
- *
183
- * @see {@link ViewShipment.Component | This prop types usage in the `<ViewShipment />` component}
184
- */
182
+ title: string;
185
183
  cardSubTitle: string;
186
184
  addressSubTitle: string;
187
185
  info: string;
188
186
  };
189
187
  carriers: {
190
- title: string; /**
191
- * `features` is a set of feature flags you would like to enable or disable in this component.
192
- */
188
+ title: string;
193
189
  subtitle: string;
194
190
  };
195
191
  notifications: {
@@ -197,7 +193,10 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
197
193
  title: string;
198
194
  };
199
195
  info: {
200
- title: string;
196
+ title: string; /**
197
+ * `onClickPurchaseLabel` is a callback function that will be invoked when the user clicks the
198
+ * `Purchase Label` button.
199
+ */
201
200
  description: string;
202
201
  };
203
202
  poBox: {
@@ -310,6 +309,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
310
309
  needToAcknowledge: string;
311
310
  };
312
311
  rates: {
312
+ requestedShippingNotification: string;
313
313
  uspsMediaMailAcknowledgement: string;
314
314
  uspsFirstClassMailAcknowledgement_leof: string;
315
315
  rateSavings: string;
@@ -334,7 +334,8 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
334
334
  nextOpeningDay: string;
335
335
  until: string;
336
336
  selected: string;
337
- selectLocation: string;
337
+ select: string;
338
+ today: string;
338
339
  viewMap: string;
339
340
  otherLocations: string;
340
341
  noServicePointsFound: string;
@@ -390,12 +391,18 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
390
391
  "aHR0cHM6Ly93d3cueW9kZWxkaXJlY3QuY28udWsvY29udGVudC9hYm91dC10ZXJtcw==": string;
391
392
  aHR0cHM6Ly93d3cuc2hpcHN0YXRpb24uY29tL3Rlcm1zLXNlcnZpY2UtdW5pdGVkLWtpbmdkb20v: string;
392
393
  "aHR0cHM6Ly93d3cuZHBkLmNvLnVrL3N0YW5kYXJkX3Rlcm1zX2FuZF9jb25kaXRpb25zLmpzcA==": string;
394
+ aHR0cHM6Ly93d3cuZ29nbG9iYWxwb3N0LmNvbS9jb25kaXRpb25z: string;
395
+ aHR0cHM6Ly93d3cucHVyb2xhdG9yLmNvbS9mci9tb2RhbGl0ZXMtZXQtY29uZGl0aW9ucy1kZS1zZXJ2aWNl: string;
396
+ aHR0cHM6Ly93d3cucHVyb2xhdG9yLmNvbS9lbi90ZXJtcy1hbmQtY29uZGl0aW9ucy1zZXJ2aWNl: string;
393
397
  };
394
398
  termsAndAgreementTitles: {
395
399
  "WW9kZWwgRGlyZWN0IC0gVGVybXMgYW5kIENvbmRpdGlvbnMgKOKAnFRlcm1z4oCdKQ==": string;
396
400
  "RXZyaSBTZW5kIFRlcm1zICYgQ29uZGl0aW9ucw==": string;
397
401
  "VGVybXMgb2YgU2VydmljZSBVbml0ZWQgS2luZ2RvbQ==": string;
398
402
  RFBEIFN0YW5kYXJkIFRlcm1zIGFuZCBDb25kaXRpb25z: string;
403
+ "R2xvYmFsUG9zdCBUZXJtcyBhbmQgQ29uZGl0aW9ucw==": string;
404
+ "UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
405
+ UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
399
406
  };
400
407
  };
401
408
  "manage-defaults": {
@@ -537,7 +544,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
537
544
  };
538
545
  };
539
546
  };
540
- "list-carriers": {
547
+ "shipengine-carriers": {
541
548
  title: string;
542
549
  headers: {
543
550
  accountCarriers: string;
@@ -843,6 +850,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
843
850
  "connect-carrier": {
844
851
  actions: {
845
852
  cancel: string;
853
+ carrierSettings: string;
846
854
  connectCarriers: string;
847
855
  disconnect: string;
848
856
  disconnectCarrier: string;
@@ -851,7 +859,9 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
851
859
  registrationForm: {
852
860
  error: string;
853
861
  title: string;
854
- betaWarning: string;
862
+ betaWarning: string; /**
863
+ * `features` is a set of feature flags you would like to enable or disable in this component.
864
+ */
855
865
  };
856
866
  search: string;
857
867
  settingsModal: {
@@ -861,6 +871,10 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
861
871
  status: {
862
872
  connected: string;
863
873
  };
874
+ disconnectDropdown: {
875
+ toastTitle: string;
876
+ toastBody: string;
877
+ };
864
878
  };
865
879
  "account-settings": {
866
880
  messages: {
@@ -168,7 +168,10 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
168
168
  highVolumeForms: string;
169
169
  multipleShippingServices: string;
170
170
  sections: {
171
- labels: string;
171
+ labels: string; /**
172
+ * `onSuccess` is a callback function that will be invoked when the request to void a given
173
+ * shipping label is successful.
174
+ */
172
175
  };
173
176
  noLabels: string;
174
177
  };
@@ -177,6 +180,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
177
180
  setup: {
178
181
  title: string;
179
182
  subtitle: string;
183
+ hiddenTermsSubtitle: string;
180
184
  descriptionTitle: string;
181
185
  description: string;
182
186
  };
@@ -193,9 +197,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
193
197
  notifications: {
194
198
  error: {
195
199
  title: string;
196
- }; /**
197
- * `labelId` is the unique identifier for the label you wish to void.
198
- */
200
+ };
199
201
  info: {
200
202
  title: string;
201
203
  description: string;
@@ -308,6 +310,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
308
310
  needToAcknowledge: string;
309
311
  };
310
312
  rates: {
313
+ requestedShippingNotification: string;
311
314
  uspsMediaMailAcknowledgement: string;
312
315
  uspsFirstClassMailAcknowledgement_leof: string;
313
316
  rateSavings: string;
@@ -332,7 +335,8 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
332
335
  nextOpeningDay: string;
333
336
  until: string;
334
337
  selected: string;
335
- selectLocation: string;
338
+ select: string;
339
+ today: string;
336
340
  viewMap: string;
337
341
  otherLocations: string;
338
342
  noServicePointsFound: string;
@@ -391,12 +395,18 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
391
395
  "aHR0cHM6Ly93d3cueW9kZWxkaXJlY3QuY28udWsvY29udGVudC9hYm91dC10ZXJtcw==": string;
392
396
  aHR0cHM6Ly93d3cuc2hpcHN0YXRpb24uY29tL3Rlcm1zLXNlcnZpY2UtdW5pdGVkLWtpbmdkb20v: string;
393
397
  "aHR0cHM6Ly93d3cuZHBkLmNvLnVrL3N0YW5kYXJkX3Rlcm1zX2FuZF9jb25kaXRpb25zLmpzcA==": string;
398
+ aHR0cHM6Ly93d3cuZ29nbG9iYWxwb3N0LmNvbS9jb25kaXRpb25z: string;
399
+ aHR0cHM6Ly93d3cucHVyb2xhdG9yLmNvbS9mci9tb2RhbGl0ZXMtZXQtY29uZGl0aW9ucy1kZS1zZXJ2aWNl: string;
400
+ aHR0cHM6Ly93d3cucHVyb2xhdG9yLmNvbS9lbi90ZXJtcy1hbmQtY29uZGl0aW9ucy1zZXJ2aWNl: string;
394
401
  };
395
402
  termsAndAgreementTitles: {
396
403
  "WW9kZWwgRGlyZWN0IC0gVGVybXMgYW5kIENvbmRpdGlvbnMgKOKAnFRlcm1z4oCdKQ==": string;
397
404
  "RXZyaSBTZW5kIFRlcm1zICYgQ29uZGl0aW9ucw==": string;
398
405
  "VGVybXMgb2YgU2VydmljZSBVbml0ZWQgS2luZ2RvbQ==": string;
399
406
  RFBEIFN0YW5kYXJkIFRlcm1zIGFuZCBDb25kaXRpb25z: string;
407
+ "R2xvYmFsUG9zdCBUZXJtcyBhbmQgQ29uZGl0aW9ucw==": string;
408
+ "UHVyb2xhdG9yIFRlcm1zIGFuZCBDb25kaXRpb25zIG9mIFNlcnZpY2U=": string;
409
+ UHVyb2xhdG9yIE1vZGFsaXTDqXMgZXQgY29uZGl0aW9ucyBkZSBzZXJ2aWNl: string;
400
410
  };
401
411
  };
402
412
  "manage-defaults": {
@@ -471,6 +481,10 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
471
481
  purchaseAmount: string;
472
482
  readSettings: string;
473
483
  };
484
+ /**
485
+ * `onComplete` is a callback function that will be invoked when the request to void a given
486
+ * shipping label is completed.
487
+ */
474
488
  addFunds: {
475
489
  custom: string;
476
490
  error: {
@@ -485,12 +499,6 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
485
499
  other: string;
486
500
  };
487
501
  fundAndPurchase: {
488
- /**
489
- * `onViewShipment` is a callback function that will be invoked when the user clicks the
490
- * `View Shipment` button. This will take you back to the
491
- * {@link ViewShipment.Element | `View Shipment Element`} for the given shipment, where you
492
- * will be able to see the voided label listed.
493
- */
494
502
  finalBalance: string;
495
503
  insufficientFunds: string;
496
504
  insufficientFundsTitle: string;
@@ -538,7 +546,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
538
546
  };
539
547
  };
540
548
  };
541
- "list-carriers": {
549
+ "shipengine-carriers": {
542
550
  title: string;
543
551
  headers: {
544
552
  accountCarriers: string;
@@ -841,6 +849,7 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
841
849
  "connect-carrier": {
842
850
  actions: {
843
851
  cancel: string;
852
+ carrierSettings: string;
844
853
  connectCarriers: string;
845
854
  disconnect: string;
846
855
  disconnectCarrier: string;
@@ -859,6 +868,10 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
859
868
  status: {
860
869
  connected: string;
861
870
  };
871
+ disconnectDropdown: {
872
+ toastTitle: string;
873
+ toastBody: string;
874
+ };
862
875
  };
863
876
  "account-settings": {
864
877
  messages: {
@@ -0,0 +1 @@
1
+ export * as WalletHistory from "./wallet-history-element";