@haus-storefront-react/discounts 0.0.19 → 0.0.20
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/CHANGELOG.md +18 -0
- package/README.md +5 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 0.0.19 (2025-08-21)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- enhance form handling and component props across various modules ([21edaa1](https://github.com/WeAreHausTech/haus-storefront-components/commit/21edaa1))
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated store/hooks to 0.0.19
|
|
10
|
+
- Updated core to 0.0.19
|
|
11
|
+
- Updated common/utils to 0.0.19
|
|
12
|
+
- Updated common/ui to 0.0.19
|
|
13
|
+
- Updated shared/types to 0.0.19
|
|
14
|
+
|
|
15
|
+
### ❤️ Thank You
|
|
16
|
+
|
|
17
|
+
- Mathias Saxenstrand
|
|
18
|
+
|
|
1
19
|
## 0.0.18 (2025-08-21)
|
|
2
20
|
|
|
3
21
|
### 🧱 Updated Dependencies
|
package/README.md
CHANGED
|
@@ -16,6 +16,10 @@ npm install @haus-storefront-react/discounts
|
|
|
16
16
|
yarn add @haus-storefront-react/discounts
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
## Requirements
|
|
20
|
+
|
|
21
|
+
This package requires **@haus-storefront-react/core version 15.0.0 or higher** to function properly. Make sure you have the correct version installed:
|
|
22
|
+
|
|
19
23
|
## Components
|
|
20
24
|
|
|
21
25
|
### CouponCode component
|
|
@@ -238,6 +242,6 @@ import { View, Text, TouchableOpacity, TextInput } from 'react-native'
|
|
|
238
242
|
|
|
239
243
|
## Dependencies
|
|
240
244
|
|
|
241
|
-
- `@haus-storefront-react/core`: Core SDK and platform detection
|
|
245
|
+
- `@haus-storefront-react/core`: Core SDK and platform detection (requires version 15.0.0 or higher)
|
|
242
246
|
- `@haus-storefront-react/common-utils`: Platform utilities and context creation
|
|
243
247
|
- `@haus-storefront-react/shared-types`: TypeScript type definitions
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haus-storefront-react/discounts",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
}
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@haus-storefront-react/common-ui": "0.0.
|
|
15
|
-
"@haus-storefront-react/common-utils": "0.0.
|
|
16
|
-
"@haus-storefront-react/core": "0.0.
|
|
17
|
-
"@haus-storefront-react/hooks": "0.0.
|
|
18
|
-
"@haus-storefront-react/shared-types": "0.0.
|
|
14
|
+
"@haus-storefront-react/common-ui": "0.0.20",
|
|
15
|
+
"@haus-storefront-react/common-utils": "0.0.20",
|
|
16
|
+
"@haus-storefront-react/core": "0.0.20",
|
|
17
|
+
"@haus-storefront-react/hooks": "0.0.20",
|
|
18
|
+
"@haus-storefront-react/shared-types": "0.0.20"
|
|
19
19
|
}
|
|
20
20
|
}
|