@hortiview/shared-components 0.0.7373 → 0.0.7428
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/HashTabView.module-DUekkiTC.js +13 -0
- package/dist/assets/HashTabView.css +1 -1
- package/dist/assets/genericTable.css +1 -1
- package/dist/assets/infoGroup.css +1 -1
- package/dist/components/Filter/Filter.js +2 -2
- package/dist/components/GenericTable/GenericTable.js +2 -2
- package/dist/components/HashTabView/HashTabView.js +1 -1
- package/dist/components/InfoGroup/InfoGroup.d.ts +10 -6
- package/dist/components/InfoGroup/InfoGroup.js +51 -52
- package/dist/components/InfoGroup/InfoGroup.test.js +2 -2
- package/dist/enums/ThemeColor.d.ts +15 -0
- package/dist/enums/ThemeColor.js +4 -0
- package/dist/infoGroup.module-Cxw88dfC.js +12 -0
- package/dist/main.d.ts +1 -1
- package/dist/main.js +16 -14
- package/package.json +11 -11
- package/dist/HashTabView.module-CJX4gxTu.js +0 -13
- package/dist/infoGroup.module-B3E1gCGi.js +0 -14
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._dividerContainer_4c1hq_1{width:100%;padding:1rem 0}._fullWidth_4c1hq_6{width:100%}._centerDefaultComponent_4c1hq_10{margin:auto}._verticalDivider_4c1hq_14{display:flex;align-self:stretch;height:auto;width:1px;background-color:var(--lmnt-theme-on-surface-stroke, rgba(0, 0, 0, .12))}._mainGroup_4c1hq_22{padding:1rem;border:.0775rem solid var(--lmnt-on-surface-stroke, rgba(0, 0, 0, .12));border-radius:.5rem}._textAlignRight_4c1hq_28{text-align:right}
|
|
@@ -21,9 +21,9 @@ import "../../contextMenu.module-DNQ8d9Aj.js";
|
|
|
21
21
|
import "../../deleteModal.module-Ds3MDzdl.js";
|
|
22
22
|
import "../../disclaimer.module-BZydt-Q_.js";
|
|
23
23
|
import "../../genericCard.module-DzqcufuN.js";
|
|
24
|
-
import "../../HashTabView.module-
|
|
24
|
+
import "../../HashTabView.module-DUekkiTC.js";
|
|
25
25
|
import "../../HeaderFilter.module-DiBmulr5.js";
|
|
26
|
-
import "../../infoGroup.module-
|
|
26
|
+
import "../../infoGroup.module-Cxw88dfC.js";
|
|
27
27
|
import "../../bigLoadingSpinner.module-GgbFol8k.js";
|
|
28
28
|
import "../../loadingSpinner.module-CLtqSMWA.js";
|
|
29
29
|
import "../Scrollbar/Scrollbar.js";
|
|
@@ -19,9 +19,9 @@ import "lodash";
|
|
|
19
19
|
import "../../contextMenu.module-DNQ8d9Aj.js";
|
|
20
20
|
import "../../deleteModal.module-Ds3MDzdl.js";
|
|
21
21
|
import "../../disclaimer.module-BZydt-Q_.js";
|
|
22
|
-
import "../../HashTabView.module-
|
|
22
|
+
import "../../HashTabView.module-DUekkiTC.js";
|
|
23
23
|
import "../../HeaderFilter.module-DiBmulr5.js";
|
|
24
|
-
import "../../infoGroup.module-
|
|
24
|
+
import "../../infoGroup.module-Cxw88dfC.js";
|
|
25
25
|
import "../../bigLoadingSpinner.module-GgbFol8k.js";
|
|
26
26
|
import "../../loadingSpinner.module-CLtqSMWA.js";
|
|
27
27
|
import "../Scrollbar/Scrollbar.js";
|
|
@@ -2,7 +2,7 @@ import { jsx as r, jsxs as d, Fragment as I } from "react/jsx-runtime";
|
|
|
2
2
|
import { Elevation as N, Group as c, TabBar as b, Tab as k, Padding as x } from "@element/react-components";
|
|
3
3
|
import { useState as y, useEffect as $ } from "react";
|
|
4
4
|
import { u as w } from "../../useBreakpoints-BNeVhjjZ.js";
|
|
5
|
-
import { s as a } from "../../HashTabView.module-
|
|
5
|
+
import { s as a } from "../../HashTabView.module-DUekkiTC.js";
|
|
6
6
|
const h = (n, t) => !t || !n ? 0 : n.findIndex((i) => i.hash === t.replace("#", "")) ?? 0, D = ({
|
|
7
7
|
tabs: n,
|
|
8
8
|
hasHash: t = !0,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
|
+
import { ThemeColor } from '../../enums/ThemeColor';
|
|
2
3
|
/**
|
|
3
4
|
* FieldItem type that defines the structure of the fields to render in the InfoGroup component
|
|
4
5
|
*/
|
|
@@ -14,22 +15,25 @@ export type FieldItem = {
|
|
|
14
15
|
/**
|
|
15
16
|
* ThemeColor for the Textfield (default: none)
|
|
16
17
|
*/
|
|
17
|
-
themeColor?:
|
|
18
|
-
/**
|
|
19
|
-
* Variant of the component (default: default) - embedded will render the component without any padding or border
|
|
20
|
-
*/
|
|
21
|
-
variant?: 'default' | 'embedded';
|
|
18
|
+
themeColor?: keyof typeof ThemeColor;
|
|
22
19
|
/**
|
|
23
20
|
* Optional component to render instead of Textfields
|
|
24
21
|
*/
|
|
25
22
|
component?: ReactNode;
|
|
23
|
+
/**
|
|
24
|
+
* Variant of the component (default: default)
|
|
25
|
+
* default: will render the plain component without the label
|
|
26
|
+
* embedded: will render the component with the label
|
|
27
|
+
*/
|
|
28
|
+
componentVariant?: 'default' | 'embedded';
|
|
26
29
|
};
|
|
27
30
|
/**
|
|
28
31
|
* Props for the InfoGroup component that defines the fields to render
|
|
29
32
|
*/
|
|
30
33
|
interface InfoGroupProps {
|
|
31
34
|
/**
|
|
32
|
-
* Array of fields to render in the InfoGroup
|
|
35
|
+
* Array of fields to render in the InfoGroup.
|
|
36
|
+
* Using a matrix [][] will render multiple rows of fields in a vertical layout
|
|
33
37
|
*/
|
|
34
38
|
fields: FieldItem[] | FieldItem[][];
|
|
35
39
|
/**
|
|
@@ -1,67 +1,66 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { Divider as
|
|
3
|
-
import { Fragment as
|
|
4
|
-
import { u
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
const
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}, m = ({ fields: t, bold: n }) => {
|
|
14
|
-
const { isDesktop: l } = f();
|
|
15
|
-
return /* @__PURE__ */ e(
|
|
16
|
-
c,
|
|
1
|
+
import { jsxs as d, Fragment as p, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { Divider as h, Group as s, TypoCaption as g, TypoSubtitle as v } from "@element/react-components";
|
|
3
|
+
import { useMemo as y, Fragment as A } from "react";
|
|
4
|
+
import { u } from "../../useBreakpoints-BNeVhjjZ.js";
|
|
5
|
+
import { s as l } from "../../infoGroup.module-Cxw88dfC.js";
|
|
6
|
+
const w = ({ fields: r, bold: i }) => {
|
|
7
|
+
const { isDesktop: a } = u(), e = !!r.length && Array.isArray(r.at(0)), n = y(() => e && a ? r.map((o, c) => /* @__PURE__ */ d(p, { children: [
|
|
8
|
+
c != 0 && /* @__PURE__ */ t("span", { "data-testid": "test-divider", className: l.dividerContainer, children: /* @__PURE__ */ t(h, {}) }),
|
|
9
|
+
/* @__PURE__ */ t(m, { fields: o, bold: i })
|
|
10
|
+
] })) : /* @__PURE__ */ t(m, { fields: r.flat(), bold: i }), [a, e, r, i]);
|
|
11
|
+
return /* @__PURE__ */ t(
|
|
12
|
+
s,
|
|
17
13
|
{
|
|
18
|
-
|
|
19
|
-
|
|
14
|
+
"data-testid": "infoGroup",
|
|
15
|
+
direction: "vertical",
|
|
16
|
+
fullWidth: !0,
|
|
17
|
+
className: l.mainGroup,
|
|
18
|
+
gap: "none",
|
|
19
|
+
children: n
|
|
20
|
+
}
|
|
21
|
+
);
|
|
22
|
+
}, m = ({ fields: r, bold: i }) => {
|
|
23
|
+
const { isDesktop: a } = u();
|
|
24
|
+
return /* @__PURE__ */ t(
|
|
25
|
+
s,
|
|
26
|
+
{
|
|
27
|
+
"data-testid": "singleRow",
|
|
20
28
|
fullWidth: !0,
|
|
21
|
-
|
|
22
|
-
secondaryAlign: "
|
|
23
|
-
children:
|
|
24
|
-
const o =
|
|
25
|
-
return /* @__PURE__ */
|
|
26
|
-
|
|
27
|
-
/* @__PURE__ */
|
|
28
|
-
] }, `${
|
|
29
|
+
direction: a ? "horizontal" : "vertical",
|
|
30
|
+
secondaryAlign: "start",
|
|
31
|
+
children: r.map((e, n) => {
|
|
32
|
+
const o = a ? /* @__PURE__ */ t("div", { className: l.verticalDivider }) : /* @__PURE__ */ t(h, {});
|
|
33
|
+
return /* @__PURE__ */ d(A, { children: [
|
|
34
|
+
n != 0 && o,
|
|
35
|
+
/* @__PURE__ */ t(C, { field: e, bold: i, variant: e.componentVariant })
|
|
36
|
+
] }, `${e.label ?? "label"}_${n}`);
|
|
29
37
|
})
|
|
30
38
|
}
|
|
31
39
|
);
|
|
32
|
-
},
|
|
33
|
-
field:
|
|
34
|
-
bold:
|
|
35
|
-
variant:
|
|
40
|
+
}, C = ({
|
|
41
|
+
field: r,
|
|
42
|
+
bold: i,
|
|
43
|
+
variant: a = "default"
|
|
36
44
|
}) => {
|
|
37
|
-
const { component:
|
|
38
|
-
return
|
|
39
|
-
|
|
45
|
+
const { isDesktop: e } = u(), { component: n, value: o, label: c, themeColor: f } = r;
|
|
46
|
+
return n && a === "default" ? /* @__PURE__ */ t(s, { fullWidth: !0, primaryAlign: "center", className: l.centerDefaultComponent, children: n }) : /* @__PURE__ */ d(
|
|
47
|
+
s,
|
|
40
48
|
{
|
|
41
|
-
"data-testid": "infoGroupItem",
|
|
42
|
-
direction: "vertical",
|
|
43
|
-
primaryAlign: "center",
|
|
44
|
-
secondaryAlign: "space-between",
|
|
45
49
|
fullWidth: !0,
|
|
46
|
-
|
|
50
|
+
"data-testid": "infoGroupItem",
|
|
51
|
+
direction: e ? "vertical" : "horizontal",
|
|
52
|
+
gap: "none",
|
|
53
|
+
primaryAlign: e ? "start" : "space-between",
|
|
54
|
+
secondaryAlign: e ? "baseline" : "center",
|
|
55
|
+
className: e ? "" : l.textAlignRight,
|
|
47
56
|
children: [
|
|
48
|
-
/* @__PURE__ */
|
|
49
|
-
|
|
50
|
-
g,
|
|
51
|
-
{
|
|
52
|
-
level: 1,
|
|
53
|
-
"data-testid": "infoGroupValue",
|
|
54
|
-
themeColor: p,
|
|
55
|
-
bold: n,
|
|
56
|
-
className: i.valueText,
|
|
57
|
-
children: a
|
|
58
|
-
}
|
|
59
|
-
) : /* @__PURE__ */ e(h, { children: r })
|
|
57
|
+
/* @__PURE__ */ t(g, { themeColor: "text-hint-on-light", children: c }),
|
|
58
|
+
n ? /* @__PURE__ */ t(p, { children: n }) : /* @__PURE__ */ t(v, { level: 1, "data-testid": "infoGroupValue", themeColor: f, bold: i, children: o })
|
|
60
59
|
]
|
|
61
60
|
}
|
|
62
61
|
);
|
|
63
62
|
};
|
|
64
63
|
export {
|
|
65
|
-
|
|
66
|
-
|
|
64
|
+
C as Cell,
|
|
65
|
+
w as InfoGroup
|
|
67
66
|
};
|
|
@@ -24,12 +24,12 @@ s("InfoGroup Test", () => {
|
|
|
24
24
|
]
|
|
25
25
|
] }));
|
|
26
26
|
const n = t.getAllByTestId("infoGroupValue");
|
|
27
|
-
e(n.length).toBe(4), e(t.getByText("organization.create.registration-number")).toBeInTheDocument(), e(n[0]).toHaveTextContent("123"), e(t.getByText("myOrganizations.label-primary-contact")).toBeInTheDocument(), e(n[1]).toHaveTextContent("User A"), e(t.getByTestId("
|
|
27
|
+
e(n.length).toBe(4), e(t.getByText("organization.create.registration-number")).toBeInTheDocument(), e(n[0]).toHaveTextContent("123"), e(t.getByText("myOrganizations.label-primary-contact")).toBeInTheDocument(), e(n[1]).toHaveTextContent("User A"), e(t.getByTestId("infoGroup")).toBeInTheDocument(), e(t.getByTestId("singleRow")).toBeInTheDocument(), e(t.getAllByTestId("infoGroupItem").length).toBe(4), e(t.getByText("myOrganizations.label-contact")).toBeInTheDocument(), e(n[2]).toHaveTextContent("User B"), e(t.getByText("organization.something-else")).toBeInTheDocument(), e(n[3]).toHaveTextContent("some");
|
|
28
28
|
}), i("render Single InfoGroup with component", () => {
|
|
29
29
|
l(/* @__PURE__ */ o(r, { fields: [
|
|
30
30
|
{ label: "labelSouldntBeRendered", component: /* @__PURE__ */ o("div", { children: "Component" }) },
|
|
31
31
|
{ label: "myOrganizations.label-primary-contact", value: "User A" },
|
|
32
|
-
{ label: "componentWithLabel",
|
|
32
|
+
{ label: "componentWithLabel", componentVariant: "embedded", component: /* @__PURE__ */ o("div", { children: "Badge" }) }
|
|
33
33
|
] })), e(t.queryByText("labelSouldntBeRendered")).toBeNull(), e(t.getByText("Component")).toBeInTheDocument(), e(t.getByText("myOrganizations.label-primary-contact")).toBeInTheDocument(), e(t.getByText("User A")).toBeInTheDocument(), e(t.getByText("componentWithLabel")).toBeInTheDocument(), e(t.getByText("Badge")).toBeInTheDocument();
|
|
34
34
|
});
|
|
35
35
|
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare enum ThemeColor {
|
|
2
|
+
'primary' = 0,
|
|
3
|
+
'secondary' = 1,
|
|
4
|
+
'error' = 2,
|
|
5
|
+
'text-primary-on-background' = 3,
|
|
6
|
+
'text-secondary-on-background' = 4,
|
|
7
|
+
'text-hint-on-background' = 5,
|
|
8
|
+
'text-disabled-on-background' = 6,
|
|
9
|
+
'text-icon-on-background' = 7,
|
|
10
|
+
'text-primary-on-light' = 8,
|
|
11
|
+
'text-secondary-on-light' = 9,
|
|
12
|
+
'text-hint-on-light' = 10,
|
|
13
|
+
'text-disabled-on-light' = 11,
|
|
14
|
+
'text-icon-on-light' = 12
|
|
15
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
var n = /* @__PURE__ */ ((t) => (t[t.primary = 0] = "primary", t[t.secondary = 1] = "secondary", t[t.error = 2] = "error", t[t["text-primary-on-background"] = 3] = "text-primary-on-background", t[t["text-secondary-on-background"] = 4] = "text-secondary-on-background", t[t["text-hint-on-background"] = 5] = "text-hint-on-background", t[t["text-disabled-on-background"] = 6] = "text-disabled-on-background", t[t["text-icon-on-background"] = 7] = "text-icon-on-background", t[t["text-primary-on-light"] = 8] = "text-primary-on-light", t[t["text-secondary-on-light"] = 9] = "text-secondary-on-light", t[t["text-hint-on-light"] = 10] = "text-hint-on-light", t[t["text-disabled-on-light"] = 11] = "text-disabled-on-light", t[t["text-icon-on-light"] = 12] = "text-icon-on-light", t))(n || {});
|
|
2
|
+
export {
|
|
3
|
+
n as ThemeColor
|
|
4
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import "./assets/infoGroup.css";
|
|
2
|
+
const t = "_dividerContainer_4c1hq_1", i = "_fullWidth_4c1hq_6", e = "_centerDefaultComponent_4c1hq_10", n = "_verticalDivider_4c1hq_14", o = "_mainGroup_4c1hq_22", r = "_textAlignRight_4c1hq_28", _ = {
|
|
3
|
+
dividerContainer: t,
|
|
4
|
+
fullWidth: i,
|
|
5
|
+
centerDefaultComponent: e,
|
|
6
|
+
verticalDivider: n,
|
|
7
|
+
mainGroup: o,
|
|
8
|
+
textAlignRight: r
|
|
9
|
+
};
|
|
10
|
+
export {
|
|
11
|
+
_ as s
|
|
12
|
+
};
|
package/dist/main.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import './styles/main.css';
|
|
2
1
|
export { AlertBanner } from './components/AlertBanner/AlertBanner';
|
|
3
2
|
export { BaseView } from './components/BaseView/BaseView';
|
|
4
3
|
export { BasicHeading } from './components/BasicHeading/BasicHeading';
|
|
@@ -26,6 +25,7 @@ export { FormSelect } from './components/FormComponents/FormSelect/FormSelect';
|
|
|
26
25
|
export { FormSlider } from './components/FormComponents/FormSlider/FormSlider';
|
|
27
26
|
export { FormText } from './components/FormComponents/FormText/FormText';
|
|
28
27
|
export { AvailableCustomIcons } from './enums/AvailableCustomIcons';
|
|
28
|
+
export { ThemeColor } from './enums/ThemeColor';
|
|
29
29
|
export { useBreakpoints } from './hooks/useBreakpoints';
|
|
30
30
|
export { capitalizeFirstLetters } from './services/UtilService';
|
|
31
31
|
export type { FormSelectOption } from './components/FormComponents/FormSelect/FormSelect';
|
package/dist/main.js
CHANGED
|
@@ -8,11 +8,11 @@ import { DeleteModal as s } from "./components/DeleteModal/DeleteModal.js";
|
|
|
8
8
|
import { Disclaimer as d } from "./components/Disclaimer/Disclaimer.js";
|
|
9
9
|
import { EmptyView as S } from "./components/EmptyView/EmptyView.js";
|
|
10
10
|
import { Filter as u } from "./components/Filter/Filter.js";
|
|
11
|
-
import { GenericTable as
|
|
12
|
-
import { HashTabView as
|
|
13
|
-
import { HeaderFilter as
|
|
14
|
-
import { I
|
|
15
|
-
import { InfoGroup as
|
|
11
|
+
import { GenericTable as T } from "./components/GenericTable/GenericTable.js";
|
|
12
|
+
import { HashTabView as h } from "./components/HashTabView/HashTabView.js";
|
|
13
|
+
import { HeaderFilter as C } from "./components/HeaderFilter/HeaderFilter.js";
|
|
14
|
+
import { I } from "./Iconify-CY9lZjFd.js";
|
|
15
|
+
import { InfoGroup as A } from "./components/InfoGroup/InfoGroup.js";
|
|
16
16
|
import { ListArea as L } from "./components/ListArea/ListArea.js";
|
|
17
17
|
import { LoadingSpinner as y } from "./components/LoadingSpinner/Default/LoadingSpinner.js";
|
|
18
18
|
import { OverflowTooltip as M } from "./components/OverflowTooltip/OverflowTooltip.js";
|
|
@@ -26,8 +26,9 @@ import { FormSelect as W } from "./components/FormComponents/FormSelect/FormSele
|
|
|
26
26
|
import { FormSlider as _ } from "./components/FormComponents/FormSlider/FormSlider.js";
|
|
27
27
|
import { FormText as rr } from "./components/FormComponents/FormText/FormText.js";
|
|
28
28
|
import { AvailableCustomIcons as er } from "./enums/AvailableCustomIcons.js";
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
29
|
+
import { ThemeColor as mr } from "./enums/ThemeColor.js";
|
|
30
|
+
import { u as fr } from "./useBreakpoints-BNeVhjjZ.js";
|
|
31
|
+
import { capitalizeFirstLetters as ir } from "./services/UtilService.js";
|
|
31
32
|
export {
|
|
32
33
|
t as AlertBanner,
|
|
33
34
|
er as AvailableCustomIcons,
|
|
@@ -45,18 +46,19 @@ export {
|
|
|
45
46
|
W as FormSelect,
|
|
46
47
|
_ as FormSlider,
|
|
47
48
|
rr as FormText,
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
T as GenericTable,
|
|
50
|
+
h as HashTabView,
|
|
51
|
+
C as HeaderFilter,
|
|
52
|
+
I as Iconify,
|
|
53
|
+
A as InfoGroup,
|
|
53
54
|
L as ListArea,
|
|
54
55
|
y as LoadingSpinner,
|
|
55
56
|
M as OverflowTooltip,
|
|
56
57
|
E as ScrollbarX,
|
|
57
58
|
O as ScrollbarY,
|
|
58
59
|
R as SearchBar,
|
|
60
|
+
mr as ThemeColor,
|
|
59
61
|
Y as VerticalDivider,
|
|
60
|
-
|
|
61
|
-
|
|
62
|
+
ir as capitalizeFirstLetters,
|
|
63
|
+
fr as useBreakpoints
|
|
62
64
|
};
|
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.7428",
|
|
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>",
|
|
@@ -35,16 +35,16 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@chromatic-com/storybook": "1.5.0",
|
|
38
|
-
"@element/react-components": "^5.42.
|
|
38
|
+
"@element/react-components": "^5.42.8",
|
|
39
39
|
"@element/themes": "^5.44.4",
|
|
40
|
-
"@storybook/addon-essentials": "^8.2.
|
|
41
|
-
"@storybook/addon-interactions": "^8.2.
|
|
42
|
-
"@storybook/addon-links": "^8.2.
|
|
43
|
-
"@storybook/addon-onboarding": "^8.2.
|
|
44
|
-
"@storybook/blocks": "^8.2.
|
|
45
|
-
"@storybook/react": "^8.2.
|
|
46
|
-
"@storybook/react-vite": "^8.2.
|
|
47
|
-
"@storybook/test": "^8.2.
|
|
40
|
+
"@storybook/addon-essentials": "^8.2.5",
|
|
41
|
+
"@storybook/addon-interactions": "^8.2.5",
|
|
42
|
+
"@storybook/addon-links": "^8.2.5",
|
|
43
|
+
"@storybook/addon-onboarding": "^8.2.5",
|
|
44
|
+
"@storybook/blocks": "^8.2.5",
|
|
45
|
+
"@storybook/react": "^8.2.5",
|
|
46
|
+
"@storybook/react-vite": "^8.2.5",
|
|
47
|
+
"@storybook/test": "^8.2.5",
|
|
48
48
|
"@testing-library/jest-dom": "^6.4.2",
|
|
49
49
|
"@testing-library/react": "^14.2.1",
|
|
50
50
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"react-dom": "^18.3.1",
|
|
69
69
|
"react-hook-form": "^7.51.2",
|
|
70
70
|
"react-tooltip": "^5.26.4",
|
|
71
|
-
"storybook": "^8.2.
|
|
71
|
+
"storybook": "^8.2.5",
|
|
72
72
|
"typescript": "^5.2.2",
|
|
73
73
|
"vite": "^5.1.6",
|
|
74
74
|
"vite-plugin-dts": "^3.7.3",
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import "./assets/HashTabView.css";
|
|
2
|
-
const t = "_elevation_16c7u_1", n = "_themeBackground_16c7u_6", a = "_tabBar_16c7u_10", o = "_tabWrapper_16c7u_16", e = "_tabButton_16c7u_20", c = "_childContainer_16c7u_24", _ = "_childContainerPhone_16c7u_28", i = {
|
|
3
|
-
elevation: t,
|
|
4
|
-
themeBackground: n,
|
|
5
|
-
tabBar: a,
|
|
6
|
-
tabWrapper: o,
|
|
7
|
-
tabButton: e,
|
|
8
|
-
childContainer: c,
|
|
9
|
-
childContainerPhone: _
|
|
10
|
-
};
|
|
11
|
-
export {
|
|
12
|
-
i as s
|
|
13
|
-
};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import "./assets/infoGroup.css";
|
|
2
|
-
const e = "_container_egebs_1", n = "_dividerContainer_egebs_10", o = "_mainGroup_egebs_16", t = "_row_egebs_21", _ = "_valueText_egebs_46", i = "_component_egebs_54", s = "_componentContainer_egebs_87", r = "_field_egebs_95", a = {
|
|
3
|
-
container: e,
|
|
4
|
-
dividerContainer: n,
|
|
5
|
-
mainGroup: o,
|
|
6
|
-
row: t,
|
|
7
|
-
valueText: _,
|
|
8
|
-
component: i,
|
|
9
|
-
componentContainer: s,
|
|
10
|
-
field: r
|
|
11
|
-
};
|
|
12
|
-
export {
|
|
13
|
-
a as s
|
|
14
|
-
};
|