@shipengine/elements 1.0.0 → 1.1.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 (39) hide show
  1. package/README.md +15 -0
  2. package/index.cjs +2868 -3267
  3. package/index.js +2868 -3270
  4. package/package.json +6 -2
  5. package/src/components/carrier-icon/carrier-icon.d.ts +13 -0
  6. package/src/components/carrier-icon/index.d.ts +1 -0
  7. package/src/components/collapsible-panel/collapsible-panel.styles.d.ts +1 -1
  8. package/src/components/display-term/display-term.styles.d.ts +2 -2
  9. package/src/components/grid-controller/cell-formatted-date.d.ts +4 -0
  10. package/src/components/grid-controller/grid-controller.d.ts +22 -0
  11. package/src/components/grid-controller/grid-controller.styles.d.ts +61 -0
  12. package/src/components/grid-controller/hooks/use-grid.d.ts +43 -0
  13. package/src/components/grid-controller/index.d.ts +2 -0
  14. package/src/components/history/history-card-extension/history-card-extension.styles.d.ts +2 -2
  15. package/src/components/index.d.ts +2 -0
  16. package/src/components/label-layout/label-layout.styles.d.ts +8 -5
  17. package/src/components/powered-by-shipengine/powered-by-shipengine.styles.d.ts +2 -2
  18. package/src/components/save-status/save-status-styles.d.ts +4 -9
  19. package/src/components/section/section.d.ts +2 -2
  20. package/src/components/templates/connect-carrier/connect-carrier.d.ts +1 -0
  21. package/src/components/templates/connect-carrier/connect-carrier.styles.d.ts +1 -0
  22. package/src/components/templates/connect-carrier/index.d.ts +1 -0
  23. package/src/components/templates/connect-carrier-form/connect-carrier-form.d.ts +4 -0
  24. package/src/components/templates/connect-carrier-form/connect-carrier-form.styles.d.ts +60 -0
  25. package/src/components/templates/connect-carrier-form/index.d.ts +1 -0
  26. package/src/components/templates/display-carrier-terms/display-carrier-terms.styles.d.ts +2 -2
  27. package/src/elements/account-settings/account-settings.d.ts +13 -7
  28. package/src/elements/configure-shipment/hooks/use-rates-form.d.ts +1 -1
  29. package/src/elements/connect-carrier/connect-carrier.d.ts +685 -0
  30. package/src/elements/connect-carrier/index.d.ts +1 -0
  31. package/src/elements/labels-grid/index.d.ts +1 -0
  32. package/src/elements/labels-grid/labels-grid.d.ts +687 -0
  33. package/src/elements/purchase-label/purchase-label.d.ts +20 -2
  34. package/src/elements/view-shipment/view-shipment.d.ts +17 -1
  35. package/src/elements/void-label/void-label.d.ts +13 -6
  36. package/src/features/wallet-history/wallet-history.styles.d.ts +2 -2
  37. package/src/locales/en/index.d.ts +13 -0
  38. package/src/workflows/onboarding/components/carrier-recovery-form/carrier-recovery-form-schema.d.ts +29 -29
  39. package/src/workflows/onboarding/onboarding.d.ts +55 -2
