@arthurzakharov/ui-kit 2.13.0 → 3.1.0
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/sidebar-BxN_2Ut_.css +1 -0
- package/dist/components/sidebar/index.d.ts +1 -1
- package/dist/components/sidebar/sidebar.component.d.ts +31 -12
- package/dist/components/sidebar/sidebar.component.js +86 -89
- package/dist/components/timetable/index.d.ts +1 -1
- package/dist/components/timetable/index.js +1 -4
- package/dist/components/timetable/timetable.component.d.ts +1 -6
- package/dist/components/timetable/timetable.component.js +1 -15
- package/dist/main.d.ts +1 -2
- package/dist/main.js +54 -56
- package/package.json +1 -1
- package/dist/assets/sidebar-DyDlIXV0.css +0 -1
- package/dist/assets/timetable-CqiWwUNY.css +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
._Sidebar_p7prx_1{display:block}._Board_p7prx_5{display:flex;flex-direction:column;gap:var(--rm-ui-padding-md);border-radius:var(--rm-ui-border-radius-md);padding:var(--rm-ui-padding-lg);background-color:var(--rm-ui-sidebar-bg)}._Steps_p7prx_14,._Info_p7prx_15{display:flex;flex-direction:column;align-items:flex-start;gap:var(--rm-ui-padding-sm)}._Step_p7prx_14{display:inline-flex;align-items:center;gap:var(--rm-ui-padding-xs)}._InfoRow_p7prx_28{display:inline-flex;align-items:center;justify-content:space-between;gap:var(--rm-ui-padding-xs);width:100%}._SidebarButton_p7prx_36{display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start}._Timetable_p7prx_43{display:flex;flex-direction:column;gap:var(--rm-ui-padding-xxs)}@media screen and (min-width:1024px){._Board_p7prx_5{padding:var(--rm-ui-padding-xl)}}@media screen and (min-width:1200px){._Board_p7prx_5{padding:var(--rm-ui-padding-xxl);gap:var(--rm-ui-padding-lg)}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Sidebar, type
|
|
1
|
+
export { Sidebar, type SidebarInfoRow, type SidebarStep } from './sidebar.component';
|
|
@@ -1,22 +1,41 @@
|
|
|
1
|
-
import { PropsWithChildren
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
|
2
2
|
import { CertificationsProps } from '../certifications';
|
|
3
3
|
import { UserPanelProps } from '../user-panel';
|
|
4
4
|
import { State } from '../../controls/utils';
|
|
5
5
|
import { Base } from '../../utils/types';
|
|
6
|
-
type SidebarStep = {
|
|
6
|
+
export type SidebarStep = {
|
|
7
7
|
state: State;
|
|
8
8
|
text: string;
|
|
9
9
|
};
|
|
10
|
-
type
|
|
11
|
-
|
|
12
|
-
isButtonVisible: boolean;
|
|
13
|
-
isUserOpen: boolean;
|
|
14
|
-
title: string;
|
|
10
|
+
export type SidebarInfoRow = [string, string];
|
|
11
|
+
interface SidebarStepsProps extends Base {
|
|
15
12
|
steps: SidebarStep[];
|
|
16
|
-
info: SidebarInfo[];
|
|
17
|
-
user: UserPanelProps;
|
|
18
|
-
certifications: CertificationsProps;
|
|
19
|
-
extras?: ReactNode;
|
|
20
13
|
}
|
|
21
|
-
|
|
14
|
+
interface SidebarInfoProps extends Base {
|
|
15
|
+
rows: SidebarInfoRow[];
|
|
16
|
+
}
|
|
17
|
+
interface SidebarUserProps extends Base {
|
|
18
|
+
isOpen: boolean;
|
|
19
|
+
title: UserPanelProps['title'];
|
|
20
|
+
data: UserPanelProps['data'];
|
|
21
|
+
button?: UserPanelProps['button'];
|
|
22
|
+
onClick?: UserPanelProps['onClick'];
|
|
23
|
+
}
|
|
24
|
+
interface SidebarSubmitProps extends PropsWithChildren<Base> {
|
|
25
|
+
isVisible: boolean;
|
|
26
|
+
}
|
|
27
|
+
interface SidebarTimetableProps extends Base {
|
|
28
|
+
title: string;
|
|
29
|
+
lines: string[];
|
|
30
|
+
}
|
|
31
|
+
export declare const Sidebar: (({ children, ...base }: PropsWithChildren<Base>) => import("react/jsx-runtime").JSX.Element) & {
|
|
32
|
+
Title: ({ children, ...base }: PropsWithChildren<Base>) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
Steps: ({ steps, ...base }: SidebarStepsProps) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
+
Info: ({ rows, ...base }: SidebarInfoProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
35
|
+
User: ({ isOpen, title, data, button, onClick, ...base }: SidebarUserProps) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
Submit: ({ isVisible, children, ...base }: SidebarSubmitProps) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
Certifications: (props: CertificationsProps) => import("react/jsx-runtime").JSX.Element;
|
|
38
|
+
Timetable: ({ title, lines, ...base }: SidebarTimetableProps) => import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
Line: () => import("react/jsx-runtime").JSX.Element;
|
|
40
|
+
};
|
|
22
41
|
export {};
|
|
@@ -1,99 +1,96 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { clsx as c, baseProps as
|
|
3
|
-
import { FadeScale as
|
|
4
|
-
import { Certifications as
|
|
5
|
-
import { Line as
|
|
6
|
-
import { Text as
|
|
7
|
-
import { UserPanel as
|
|
1
|
+
import { jsx as e, jsxs as m } from "react/jsx-runtime";
|
|
2
|
+
import { clsx as c, baseProps as i } from "../../utils/functions/functions.util.js";
|
|
3
|
+
import { FadeScale as p } from "../../animations/fade-scale/fade-scale.component.js";
|
|
4
|
+
import { Certifications as b } from "../certifications/certifications.component.js";
|
|
5
|
+
import { Line as S } from "../line/line.component.js";
|
|
6
|
+
import { Text as n } from "../text/text.component.js";
|
|
7
|
+
import { UserPanel as f } from "../user-panel/user-panel.component.js";
|
|
8
8
|
import "../../controls/primitives/box/box.component.js";
|
|
9
9
|
import "../../utils/content/content.component.js";
|
|
10
10
|
import "lucide-react";
|
|
11
11
|
import "usehooks-ts";
|
|
12
|
-
import { Status as
|
|
13
|
-
import '../../assets/sidebar-
|
|
14
|
-
Sidebar:
|
|
15
|
-
Board:
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
|
|
12
|
+
import { Status as _ } from "../../controls/primitives/status/status.component.js";
|
|
13
|
+
import '../../assets/sidebar-BxN_2Ut_.css';const N = "_Sidebar_p7prx_1", h = "_Board_p7prx_5", u = "_Steps_p7prx_14", x = "_Info_p7prx_15", g = "_Step_p7prx_14", I = "_InfoRow_p7prx_28", v = "_SidebarButton_p7prx_36", T = "_Timetable_p7prx_43", d = {
|
|
14
|
+
Sidebar: N,
|
|
15
|
+
Board: h,
|
|
16
|
+
Steps: u,
|
|
17
|
+
Info: x,
|
|
18
|
+
Step: g,
|
|
19
|
+
InfoRow: I,
|
|
20
|
+
SidebarButton: v,
|
|
21
|
+
Timetable: T
|
|
22
|
+
}, y = ({ children: a, ...t }) => /* @__PURE__ */ e(
|
|
23
|
+
"div",
|
|
24
|
+
{
|
|
25
|
+
"data-testid": i(t, "data-testid", "sidebar"),
|
|
26
|
+
className: c(d.Sidebar, i(t, "className")),
|
|
27
|
+
children: /* @__PURE__ */ e("div", { className: d.Board, children: a })
|
|
28
|
+
}
|
|
29
|
+
), B = ({ children: a, ...t }) => /* @__PURE__ */ e(
|
|
30
|
+
n,
|
|
31
|
+
{
|
|
32
|
+
preset: "sidebar-title",
|
|
33
|
+
"data-testid": i(t, "data-testid", "sidebar-title"),
|
|
34
|
+
className: i(t, "className"),
|
|
35
|
+
children: a
|
|
36
|
+
}
|
|
37
|
+
), w = ({ steps: a, ...t }) => /* @__PURE__ */ e(
|
|
38
|
+
"div",
|
|
39
|
+
{
|
|
40
|
+
"data-testid": i(t, "data-testid", "sidebar-steps"),
|
|
41
|
+
className: c(d.Steps, i(t, "className")),
|
|
42
|
+
children: a.map(({ state: s, text: r }) => /* @__PURE__ */ m("div", { className: d.Step, "data-testid": "sidebar-step", children: [
|
|
43
|
+
/* @__PURE__ */ e(_, { state: s }),
|
|
44
|
+
/* @__PURE__ */ e(n, { tag: "span", weight: "medium", size: "body-small", color: s === "idle" ? "grey-400" : "text-primary", children: r })
|
|
45
|
+
] }, r))
|
|
46
|
+
}
|
|
47
|
+
), $ = ({ rows: a, ...t }) => {
|
|
48
|
+
const s = a.filter(([, r]) => r.trim() !== "");
|
|
49
|
+
return s.length === 0 ? null : /* @__PURE__ */ e(
|
|
39
50
|
"div",
|
|
40
51
|
{
|
|
41
|
-
"data-testid":
|
|
42
|
-
className: c(
|
|
43
|
-
children: /* @__PURE__ */
|
|
44
|
-
/* @__PURE__ */
|
|
45
|
-
/* @__PURE__ */
|
|
46
|
-
|
|
47
|
-
/* @__PURE__ */ t(m, { tag: "span", weight: "medium", size: "body-small", color: e === "idle" ? "grey-400" : "text-primary", children: l })
|
|
48
|
-
] }, l)) }),
|
|
49
|
-
a && /* @__PURE__ */ o(S, { children: [
|
|
50
|
-
/* @__PURE__ */ t(d, {}),
|
|
51
|
-
/* @__PURE__ */ t("div", { className: i.Info, "data-testid": "sidebar-info", children: h.map(([e, l], w) => /* @__PURE__ */ o("div", { className: i.InfoRow, "data-testid": "sidebar-info-row", children: [
|
|
52
|
-
/* @__PURE__ */ t(m, { tag: "span", size: "body-small", color: "text-secondary", children: e }),
|
|
53
|
-
/* @__PURE__ */ t(m, { tag: "span", size: "body-small", align: "right", children: l })
|
|
54
|
-
] }, `${e}-${w}`)) }),
|
|
55
|
-
/* @__PURE__ */ t(d, {})
|
|
56
|
-
] }),
|
|
57
|
-
/* @__PURE__ */ o(v, { name: "user", condition: r, children: [
|
|
58
|
-
!a && /* @__PURE__ */ t(d, {}),
|
|
59
|
-
/* @__PURE__ */ t(B, { title: n.title, button: n.button, data: n.data, onClick: n.onClick }),
|
|
60
|
-
/* @__PURE__ */ t(d, {})
|
|
61
|
-
] }),
|
|
62
|
-
/* @__PURE__ */ t(v, { name: "button", condition: b, children: /* @__PURE__ */ t(
|
|
63
|
-
"div",
|
|
64
|
-
{
|
|
65
|
-
className: c(i.SidebarButton, {
|
|
66
|
-
[i.NothingAbove]: !a && !r
|
|
67
|
-
}),
|
|
68
|
-
children: g
|
|
69
|
-
}
|
|
70
|
-
) }),
|
|
71
|
-
s != null && /* @__PURE__ */ o(S, { children: [
|
|
72
|
-
/* @__PURE__ */ t(
|
|
73
|
-
"div",
|
|
74
|
-
{
|
|
75
|
-
"data-testid": "sidebar-extras",
|
|
76
|
-
className: c(i.SidebarExtras, {
|
|
77
|
-
[i.NothingAbove]: !a && !r && !b
|
|
78
|
-
}),
|
|
79
|
-
children: s
|
|
80
|
-
}
|
|
81
|
-
),
|
|
82
|
-
/* @__PURE__ */ t(d, {})
|
|
83
|
-
] }),
|
|
84
|
-
/* @__PURE__ */ t(A, { icons: p.icons, tuvSrc: p.tuvSrc, align: p.align }),
|
|
85
|
-
/* @__PURE__ */ t(
|
|
86
|
-
"div",
|
|
87
|
-
{
|
|
88
|
-
className: c({
|
|
89
|
-
[i.NothingAbove]: !a && !r && !b && s == null
|
|
90
|
-
})
|
|
91
|
-
}
|
|
92
|
-
)
|
|
93
|
-
] })
|
|
52
|
+
"data-testid": i(t, "data-testid", "sidebar-info"),
|
|
53
|
+
className: c(d.Info, i(t, "className")),
|
|
54
|
+
children: s.map(([r, l], o) => /* @__PURE__ */ m("div", { className: d.InfoRow, "data-testid": "sidebar-info-row", children: [
|
|
55
|
+
/* @__PURE__ */ e(n, { tag: "span", size: "body-small", color: "text-secondary", children: r }),
|
|
56
|
+
/* @__PURE__ */ e(n, { tag: "span", size: "body-small", align: "right", children: l })
|
|
57
|
+
] }, `${r}-${o}`))
|
|
94
58
|
}
|
|
95
59
|
);
|
|
96
|
-
}
|
|
60
|
+
}, z = ({ isOpen: a, title: t, data: s, button: r, onClick: l, ...o }) => /* @__PURE__ */ e(
|
|
61
|
+
p,
|
|
62
|
+
{
|
|
63
|
+
name: "sidebar-user",
|
|
64
|
+
condition: a,
|
|
65
|
+
"data-testid": i(o, "data-testid", "sidebar-user"),
|
|
66
|
+
className: i(o, "className"),
|
|
67
|
+
children: /* @__PURE__ */ e(f, { title: t, data: s, button: r, onClick: l })
|
|
68
|
+
}
|
|
69
|
+
), R = ({ isVisible: a, children: t, ...s }) => /* @__PURE__ */ e(
|
|
70
|
+
p,
|
|
71
|
+
{
|
|
72
|
+
name: "sidebar-submit",
|
|
73
|
+
condition: a,
|
|
74
|
+
"data-testid": i(s, "data-testid", "sidebar-submit"),
|
|
75
|
+
className: i(s, "className"),
|
|
76
|
+
children: /* @__PURE__ */ e("div", { className: d.SidebarButton, children: t })
|
|
77
|
+
}
|
|
78
|
+
), j = (a) => /* @__PURE__ */ e(b, { ...a }), C = ({ title: a, lines: t, ...s }) => {
|
|
79
|
+
const r = i(s, "data-testid", "sidebar-timetable");
|
|
80
|
+
return /* @__PURE__ */ m("div", { "data-testid": r, className: c(d.Timetable, i(s, "className")), children: [
|
|
81
|
+
/* @__PURE__ */ e(n, { tag: "span", size: "body-small", color: "text-secondary", "data-testid": `${r}-title`, children: a }),
|
|
82
|
+
t.map((l, o) => /* @__PURE__ */ e(n, { tag: "span", size: "body-small", "data-testid": `${r}-line-${o}`, children: l }, o))
|
|
83
|
+
] });
|
|
84
|
+
}, L = () => /* @__PURE__ */ e(S, {}), M = Object.assign(y, {
|
|
85
|
+
Title: B,
|
|
86
|
+
Steps: w,
|
|
87
|
+
Info: $,
|
|
88
|
+
User: z,
|
|
89
|
+
Submit: R,
|
|
90
|
+
Certifications: j,
|
|
91
|
+
Timetable: C,
|
|
92
|
+
Line: L
|
|
93
|
+
});
|
|
97
94
|
export {
|
|
98
|
-
|
|
95
|
+
M as Sidebar
|
|
99
96
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export {};
|
|
@@ -1,15 +1 @@
|
|
|
1
|
-
|
|
2
|
-
import { baseProps as i, clsx as c } from "../../utils/functions/functions.util.js";
|
|
3
|
-
import { Text as l } from "../text/text.component.js";
|
|
4
|
-
import '../../assets/timetable-CqiWwUNY.css';const n = "_Timetable_zg6h3_1", b = {
|
|
5
|
-
Timetable: n
|
|
6
|
-
}, h = ({ title: m, lines: o, ...e }) => {
|
|
7
|
-
const t = i(e, "data-testid", "timetable");
|
|
8
|
-
return /* @__PURE__ */ r("div", { "data-testid": t, className: c(b.Timetable, i(e, "className")), children: [
|
|
9
|
-
/* @__PURE__ */ s(l, { tag: "span", size: "body-small", color: "text-secondary", "data-testid": `${t}-title`, children: m }),
|
|
10
|
-
o.map((d, a) => /* @__PURE__ */ s(l, { tag: "span", size: "body-small", "data-testid": `${t}-line-${a}`, children: d }, a))
|
|
11
|
-
] });
|
|
12
|
-
};
|
|
13
|
-
export {
|
|
14
|
-
h as Timetable
|
|
15
|
-
};
|
|
1
|
+
|
package/dist/main.d.ts
CHANGED
|
@@ -46,10 +46,9 @@ export { MessageBlock, type MessageBlockProps } from './components/message-block
|
|
|
46
46
|
export { NotFound, type NotFoundProps } from './components/not-found';
|
|
47
47
|
export { Payment, type PaymentBlockProps, type PaymentGlassProps, type PaymentInfoProps, type PaymentSidebarProps, type PaymentTextBlocksProps, type PaymentTextBlockItem, } from './components/payment/payment.component';
|
|
48
48
|
export { PriceLine, type PriceLineProps } from './components/price-line';
|
|
49
|
-
export { Sidebar, type
|
|
49
|
+
export { Sidebar, type SidebarInfoRow, type SidebarStep } from './components/sidebar';
|
|
50
50
|
export { SignCtaTracker, type SignCtaTrackerProps } from './components/sign-cta-tracker';
|
|
51
51
|
export { Signature } from './components/signature';
|
|
52
|
-
export { Timetable, type TimetableProps } from './components/timetable';
|
|
53
52
|
export { Svg, type SvgProps } from './utils/svg/svg.component';
|
|
54
53
|
export { Text, type TextProps } from './components/text';
|
|
55
54
|
export { UserPanel } from './components/user-panel';
|
package/dist/main.js
CHANGED
|
@@ -8,7 +8,7 @@ import { ButtonCard as c } from "./controls/buttons/button-card/button-card.comp
|
|
|
8
8
|
import { ButtonRadio as u } from "./controls/buttons/button-radio/button-radio.component.js";
|
|
9
9
|
import { ButtonText as S } from "./controls/buttons/button-text/button-text.component.js";
|
|
10
10
|
import { CardImage as P } from "./controls/interactives/card-image/card-image.component.js";
|
|
11
|
-
import { CardText as
|
|
11
|
+
import { CardText as D } from "./controls/interactives/card-text/card-text.component.js";
|
|
12
12
|
import { Checkbox as F } from "./controls/interactives/checkbox/checkbox.component.js";
|
|
13
13
|
import { Dropdown as A } from "./controls/interactives/dropdown/dropdown.component.js";
|
|
14
14
|
import { Input as B } from "./controls/interactives/input/input.component.js";
|
|
@@ -35,7 +35,7 @@ import { Expenses as cr } from "./components/expenses/expenses.component.js";
|
|
|
35
35
|
import { Footer as ur } from "./components/footer/footer.component.js";
|
|
36
36
|
import { FormRow as Sr } from "./components/form-row/form-row.component.js";
|
|
37
37
|
import { Header as Pr } from "./components/header/header.component.js";
|
|
38
|
-
import { InfoPanel as
|
|
38
|
+
import { InfoPanel as Dr } from "./components/info-panel/info-panel.component.js";
|
|
39
39
|
import { Information as Fr } from "./components/information/information.component.js";
|
|
40
40
|
import { Layout as Ar } from "./components/layout/layout.component.js";
|
|
41
41
|
import { Line as Br } from "./components/line/line.component.js";
|
|
@@ -49,12 +49,11 @@ import { PriceLine as Kr } from "./components/price-line/price-line.component.js
|
|
|
49
49
|
import { Sidebar as qr } from "./components/sidebar/sidebar.component.js";
|
|
50
50
|
import { SignCtaTracker as Jr } from "./components/sign-cta-tracker/sign-cta-tracker.component.js";
|
|
51
51
|
import { Signature as jr } from "./components/signature/signature.component.js";
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import { birthDateToGerman as mo, blurAfterClick as po, clsx as fo, containsHtml as xo, convertDateFormat as io, convertToDateNumber as no, convertToEuro as so, defaultTo as lo, deleteUrlParameters as co, fakeAwait as uo, formatDate as go, formatEuroAmount as So, formatNumber as bo, getDate as Po, getFromJson as To, getKeysFromUrlParams as ho, getPath as Do, getSalutationLabel as Fo, getSecretFromUrlParams as Lo, getSettlementPercent as Ao, getTimeStamp as Co, isHtmlString as Bo, isLeapYear as ko, isString as vo, isValidBirthDate as yo, isValidDate as No, isValidHouseNumber as Ro, isWithinTimeStamps as wo, last as Eo, once as Ho, pickValues as Io, publicSrcPath as Mo, removeLastNumberSuffix as Uo, removeSlashAtEnd as Vo, searchParams as Go, sortSearchParams as Ko, stripRequestName as Wo, toGermanDate as qo, trimAllStringKeys as zo, updateLastPathSubdirectory as Jo, withControl as Yo } from "./utils/functions/functions.util.js";
|
|
52
|
+
import { Svg as Qr } from "./utils/svg/svg.component.js";
|
|
53
|
+
import { Text as Zr } from "./components/text/text.component.js";
|
|
54
|
+
import { UserPanel as $r } from "./components/user-panel/user-panel.component.js";
|
|
55
|
+
import { Warranty as oo } from "./components/warranty/warranty.component.js";
|
|
56
|
+
import { birthDateToGerman as to, blurAfterClick as ao, clsx as mo, containsHtml as po, convertDateFormat as fo, convertToDateNumber as xo, convertToEuro as io, defaultTo as no, deleteUrlParameters as so, fakeAwait as lo, formatDate as co, formatEuroAmount as uo, formatNumber as go, getDate as So, getFromJson as bo, getKeysFromUrlParams as Po, getPath as ho, getSalutationLabel as Do, getSecretFromUrlParams as To, getSettlementPercent as Fo, getTimeStamp as Lo, isHtmlString as Ao, isLeapYear as Co, isString as Bo, isValidBirthDate as ko, isValidDate as vo, isValidHouseNumber as yo, isWithinTimeStamps as No, last as Ro, once as wo, pickValues as Eo, publicSrcPath as Ho, removeLastNumberSuffix as Io, removeSlashAtEnd as Mo, searchParams as Uo, sortSearchParams as Vo, stripRequestName as Go, toGermanDate as Ko, trimAllStringKeys as Wo, updateLastPathSubdirectory as qo, withControl as zo } from "./utils/functions/functions.util.js";
|
|
58
57
|
import './assets/main-DZmlIs7j.css';export {
|
|
59
58
|
Z as Accordion,
|
|
60
59
|
$ as AccordionTable,
|
|
@@ -66,7 +65,7 @@ import './assets/main-DZmlIs7j.css';export {
|
|
|
66
65
|
S as ButtonText,
|
|
67
66
|
M as Caption,
|
|
68
67
|
P as CardImage,
|
|
69
|
-
|
|
68
|
+
D as CardText,
|
|
70
69
|
mr as Certifications,
|
|
71
70
|
F as Checkbox,
|
|
72
71
|
V as Choice,
|
|
@@ -84,7 +83,7 @@ import './assets/main-DZmlIs7j.css';export {
|
|
|
84
83
|
Sr as FormRow,
|
|
85
84
|
Pr as Header,
|
|
86
85
|
q as HiddenInput,
|
|
87
|
-
|
|
86
|
+
Dr as InfoPanel,
|
|
88
87
|
Fr as Information,
|
|
89
88
|
B as Input,
|
|
90
89
|
J as Label,
|
|
@@ -104,52 +103,51 @@ import './assets/main-DZmlIs7j.css';export {
|
|
|
104
103
|
Jr as SignCtaTracker,
|
|
105
104
|
jr as Signature,
|
|
106
105
|
Q as Status,
|
|
107
|
-
|
|
108
|
-
|
|
106
|
+
Qr as Svg,
|
|
107
|
+
Zr as Text,
|
|
109
108
|
N as TextArea,
|
|
110
109
|
w as TextField,
|
|
111
|
-
|
|
112
|
-
oo as
|
|
113
|
-
to as
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
ho as
|
|
130
|
-
Do as
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
Yo as withControl
|
|
110
|
+
$r as UserPanel,
|
|
111
|
+
oo as Warranty,
|
|
112
|
+
to as birthDateToGerman,
|
|
113
|
+
ao as blurAfterClick,
|
|
114
|
+
mo as clsx,
|
|
115
|
+
po as containsHtml,
|
|
116
|
+
fo as convertDateFormat,
|
|
117
|
+
xo as convertToDateNumber,
|
|
118
|
+
io as convertToEuro,
|
|
119
|
+
no as defaultTo,
|
|
120
|
+
so as deleteUrlParameters,
|
|
121
|
+
lo as fakeAwait,
|
|
122
|
+
co as formatDate,
|
|
123
|
+
uo as formatEuroAmount,
|
|
124
|
+
go as formatNumber,
|
|
125
|
+
So as getDate,
|
|
126
|
+
bo as getFromJson,
|
|
127
|
+
Po as getKeysFromUrlParams,
|
|
128
|
+
ho as getPath,
|
|
129
|
+
Do as getSalutationLabel,
|
|
130
|
+
To as getSecretFromUrlParams,
|
|
131
|
+
Fo as getSettlementPercent,
|
|
132
|
+
Lo as getTimeStamp,
|
|
133
|
+
Ao as isHtmlString,
|
|
134
|
+
Co as isLeapYear,
|
|
135
|
+
Bo as isString,
|
|
136
|
+
ko as isValidBirthDate,
|
|
137
|
+
vo as isValidDate,
|
|
138
|
+
yo as isValidHouseNumber,
|
|
139
|
+
No as isWithinTimeStamps,
|
|
140
|
+
Ro as last,
|
|
141
|
+
wo as once,
|
|
142
|
+
Eo as pickValues,
|
|
143
|
+
Ho as publicSrcPath,
|
|
144
|
+
Io as removeLastNumberSuffix,
|
|
145
|
+
Mo as removeSlashAtEnd,
|
|
146
|
+
Uo as searchParams,
|
|
147
|
+
Vo as sortSearchParams,
|
|
148
|
+
Go as stripRequestName,
|
|
149
|
+
Ko as toGermanDate,
|
|
150
|
+
Wo as trimAllStringKeys,
|
|
151
|
+
qo as updateLastPathSubdirectory,
|
|
152
|
+
zo as withControl
|
|
155
153
|
};
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
._Sidebar_17t5d_1{display:block}._Board_17t5d_5{border-radius:var(--rm-ui-border-radius-md);padding:var(--rm-ui-padding-lg);background-color:var(--rm-ui-sidebar-bg)}._SidebarTitle_17t5d_11,._SidebarButton_17t5d_12{padding-bottom:var(--rm-ui-padding-md)}._Steps_17t5d_16,._Info_17t5d_17{display:flex;flex-direction:column;align-items:flex-start;gap:var(--rm-ui-padding-sm)}._Step_17t5d_16{display:inline-flex;align-items:center;gap:var(--rm-ui-padding-xs)}._InfoRow_17t5d_30{display:inline-flex;align-items:center;justify-content:space-between;gap:var(--rm-ui-padding-xs)}._SidebarButton_17t5d_12{display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start}._NothingAbove_17t5d_44{margin-top:var(--rm-ui-padding-lg)}@media screen and (min-width:1024px){._Board_17t5d_5{padding:var(--rm-ui-padding-xl)}}@media screen and (min-width:1200px){._Board_17t5d_5{padding:var(--rm-ui-padding-xxl)}._SidebarTitle_17t5d_11,._SidebarButton_17t5d_12{padding-bottom:var(--rm-ui-padding-lg)}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
._Timetable_zg6h3_1{display:flex;flex-direction:column;gap:var(--rm-ui-padding-xxs)}
|