@hortiview/shared-components 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/CHANGELOG.md +12 -0
- package/README.md +5 -1
- package/dist/components/Modal/Modal.js +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
## [1.0.1](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/compare/v1.0.0...v1.0.1) (2025-03-25)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* change styles to fix window resize ([e399faf](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/commit/e399faff0d8c59bf13aa951b948bcc1014ec0565))
|
|
7
|
+
|
|
8
|
+
# 1.0.0 (2025-03-16)
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* Introduce HortiView Shared Components
|
package/README.md
CHANGED
|
@@ -68,6 +68,10 @@ Additionally the library provides form components using [react-hook-form](https:
|
|
|
68
68
|
|
|
69
69
|
1. [Languages and countries](#languages-and-countries)
|
|
70
70
|
|
|
71
|
+
## Changelog
|
|
72
|
+
|
|
73
|
+
[Changelog](./Changelog.md)
|
|
74
|
+
|
|
71
75
|
## Available Components:
|
|
72
76
|
|
|
73
77
|
### AlertBanner
|
|
@@ -1054,4 +1058,4 @@ The supported countries are:
|
|
|
1054
1058
|
const languageCode = 'en' as AVAILABLE_LANGUAGE_CODES;
|
|
1055
1059
|
const languageCountryCode = LANGUAGE_CODES_MAPPER[languageCode];
|
|
1056
1060
|
console.log(languageCountryCode); // 'en-US'
|
|
1057
|
-
```
|
|
1061
|
+
```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hortiview/shared-components",
|
|
3
3
|
"description": "This is a shared component library. It should used in the HortiView platform and its modules.",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared",
|
|
7
7
|
"author": "Falk Menge <falk.menge.ext@bayer.com>",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"main": "dist/main.js",
|
|
10
10
|
"types": "dist/main.d.ts",
|
|
11
11
|
"files": [
|
|
12
|
-
"dist"
|
|
12
|
+
"dist",
|
|
13
|
+
"CHANGELOG.md"
|
|
13
14
|
],
|
|
14
15
|
"sideEffects": [
|
|
15
16
|
"**/*.css"
|