hey-pharmacist-ecommerce 1.1.36 → 1.1.38
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 +0 -2
- package/dist/index.d.mts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +923 -722
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +576 -375
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/NotificationBell.tsx +74 -21
- package/src/components/NotificationModal.tsx +223 -0
- package/src/components/QuickViewModal.tsx +1 -1
- package/src/lib/types/index.ts +0 -1
- package/src/providers/EcommerceProvider.tsx +0 -2
- package/src/screens/LoginScreen.tsx +2 -2
- package/src/screens/OrderDetailScreen.tsx +2 -2
- package/src/screens/ProductDetailScreen.tsx +5 -5
- package/src/screens/ShopScreen.tsx +3 -3
- package/src/screens/WishlistScreen.tsx +1 -1
package/README.md
CHANGED
|
@@ -37,7 +37,6 @@ export const ecommerceConfig = {
|
|
|
37
37
|
accent: "#F59E0B",
|
|
38
38
|
},
|
|
39
39
|
apiBaseUrl: "https://your-api.com",
|
|
40
|
-
stripePublicKey: "pk_test_...",
|
|
41
40
|
};
|
|
42
41
|
```
|
|
43
42
|
|
|
@@ -180,7 +179,6 @@ export const config: EcommerceConfig = {
|
|
|
180
179
|
accent: '#10B981',
|
|
181
180
|
},
|
|
182
181
|
apiBaseUrl: 'https://api.heypharmacist.com',
|
|
183
|
-
stripePublicKey: 'pk_test_...',
|
|
184
182
|
};
|
|
185
183
|
```
|
|
186
184
|
|
package/dist/index.d.mts
CHANGED