@shipengine/elements 0.33.0 → 0.34.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.
- package/index.cjs +142 -98
- package/index.js +144 -100
- package/package.json +1 -1
- package/src/components/add-funds-form/add-funds-form.d.ts +2 -0
- package/src/components/templates/carrier-terms-form/carrier-terms-form.styles.d.ts +1 -0
- package/src/components/templates/landing-page/landing-page.d.ts +2 -1
- package/src/components/templates/onboarding/onboarding.d.ts +3 -1
- package/src/components/templates/onboarding/onboarding.styles.d.ts +10 -0
- package/src/components/templates/warehouse-form/warehouse-form.d.ts +1 -1
- package/src/elements/account-settings/account-settings.d.ts +3 -2
- package/src/elements/onboarding/onboarding.d.ts +6 -3
- package/src/elements/purchase-label/purchase-label.d.ts +3 -2
- package/src/elements/view-shipment/view-shipment.d.ts +3 -2
- package/src/elements/void-label/void-label.d.ts +3 -2
- package/src/locales/en/index.d.ts +3 -2
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
import { OnboardingProps } from "../../components/templates";
|
|
3
3
|
export type ComponentProps = {
|
|
4
4
|
features?: OnboardingProps["features"];
|
|
5
|
+
onboardingAddress?: OnboardingProps["onboardingAddress"];
|
|
5
6
|
onCompleteOnboarding: () => void;
|
|
7
|
+
partnerName?: OnboardingProps["partnerName"];
|
|
6
8
|
};
|
|
7
|
-
export declare const Component: ({ features, onCompleteOnboarding }: ComponentProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare const Component: ({ features, onboardingAddress, onCompleteOnboarding, partnerName, }: ComponentProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
8
10
|
export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
9
11
|
resources?: {
|
|
10
12
|
en: {
|
|
@@ -233,13 +235,14 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
233
235
|
subtitle: string;
|
|
234
236
|
welcome: string;
|
|
235
237
|
messageLine1: string;
|
|
238
|
+
partnerMessageLine1: string;
|
|
236
239
|
messageLine2: string;
|
|
237
240
|
};
|
|
238
241
|
steps: {
|
|
239
|
-
|
|
242
|
+
register: string;
|
|
240
243
|
carriers: string;
|
|
241
244
|
addresses: string;
|
|
242
|
-
|
|
245
|
+
billing: string;
|
|
243
246
|
};
|
|
244
247
|
warehouse: {
|
|
245
248
|
title: string;
|
|
@@ -252,13 +252,14 @@ export declare const Element: ({ resources, ...props }: ElementProps & {
|
|
|
252
252
|
subtitle: string;
|
|
253
253
|
welcome: string;
|
|
254
254
|
messageLine1: string;
|
|
255
|
+
partnerMessageLine1: string;
|
|
255
256
|
messageLine2: string;
|
|
256
257
|
};
|
|
257
258
|
steps: {
|
|
258
|
-
|
|
259
|
+
register: string;
|
|
259
260
|
carriers: string;
|
|
260
261
|
addresses: string;
|
|
261
|
-
|
|
262
|
+
billing: string;
|
|
262
263
|
};
|
|
263
264
|
warehouse: {
|
|
264
265
|
title: string;
|
|
@@ -237,13 +237,14 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
237
237
|
subtitle: string;
|
|
238
238
|
welcome: string;
|
|
239
239
|
messageLine1: string;
|
|
240
|
+
partnerMessageLine1: string;
|
|
240
241
|
messageLine2: string;
|
|
241
242
|
};
|
|
242
243
|
steps: {
|
|
243
|
-
|
|
244
|
+
register: string;
|
|
244
245
|
carriers: string;
|
|
245
246
|
addresses: string;
|
|
246
|
-
|
|
247
|
+
billing: string;
|
|
247
248
|
};
|
|
248
249
|
warehouse: {
|
|
249
250
|
title: string;
|
|
@@ -240,13 +240,14 @@ export declare const Element: ({ resources, ...props }: ComponentProps & {
|
|
|
240
240
|
subtitle: string;
|
|
241
241
|
welcome: string;
|
|
242
242
|
messageLine1: string;
|
|
243
|
+
partnerMessageLine1: string;
|
|
243
244
|
messageLine2: string;
|
|
244
245
|
};
|
|
245
246
|
steps: {
|
|
246
|
-
|
|
247
|
+
register: string;
|
|
247
248
|
carriers: string;
|
|
248
249
|
addresses: string;
|
|
249
|
-
|
|
250
|
+
billing: string;
|
|
250
251
|
};
|
|
251
252
|
warehouse: {
|
|
252
253
|
title: string;
|
|
@@ -224,13 +224,14 @@ declare const _default: {
|
|
|
224
224
|
subtitle: string;
|
|
225
225
|
welcome: string;
|
|
226
226
|
messageLine1: string;
|
|
227
|
+
partnerMessageLine1: string;
|
|
227
228
|
messageLine2: string;
|
|
228
229
|
};
|
|
229
230
|
steps: {
|
|
230
|
-
|
|
231
|
+
register: string;
|
|
231
232
|
carriers: string;
|
|
232
233
|
addresses: string;
|
|
233
|
-
|
|
234
|
+
billing: string;
|
|
234
235
|
};
|
|
235
236
|
warehouse: {
|
|
236
237
|
title: string;
|