@hortiview/shared-components 2.8.3 → 2.8.4
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 +6 -0
- package/dist/services/services.test.js +1 -1
- package/dist/types/Time.d.ts +0 -2
- package/dist/types/Time.js +9 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [2.8.4](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/compare/v2.8.3...v2.8.4) (2025-11-12)
|
|
2
|
+
|
|
3
|
+
### Code Refactoring
|
|
4
|
+
|
|
5
|
+
* remove hours12 from TIME_FORMAT ([3e9cf7e](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/commit/3e9cf7e626532ab4f18a40c6014a783796fe1218))
|
|
6
|
+
|
|
1
7
|
## [2.8.3](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/compare/v2.8.2...v2.8.3) (2025-11-07)
|
|
2
8
|
|
|
3
9
|
### Code Refactoring
|
package/dist/types/Time.d.ts
CHANGED
|
@@ -9,12 +9,10 @@ export declare const DATE_FORMAT: {
|
|
|
9
9
|
export declare const TIME_FORMAT: {
|
|
10
10
|
readonly hour: "2-digit";
|
|
11
11
|
readonly minute: "2-digit";
|
|
12
|
-
readonly hour12: true;
|
|
13
12
|
};
|
|
14
13
|
export declare const DATE_TIME_FORMAT: {
|
|
15
14
|
readonly hour: "2-digit";
|
|
16
15
|
readonly minute: "2-digit";
|
|
17
|
-
readonly hour12: true;
|
|
18
16
|
readonly day: "2-digit";
|
|
19
17
|
readonly month: "2-digit";
|
|
20
18
|
readonly year: "numeric";
|
package/dist/types/Time.js
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
const
|
|
1
|
+
const i = {
|
|
2
2
|
day: "2-digit",
|
|
3
3
|
month: "2-digit",
|
|
4
4
|
year: "numeric"
|
|
5
|
-
},
|
|
5
|
+
}, t = {
|
|
6
6
|
hour: "2-digit",
|
|
7
|
-
minute: "2-digit"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
...t
|
|
11
|
-
...i
|
|
7
|
+
minute: "2-digit"
|
|
8
|
+
}, T = {
|
|
9
|
+
...i,
|
|
10
|
+
...t
|
|
12
11
|
};
|
|
13
12
|
export {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
i as DATE_FORMAT,
|
|
14
|
+
T as DATE_TIME_FORMAT,
|
|
15
|
+
t as TIME_FORMAT
|
|
17
16
|
};
|
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": "2.8.
|
|
4
|
+
"version": "2.8.4",
|
|
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>",
|