@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/index.d.ts
CHANGED
|
@@ -2,11 +2,9 @@ export * from "./components";
|
|
|
2
2
|
export * from "./constants";
|
|
3
3
|
export * from "./elements";
|
|
4
4
|
export * from "./extensions";
|
|
5
|
-
export * from "./factories";
|
|
6
5
|
export * from "./hooks";
|
|
7
6
|
export * from "./providers";
|
|
8
7
|
export * from "./register";
|
|
9
8
|
export * from "./schemas";
|
|
10
|
-
export * from "./testing";
|
|
11
9
|
export * from "./types";
|
|
12
10
|
export * from "./utilities";
|