@@ -0,0 +1,685 @@
1
+ /// <reference types="react" />
2
+ export declare const Component: () => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const Element: ({ resources, ...props }: object & {
4
+ resources?: {
5
+ en: {
6
+ "wallet-history": {
7
+ actions: {
8
+ downloadCsv: string;
9
+ chooseDate: string;
10
+ };
11
+ dateRange: string;
12
+ historyOptions: {
13
+ custom: string;
14
+ last30days: string;
15
+ thisMonth: string;
16
+ lastMonth: string;
17
+ };
18
+ };
19
+ "void-label": {
20
+ title: string;
21
+ actions: {
22
+ complete: string;
23
+ confirmVoid: string;
24
+ viewShipment: string;
25
+ };
26
+ errorMessages: {
27
+ labelIdRequired: string;
28
+ };
29
+ resultMessages: {
30
+ approved: string;
31
+ rejected: string;
32
+ };
33
+ refund_process: string;
34
+ refund_rules: string;
35
+ resultTitles: {
36
+ approved: string;
37
+ rejected: string;
38
+ };
39
+ voidedOn: string;
40
+ };
41
+ "view-shipment": {
42
+ title: string;
43
+ actions: {
44
+ buyAnotherLabel: string;
45
+ hideItems: string;
46
+ printForms: string;
47
+ printLabel: string;
48
+ schedulePickup: string;
49
+ showItems: string;
50
+ void: string;
51
+ };
52
+ fields: {
53
+ dimensions: string;
54
+ estimatedShipping: string;
55
+ items: string;
56
+ orderDate: string;
57
+ orderValue: string;
58
+ requestedShipping: string;
59
+ shipDate: string;
60
+ shipTo: string;
61
+ warehouse: string;
62
+ weight: string;
63
+ insuredValue: string;
64
+ deliveryConfirmation: string;
65
+ };
66
+ highVolumeForms: string;
67
+ multipleShippingServices: string;
68
+ sections: {
69
+ labels: string;
70
+ };
71
+ noLabels: string;
72
+ };
73
+ "register-wallet": {
74
+ sections: {
75
+ setup: {
76
+ title: string;
77
+ subtitle: string;
78
+ descriptionTitle: string;
79
+ description: string;
80
+ };
81
+ billing: {
82
+ title: string;
83
+ cardSubTitle: string;
84
+ addressSubTitle: string;
85
+ info: string;
86
+ };
87
+ carriers: {
88
+ title: string;
89
+ subtitle: string;
90
+ };
91
+ notifications: {
92
+ error: {
93
+ title: string;
94
+ };
95
+ info: {
96
+ title: string;
97
+ description: string;
98
+ };
99
+ poBox: {
100
+ title: string;
101
+ description: string;
102
+ };
103
+ carrier: {
104
+ title: string;
105
+ confirmAddress: string;
106
+ description: string;
107
+ };
108
+ blackBox: {
109
+ description: string;
110
+ };
111
+ };
112
+ };
113
+ settings: {
114
+ title: string;
115
+ billing: {
116
+ title: string;
117
+ subtitleCard: string;
118
+ subtitleBilling: string;
119
+ };
120
+ };
121
+ };
122
+ "register-carrier": {
123
+ formTitle: string;
124
+ agreeToTerms: string;
125
+ };
126
+ "purchase-label": {
127
+ title: string;
128
+ actions: {
129
+ calculateRates_one: string;
130
+ calculateRates_other: string;
131
+ hideItems: string;
132
+ purchaseLabel: string;
133
+ purchaseNow: string;
134
+ showItems: string;
135
+ showMoreRates: string;
136
+ showFewerRates: string;
137
+ saveRate: string;
138
+ };
139
+ balance: {
140
+ currentBalance: string;
141
+ insufficientBalanceCTA: string;
142
+ };
143
+ cta: {
144
+ addPackageDetails: string;
145
+ };
146
+ errorMessages: {
147
+ customsItemsRequired: string;
148
+ invalidAddress: string;
149
+ noRates: string;
150
+ salesOrderNotLoaded: string;
151
+ unsupportedAddress: string;
152
+ saveRateFailedMessage: string;
153
+ saveRateFailedTitle: string;
154
+ };
155
+ errorTypes: {
156
+ results: string;
157
+ };
158
+ fields: {
159
+ "requires-additional-handling": string;
160
+ addOns: string;
161
+ contentDescription: string;
162
+ confirmation: string;
163
+ dimensions: {
164
+ length: string;
165
+ width: string;
166
+ height: string;
167
+ };
168
+ dimensionsGroup: string;
169
+ estimatedShipping: string;
170
+ insurance: string;
171
+ insuranceProvider: string;
172
+ insuredValue: string;
173
+ items: string;
174
+ orderDate: string;
175
+ orderValue: string;
176
+ packageCode: string;
177
+ requestedShipping: string;
178
+ shipDate: string;
179
+ service: string;
180
+ shipTo: string;
181
+ addShipToAddress: string;
182
+ warehouse: string;
183
+ weight: {
184
+ whole: string;
185
+ fractional: string;
186
+ };
187
+ weightGroup: string;
188
+ today: string;
189
+ };
190
+ hints: {
191
+ contentDescription: string;
192
+ };
193
+ loading: {
194
+ calculatingRates: string;
195
+ };
196
+ modes: {
197
+ browseRates: string;
198
+ selectService: string;
199
+ };
200
+ multipleShippingServices: string;
201
+ schemaErrors: {
202
+ shipFromUnitedStatesOnly: string;
203
+ shipFromAddressRequired: string;
204
+ needToAcknowledge: string;
205
+ };
206
+ rates: {
207
+ uspsMediaMailAcknowledgement: string;
208
+ uspsFirstClassMailAcknowledgement_leof: string;
209
+ rateSavings: string;
210
+ upsGroundSaverTermsAcknowledgement: string;
211
+ dhlExpressTermsAcknowledgement: string;
212
+ };
213
+ requirements: {
214
+ noWarehouse: string;
215
+ noCarrier: string;
216
+ noWarehouseOrCarrier: string;
217
+ };
218
+ shipToAddressFormFields: string;
219
+ sections: {
220
+ customsForm: string;
221
+ shipment: string;
222
+ rate_one: string;
223
+ rate_other: string;
224
+ payment: string;
225
+ };
226
+ };
227
+ "payment-method": {
228
+ title: string;
229
+ };
230
+ onboarding: {
231
+ title: string;
232
+ inlineTitle: string;
233
+ accountRegistration: {
234
+ action: string;
235
+ title: string;
236
+ subtitle: string;
237
+ welcome: string;
238
+ messageLine1: string;
239
+ partnerMessageLine1: string;
240
+ messageLine2: string;
241
+ };
242
+ stepLabel: {
243
+ accountRegistration: string;
244
+ termsAgreement: string;
245
+ shipFromAddress: string;
246
+ fundingAndCarrierConnection: string;
247
+ };
248
+ warehouse: {
249
+ title: string;
250
+ subtitle: string;
251
+ inlineMessage: string;
252
+ };
253
+ success: {
254
+ title: string;
255
+ subtitle: string;
256
+ action: string;
257
+ };
258
+ termsAndAgreementLinkText: {
259
+ aHR0cHM6Ly9teWRobC5leHByZXNzLmRobC91cy9lbi9sZWdhbC90ZXJtcy1hbmQtY29uZGl0aW9ucy5odG1s: string;
260
+ "aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9wcml2YWN5LXBvbGljeQ==": string;
261
+ "aHR0cHM6Ly93d3cuc3RhbXBzLmNvbS9jb25kaXRpb25zLw==": string;
262
+ "aHR0cHM6Ly93d3cudXBzLmNvbS91cy9lbi9zdXBwb3J0L3NoaXBwaW5nLXN1cHBvcnQvc2hpcHBpbmctc3BlY2lhbC1jYXJlLXJlZ3VsYXRlZC1pdGVtcy9wcm9oaWJpdGVkLWl0ZW1zLnBhZ2U=": string;
263
+ aHR0cHM6Ly93d3cudXBzLmNvbS9hc3NldHMvcmVzb3VyY2VzL21lZGlhL2VuX1VTL1VQU19EQVBfVEMucGRm: string;
264
+ "aHR0cHM6Ly93d3cudXBzLmNvbS9hc3NldHMvcmVzb3VyY2VzL21lZGlhL2VuX1VTL1VUQS5wZGY=": string;
265
+ "aHR0cHM6Ly93d3cuZXZyaS5jb20vdGVybXMtYW5kLWNvbmRpdGlvbnM=": string;
266
+ "aHR0cHM6Ly93d3cueW9kZWxkaXJlY3QuY28udWsvY29udGVudC9hYm91dC10ZXJtcw==": string;
267
+ aHR0cHM6Ly93d3cuc2hpcHN0YXRpb24uY29tL3Rlcm1zLXNlcnZpY2UtdW5pdGVkLWtpbmdkb20v: string;
268
+ };
269
+ termsAndAgreementTitles: {
270
+ "WW9kZWwgRGlyZWN0IC0gVGVybXMgYW5kIENvbmRpdGlvbnMgKOKAnFRlcm1z4oCdKQ==": string;
271
+ "RXZyaSBTZW5kIFRlcm1zICYgQ29uZGl0aW9ucw==": string;
272
+ "VGVybXMgb2YgU2VydmljZSBVbml0ZWQgS2luZ2RvbQ==": string;
273
+ };
274
+ };
275
+ "manage-defaults": {
276
+ label: {
277
+ title: string;
278
+ letter: {
279
+ title: string;
280
+ description: string;
281
+ };
282
+ purchase: {
283
+ title: string;
284
+ description: string;
285
+ };
286
+ thermal: {
287
+ title: string;
288
+ description: string;
289
+ };
290
+ };
291
+ status: {
292
+ saving: string;
293
+ saved: string;
294
+ savingFailed: string;
295
+ };
296
+ units: {
297
+ title: string;
298
+ dimensions: {
299
+ title: string;
300
+ standard: string;
301
+ metric: string;
302
+ };
303
+ weight: {
304
+ title: string;
305
+ standard: string;
306
+ g: string;
307
+ kg: string;
308
+ };
309
+ };
310
+ };
311
+ "manage-warehouses": {
312
+ title: string;
313
+ addNew: string;
314
+ editWarehouse: string;
315
+ contactName: string;
316
+ default: string;
317
+ isDefault: string;
318
+ locationName: string;
319
+ residentialAddress: string;
320
+ returnTo: string;
321
+ returnToAddressIsDifferent: string;
322
+ setDefault: string;
323
+ shipFrom: string;
324
+ };
325
+ "manage-funding": {
326
+ actions: {
327
+ addFunds: string;
328
+ addFundsAndPurchase: string;
329
+ addNow: string;
330
+ saveRule: string;
331
+ };
332
+ autoFunding: {
333
+ edit: string;
334
+ editSettings: string;
335
+ error: {
336
+ title: string;
337
+ message: string;
338
+ };
339
+ isEnabledCTA: string;
340
+ isEnabled: string;
341
+ isLoading: string;
342
+ lowBalancePurchaseThreshold: string;
343
+ maximumPurchasesPerDay: string;
344
+ purchaseAmount: string;
345
+ readSettings: string;
346
+ };
347
+ addFunds: {
348
+ custom: string;
349
+ error: {
350
+ title: string;
351
+ message: string;
352
+ };
353
+ isLoading: string;
354
+ labels: {
355
+ amount: string;
356
+ };
357
+ minimumPurchaseAmount: string;
358
+ other: string;
359
+ };
360
+ fundAndPurchase: {
361
+ finalBalance: string;
362
+ insufficientFunds: string;
363
+ insufficientFundsTitle: string;
364
+ negativeBalance: string;
365
+ negativeBalanceTitle: string;
366
+ newBalance: string;
367
+ };
368
+ errors: {
369
+ balanceUnknown: string;
370
+ unableToFindBalance: string;
371
+ };
372
+ currentBalance: string;
373
+ maximumBalanceAmount: string;
374
+ };
375
+ "list-carriers": {
376
+ title: string;
377
+ headers: {
378
+ accountCarriers: string;
379
+ carriers: string;
380
+ settings: string;
381
+ };
382
+ actions: {
383
+ status: {
384
+ connected: string;
385
+ notConnected: string;
386
+ };
387
+ };
388
+ };
389
+ common: {
390
+ actions: {
391
+ add: string;
392
+ cancel: string;
393
+ close: string;
394
+ confirm: string;
395
+ connect: string;
396
+ continue: string;
397
+ delete: string;
398
+ edit: string;
399
+ hide: string;
400
+ parse: string;
401
+ purchase: string;
402
+ remove: string;
403
+ save: string;
404
+ skipForNow: string;
405
+ submit: string;
406
+ tryAgain: string;
407
+ };
408
+ address: {
409
+ fields: {
410
+ name: string;
411
+ company: string;
412
+ county: string;
413
+ countryCode: string;
414
+ addressLine1: string;
415
+ addressLine2: string;
416
+ cityLocality: string;
417
+ stateProvince: string;
418
+ postalCode: string;
419
+ phone: string;
420
+ email: string;
421
+ addressResidentialIndicator: string;
422
+ };
423
+ noResults: string;
424
+ subFields: {
425
+ optional: string;
426
+ };
427
+ parserFields: {
428
+ fullAddress: string;
429
+ };
430
+ paste: string;
431
+ preference: {
432
+ confirm: string;
433
+ addressNotValidated: string;
434
+ modified: string;
435
+ title: string;
436
+ originalAddress: string;
437
+ matchedAddress: string;
438
+ unableToValidate: string;
439
+ use: {
440
+ originalAddress: string;
441
+ matchedAddress: string;
442
+ };
443
+ };
444
+ validation: {
445
+ notValidated: string;
446
+ validated: string;
447
+ };
448
+ };
449
+ billing: {
450
+ fields: {
451
+ differentBillingAddress: string;
452
+ name: string;
453
+ cardNumber: string;
454
+ expiration: string;
455
+ cvv: string;
456
+ cvvPlaceholder: string;
457
+ expirationPlaceholder: string;
458
+ cardNumberPlaceholder: string;
459
+ };
460
+ };
461
+ carriers: {
462
+ fields: {
463
+ agreement: string;
464
+ };
465
+ terms: {
466
+ agreeToTerms: string;
467
+ title: string;
468
+ };
469
+ };
470
+ charsetWarnings: {
471
+ name: {
472
+ message: string;
473
+ };
474
+ address: {
475
+ message: string;
476
+ title: string;
477
+ };
478
+ };
479
+ confirmationTypes: {
480
+ adultSignature: string;
481
+ delivery: string;
482
+ deliveryMailed: string;
483
+ directSignature: string;
484
+ none: string;
485
+ signature: string;
486
+ verbalConfirmation: string;
487
+ };
488
+ customs: {
489
+ addDeclaration: string;
490
+ contents: {
491
+ documents: string;
492
+ gift: string;
493
+ merchandise: string;
494
+ returnedGoods: string;
495
+ sample: string;
496
+ };
497
+ declarations: string;
498
+ each: string;
499
+ fields: {
500
+ contentsType: string;
501
+ countryOfOrigin: string;
502
+ description: string;
503
+ harmonizedTariffCode: string;
504
+ ifDeliveryFails: string;
505
+ quantity: string;
506
+ sku: string;
507
+ value: string;
508
+ valueQuantity: string;
509
+ };
510
+ nonDelivery: {
511
+ returnToSender: string;
512
+ treatAsAbandoned: string;
513
+ };
514
+ removeAllDeclarations: string;
515
+ total: string;
516
+ };
517
+ errorMessages: {
518
+ invalidNameOrCompany: string;
519
+ parsingFailure: string;
520
+ incompleteLabelPurchaseRequirements: string;
521
+ shipmentCancelled: string;
522
+ unableToLoad: {
523
+ accountSettings: string;
524
+ autoFundingSettings: string;
525
+ carrier: string;
526
+ carriers: string;
527
+ fundingSourceMetadata: string;
528
+ label: string;
529
+ salesOrder: string;
530
+ shipment: string;
531
+ warehouses: string;
532
+ };
533
+ unknown: string;
534
+ noRatesAvailable: string;
535
+ };
536
+ errorTypes: {
537
+ accountStatus: string;
538
+ businessRules: string;
539
+ integrations: string;
540
+ purchase: string;
541
+ rateInvalid: string;
542
+ saveRate: string;
543
+ security: string;
544
+ shipmentStatus: string;
545
+ system: string;
546
+ unknown: string;
547
+ validation: string;
548
+ };
549
+ grid: {
550
+ "row-count_one": string;
551
+ "row-count_other": string;
552
+ rows: string;
553
+ };
554
+ insuranceProviders: {
555
+ carrier: string;
556
+ none: string;
557
+ shipsurance: string;
558
+ thirdParty: string;
559
+ };
560
+ loading: {
561
+ accountSettings: string;
562
+ carrier: string;
563
+ carriers: string;
564
+ connectingCarriers: string;
565
+ creatingFundingSource: string;
566
+ data: string;
567
+ importingSalesOrder: string;
568
+ label: string;
569
+ onboarding: string;
570
+ salesOrder: string;
571
+ shipment: string;
572
+ warehouses: string;
573
+ };
574
+ months: {
575
+ january: string;
576
+ february: string;
577
+ march: string;
578
+ april: string;
579
+ may: string;
580
+ june: string;
581
+ july: string;
582
+ august: string;
583
+ september: string;
584
+ october: string;
585
+ november: string;
586
+ december: string;
587
+ };
588
+ packageCategories: {
589
+ customPackages: string;
590
+ };
591
+ packageCodes: {
592
+ package: string;
593
+ };
594
+ "powered-by": string;
595
+ schema: {
596
+ optionalLabel: string;
597
+ };
598
+ required: string;
599
+ schemaErrors: {
600
+ notAValidPhoneNumber: string;
601
+ mustAgreeToTerms: string;
602
+ group: {
603
+ allMeasurementsOrNone: string;
604
+ };
605
+ invalidAddressName: string;
606
+ invalidAddressNameStrict: string;
607
+ invalidAddressPoBox: string;
608
+ invalidCreditCardType: string;
609
+ invalidExpirationDate: string;
610
+ invalidPostalCode: string;
611
+ invalidStateProvince: string;
612
+ invalidString: string;
613
+ nonnegative: string;
614
+ nonnegativeList: string;
615
+ positive: string;
616
+ positiveList: string;
617
+ required: string;
618
+ requiredList: string;
619
+ tooFewCharacters: string;
620
+ tooManyCharacters: string;
621
+ };
622
+ shippingPresets: {
623
+ apply: string;
624
+ platform: string;
625
+ user: string;
626
+ };
627
+ terms: {
628
+ fields: {
629
+ agreement: string;
630
+ };
631
+ agreeToTerms: string;
632
+ carriersTitle: string;
633
+ fundingSourceTitle: string;
634
+ };
635
+ weight: {
636
+ ounces: string;
637
+ pounds_one: string;
638
+ pounds_other: string;
639
+ kilogram: string;
640
+ gram: string;
641
+ };
642
+ units: {
643
+ inch: string;
644
+ lbs: string;
645
+ oz: string;
646
+ centimeter: string;
647
+ gram: string;
648
+ kilogram: string;
649
+ };
650
+ T25seSByZXNpZGVudGlhbCBkZWxpdmVyeSBhZGRyZXNzZXMgYXJlIGFsbG93ZWQgZm9yIFVQUyBHcm91bmQgU2F2ZXIu: string;
651
+ "VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkMTAwLgo=": string;
652
+ "VGhlIHNlbGVjdGVkIHNlcnZpY2UgaW5jbHVkZXMgaW5zdXJhbmNlIGZvciBhbiBpbnN1cmVkIGFtb3VudCB1cCB0byAkNTAuCg==": string;
653
+ QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBJbnN1ZmZpY2llbnQgYWNjb3VudCBiYWxhbmNlLiBBY2NvdW50IGV4Y2VwdGlvbiBFeGNlcHRpb24gd2l0aCBjb2RlIDB4MDA1NjAxMDE7IG1vZHVsZSA4NiwgY2F0ZWdvcnkgMSwgaXRlbSAx: string;
654
+ "QWRkcmVzcyBub3QgZm91bmQ=": string;
655
+ QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBVUFMgd2VpZ2h0IGxpbWl0IHBlciBwYWNrYWdlIGlzIDE1MCBsYnMu: string;
656
+ UGxlYXNlIGFkZCBhIFN0YW1wcy5jb20gYWNjb3VudCB0byBTaGlwRW5naW5lIGluIG9yZGVyIHRvIGNyZWF0ZSBzaGlwcGluZyBsYWJlbHMu: string;
657
+ QSBzaGlwcGluZyBlcnJvciBvY2N1cnJlZDogTWlzc2luZyBvciBpbnZhbGlkIHNoaXBwZXIgbnVtYmVy: string;
658
+ QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBNaXNzaW5nIG9yIGludmFsaWQgc2hpcHBlciBuYW1l: string;
659
+ "QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBNaXNzaW5nIG9yIGludmFsaWQgc2hpcCB0byBTdGF0ZVByb3ZpbmNlQ29kZQ==": string;
660
+ "QSBzaGlwcGluZyBjYXJyaWVyIGVycm9yIG9jY3VycmVkOiBJbnZhbGlkIHNvbGQgdG8gc3RhdGUgcHJvdmluY2UgY29kZS4gVmFsaWQgbGVuZ3RoIGlzIDAgdG8gNSBhbHBoYW51bWVyaWM=": string;
661
+ };
662
+ "connect-carrier": {
663
+ registrationForm: {
664
+ title: string;
665
+ isLoading: string;
666
+ betaWarning: string;
667
+ };
668
+ };
669
+ "account-settings": {
670
+ title: string;
671
+ sections: {
672
+ accountBalance: string;
673
+ paymentMethod: string;
674
+ transactionHistory: string;
675
+ adjustmentHistory: string;
676
+ warehouses: string;
677
+ carriers: string;
678
+ labelLayout: string;
679
+ unitSettings: string;
680
+ };
681
+ };
682
+ };
683
+ } | undefined;
684
+ }) => import("@emotion/react/jsx-runtime").JSX.Element;
685
+ export type ElementProps = React.ComponentProps<typeof Element>;
@@ -0,0 +1 @@
1
+ export * as ConnectCarrier from "./connect-carrier";
@@ -0,0 +1 @@
1
+ export * as LabelsGrid from "./labels-grid";