@bid-scents/shared-sdk 1.0.0 → 1.0.1
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/README.md
CHANGED
|
@@ -8,7 +8,7 @@ A modular and reusable SDK for the Bid-Scents Marketplace, built with TypeScript
|
|
|
8
8
|
|
|
9
9
|
### 1. Clone and Initialize
|
|
10
10
|
```bash
|
|
11
|
-
git clone https://github.com/
|
|
11
|
+
git clone https://github.com/BidScents/shared-sdk.git
|
|
12
12
|
cd shared-sdk
|
|
13
13
|
bun install # or npm install
|
|
14
14
|
```
|
package/dist/stores/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/stores/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/stores/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAA;AACrC,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAA"}
|
package/dist/stores/index.js
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface LoadingState {
|
|
2
|
+
isLoading: boolean;
|
|
3
|
+
showLoading: () => void;
|
|
4
|
+
hideLoading: () => void;
|
|
5
|
+
}
|
|
6
|
+
export declare const useLoadingStore: import("zustand").UseBoundStore<import("zustand").StoreApi<LoadingState>>;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=loading.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"loading.d.ts","sourceRoot":"","sources":["../../src/stores/loading.ts"],"names":[],"mappings":"AAEA,UAAU,YAAY;IACpB,SAAS,EAAE,OAAO,CAAA;IAClB,WAAW,EAAE,MAAM,IAAI,CAAA;IACvB,WAAW,EAAE,MAAM,IAAI,CAAA;CACxB;AAED,eAAO,MAAM,eAAe,2EAIzB,CAAA"}
|