Skip to content

Commit 5aa374c

Browse files
committed
Updates
1 parent 2d03b66 commit 5aa374c

17 files changed

Lines changed: 93 additions & 4 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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import type { ProductSelectorProps } from "./types";
2+
declare const ProductSelector: ({ value, onChange, onProductInformationChange, onProductInformationError, fetchOptions, fetchProductInformation, }: ProductSelectorProps) => import("react/jsx-runtime").JSX.Element;
3+
export default ProductSelector;
4+
//# 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: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.LICENSE.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/**
2+
* @license React
3+
* react-jsx-runtime.production.min.js
4+
*
5+
* Copyright (c) Facebook, Inc. and its affiliates.
6+
*
7+
* This source code is licensed under the MIT license found in the
8+
* LICENSE file in the root directory of this source tree.
9+
*/

0 commit comments

Comments
 (0)