Skip to content

Commit d34e532

Browse files
committed
Updates
1 parent ece356a commit d34e532

15 files changed

Lines changed: 75 additions & 2 deletions

dist/ProductInformation.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import type { ProductInformation } from "./types";
2+
export declare function defaultFetchProductInformation(productId: string): Promise<ProductInformation | null>;
3+
//# sourceMappingURL=ProductInformation.d.ts.map

dist/ProductInformation.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ProductOptions.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import type { ProductsListResponse } from "./types";
2+
export declare function defaultFetchProductOptions(search: unknown, productId: unknown): Promise<ProductsListResponse>;
3+
//# sourceMappingURL=ProductOptions.d.ts.map

dist/ProductOptions.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/ProductSelector.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import type { FC } from "react";
2+
import type { ProductSelectorProps } from "./types";
3+
declare const ProductSelector: FC<ProductSelectorProps>;
4+
export default ProductSelector;
5+
//# sourceMappingURL=ProductSelector.d.ts.map

dist/ProductSelector.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export { default as ProductSelector } from "./ProductSelector";
2+
export type { ProductAttr, ProductSelectorProps, ProductsListResponse, ProductInformation, FetchProductOptions, FetchProductInformation, } from "./types";
3+
export { defaultFetchProductOptions } from "./ProductOptions";
4+
export { defaultFetchProductInformation } from "./ProductInformation";
5+
//# sourceMappingURL=index.d.ts.map

dist/index.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/index.mjs

Lines changed: 2 additions & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)