@hortiview/shared-components 0.0.11747 → 0.0.11881
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 +28 -0
- package/dist/components/FormComponents/FormNumber/FormNumber.test.js +1 -1
- package/dist/components/HealthCheckFailed/HealthCheckFailed.d.ts +1 -2
- package/dist/components/LoadingSpinner/Default/LoadingSpinner.d.ts +1 -2
- package/dist/main.d.ts +4 -2
- package/dist/main.js +60 -53
- package/dist/services/UtilService.d.ts +2 -2
- package/dist/types/Languages.d.ts +96 -3
- package/dist/types/Languages.js +21 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -64,6 +64,10 @@ Additionally the library provides form components using [react-hook-form](https:
|
|
|
64
64
|
1. [trimLeadingAndTrailingSpaces](#trimleadingandtrailingspaces)
|
|
65
65
|
1. [getNumberAsLocaleString](#getnumberaslocalestring)
|
|
66
66
|
|
|
67
|
+
## Available constants
|
|
68
|
+
|
|
69
|
+
1. [Languages and countries](#languages-and-countries)
|
|
70
|
+
|
|
67
71
|
## Available Components:
|
|
68
72
|
|
|
69
73
|
### AlertBanner
|
|
@@ -1027,3 +1031,27 @@ const overlineTitle = `${getNumberAsLocaleString(userLocale, totalArea, 5)} ${t(
|
|
|
1027
1031
|
'squaremeter-unit'
|
|
1028
1032
|
)}`;
|
|
1029
1033
|
```
|
|
1034
|
+
|
|
1035
|
+
## Available constants
|
|
1036
|
+
|
|
1037
|
+
### Languages and countries
|
|
1038
|
+
|
|
1039
|
+
The file contains different languages and country constants as well as language ids, which represents the available languages and countries of the hortiview platform.
|
|
1040
|
+
|
|
1041
|
+
The supported languages are:
|
|
1042
|
+
|
|
1043
|
+
- English (en)
|
|
1044
|
+
- Spanish (es)
|
|
1045
|
+
- Turkish (tr)
|
|
1046
|
+
|
|
1047
|
+
The supported countries are:
|
|
1048
|
+
|
|
1049
|
+
- Spain (esp)
|
|
1050
|
+
- Mexico (mex)
|
|
1051
|
+
- Turkey (tur)
|
|
1052
|
+
|
|
1053
|
+
```typescript
|
|
1054
|
+
const languageCode = 'en' as AVAILABLE_LANGUAGE_CODES;
|
|
1055
|
+
const languageCountryCode = LANGUAGE_CODES_MAPPER[languageCode];
|
|
1056
|
+
console.log(languageCountryCode); // 'en-US'
|
|
1057
|
+
```
|
|
@@ -44,7 +44,7 @@ e.mock("react-hook-form", () => ({
|
|
|
44
44
|
}));
|
|
45
45
|
m("FormNumber Test", () => {
|
|
46
46
|
f("render FormNumber with correct properties", () => {
|
|
47
|
-
a(/* @__PURE__ */ o(s, { languageCode: "
|
|
47
|
+
a(/* @__PURE__ */ o(s, { languageCode: "es-MX", propertyName: "es-MX" }));
|
|
48
48
|
const t = n.getByRole("textbox");
|
|
49
49
|
r(t).toBeInTheDocument(), r(t).toHaveAttribute("type", "text"), r(t).toHaveAttribute("inputmode", "decimal");
|
|
50
50
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
type HealthCheckFailedProps = {
|
|
1
|
+
export type HealthCheckFailedProps = {
|
|
2
2
|
/**
|
|
3
3
|
* Please check the shared components README for the correct title for each type.
|
|
4
4
|
* Font size: 16px, font weight: 700
|
|
@@ -19,4 +19,3 @@ type HealthCheckFailedProps = {
|
|
|
19
19
|
isOutlined?: boolean;
|
|
20
20
|
};
|
|
21
21
|
export declare const HealthCheckFailed: ({ title, subtitle, type, isOutlined, }: HealthCheckFailedProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
type LoadingSpinnerProps = {
|
|
1
|
+
export type LoadingSpinnerProps = {
|
|
2
2
|
/**
|
|
3
3
|
* center the spinner in the middle of the container
|
|
4
4
|
*/
|
|
@@ -49,4 +49,3 @@ type LoadingSpinnerProps = {
|
|
|
49
49
|
* @returns a loading spinner component
|
|
50
50
|
*/
|
|
51
51
|
export declare const LoadingSpinner: ({ size, center, text, textPosition, color, spinnerOnly, impatienceMessage, impatienceTimeout, }: LoadingSpinnerProps) => import("react/jsx-runtime").JSX.Element;
|
|
52
|
-
export {};
|
package/dist/main.d.ts
CHANGED
|
@@ -40,10 +40,12 @@ export { capitalizeFirstLetters, getNumberAsLocaleString, trimLeadingAndTrailing
|
|
|
40
40
|
export type { ActionProps } from './components/ContextMenu/ContextMenu';
|
|
41
41
|
export type { FormSelectOption } from './components/FormComponents/FormSelect/FormSelect';
|
|
42
42
|
export type { FormTextProps } from './components/FormComponents/FormText/FormText';
|
|
43
|
+
export type { HealthCheckFailedProps } from './components/HealthCheckFailed/HealthCheckFailed';
|
|
43
44
|
export type { FieldItem } from './components/InfoGroup/InfoGroup';
|
|
45
|
+
export type { LoadingSpinnerProps } from './components/LoadingSpinner/Default/LoadingSpinner';
|
|
44
46
|
export type { FilterData, FilterOption, FilterSelection } from './types/Filter';
|
|
45
47
|
export type { CellTemplate, CellTemplateProps, TableLayoutProps } from './types/GenericTable';
|
|
46
48
|
export type { HashTab } from './types/HashTab';
|
|
47
49
|
export type { BaseListElement, ListElement } from './types/ListElement';
|
|
48
|
-
export { LANGUAGE_CODES_MAPPER } from './types/Languages';
|
|
49
|
-
export type {
|
|
50
|
+
export { AVAILABLE_COUNTRY_KEYS, AVAILABLE_LOCALES, ENGLISH_LANGUAGE_ID, GERMAN_LANGUAGE_ID, LANGUAGE_CODES_MAPPER, LANGUAGE_ID_MAPPER, SPANISH_LANGUAGE_ID, TURKISH_LANGUAGE_ID, } from './types/Languages';
|
|
51
|
+
export type { AVAILABLE_LANGUAGE_CODES, LANGUAGE_COUNTRY_CODES } from './types/Languages';
|
package/dist/main.js
CHANGED
|
@@ -3,25 +3,25 @@ import { AlertBanner as t } from "./components/AlertBanner/AlertBanner.js";
|
|
|
3
3
|
import { BaseView as p } from "./components/BaseView/BaseView.js";
|
|
4
4
|
import { BasicHeading as x } from "./components/BasicHeading/BasicHeading.js";
|
|
5
5
|
import { BlockView as a } from "./components/BlockView/BlockView.js";
|
|
6
|
-
import { ChipCard as
|
|
7
|
-
import { ContextMenu as
|
|
8
|
-
import { DeleteModal as
|
|
9
|
-
import { Disclaimer as
|
|
10
|
-
import { EmptyView as
|
|
11
|
-
import { Filter as
|
|
12
|
-
import { FormattedNumberDisplay as
|
|
13
|
-
import { GenericTable as
|
|
14
|
-
import { HashTabView as
|
|
15
|
-
import { HeaderFilter as
|
|
16
|
-
import { HealthCheckFailed as
|
|
6
|
+
import { ChipCard as A } from "./components/ChipCard/ChipCard.js";
|
|
7
|
+
import { ContextMenu as n } from "./components/ContextMenu/ContextMenu.js";
|
|
8
|
+
import { DeleteModal as d } from "./components/DeleteModal/DeleteModal.js";
|
|
9
|
+
import { Disclaimer as G } from "./components/Disclaimer/Disclaimer.js";
|
|
10
|
+
import { EmptyView as s } from "./components/EmptyView/EmptyView.js";
|
|
11
|
+
import { Filter as F } from "./components/Filter/Filter.js";
|
|
12
|
+
import { FormattedNumberDisplay as N } from "./components/FormattedNumberDisplay/FormattedNumberDisplay.js";
|
|
13
|
+
import { GenericTable as C } from "./components/GenericTable/GenericTable.js";
|
|
14
|
+
import { HashTabView as u } from "./components/HashTabView/HashTabView.js";
|
|
15
|
+
import { HeaderFilter as T } from "./components/HeaderFilter/HeaderFilter.js";
|
|
16
|
+
import { HealthCheckFailed as U } from "./components/HealthCheckFailed/HealthCheckFailed.js";
|
|
17
17
|
import { Iconify as H } from "./components/Iconify/Iconify.js";
|
|
18
18
|
import { InfoGroup as P } from "./components/InfoGroup/InfoGroup.js";
|
|
19
|
-
import { ListArea as
|
|
20
|
-
import { LoadingSpinner as
|
|
21
|
-
import { Modal as
|
|
22
|
-
import { ModulePadding as
|
|
23
|
-
import { OverflowTooltip as
|
|
24
|
-
import { ScrollbarX as
|
|
19
|
+
import { ListArea as R } from "./components/ListArea/ListArea.js";
|
|
20
|
+
import { LoadingSpinner as w } from "./components/LoadingSpinner/Default/LoadingSpinner.js";
|
|
21
|
+
import { Modal as v } from "./components/Modal/Modal.js";
|
|
22
|
+
import { ModulePadding as Y } from "./components/ModulePadding/ModulePadding.js";
|
|
23
|
+
import { OverflowTooltip as z } from "./components/OverflowTooltip/OverflowTooltip.js";
|
|
24
|
+
import { ScrollbarX as j, ScrollbarY as q } from "./components/Scrollbar/Scrollbar.js";
|
|
25
25
|
import { SearchBar as Q } from "./components/SearchBar/SearchBar.js";
|
|
26
26
|
import { Select as Z } from "./components/Select/Select.js";
|
|
27
27
|
import { VerticalDivider as rr } from "./components/VerticalDivider/VerticalDivider.js";
|
|
@@ -30,55 +30,62 @@ import { FormDatePicker as mr } from "./components/FormComponents/FormDatePicker
|
|
|
30
30
|
import { FormNumber as fr } from "./components/FormComponents/FormNumber/FormNumber.js";
|
|
31
31
|
import { FormRadio as ir } from "./components/FormComponents/FormRadio/FormRadio.js";
|
|
32
32
|
import { FormSelect as lr } from "./components/FormComponents/FormSelect/FormSelect.js";
|
|
33
|
-
import { FormSlider as
|
|
34
|
-
import { FormText as
|
|
35
|
-
import { FormToggle as
|
|
36
|
-
import { AvailableCustomIcons as
|
|
37
|
-
import { ThemeColor as
|
|
38
|
-
import { u as
|
|
39
|
-
import { capitalizeFirstLetters as
|
|
40
|
-
import { LANGUAGE_CODES_MAPPER as
|
|
33
|
+
import { FormSlider as cr } from "./components/FormComponents/FormSlider/FormSlider.js";
|
|
34
|
+
import { FormText as Lr } from "./components/FormComponents/FormText/FormText.js";
|
|
35
|
+
import { FormToggle as Er } from "./components/FormComponents/FormToggle/FormToggle.js";
|
|
36
|
+
import { AvailableCustomIcons as Sr } from "./enums/AvailableCustomIcons.js";
|
|
37
|
+
import { ThemeColor as _r } from "./enums/ThemeColor.js";
|
|
38
|
+
import { u as Ir } from "./useBreakpoints-MzTZ0tCT.js";
|
|
39
|
+
import { capitalizeFirstLetters as Dr, getNumberAsLocaleString as Cr, trimLeadingAndTrailingSpaces as gr } from "./services/UtilService.js";
|
|
40
|
+
import { AVAILABLE_COUNTRY_KEYS as Br, AVAILABLE_LOCALES as Tr, ENGLISH_LANGUAGE_ID as br, GERMAN_LANGUAGE_ID as Ur, LANGUAGE_CODES_MAPPER as hr, LANGUAGE_ID_MAPPER as Hr, SPANISH_LANGUAGE_ID as Mr, TURKISH_LANGUAGE_ID as Pr } from "./types/Languages.js";
|
|
41
41
|
export {
|
|
42
|
+
Br as AVAILABLE_COUNTRY_KEYS,
|
|
43
|
+
Tr as AVAILABLE_LOCALES,
|
|
42
44
|
t as AlertBanner,
|
|
43
|
-
|
|
45
|
+
Sr as AvailableCustomIcons,
|
|
44
46
|
p as BaseView,
|
|
45
47
|
x as BasicHeading,
|
|
46
48
|
a as BlockView,
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
A as ChipCard,
|
|
50
|
+
n as ContextMenu,
|
|
51
|
+
d as DeleteModal,
|
|
52
|
+
G as Disclaimer,
|
|
53
|
+
br as ENGLISH_LANGUAGE_ID,
|
|
54
|
+
s as EmptyView,
|
|
55
|
+
F as Filter,
|
|
53
56
|
er as FormCheckBox,
|
|
54
57
|
mr as FormDatePicker,
|
|
55
58
|
fr as FormNumber,
|
|
56
59
|
ir as FormRadio,
|
|
57
60
|
lr as FormSelect,
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
61
|
+
cr as FormSlider,
|
|
62
|
+
Lr as FormText,
|
|
63
|
+
Er as FormToggle,
|
|
64
|
+
N as FormattedNumberDisplay,
|
|
65
|
+
Ur as GERMAN_LANGUAGE_ID,
|
|
66
|
+
C as GenericTable,
|
|
67
|
+
u as HashTabView,
|
|
68
|
+
T as HeaderFilter,
|
|
69
|
+
U as HealthCheckFailed,
|
|
66
70
|
H as Iconify,
|
|
67
71
|
P as InfoGroup,
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
Y as
|
|
74
|
-
|
|
75
|
-
|
|
72
|
+
hr as LANGUAGE_CODES_MAPPER,
|
|
73
|
+
Hr as LANGUAGE_ID_MAPPER,
|
|
74
|
+
R as ListArea,
|
|
75
|
+
w as LoadingSpinner,
|
|
76
|
+
v as Modal,
|
|
77
|
+
Y as ModulePadding,
|
|
78
|
+
z as OverflowTooltip,
|
|
79
|
+
Mr as SPANISH_LANGUAGE_ID,
|
|
80
|
+
j as ScrollbarX,
|
|
81
|
+
q as ScrollbarY,
|
|
76
82
|
Q as SearchBar,
|
|
77
83
|
Z as Select,
|
|
78
|
-
|
|
84
|
+
Pr as TURKISH_LANGUAGE_ID,
|
|
85
|
+
_r as ThemeColor,
|
|
79
86
|
rr as VerticalDivider,
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
87
|
+
Dr as capitalizeFirstLetters,
|
|
88
|
+
Cr as getNumberAsLocaleString,
|
|
89
|
+
gr as trimLeadingAndTrailingSpaces,
|
|
90
|
+
Ir as useBreakpoints
|
|
84
91
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AVAILABLE_LANGUAGE_CODES } from '../types/Languages';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Capitalizes the first letter of every word in a given text string
|
|
@@ -22,4 +22,4 @@ export declare const trimLeadingAndTrailingSpaces: <T extends Record<string, unk
|
|
|
22
22
|
* @param maximumFractionDigits - The maximum number of decimal digits (default is 2).
|
|
23
23
|
* @returns The language-specific formatted number.
|
|
24
24
|
*/
|
|
25
|
-
export declare const getNumberAsLocaleString: (locale:
|
|
25
|
+
export declare const getNumberAsLocaleString: (locale: AVAILABLE_LANGUAGE_CODES, value?: number, maximumFractionDigits?: number) => string;
|
|
@@ -1,3 +1,96 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/**
|
|
2
|
+
* HortiView platform english language id
|
|
3
|
+
*/
|
|
4
|
+
export declare const ENGLISH_LANGUAGE_ID = "bb8077e3-ad50-4c1d-8b17-b768b1c9f041";
|
|
5
|
+
/**
|
|
6
|
+
* HortiView platform german language id
|
|
7
|
+
*/
|
|
8
|
+
export declare const GERMAN_LANGUAGE_ID = "bb8077e3-ad50-4c1d-8b17-b768b1c9f055";
|
|
9
|
+
/**
|
|
10
|
+
* HortiView platform spanish language id
|
|
11
|
+
*/
|
|
12
|
+
export declare const SPANISH_LANGUAGE_ID = "bb8077e3-ad50-4c1d-8b17-b768b1c9f149";
|
|
13
|
+
/**
|
|
14
|
+
* HortiView platform turkish language id
|
|
15
|
+
*/
|
|
16
|
+
export declare const TURKISH_LANGUAGE_ID = "bb8077e3-ad50-4c1d-8b17-b768b1c9f166";
|
|
17
|
+
/**
|
|
18
|
+
* Language id mapper for the HortiView platform
|
|
19
|
+
* @description
|
|
20
|
+
* It is a record object that maps the available language codes to the available language ids.
|
|
21
|
+
* The available language ids are:
|
|
22
|
+
* - English (en) mapped to {@link ENGLISH_LANGUAGE_ID}
|
|
23
|
+
* - Spanish (es) mapped to {@link SPANISH_LANGUAGE_ID}
|
|
24
|
+
* - Turkish (tr) mapped to {@link TURKISH_LANGUAGE_ID}
|
|
25
|
+
*
|
|
26
|
+
* @example
|
|
27
|
+
* ```ts
|
|
28
|
+
* const languageCode = 'en' as AVAILABLE_LANGUAGE_CODES;
|
|
29
|
+
* const languageId = LANGUAGE_ID_MAPPER[languageCode];
|
|
30
|
+
* console.log(languageId); // 'bb8077e3-ad50-4c1d-8b17-b768b1c9f041'
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
export declare const LANGUAGE_ID_MAPPER: {
|
|
34
|
+
en: string;
|
|
35
|
+
es: string;
|
|
36
|
+
tr: string;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* Available languages for the HortiView platform
|
|
40
|
+
* @description
|
|
41
|
+
* It is a constant array of the available language codes in ISO 639-1:2002 format (2-digit).
|
|
42
|
+
* The available languages are:
|
|
43
|
+
*
|
|
44
|
+
* - English (en)
|
|
45
|
+
* - Spanish (es)
|
|
46
|
+
* - Turkish (tr)
|
|
47
|
+
*/
|
|
48
|
+
export declare const AVAILABLE_LOCALES: readonly ["en", "es", "tr"];
|
|
49
|
+
/**
|
|
50
|
+
* Available language country codes for the HortiView platform
|
|
51
|
+
* @description
|
|
52
|
+
* It is a literal string type of the available language country codes in the format language-country, like 'en-US'.
|
|
53
|
+
* The available language country codes are:
|
|
54
|
+
* - English (en-US)
|
|
55
|
+
* - Spanish (es-MX)
|
|
56
|
+
* - Turkish (tr-TR)
|
|
57
|
+
*/
|
|
58
|
+
export type LANGUAGE_COUNTRY_CODES = 'es-MX' | 'en-US' | 'tr-TR';
|
|
59
|
+
/**
|
|
60
|
+
* Available languages for the HortiView platform
|
|
61
|
+
* @description
|
|
62
|
+
* It is a literal string type of the available languages in in ISO 639-1:2002 format (2-digit). It is based in {@link AVAILABLE_LOCALES}.
|
|
63
|
+
* The available language country codes are:
|
|
64
|
+
* - English (en)
|
|
65
|
+
* - Spanish (es)
|
|
66
|
+
* - Turkish (tr)
|
|
67
|
+
*/
|
|
68
|
+
export type AVAILABLE_LANGUAGE_CODES = (typeof AVAILABLE_LOCALES)[number];
|
|
69
|
+
/**
|
|
70
|
+
* Language codes mapper for the HortiView platform
|
|
71
|
+
* @description
|
|
72
|
+
* It is a record object that maps the available language codes to the available language country codes.
|
|
73
|
+
* The available language country codes are:
|
|
74
|
+
* - English (en) mapped to 'en-US'
|
|
75
|
+
* - Spanish (es) mapped to 'es-MX'
|
|
76
|
+
* - Turkish (tr) mapped to 'tr-TR'
|
|
77
|
+
*
|
|
78
|
+
* @example
|
|
79
|
+
* ```ts
|
|
80
|
+
* const languageCode = 'en' as AVAILABLE_LANGUAGE_CODES;
|
|
81
|
+
* const languageCountryCode = LANGUAGE_CODES_MAPPER[languageCode];
|
|
82
|
+
* console.log(languageCountryCode); // 'en-US'
|
|
83
|
+
* ```
|
|
84
|
+
*/
|
|
85
|
+
export declare const LANGUAGE_CODES_MAPPER: Record<AVAILABLE_LANGUAGE_CODES, LANGUAGE_COUNTRY_CODES>;
|
|
86
|
+
/**
|
|
87
|
+
* Available country keys for the HortiView platform
|
|
88
|
+
* @description
|
|
89
|
+
* It is a constant array of the available country keys in ISO 3166-1 alpha-3 format (3-digit).
|
|
90
|
+
* The available country keys are:
|
|
91
|
+
*
|
|
92
|
+
* - Spain (esp)
|
|
93
|
+
* - Mexico (mex)
|
|
94
|
+
* - Turkey (tur)
|
|
95
|
+
*/
|
|
96
|
+
export declare const AVAILABLE_COUNTRY_KEYS: string[];
|
package/dist/types/Languages.js
CHANGED
|
@@ -1,7 +1,24 @@
|
|
|
1
|
-
const e = {
|
|
1
|
+
const A = "bb8077e3-ad50-4c1d-8b17-b768b1c9f041", e = "bb8077e3-ad50-4c1d-8b17-b768b1c9f055", b = "bb8077e3-ad50-4c1d-8b17-b768b1c9f149", c = "bb8077e3-ad50-4c1d-8b17-b768b1c9f166", E = {
|
|
2
|
+
en: A,
|
|
3
|
+
es: b,
|
|
4
|
+
tr: c
|
|
5
|
+
}, _ = [
|
|
6
|
+
"en",
|
|
7
|
+
"es",
|
|
8
|
+
"tr"
|
|
9
|
+
// 'de' currently not supported
|
|
10
|
+
], t = {
|
|
2
11
|
en: "en-US",
|
|
3
|
-
es: "es-MX"
|
|
4
|
-
|
|
12
|
+
es: "es-MX",
|
|
13
|
+
tr: "tr-TR"
|
|
14
|
+
}, G = ["esp", "mex", "tur"];
|
|
5
15
|
export {
|
|
6
|
-
|
|
16
|
+
G as AVAILABLE_COUNTRY_KEYS,
|
|
17
|
+
_ as AVAILABLE_LOCALES,
|
|
18
|
+
A as ENGLISH_LANGUAGE_ID,
|
|
19
|
+
e as GERMAN_LANGUAGE_ID,
|
|
20
|
+
t as LANGUAGE_CODES_MAPPER,
|
|
21
|
+
E as LANGUAGE_ID_MAPPER,
|
|
22
|
+
b as SPANISH_LANGUAGE_ID,
|
|
23
|
+
c as TURKISH_LANGUAGE_ID
|
|
7
24
|
};
|
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": "0.0.
|
|
4
|
+
"version": "0.0.11881",
|
|
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>",
|