@shipengine/elements 0.17.3 → 0.19.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/components/fund-and-purchase/fund-and-purchase.d.ts +3 -1
- package/components/history/history-actions/history-actions.d.ts +1 -0
- package/components/history/history-actions/history-actions.styles.d.ts +1 -0
- package/components/history/history-actions/index.d.ts +1 -0
- package/components/history/history-body/history-body.d.ts +6 -0
- package/components/history/history-body/index.d.ts +1 -0
- package/components/history/history-list/history-list.d.ts +12 -0
- package/components/history/history-list/index.d.ts +1 -0
- package/components/history/history-row/history-row.d.ts +6 -0
- package/components/history/history-row/index.d.ts +1 -0
- package/components/history/history.d.ts +11 -0
- package/components/history/index.d.ts +1 -0
- package/components/templates/index.d.ts +3 -0
- package/components/templates/manage-warehouses/manage-warehouse.styles.d.ts +1 -0
- package/components/templates/manage-warehouses/manage-warehouses.d.ts +10 -5
- package/components/templates/onboarding/onboarding.d.ts +8 -1
- package/components/templates/shipment-form/shipment-schema.d.ts +2 -2
- package/components/templates/wallet-history/index.d.ts +1 -0
- package/components/templates/wallet-history/wallet-history.d.ts +6 -0
- package/components/templates/warehouse-form/warehouse-form-schema.d.ts +52 -146
- package/components/templates/warehouse-form/warehouse-form.d.ts +2 -1
- package/components/templates/warehouse-preference-select/index.d.ts +1 -0
- package/components/templates/warehouse-preference-select/warehouse-preference-select.d.ts +24 -0
- package/components/templates/warehouse-preference-wizard/index.d.ts +1 -0
- package/components/templates/warehouse-preference-wizard/warehouse-preference-wizard.d.ts +23 -0
- package/elements/components/index.d.ts +1 -0
- package/elements/components/manage-warehouses/manage-warehouses.d.ts +5 -2
- package/elements/components/wallet-history/index.d.ts +1 -0
- package/elements/components/wallet-history/wallet-history.d.ts +1 -0
- package/elements/index.d.ts +1 -0
- package/elements/manage-warehouses.d.ts +1 -1
- package/elements/wallet-history.d.ts +1 -0
- package/factories/shipengine/index.d.ts +1 -0
- package/factories/shipengine/wallet-history.d.ts +14 -0
- package/factories/shipengine/warehouse.d.ts +2 -0
- package/hooks/index.d.ts +1 -0
- package/hooks/use-warehouse-validation.d.ts +14 -0
- package/index.cjs +1044 -1250
- package/index.d.ts +0 -2
- package/index.js +1042 -1215
- package/locales/en/index.d.ts +15 -0
- package/package.json +3 -3
- package/components/templates/warehouse-form/warehouse-form.styles.d.ts +0 -1
package/locales/en/index.d.ts
CHANGED
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
+
"wallet-history": {
|
|
3
|
+
actions: {
|
|
4
|
+
downloadCsv: string;
|
|
5
|
+
};
|
|
6
|
+
historyOptions: {
|
|
7
|
+
custom: string;
|
|
8
|
+
last30days: string;
|
|
9
|
+
thisMonth: string;
|
|
10
|
+
lastMonth: string;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
2
13
|
"void-label": {
|
|
3
14
|
actions: {
|
|
4
15
|
complete: string;
|
|
@@ -169,6 +180,7 @@ declare const _default: {
|
|
|
169
180
|
};
|
|
170
181
|
schemaErrors: {
|
|
171
182
|
shipFromUnitedStatesOnly: string;
|
|
183
|
+
shipFromAddressRequired: string;
|
|
172
184
|
needToAcknowledge: string;
|
|
173
185
|
};
|
|
174
186
|
rates: {
|
|
@@ -210,6 +222,7 @@ declare const _default: {
|
|
|
210
222
|
};
|
|
211
223
|
"manage-warehouses": {
|
|
212
224
|
addNew: string;
|
|
225
|
+
editWarehouse: string;
|
|
213
226
|
contactName: string;
|
|
214
227
|
default: string;
|
|
215
228
|
isDefault: string;
|
|
@@ -323,8 +336,10 @@ declare const _default: {
|
|
|
323
336
|
};
|
|
324
337
|
paste: string;
|
|
325
338
|
preference: {
|
|
339
|
+
confirm: string;
|
|
326
340
|
addressNotValidated: string;
|
|
327
341
|
modified: string;
|
|
342
|
+
title: string;
|
|
328
343
|
originalAddress: string;
|
|
329
344
|
matchedAddress: string;
|
|
330
345
|
unableToValidate: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipengine/elements",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.19.0",
|
|
4
4
|
"typedoc": {
|
|
5
5
|
"entryPoint": "./src/index.ts",
|
|
6
6
|
"readmeFile": "../../README.md",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"@emotion/react": "^11.10.0",
|
|
24
24
|
"@packlink/brands": "^3.18.0",
|
|
25
25
|
"react-hook-form": "^7.31.2",
|
|
26
|
-
"@shipengine/api": "0.
|
|
27
|
-
"@shipengine/react": "0.
|
|
26
|
+
"@shipengine/api": "0.19.0",
|
|
27
|
+
"@shipengine/react": "0.19.0",
|
|
28
28
|
"zod": "^3.17.3",
|
|
29
29
|
"@emotion/css": "^11.10.5",
|
|
30
30
|
"humps": "^2.0.1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const styles: Record<"header" | "onboardingWell" | "well", import("@emotion/serialize").Interpolation<import("@packlink/brands/dist/js/theme/Theme").Theme>>;
|