@shipengine/elements 0.17.3 → 0.18.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/templates/index.d.ts +2 -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 +1 -0
- package/components/templates/shipment-form/shipment-schema.d.ts +2 -2
- package/components/templates/warehouse-form/warehouse-form-schema.d.ts +2 -102
- 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/manage-warehouses/manage-warehouses.d.ts +5 -2
- package/elements/manage-warehouses.d.ts +1 -1
- 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 +788 -1164
- package/index.d.ts +0 -2
- package/index.js +790 -1132
- package/locales/en/index.d.ts +4 -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
|
@@ -169,6 +169,7 @@ declare const _default: {
|
|
|
169
169
|
};
|
|
170
170
|
schemaErrors: {
|
|
171
171
|
shipFromUnitedStatesOnly: string;
|
|
172
|
+
shipFromAddressRequired: string;
|
|
172
173
|
needToAcknowledge: string;
|
|
173
174
|
};
|
|
174
175
|
rates: {
|
|
@@ -210,6 +211,7 @@ declare const _default: {
|
|
|
210
211
|
};
|
|
211
212
|
"manage-warehouses": {
|
|
212
213
|
addNew: string;
|
|
214
|
+
editWarehouse: string;
|
|
213
215
|
contactName: string;
|
|
214
216
|
default: string;
|
|
215
217
|
isDefault: string;
|
|
@@ -323,8 +325,10 @@ declare const _default: {
|
|
|
323
325
|
};
|
|
324
326
|
paste: string;
|
|
325
327
|
preference: {
|
|
328
|
+
confirm: string;
|
|
326
329
|
addressNotValidated: string;
|
|
327
330
|
modified: string;
|
|
331
|
+
title: string;
|
|
328
332
|
originalAddress: string;
|
|
329
333
|
matchedAddress: string;
|
|
330
334
|
unableToValidate: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipengine/elements",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.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.18.0",
|
|
27
|
+
"@shipengine/react": "0.18.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>>;
|