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