@hortiview/shared-components 0.0.6332 → 0.0.6359
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/dist/assets/BlockView.css +1 -1
- package/dist/assets/FormSelect.css +1 -1
- package/dist/components/AlertBanner/AlertBanner.test.js +1 -1
- package/dist/components/BaseView/BaseView.test.js +1 -1
- package/dist/components/BasicHeading/BasicHeading.test.js +1 -1
- package/dist/components/BlockView/BlockView.js +47 -47
- package/dist/components/BlockView/BlockView.test.js +2 -2
- package/dist/components/ContextMenu/ContextMenu.test.js +1 -1
- package/dist/components/DeleteModal/DeleteModal.test.js +1 -1
- package/dist/components/Disclaimer/Disclaimer.test.js +1 -1
- package/dist/components/EmptyView/EmptyView.test.js +1 -1
- package/dist/components/FormComponents/FormCheckBox/FormCheckBox.test.js +1 -1
- package/dist/components/FormComponents/FormDatePicker/FormDatePicker.test.js +1 -1
- package/dist/components/FormComponents/FormRadio/FormRadio.test.js +1 -1
- package/dist/components/FormComponents/FormSelect/FormSelect.d.ts +1 -1
- package/dist/components/FormComponents/FormSelect/FormSelect.js +1482 -85
- package/dist/components/FormComponents/FormSelect/FormSelect.test.js +3049 -40
- package/dist/components/FormComponents/FormSelect/SelectTooltipText.d.ts +18 -0
- package/dist/components/FormComponents/FormSelect/SelectTooltipText.js +9 -0
- package/dist/components/FormComponents/FormSlider/FormSlider.test.js +1 -1
- package/dist/components/FormComponents/FormText/FormText.test.js +1 -1
- package/dist/components/GenericTable/GenericTable.test.js +1 -1
- package/dist/components/HashTabView/HashTabView.test.js +1 -1
- package/dist/components/HeaderFilter/HeaderFilter.test.js +1 -1
- package/dist/components/Iconify/Iconify.js +2 -2
- package/dist/components/Iconify/Iconify.test.js +1 -1
- package/dist/components/InfoGroup/InfoGroup.test.js +1 -1
- package/dist/components/ListArea/ListArea.test.js +1 -1
- package/dist/components/LoadingSpinner/Big/BigLoadingSpinner.test.js +1 -1
- package/dist/components/LoadingSpinner/Default/LoadingSpinner.test.js +1 -1
- package/dist/components/Scrollbar/scrollbar.test.js +1 -1
- package/dist/components/SearchBar/SearchBar.test.js +1 -1
- package/dist/components/VerticalDivider/VerticalDivider.test.js +1 -1
- package/dist/{react.esm-D9-uytwS.js → react.esm-BBemCHUU.js} +1 -0
- package/dist/types/internal/ChangeValueType.d.ts +3 -0
- package/dist/types/internal/ChangeValueType.js +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ChangeValueType } from '../../../types/internal/ChangeValueType';
|
|
2
|
+
type TooltipTextProps = {
|
|
3
|
+
/**
|
|
4
|
+
* the selected option(s) of the select
|
|
5
|
+
*/
|
|
6
|
+
value: ChangeValueType | ChangeValueType[] | undefined;
|
|
7
|
+
textKey: string;
|
|
8
|
+
valueKey: string;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* creates the tooltip text for the select
|
|
12
|
+
* no option selected: undefined
|
|
13
|
+
* single select: the text of the selected option
|
|
14
|
+
* multi select: a list of the selected options
|
|
15
|
+
* @returns the tooltip text as string or JSX.Element
|
|
16
|
+
*/
|
|
17
|
+
export declare const SelectTooltipText: ({ value, textKey, valueKey }: TooltipTextProps) => string | import("react/jsx-runtime").JSX.Element | undefined;
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
+
import { Group as n, TypoBody as p } from "@element/react-components";
|
|
3
|
+
const m = ({ value: r, textKey: i, valueKey: t }) => {
|
|
4
|
+
if (!(!r || r.length === 0))
|
|
5
|
+
return Array.isArray(r) ? /* @__PURE__ */ e(n, { direction: "vertical", gap: "dense", children: r?.map((o) => /* @__PURE__ */ e(p, { level: 2, children: o[i] }, o[t])) }) : r?.[i];
|
|
6
|
+
};
|
|
7
|
+
export {
|
|
8
|
+
m as SelectTooltipText
|
|
9
|
+
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as s } from "react/jsx-runtime";
|
|
2
|
-
import { r as a, s as n } from "../../../react.esm-
|
|
2
|
+
import { r as a, s as n } from "../../../react.esm-BBemCHUU.js";
|
|
3
3
|
import { FormSlider as l } from "./FormSlider.js";
|
|
4
4
|
import { v as e, d as m, t as i, g as r } from "../../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
const o = e.fn();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as n } from "react/jsx-runtime";
|
|
2
|
-
import { r as s, s as r, f as d } from "../../../react.esm-
|
|
2
|
+
import { r as s, s as r, f as d } from "../../../react.esm-BBemCHUU.js";
|
|
3
3
|
import { FormText as o } from "./FormText.js";
|
|
4
4
|
import { v as a, d as i, t as l, g as e } from "../../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
const m = a.fn();
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as a, jsxs as u } from "react/jsx-runtime";
|
|
2
|
-
import { r as i, s as e } from "../../react.esm-
|
|
2
|
+
import { r as i, s as e } from "../../react.esm-BBemCHUU.js";
|
|
3
3
|
import { GenericTable as c } from "./GenericTable.js";
|
|
4
4
|
import { d as B, t as d, g as t, v as r } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
B("GenericTable Test", () => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as n, Fragment as o } from "react/jsx-runtime";
|
|
2
|
-
import { r as a, s as e, f as r } from "../../react.esm-
|
|
2
|
+
import { r as a, s as e, f as r } from "../../react.esm-BBemCHUU.js";
|
|
3
3
|
import { HashTabView as c } from "./HashTabView.js";
|
|
4
4
|
import { d as h, t as l, g as t } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
const m = [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as n } from "react/jsx-runtime";
|
|
2
|
-
import { r as i, s as t, f as T } from "../../react.esm-
|
|
2
|
+
import { r as i, s as t, f as T } from "../../react.esm-BBemCHUU.js";
|
|
3
3
|
import { HeaderFilter as s } from "./HeaderFilter.js";
|
|
4
4
|
import { d as c, t as o, v as l, g as e } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
c("HeaderFilter-Test", () => {
|
|
@@ -53,10 +53,10 @@ const j = (t, l) => {
|
|
|
53
53
|
}, Symbol.toStringTag, { value: "Module" })), _ = (t) => /* @__PURE__ */ e.createElement("svg", { width: 36, height: 41, viewBox: "0 0 36 41", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.5111 3.98804C10.1673 1.646 7.09116 0.5 3.973 0.5C3.15073 0.5 2.32651 0.579834 1.51108 0.738281C1.16538 0.80542 0.82163 0.886719 0.48081 0.981934C-0.691065 5.17993 0.266943 9.79004 3.4896 13.012C5.82554 15.3479 8.89097 16.4919 11.9994 16.498V23.572C9.7269 21.54 6.8812 20.5 3.973 20.5C3.17417 20.5 2.37241 20.5757 1.57847 20.7256C1.2103 20.7952 0.844091 20.8806 0.48081 20.9819C-0.691065 25.1799 0.266943 29.79 3.4896 33.012C5.82554 35.3479 8.89097 36.4919 11.9994 36.498V40.5H15.9994V26.498C19.1097 26.4919 22.1732 25.3479 24.5111 23.012C27.7328 19.79 28.6908 15.1799 27.5189 10.9819C26.3734 10.6621 25.1957 10.5 24.0248 10.5C21.1195 10.5 18.2728 11.54 15.9994 13.572V12.5L15.9789 12.3979C15.9476 9.32397 14.8216 6.302 12.5111 3.98804ZM3.99546 4.5C3.99741 6.646 4.80308 8.66797 6.31772 10.1841C7.80503 11.6721 9.82358 12.4919 11.9994 12.5L12.0033 12.4819C11.9974 10.3462 11.1966 8.33569 9.69175 6.8269C9.68882 6.82397 9.68589 6.82104 9.68296 6.81812C8.1937 5.32788 6.17319 4.5061 3.99546 4.5ZM18.3177 16.8181C16.8148 18.3201 16.015 20.3201 15.9994 22.446V22.5C18.1771 22.4919 20.1937 21.6721 21.683 20.1841C21.8724 19.9946 22.0501 19.7971 22.2171 19.5925C23.3861 18.1604 24.0033 16.3777 24.0052 14.5C21.8255 14.5061 19.807 15.3279 18.3177 16.8181ZM6.31772 30.1841C7.80503 31.6721 9.82358 32.4919 11.9994 32.5V32.446C11.9828 30.3242 11.1878 28.3279 9.69175 26.8269C9.68882 26.824 9.68589 26.821 9.68296 26.8181C8.1937 25.3279 6.17319 24.5061 3.99546 24.5C3.99741 26.646 4.80308 28.668 6.31772 30.1841Z", fill: "currentColor" }), /* @__PURE__ */ e.createElement("path", { d: "M35.4134 27.9153L32.5853 25.0874L25.9994 31.6714L23.4154 29.0874L20.5873 31.9153L25.9994 37.3293L35.4134 27.9153Z", fill: "currentColor" })), $ = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
54
54
|
__proto__: null,
|
|
55
55
|
default: _
|
|
56
|
-
}, Symbol.toStringTag, { value: "Module" })), E = (t) => /* @__PURE__ */ e.createElement("svg", { width: 36, height: 36, viewBox: "0 0 36 36", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M12.2377 10.263C11.1022 9.126 10.4977 7.6095 10.4962 6C12.1297 6.0045 13.6447 6.621 14.7622 7.7385C15.8947 8.871 16.4977 10.3815 16.5022 11.9865C16.5022 11.991 16.4992 11.9955 16.4992 12C14.8672 11.994 13.3537 11.379 12.2377 10.263ZM19.4992 19.4595C19.5112 17.865 20.1112 16.365 21.2377 15.2385C22.3552 14.121 23.8687 13.5045 25.5037 13.5C25.5022 15.1095 24.8977 16.626 23.7622 17.763C22.6447 18.879 21.1327 19.494 19.4992 19.5V19.4595ZM16.4992 27C14.8672 26.994 13.3537 26.379 12.2377 25.263C11.1022 24.126 10.4977 22.6095 10.4962 21C12.1297 21.0045 13.6447 21.621 14.7622 22.7385C15.8887 23.865 16.4872 25.365 16.4992 26.9595V27ZM16.4992 20.304C14.7952 18.78 12.6607 18 10.4797 18C9.60218 18 8.72018 18.1215 7.86068 18.3615C6.98168 21.51 7.70018 24.9675 10.1167 27.384C11.8687 29.136 14.1682 29.994 16.4992 29.9985V33H19.4992V28.5V22.4985C21.8317 22.494 24.1297 21.636 25.8832 19.884C28.2997 17.4675 29.0182 14.01 28.1392 10.8615C27.2797 10.6215 26.3962 10.5 25.5187 10.5C23.3392 10.5 21.2047 11.28 19.4992 12.804V12C19.4992 11.9745 19.4857 11.9505 19.4842 11.9235C19.4602 9.618 18.6157 7.3515 16.8832 5.616C15.1252 3.8595 12.8182 3 10.4797 3C9.60218 3 8.72018 3.1215 7.86068 3.3615C6.98168 6.51 7.70018 9.9675 10.1167 12.384C11.8687 14.136 14.1682 14.994 16.4992 14.9985V16.5V20.304Z", fill: "currentColor"
|
|
56
|
+
}, Symbol.toStringTag, { value: "Module" })), E = (t) => /* @__PURE__ */ e.createElement("svg", { width: 36, height: 36, viewBox: "0 0 36 36", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M12.2377 10.263C11.1022 9.126 10.4977 7.6095 10.4962 6C12.1297 6.0045 13.6447 6.621 14.7622 7.7385C15.8947 8.871 16.4977 10.3815 16.5022 11.9865C16.5022 11.991 16.4992 11.9955 16.4992 12C14.8672 11.994 13.3537 11.379 12.2377 10.263ZM19.4992 19.4595C19.5112 17.865 20.1112 16.365 21.2377 15.2385C22.3552 14.121 23.8687 13.5045 25.5037 13.5C25.5022 15.1095 24.8977 16.626 23.7622 17.763C22.6447 18.879 21.1327 19.494 19.4992 19.5V19.4595ZM16.4992 27C14.8672 26.994 13.3537 26.379 12.2377 25.263C11.1022 24.126 10.4977 22.6095 10.4962 21C12.1297 21.0045 13.6447 21.621 14.7622 22.7385C15.8887 23.865 16.4872 25.365 16.4992 26.9595V27ZM16.4992 20.304C14.7952 18.78 12.6607 18 10.4797 18C9.60218 18 8.72018 18.1215 7.86068 18.3615C6.98168 21.51 7.70018 24.9675 10.1167 27.384C11.8687 29.136 14.1682 29.994 16.4992 29.9985V33H19.4992V28.5V22.4985C21.8317 22.494 24.1297 21.636 25.8832 19.884C28.2997 17.4675 29.0182 14.01 28.1392 10.8615C27.2797 10.6215 26.3962 10.5 25.5187 10.5C23.3392 10.5 21.2047 11.28 19.4992 12.804V12C19.4992 11.9745 19.4857 11.9505 19.4842 11.9235C19.4602 9.618 18.6157 7.3515 16.8832 5.616C15.1252 3.8595 12.8182 3 10.4797 3C9.60218 3 8.72018 3.1215 7.86068 3.3615C6.98168 6.51 7.70018 9.9675 10.1167 12.384C11.8687 14.136 14.1682 14.994 16.4992 14.9985V16.5V20.304Z", fill: "currentColor" })), q = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
57
57
|
__proto__: null,
|
|
58
58
|
default: E
|
|
59
|
-
}, Symbol.toStringTag, { value: "Module" })), k = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M4 11H9V5H4V11ZM4 18H9V12H4V18ZM10 18H15V12H10V18ZM16 18H21V12H16V18ZM10 11H15V5H10V11ZM16 5V11H21V5H16Z", fill: "currentColor"
|
|
59
|
+
}, Symbol.toStringTag, { value: "Module" })), k = (t) => /* @__PURE__ */ e.createElement("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M4 11H9V5H4V11ZM4 18H9V12H4V18ZM10 18H15V12H10V18ZM16 18H21V12H16V18ZM10 11H15V5H10V11ZM16 5V11H21V5H16Z", fill: "currentColor" })), J = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
60
60
|
__proto__: null,
|
|
61
61
|
default: k
|
|
62
62
|
}, Symbol.toStringTag, { value: "Module" })), b = (t) => /* @__PURE__ */ e.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: 22, height: 22, viewBox: "0 0 22 22", fill: "none", ...t }, /* @__PURE__ */ e.createElement("path", { d: "M11.769 1C12.4831 1 13.1678 1.28365 13.6727 1.78856C14.1776 2.29347 14.4613 2.97828 14.4613 3.69233C14.4613 4.40638 14.1776 5.09118 13.6727 5.5961C13.1678 6.10101 12.4831 6.38466 11.769 6.38466H1", stroke: "black", strokeWidth: 1.53845, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M18.3073 16.3847C19.0213 16.3847 19.7061 16.101 20.211 15.5961C20.7159 15.0912 20.9996 14.4064 20.9996 13.6923C20.9996 12.9783 20.7159 12.2935 20.211 11.7886C19.7061 11.2836 19.0213 11 18.3073 11H3.30762", stroke: "black", strokeWidth: 1.53845, strokeLinecap: "round", strokeLinejoin: "round" }), /* @__PURE__ */ e.createElement("path", { d: "M11.385 20.9999C12.0991 20.9999 12.7839 20.7162 13.2888 20.2113C13.7937 19.7063 14.0773 19.0216 14.0773 18.3076C14.0773 17.5936 13.7937 16.9088 13.2888 16.4039C12.7839 15.8989 12.0991 15.6152 11.385 15.6152H2.53906", stroke: "black", strokeWidth: 1.53845, strokeLinecap: "round", strokeLinejoin: "round" })), K = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as n } from "react/jsx-runtime";
|
|
2
2
|
import { Iconify as c } from "./Iconify.js";
|
|
3
3
|
import { AvailableCustomIcons as l } from "../../enums/AvailableCustomIcons.js";
|
|
4
|
-
import { r, w as s, s as i } from "../../react.esm-
|
|
4
|
+
import { r, w as s, s as i } from "../../react.esm-BBemCHUU.js";
|
|
5
5
|
import { d as f, t as a, g as o } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
6
6
|
f("Iconify Test", async () => {
|
|
7
7
|
const m = Object.keys(l).filter((e) => isNaN(Number(e)));
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as o } from "react/jsx-runtime";
|
|
2
|
-
import { r as l, s as t } from "../../react.esm-
|
|
2
|
+
import { r as l, s as t } from "../../react.esm-BBemCHUU.js";
|
|
3
3
|
import { InfoGroup as r } from "./InfoGroup.js";
|
|
4
4
|
import { d as s, t as i, g as e } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
s("InfoGroup Test", () => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as r, Fragment as i } from "react/jsx-runtime";
|
|
2
2
|
import { TypoButton as p } from "@element/react-components";
|
|
3
|
-
import { r as s, s as a, f as u } from "../../react.esm-
|
|
3
|
+
import { r as s, s as a, f as u } from "../../react.esm-BBemCHUU.js";
|
|
4
4
|
import { ListArea as c } from "./ListArea.js";
|
|
5
5
|
import { g as h } from "../../ListAreaService-zxVNvD59.js";
|
|
6
6
|
import { d as m, t as n, g as t } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx as o } from "react/jsx-runtime";
|
|
2
2
|
import { s as r, B as n } from "../../../BigLoadingSpinner-Df2k3xOD.js";
|
|
3
|
-
import { r as i, s as e } from "../../../react.esm-
|
|
3
|
+
import { r as i, s as e } from "../../../react.esm-BBemCHUU.js";
|
|
4
4
|
import { d as g, t as s, g as t } from "../../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
g("BigLoadingSpinner Test", () => {
|
|
6
6
|
s("render BigLoadingSpinner with custom loading text", () => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
-
import { r as o, s as e } from "../../../react.esm-
|
|
2
|
+
import { r as o, s as e } from "../../../react.esm-BBemCHUU.js";
|
|
3
3
|
import { LoadingSpinner as r } from "./LoadingSpinner.js";
|
|
4
4
|
import { d as a, t as i, g as n } from "../../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
a("LoadingSpinner Test", () => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as s } from "react/jsx-runtime";
|
|
2
|
-
import { r as e, s as t } from "../../react.esm-
|
|
2
|
+
import { r as e, s as t } from "../../react.esm-BBemCHUU.js";
|
|
3
3
|
import { ScrollbarY as d, ScrollbarX as l } from "./Scrollbar.js";
|
|
4
4
|
import { d as c, t as a, g as o } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
c("Scrollbar", () => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as a } from "react/jsx-runtime";
|
|
2
|
-
import { r, s as t, f as h, a as l } from "../../react.esm-
|
|
2
|
+
import { r, s as t, f as h, a as l } from "../../react.esm-BBemCHUU.js";
|
|
3
3
|
import { SearchBar as s } from "./SearchBar.js";
|
|
4
4
|
import { d as m, t as o, v as n, g as e } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
m("SearchBar Test", () => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
import { r } from "../../react.esm-
|
|
2
|
+
import { r } from "../../react.esm-BBemCHUU.js";
|
|
3
3
|
import { VerticalDivider as s } from "./VerticalDivider.js";
|
|
4
4
|
import { d as o, t as l, g as i } from "../../vi.JYQecGiw-BbUbJcT8.js";
|
|
5
5
|
o("VerticalDivider Test", () => {
|
|
@@ -12742,6 +12742,7 @@ if ((typeof process > "u" || !process.env?.RTL_SKIP_AUTO_CLEANUP) && (typeof aft
|
|
|
12742
12742
|
export {
|
|
12743
12743
|
Ft as a,
|
|
12744
12744
|
re as f,
|
|
12745
|
+
Y as g,
|
|
12745
12746
|
X1 as r,
|
|
12746
12747
|
K1 as s,
|
|
12747
12748
|
ix as w
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
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.6359",
|
|
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>",
|
|
@@ -28,8 +28,6 @@
|
|
|
28
28
|
"build-storybook": "storybook build"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@element/react-components": "^5.42.4",
|
|
32
|
-
"@element/themes": "^5.44.4",
|
|
33
31
|
"lodash": "^4.17.21",
|
|
34
32
|
"react": "^18.3.1",
|
|
35
33
|
"react-dom": "^18.3.1",
|
|
@@ -49,6 +47,7 @@
|
|
|
49
47
|
"@storybook/test": "^8.1.6",
|
|
50
48
|
"@testing-library/jest-dom": "^6.4.2",
|
|
51
49
|
"@testing-library/react": "^14.2.1",
|
|
50
|
+
"@testing-library/user-event": "^14.5.2",
|
|
52
51
|
"@types/lodash": "^4.17.0",
|
|
53
52
|
"@types/node": "^20.11.26",
|
|
54
53
|
"@types/react": "^18.2.64",
|
|
@@ -68,6 +67,7 @@
|
|
|
68
67
|
"react": "^18.3.1",
|
|
69
68
|
"react-dom": "^18.3.1",
|
|
70
69
|
"react-hook-form": "^7.51.2",
|
|
70
|
+
"react-tooltip": "^5.26.4",
|
|
71
71
|
"storybook": "^8.1.6",
|
|
72
72
|
"typescript": "^5.2.2",
|
|
73
73
|
"vite": "^5.1.6",
|